@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 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.interface.d.ts","sourceRoot":"","sources":["plugin.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AAE/C,OAAO,EAAC,uBAAuB,EAAC,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAC,eAAe,EAAC,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAC,WAAW,EAAC,MAAM,wBAAwB,CAAC;AACnD,OAAO,EAAC,KAAK,EAAC,MAAM,kBAAkB,CAAC;AACvC,OAAO,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAC,aAAa,EAAC,MAAM,0BAA0B,CAAC;AACvD,OAAO,EAAC,YAAY,EAAC,MAAM,yBAAyB,CAAC;AACrD,OAAO,EAAC,UAAU,EAAC,MAAM,uBAAuB,CAAC;AACjD,OAAO,EAAC,SAAS,EAAC,MAAM,uBAAuB,CAAC;AAEhD;;GAEG;AACH,MAAM,WAAW,cAAc,CAAC,QAAQ,GAAG,GAAG,EAAE,MAAM,GAAG,GAAG;IAExD;;OAEG;IACH,eAAe,EAAE,uBAAuB,CAAC;IAEzC;;OAEG;IACH,aAAa,EAAE,UAAU,CAAC;IAE1B;;OAEG;IACH,OAAO,EAAE,QAAQ,CAAC;IAElB;;OAEG;IACH,SAAS,EAAE,SAAS,CAAC,MAAM,CAAC,CAAC;IAE7B;;OAEG;IACH,UAAU,IAAI,IAAI,CAAC;IAEnB;;OAEG;IACH,WAAW,IAAI,IAAI,CAAC;IAEpB;;OAEG;IACH,iBAAiB,IAAI,IAAI,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAEhC;;OAEG;IACH,eAAe,CAAC,EAAE,iBAAiB,CAAC,eAAe,CAAC,CAAC;IAErD;;OAEG;IACH,WAAW,CAAC,EAAE,iBAAiB,CAAC,WAAW,CAAC,CAAC;IAE7C;;OAEG;IACH,KAAK,CAAC,EAAE,iBAAiB,CAAC,KAAK,CAAC,CAAC;IAEjC;;OAEG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC,UAAU,CAAC,CAAC;IAE3C;;OAEG;IACH,aAAa,CAAC,EAAE,iBAAiB,CAAC,aAAa,CAAC,CAAC;IAEjD;;OAEG;IACH,YAAY,CAAC,EAAE,iBAAiB,CAAC,YAAY,CAAC,CAAC;IAE/C;;OAEG;IACH,UAAU,CAAC,EAAE,iBAAiB,CAAC,UAAU,CAAC,CAAC;CAC9C;AAED;;GAEG;AACH,MAAM,WAAW,aAAa;CAE7B;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB,CAAC,WAAW,GAAG,GAAG,CAAE,SAAQ,aAAa;IAEzE;;OAEG;IACH,UAAU,CAAC,EAAE,WAAW,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB,CAAC,UAAU,GAAG,GAAG;IAE/C;;OAEG;IACH,IAAI,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,CAAC;IAExB;;OAEG;IACH,OAAO,CAAC,EAAE,aAAa,CAAC;IAExB;;OAEG;IACH,gBAAgB,CAAC,EAAE,CAAC,QAAQ,EAAE,cAAc,GAAC,IAAI,KAAK,IAAI,CAAC;CAC9D"}
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, ElementRef } from '@angular/core';
|
|
2
|
-
import { PluginBusOptions } from '../ngSelectOptions.interface';
|
|
3
|
-
import { NgSelectOption } from '../../components/option';
|
|
4
|
-
import { PluginBusEvents } from './pluginBus.interface';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
/**
|
|
7
|
-
* Class represents centralized bus for plugin communications
|
|
8
|
-
*/
|
|
9
|
-
export declare class PluginBus<TValue = any> implements PluginBusEvents {
|
|
10
|
-
/**
|
|
11
|
-
* Options passed to select
|
|
12
|
-
*/
|
|
13
|
-
selectOptions: PluginBusOptions<TValue>;
|
|
14
|
-
/**
|
|
15
|
-
* HTML element that represents select itself
|
|
16
|
-
*/
|
|
17
|
-
selectElement: ElementRef<HTMLElement>;
|
|
18
|
-
/**
|
|
19
|
-
* Occurs when popup visibility should be toggled
|
|
20
|
-
*/
|
|
21
|
-
togglePopup: EventEmitter<void>;
|
|
22
|
-
/**
|
|
23
|
-
* Occurs when popup visibility should be changed
|
|
24
|
-
*/
|
|
25
|
-
showHidePopup: EventEmitter<boolean>;
|
|
26
|
-
/**
|
|
27
|
-
* Occurs when option should be selected
|
|
28
|
-
*/
|
|
29
|
-
optionSelect: EventEmitter<NgSelectOption>;
|
|
30
|
-
/**
|
|
31
|
-
* Occurs when option should be canceled
|
|
32
|
-
*/
|
|
33
|
-
optionCancel: EventEmitter<NgSelectOption>;
|
|
34
|
-
/**
|
|
35
|
-
* Occurs when any part of select gains focus
|
|
36
|
-
*/
|
|
37
|
-
focus: EventEmitter<void>;
|
|
38
|
-
/**
|
|
39
|
-
* Occurs when live search should gain focus
|
|
40
|
-
*/
|
|
41
|
-
liveSearchFocus: EventEmitter<void>;
|
|
42
|
-
/**
|
|
43
|
-
* Occurs when there is need for updating displayed value
|
|
44
|
-
*/
|
|
45
|
-
readonly updateDisplayedValue: EventEmitter<void>;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PluginBus<any>, never>;
|
|
47
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<PluginBus<any>>;
|
|
48
|
-
}
|
|
49
|
-
//# sourceMappingURL=pluginBus.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pluginBus.d.ts","sourceRoot":"","sources":["pluginBus.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AAEnE,OAAO,EAAC,gBAAgB,EAAC,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAC,eAAe,EAAC,MAAM,uBAAuB,CAAC;;AAEtD;;GAEG;AACH,qBACa,SAAS,CAAC,MAAM,GAAG,GAAG,CAAE,YAAW,eAAe;IAI3D;;OAEG;IACI,aAAa,EAAE,gBAAgB,CAAC,MAAM,CAAC,CAAC;IAE/C;;OAEG;IACI,aAAa,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAI9C;;OAEG;IACI,WAAW,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAElE;;OAEG;IACI,aAAa,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAE1E;;OAEG;IACI,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC,CAAsC;IAEvF;;OAEG;IACI,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC,CAAsC;IAEvF;;OAEG;IACI,KAAK,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAE5D;;OAEG;IACI,eAAe,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAEtE;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;yCAjDpE,SAAS;6CAAT,SAAS;CAkDrB"}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { NgSelectOption } from '../../components/option';
|
|
3
|
-
/**
|
|
4
|
-
* Represents all events implemented by plugin bus
|
|
5
|
-
*/
|
|
6
|
-
export interface PluginBusEvents {
|
|
7
|
-
/**
|
|
8
|
-
* Occurs when popup visibility should be toggled
|
|
9
|
-
*/
|
|
10
|
-
readonly togglePopup: EventEmitter<void>;
|
|
11
|
-
/**
|
|
12
|
-
* Occurs when popup visibility should be changed
|
|
13
|
-
*/
|
|
14
|
-
readonly showHidePopup: EventEmitter<boolean>;
|
|
15
|
-
/**
|
|
16
|
-
* Occurs when option should be selected
|
|
17
|
-
*/
|
|
18
|
-
readonly optionSelect: EventEmitter<NgSelectOption>;
|
|
19
|
-
/**
|
|
20
|
-
* Occurs when option should be canceled
|
|
21
|
-
*/
|
|
22
|
-
readonly optionCancel: EventEmitter<NgSelectOption>;
|
|
23
|
-
/**
|
|
24
|
-
* Occurs when any part of select gains focus
|
|
25
|
-
*/
|
|
26
|
-
readonly focus: EventEmitter<void>;
|
|
27
|
-
/**
|
|
28
|
-
* Occurs when live search should gain focus
|
|
29
|
-
*/
|
|
30
|
-
readonly liveSearchFocus: EventEmitter<void>;
|
|
31
|
-
/**
|
|
32
|
-
* Occurs when there is need for updating displayed value
|
|
33
|
-
*/
|
|
34
|
-
readonly updateDisplayedValue: EventEmitter<void>;
|
|
35
|
-
}
|
|
36
|
-
//# sourceMappingURL=pluginBus.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pluginBus.interface.d.ts","sourceRoot":"","sources":["pluginBus.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAE3C,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,eAAe;IAI5B;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAEzC;;OAEG;IACH,QAAQ,CAAC,aAAa,EAAE,YAAY,CAAC,OAAO,CAAC,CAAC;IAE9C;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC,CAAC;IAEpD;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,YAAY,CAAC,cAAc,CAAC,CAAC;IAEpD;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAEnC;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAE7C;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;CACrD"}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { TemplateRef } from '@angular/core';
|
|
2
|
-
import { NormalStateContext } from '../plugins/normalState';
|
|
3
|
-
import { PopupContext } from '../plugins/popup';
|
|
4
|
-
/**
|
|
5
|
-
* Gatherer used for obtaining templates for NgSelect plugins
|
|
6
|
-
*/
|
|
7
|
-
export interface TemplateGatherer {
|
|
8
|
-
/**
|
|
9
|
-
* Template used within normal state
|
|
10
|
-
*/
|
|
11
|
-
readonly normalStateTemplate: TemplateRef<NormalStateContext>;
|
|
12
|
-
/**
|
|
13
|
-
* Template that is used within Popup as option
|
|
14
|
-
*/
|
|
15
|
-
readonly optionTemplate?: TemplateRef<PopupContext>;
|
|
16
|
-
}
|
|
17
|
-
//# sourceMappingURL=templateGatherer.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"templateGatherer.interface.d.ts","sourceRoot":"","sources":["templateGatherer.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,eAAe,CAAC;AAE1C,OAAO,EAAC,kBAAkB,EAAC,MAAM,wBAAwB,CAAC;AAC1D,OAAO,EAAC,YAAY,EAAC,MAAM,kBAAkB,CAAC;AAE9C;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAE7B;;OAEG;IACH,QAAQ,CAAC,mBAAmB,EAAE,WAAW,CAAC,kBAAkB,CAAC,CAAC;IAE9D;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,WAAW,CAAC,YAAY,CAAC,CAAC;CACvD"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "../plugins/valueHandler/dynamic/dynamicValueHandler.component";
|
|
3
|
-
/**
|
|
4
|
-
* Module for select and its options, allows use of dynamic value handler
|
|
5
|
-
*/
|
|
6
|
-
export declare class NgSelectDynamicModule {
|
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgSelectDynamicModule, never>;
|
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgSelectDynamicModule, [typeof i1.DynamicValueHandlerComponent], never, never>;
|
|
9
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<NgSelectDynamicModule>;
|
|
10
|
-
}
|
|
11
|
-
//# sourceMappingURL=ngSelectDynamic.module.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelectDynamic.module.d.ts","sourceRoot":"","sources":["ngSelectDynamic.module.ts"],"names":[],"mappings":";;AAIA;;GAEG;AACH,qBAOa,qBAAqB;yCAArB,qBAAqB;0CAArB,qBAAqB;0CAArB,qBAAqB;CAEjC"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { NgSelectOption } from '../components/option';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
/**
|
|
5
|
-
* Pipe that checks whether select has currently any option
|
|
6
|
-
*/
|
|
7
|
-
export declare class NgSelectHasValuePipe<TValue = any> 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: NgSelectOption<TValue> | Array<NgSelectOption<TValue>>): boolean;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgSelectHasValuePipe<any>, never>;
|
|
14
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<NgSelectHasValuePipe<any>, "ngSelectHasValue", true>;
|
|
15
|
-
}
|
|
16
|
-
//# sourceMappingURL=ngSelectHasValue.pipe.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelectHasValue.pipe.d.ts","sourceRoot":"","sources":["ngSelectHasValue.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,aAAa,EAAC,MAAM,eAAe,CAAC;AAGlD,OAAO,EAAC,cAAc,EAAC,MAAM,sBAAsB,CAAC;;AAEpD;;GAEG;AACH,qBACa,oBAAoB,CAAC,MAAM,GAAG,GAAG,CAAE,YAAW,aAAa;IAIpE;;;OAGG;IACI,SAAS,CAAC,OAAO,EAAE,cAAc,CAAC,MAAM,CAAC,GAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,GAAG,OAAO;yCAR/E,oBAAoB;uCAApB,oBAAoB;CAYhC"}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { PipeTransform } from '@angular/core';
|
|
2
|
-
import { NgSelectOption } from '../components/option';
|
|
3
|
-
import { DisplayTextFunc } from '../plugins/normalState';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
/**
|
|
6
|
-
* Pipe to transform ng select selected option into
|
|
7
|
-
*/
|
|
8
|
-
export declare class NgSelectValuePipe<TValue = any> implements PipeTransform {
|
|
9
|
-
/**
|
|
10
|
-
* Transforms selected option into string
|
|
11
|
-
* @param options - Selected options to be transformed into text
|
|
12
|
-
* @param nothingSelectedText - Text displayed if nothing is selected
|
|
13
|
-
* @param optionDisplayText - Function used for transformation of option into display text, defaults to text property of option
|
|
14
|
-
*/
|
|
15
|
-
transform(options: NgSelectOption<TValue> | Array<NgSelectOption<TValue>>, nothingSelectedText: string, optionDisplayText?: DisplayTextFunc<TValue>): string;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NgSelectValuePipe<any>, never>;
|
|
17
|
-
static ɵpipe: i0.ɵɵPipeDeclaration<NgSelectValuePipe<any>, "ngSelectValue", true>;
|
|
18
|
-
}
|
|
19
|
-
//# sourceMappingURL=ngSelectValue.pipe.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelectValue.pipe.d.ts","sourceRoot":"","sources":["ngSelectValue.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,aAAa,EAAC,MAAM,eAAe,CAAC;AAGlD,OAAO,EAAC,cAAc,EAAC,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAC,eAAe,EAAC,MAAM,wBAAwB,CAAC;;AAEvD;;GAEG;AACH,qBACa,iBAAiB,CAAC,MAAM,GAAG,GAAG,CAAE,YAAW,aAAa;IAIjE;;;;;OAKG;IACI,SAAS,CAAC,OAAO,EAAE,cAAc,CAAC,MAAM,CAAC,GAAC,KAAK,CAAC,cAAc,CAAC,MAAM,CAAC,CAAC,EAAE,mBAAmB,EAAE,MAAM,EAAE,iBAAiB,GAAE,eAAe,CAAC,MAAM,CAAyB,GAAG,MAAM;yCAV/K,iBAAiB;uCAAjB,iBAAiB;CAwB7B"}
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
-
import { BasicKeyboardHandlerOptions, BasicKeyboardHandler } from './basicKeyboardHandler.interface';
|
|
3
|
-
import { NgSelectPlugin } from '../../../misc';
|
|
4
|
-
import { NgSelectPluginInstances } from '../../../components/select';
|
|
5
|
-
import { ɵNgSelectOption } from '../../../components/option';
|
|
6
|
-
import { Popup } from '../../popup';
|
|
7
|
-
import { PluginBus } from '../../../misc/pluginBus/pluginBus';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
/**
|
|
10
|
-
* Component used for obtaining basic keyboard handler html element
|
|
11
|
-
*/
|
|
12
|
-
export declare class BasicKeyboardHandlerComponent implements BasicKeyboardHandler, NgSelectPlugin<BasicKeyboardHandlerOptions>, OnDestroy {
|
|
13
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
14
|
-
pluginBus: PluginBus;
|
|
15
|
-
pluginElement: ElementRef;
|
|
16
|
-
/**
|
|
17
|
-
* Options for NgSelect plugin
|
|
18
|
-
*/
|
|
19
|
-
protected _options: BasicKeyboardHandlerOptions;
|
|
20
|
-
/**
|
|
21
|
-
* Popup that is displayed
|
|
22
|
-
*/
|
|
23
|
-
protected _popup: Popup;
|
|
24
|
-
/**
|
|
25
|
-
* Gets currently available options
|
|
26
|
-
*/
|
|
27
|
-
protected get availableOptions(): ɵNgSelectOption[];
|
|
28
|
-
/**
|
|
29
|
-
* Options for NgSelect plugin
|
|
30
|
-
*/
|
|
31
|
-
get options(): BasicKeyboardHandlerOptions;
|
|
32
|
-
set options(options: BasicKeyboardHandlerOptions);
|
|
33
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginBus: PluginBus, pluginElement: ElementRef, options?: BasicKeyboardHandlerOptions);
|
|
34
|
-
/**
|
|
35
|
-
* Called when component is destroyed
|
|
36
|
-
*/
|
|
37
|
-
ngOnDestroy(): void;
|
|
38
|
-
/**
|
|
39
|
-
* Initialize plugin, to be ready to use, initialize communication with other plugins
|
|
40
|
-
*/
|
|
41
|
-
initialize(): void;
|
|
42
|
-
/**
|
|
43
|
-
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
44
|
-
*/
|
|
45
|
-
initOptions(): void;
|
|
46
|
-
/**
|
|
47
|
-
* Explicitly runs invalidation of content (change detection)
|
|
48
|
-
*/
|
|
49
|
-
invalidateVisuals(): void;
|
|
50
|
-
/**
|
|
51
|
-
* Handles keyboard event
|
|
52
|
-
* @param event - Keyboard event that occured
|
|
53
|
-
*/
|
|
54
|
-
protected _handleKeyboard: (event: KeyboardEvent) => void;
|
|
55
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BasicKeyboardHandlerComponent, [{ optional: true; }, { optional: true; }, null, { optional: true; }]>;
|
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicKeyboardHandlerComponent, "ng-basic-keyboard-handler", never, {}, {}, never, never, false, never>;
|
|
57
|
-
}
|
|
58
|
-
//# sourceMappingURL=basicKeyboardHandler.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"basicKeyboardHandler.component.d.ts","sourceRoot":"","sources":["basicKeyboardHandler.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuD,UAAU,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AAG1G,OAAO,EAAC,2BAA2B,EAAE,oBAAoB,EAAC,MAAM,kCAAkC,CAAC;AACnG,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAC,uBAAuB,EAAC,MAAM,4BAA4B,CAAC;AAGnE,OAAO,EAAC,eAAe,EAAC,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;;AAU5D;;GAEG;AACH,qBAOa,6BAA8B,YAAW,oBAAoB,EAAE,cAAc,CAAC,2BAA2B,CAAC,EAAE,SAAS;IAuC3D,eAAe,EAAE,uBAAuB;IAC5E,SAAS,EAAE,SAAS;IAChC,aAAa,EAAE,UAAU;IArC5C;;OAEG;IACH,SAAS,CAAC,QAAQ,EAAE,2BAA2B,CAAC;IAEhD;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC;IAIxB;;OAEG;IACH,SAAS,KAAK,gBAAgB,IAAI,eAAe,EAAE,CAGlD;IAID;;OAEG;IACH,IAAW,OAAO,IAAI,2BAA2B,CAGhD;IACD,IAAW,OAAO,CAAC,OAAO,EAAE,2BAA2B,EAGtD;gBAGkE,eAAe,EAAE,uBAAuB,EAC5E,SAAS,EAAE,SAAS,EAChC,aAAa,EAAE,UAAU,EACc,OAAO,CAAC,EAAE,2BAA2B;IAO/F;;OAEG;IACI,WAAW;IAUlB;;OAEG;IACI,UAAU;IAoBjB;;OAEG;IACI,WAAW;IAIlB;;OAEG;IACI,iBAAiB,IAAI,IAAI;IAMhC;;;OAGG;IACH,SAAS,CAAC,eAAe,GAAI,OAAO,aAAa,UA2D/C;yCApKO,6BAA6B;2CAA7B,6BAA6B;CAqKzC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { KeyboardHandler, KeyboardHandlerOptions } from '../keyboardHandler.interface';
|
|
2
|
-
/**
|
|
3
|
-
* Basic keyboard handler options
|
|
4
|
-
*/
|
|
5
|
-
export interface BasicKeyboardHandlerOptions extends KeyboardHandlerOptions {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Public API for 'BasicKeyboardHandlerComponent'
|
|
9
|
-
*/
|
|
10
|
-
export interface BasicKeyboardHandler extends KeyboardHandler {
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=basicKeyboardHandler.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"basicKeyboardHandler.interface.d.ts","sourceRoot":"","sources":["basicKeyboardHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,eAAe,EAAE,sBAAsB,EAAC,MAAM,8BAA8B,CAAC;AAErF;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,sBAAsB;CAE1E;AAED;;GAEG;AACH,MAAM,WAAW,oBAAqB,SAAQ,eAAe;CAE5D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["components.ts"],"names":[],"mappings":"AAAA,cAAc,wCAAwC,CAAC;AACvD,cAAc,sCAAsC,CAAC"}
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy } from '@angular/core';
|
|
2
|
-
import { EditKeyboardHandlerOptions, EditKeyboardHandler } from './editKeyboardHandler.interface';
|
|
3
|
-
import { NgSelectPlugin } from '../../../misc';
|
|
4
|
-
import { NgSelectPluginInstances } from '../../../components/select';
|
|
5
|
-
import { ɵNgSelectOption } from '../../../components/option';
|
|
6
|
-
import { Popup } from '../../popup';
|
|
7
|
-
import { PluginBus } from '../../../misc/pluginBus/pluginBus';
|
|
8
|
-
import { ValueHandler } from '../../valueHandler';
|
|
9
|
-
import { LiveSearch } from '../../liveSearch';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/**
|
|
12
|
-
* Component used for obtaining edit keyboard handler html element
|
|
13
|
-
*/
|
|
14
|
-
export declare class EditKeyboardHandlerComponent implements EditKeyboardHandler, NgSelectPlugin<EditKeyboardHandlerOptions>, OnDestroy {
|
|
15
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
16
|
-
pluginBus: PluginBus;
|
|
17
|
-
pluginElement: ElementRef;
|
|
18
|
-
/**
|
|
19
|
-
* Options for NgSelect plugin
|
|
20
|
-
*/
|
|
21
|
-
protected _options: EditKeyboardHandlerOptions;
|
|
22
|
-
/**
|
|
23
|
-
* Popup that is displayed
|
|
24
|
-
*/
|
|
25
|
-
protected _popup: Popup;
|
|
26
|
-
/**
|
|
27
|
-
* Value handler used for hanling current value
|
|
28
|
-
*/
|
|
29
|
-
protected _valueHandler: ValueHandler;
|
|
30
|
-
/**
|
|
31
|
-
* Live search plugin currently used in NgSelect
|
|
32
|
-
*/
|
|
33
|
-
protected _liveSearch: LiveSearch;
|
|
34
|
-
/**
|
|
35
|
-
* Gets currently available options
|
|
36
|
-
*/
|
|
37
|
-
protected get availableOptions(): ɵNgSelectOption[];
|
|
38
|
-
/**
|
|
39
|
-
* Options for NgSelect plugin
|
|
40
|
-
*/
|
|
41
|
-
get options(): EditKeyboardHandlerOptions;
|
|
42
|
-
set options(options: EditKeyboardHandlerOptions);
|
|
43
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginBus: PluginBus, pluginElement: ElementRef, options?: EditKeyboardHandlerOptions);
|
|
44
|
-
/**
|
|
45
|
-
* Called when component is destroyed
|
|
46
|
-
*/
|
|
47
|
-
ngOnDestroy(): void;
|
|
48
|
-
/**
|
|
49
|
-
* Initialize plugin, to be ready to use, initialize communication with other plugins
|
|
50
|
-
*/
|
|
51
|
-
initialize(): void;
|
|
52
|
-
/**
|
|
53
|
-
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
54
|
-
*/
|
|
55
|
-
initOptions(): void;
|
|
56
|
-
/**
|
|
57
|
-
* Explicitly runs invalidation of content (change detection)
|
|
58
|
-
*/
|
|
59
|
-
invalidateVisuals(): void;
|
|
60
|
-
/**
|
|
61
|
-
* Handles keyboard event
|
|
62
|
-
* @param event - Keyboard event that occured
|
|
63
|
-
*/
|
|
64
|
-
protected _handleKeyboard: (event: KeyboardEvent) => void;
|
|
65
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EditKeyboardHandlerComponent, [{ optional: true; }, { optional: true; }, null, { optional: true; }]>;
|
|
66
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EditKeyboardHandlerComponent, "ng-edit-keyboard-handler", never, {}, {}, never, never, false, never>;
|
|
67
|
-
}
|
|
68
|
-
//# sourceMappingURL=editKeyboardHandler.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"editKeyboardHandler.component.d.ts","sourceRoot":"","sources":["editKeyboardHandler.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuD,UAAU,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AAG1G,OAAO,EAAC,0BAA0B,EAAE,mBAAmB,EAAC,MAAM,iCAAiC,CAAC;AAChG,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAC,uBAAuB,EAAC,MAAM,4BAA4B,CAAC;AAGnE,OAAO,EAAC,eAAe,EAAC,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;AAC5D,OAAO,EAAC,YAAY,EAAC,MAAM,oBAAoB,CAAC;AAEhD,OAAO,EAAC,UAAU,EAAC,MAAM,kBAAkB,CAAC;;AAW5C;;GAEG;AACH,qBAOa,4BAA6B,YAAW,mBAAmB,EAAE,cAAc,CAAC,0BAA0B,CAAC,EAAE,SAAS;IAiDxD,eAAe,EAAE,uBAAuB;IAC5E,SAAS,EAAE,SAAS;IAChC,aAAa,EAAE,UAAU;IA/C5C;;OAEG;IACH,SAAS,CAAC,QAAQ,EAAE,0BAA0B,CAAC;IAE/C;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC;IAExB;;OAEG;IACH,SAAS,CAAC,aAAa,EAAE,YAAY,CAAC;IAEtC;;OAEG;IACH,SAAS,CAAC,WAAW,EAAE,UAAU,CAAC;IAIlC;;OAEG;IACH,SAAS,KAAK,gBAAgB,IAAI,eAAe,EAAE,CAGlD;IAID;;OAEG;IACH,IAAW,OAAO,IAAI,0BAA0B,CAG/C;IACD,IAAW,OAAO,CAAC,OAAO,EAAE,0BAA0B,EAGrD;gBAGkE,eAAe,EAAE,uBAAuB,EAC5E,SAAS,EAAE,SAAS,EAChC,aAAa,EAAE,UAAU,EACc,OAAO,CAAC,EAAE,0BAA0B;IAO9F;;OAEG;IACI,WAAW;IAUlB;;OAEG;IACI,UAAU;IA4CjB;;OAEG;IACI,WAAW;IAIlB;;OAEG;IACI,iBAAiB,IAAI,IAAI;IAMhC;;;OAGG;IACH,SAAS,CAAC,eAAe,GAAI,OAAO,aAAa,UA6G/C;yCAxPO,4BAA4B;2CAA5B,4BAA4B;CAyPxC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { KeyboardHandler, KeyboardHandlerOptions } from '../keyboardHandler.interface';
|
|
2
|
-
/**
|
|
3
|
-
* Edit keyboard handler options
|
|
4
|
-
*/
|
|
5
|
-
export interface EditKeyboardHandlerOptions extends KeyboardHandlerOptions {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Public API for 'EditKeyboardHandlerComponent'
|
|
9
|
-
*/
|
|
10
|
-
export interface EditKeyboardHandler extends KeyboardHandler {
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=editKeyboardHandler.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"editKeyboardHandler.interface.d.ts","sourceRoot":"","sources":["editKeyboardHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,eAAe,EAAE,sBAAsB,EAAC,MAAM,8BAA8B,CAAC;AAErF;;GAEG;AACH,MAAM,WAAW,0BAA2B,SAAQ,sBAAsB;CAEzE;AAED;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,eAAe;CAE3D"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { PluginOptions, NgSelectPlugin } from '../../misc';
|
|
2
|
-
/**
|
|
3
|
-
* Options for keyboard handler plugin
|
|
4
|
-
*/
|
|
5
|
-
export interface KeyboardHandlerOptions extends PluginOptions {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Keyboard handler plugin interface
|
|
9
|
-
*/
|
|
10
|
-
export interface KeyboardHandler extends NgSelectPlugin {
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=keyboardHandler.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"keyboardHandler.interface.d.ts","sourceRoot":"","sources":["keyboardHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAE,cAAc,EAAC,MAAM,YAAY,CAAC;AAEzD;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,aAAa;CAE5D;AAED;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,cAAc;CAEtD"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { KeyboardHandlerOptions } from './keyboardHandler.interface';
|
|
3
|
-
/**
|
|
4
|
-
* Constant used for accessing keyboard handler plugin in NgSelect
|
|
5
|
-
*/
|
|
6
|
-
export declare const KEYBOARD_HANDLER = "KEYBOARD_HANDLER";
|
|
7
|
-
/**
|
|
8
|
-
* Token for injecting options for keyboard handler plugin
|
|
9
|
-
*/
|
|
10
|
-
export declare const KEYBOARD_HANDLER_OPTIONS: InjectionToken<KeyboardHandlerOptions>;
|
|
11
|
-
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAE7C,OAAO,EAAC,sBAAsB,EAAC,MAAM,6BAA6B,CAAC;AAEnE;;GAEG;AACH,eAAO,MAAM,gBAAgB,qBAAqB,CAAC;AAEnD;;GAEG;AACH,eAAO,MAAM,wBAAwB,EAAE,cAAc,CAAC,sBAAsB,CAA0E,CAAC"}
|
|
@@ -1,98 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { StringLocalization } from '@anglr/common';
|
|
3
|
-
import { Subscription } from 'rxjs';
|
|
4
|
-
import { BasicLiveSearchOptions, BasicLiveSearch } from './basicLiveSearch.interface';
|
|
5
|
-
import { NgSelectPlugin } from '../../../misc';
|
|
6
|
-
import { NgSelectPluginInstances } from '../../../components/select';
|
|
7
|
-
import { LiveSearchTexts } from '../liveSearch.interface';
|
|
8
|
-
import { Popup } from '../../popup';
|
|
9
|
-
import { PluginBus } from '../../../misc/pluginBus/pluginBus';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/**
|
|
12
|
-
* Component used for obtaining basic live search html element
|
|
13
|
-
*/
|
|
14
|
-
export declare class BasicLiveSearchComponent implements BasicLiveSearch, NgSelectPlugin<BasicLiveSearchOptions>, OnDestroy {
|
|
15
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
16
|
-
pluginBus: PluginBus;
|
|
17
|
-
pluginElement: ElementRef;
|
|
18
|
-
protected _changeDetector: ChangeDetectorRef;
|
|
19
|
-
protected _stringLocalization: StringLocalization;
|
|
20
|
-
/**
|
|
21
|
-
* Popup used in NgSelect
|
|
22
|
-
*/
|
|
23
|
-
protected _popup: Popup;
|
|
24
|
-
/**
|
|
25
|
-
* Subscription for changes of popup visibility
|
|
26
|
-
*/
|
|
27
|
-
protected _visibilityChangeSubscription: Subscription;
|
|
28
|
-
/**
|
|
29
|
-
* Subscription for live search focus request
|
|
30
|
-
*/
|
|
31
|
-
protected _liveSearchFocusSubscription: Subscription;
|
|
32
|
-
/**
|
|
33
|
-
* Options for NgSelect plugin
|
|
34
|
-
*/
|
|
35
|
-
protected _options: BasicLiveSearchOptions;
|
|
36
|
-
/**
|
|
37
|
-
* Options for NgSelect plugin
|
|
38
|
-
*/
|
|
39
|
-
get options(): BasicLiveSearchOptions;
|
|
40
|
-
set options(options: BasicLiveSearchOptions);
|
|
41
|
-
/**
|
|
42
|
-
* HTML element that represents live search
|
|
43
|
-
*/
|
|
44
|
-
get liveSearchElement(): HTMLElement;
|
|
45
|
-
/**
|
|
46
|
-
* Current value of live search
|
|
47
|
-
*/
|
|
48
|
-
searchValue: string;
|
|
49
|
-
/**
|
|
50
|
-
* Occurs when current value of live search changes
|
|
51
|
-
*/
|
|
52
|
-
searchValueChange: EventEmitter<void>;
|
|
53
|
-
/**
|
|
54
|
-
* Object containing available texts
|
|
55
|
-
* @internal
|
|
56
|
-
*/
|
|
57
|
-
texts: LiveSearchTexts;
|
|
58
|
-
/**
|
|
59
|
-
* View child that represents live search element
|
|
60
|
-
* @internal
|
|
61
|
-
*/
|
|
62
|
-
liveSearchElementChild: ElementRef<HTMLElement>;
|
|
63
|
-
/**
|
|
64
|
-
* View child that represents input element
|
|
65
|
-
* @internal
|
|
66
|
-
*/
|
|
67
|
-
inputElementChild: ElementRef<HTMLInputElement>;
|
|
68
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginBus: PluginBus, pluginElement: ElementRef, _changeDetector: ChangeDetectorRef, _stringLocalization: StringLocalization, options?: BasicLiveSearchOptions);
|
|
69
|
-
/**
|
|
70
|
-
* Called when component is destroyed
|
|
71
|
-
*/
|
|
72
|
-
ngOnDestroy(): void;
|
|
73
|
-
/**
|
|
74
|
-
* Initialize plugin, to be ready to use, initialize communication with other plugins
|
|
75
|
-
*/
|
|
76
|
-
initialize(): void;
|
|
77
|
-
/**
|
|
78
|
-
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
79
|
-
*/
|
|
80
|
-
initOptions(): void;
|
|
81
|
-
/**
|
|
82
|
-
* Explicitly runs invalidation of content (change detection)
|
|
83
|
-
*/
|
|
84
|
-
invalidateVisuals(): void;
|
|
85
|
-
/**
|
|
86
|
-
* Handle input value
|
|
87
|
-
* @param value - Value of input
|
|
88
|
-
* @internal
|
|
89
|
-
*/
|
|
90
|
-
handleInput(value: string): void;
|
|
91
|
-
/**
|
|
92
|
-
* Initialize texts
|
|
93
|
-
*/
|
|
94
|
-
protected _initTexts(): void;
|
|
95
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BasicLiveSearchComponent, [{ optional: true; }, { optional: true; }, null, null, null, { optional: true; }]>;
|
|
96
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicLiveSearchComponent, "ng-basic-live-search", never, {}, {}, never, never, false, never>;
|
|
97
|
-
}
|
|
98
|
-
//# sourceMappingURL=basicLiveSearch.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"basicLiveSearch.component.d.ts","sourceRoot":"","sources":["basicLiveSearch.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,iBAAiB,EAAoB,UAAU,EAAa,YAAY,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AACtJ,OAAO,EAAsB,kBAAkB,EAAC,MAAM,eAAe,CAAC;AAEtE,OAAO,EAAC,YAAY,EAAC,MAAM,MAAM,CAAC;AAElC,OAAO,EAAC,sBAAsB,EAAE,eAAe,EAAC,MAAM,6BAA6B,CAAC;AACpF,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAC,uBAAuB,EAAC,MAAM,4BAA4B,CAAC;AAEnE,OAAO,EAAC,eAAe,EAAC,MAAM,yBAAyB,CAAC;AAExD,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;;AAoB5D;;GAEG;AACH,qBAQa,wBAAyB,YAAW,eAAe,EAAE,cAAc,CAAC,sBAAsB,CAAC,EAAE,SAAS;IAiF5C,eAAe,EAAE,uBAAuB;IAC5E,SAAS,EAAE,SAAS;IAChC,aAAa,EAAE,UAAU;IAChC,SAAS,CAAC,eAAe,EAAE,iBAAiB;IACf,SAAS,CAAC,mBAAmB,EAAE,kBAAkB;IAjF1F;;OAEG;IACH,SAAS,CAAC,MAAM,EAAE,KAAK,CAAC;IAExB;;OAEG;IACH,SAAS,CAAC,6BAA6B,EAAE,YAAY,CAAC;IAEtD;;OAEG;IACH,SAAS,CAAC,4BAA4B,EAAE,YAAY,CAAC;IAErD;;OAEG;IACH,SAAS,CAAC,QAAQ,EAAE,sBAAsB,CAAC;IAI3C;;OAEG;IACH,IAAW,OAAO,IAAI,sBAAsB,CAG3C;IACD,IAAW,OAAO,CAAC,OAAO,EAAE,sBAAsB,EAGjD;IAED;;OAEG;IACH,IAAW,iBAAiB,IAAI,WAAW,CAG1C;IAED;;OAEG;IACI,WAAW,EAAE,MAAM,CAAQ;IAElC;;OAEG;IACI,iBAAiB,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAIxE;;;OAGG;IACI,KAAK,EAAE,eAAe,CAAM;IAInC;;;OAGG;IAEI,sBAAsB,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAEvD;;;OAGG;IAEI,iBAAiB,EAAE,UAAU,CAAC,gBAAgB,CAAC,CAAC;gBAGY,eAAe,EAAE,uBAAuB,EAC5E,SAAS,EAAE,SAAS,EAChC,aAAa,EAAE,UAAU,EACtB,eAAe,EAAE,iBAAiB,EACL,mBAAmB,EAAE,kBAAkB,EACrC,OAAO,CAAC,EAAE,sBAAsB;IAOrF;;OAEG;IACI,WAAW;IAWlB;;OAEG;IACI,UAAU;IAsCjB;;OAEG;IACI,WAAW;IAIlB;;OAEG;IACI,iBAAiB,IAAI,IAAI;IAOhC;;;;OAIG;IACI,WAAW,CAAC,KAAK,EAAE,MAAM;IAQhC;;OAEG;IACH,SAAS,CAAC,UAAU;yCArLX,wBAAwB;2CAAxB,wBAAwB;CA8LpC"}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
<div style="display: none;">
|
|
2
|
-
<div #liveSearchElement [ngClass]="options?.cssClasses?.wrapperDiv">
|
|
3
|
-
<input #inputElement [ngClass]="options?.cssClasses?.input" type="text" (input)="handleInput($any($event.target).value)" [value]="searchValue" placeholder="{{texts?.inputPlaceholder}}">
|
|
4
|
-
</div>
|
|
5
|
-
</div>
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import { LiveSearch, LiveSearchOptions } from '../liveSearch.interface';
|
|
2
|
-
/**
|
|
3
|
-
* Css classes for basic live search
|
|
4
|
-
*/
|
|
5
|
-
export interface CssClassesBasicLiveSearch {
|
|
6
|
-
/**
|
|
7
|
-
* Applied to wrapper div around input
|
|
8
|
-
*/
|
|
9
|
-
wrapperDiv?: string;
|
|
10
|
-
/**
|
|
11
|
-
* Applied to input that represents live search
|
|
12
|
-
*/
|
|
13
|
-
input?: string;
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* Basic live search options
|
|
17
|
-
*/
|
|
18
|
-
export interface BasicLiveSearchOptions extends LiveSearchOptions<CssClassesBasicLiveSearch> {
|
|
19
|
-
/**
|
|
20
|
-
* Indication whether keep search value after popup close
|
|
21
|
-
*/
|
|
22
|
-
keepSearchValue?: boolean;
|
|
23
|
-
}
|
|
24
|
-
/**
|
|
25
|
-
* Public API for 'BasicLiveSearchComponent'
|
|
26
|
-
*/
|
|
27
|
-
export interface BasicLiveSearch extends LiveSearch {
|
|
28
|
-
}
|
|
29
|
-
//# sourceMappingURL=basicLiveSearch.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"basicLiveSearch.interface.d.ts","sourceRoot":"","sources":["basicLiveSearch.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAE,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAEtE;;GAEG;AACH,MAAM,WAAW,yBAAyB;IAEtC;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,iBAAiB,CAAC,yBAAyB,CAAC;IAExF;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;CAC7B;AAED;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,UAAU;CAElD"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["components.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC"}
|