Releases: OpusCapita/react-select
2.0.7
See changelog and completed issues
2.0.6
See changelog and completed issues
2.0.2
See changelog and completed issues
2.0.1
See changelog and completed issues
API changes
Previously Select
could be imported via import Select from '@opuscapita/react-select'
which is a umd
file with react-select
bundled within, which is useful if someone wants to load it via browser script
tag. But this is not ideal for Node.js
environment, because in this case it's better to import
only actually needed code, without any dependencies copied inside.
So, now available options include:
import Select from '@opuscapita/react-select'
as previously, without changesimport Creatable from '@opuscapita/react-select/lib/Creatable'
import Async from '@opuscapita/react-select/lib/Async'
import AsyncCreatable from '@opuscapita/react-select/lib/AsyncCreatable'
import Select from '@opuscapita/react-select/lib/Select'
New individual imports are commonjs
bundles without dependencies inside. Intended for usage in Node.js
environment.
2.0.0
See changelog and completed issues
2.0.0-oc.1-beta
See changelog and completed issues
1.0.0-oc.3
See changelog and completed issues
1.0.0-oc.2
See changelog and completed issues
1.0.0-oc.1
See changelog and completed issues