@anglr/select 15.0.0 → 16.0.0-beta.20260226142137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +153 -0
- package/es2022/extensions/src/extensions/getValue.js +16 -1
- package/es2022/extensions/src/extensions/getValue.js.map +1 -1
- package/es2022/extensions/src/extensions/onFocus.js +14 -1
- package/es2022/extensions/src/extensions/onFocus.js.map +1 -1
- package/es2022/extensions/src/extensions/patchOptions.js +15 -11
- package/es2022/extensions/src/extensions/patchOptions.js.map +1 -1
- package/es2022/extensions/src/extensions/reinitializeOptions.js +19 -14
- package/es2022/extensions/src/extensions/reinitializeOptions.js.map +1 -1
- package/es2022/extensions/src/extensions/setReadonly.js +21 -1
- package/es2022/extensions/src/extensions/setReadonly.js.map +1 -1
- package/es2022/extensions/src/extensions/setValue.js +17 -1
- package/es2022/extensions/src/extensions/setValue.js.map +1 -1
- package/es2022/extensions/src/extensions/valueChange.js +17 -1
- package/es2022/extensions/src/extensions/valueChange.js.map +1 -1
- package/es2022/extensions/src/index.js +1 -7
- package/es2022/extensions/src/index.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.component.js +100 -72
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.component.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.interface.js +26 -1
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.interface.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/index.js +2 -1
- package/es2022/material/src/components/basicDialogPopup/index.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/types.js +2 -1
- package/es2022/material/src/components/basicDialogPopup/types.js.map +1 -1
- package/es2022/material/src/directives/dialogPopup/dialogPopup.directive.js +73 -74
- package/es2022/material/src/directives/dialogPopup/dialogPopup.directive.js.map +1 -1
- package/es2022/material/src/index.js +1 -7
- package/es2022/material/src/index.js.map +1 -1
- package/es2022/material/src/modules/dialogPopup.module.js +33 -40
- package/es2022/material/src/modules/dialogPopup.module.js.map +1 -1
- package/es2022/material/src/modules/virtualEditPopup.module.js +27 -30
- package/es2022/material/src/modules/virtualEditPopup.module.js.map +1 -1
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.component.js +172 -140
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.component.js.map +1 -1
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.interface.js +65 -1
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.interface.js.map +1 -1
- package/es2022/material/src/plugins/popup/index.js +1 -2
- package/es2022/material/src/plugins/popup/index.js.map +1 -1
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.js +120 -88
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.js.map +1 -1
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.js +20 -1
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.js.map +1 -1
- package/es2022/src/components/index.js +4 -0
- package/es2022/src/components/index.js.map +1 -0
- package/es2022/src/components/option/option.component.js +22 -19
- package/es2022/src/components/option/option.component.js.map +1 -1
- package/es2022/src/components/optionGroup/optgroup.component.js +29 -0
- package/es2022/src/components/optionGroup/optgroup.component.js.map +1 -0
- package/es2022/src/components/select/select.component.js +356 -450
- package/es2022/src/components/select/select.component.js.map +1 -1
- package/es2022/src/decorators/index.js +2 -0
- package/es2022/src/decorators/index.js.map +1 -0
- package/es2022/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.js +12 -0
- package/es2022/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.js.map +1 -0
- package/es2022/src/directives/index.js +5 -0
- package/es2022/src/directives/index.js.map +1 -0
- package/es2022/src/directives/normalStateTemplate/normalStateTemplate.directive.js +30 -0
- package/es2022/src/directives/normalStateTemplate/normalStateTemplate.directive.js.map +1 -0
- package/es2022/src/directives/optionTemplate/optionTemplate.directive.js +30 -0
- package/es2022/src/directives/optionTemplate/optionTemplate.directive.js.map +1 -0
- package/es2022/src/directives/selectAbsolute/selectAbsolute.directive.js +25 -0
- package/es2022/src/directives/selectAbsolute/selectAbsolute.directive.js.map +1 -0
- package/es2022/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.js +210 -0
- package/es2022/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.js.map +1 -0
- package/es2022/src/directives/selectEdit/selectEdit.directive.js +51 -0
- package/es2022/src/directives/selectEdit/selectEdit.directive.js.map +1 -0
- package/es2022/src/directives/selectPlaceholder/selectPlaceholder.directive.js +48 -0
- package/es2022/src/directives/selectPlaceholder/selectPlaceholder.directive.js.map +1 -0
- package/es2022/src/directives/withDirectAccess/withDirectAccess.directive.js +17 -0
- package/es2022/src/directives/withDirectAccess/withDirectAccess.directive.js.map +1 -0
- package/es2022/src/index.js +8 -41
- package/es2022/src/index.js.map +1 -1
- package/es2022/src/interfaces/index.js +20 -0
- package/es2022/src/interfaces/index.js.map +1 -0
- package/es2022/src/interfaces/initState/initState.interface.js +2 -0
- package/es2022/src/interfaces/initState/initState.interface.js.map +1 -0
- package/es2022/src/interfaces/normalStateContext/normalStateContext.interface.js +2 -0
- package/es2022/src/interfaces/normalStateContext/normalStateContext.interface.js.map +1 -0
- package/es2022/src/interfaces/optionsGatherer/optionsGatherer.interface.js +2 -0
- package/es2022/src/interfaces/optionsGatherer/optionsGatherer.interface.js.map +1 -0
- package/es2022/src/interfaces/pluginDescription/pluginDescription.interface.js +2 -0
- package/es2022/src/interfaces/pluginDescription/pluginDescription.interface.js.map +1 -0
- package/es2022/src/interfaces/pluginOptions/pluginOptions.interface.js +2 -0
- package/es2022/src/interfaces/pluginOptions/pluginOptions.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/index.js +10 -0
- package/es2022/src/interfaces/plugins/index.js.map +1 -0
- package/es2022/src/interfaces/plugins/interactions/interactions.interface.js +2 -0
- package/es2022/src/interfaces/plugins/interactions/interactions.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/liveSearch/liveSearch.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/normalState/normalState.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/optionsHandler/optionsHandler.interface.js +2 -0
- package/es2022/src/interfaces/plugins/optionsHandler/optionsHandler.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/popup/popup.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/positioner/positioner.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/readonlyState/readonlyState.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/valueHandler/valueHandler.interface.js.map +1 -0
- package/es2022/src/interfaces/popupContext/popupContext.interface.js +2 -0
- package/es2022/src/interfaces/popupContext/popupContext.interface.js.map +1 -0
- package/es2022/src/interfaces/selectApi/selectApi.interface.js +2 -0
- package/es2022/src/interfaces/selectApi/selectApi.interface.js.map +1 -0
- package/es2022/src/interfaces/selectBusOptions/selectBusOptions.interface.js +2 -0
- package/es2022/src/interfaces/selectBusOptions/selectBusOptions.interface.js.map +1 -0
- package/es2022/src/interfaces/selectCssClasses/selectCssClasses.interface.js +2 -0
- package/es2022/src/interfaces/selectCssClasses/selectCssClasses.interface.js.map +1 -0
- package/es2022/src/interfaces/selectEvent/selectEvent.interface.js +2 -0
- package/es2022/src/interfaces/selectEvent/selectEvent.interface.js.map +1 -0
- package/es2022/src/interfaces/selectEvents/selectEvents.interface.js +2 -0
- package/es2022/src/interfaces/selectEvents/selectEvents.interface.js.map +1 -0
- package/es2022/src/interfaces/selectOption/selectOption.interface.js +2 -0
- package/es2022/src/interfaces/selectOption/selectOption.interface.js.map +1 -0
- package/es2022/src/interfaces/selectOptionGroup/selectOptionGroup.interface.js +2 -0
- package/es2022/src/interfaces/selectOptionGroup/selectOptionGroup.interface.js.map +1 -0
- package/es2022/src/interfaces/selectOptions/selectOptions.interface.js +2 -0
- package/es2022/src/interfaces/selectOptions/selectOptions.interface.js.map +1 -0
- package/es2022/src/interfaces/selectPlugin/selectPlugin.interface.js +2 -0
- package/es2022/src/interfaces/selectPlugin/selectPlugin.interface.js.map +1 -0
- package/es2022/src/interfaces/selectPluginTypes/selectPluginTypes.interface.js +2 -0
- package/es2022/src/interfaces/selectPluginTypes/selectPluginTypes.interface.js.map +1 -0
- package/es2022/src/interfaces/templateGatherer/templateGatherer.interface.js.map +1 -0
- package/es2022/src/interfaces/visualPluginOptions/visualPluginOptions.interface.js +2 -0
- package/es2022/src/interfaces/visualPluginOptions/visualPluginOptions.interface.js.map +1 -0
- package/es2022/src/misc/classes/index.js +3 -0
- package/es2022/src/misc/classes/index.js.map +1 -0
- package/es2022/src/misc/{pluginBus/pluginBus.js → classes/selectBus/selectBus.js} +17 -8
- package/es2022/src/misc/classes/selectBus/selectBus.js.map +1 -0
- package/es2022/src/misc/classes/selectPluginInstances/selectPluginInstances.js +163 -0
- package/es2022/src/misc/classes/selectPluginInstances/selectPluginInstances.js.map +1 -0
- package/es2022/src/misc/enums.js +43 -0
- package/es2022/src/misc/enums.js.map +1 -0
- package/es2022/src/misc/extensions/getValue.js +16 -11
- package/es2022/src/misc/extensions/getValue.js.map +1 -1
- package/es2022/src/misc/extensions/index.js +6 -5
- package/es2022/src/misc/extensions/index.js.map +1 -1
- package/es2022/src/misc/extensions/onFocus.js +14 -9
- package/es2022/src/misc/extensions/onFocus.js.map +1 -1
- package/es2022/src/misc/extensions/setReadonly.js +22 -17
- package/es2022/src/misc/extensions/setReadonly.js.map +1 -1
- package/es2022/src/misc/extensions/setValue.js +17 -12
- package/es2022/src/misc/extensions/setValue.js.map +1 -1
- package/es2022/src/misc/extensions/valueChange.js +17 -11
- package/es2022/src/misc/extensions/valueChange.js.map +1 -1
- package/es2022/src/misc/ngSelectOptions.interface.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/codeOptionsGatherer.js +119 -82
- package/es2022/src/misc/optionsGatherer/codeOptionsGatherer.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.js +31 -1
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.js +178 -117
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/excludingOptionsGatherer.js +155 -109
- package/es2022/src/misc/optionsGatherer/excludingOptionsGatherer.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/optionsGatherer.interface.js +55 -1
- package/es2022/src/misc/optionsGatherer/optionsGatherer.interface.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/types.js +4 -3
- package/es2022/src/misc/optionsGatherer/types.js.map +1 -1
- package/es2022/src/misc/providers.js +102 -0
- package/es2022/src/misc/providers.js.map +1 -0
- package/es2022/src/misc/tokens.js +78 -0
- package/es2022/src/misc/tokens.js.map +1 -0
- package/es2022/src/misc/types.js +1 -33
- package/es2022/src/misc/types.js.map +1 -1
- package/es2022/src/modules/index.js +2 -0
- package/es2022/src/modules/index.js.map +1 -0
- package/es2022/src/modules/ngSelect.module.js +31 -75
- package/es2022/src/modules/ngSelect.module.js.map +1 -1
- package/es2022/src/modules/ngSelectEdit.module.js +39 -50
- package/es2022/src/modules/ngSelectEdit.module.js.map +1 -1
- package/es2022/src/pipes/getPlugin/getPlugin.pipe.js +17 -0
- package/es2022/src/pipes/getPlugin/getPlugin.pipe.js.map +1 -0
- package/es2022/src/pipes/index.js +4 -0
- package/es2022/src/pipes/index.js.map +1 -0
- package/es2022/src/pipes/{ngSelectHasValue.pipe.js → selectHasValue/selectHasValue.pipe.js} +7 -7
- package/es2022/src/pipes/selectHasValue/selectHasValue.pipe.js.map +1 -0
- package/es2022/src/pipes/selectValue/selectValue.pipe.js +31 -0
- package/es2022/src/pipes/selectValue/selectValue.pipe.js.map +1 -0
- package/es2022/src/plugins/index.js +10 -0
- package/es2022/src/plugins/index.js.map +1 -0
- package/es2022/src/plugins/interactions/index.js +2 -0
- package/es2022/src/plugins/interactions/index.js.map +1 -0
- package/es2022/src/plugins/interactions/noInteractions/noInteractions.component.js +36 -0
- package/es2022/src/plugins/interactions/noInteractions/noInteractions.component.js.map +1 -0
- package/es2022/src/plugins/keyboardHandler/index.js +1 -3
- package/es2022/src/plugins/keyboardHandler/index.js.map +1 -1
- package/es2022/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.js +36 -0
- package/es2022/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.js.map +1 -0
- package/es2022/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.js +36 -0
- package/es2022/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.js.map +1 -0
- package/es2022/src/plugins/liveSearch/index.js +2 -4
- package/es2022/src/plugins/liveSearch/index.js.map +1 -1
- package/es2022/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.js +36 -0
- package/es2022/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.js.map +1 -0
- package/es2022/src/plugins/normalState/index.js +1 -3
- package/es2022/src/plugins/normalState/index.js.map +1 -1
- package/es2022/src/plugins/normalState/simpleNormalState/simpleNormalState.component.js +36 -0
- package/es2022/src/plugins/normalState/simpleNormalState/simpleNormalState.component.js.map +1 -0
- package/es2022/src/plugins/optionsHandler/index.js +2 -0
- package/es2022/src/plugins/optionsHandler/index.js.map +1 -0
- package/es2022/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.js +50 -0
- package/es2022/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.js.map +1 -0
- package/es2022/src/plugins/popup/index.js +1 -3
- package/es2022/src/plugins/popup/index.js.map +1 -1
- package/es2022/src/plugins/popup/simplePopup/simplePopup.component.js +36 -0
- package/es2022/src/plugins/popup/simplePopup/simplePopup.component.js.map +1 -0
- package/es2022/src/plugins/positioner/basicPositioner/basicPositioner.component.js +36 -0
- package/es2022/src/plugins/positioner/basicPositioner/basicPositioner.component.js.map +1 -0
- package/es2022/src/plugins/positioner/index.js +1 -3
- package/es2022/src/plugins/positioner/index.js.map +1 -1
- package/es2022/src/plugins/readonlyState/index.js +1 -1
- package/es2022/src/plugins/readonlyState/index.js.map +1 -1
- package/es2022/src/plugins/valueHandler/index.js +1 -4
- package/es2022/src/plugins/valueHandler/index.js.map +1 -1
- package/es2022/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.js +81 -0
- package/es2022/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.js.map +1 -0
- package/extensions/src/extensions/getValue.d.ts +0 -1
- package/extensions/src/extensions/getValue.d.ts.map +1 -1
- package/extensions/src/extensions/onFocus.d.ts +0 -1
- package/extensions/src/extensions/onFocus.d.ts.map +1 -1
- package/extensions/src/extensions/patchOptions.d.ts +0 -6
- package/extensions/src/extensions/patchOptions.d.ts.map +1 -1
- package/extensions/src/extensions/reinitializeOptions.d.ts +0 -6
- package/extensions/src/extensions/reinitializeOptions.d.ts.map +1 -1
- package/extensions/src/extensions/setReadonly.d.ts +0 -1
- package/extensions/src/extensions/setReadonly.d.ts.map +1 -1
- package/extensions/src/extensions/setValue.d.ts +0 -1
- package/extensions/src/extensions/setValue.d.ts.map +1 -1
- package/extensions/src/extensions/valueChange.d.ts +0 -1
- package/extensions/src/extensions/valueChange.d.ts.map +1 -1
- package/extensions/src/index.d.ts +1 -7
- package/extensions/src/index.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/basicDialogPopup.component.d.ts +0 -46
- package/material/src/components/basicDialogPopup/basicDialogPopup.component.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/basicDialogPopup.interface.d.ts +0 -23
- package/material/src/components/basicDialogPopup/basicDialogPopup.interface.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/index.d.ts +0 -1
- package/material/src/components/basicDialogPopup/index.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/types.d.ts +0 -1
- package/material/src/components/basicDialogPopup/types.d.ts.map +1 -1
- package/material/src/directives/dialogPopup/dialogPopup.directive.d.ts +0 -26
- package/material/src/directives/dialogPopup/dialogPopup.directive.d.ts.map +1 -1
- package/material/src/index.d.ts +1 -7
- package/material/src/index.d.ts.map +1 -1
- package/material/src/modules/dialogPopup.module.d.ts +0 -14
- package/material/src/modules/dialogPopup.module.d.ts.map +1 -1
- package/material/src/modules/virtualEditPopup.module.d.ts +0 -12
- package/material/src/modules/virtualEditPopup.module.d.ts.map +1 -1
- package/material/src/plugins/popup/dialog/dialogPopup.component.d.ts +0 -82
- package/material/src/plugins/popup/dialog/dialogPopup.component.d.ts.map +1 -1
- package/material/src/plugins/popup/dialog/dialogPopup.interface.d.ts +0 -59
- package/material/src/plugins/popup/dialog/dialogPopup.interface.d.ts.map +1 -1
- package/material/src/plugins/popup/index.d.ts +1 -2
- package/material/src/plugins/popup/index.d.ts.map +1 -1
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.d.ts +0 -29
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.d.ts.map +1 -1
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.d.ts +0 -16
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.d.ts.map +1 -1
- package/package.json +27 -19
- package/src/components/index.d.ts +4 -0
- package/src/components/index.d.ts.map +1 -0
- package/src/components/option/option.component.d.ts +15 -14
- package/src/components/option/option.component.d.ts.map +1 -1
- package/src/components/optionGroup/optgroup.component.d.ts +25 -0
- package/src/components/optionGroup/optgroup.component.d.ts.map +1 -0
- package/src/components/select/select.component.css +5 -0
- package/src/components/select/select.component.d.ts +94 -179
- package/src/components/select/select.component.d.ts.map +1 -1
- package/src/components/select/select.component.html +10 -16
- package/src/decorators/index.d.ts +2 -0
- package/src/{components/select → decorators}/index.d.ts.map +1 -1
- package/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.d.ts +5 -0
- package/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.d.ts.map +1 -0
- package/src/directives/index.d.ts +5 -0
- package/src/directives/index.d.ts.map +1 -0
- package/src/directives/normalStateTemplate/normalStateTemplate.directive.d.ts +19 -0
- package/src/directives/normalStateTemplate/normalStateTemplate.directive.d.ts.map +1 -0
- package/src/directives/optionTemplate/optionTemplate.directive.d.ts +19 -0
- package/src/directives/optionTemplate/optionTemplate.directive.d.ts.map +1 -0
- package/src/directives/selectAbsolute/selectAbsolute.directive.d.ts +12 -0
- package/src/directives/selectAbsolute/selectAbsolute.directive.d.ts.map +1 -0
- package/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.d.ts +1 -0
- package/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.d.ts.map +1 -0
- package/src/directives/selectEdit/selectEdit.directive.d.ts +1 -0
- package/src/directives/selectEdit/selectEdit.directive.d.ts.map +1 -0
- package/src/directives/selectPlaceholder/selectPlaceholder.directive.d.ts +1 -0
- package/src/directives/selectPlaceholder/selectPlaceholder.directive.d.ts.map +1 -0
- package/src/directives/withDirectAccess/withDirectAccess.directive.d.ts +9 -0
- package/src/directives/withDirectAccess/withDirectAccess.directive.d.ts.map +1 -0
- package/src/index.d.ts +8 -41
- package/src/index.d.ts.map +1 -1
- package/src/interfaces/index.d.ts +20 -0
- package/src/interfaces/index.d.ts.map +1 -0
- package/src/interfaces/initState/initState.interface.d.ts +10 -0
- package/src/interfaces/initState/initState.interface.d.ts.map +1 -0
- package/src/interfaces/normalStateContext/normalStateContext.interface.d.ts +11 -0
- package/src/interfaces/normalStateContext/normalStateContext.interface.d.ts.map +1 -0
- package/src/interfaces/optionsGatherer/optionsGatherer.interface.d.ts +12 -0
- package/src/interfaces/optionsGatherer/optionsGatherer.interface.d.ts.map +1 -0
- package/src/interfaces/pluginDescription/pluginDescription.interface.d.ts +21 -0
- package/src/interfaces/pluginDescription/pluginDescription.interface.d.ts.map +1 -0
- package/src/interfaces/pluginOptions/pluginOptions.interface.d.ts +6 -0
- package/src/interfaces/pluginOptions/pluginOptions.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/index.d.ts +10 -0
- package/src/interfaces/plugins/index.d.ts.map +1 -0
- package/src/interfaces/plugins/interactions/interactions.interface.d.ts +13 -0
- package/src/interfaces/plugins/interactions/interactions.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.d.ts +13 -0
- package/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/liveSearch/liveSearch.interface.d.ts +13 -0
- package/src/interfaces/plugins/liveSearch/liveSearch.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/normalState/normalState.interface.d.ts +31 -0
- package/src/interfaces/plugins/normalState/normalState.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/optionsHandler/optionsHandler.interface.d.ts +19 -0
- package/src/interfaces/plugins/optionsHandler/optionsHandler.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/popup/popup.interface.d.ts +13 -0
- package/src/interfaces/plugins/popup/popup.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/positioner/positioner.interface.d.ts +13 -0
- package/src/interfaces/plugins/positioner/positioner.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/readonlyState/readonlyState.interface.d.ts +12 -0
- package/src/interfaces/plugins/readonlyState/readonlyState.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/valueHandler/valueHandler.interface.d.ts +23 -0
- package/src/interfaces/plugins/valueHandler/valueHandler.interface.d.ts.map +1 -0
- package/src/interfaces/popupContext/popupContext.interface.d.ts +16 -0
- package/src/interfaces/popupContext/popupContext.interface.d.ts.map +1 -0
- package/src/interfaces/selectApi/selectApi.interface.d.ts +50 -0
- package/src/interfaces/selectApi/selectApi.interface.d.ts.map +1 -0
- package/src/interfaces/selectBusOptions/selectBusOptions.interface.d.ts +29 -0
- package/src/interfaces/selectBusOptions/selectBusOptions.interface.d.ts.map +1 -0
- package/src/interfaces/selectCssClasses/selectCssClasses.interface.d.ts +6 -0
- package/src/interfaces/selectCssClasses/selectCssClasses.interface.d.ts.map +1 -0
- package/src/interfaces/selectEvent/selectEvent.interface.d.ts +20 -0
- package/src/interfaces/selectEvent/selectEvent.interface.d.ts.map +1 -0
- package/src/interfaces/selectEvents/selectEvents.interface.d.ts +37 -0
- package/src/interfaces/selectEvents/selectEvents.interface.d.ts.map +1 -0
- package/src/interfaces/selectOption/selectOption.interface.d.ts +33 -0
- package/src/interfaces/selectOption/selectOption.interface.d.ts.map +1 -0
- package/src/interfaces/selectOptionGroup/selectOptionGroup.interface.d.ts +21 -0
- package/src/interfaces/selectOptionGroup/selectOptionGroup.interface.d.ts.map +1 -0
- package/src/interfaces/selectOptions/selectOptions.interface.d.ts +27 -0
- package/src/interfaces/selectOptions/selectOptions.interface.d.ts.map +1 -0
- package/src/interfaces/selectPlugin/selectPlugin.interface.d.ts +33 -0
- package/src/interfaces/selectPlugin/selectPlugin.interface.d.ts.map +1 -0
- package/src/interfaces/selectPluginTypes/selectPluginTypes.interface.d.ts +44 -0
- package/src/interfaces/selectPluginTypes/selectPluginTypes.interface.d.ts.map +1 -0
- package/src/interfaces/templateGatherer/templateGatherer.interface.d.ts +17 -0
- package/src/interfaces/templateGatherer/templateGatherer.interface.d.ts.map +1 -0
- package/src/interfaces/visualPluginOptions/visualPluginOptions.interface.d.ts +11 -0
- package/src/interfaces/visualPluginOptions/visualPluginOptions.interface.d.ts.map +1 -0
- package/src/misc/classes/index.d.ts +3 -0
- package/src/misc/classes/index.d.ts.map +1 -0
- package/src/misc/classes/selectBus/selectBus.d.ts +54 -0
- package/src/misc/classes/selectBus/selectBus.d.ts.map +1 -0
- package/src/misc/classes/selectPluginInstances/selectPluginInstances.d.ts +90 -0
- package/src/misc/classes/selectPluginInstances/selectPluginInstances.d.ts.map +1 -0
- package/src/misc/enums.d.ts +42 -0
- package/src/misc/enums.d.ts.map +1 -0
- package/src/misc/extensions/getValue.d.ts +0 -6
- package/src/misc/extensions/getValue.d.ts.map +1 -1
- package/src/misc/extensions/index.d.ts +0 -5
- package/src/misc/extensions/index.d.ts.map +1 -1
- package/src/misc/extensions/onFocus.d.ts +0 -7
- package/src/misc/extensions/onFocus.d.ts.map +1 -1
- package/src/misc/extensions/setReadonly.d.ts +0 -7
- package/src/misc/extensions/setReadonly.d.ts.map +1 -1
- package/src/misc/extensions/setValue.d.ts +0 -7
- package/src/misc/extensions/setValue.d.ts.map +1 -1
- package/src/misc/extensions/valueChange.d.ts +0 -7
- package/src/misc/extensions/valueChange.d.ts.map +1 -1
- package/src/misc/ngSelectOptions.interface.d.ts +0 -71
- package/src/misc/ngSelectOptions.interface.d.ts.map +1 -1
- package/src/misc/optionsGatherer/codeOptionsGatherer.d.ts +0 -69
- package/src/misc/optionsGatherer/codeOptionsGatherer.d.ts.map +1 -1
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.d.ts +0 -85
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.d.ts.map +1 -1
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.d.ts +0 -28
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.d.ts.map +1 -1
- package/src/misc/optionsGatherer/excludingOptionsGatherer.d.ts +0 -72
- package/src/misc/optionsGatherer/excludingOptionsGatherer.d.ts.map +1 -1
- package/src/misc/optionsGatherer/optionsGatherer.interface.d.ts +0 -52
- package/src/misc/optionsGatherer/optionsGatherer.interface.d.ts.map +1 -1
- package/src/misc/optionsGatherer/types.d.ts +0 -3
- package/src/misc/optionsGatherer/types.d.ts.map +1 -1
- package/src/misc/providers.d.ts +54 -0
- package/src/misc/providers.d.ts.map +1 -0
- package/src/misc/tokens.d.ts +81 -0
- package/src/misc/tokens.d.ts.map +1 -0
- package/src/misc/types.d.ts +11 -31
- package/src/misc/types.d.ts.map +1 -1
- package/src/modules/index.d.ts +2 -0
- package/src/modules/index.d.ts.map +1 -0
- package/src/modules/ngSelect.module.d.ts +7 -20
- package/src/modules/ngSelect.module.d.ts.map +1 -1
- package/src/modules/ngSelectEdit.module.d.ts +0 -16
- package/src/modules/ngSelectEdit.module.d.ts.map +1 -1
- package/src/pipes/getPlugin/getPlugin.pipe.d.ts +25 -0
- package/src/pipes/getPlugin/getPlugin.pipe.d.ts.map +1 -0
- package/src/pipes/index.d.ts +4 -0
- package/src/pipes/index.d.ts.map +1 -0
- package/src/pipes/selectHasValue/selectHasValue.pipe.d.ts +16 -0
- package/src/pipes/selectHasValue/selectHasValue.pipe.d.ts.map +1 -0
- package/src/pipes/selectValue/selectValue.pipe.d.ts +19 -0
- package/src/pipes/selectValue/selectValue.pipe.d.ts.map +1 -0
- package/src/plugins/index.d.ts +9 -0
- package/src/plugins/index.d.ts.map +1 -0
- package/src/plugins/interactions/index.d.ts +2 -0
- package/src/plugins/interactions/index.d.ts.map +1 -0
- package/src/plugins/interactions/noInteractions/noInteractions.component.d.ts +28 -0
- package/src/plugins/interactions/noInteractions/noInteractions.component.d.ts.map +1 -0
- package/src/plugins/keyboardHandler/index.d.ts +1 -3
- package/src/plugins/keyboardHandler/index.d.ts.map +1 -1
- package/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.d.ts +28 -0
- package/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.d.ts.map +1 -0
- package/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.d.ts +28 -0
- package/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.d.ts.map +1 -0
- package/src/plugins/liveSearch/index.d.ts +2 -4
- package/src/plugins/liveSearch/index.d.ts.map +1 -1
- package/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.d.ts +28 -0
- package/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.d.ts.map +1 -0
- package/src/plugins/normalState/index.d.ts +1 -3
- package/src/plugins/normalState/index.d.ts.map +1 -1
- package/src/plugins/normalState/simpleNormalState/simpleNormalState.component.d.ts +28 -0
- package/src/plugins/normalState/simpleNormalState/simpleNormalState.component.d.ts.map +1 -0
- package/src/plugins/optionsHandler/index.d.ts +2 -0
- package/src/plugins/optionsHandler/index.d.ts.map +1 -0
- package/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.d.ts +41 -0
- package/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.d.ts.map +1 -0
- package/src/plugins/popup/index.d.ts +1 -3
- package/src/plugins/popup/index.d.ts.map +1 -1
- package/src/plugins/popup/simplePopup/simplePopup.component.d.ts +28 -0
- package/src/plugins/popup/simplePopup/simplePopup.component.d.ts.map +1 -0
- package/src/plugins/positioner/basicPositioner/basicPositioner.component.d.ts +28 -0
- package/src/plugins/positioner/basicPositioner/basicPositioner.component.d.ts.map +1 -0
- package/src/plugins/positioner/index.d.ts +1 -3
- package/src/plugins/positioner/index.d.ts.map +1 -1
- package/src/plugins/readonlyState/index.d.ts +0 -1
- package/src/plugins/readonlyState/index.d.ts.map +1 -1
- package/src/plugins/valueHandler/index.d.ts +1 -4
- package/src/plugins/valueHandler/index.d.ts.map +1 -1
- package/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.d.ts +46 -0
- package/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.d.ts.map +1 -0
- package/styles/components/_grid.scss +9 -0
- package/styles/core/_functions.scss +10 -0
- package/styles/core/_misc.scss +146 -0
- package/styles/core/_mixins.scss +44 -0
- package/styles/core/_theme.scss +16 -0
- package/styles/index.scss +2 -0
- package/styles/themes/dark.scss +19 -0
- package/styles/themes/light.scss +19 -0
- package/version.bak +1 -1
- package/es2022/material/src/directives/types.js +0 -2
- package/es2022/material/src/directives/types.js.map +0 -1
- package/es2022/material/src/plugins/popup/components.js +0 -3
- package/es2022/material/src/plugins/popup/components.js.map +0 -1
- package/es2022/src/components/option/index.js +0 -3
- package/es2022/src/components/option/index.js.map +0 -1
- package/es2022/src/components/option/optgroup.component.js +0 -54
- package/es2022/src/components/option/optgroup.component.js.map +0 -1
- package/es2022/src/components/option/optgroup.interface.js +0 -2
- package/es2022/src/components/option/optgroup.interface.js.map +0 -1
- package/es2022/src/components/option/option.interface.js +0 -2
- package/es2022/src/components/option/option.interface.js.map +0 -1
- package/es2022/src/components/select/index.js +0 -2
- package/es2022/src/components/select/index.js.map +0 -1
- package/es2022/src/components/select/select.interface.js +0 -2
- package/es2022/src/components/select/select.interface.js.map +0 -1
- package/es2022/src/components/select/types.js +0 -6
- package/es2022/src/components/select/types.js.map +0 -1
- package/es2022/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.js +0 -25
- package/es2022/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.js.map +0 -1
- package/es2022/src/directives/ngSelectEdit/ngSelectEdit.directive.js +0 -66
- package/es2022/src/directives/ngSelectEdit/ngSelectEdit.directive.js.map +0 -1
- package/es2022/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.js +0 -42
- package/es2022/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.js.map +0 -1
- package/es2022/src/index.ssr.js +0 -10
- package/es2022/src/index.ssr.js.map +0 -1
- package/es2022/src/misc/index.js +0 -6
- package/es2022/src/misc/index.js.map +0 -1
- package/es2022/src/misc/ngSelectControlValueAccessor.directive.js +0 -162
- package/es2022/src/misc/ngSelectControlValueAccessor.directive.js.map +0 -1
- package/es2022/src/misc/plugin.interface.js +0 -2
- package/es2022/src/misc/plugin.interface.js.map +0 -1
- package/es2022/src/misc/pluginBus/pluginBus.interface.js +0 -2
- package/es2022/src/misc/pluginBus/pluginBus.interface.js.map +0 -1
- package/es2022/src/misc/pluginBus/pluginBus.js.map +0 -1
- package/es2022/src/misc/templateGatherer.interface.js.map +0 -1
- package/es2022/src/modules/ngSelectDynamic.module.js +0 -20
- package/es2022/src/modules/ngSelectDynamic.module.js.map +0 -1
- package/es2022/src/pipes/ngSelectHasValue.pipe.js.map +0 -1
- package/es2022/src/pipes/ngSelectValue.pipe.js +0 -31
- package/es2022/src/pipes/ngSelectValue.pipe.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.js +0 -146
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.js +0 -2
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/components.js +0 -3
- package/es2022/src/plugins/keyboardHandler/components.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.js +0 -197
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.js +0 -2
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/keyboardHandler.interface.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/types.js +0 -10
- package/es2022/src/plugins/keyboardHandler/types.js.map +0 -1
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.component.js +0 -164
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.component.js.map +0 -1
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.interface.js +0 -2
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/components.js +0 -4
- package/es2022/src/plugins/liveSearch/components.js.map +0 -1
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.component.js +0 -313
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.component.js.map +0 -1
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.interface.js +0 -2
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/liveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.component.js +0 -65
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.component.js.map +0 -1
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.interface.js +0 -2
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/types.js +0 -10
- package/es2022/src/plugins/liveSearch/types.js.map +0 -1
- package/es2022/src/plugins/normalState/basic/basicNormalState.component.js +0 -58
- package/es2022/src/plugins/normalState/basic/basicNormalState.component.js.map +0 -1
- package/es2022/src/plugins/normalState/basic/basicNormalState.interface.js +0 -2
- package/es2022/src/plugins/normalState/basic/basicNormalState.interface.js.map +0 -1
- package/es2022/src/plugins/normalState/components.js +0 -4
- package/es2022/src/plugins/normalState/components.js.map +0 -1
- package/es2022/src/plugins/normalState/edit/editNormalState.component.js +0 -88
- package/es2022/src/plugins/normalState/edit/editNormalState.component.js.map +0 -1
- package/es2022/src/plugins/normalState/edit/editNormalState.interface.js +0 -2
- package/es2022/src/plugins/normalState/edit/editNormalState.interface.js.map +0 -1
- package/es2022/src/plugins/normalState/normalState.interface.js.map +0 -1
- package/es2022/src/plugins/normalState/normalStateAbstract.component.js +0 -89
- package/es2022/src/plugins/normalState/normalStateAbstract.component.js.map +0 -1
- package/es2022/src/plugins/normalState/types.js +0 -10
- package/es2022/src/plugins/normalState/types.js.map +0 -1
- package/es2022/src/plugins/popup/basic/basicPopup.component.js +0 -62
- package/es2022/src/plugins/popup/basic/basicPopup.component.js.map +0 -1
- package/es2022/src/plugins/popup/basic/basicPopup.interface.js +0 -2
- package/es2022/src/plugins/popup/basic/basicPopup.interface.js.map +0 -1
- package/es2022/src/plugins/popup/component.js +0 -4
- package/es2022/src/plugins/popup/component.js.map +0 -1
- package/es2022/src/plugins/popup/edit/editPopup.component.js +0 -85
- package/es2022/src/plugins/popup/edit/editPopup.component.js.map +0 -1
- package/es2022/src/plugins/popup/edit/editPopup.interface.js +0 -2
- package/es2022/src/plugins/popup/edit/editPopup.interface.js.map +0 -1
- package/es2022/src/plugins/popup/popup.interface.js.map +0 -1
- package/es2022/src/plugins/popup/popupAbstract.component.js +0 -200
- package/es2022/src/plugins/popup/popupAbstract.component.js.map +0 -1
- package/es2022/src/plugins/popup/types.js +0 -10
- package/es2022/src/plugins/popup/types.js.map +0 -1
- package/es2022/src/plugins/positioner/components.js +0 -3
- package/es2022/src/plugins/positioner/components.js.map +0 -1
- package/es2022/src/plugins/positioner/default/defaultPositioner.component.js +0 -160
- package/es2022/src/plugins/positioner/default/defaultPositioner.component.js.map +0 -1
- package/es2022/src/plugins/positioner/default/defaultPositioner.interface.js +0 -2
- package/es2022/src/plugins/positioner/default/defaultPositioner.interface.js.map +0 -1
- package/es2022/src/plugins/positioner/no/noPositioner.component.js +0 -78
- package/es2022/src/plugins/positioner/no/noPositioner.component.js.map +0 -1
- package/es2022/src/plugins/positioner/no/noPositioner.interface.js +0 -2
- package/es2022/src/plugins/positioner/no/noPositioner.interface.js.map +0 -1
- package/es2022/src/plugins/positioner/positioner.interface.js.map +0 -1
- package/es2022/src/plugins/positioner/types.js +0 -10
- package/es2022/src/plugins/positioner/types.js.map +0 -1
- package/es2022/src/plugins/readonlyState/readonlyState.interface.js.map +0 -1
- package/es2022/src/plugins/readonlyState/types.js +0 -10
- package/es2022/src/plugins/readonlyState/types.js.map +0 -1
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.component.js +0 -159
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.component.js.map +0 -1
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.interface.js +0 -2
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.interface.js.map +0 -1
- package/es2022/src/plugins/valueHandler/components.js +0 -3
- package/es2022/src/plugins/valueHandler/components.js.map +0 -1
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.js +0 -179
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.js.map +0 -1
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.js +0 -2
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.js.map +0 -1
- package/es2022/src/plugins/valueHandler/types.js +0 -10
- package/es2022/src/plugins/valueHandler/types.js.map +0 -1
- package/es2022/src/plugins/valueHandler/valueHandler.interface.js.map +0 -1
- package/es2022/src/plugins/valueHandler/valueHandlerBase.js +0 -145
- package/es2022/src/plugins/valueHandler/valueHandlerBase.js.map +0 -1
- package/material/src/directives/types.d.ts +0 -2
- package/material/src/directives/types.d.ts.map +0 -1
- package/material/src/plugins/popup/components.d.ts +0 -3
- package/material/src/plugins/popup/components.d.ts.map +0 -1
- package/src/components/option/index.d.ts +0 -3
- package/src/components/option/index.d.ts.map +0 -1
- package/src/components/option/optgroup.component.d.ts +0 -37
- package/src/components/option/optgroup.component.d.ts.map +0 -1
- package/src/components/option/optgroup.interface.d.ts +0 -20
- package/src/components/option/optgroup.interface.d.ts.map +0 -1
- package/src/components/option/option.interface.d.ts +0 -31
- package/src/components/option/option.interface.d.ts.map +0 -1
- package/src/components/select/index.d.ts +0 -2
- package/src/components/select/select.interface.d.ts +0 -68
- package/src/components/select/select.interface.d.ts.map +0 -1
- package/src/components/select/types.d.ts +0 -7
- package/src/components/select/types.d.ts.map +0 -1
- package/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.d.ts +0 -11
- package/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.d.ts.map +0 -1
- package/src/directives/ngSelectEdit/ngSelectEdit.directive.d.ts +0 -11
- package/src/directives/ngSelectEdit/ngSelectEdit.directive.d.ts.map +0 -1
- package/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.d.ts +0 -21
- package/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.d.ts.map +0 -1
- package/src/index.ssr.d.ts +0 -1
- package/src/index.ssr.d.ts.map +0 -1
- package/src/misc/index.d.ts +0 -6
- package/src/misc/index.d.ts.map +0 -1
- package/src/misc/ngSelectControlValueAccessor.directive.d.ts +0 -63
- package/src/misc/ngSelectControlValueAccessor.directive.d.ts.map +0 -1
- package/src/misc/plugin.interface.d.ts +0 -108
- package/src/misc/plugin.interface.d.ts.map +0 -1
- package/src/misc/pluginBus/pluginBus.d.ts +0 -49
- package/src/misc/pluginBus/pluginBus.d.ts.map +0 -1
- package/src/misc/pluginBus/pluginBus.interface.d.ts +0 -36
- package/src/misc/pluginBus/pluginBus.interface.d.ts.map +0 -1
- package/src/misc/templateGatherer.interface.d.ts +0 -17
- package/src/misc/templateGatherer.interface.d.ts.map +0 -1
- package/src/modules/ngSelectDynamic.module.d.ts +0 -11
- package/src/modules/ngSelectDynamic.module.d.ts.map +0 -1
- package/src/pipes/ngSelectHasValue.pipe.d.ts +0 -16
- package/src/pipes/ngSelectHasValue.pipe.d.ts.map +0 -1
- package/src/pipes/ngSelectValue.pipe.d.ts +0 -19
- package/src/pipes/ngSelectValue.pipe.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.d.ts +0 -58
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.d.ts +0 -12
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/components.d.ts +0 -3
- package/src/plugins/keyboardHandler/components.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.d.ts +0 -68
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.d.ts +0 -12
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/keyboardHandler.interface.d.ts +0 -12
- package/src/plugins/keyboardHandler/keyboardHandler.interface.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/types.d.ts +0 -11
- package/src/plugins/keyboardHandler/types.d.ts.map +0 -1
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.css +0 -11
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.d.ts +0 -98
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.d.ts.map +0 -1
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.html +0 -5
- package/src/plugins/liveSearch/basic/basicLiveSearch.interface.d.ts +0 -29
- package/src/plugins/liveSearch/basic/basicLiveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/components.d.ts +0 -4
- package/src/plugins/liveSearch/components.d.ts.map +0 -1
- package/src/plugins/liveSearch/edit/editLiveSearch.component.css +0 -13
- package/src/plugins/liveSearch/edit/editLiveSearch.component.d.ts +0 -141
- package/src/plugins/liveSearch/edit/editLiveSearch.component.d.ts.map +0 -1
- package/src/plugins/liveSearch/edit/editLiveSearch.component.html +0 -13
- package/src/plugins/liveSearch/edit/editLiveSearch.interface.d.ts +0 -37
- package/src/plugins/liveSearch/edit/editLiveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/liveSearch.interface.d.ts +0 -38
- package/src/plugins/liveSearch/liveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/no/noLiveSearch.component.d.ts +0 -54
- package/src/plugins/liveSearch/no/noLiveSearch.component.d.ts.map +0 -1
- package/src/plugins/liveSearch/no/noLiveSearch.interface.d.ts +0 -12
- package/src/plugins/liveSearch/no/noLiveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/types.d.ts +0 -11
- package/src/plugins/liveSearch/types.d.ts.map +0 -1
- package/src/plugins/normalState/basic/basicNormalState.component.css +0 -38
- package/src/plugins/normalState/basic/basicNormalState.component.d.ts +0 -17
- package/src/plugins/normalState/basic/basicNormalState.component.d.ts.map +0 -1
- package/src/plugins/normalState/basic/basicNormalState.component.html +0 -6
- package/src/plugins/normalState/basic/basicNormalState.interface.d.ts +0 -29
- package/src/plugins/normalState/basic/basicNormalState.interface.d.ts.map +0 -1
- package/src/plugins/normalState/components.d.ts +0 -4
- package/src/plugins/normalState/components.d.ts.map +0 -1
- package/src/plugins/normalState/edit/editNormalState.component.css +0 -77
- package/src/plugins/normalState/edit/editNormalState.component.d.ts +0 -26
- package/src/plugins/normalState/edit/editNormalState.component.d.ts.map +0 -1
- package/src/plugins/normalState/edit/editNormalState.component.html +0 -19
- package/src/plugins/normalState/edit/editNormalState.interface.d.ts +0 -53
- package/src/plugins/normalState/edit/editNormalState.interface.d.ts.map +0 -1
- package/src/plugins/normalState/normalState.interface.d.ts +0 -49
- package/src/plugins/normalState/normalState.interface.d.ts.map +0 -1
- package/src/plugins/normalState/normalStateAbstract.component.d.ts +0 -65
- package/src/plugins/normalState/normalStateAbstract.component.d.ts.map +0 -1
- package/src/plugins/normalState/types.d.ts +0 -11
- package/src/plugins/normalState/types.d.ts.map +0 -1
- package/src/plugins/popup/basic/basicPopup.component.css +0 -61
- package/src/plugins/popup/basic/basicPopup.component.d.ts +0 -17
- package/src/plugins/popup/basic/basicPopup.component.d.ts.map +0 -1
- package/src/plugins/popup/basic/basicPopup.component.html +0 -21
- package/src/plugins/popup/basic/basicPopup.interface.d.ts +0 -33
- package/src/plugins/popup/basic/basicPopup.interface.d.ts.map +0 -1
- package/src/plugins/popup/component.d.ts +0 -4
- package/src/plugins/popup/component.d.ts.map +0 -1
- package/src/plugins/popup/edit/editPopup.component.css +0 -61
- package/src/plugins/popup/edit/editPopup.component.d.ts +0 -32
- package/src/plugins/popup/edit/editPopup.component.d.ts.map +0 -1
- package/src/plugins/popup/edit/editPopup.component.html +0 -19
- package/src/plugins/popup/edit/editPopup.interface.d.ts +0 -33
- package/src/plugins/popup/edit/editPopup.interface.d.ts.map +0 -1
- package/src/plugins/popup/popup.interface.d.ts +0 -52
- package/src/plugins/popup/popup.interface.d.ts.map +0 -1
- package/src/plugins/popup/popupAbstract.component.d.ts +0 -130
- package/src/plugins/popup/popupAbstract.component.d.ts.map +0 -1
- package/src/plugins/popup/types.d.ts +0 -11
- package/src/plugins/popup/types.d.ts.map +0 -1
- package/src/plugins/positioner/components.d.ts +0 -3
- package/src/plugins/positioner/components.d.ts.map +0 -1
- package/src/plugins/positioner/default/defaultPositioner.component.d.ts +0 -89
- package/src/plugins/positioner/default/defaultPositioner.component.d.ts.map +0 -1
- package/src/plugins/positioner/default/defaultPositioner.interface.d.ts +0 -12
- package/src/plugins/positioner/default/defaultPositioner.interface.d.ts.map +0 -1
- package/src/plugins/positioner/no/noPositioner.component.d.ts +0 -50
- package/src/plugins/positioner/no/noPositioner.component.d.ts.map +0 -1
- package/src/plugins/positioner/no/noPositioner.interface.d.ts +0 -12
- package/src/plugins/positioner/no/noPositioner.interface.d.ts.map +0 -1
- package/src/plugins/positioner/positioner.interface.d.ts +0 -22
- package/src/plugins/positioner/positioner.interface.d.ts.map +0 -1
- package/src/plugins/positioner/types.d.ts +0 -11
- package/src/plugins/positioner/types.d.ts.map +0 -1
- package/src/plugins/readonlyState/readonlyState.interface.d.ts +0 -12
- package/src/plugins/readonlyState/readonlyState.interface.d.ts.map +0 -1
- package/src/plugins/readonlyState/types.d.ts +0 -11
- package/src/plugins/readonlyState/types.d.ts.map +0 -1
- package/src/plugins/valueHandler/basic/basicValueHandler.component.d.ts +0 -51
- package/src/plugins/valueHandler/basic/basicValueHandler.component.d.ts.map +0 -1
- package/src/plugins/valueHandler/basic/basicValueHandler.interface.d.ts +0 -12
- package/src/plugins/valueHandler/basic/basicValueHandler.interface.d.ts.map +0 -1
- package/src/plugins/valueHandler/components.d.ts +0 -3
- package/src/plugins/valueHandler/components.d.ts.map +0 -1
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.d.ts +0 -52
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.d.ts.map +0 -1
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.d.ts +0 -21
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.d.ts.map +0 -1
- package/src/plugins/valueHandler/types.d.ts +0 -11
- package/src/plugins/valueHandler/types.d.ts.map +0 -1
- package/src/plugins/valueHandler/valueHandler.interface.d.ts +0 -31
- package/src/plugins/valueHandler/valueHandler.interface.d.ts.map +0 -1
- package/src/plugins/valueHandler/valueHandlerBase.d.ts +0 -115
- package/src/plugins/valueHandler/valueHandlerBase.d.ts.map +0 -1
- /package/es2022/src/{plugins → interfaces/plugins}/keyboardHandler/keyboardHandler.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/liveSearch/liveSearch.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/normalState/normalState.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/popup/popup.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/positioner/positioner.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/readonlyState/readonlyState.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/valueHandler/valueHandler.interface.js +0 -0
- /package/es2022/src/{misc → interfaces/templateGatherer}/templateGatherer.interface.js +0 -0
|
@@ -1,86 +1 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Subscription } from 'rxjs';
|
|
3
|
-
import { OptionsGatherer } from './optionsGatherer.interface';
|
|
4
|
-
import { NgSelectPluginInstances, NgSelect } from '../../components/select';
|
|
5
|
-
import { NgSelectOption } from '../../components/option';
|
|
6
|
-
import { DynamicOptionsGathererOptions } from './dynamicOptionsGatherer.interface';
|
|
7
|
-
import { LiveSearch } from '../../plugins/liveSearch';
|
|
8
|
-
import { PluginBus } from '../pluginBus/pluginBus';
|
|
9
|
-
import { Popup } from '../../plugins/popup';
|
|
10
|
-
import { ValueHandler } from '../../plugins/valueHandler';
|
|
11
|
-
/**
|
|
12
|
-
* Class that is used as for options gathering in dynamic way, for example from external source when writing
|
|
13
|
-
*/
|
|
14
|
-
export declare class DynamicOptionsGatherer<TValue = any> implements OptionsGatherer<TValue> {
|
|
15
|
-
protected _options: DynamicOptionsGathererOptions<TValue>;
|
|
16
|
-
/**
|
|
17
|
-
* Live search plugin currently used in NgSelect
|
|
18
|
-
*/
|
|
19
|
-
protected _liveSearch: LiveSearch;
|
|
20
|
-
/**
|
|
21
|
-
* Subscription for changes of live search value
|
|
22
|
-
*/
|
|
23
|
-
protected _searchValueChangeSubscription: Subscription;
|
|
24
|
-
/**
|
|
25
|
-
* Subscription for visibility change of popup
|
|
26
|
-
*/
|
|
27
|
-
protected _visibilitySubscription: Subscription;
|
|
28
|
-
/**
|
|
29
|
-
* Minimal number of characters required for searching
|
|
30
|
-
*/
|
|
31
|
-
protected _minLength: number;
|
|
32
|
-
/**
|
|
33
|
-
* Popup that is displayed
|
|
34
|
-
*/
|
|
35
|
-
protected _popup: Popup;
|
|
36
|
-
/**
|
|
37
|
-
* Indication that first initial call was performed
|
|
38
|
-
*/
|
|
39
|
-
protected _initialized: boolean;
|
|
40
|
-
/**
|
|
41
|
-
* Currently used value handler plugin
|
|
42
|
-
*/
|
|
43
|
-
protected _valueHandler: ValueHandler;
|
|
44
|
-
/**
|
|
45
|
-
* Array of provided options for select
|
|
46
|
-
*/
|
|
47
|
-
options: NgSelectOption<TValue>[];
|
|
48
|
-
/**
|
|
49
|
-
* Occurs when array of provided options has changed
|
|
50
|
-
*/
|
|
51
|
-
optionsChange: EventEmitter<void>;
|
|
52
|
-
/**
|
|
53
|
-
* Array of visible, displayed options for select
|
|
54
|
-
*/
|
|
55
|
-
get availableOptions(): NgSelectOption<TValue>[];
|
|
56
|
-
/**
|
|
57
|
-
* Occurs when array of visible, displayed options has changed
|
|
58
|
-
*/
|
|
59
|
-
get availableOptionsChange(): EventEmitter<void>;
|
|
60
|
-
/**
|
|
61
|
-
* NgSelect plugin instances available for gatherer
|
|
62
|
-
*/
|
|
63
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
64
|
-
/**
|
|
65
|
-
* Plugin bus used for inter plugin shared events
|
|
66
|
-
*/
|
|
67
|
-
pluginBus: PluginBus<TValue>;
|
|
68
|
-
/**
|
|
69
|
-
* Select element that implements default gatherers
|
|
70
|
-
*/
|
|
71
|
-
select: NgSelect<TValue>;
|
|
72
|
-
constructor(_options: DynamicOptionsGathererOptions<TValue>);
|
|
73
|
-
/**
|
|
74
|
-
* Initialize gatherer during initialization phase
|
|
75
|
-
*/
|
|
76
|
-
initializeGatherer(): void;
|
|
77
|
-
/**
|
|
78
|
-
* Called when gatherer needs to be destroyed
|
|
79
|
-
*/
|
|
80
|
-
destroyGatherer(): void;
|
|
81
|
-
/**
|
|
82
|
-
* Process options change request
|
|
83
|
-
*/
|
|
84
|
-
protected _processOptionsChange(): Promise<void>;
|
|
85
|
-
}
|
|
86
1
|
//# sourceMappingURL=dynamicOptionsGatherer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dynamicOptionsGatherer.d.ts","sourceRoot":"","sources":["dynamicOptionsGatherer.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dynamicOptionsGatherer.d.ts","sourceRoot":"","sources":["dynamicOptionsGatherer.ts"],"names":[],"mappings":""}
|
|
@@ -1,29 +1 @@
|
|
|
1
|
-
import { NgSelectOption } from '../../components/option';
|
|
2
|
-
/**
|
|
3
|
-
* Callback used for obtaining dynamic options
|
|
4
|
-
*/
|
|
5
|
-
export interface GetOptionsCallback<TValue = any> {
|
|
6
|
-
/**
|
|
7
|
-
* Gets array of options based on query
|
|
8
|
-
* @param query - Query for obtaining options, can be searched string or TValue in case of obtaining option for value during initialization
|
|
9
|
-
*/
|
|
10
|
-
(query: string | TValue): Promise<NgSelectOption<TValue>[]>;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* Options for dynamic options gatherer
|
|
14
|
-
*/
|
|
15
|
-
export interface DynamicOptionsGathererOptions<TValue = any> {
|
|
16
|
-
/**
|
|
17
|
-
* Callback used for obtaining dynamic options
|
|
18
|
-
*/
|
|
19
|
-
dynamicOptionsCallback: GetOptionsCallback<TValue>;
|
|
20
|
-
/**
|
|
21
|
-
* Number of miliseconds which represents minimal delay between calls of dynamicOptionsCallback
|
|
22
|
-
*/
|
|
23
|
-
delay?: number;
|
|
24
|
-
/**
|
|
25
|
-
* Minimal number of characters to be used for searching
|
|
26
|
-
*/
|
|
27
|
-
minLength?: number;
|
|
28
|
-
}
|
|
29
1
|
//# sourceMappingURL=dynamicOptionsGatherer.interface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dynamicOptionsGatherer.interface.d.ts","sourceRoot":"","sources":["dynamicOptionsGatherer.interface.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"dynamicOptionsGatherer.interface.d.ts","sourceRoot":"","sources":["dynamicOptionsGatherer.interface.ts"],"names":[],"mappings":""}
|
|
@@ -1,73 +1 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { Subscription } from 'rxjs';
|
|
3
|
-
import { OptionsGatherer } from './optionsGatherer.interface';
|
|
4
|
-
import { NgSelectOption } from '../../components/option';
|
|
5
|
-
import { NgSelectPluginInstances, NgSelect } from '../../components/select';
|
|
6
|
-
import { PluginBus } from '../pluginBus/pluginBus';
|
|
7
|
-
import { ValueHandler } from '../../plugins/valueHandler';
|
|
8
|
-
/**
|
|
9
|
-
* Options gatherer using default build in gatherer extended with exclusion of selected options
|
|
10
|
-
*/
|
|
11
|
-
export declare class ExcludingOptionsGatherer<TValue = any> implements OptionsGatherer<TValue> {
|
|
12
|
-
/**
|
|
13
|
-
* Array of visible, displayed options for select
|
|
14
|
-
*/
|
|
15
|
-
protected _availableOptions: NgSelectOption<TValue>[];
|
|
16
|
-
/**
|
|
17
|
-
* Occurs when array of visible, displayed options has changed
|
|
18
|
-
*/
|
|
19
|
-
protected _availableOptionsChange: EventEmitter<void>;
|
|
20
|
-
/**
|
|
21
|
-
* Subscription for change of available options
|
|
22
|
-
*/
|
|
23
|
-
protected _availableOptionsChangeSubscription: Subscription;
|
|
24
|
-
/**
|
|
25
|
-
* Subscription for change of value in value handler
|
|
26
|
-
*/
|
|
27
|
-
protected _valueChangedSubscription: Subscription;
|
|
28
|
-
/**
|
|
29
|
-
* Value handler plugin used within `NgSelect`
|
|
30
|
-
*/
|
|
31
|
-
protected _valueHandler: ValueHandler;
|
|
32
|
-
/**
|
|
33
|
-
* Array of provided options for select
|
|
34
|
-
*/
|
|
35
|
-
get options(): NgSelectOption<TValue>[];
|
|
36
|
-
/**
|
|
37
|
-
* Occurs when array of provided options has changed
|
|
38
|
-
*/
|
|
39
|
-
get optionsChange(): EventEmitter<void>;
|
|
40
|
-
/**
|
|
41
|
-
* Array of visible, displayed options for select
|
|
42
|
-
*/
|
|
43
|
-
get availableOptions(): NgSelectOption<TValue>[];
|
|
44
|
-
/**
|
|
45
|
-
* Occurs when array of visible, displayed options has changed
|
|
46
|
-
*/
|
|
47
|
-
get availableOptionsChange(): EventEmitter<void>;
|
|
48
|
-
/**
|
|
49
|
-
* NgSelect plugin instances available for gatherer
|
|
50
|
-
*/
|
|
51
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
52
|
-
/**
|
|
53
|
-
* Plugin bus used for inter plugin shared events
|
|
54
|
-
*/
|
|
55
|
-
pluginBus: PluginBus<TValue>;
|
|
56
|
-
/**
|
|
57
|
-
* Select element that implements default gatherers
|
|
58
|
-
*/
|
|
59
|
-
select: NgSelect<TValue>;
|
|
60
|
-
/**
|
|
61
|
-
* Initialize gatherer during initialization phase
|
|
62
|
-
*/
|
|
63
|
-
initializeGatherer(): void;
|
|
64
|
-
/**
|
|
65
|
-
* Called when gatherer needs to be destroyed
|
|
66
|
-
*/
|
|
67
|
-
destroyGatherer(): void;
|
|
68
|
-
/**
|
|
69
|
-
* Exclude selected options
|
|
70
|
-
*/
|
|
71
|
-
protected _excludeSelected(): void;
|
|
72
|
-
}
|
|
73
1
|
//# sourceMappingURL=excludingOptionsGatherer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"excludingOptionsGatherer.d.ts","sourceRoot":"","sources":["excludingOptionsGatherer.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"excludingOptionsGatherer.d.ts","sourceRoot":"","sources":["excludingOptionsGatherer.ts"],"names":[],"mappings":""}
|
|
@@ -1,53 +1 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { NgSelectOption } from '../../components/option/option.interface';
|
|
3
|
-
import { NgSelectPluginInstances, NgSelect } from '../../components/select';
|
|
4
|
-
import { NormalizeFunc } from '../ngSelectOptions.interface';
|
|
5
|
-
import { PluginBus } from '../pluginBus/pluginBus';
|
|
6
|
-
/**
|
|
7
|
-
* Callback that is used for filtering static values during live search
|
|
8
|
-
*/
|
|
9
|
-
export interface LiveSearchFilter<TValue = any> {
|
|
10
|
-
(query: string, normalizer?: NormalizeFunc<TValue>): (option: NgSelectOption<TValue>) => boolean;
|
|
11
|
-
}
|
|
12
|
-
/**
|
|
13
|
-
* Gatherer used for obtaining options for select
|
|
14
|
-
*/
|
|
15
|
-
export interface OptionsGatherer<TValue = any> {
|
|
16
|
-
/**
|
|
17
|
-
* Array of provided options for select
|
|
18
|
-
*/
|
|
19
|
-
readonly options: NgSelectOption<TValue>[];
|
|
20
|
-
/**
|
|
21
|
-
* Occurs when array of provided options has changed
|
|
22
|
-
*/
|
|
23
|
-
readonly optionsChange: EventEmitter<void>;
|
|
24
|
-
/**
|
|
25
|
-
* Array of visible, displayed options for select
|
|
26
|
-
*/
|
|
27
|
-
readonly availableOptions: NgSelectOption<TValue>[];
|
|
28
|
-
/**
|
|
29
|
-
* Occurs when array of visible, displayed options has changed
|
|
30
|
-
*/
|
|
31
|
-
readonly availableOptionsChange: EventEmitter<void>;
|
|
32
|
-
/**
|
|
33
|
-
* NgSelect plugin instances available for gatherer
|
|
34
|
-
*/
|
|
35
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
36
|
-
/**
|
|
37
|
-
* Plugin bus used for inter plugin shared events
|
|
38
|
-
*/
|
|
39
|
-
pluginBus: PluginBus<TValue>;
|
|
40
|
-
/**
|
|
41
|
-
* Select element that implements default gatherers
|
|
42
|
-
*/
|
|
43
|
-
select: NgSelect<TValue>;
|
|
44
|
-
/**
|
|
45
|
-
* Initialize gatherer during initialization phase
|
|
46
|
-
*/
|
|
47
|
-
initializeGatherer(): void;
|
|
48
|
-
/**
|
|
49
|
-
* Called when gatherer needs to be destroyed
|
|
50
|
-
*/
|
|
51
|
-
destroyGatherer(): void;
|
|
52
|
-
}
|
|
53
1
|
//# sourceMappingURL=optionsGatherer.interface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"optionsGatherer.interface.d.ts","sourceRoot":"","sources":["optionsGatherer.interface.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"optionsGatherer.interface.d.ts","sourceRoot":"","sources":["optionsGatherer.interface.ts"],"names":[],"mappings":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { Provider, Type } from '@angular/core';
|
|
2
|
+
import { RecursivePartial } from '@jscrpt/common';
|
|
3
|
+
import { Interactions, KeyboardHandler, LiveSearch, NormalState, OptionsHandler, Popup, Positioner, ReadonlyState, SelectOptions, ValueHandler } from '../interfaces';
|
|
4
|
+
/**
|
|
5
|
+
* Provides options for select globally
|
|
6
|
+
* @param options - Options to be provided
|
|
7
|
+
*/
|
|
8
|
+
export declare function provideSelectOptions(options: RecursivePartial<SelectOptions>): Provider;
|
|
9
|
+
/**
|
|
10
|
+
* Provides type of keyboard handler that will be used for select globally
|
|
11
|
+
* @param type - Type to be used as keyboard handler
|
|
12
|
+
*/
|
|
13
|
+
export declare function provideKeyboardHandlerType(type: Type<KeyboardHandler>): Provider;
|
|
14
|
+
/**
|
|
15
|
+
* Provides type of normal state that will be used for select globally
|
|
16
|
+
* @param type - Type to be used as normal state
|
|
17
|
+
*/
|
|
18
|
+
export declare function provideNormalStateType(type: Type<NormalState>): Provider;
|
|
19
|
+
/**
|
|
20
|
+
* Provides type of popup that will be used for select globally
|
|
21
|
+
* @param type - Type to be used as popup
|
|
22
|
+
*/
|
|
23
|
+
export declare function providePopupType(type: Type<Popup>): Provider;
|
|
24
|
+
/**
|
|
25
|
+
* Provides type of positioner that will be used for select globally
|
|
26
|
+
* @param type - Type to be used as positioner
|
|
27
|
+
*/
|
|
28
|
+
export declare function providePositionerType(type: Type<Positioner>): Provider;
|
|
29
|
+
/**
|
|
30
|
+
* Provides type of readonly state that will be used for select globally
|
|
31
|
+
* @param type - Type to be used as readonly state
|
|
32
|
+
*/
|
|
33
|
+
export declare function provideReadonlyStateType(type: Type<ReadonlyState>): Provider;
|
|
34
|
+
/**
|
|
35
|
+
* Provides type of value handler that will be used for select globally
|
|
36
|
+
* @param type - Type to be used as value handler
|
|
37
|
+
*/
|
|
38
|
+
export declare function provideValueHandlerType(type: Type<ValueHandler>): Provider;
|
|
39
|
+
/**
|
|
40
|
+
* Provides type of live search that will be used for select globally
|
|
41
|
+
* @param type - Type to be used as live search
|
|
42
|
+
*/
|
|
43
|
+
export declare function provideLiveSearchType(type: Type<LiveSearch>): Provider;
|
|
44
|
+
/**
|
|
45
|
+
* Provides type of interactions that will be used for select globally
|
|
46
|
+
* @param type - Type to be used as interactions
|
|
47
|
+
*/
|
|
48
|
+
export declare function provideInteractionsType(type: Type<Interactions>): Provider;
|
|
49
|
+
/**
|
|
50
|
+
* Provides type of options handler that will be used for select globally
|
|
51
|
+
* @param type - Type to be used as options handler
|
|
52
|
+
*/
|
|
53
|
+
export declare function provideOptionsHandlerType(type: Type<OptionsHandler>): Provider;
|
|
54
|
+
//# sourceMappingURL=providers.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"providers.d.ts","sourceRoot":"","sources":["providers.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAE,IAAI,EAAgB,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAC,gBAAgB,EAAC,MAAM,gBAAgB,CAAC;AAEhD,OAAO,EAAC,YAAY,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,aAAa,EAAE,YAAY,EAAC,MAAM,eAAe,CAAC;AAGpK;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,gBAAgB,CAAC,aAAa,CAAC,GAAG,QAAQ,CAMvF;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,IAAI,CAAC,eAAe,CAAC,GAAG,QAAQ,CAMhF;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,IAAI,CAAC,WAAW,CAAC,GAAG,QAAQ,CAMxE;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,GAAG,QAAQ,CAM5D;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,GAAG,QAAQ,CAMtE;AAED;;;GAGG;AACH,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,IAAI,CAAC,aAAa,CAAC,GAAG,QAAQ,CAM5E;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,QAAQ,CAM1E;AAED;;;GAGG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,GAAG,QAAQ,CAMtE;AAED;;;GAGG;AACH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,IAAI,CAAC,YAAY,CAAC,GAAG,QAAQ,CAM1E;AAED;;;GAGG;AACH,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,GAAG,QAAQ,CAM9E"}
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { InjectionToken, Type } from '@angular/core';
|
|
2
|
+
import { RecursivePartial } from '@jscrpt/common';
|
|
3
|
+
import { SelectOptions } from '../interfaces/selectOptions/selectOptions.interface';
|
|
4
|
+
import { Interactions, InteractionsOptions, KeyboardHandler, KeyboardHandlerOptions, LiveSearch, LiveSearchOptions, NormalState, NormalStateOptions, OptionsHandler, OptionsHandlerOptions, Popup, PopupOptions, Positioner, PositionerOptions, ReadonlyState, ReadonlyStateOptions, ValueHandler, ValueHandlerOptions } from '../interfaces';
|
|
5
|
+
/**
|
|
6
|
+
* Injection token for 'SelectOptions'
|
|
7
|
+
*/
|
|
8
|
+
export declare const SELECT_OPTIONS: InjectionToken<RecursivePartial<SelectOptions>>;
|
|
9
|
+
/**
|
|
10
|
+
* Injection token for 'KeyboardHandler' implementation
|
|
11
|
+
*/
|
|
12
|
+
export declare const KEYBOARD_HANDLER_TYPE: InjectionToken<Type<KeyboardHandler>>;
|
|
13
|
+
/**
|
|
14
|
+
* Injection token for 'NormalState' implementation
|
|
15
|
+
*/
|
|
16
|
+
export declare const NORMAL_STATE_TYPE: InjectionToken<Type<NormalState>>;
|
|
17
|
+
/**
|
|
18
|
+
* Injection token for 'Popup' implementation
|
|
19
|
+
*/
|
|
20
|
+
export declare const POPUP_TYPE: InjectionToken<Type<Popup>>;
|
|
21
|
+
/**
|
|
22
|
+
* Injection token for 'Positioner' implementation
|
|
23
|
+
*/
|
|
24
|
+
export declare const POSITIONER_TYPE: InjectionToken<Type<Positioner>>;
|
|
25
|
+
/**
|
|
26
|
+
* Injection token for 'ReadonlyState' implementation
|
|
27
|
+
*/
|
|
28
|
+
export declare const READONLY_STATE_TYPE: InjectionToken<Type<ReadonlyState>>;
|
|
29
|
+
/**
|
|
30
|
+
* Injection token for 'ValueHandler' implementation
|
|
31
|
+
*/
|
|
32
|
+
export declare const VALUE_HANDLER_TYPE: InjectionToken<Type<ValueHandler>>;
|
|
33
|
+
/**
|
|
34
|
+
* Injection token for 'LiveSearch' implementation
|
|
35
|
+
*/
|
|
36
|
+
export declare const LIVE_SEARCH_TYPE: InjectionToken<Type<LiveSearch>>;
|
|
37
|
+
/**
|
|
38
|
+
* Injection token for 'Interactions' implementation
|
|
39
|
+
*/
|
|
40
|
+
export declare const INTERACTIONS_TYPE: InjectionToken<Type<Interactions>>;
|
|
41
|
+
/**
|
|
42
|
+
* Injection token for 'OptionsHandler' implementation
|
|
43
|
+
*/
|
|
44
|
+
export declare const OPTIONS_HANDLER_TYPE: InjectionToken<Type<OptionsHandler>>;
|
|
45
|
+
/**
|
|
46
|
+
* Injection token for 'KeyboardHandlerOptions' implementation
|
|
47
|
+
*/
|
|
48
|
+
export declare const KEYBOARD_HANDLER_OPTIONS: InjectionToken<KeyboardHandlerOptions>;
|
|
49
|
+
/**
|
|
50
|
+
* Injection token for 'NormalStateOptions' implementation
|
|
51
|
+
*/
|
|
52
|
+
export declare const NORMAL_STATE_OPTIONS: InjectionToken<NormalStateOptions>;
|
|
53
|
+
/**
|
|
54
|
+
* Injection token for 'PopupOptions' implementation
|
|
55
|
+
*/
|
|
56
|
+
export declare const POPUP_OPTIONS: InjectionToken<PopupOptions>;
|
|
57
|
+
/**
|
|
58
|
+
* Injection token for 'PositionerOptions' implementation
|
|
59
|
+
*/
|
|
60
|
+
export declare const POSITIONER_OPTIONS: InjectionToken<PositionerOptions>;
|
|
61
|
+
/**
|
|
62
|
+
* Injection token for 'ReadonlyStateOptions' implementation
|
|
63
|
+
*/
|
|
64
|
+
export declare const READONLY_STATE_OPTIONS: InjectionToken<ReadonlyStateOptions>;
|
|
65
|
+
/**
|
|
66
|
+
* Injection token for 'ValueHandlerOptions' implementation
|
|
67
|
+
*/
|
|
68
|
+
export declare const VALUE_HANDLER_OPTIONS: InjectionToken<ValueHandlerOptions>;
|
|
69
|
+
/**
|
|
70
|
+
* Injection token for 'LiveSearchOptions' implementation
|
|
71
|
+
*/
|
|
72
|
+
export declare const LIVE_SEARCH_OPTIONS: InjectionToken<LiveSearchOptions>;
|
|
73
|
+
/**
|
|
74
|
+
* Injection token for 'InteractionsOptions' implementation
|
|
75
|
+
*/
|
|
76
|
+
export declare const INTERACTIONS_OPTIONS: InjectionToken<InteractionsOptions>;
|
|
77
|
+
/**
|
|
78
|
+
* Injection token for 'OptionsHandlerOptions' implementation
|
|
79
|
+
*/
|
|
80
|
+
export declare const OPTIONS_HANDLER_OPTIONS: InjectionToken<OptionsHandlerOptions>;
|
|
81
|
+
//# sourceMappingURL=tokens.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.d.ts","sourceRoot":"","sources":["tokens.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAE,IAAI,EAAC,MAAM,eAAe,CAAC;AACnD,OAAO,EAAC,gBAAgB,EAAC,MAAM,gBAAgB,CAAC;AAEhD,OAAO,EAAC,aAAa,EAAC,MAAM,qDAAqD,CAAC;AAClF,OAAO,EAAC,YAAY,EAAE,mBAAmB,EAAE,eAAe,EAAE,sBAAsB,EAAE,UAAU,EAAE,iBAAiB,EAAE,WAAW,EAAE,kBAAkB,EAAE,cAAc,EAAE,qBAAqB,EAAE,KAAK,EAAE,YAAY,EAAE,UAAU,EAAE,iBAAiB,EAAE,aAAa,EAAE,oBAAoB,EAAE,YAAY,EAAE,mBAAmB,EAAC,MAAM,eAAe,CAAC;AAE5U;;GAEG;AACH,eAAO,MAAM,cAAc,EAAE,cAAc,CAAC,gBAAgB,CAAC,aAAa,CAAC,CAAyE,CAAC;AAErJ;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,cAAc,CAAC,IAAI,CAAC,eAAe,CAAC,CAAsE,CAAC;AAE/I;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,IAAI,CAAC,WAAW,CAAC,CAA8D,CAAC;AAE/H;;GAEG;AACH,eAAO,MAAM,UAAU,EAAE,cAAc,CAAC,IAAI,CAAC,KAAK,CAAC,CAAiD,CAAC;AAErG;;GAEG;AACH,eAAO,MAAM,eAAe,EAAE,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,CAA2D,CAAC;AAEzH;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,cAAc,CAAC,IAAI,CAAC,aAAa,CAAC,CAAkE,CAAC;AAEvI;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,cAAc,CAAC,IAAI,CAAC,YAAY,CAAC,CAAgE,CAAC;AAEnI;;GAEG;AACH,eAAO,MAAM,gBAAgB,EAAE,cAAc,CAAC,IAAI,CAAC,UAAU,CAAC,CAA4D,CAAC;AAE3H;;GAEG;AACH,eAAO,MAAM,iBAAiB,EAAE,cAAc,CAAC,IAAI,CAAC,YAAY,CAAC,CAA0D,CAAC;AAE5H;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,cAAc,CAAC,IAAI,CAAC,cAAc,CAAC,CAAoE,CAAC;AAE3I;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,cAAc,CAAC,sBAAsB,CAA0E,CAAC;AAEvJ;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,cAAc,CAAC,kBAAkB,CAAkE,CAAC;AAEvI;;GAEG;AACH,eAAO,MAAM,aAAa,EAAE,cAAc,CAAC,YAAY,CAAqD,CAAC;AAE7G;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,cAAc,CAAC,iBAAiB,CAA+D,CAAC;AAEjI;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,cAAc,CAAC,oBAAoB,CAAsE,CAAC;AAE/I;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,cAAc,CAAC,mBAAmB,CAAoE,CAAC;AAE3I;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,cAAc,CAAC,iBAAiB,CAAgE,CAAC;AAEnI;;GAEG;AACH,eAAO,MAAM,oBAAoB,EAAE,cAAc,CAAC,mBAAmB,CAAmE,CAAC;AAEzI;;GAEG;AACH,eAAO,MAAM,uBAAuB,EAAE,cAAc,CAAC,qBAAqB,CAAwE,CAAC"}
|
package/src/misc/types.d.ts
CHANGED
|
@@ -1,42 +1,22 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { KeyboardHandler } from '../plugins/keyboardHandler';
|
|
3
|
-
import { NormalState } from '../plugins/normalState';
|
|
4
|
-
import { Popup } from '../plugins/popup';
|
|
5
|
-
import { Positioner } from '../plugins/positioner';
|
|
6
|
-
import { ReadonlyState } from '../plugins/readonlyState';
|
|
7
|
-
import { ValueHandler } from '../plugins/valueHandler';
|
|
8
|
-
import { LiveSearch } from '../plugins/liveSearch';
|
|
9
|
-
import { NgSelectOptions } from './ngSelectOptions.interface';
|
|
1
|
+
import { SelectApi, SelectCssClasses, SelectOption } from '../interfaces';
|
|
10
2
|
/**
|
|
11
|
-
*
|
|
3
|
+
* Defintion of action that can be executed on Select
|
|
12
4
|
*/
|
|
13
|
-
export
|
|
5
|
+
export type SelectAction<TValue = unknown, TCssClasses = SelectCssClasses> = (ngSelect: SelectApi<TValue, TCssClasses>) => void;
|
|
14
6
|
/**
|
|
15
|
-
*
|
|
7
|
+
* Definition of function that can be executed on Select and returns some data
|
|
16
8
|
*/
|
|
17
|
-
export
|
|
9
|
+
export type SelectFunction<TResult = unknown, TValue = unknown, TCssClasses = SelectCssClasses> = (ngSelect: SelectApi<TValue, TCssClasses>) => TResult;
|
|
18
10
|
/**
|
|
19
|
-
*
|
|
11
|
+
* Definition of function used for transformation of select option into display text
|
|
20
12
|
*/
|
|
21
|
-
export
|
|
13
|
+
export type DisplayTextFunc<TValue = unknown> = (option: SelectOption<TValue>) => string;
|
|
22
14
|
/**
|
|
23
|
-
*
|
|
15
|
+
* Definition of function used for checking equality of select value
|
|
24
16
|
*/
|
|
25
|
-
export
|
|
17
|
+
export type ValueEqualityFunc<TValue = unknown> = (value: TValue, compare: TValue) => boolean;
|
|
26
18
|
/**
|
|
27
|
-
*
|
|
19
|
+
* Definition of function used for extracting value from select option
|
|
28
20
|
*/
|
|
29
|
-
export
|
|
30
|
-
/**
|
|
31
|
-
* Injection token for 'ReadonlyState' implementation
|
|
32
|
-
*/
|
|
33
|
-
export declare const READONLY_STATE_TYPE: InjectionToken<Type<ReadonlyState>>;
|
|
34
|
-
/**
|
|
35
|
-
* Injection token for 'ValueHandler' implementation
|
|
36
|
-
*/
|
|
37
|
-
export declare const VALUE_HANDLER_TYPE: InjectionToken<Type<ValueHandler>>;
|
|
38
|
-
/**
|
|
39
|
-
* Injection token for 'LiveSearch' implementation
|
|
40
|
-
*/
|
|
41
|
-
export declare const LIVE_SEARCH_TYPE: InjectionToken<Type<LiveSearch>>;
|
|
21
|
+
export type ValueExtractorFunc<TValue = unknown> = (option: SelectOption<TValue>) => TValue;
|
|
42
22
|
//# sourceMappingURL=types.d.ts.map
|
package/src/misc/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,gBAAgB,EAAE,YAAY,EAAC,MAAM,eAAe,CAAC;AAExE;;GAEG;AACH,MAAM,MAAM,YAAY,CAAC,MAAM,GAAG,OAAO,EAAE,WAAW,GAAG,gBAAgB,IAAI,CAAC,QAAQ,EAAE,SAAS,CAAC,MAAM,EAAE,WAAW,CAAC,KAAK,IAAI,CAAC;AAEhI;;GAEG;AACH,MAAM,MAAM,cAAc,CAAC,OAAO,GAAG,OAAO,EAAE,MAAM,GAAG,OAAO,EAAE,WAAW,GAAG,gBAAgB,IAAI,CAAC,QAAQ,EAAE,SAAS,CAAC,MAAM,EAAE,WAAW,CAAC,KAAK,OAAO,CAAC;AAExJ;;GAEG;AACH,MAAM,MAAM,eAAe,CAAC,MAAM,GAAG,OAAO,IAAI,CAAC,MAAM,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,MAAM,CAAC;AAEzF;;GAEG;AACH,MAAM,MAAM,iBAAiB,CAAC,MAAM,GAAG,OAAO,IAAI,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,KAAK,OAAO,CAAC;AAE9F;;GAEG;AACH,MAAM,MAAM,kBAAkB,CAAC,MAAM,GAAG,OAAO,IAAI,CAAC,MAAM,EAAE,YAAY,CAAC,MAAM,CAAC,KAAK,MAAM,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC"}
|
|
@@ -1,28 +1,15 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "../components/option/option.component";
|
|
3
|
-
import * as i2 from "../components/
|
|
3
|
+
import * as i2 from "../components/optionGroup/optgroup.component";
|
|
4
4
|
import * as i3 from "../components/select/select.component";
|
|
5
|
-
import * as i4 from "../
|
|
6
|
-
import * as i5 from "../
|
|
7
|
-
import * as i6 from "../plugins/liveSearch/no/noLiveSearch.component";
|
|
8
|
-
import * as i7 from "../plugins/liveSearch/basic/basicLiveSearch.component";
|
|
9
|
-
import * as i8 from "../plugins/normalState/basic/basicNormalState.component";
|
|
10
|
-
import * as i9 from "../plugins/positioner/default/defaultPositioner.component";
|
|
11
|
-
import * as i10 from "../plugins/valueHandler/basic/basicValueHandler.component";
|
|
12
|
-
import * as i11 from "../plugins/keyboardHandler/basic/basicKeyboardHandler.component";
|
|
13
|
-
import * as i12 from "@angular/common";
|
|
14
|
-
import * as i13 from "../pipes/ngSelectValue.pipe";
|
|
15
|
-
import * as i14 from "@anglr/common";
|
|
16
|
-
import * as i15 from "../pipes/ngSelectHasValue.pipe";
|
|
17
|
-
import * as i16 from "../directives/ngSelectAbsolute/ngSelectAbsolute.directive";
|
|
18
|
-
import * as i17 from "../directives/ngSelectPlaceholder/ngSelectPlaceholder.directive";
|
|
19
|
-
import * as i18 from "../misc/ngSelectControlValueAccessor.directive";
|
|
5
|
+
import * as i4 from "../pipes/selectValue/selectValue.pipe";
|
|
6
|
+
import * as i5 from "../pipes/selectHasValue/selectHasValue.pipe";
|
|
20
7
|
/**
|
|
21
8
|
* Module for select and its options
|
|
22
9
|
*/
|
|
23
|
-
export declare class
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
25
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<
|
|
26
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<
|
|
10
|
+
export declare class SelectModule {
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectModule, never>;
|
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SelectModule, never, [typeof i1.Option, typeof i2.OptGroup, typeof i3.Select, typeof i4.SelectValuePipe, typeof i5.SelectHasValuePipe], [typeof i1.Option, typeof i2.OptGroup, typeof i3.Select, typeof i4.SelectValuePipe, typeof i5.SelectHasValuePipe]>;
|
|
13
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SelectModule>;
|
|
27
14
|
}
|
|
28
15
|
//# sourceMappingURL=ngSelect.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelect.module.d.ts","sourceRoot":"","sources":["ngSelect.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ngSelect.module.d.ts","sourceRoot":"","sources":["ngSelect.module.ts"],"names":[],"mappings":";;;;;;AAKA;;GAEG;AACH,qBAyBa,YAAY;yCAAZ,YAAY;0CAAZ,YAAY;0CAAZ,YAAY;CAExB"}
|
|
@@ -1,17 +1 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "../plugins/normalState/edit/editNormalState.component";
|
|
3
|
-
import * as i2 from "../plugins/liveSearch/edit/editLiveSearch.component";
|
|
4
|
-
import * as i3 from "../plugins/popup/edit/editPopup.component";
|
|
5
|
-
import * as i4 from "../plugins/keyboardHandler/edit/editKeyboardHandler.component";
|
|
6
|
-
import * as i5 from "@angular/common";
|
|
7
|
-
import * as i6 from "./ngSelect.module";
|
|
8
|
-
import * as i7 from "../directives/ngSelectEdit/ngSelectEdit.directive";
|
|
9
|
-
/**
|
|
10
|
-
* Module for select with editation and tags (jira like select)
|
|
11
|
-
*/
|
|
12
|
-
export declare class NgSelectEditModule {
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgSelectEditModule, never>;
|
|
14
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgSelectEditModule, [typeof i1.EditNormalStateComponent, typeof i2.EditLiveSearchComponent, typeof i3.EditPopupComponent, typeof i4.EditKeyboardHandlerComponent], [typeof i5.CommonModule, typeof i6.NgSelectModule, typeof i7.NgSelectEditDirective], [typeof i7.NgSelectEditDirective, typeof i1.EditNormalStateComponent, typeof i2.EditLiveSearchComponent, typeof i3.EditPopupComponent, typeof i4.EditKeyboardHandlerComponent]>;
|
|
15
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NgSelectEditModule>;
|
|
16
|
-
}
|
|
17
1
|
//# sourceMappingURL=ngSelectEdit.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelectEdit.module.d.ts","sourceRoot":"","sources":["ngSelectEdit.module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ngSelectEdit.module.d.ts","sourceRoot":"","sources":["ngSelectEdit.module.ts"],"names":[],"mappings":""}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { Interactions, KeyboardHandler, LiveSearch, NormalState, OptionsHandler, Popup, Positioner, ReadonlyState, ValueHandler, SelectPlugin } from '../../interfaces';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Gets instance of select plugin from another plugin instance
|
|
6
|
+
*/
|
|
7
|
+
export declare class GetPlugin implements PipeTransform {
|
|
8
|
+
/**
|
|
9
|
+
* Gets instance of select plugin from another plugin instance
|
|
10
|
+
* @param plugin - Plugin instance from which plugin should be retrieved
|
|
11
|
+
* @param pluginType - Name of plugin to be retrieved
|
|
12
|
+
*/
|
|
13
|
+
transform(plugin: SelectPlugin, pluginType: 'Interactions'): Interactions;
|
|
14
|
+
transform(plugin: SelectPlugin, pluginType: 'KeyboardHandler'): KeyboardHandler;
|
|
15
|
+
transform(plugin: SelectPlugin, pluginType: 'LiveSearch'): LiveSearch;
|
|
16
|
+
transform(plugin: SelectPlugin, pluginType: 'NormalState'): NormalState;
|
|
17
|
+
transform(plugin: SelectPlugin, pluginType: 'OptionsHandler'): OptionsHandler;
|
|
18
|
+
transform(plugin: SelectPlugin, pluginType: 'Popup'): Popup;
|
|
19
|
+
transform(plugin: SelectPlugin, pluginType: 'Positioner'): Positioner;
|
|
20
|
+
transform(plugin: SelectPlugin, pluginType: 'ReadonlyState'): ReadonlyState;
|
|
21
|
+
transform(plugin: SelectPlugin, pluginType: 'ValueHandler'): ValueHandler;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetPlugin, never>;
|
|
23
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<GetPlugin, "getPlugin", true>;
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=getPlugin.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPlugin.pipe.d.ts","sourceRoot":"","sources":["getPlugin.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,aAAa,EAAC,MAAM,eAAe,CAAC;AAGlD,OAAO,EAAC,YAAY,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,YAAY,EAAE,YAAY,EAAC,MAAM,kBAAkB,CAAC;;AAEtK;;GAEG;AACH,qBACa,SAAU,YAAW,aAAa;IAI3C;;;;OAIG;IACI,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,cAAc,GAAG,YAAY;IACzE,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,iBAAiB,GAAG,eAAe;IAC/E,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,GAAG,UAAU;IACrE,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,aAAa,GAAG,WAAW;IACvE,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,gBAAgB,GAAG,cAAc;IAC7E,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,OAAO,GAAG,KAAK;IAC3D,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,YAAY,GAAG,UAAU;IACrE,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,eAAe,GAAG,aAAa;IAC3E,SAAS,CAAC,MAAM,EAAE,YAAY,EAAE,UAAU,EAAE,cAAc,GAAG,YAAY;yCAjBvE,SAAS;uCAAT,SAAS;CAsBrB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { SelectOption } from '../../interfaces';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Pipe that checks whether select has currently any option
|
|
6
|
+
*/
|
|
7
|
+
export declare class SelectHasValuePipe<TValue = unknown> implements PipeTransform {
|
|
8
|
+
/**
|
|
9
|
+
* Transforms selected option into boolean indication if there is option selected
|
|
10
|
+
* @param options - Selected options to be transformed into boolean
|
|
11
|
+
*/
|
|
12
|
+
transform(options: SelectOption<TValue> | Array<SelectOption<TValue>>): boolean;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectHasValuePipe<any>, never>;
|
|
14
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<SelectHasValuePipe<any>, "selectHasValue", true>;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=selectHasValue.pipe.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectHasValue.pipe.d.ts","sourceRoot":"","sources":["selectHasValue.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,aAAa,EAAC,MAAM,eAAe,CAAC;AAGlD,OAAO,EAAC,YAAY,EAAC,MAAM,kBAAkB,CAAC;;AAE9C;;GAEG;AACH,qBACa,kBAAkB,CAAC,MAAM,GAAG,OAAO,CAAE,YAAW,aAAa;IAItE;;;OAGG;IACI,SAAS,CAAC,OAAO,EAAE,YAAY,CAAC,MAAM,CAAC,GAAC,KAAK,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC,GAAG,OAAO;yCAR3E,kBAAkB;uCAAlB,kBAAkB;CAY9B"}
|