Select search feature using Choices.js.
Install this package with sackmesser:
make feature-install-select-search
or when sackmesser is not used:
yarn install gi-feature-select-search
After the installation has completed, you can import the module files:
// import feature class
import SelectSearch from 'gi-feature-select-search'
// ...
base.features.add('select-search', SelectSearch)Make sure you provide the global dependencies in your webpack config file:
new webpack.ProvidePlugin({
base: 'gi-js-base'
})@import 'gi-feature-select-search/src/style';- Newest two browser versions of Chrome, Firefox, Safari and Edge
- IE 10 and above
make buildornpm run build- Build production version of the feature.make devornpm run dev- Build demo of the feature, run a watcher and start browser-sync.make testornpm run test- Test the feature.make jsdoc- Update documentation inside thedocsfolder.make publish- Publish npm package.