@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
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { PromiseOr } from '@jscrpt/common';
|
|
3
|
+
import { SelectBus, SelectPluginInstances } from '../../misc/classes';
|
|
4
|
+
/**
|
|
5
|
+
* Select plugin interface
|
|
6
|
+
*/
|
|
7
|
+
export interface SelectPlugin<TOptions = unknown, TValue = unknown> {
|
|
8
|
+
/**
|
|
9
|
+
* Select plugin instances available for this plugin
|
|
10
|
+
*/
|
|
11
|
+
selectPlugins: SelectPluginInstances;
|
|
12
|
+
/**
|
|
13
|
+
* Element that represents plugin
|
|
14
|
+
*/
|
|
15
|
+
pluginElement: ElementRef<HTMLElement>;
|
|
16
|
+
/**
|
|
17
|
+
* Options for Select plugin
|
|
18
|
+
*/
|
|
19
|
+
options: TOptions;
|
|
20
|
+
/**
|
|
21
|
+
* Plugin bus used in Select
|
|
22
|
+
*/
|
|
23
|
+
pluginBus: SelectBus<TValue>;
|
|
24
|
+
/**
|
|
25
|
+
* Initialize plugin, to be ready to use, initialize communication with other plugins
|
|
26
|
+
*/
|
|
27
|
+
initialize(): PromiseOr<void>;
|
|
28
|
+
/**
|
|
29
|
+
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
30
|
+
*/
|
|
31
|
+
initOptions(): PromiseOr<void>;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=selectPlugin.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectPlugin.interface.d.ts","sourceRoot":"","sources":["selectPlugin.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,eAAe,CAAC;AACzC,OAAO,EAAC,SAAS,EAAC,MAAM,gBAAgB,CAAC;AAEzC,OAAO,EAAC,SAAS,EAAE,qBAAqB,EAAC,MAAM,oBAAoB,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,YAAY,CAAC,QAAQ,GAAG,OAAO,EAAE,MAAM,GAAG,OAAO;IAE9D;;OAEG;IACH,aAAa,EAAE,qBAAqB,CAAC;IAErC;;OAEG;IACH,aAAa,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAEvC;;OAEG;IACH,OAAO,EAAE,QAAQ,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,SAAS,CAAC,MAAM,CAAC,CAAC;IAE7B;;OAEG;IACH,UAAU,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC;IAE9B;;OAEG;IACH,WAAW,IAAI,SAAS,CAAC,IAAI,CAAC,CAAC;CAClC"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { PluginDescription } from '../pluginDescription/pluginDescription.interface';
|
|
2
|
+
import { Interactions, KeyboardHandler, LiveSearch, NormalState, OptionsHandler, Popup, Positioner, ReadonlyState, ValueHandler } from '../plugins';
|
|
3
|
+
/**
|
|
4
|
+
* All available types of plugins for Select
|
|
5
|
+
*/
|
|
6
|
+
export interface SelectPluginTypes {
|
|
7
|
+
/**
|
|
8
|
+
* Handles interactions of plugins and select
|
|
9
|
+
*/
|
|
10
|
+
interactions: PluginDescription<Interactions>;
|
|
11
|
+
/**
|
|
12
|
+
* Handles keyboard input from user
|
|
13
|
+
*/
|
|
14
|
+
keyboardHandler: PluginDescription<KeyboardHandler>;
|
|
15
|
+
/**
|
|
16
|
+
* Contains component that is used for live search of options
|
|
17
|
+
*/
|
|
18
|
+
liveSearch: PluginDescription<LiveSearch>;
|
|
19
|
+
/**
|
|
20
|
+
* Component used for displaying normal state of selected value
|
|
21
|
+
*/
|
|
22
|
+
normalState: PluginDescription<NormalState>;
|
|
23
|
+
/**
|
|
24
|
+
* Component used for handling available options
|
|
25
|
+
*/
|
|
26
|
+
optionsHandler: PluginDescription<OptionsHandler>;
|
|
27
|
+
/**
|
|
28
|
+
* Component that handles positioning of popup
|
|
29
|
+
*/
|
|
30
|
+
popup: PluginDescription<Popup>;
|
|
31
|
+
/**
|
|
32
|
+
* Handles correct position of pop component
|
|
33
|
+
*/
|
|
34
|
+
positioner: PluginDescription<Positioner>;
|
|
35
|
+
/**
|
|
36
|
+
* Component that is used for displaying readonly state of selected value, can be ommited, in that case normal state is used
|
|
37
|
+
*/
|
|
38
|
+
readonlyState: PluginDescription<ReadonlyState>;
|
|
39
|
+
/**
|
|
40
|
+
* Component that is used for storing and handling value of select
|
|
41
|
+
*/
|
|
42
|
+
valueHandler: PluginDescription<ValueHandler>;
|
|
43
|
+
}
|
|
44
|
+
//# sourceMappingURL=selectPluginTypes.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectPluginTypes.interface.d.ts","sourceRoot":"","sources":["selectPluginTypes.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,iBAAiB,EAAC,MAAM,kDAAkD,CAAC;AACnF,OAAO,EAAC,YAAY,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,YAAY,EAAC,MAAM,YAAY,CAAC;AAElJ;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAE9B;;OAEG;IACH,YAAY,EAAE,iBAAiB,CAAC,YAAY,CAAC,CAAC;IAE9C;;OAEG;IACH,eAAe,EAAE,iBAAiB,CAAC,eAAe,CAAC,CAAC;IAEpD;;OAEG;IACH,UAAU,EAAE,iBAAiB,CAAC,UAAU,CAAC,CAAC;IAE1C;;OAEG;IACH,WAAW,EAAE,iBAAiB,CAAC,WAAW,CAAC,CAAC;IAE5C;;OAEG;IACH,cAAc,EAAE,iBAAiB,CAAC,cAAc,CAAC,CAAC;IAElD;;OAEG;IACH,KAAK,EAAE,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAEhC;;OAEG;IACH,UAAU,EAAE,iBAAiB,CAAC,UAAU,CAAC,CAAC;IAE1C;;OAEG;IACH,aAAa,EAAE,iBAAiB,CAAC,aAAa,CAAC,CAAC;IAEhD;;OAEG;IACH,YAAY,EAAE,iBAAiB,CAAC,YAAY,CAAC,CAAC;CACjD"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Signal, TemplateRef } from '@angular/core';
|
|
2
|
+
import { NormalStateContext } from '../normalStateContext/normalStateContext.interface';
|
|
3
|
+
import { PopupContext } from '../popupContext/popupContext.interface';
|
|
4
|
+
/**
|
|
5
|
+
* Gatherer used for obtaining templates for Select
|
|
6
|
+
*/
|
|
7
|
+
export interface TemplateGatherer {
|
|
8
|
+
/**
|
|
9
|
+
* Template used within normal state, for rendering normal state if defined
|
|
10
|
+
*/
|
|
11
|
+
readonly normalStateTemplate: Signal<TemplateRef<NormalStateContext> | undefined | null>;
|
|
12
|
+
/**
|
|
13
|
+
* Template used within Popup, for rendering option if defined
|
|
14
|
+
*/
|
|
15
|
+
readonly optionTemplate: Signal<TemplateRef<PopupContext> | undefined | null>;
|
|
16
|
+
}
|
|
17
|
+
//# sourceMappingURL=templateGatherer.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"templateGatherer.interface.d.ts","sourceRoot":"","sources":["templateGatherer.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAE,WAAW,EAAC,MAAM,eAAe,CAAC;AAElD,OAAO,EAAC,kBAAkB,EAAC,MAAM,oDAAoD,CAAC;AACtF,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAE7B;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,MAAM,CAAC,WAAW,CAAC,kBAAkB,CAAC,GAAC,SAAS,GAAC,IAAI,CAAC,CAAC;IAErF;;OAEG;IACH,QAAQ,CAAC,cAAc,EAAE,MAAM,CAAC,WAAW,CAAC,YAAY,CAAC,GAAC,SAAS,GAAC,IAAI,CAAC,CAAC;CAC7E"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { PluginOptions } from '../pluginOptions/pluginOptions.interface';
|
|
2
|
+
/**
|
|
3
|
+
* Base options for every visual plugin (component)
|
|
4
|
+
*/
|
|
5
|
+
export interface VisualPluginOptions<TCssClasses = unknown> extends PluginOptions {
|
|
6
|
+
/**
|
|
7
|
+
* Css classes applied to visual plugin (component), possible to override only part of classes
|
|
8
|
+
*/
|
|
9
|
+
cssClasses: TCssClasses;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=visualPluginOptions.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"visualPluginOptions.interface.d.ts","sourceRoot":"","sources":["visualPluginOptions.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,0CAA0C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,mBAAmB,CAAC,WAAW,GAAG,OAAO,CAAE,SAAQ,aAAa;IAE7E;;OAEG;IACH,UAAU,EAAE,WAAW,CAAC;CAC3B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,+CAA+C,CAAC"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import { ElementRef, WritableSignal, Signal } from '@angular/core';
|
|
2
|
+
import { Subject } from 'rxjs';
|
|
3
|
+
import { SelectEvents, SelectBusOptions, SelectEvent, SelectOption } from '../../../interfaces';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
/**
|
|
6
|
+
* Class represents centralized bus for internal communication
|
|
7
|
+
*/
|
|
8
|
+
export declare class SelectBus<TValue = unknown> implements SelectEvents {
|
|
9
|
+
/**
|
|
10
|
+
* Options passed to select
|
|
11
|
+
*
|
|
12
|
+
* Initialized in constructor of select
|
|
13
|
+
*/
|
|
14
|
+
selectOptions: Signal<SelectBusOptions<TValue>>;
|
|
15
|
+
/**
|
|
16
|
+
* HTML element that represents select itself
|
|
17
|
+
*/
|
|
18
|
+
selectElement: WritableSignal<ElementRef<HTMLElement> | undefined | null>;
|
|
19
|
+
/**
|
|
20
|
+
* Currently selected options of Select
|
|
21
|
+
*/
|
|
22
|
+
selectedOptions: WritableSignal<SelectOption<TValue> | SelectOption<TValue>[] | undefined | null>;
|
|
23
|
+
/**
|
|
24
|
+
* Occurs when popup visibility should be toggled
|
|
25
|
+
*/
|
|
26
|
+
readonly togglePopup: Subject<SelectEvent>;
|
|
27
|
+
/**
|
|
28
|
+
* Occurs when popup visibility should be changed
|
|
29
|
+
*/
|
|
30
|
+
readonly showHidePopup: Subject<SelectEvent<boolean>>;
|
|
31
|
+
/**
|
|
32
|
+
* Occurs when option should be selected
|
|
33
|
+
*/
|
|
34
|
+
readonly optionSelect: Subject<SelectEvent<SelectOption>>;
|
|
35
|
+
/**
|
|
36
|
+
* Occurs when option should be canceled
|
|
37
|
+
*/
|
|
38
|
+
readonly optionCancel: Subject<SelectEvent<SelectOption>>;
|
|
39
|
+
/**
|
|
40
|
+
* Occurs when any part of select gains focus
|
|
41
|
+
*/
|
|
42
|
+
readonly focus: Subject<SelectEvent>;
|
|
43
|
+
/**
|
|
44
|
+
* Occurs when live search should gain focus
|
|
45
|
+
*/
|
|
46
|
+
readonly liveSearchFocus: Subject<SelectEvent>;
|
|
47
|
+
/**
|
|
48
|
+
* Occurs when there is need for updating displayed value
|
|
49
|
+
*/
|
|
50
|
+
readonly updateDisplayedValue: Subject<SelectEvent>;
|
|
51
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SelectBus<any>, never>;
|
|
52
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<SelectBus<any>>;
|
|
53
|
+
}
|
|
54
|
+
//# sourceMappingURL=selectBus.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectBus.d.ts","sourceRoot":"","sources":["selectBus.ts"],"names":[],"mappings":"AAAA,OAAO,EAA2B,UAAU,EAAU,cAAc,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;AACnG,OAAO,EAAC,OAAO,EAAC,MAAM,MAAM,CAAC;AAE7B,OAAO,EAAC,YAAY,EAAE,gBAAgB,EAAE,WAAW,EAAE,YAAY,EAAC,MAAM,qBAAqB,CAAC;;AAE9F;;GAEG;AACH,qBACa,SAAS,CAAC,MAAM,GAAG,OAAO,CAAE,YAAW,YAAY;IAI5D;;;;OAIG;IACI,aAAa,EAAG,MAAM,CAAC,gBAAgB,CAAC,MAAM,CAAC,CAAC,CAAC;IAExD;;OAEG;IACI,aAAa,EAAE,cAAc,CAAC,UAAU,CAAC,WAAW,CAAC,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAE5F;;OAEG;IACI,eAAe,EAAE,cAAc,CAAC,YAAY,CAAC,MAAM,CAAC,GAAC,YAAY,CAAC,MAAM,CAAC,EAAE,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAIlH;;OAEG;IACH,SAAgB,WAAW,EAAE,OAAO,CAAC,WAAW,CAAC,CAA8B;IAE/E;;OAEG;IACH,SAAgB,aAAa,EAAE,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAA4C;IAExG;;OAEG;IACH,SAAgB,YAAY,EAAE,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,CAAiD;IAEjH;;OAEG;IACH,SAAgB,YAAY,EAAE,OAAO,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,CAAiD;IAEjH;;OAEG;IACH,SAAgB,KAAK,EAAE,OAAO,CAAC,WAAW,CAAC,CAAmC;IAE9E;;OAEG;IACH,SAAgB,eAAe,EAAE,OAAO,CAAC,WAAW,CAAC,CAAmC;IAExF;;OAEG;IACH,SAAgB,oBAAoB,EAAE,OAAO,CAAC,WAAW,CAAC,CAAmC;yCAxDpF,SAAS;6CAAT,SAAS;CAyDrB"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { WritableSignal } from '@angular/core';
|
|
2
|
+
import { Interactions, KeyboardHandler, LiveSearch, NormalState, OptionsHandler, Popup, Positioner, ReadonlyState, SelectPlugin, ValueHandler } from '../../../interfaces';
|
|
3
|
+
import { SelectPluginType } from '../../enums';
|
|
4
|
+
/**
|
|
5
|
+
* Implementation of GridPluginInstances
|
|
6
|
+
*/
|
|
7
|
+
export declare class SelectPluginInstances implements Record<SelectPluginType, SelectPlugin> {
|
|
8
|
+
/**
|
|
9
|
+
* Instance of plugin that handles interactions of plugins and select
|
|
10
|
+
*/
|
|
11
|
+
interactions: WritableSignal<Interactions | undefined | null>;
|
|
12
|
+
/**
|
|
13
|
+
* Instance of plugin that handles keyboard input from user
|
|
14
|
+
*/
|
|
15
|
+
keyboardHandler: WritableSignal<KeyboardHandler | undefined | null>;
|
|
16
|
+
/**
|
|
17
|
+
* Instance of plugin that is used for live search of options
|
|
18
|
+
*/
|
|
19
|
+
liveSearch: WritableSignal<LiveSearch | undefined | null>;
|
|
20
|
+
/**
|
|
21
|
+
* Instance of plugin that is used for displaying normal state of selected value
|
|
22
|
+
*/
|
|
23
|
+
normalState: WritableSignal<NormalState | undefined | null>;
|
|
24
|
+
/**
|
|
25
|
+
* Instance of plugin that is used for handling available options
|
|
26
|
+
*/
|
|
27
|
+
optionsHandler: WritableSignal<OptionsHandler | undefined | null>;
|
|
28
|
+
/**
|
|
29
|
+
* Instance of plugin that handles displaying popup
|
|
30
|
+
*/
|
|
31
|
+
popup: WritableSignal<Popup | undefined | null>;
|
|
32
|
+
/**
|
|
33
|
+
* Instance of plugin that handles positioning of popup
|
|
34
|
+
*/
|
|
35
|
+
positioner: WritableSignal<Positioner | undefined | null>;
|
|
36
|
+
/**
|
|
37
|
+
* Instance of plugin that is used for displaying readonly state of selected value
|
|
38
|
+
*/
|
|
39
|
+
readonlyState: WritableSignal<ReadonlyState | undefined | null>;
|
|
40
|
+
/**
|
|
41
|
+
* Instance of plugin that is used for storing and handling value of select
|
|
42
|
+
*/
|
|
43
|
+
valueHandler: WritableSignal<ValueHandler | undefined | null>;
|
|
44
|
+
/**
|
|
45
|
+
* Instance of plugin that handles interactions of plugins and select
|
|
46
|
+
*/
|
|
47
|
+
get Interactions(): Interactions;
|
|
48
|
+
set Interactions(value: SelectPlugin);
|
|
49
|
+
/**
|
|
50
|
+
* Instance of plugin that handles keyboard input from user
|
|
51
|
+
*/
|
|
52
|
+
get KeyboardHandler(): KeyboardHandler;
|
|
53
|
+
set KeyboardHandler(value: SelectPlugin);
|
|
54
|
+
/**
|
|
55
|
+
* Instance of plugin that is used for live search of options
|
|
56
|
+
*/
|
|
57
|
+
get LiveSearch(): LiveSearch;
|
|
58
|
+
set LiveSearch(value: SelectPlugin);
|
|
59
|
+
/**
|
|
60
|
+
* Instance of plugin that is used for displaying normal state of selected value
|
|
61
|
+
*/
|
|
62
|
+
get NormalState(): NormalState;
|
|
63
|
+
set NormalState(value: SelectPlugin);
|
|
64
|
+
/**
|
|
65
|
+
* Instance of plugin that is used for handling available options
|
|
66
|
+
*/
|
|
67
|
+
get OptionsHandler(): OptionsHandler;
|
|
68
|
+
set OptionsHandler(value: SelectPlugin);
|
|
69
|
+
/**
|
|
70
|
+
* Instance of plugin that handles displaying popup
|
|
71
|
+
*/
|
|
72
|
+
get Popup(): Popup;
|
|
73
|
+
set Popup(value: SelectPlugin);
|
|
74
|
+
/**
|
|
75
|
+
* Instance of plugin that handles positioning of popup
|
|
76
|
+
*/
|
|
77
|
+
get Positioner(): Positioner;
|
|
78
|
+
set Positioner(value: SelectPlugin);
|
|
79
|
+
/**
|
|
80
|
+
* Instance of plugin that is used for displaying readonly state of selected value
|
|
81
|
+
*/
|
|
82
|
+
get ReadonlyState(): ReadonlyState;
|
|
83
|
+
set ReadonlyState(value: SelectPlugin);
|
|
84
|
+
/**
|
|
85
|
+
* Instance of plugin that is used for storing and handling value of select
|
|
86
|
+
*/
|
|
87
|
+
get ValueHandler(): ValueHandler;
|
|
88
|
+
set ValueHandler(value: SelectPlugin);
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=selectPluginInstances.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectPluginInstances.d.ts","sourceRoot":"","sources":["selectPluginInstances.ts"],"names":[],"mappings":"AAAA,OAAO,EAAS,cAAc,EAAC,MAAM,eAAe,CAAC;AAErD,OAAO,EAAC,YAAY,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,YAAY,EAAE,YAAY,EAAC,MAAM,qBAAqB,CAAC;AACzK,OAAO,EAAC,gBAAgB,EAAC,MAAM,aAAa,CAAC;AAE7C;;GAEG;AACH,qBAAa,qBAAsB,YAAW,MAAM,CAAC,gBAAgB,EAAE,YAAY,CAAC;IAIhF;;OAEG;IACI,YAAY,EAAE,cAAc,CAAC,YAAY,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAEhF;;OAEG;IACI,eAAe,EAAE,cAAc,CAAC,eAAe,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAEtF;;OAEG;IACI,UAAU,EAAE,cAAc,CAAC,UAAU,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAE5E;;OAEG;IACI,WAAW,EAAE,cAAc,CAAC,WAAW,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAE9E;;OAEG;IACI,cAAc,EAAE,cAAc,CAAC,cAAc,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAEpF;;OAEG;IACI,KAAK,EAAE,cAAc,CAAC,KAAK,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAElE;;OAEG;IACI,UAAU,EAAE,cAAc,CAAC,UAAU,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAE5E;;OAEG;IACI,aAAa,EAAE,cAAc,CAAC,aAAa,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAElF;;OAEG;IACI,YAAY,EAAE,cAAc,CAAC,YAAY,GAAC,SAAS,GAAC,IAAI,CAAC,CAAgB;IAEhF;;OAEG;IACH,IAAW,YAAY,IAAI,YAAY,CAUtC;IACD,IAAW,YAAY,CAAC,KAAK,EAAE,YAAY,EAG1C;IAED;;OAEG;IACH,IAAW,eAAe,IAAI,eAAe,CAU5C;IACD,IAAW,eAAe,CAAC,KAAK,EAAE,YAAY,EAG7C;IAED;;OAEG;IACH,IAAW,UAAU,IAAI,UAAU,CAUlC;IACD,IAAW,UAAU,CAAC,KAAK,EAAE,YAAY,EAGxC;IAED;;OAEG;IACH,IAAW,WAAW,IAAI,WAAW,CAUpC;IACD,IAAW,WAAW,CAAC,KAAK,EAAE,YAAY,EAGzC;IAED;;OAEG;IACH,IAAW,cAAc,IAAI,cAAc,CAU1C;IACD,IAAW,cAAc,CAAC,KAAK,EAAE,YAAY,EAG5C;IAED;;OAEG;IACH,IAAW,KAAK,IAAI,KAAK,CAUxB;IACD,IAAW,KAAK,CAAC,KAAK,EAAE,YAAY,EAGnC;IAED;;OAEG;IACH,IAAW,UAAU,IAAI,UAAU,CAUlC;IACD,IAAW,UAAU,CAAC,KAAK,EAAE,YAAY,EAGxC;IAED;;OAEG;IACH,IAAW,aAAa,IAAI,aAAa,CAUxC;IACD,IAAW,aAAa,CAAC,KAAK,EAAE,YAAY,EAG3C;IAED;;OAEG;IACH,IAAW,YAAY,IAAI,YAAY,CAUtC;IACD,IAAW,YAAY,CAAC,KAAK,EAAE,YAAY,EAG1C;CACJ"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Available plugin types
|
|
3
|
+
*/
|
|
4
|
+
export declare enum SelectPluginType {
|
|
5
|
+
/**
|
|
6
|
+
* Plugin that handles interactions of plugins and select
|
|
7
|
+
*/
|
|
8
|
+
Interactions = "Interactions",
|
|
9
|
+
/**
|
|
10
|
+
* Plugin that handles keyboard input from user
|
|
11
|
+
*/
|
|
12
|
+
KeyboardHandler = "KeyboardHandler",
|
|
13
|
+
/**
|
|
14
|
+
* Plugin that is used for live search of options
|
|
15
|
+
*/
|
|
16
|
+
LiveSearch = "LiveSearch",
|
|
17
|
+
/**
|
|
18
|
+
* Plugin that is used for displaying normal state of selected value
|
|
19
|
+
*/
|
|
20
|
+
NormalState = "NormalState",
|
|
21
|
+
/**
|
|
22
|
+
* Plugin that is used for handling available options
|
|
23
|
+
*/
|
|
24
|
+
OptionsHandler = "OptionsHandler",
|
|
25
|
+
/**
|
|
26
|
+
* Plugin that handles displaying popup
|
|
27
|
+
*/
|
|
28
|
+
Popup = "Popup",
|
|
29
|
+
/**
|
|
30
|
+
* Plugin that handles positioning of popup
|
|
31
|
+
*/
|
|
32
|
+
Positioner = "Positioner",
|
|
33
|
+
/**
|
|
34
|
+
* Plugin that is used for displaying readonly state of selected value
|
|
35
|
+
*/
|
|
36
|
+
ReadonlyState = "ReadonlyState",
|
|
37
|
+
/**
|
|
38
|
+
* Plugin that is used for storing and handling value of select
|
|
39
|
+
*/
|
|
40
|
+
ValueHandler = "ValueHandler"
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=enums.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"enums.d.ts","sourceRoot":"","sources":["enums.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,oBAAY,gBAAgB;IAExB;;OAEG;IACH,YAAY,iBAAiB;IAE7B;;OAEG;IACH,eAAe,oBAAoB;IAEnC;;OAEG;IACH,UAAU,eAAe;IAEzB;;OAEG;IACH,WAAW,gBAAgB;IAE3B;;OAEG;IACH,cAAc,mBAAmB;IAEjC;;OAEG;IACH,KAAK,UAAU;IAEf;;OAEG;IACH,UAAU,eAAe;IAEzB;;OAEG;IACH,aAAa,kBAAkB;IAE/B;;OAEG;IACH,YAAY,iBAAiB;CAChC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getValue.d.ts","sourceRoot":"","sources":["getValue.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"getValue.d.ts","sourceRoot":"","sources":["getValue.ts"],"names":[],"mappings":""}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":""}
|
|
@@ -1,8 +1 @@
|
|
|
1
|
-
import { Subscription } from 'rxjs';
|
|
2
|
-
import { NgSelectFunction } from '../../components/select';
|
|
3
|
-
/**
|
|
4
|
-
* Adds callback that is called each time when NgSelect gains focus
|
|
5
|
-
* @internal
|
|
6
|
-
*/
|
|
7
|
-
export declare function ɵOnFocus<TValue>(callback: () => void): NgSelectFunction<Subscription, TValue>;
|
|
8
1
|
//# sourceMappingURL=onFocus.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"onFocus.d.ts","sourceRoot":"","sources":["onFocus.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"onFocus.d.ts","sourceRoot":"","sources":["onFocus.ts"],"names":[],"mappings":""}
|
|
@@ -1,8 +1 @@
|
|
|
1
|
-
import { NgSelectAction } from '../../components/select';
|
|
2
|
-
/**
|
|
3
|
-
* Sets NgSelect as readonly, non editable
|
|
4
|
-
* @param readonly - Indication whether is select readonly or not, if omitted defaults to true
|
|
5
|
-
* @internal
|
|
6
|
-
*/
|
|
7
|
-
export declare function ɵSetReadonly<TValue>(readonly?: boolean): NgSelectAction<TValue>;
|
|
8
1
|
//# sourceMappingURL=setReadonly.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setReadonly.d.ts","sourceRoot":"","sources":["setReadonly.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"setReadonly.d.ts","sourceRoot":"","sources":["setReadonly.ts"],"names":[],"mappings":""}
|
|
@@ -1,8 +1 @@
|
|
|
1
|
-
import { NgSelectAction } from '../../components/select';
|
|
2
|
-
/**
|
|
3
|
-
* Sets value of NgSelect
|
|
4
|
-
* @param value - Value to be set into select
|
|
5
|
-
* @internal
|
|
6
|
-
*/
|
|
7
|
-
export declare function ɵSetValue<TValue>(value: TValue | TValue[]): NgSelectAction<TValue>;
|
|
8
1
|
//# sourceMappingURL=setValue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"setValue.d.ts","sourceRoot":"","sources":["setValue.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"setValue.d.ts","sourceRoot":"","sources":["setValue.ts"],"names":[],"mappings":""}
|
|
@@ -1,8 +1 @@
|
|
|
1
|
-
import { Subscription } from 'rxjs';
|
|
2
|
-
import { NgSelectFunction } from '../../components/select';
|
|
3
|
-
/**
|
|
4
|
-
* Adds callback that is called when value changes and returns subscription for this changes
|
|
5
|
-
* @internal
|
|
6
|
-
*/
|
|
7
|
-
export declare function ɵValueChange<TValue>(callback: (value: TValue | TValue[]) => void): NgSelectFunction<Subscription, TValue>;
|
|
8
1
|
//# sourceMappingURL=valueChange.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"valueChange.d.ts","sourceRoot":"","sources":["valueChange.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"valueChange.d.ts","sourceRoot":"","sources":["valueChange.ts"],"names":[],"mappings":""}
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
import { NgSelectPluginTypes } from './plugin.interface';
|
|
2
|
-
import { OptionsGatherer, LiveSearchFilter } from './optionsGatherer/optionsGatherer.interface';
|
|
3
|
-
import { TemplateGatherer } from './templateGatherer.interface';
|
|
4
1
|
/**
|
|
5
2
|
* Function used for comparing two values
|
|
6
3
|
*/
|
|
@@ -22,72 +19,4 @@ export interface NormalizeFunc<TValue = any> {
|
|
|
22
19
|
*/
|
|
23
20
|
(value: TValue): TValue;
|
|
24
21
|
}
|
|
25
|
-
/**
|
|
26
|
-
* Options used for plugin bus
|
|
27
|
-
*/
|
|
28
|
-
export interface PluginBusOptions<TValue = any> {
|
|
29
|
-
/**
|
|
30
|
-
* Instance of options gatherer that is used for obtaining options
|
|
31
|
-
*/
|
|
32
|
-
optionsGatherer?: OptionsGatherer<TValue>;
|
|
33
|
-
/**
|
|
34
|
-
* Instance of template gatherer used for obtaining custom templates
|
|
35
|
-
*/
|
|
36
|
-
templateGatherer?: TemplateGatherer;
|
|
37
|
-
/**
|
|
38
|
-
* Indication whether is NgSelect readonly or not
|
|
39
|
-
*/
|
|
40
|
-
readonly?: boolean;
|
|
41
|
-
/**
|
|
42
|
-
* Indication that multiple values can be selected
|
|
43
|
-
*/
|
|
44
|
-
multiple?: boolean;
|
|
45
|
-
/**
|
|
46
|
-
* Indication whether use non existing value in live search as new value, use with dynamic value handler
|
|
47
|
-
*/
|
|
48
|
-
useNonExistingAsValue?: boolean;
|
|
49
|
-
/**
|
|
50
|
-
* Function of value comparer that is used for comparison of values
|
|
51
|
-
*/
|
|
52
|
-
valueComparer?: CompareValueFunc<TValue>;
|
|
53
|
-
/**
|
|
54
|
-
* Method that is used for filtering when live search is running on static data
|
|
55
|
-
*/
|
|
56
|
-
liveSearchFilter?: LiveSearchFilter<TValue>;
|
|
57
|
-
/**
|
|
58
|
-
* Normalizer used for normalizing values
|
|
59
|
-
*/
|
|
60
|
-
normalizer?: NormalizeFunc<TValue>;
|
|
61
|
-
}
|
|
62
|
-
/**
|
|
63
|
-
* Describes select options used for NgSelect
|
|
64
|
-
*/
|
|
65
|
-
export interface NgSelectOptions<TValue = any> extends PluginBusOptions<TValue> {
|
|
66
|
-
/**
|
|
67
|
-
* Indication whether NgSelect should be initialized automaticaly during 'NgOnInit' phase
|
|
68
|
-
*/
|
|
69
|
-
autoInitialize?: boolean;
|
|
70
|
-
/**
|
|
71
|
-
* Css classes applied to ng select component, possible to override only part of classes
|
|
72
|
-
*/
|
|
73
|
-
cssClasses?: {};
|
|
74
|
-
/**
|
|
75
|
-
* Object defining overrides for default plugins, default plugins can be also specified using DI
|
|
76
|
-
*/
|
|
77
|
-
plugins?: NgSelectPluginTypes;
|
|
78
|
-
/**
|
|
79
|
-
* Indication whether is 'Popup' plugin displayd inside of NgSelect (false) or directly in Body (true)
|
|
80
|
-
*/
|
|
81
|
-
absolute?: boolean;
|
|
82
|
-
/**
|
|
83
|
-
* String that defines element in which should be absolute popup rendered, if not specified, body is used, used only if absolute is set to true, otherwise it has no effect
|
|
84
|
-
*
|
|
85
|
-
* Allows also css classes to be specified (div.body-box)
|
|
86
|
-
*/
|
|
87
|
-
containerElement?: string;
|
|
88
|
-
/**
|
|
89
|
-
* Indication whether force value check on initialization of select, this allows to change value of form control to value of valueHandler
|
|
90
|
-
*/
|
|
91
|
-
forceValueCheckOnInit?: boolean;
|
|
92
|
-
}
|
|
93
22
|
//# sourceMappingURL=ngSelectOptions.interface.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelectOptions.interface.d.ts","sourceRoot":"","sources":["ngSelectOptions.interface.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ngSelectOptions.interface.d.ts","sourceRoot":"","sources":["ngSelectOptions.interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB,CAAC,MAAM,GAAG,GAAG;IAE1C;;;;OAIG;IACH,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAAC;CAC7C;AAED;;GAEG;AACH,MAAM,WAAW,aAAa,CAAC,MAAM,GAAG,GAAG;IAEvC;;;OAGG;IACH,CAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CAC3B"}
|
|
@@ -1,70 +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 { LiveSearch } from '../../plugins/liveSearch';
|
|
7
|
-
import { PluginBus } from '../pluginBus/pluginBus';
|
|
8
|
-
/**
|
|
9
|
-
* Options gatherer used for static options gathering from code
|
|
10
|
-
*/
|
|
11
|
-
export declare class CodeOptionsGatherer<TValue = any> implements OptionsGatherer<TValue> {
|
|
12
|
-
/**
|
|
13
|
-
* Array of visible, displayed options for select
|
|
14
|
-
*/
|
|
15
|
-
private _availableOptions;
|
|
16
|
-
/**
|
|
17
|
-
* Array of provided options for select
|
|
18
|
-
*/
|
|
19
|
-
private _options;
|
|
20
|
-
/**
|
|
21
|
-
* Occurs when array of visible, displayed options has changed
|
|
22
|
-
*/
|
|
23
|
-
private _availableOptionsChange;
|
|
24
|
-
/**
|
|
25
|
-
* Live search plugin currently used in NgSelect
|
|
26
|
-
*/
|
|
27
|
-
protected _liveSearch: LiveSearch;
|
|
28
|
-
/**
|
|
29
|
-
* Subscription for changes of live search value
|
|
30
|
-
*/
|
|
31
|
-
protected _searchValueChangeSubscription: Subscription;
|
|
32
|
-
/**
|
|
33
|
-
* Array of provided options for select
|
|
34
|
-
*/
|
|
35
|
-
get options(): NgSelectOption<TValue>[];
|
|
36
|
-
set options(value: NgSelectOption<TValue>[]);
|
|
37
|
-
/**
|
|
38
|
-
* Occurs when array of provided options has changed
|
|
39
|
-
*/
|
|
40
|
-
optionsChange: EventEmitter<void>;
|
|
41
|
-
/**
|
|
42
|
-
* Array of visible, displayed options for select
|
|
43
|
-
*/
|
|
44
|
-
get availableOptions(): NgSelectOption<TValue>[];
|
|
45
|
-
/**
|
|
46
|
-
* Occurs when array of visible, displayed options has changed
|
|
47
|
-
*/
|
|
48
|
-
get availableOptionsChange(): EventEmitter<void>;
|
|
49
|
-
/**
|
|
50
|
-
* NgSelect plugin instances available for gatherer
|
|
51
|
-
*/
|
|
52
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
53
|
-
/**
|
|
54
|
-
* Plugin bus used for inter plugin shared events
|
|
55
|
-
*/
|
|
56
|
-
pluginBus: PluginBus<TValue>;
|
|
57
|
-
/**
|
|
58
|
-
* Select element that implements default gatherers
|
|
59
|
-
*/
|
|
60
|
-
select: NgSelect<TValue>;
|
|
61
|
-
/**
|
|
62
|
-
* Initialize gatherer during initialization phase
|
|
63
|
-
*/
|
|
64
|
-
initializeGatherer(): void;
|
|
65
|
-
/**
|
|
66
|
-
* Called when gatherer needs to be destroyed
|
|
67
|
-
*/
|
|
68
|
-
destroyGatherer(): void;
|
|
69
|
-
}
|
|
70
1
|
//# sourceMappingURL=codeOptionsGatherer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"codeOptionsGatherer.d.ts","sourceRoot":"","sources":["codeOptionsGatherer.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"codeOptionsGatherer.d.ts","sourceRoot":"","sources":["codeOptionsGatherer.ts"],"names":[],"mappings":""}
|