@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":"components.d.ts","sourceRoot":"","sources":["components.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC;AACtD,cAAc,6BAA6B,CAAC"}
|
|
@@ -1,89 +0,0 @@
|
|
|
1
|
-
import { ElementRef, OnDestroy, EventEmitter } from '@angular/core';
|
|
2
|
-
import { Position } from '@anglr/common';
|
|
3
|
-
import { NoopAction } from '@jscrpt/common';
|
|
4
|
-
import { Subscription } from 'rxjs';
|
|
5
|
-
import { DefaultPositionerOptions, DefaultPositioner } from './defaultPositioner.interface';
|
|
6
|
-
import { NgSelectPlugin, OptionsGatherer } from '../../../misc';
|
|
7
|
-
import { NgSelectPluginInstances } from '../../../components/select';
|
|
8
|
-
import { Popup } from '../../popup';
|
|
9
|
-
import { PluginBus } from '../../../misc/pluginBus/pluginBus';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
/**
|
|
12
|
-
* Component used for positioning popup element, handles resize, scroll and collision using `Position`
|
|
13
|
-
*/
|
|
14
|
-
export declare class DefaultPositionerComponent implements DefaultPositioner, NgSelectPlugin<DefaultPositionerOptions>, OnDestroy {
|
|
15
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
16
|
-
pluginBus: PluginBus;
|
|
17
|
-
pluginElement: ElementRef;
|
|
18
|
-
protected position: Position<HTMLElement>;
|
|
19
|
-
protected platformId?: object;
|
|
20
|
-
/**
|
|
21
|
-
* Instance of previous options gatherer, that is used for obtaining available options
|
|
22
|
-
*/
|
|
23
|
-
protected optionsGatherer: OptionsGatherer;
|
|
24
|
-
/**
|
|
25
|
-
* Occurs when flip occured during positining of popup
|
|
26
|
-
*/
|
|
27
|
-
protected ɵflip: EventEmitter<void>;
|
|
28
|
-
/**
|
|
29
|
-
* Options for NgSelect plugin
|
|
30
|
-
*/
|
|
31
|
-
protected ɵoptions: DefaultPositionerOptions;
|
|
32
|
-
/**
|
|
33
|
-
* Subscription for visibility change of popup
|
|
34
|
-
*/
|
|
35
|
-
protected visibilitySubscription: Subscription | undefined | null;
|
|
36
|
-
/**
|
|
37
|
-
* Subscription for positioning event that occured
|
|
38
|
-
*/
|
|
39
|
-
protected positioningSubscription: Subscription | undefined | null;
|
|
40
|
-
/**
|
|
41
|
-
* Function used for disposing of positining watch
|
|
42
|
-
*/
|
|
43
|
-
protected positioningDispose: NoopAction;
|
|
44
|
-
/**
|
|
45
|
-
* Popup that is displayed
|
|
46
|
-
*/
|
|
47
|
-
protected popup: Popup;
|
|
48
|
-
/**
|
|
49
|
-
* Html element of popup plugin
|
|
50
|
-
*/
|
|
51
|
-
protected popupElement: HTMLElement;
|
|
52
|
-
/**
|
|
53
|
-
* Indication whether is code running in browser
|
|
54
|
-
*/
|
|
55
|
-
protected isBrowser: boolean;
|
|
56
|
-
/**
|
|
57
|
-
* Options for NgSelect plugin
|
|
58
|
-
*/
|
|
59
|
-
get options(): DefaultPositionerOptions;
|
|
60
|
-
set options(options: DefaultPositionerOptions);
|
|
61
|
-
/**
|
|
62
|
-
* @inheritdoc
|
|
63
|
-
*/
|
|
64
|
-
get flip(): EventEmitter<void>;
|
|
65
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginBus: PluginBus, pluginElement: ElementRef, position: Position<HTMLElement>, options?: DefaultPositionerOptions, platformId?: object);
|
|
66
|
-
/**
|
|
67
|
-
* Called when component is destroyed
|
|
68
|
-
*/
|
|
69
|
-
ngOnDestroy(): void;
|
|
70
|
-
/**
|
|
71
|
-
* Initialize plugin, to be ready to use, initialize communication with other plugins
|
|
72
|
-
*/
|
|
73
|
-
initialize(): void;
|
|
74
|
-
/**
|
|
75
|
-
* @inheritdoc
|
|
76
|
-
*/
|
|
77
|
-
initOptions(): void;
|
|
78
|
-
/**
|
|
79
|
-
* @inheritdoc
|
|
80
|
-
*/
|
|
81
|
-
invalidateVisuals(): void;
|
|
82
|
-
/**
|
|
83
|
-
* Initialize positioning of popup
|
|
84
|
-
*/
|
|
85
|
-
protected initPosition(): void;
|
|
86
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DefaultPositionerComponent, [{ optional: true; }, { optional: true; }, null, null, { optional: true; }, null]>;
|
|
87
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DefaultPositionerComponent, "ng-default-positioner", never, {}, {}, never, never, false, never>;
|
|
88
|
-
}
|
|
89
|
-
//# sourceMappingURL=defaultPositioner.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"defaultPositioner.component.d.ts","sourceRoot":"","sources":["defaultPositioner.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuD,UAAU,EAAE,SAAS,EAAe,YAAY,EAAC,MAAM,eAAe,CAAC;AAErI,OAAO,EAAsB,QAAQ,EAA8C,MAAM,eAAe,CAAC;AACzG,OAAO,EAAC,UAAU,EAAC,MAAM,gBAAgB,CAAC;AAE1C,OAAO,EAAC,YAAY,EAAC,MAAM,MAAM,CAAC;AAElC,OAAO,EAAC,wBAAwB,EAAE,iBAAiB,EAAC,MAAM,+BAA+B,CAAC;AAC1F,OAAO,EAAC,cAAc,EAAE,eAAe,EAAC,MAAM,eAAe,CAAC;AAC9D,OAAO,EAAC,uBAAuB,EAAC,MAAM,4BAA4B,CAAC;AAGnE,OAAO,EAAC,KAAK,EAAC,MAAM,aAAa,CAAC;AAElC,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;;AAc5D;;GAEG;AACH,qBAOa,0BAA2B,YAAW,iBAAiB,EAAE,cAAc,CAAC,wBAAwB,CAAC,EAAE,SAAS;IAwElD,eAAe,EAAE,uBAAuB;IAC5E,SAAS,EAAE,SAAS;IAChC,aAAa,EAAE,UAAU;IACd,SAAS,CAAC,QAAQ,EAAE,QAAQ,CAAC,WAAW,CAAC;IAEtC,SAAS,CAAC,UAAU,CAAC,EAAE,MAAM;IAzE9D;;OAEG;IACH,SAAS,CAAC,eAAe,EAAE,eAAe,CAAC;IAE3C;;OAEG;IACH,SAAS,CAAC,KAAK,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAE/D;;OAEG;IACH,SAAS,CAAC,QAAQ,EAAE,wBAAwB,CAAC;IAE7C;;OAEG;IACH,SAAS,CAAC,sBAAsB,EAAE,YAAY,GAAC,SAAS,GAAC,IAAI,CAAC;IAE9D;;OAEG;IACH,SAAS,CAAC,uBAAuB,EAAE,YAAY,GAAC,SAAS,GAAC,IAAI,CAAC;IAE/D;;OAEG;IACH,SAAS,CAAC,kBAAkB,EAAE,UAAU,CAAC;IAEzC;;OAEG;IACH,SAAS,CAAC,KAAK,EAAE,KAAK,CAAC;IAEvB;;OAEG;IACH,SAAS,CAAC,YAAY,EAAE,WAAW,CAAC;IAEpC;;OAEG;IACH,SAAS,CAAC,SAAS,EAAE,OAAO,CAAsC;IAIlE;;OAEG;IACH,IAAW,OAAO,IAAI,wBAAwB,CAG7C;IACD,IAAW,OAAO,CAAC,OAAO,EAAE,wBAAwB,EAGnD;IAED;;OAEG;IACH,IAAW,IAAI,IAAI,YAAY,CAAC,IAAI,CAAC,CAGpC;gBAGkE,eAAe,EAAE,uBAAuB,EAC5E,SAAS,EAAE,SAAS,EAChC,aAAa,EAAE,UAAU,EACJ,QAAQ,EAAE,QAAQ,CAAC,WAAW,CAAC,EACnB,OAAO,CAAC,EAAE,wBAAwB,EAC3C,UAAU,CAAC,EAAE,MAAM;IAO9D;;OAEG;IACI,WAAW;IAalB;;OAEG;IACI,UAAU;IAsBjB;;OAEG;IACI,WAAW;IAIlB;;OAEG;IACI,iBAAiB,IAAI,IAAI;IAMhC;;OAEG;IACH,SAAS,CAAC,YAAY;yCAhJb,0BAA0B;2CAA1B,0BAA0B;CA4LtC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Positioner, PositionerOptions } from '../positioner.interface';
|
|
2
|
-
/**
|
|
3
|
-
* Default positioner options
|
|
4
|
-
*/
|
|
5
|
-
export interface DefaultPositionerOptions extends PositionerOptions {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Public API for 'DefaultPositionerComponent'
|
|
9
|
-
*/
|
|
10
|
-
export interface DefaultPositioner extends Positioner {
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=defaultPositioner.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"defaultPositioner.interface.d.ts","sourceRoot":"","sources":["defaultPositioner.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAE,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAEtE;;GAEG;AACH,MAAM,WAAW,wBAAyB,SAAQ,iBAAiB;CAElE;AAED;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,UAAU;CAEpD"}
|
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
2
|
-
import { NoPositioner, NoPositionerOptions } from './noPositioner.interface';
|
|
3
|
-
import { NgSelectPlugin } from '../../../misc';
|
|
4
|
-
import { NgSelectPluginInstances } from '../../../components/select';
|
|
5
|
-
import { PluginBus } from '../../../misc/pluginBus/pluginBus';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
/**
|
|
8
|
-
* Component used for not positioning popup
|
|
9
|
-
*/
|
|
10
|
-
export declare class NoPositionerComponent implements NoPositioner, NgSelectPlugin<NoPositionerOptions> {
|
|
11
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
12
|
-
pluginElement: ElementRef;
|
|
13
|
-
/**
|
|
14
|
-
* Options for NgSelect plugin
|
|
15
|
-
*/
|
|
16
|
-
protected ɵoptions: NoPositionerOptions;
|
|
17
|
-
/**
|
|
18
|
-
* Occurs when flip occured during positining of popup
|
|
19
|
-
*/
|
|
20
|
-
protected ɵflip: EventEmitter<void>;
|
|
21
|
-
/**
|
|
22
|
-
* Options for NgSelect plugin
|
|
23
|
-
*/
|
|
24
|
-
get options(): NoPositionerOptions;
|
|
25
|
-
set options(options: NoPositionerOptions);
|
|
26
|
-
/**
|
|
27
|
-
* @inheritdoc
|
|
28
|
-
*/
|
|
29
|
-
get flip(): EventEmitter<void>;
|
|
30
|
-
/**
|
|
31
|
-
* Plugin bus used for inter plugin shared events
|
|
32
|
-
*/
|
|
33
|
-
pluginBus: PluginBus;
|
|
34
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginElement: ElementRef, options?: NoPositionerOptions);
|
|
35
|
-
/**
|
|
36
|
-
* Initialize plugin, to be ready to use, initialize communication with other plugins
|
|
37
|
-
*/
|
|
38
|
-
initialize(): void;
|
|
39
|
-
/**
|
|
40
|
-
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
41
|
-
*/
|
|
42
|
-
initOptions(): void;
|
|
43
|
-
/**
|
|
44
|
-
* Explicitly runs invalidation of content (change detection)
|
|
45
|
-
*/
|
|
46
|
-
invalidateVisuals(): void;
|
|
47
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<NoPositionerComponent, [{ optional: true; }, null, { optional: true; }]>;
|
|
48
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NoPositionerComponent, "ng-no-positioner", never, {}, {}, never, never, false, never>;
|
|
49
|
-
}
|
|
50
|
-
//# sourceMappingURL=noPositioner.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"noPositioner.component.d.ts","sourceRoot":"","sources":["noPositioner.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAqC,UAAU,EAAE,YAAY,EAAmB,MAAM,eAAe,CAAC;AAG7G,OAAO,EAAC,YAAY,EAAE,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAC,cAAc,EAAC,MAAM,eAAe,CAAC;AAC7C,OAAO,EAAC,uBAAuB,EAAC,MAAM,4BAA4B,CAAC;AAGnE,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;;AAS5D;;GAEG;AACH,qBAOa,qBAAsB,YAAW,YAAY,EAAE,cAAc,CAAC,mBAAmB,CAAC;IA2CxB,eAAe,EAAE,uBAAuB;IACxF,aAAa,EAAE,UAAU;IAxC5C;;OAEG;IACH,SAAS,CAAC,QAAQ,EAAE,mBAAmB,CAAC;IAExC;;OAEG;IACH,SAAS,CAAC,KAAK,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAI/D;;OAEG;IACH,IAAW,OAAO,IAAI,mBAAmB,CAGxC;IACD,IAAW,OAAO,CAAC,OAAO,EAAE,mBAAmB,EAG9C;IAED;;OAEG;IACH,IAAW,IAAI,IAAI,YAAY,CAAC,IAAI,CAAC,CAGpC;IAED;;OAEG;IACI,SAAS,EAAE,SAAS,CAAC;gBAIuC,eAAe,EAAE,uBAAuB,EACxF,aAAa,EAAE,UAAU,EACQ,OAAO,CAAC,EAAE,mBAAmB;IAOjF;;OAEG;IACI,UAAU;IAIjB;;OAEG;IACI,WAAW;IAIlB;;OAEG;IACI,iBAAiB,IAAI,IAAI;yCArEvB,qBAAqB;2CAArB,qBAAqB;CAwEjC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { Positioner, PositionerOptions } from '../positioner.interface';
|
|
2
|
-
/**
|
|
3
|
-
* Public API for 'NoPositionerComponent'
|
|
4
|
-
*/
|
|
5
|
-
export interface NoPositioner extends Positioner {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* No positioner options
|
|
9
|
-
*/
|
|
10
|
-
export interface NoPositionerOptions extends PositionerOptions {
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=noPositioner.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"noPositioner.interface.d.ts","sourceRoot":"","sources":["noPositioner.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAE,iBAAiB,EAAC,MAAM,yBAAyB,CAAC;AAEtE;;GAEG;AACH,MAAM,WAAW,YAAa,SAAQ,UAAU;CAC9C;AAEF;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,iBAAiB;CAC5D"}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { PositionOptions } from '@anglr/common';
|
|
3
|
-
import { PluginOptions, NgSelectPlugin } from '../../misc';
|
|
4
|
-
/**
|
|
5
|
-
* Options for positioner plugin
|
|
6
|
-
*/
|
|
7
|
-
export interface PositionerOptions extends PluginOptions {
|
|
8
|
-
/**
|
|
9
|
-
* Options used for positioning
|
|
10
|
-
*/
|
|
11
|
-
positionOptions?: Partial<Omit<PositionOptions, 'mouseEvent' | 'autoUpdate' | 'flip'>>;
|
|
12
|
-
}
|
|
13
|
-
/**
|
|
14
|
-
* Positioner plugin interface
|
|
15
|
-
*/
|
|
16
|
-
export interface Positioner extends NgSelectPlugin {
|
|
17
|
-
/**
|
|
18
|
-
* Occurs when flip occured during positining of popup
|
|
19
|
-
*/
|
|
20
|
-
readonly flip: EventEmitter<void>;
|
|
21
|
-
}
|
|
22
|
-
//# sourceMappingURL=positioner.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"positioner.interface.d.ts","sourceRoot":"","sources":["positioner.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAC3C,OAAO,EAAC,eAAe,EAAC,MAAM,eAAe,CAAC;AAE9C,OAAO,EAAC,aAAa,EAAE,cAAc,EAAC,MAAM,YAAY,CAAC;AAEzD;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,aAAa;IAEpD;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC,IAAI,CAAC,eAAe,EAAE,YAAY,GAAC,YAAY,GAAC,MAAM,CAAC,CAAC,CAAC;CACtF;AAED;;GAEG;AACH,MAAM,WAAW,UAAW,SAAQ,cAAc;IAE9C;;OAEG;IACH,QAAQ,CAAC,IAAI,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;CACrC"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { PositionerOptions } from './positioner.interface';
|
|
3
|
-
/**
|
|
4
|
-
* Constant used for accessing positioner plugin in NgSelect
|
|
5
|
-
*/
|
|
6
|
-
export declare const POSITIONER = "POSITIONER";
|
|
7
|
-
/**
|
|
8
|
-
* Token for injecting options for positioner plugin
|
|
9
|
-
*/
|
|
10
|
-
export declare const POSITIONER_OPTIONS: InjectionToken<PositionerOptions>;
|
|
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,iBAAiB,EAAC,MAAM,wBAAwB,CAAC;AAEzD;;GAEG;AACH,eAAO,MAAM,UAAU,eAAe,CAAC;AAEvC;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,cAAc,CAAC,iBAAiB,CAA+D,CAAC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { NormalStateOptions, NormalState } from '../normalState';
|
|
2
|
-
/**
|
|
3
|
-
* Options for readonly state plugin
|
|
4
|
-
*/
|
|
5
|
-
export interface ReadonlyStateOptions<TCssClasses = any> extends NormalStateOptions<TCssClasses> {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Readonly state plugin interface
|
|
9
|
-
*/
|
|
10
|
-
export interface ReadonlyState extends NormalState {
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=readonlyState.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"readonlyState.interface.d.ts","sourceRoot":"","sources":["readonlyState.interface.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,kBAAkB,EAAE,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAE/D;;GAEG;AACH,MAAM,WAAW,oBAAoB,CAAC,WAAW,GAAG,GAAG,CAAE,SAAQ,kBAAkB,CAAC,WAAW,CAAC;CAE/F;AAED;;GAEG;AACH,MAAM,WAAW,aAAc,SAAQ,WAAW;CAEjD"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { ReadonlyStateOptions } from './readonlyState.interface';
|
|
3
|
-
/**
|
|
4
|
-
* Constant used for accessing readonly state plugin in NgSelect
|
|
5
|
-
*/
|
|
6
|
-
export declare const READONLY_STATE = "READONLY_STATE";
|
|
7
|
-
/**
|
|
8
|
-
* Token for injecting options for readonly state plugin
|
|
9
|
-
*/
|
|
10
|
-
export declare const READONLY_STATE_OPTIONS: InjectionToken<ReadonlyStateOptions>;
|
|
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,oBAAoB,EAAC,MAAM,2BAA2B,CAAC;AAE/D;;GAEG;AACH,eAAO,MAAM,cAAc,mBAAmB,CAAC;AAE/C;;GAEG;AACH,eAAO,MAAM,sBAAsB,EAAE,cAAc,CAAC,oBAAoB,CAAsE,CAAC"}
|
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { BasicValueHandlerOptions, BasicValueHandler } from './basicValueHandler.interface';
|
|
3
|
-
import { NgSelectPluginInstances } from '../../../components/select';
|
|
4
|
-
import { ɵNgSelectOption } from '../../../components/option';
|
|
5
|
-
import { ValueHandlerBase } from '../valueHandlerBase';
|
|
6
|
-
import { PluginBus } from '../../../misc/pluginBus/pluginBus';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* Component used for handling current value of NgSelect
|
|
10
|
-
*/
|
|
11
|
-
export declare class BasicValueHandlerComponent<TValue = any> extends ValueHandlerBase<TValue, BasicValueHandlerOptions> implements BasicValueHandler<TValue> {
|
|
12
|
-
/**
|
|
13
|
-
* Backed up unmapped value that was set before options were obtained
|
|
14
|
-
*/
|
|
15
|
-
protected _unmappedValue: TValue | TValue[];
|
|
16
|
-
/**
|
|
17
|
-
* Options for NgSelect plugin
|
|
18
|
-
*/
|
|
19
|
-
get options(): BasicValueHandlerOptions;
|
|
20
|
-
set options(options: BasicValueHandlerOptions);
|
|
21
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginBus: PluginBus<TValue>, pluginElement: ElementRef, options?: BasicValueHandlerOptions);
|
|
22
|
-
/**
|
|
23
|
-
* Sets value for NgSelect
|
|
24
|
-
* @param value - Value to be set
|
|
25
|
-
*/
|
|
26
|
-
setValue(value: TValue | TValue[]): void;
|
|
27
|
-
/**
|
|
28
|
-
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
29
|
-
*/
|
|
30
|
-
initOptions(): void;
|
|
31
|
-
/**
|
|
32
|
-
* Explicitly runs invalidation of content (change detection)
|
|
33
|
-
*/
|
|
34
|
-
invalidateVisuals(): void;
|
|
35
|
-
/**
|
|
36
|
-
* Sets value
|
|
37
|
-
*/
|
|
38
|
-
protected _setValue: (option: ɵNgSelectOption<TValue>) => void;
|
|
39
|
-
/**
|
|
40
|
-
* Loads options
|
|
41
|
-
*/
|
|
42
|
-
protected _loadOptions(): void;
|
|
43
|
-
/**
|
|
44
|
-
* Converts value to options
|
|
45
|
-
* @param value - Value to be changed to options
|
|
46
|
-
*/
|
|
47
|
-
protected _useOptionsAsValue(value: TValue | TValue[]): void;
|
|
48
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BasicValueHandlerComponent<any>, [{ optional: true; }, { optional: true; }, null, { optional: true; }]>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BasicValueHandlerComponent<any>, "ng-basic-value-handler", never, {}, {}, never, never, false, never>;
|
|
50
|
-
}
|
|
51
|
-
//# sourceMappingURL=basicValueHandler.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"basicValueHandler.component.d.ts","sourceRoot":"","sources":["basicValueHandler.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuD,UAAU,EAAC,MAAM,eAAe,CAAC;AAI/F,OAAO,EAAC,wBAAwB,EAAE,iBAAiB,EAAC,MAAM,+BAA+B,CAAC;AAC1F,OAAO,EAAC,uBAAuB,EAAC,MAAM,4BAA4B,CAAC;AAGnE,OAAO,EAAC,eAAe,EAAG,MAAM,4BAA4B,CAAC;AAC7D,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;;AAY5D;;GAEG;AACH,qBAOa,0BAA0B,CAAC,MAAM,GAAG,GAAG,CAAE,SAAQ,gBAAgB,CAAC,MAAM,EAAE,wBAAwB,CAAE,YAAW,iBAAiB,CAAC,MAAM,CAAC;IAIjJ;;OAEG;IACH,SAAS,CAAC,cAAc,EAAE,MAAM,GAAC,MAAM,EAAE,CAAC;IAI1C;;OAEG;IACH,IAAW,OAAO,IAAI,wBAAwB,CAG7C;IACD,IAAW,OAAO,CAAC,OAAO,EAAE,wBAAwB,EAGnD;gBAG2D,eAAe,EAAE,uBAAuB,EAC5E,SAAS,EAAE,SAAS,CAAC,MAAM,CAAC,EACxC,aAAa,EAAE,UAAU,EACkB,OAAO,CAAC,EAAE,wBAAwB;IASzF;;;OAGG;IACI,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAC,MAAM,EAAE,GAAG,IAAI;IAK7C;;OAEG;IACa,WAAW;IAI3B;;OAEG;IACa,iBAAiB,IAAI,IAAI;IAMzC;;OAEG;IACH,SAAS,CAAC,SAAS,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,UAuCpD;IAEF;;OAEG;IACH,SAAS,CAAC,YAAY;IAKtB;;;OAGG;IACH,SAAS,CAAC,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAC,MAAM,EAAE;yCArH1C,0BAA0B;2CAA1B,0BAA0B;CA6KtC"}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { ValueHandler, ValueHandlerOptions } from '../valueHandler.interface';
|
|
2
|
-
/**
|
|
3
|
-
* Basic value handler options
|
|
4
|
-
*/
|
|
5
|
-
export interface BasicValueHandlerOptions extends ValueHandlerOptions {
|
|
6
|
-
}
|
|
7
|
-
/**
|
|
8
|
-
* Public API for 'BasicValueHandlerComponent'
|
|
9
|
-
*/
|
|
10
|
-
export interface BasicValueHandler<TValue = any> extends ValueHandler<TValue> {
|
|
11
|
-
}
|
|
12
|
-
//# sourceMappingURL=basicValueHandler.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"basicValueHandler.interface.d.ts","sourceRoot":"","sources":["basicValueHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAE,mBAAmB,EAAC,MAAM,2BAA2B,CAAC;AAE5E;;GAEG;AACH,MAAM,WAAW,wBAAyB,SAAQ,mBAAmB;CAEpE;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB,CAAC,MAAM,GAAG,GAAG,CAAE,SAAQ,YAAY,CAAC,MAAM,CAAC;CAE5E"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"components.d.ts","sourceRoot":"","sources":["components.ts"],"names":[],"mappings":"AAAA,cAAc,qCAAqC,CAAC;AACpD,cAAc,yCAAyC,CAAC"}
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { DynamicValueHandlerOptions, DynamicValueHandler } from './dynamicValueHandler.interface';
|
|
3
|
-
import { NgSelectPluginInstances } from '../../../components/select';
|
|
4
|
-
import { ɵNgSelectOption } from '../../../components/option';
|
|
5
|
-
import { ValueHandlerBase } from '../valueHandlerBase';
|
|
6
|
-
import { PluginBus } from '../../../misc/pluginBus/pluginBus';
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
/**
|
|
9
|
-
* Component used for handling current value of NgSelect, allows values which are not present in options
|
|
10
|
-
*/
|
|
11
|
-
export declare class DynamicValueHandlerComponent<TValue = any> extends ValueHandlerBase<TValue, DynamicValueHandlerOptions<TValue>> implements DynamicValueHandler<TValue> {
|
|
12
|
-
/**
|
|
13
|
-
* Options for NgSelect plugin
|
|
14
|
-
*/
|
|
15
|
-
get options(): DynamicValueHandlerOptions<TValue>;
|
|
16
|
-
set options(options: DynamicValueHandlerOptions<TValue>);
|
|
17
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginBus: PluginBus<TValue>, pluginElement: ElementRef, options?: DynamicValueHandlerOptions<TValue>);
|
|
18
|
-
/**
|
|
19
|
-
* Sets value for NgSelect
|
|
20
|
-
* @param value - Value to be set
|
|
21
|
-
*/
|
|
22
|
-
setValue(value: TValue | TValue[]): void;
|
|
23
|
-
/**
|
|
24
|
-
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
25
|
-
*/
|
|
26
|
-
initOptions(): void;
|
|
27
|
-
/**
|
|
28
|
-
* Explicitly runs invalidation of content (change detection)
|
|
29
|
-
*/
|
|
30
|
-
invalidateVisuals(): void;
|
|
31
|
-
/**
|
|
32
|
-
* Sets value
|
|
33
|
-
*/
|
|
34
|
-
protected _setValue: (option: ɵNgSelectOption<TValue>) => void;
|
|
35
|
-
/**
|
|
36
|
-
* Loads options
|
|
37
|
-
*/
|
|
38
|
-
protected _loadOptions(): void;
|
|
39
|
-
/**
|
|
40
|
-
* Converts value to options
|
|
41
|
-
* @param value - Value to be changed to options
|
|
42
|
-
*/
|
|
43
|
-
protected _useOptionsAsValue(value: TValue | TValue[]): Promise<void>;
|
|
44
|
-
/**
|
|
45
|
-
* Loads text for specified value
|
|
46
|
-
* @param value - Value that is going to be used for obtaining option
|
|
47
|
-
*/
|
|
48
|
-
protected _loadText(value: TValue): Promise<ɵNgSelectOption<TValue>>;
|
|
49
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicValueHandlerComponent<any>, [{ optional: true; }, { optional: true; }, null, { optional: true; }]>;
|
|
50
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicValueHandlerComponent<any>, "ng-dynamic-value-handler", never, {}, {}, never, never, false, never>;
|
|
51
|
-
}
|
|
52
|
-
//# sourceMappingURL=dynamicValueHandler.component.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dynamicValueHandler.component.d.ts","sourceRoot":"","sources":["dynamicValueHandler.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuD,UAAU,EAAC,MAAM,eAAe,CAAC;AAI/F,OAAO,EAAC,0BAA0B,EAAE,mBAAmB,EAAC,MAAM,iCAAiC,CAAC;AAChG,OAAO,EAAC,uBAAuB,EAAC,MAAM,4BAA4B,CAAC;AAGnE,OAAO,EAAC,eAAe,EAAC,MAAM,4BAA4B,CAAC;AAC3D,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;;AAW5D;;GAEG;AACH,qBAOa,4BAA4B,CAAC,MAAM,GAAG,GAAG,CAAE,SAAQ,gBAAgB,CAAC,MAAM,EAAE,0BAA0B,CAAC,MAAM,CAAC,CAAE,YAAW,mBAAmB,CAAC,MAAM,CAAC;IAI/J;;OAEG;IACH,IAAW,OAAO,IAAI,0BAA0B,CAAC,MAAM,CAAC,CAGvD;IACD,IAAW,OAAO,CAAC,OAAO,EAAE,0BAA0B,CAAC,MAAM,CAAC,EAG7D;gBAG2D,eAAe,EAAE,uBAAuB,EAC5E,SAAS,EAAE,SAAS,CAAC,MAAM,CAAC,EACxC,aAAa,EAAE,UAAU,EACkB,OAAO,CAAC,EAAE,0BAA0B,CAAC,MAAM,CAAC;IASnG;;;OAGG;IACI,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAC,MAAM,EAAE,GAAG,IAAI;IAK7C;;OAEG;IACa,WAAW;IAI3B;;OAEG;IACa,iBAAiB,IAAI,IAAI;IAMzC;;OAEG;IACH,SAAS,CAAC,SAAS,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,UAsCpD;IAEF;;OAEG;IACH,SAAS,CAAC,YAAY;IAItB;;;OAGG;cACa,kBAAkB,CAAC,KAAK,EAAE,MAAM,GAAC,MAAM,EAAE;IAqDzD;;;OAGG;cACa,SAAS,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,eAAe,CAAC,MAAM,CAAC,CAAC;yCArKjE,4BAA4B;2CAA5B,4BAA4B;CAgMxC"}
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { ValueHandler, ValueHandlerOptions } from '../valueHandler.interface';
|
|
2
|
-
import { GetOptionsCallback } from '../../../misc';
|
|
3
|
-
/**
|
|
4
|
-
* Dynamic value handler options
|
|
5
|
-
*/
|
|
6
|
-
export interface DynamicValueHandlerOptions<TValue = any> extends ValueHandlerOptions {
|
|
7
|
-
/**
|
|
8
|
-
* Callback used for obtaining dynamic options during initialization, if not specified value will be used as text
|
|
9
|
-
*/
|
|
10
|
-
dynamicOptionsCallback?: GetOptionsCallback<TValue>;
|
|
11
|
-
/**
|
|
12
|
-
* Used for obtaining displayed text from value, defaults to value itself, if dynamicOptionsCallback is specified this is not called
|
|
13
|
-
*/
|
|
14
|
-
textExtractor?: (value: TValue) => string;
|
|
15
|
-
}
|
|
16
|
-
/**
|
|
17
|
-
* Public API for 'DynamicValueHandlerComponent'
|
|
18
|
-
*/
|
|
19
|
-
export interface DynamicValueHandler<TValue = any> extends ValueHandler<TValue> {
|
|
20
|
-
}
|
|
21
|
-
//# sourceMappingURL=dynamicValueHandler.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"dynamicValueHandler.interface.d.ts","sourceRoot":"","sources":["dynamicValueHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAE,mBAAmB,EAAC,MAAM,2BAA2B,CAAC;AAC5E,OAAO,EAAC,kBAAkB,EAAC,MAAM,eAAe,CAAC;AAEjD;;GAEG;AACH,MAAM,WAAW,0BAA0B,CAAC,MAAM,GAAG,GAAG,CAAE,SAAQ,mBAAmB;IAEjF;;OAEG;IACH,sBAAsB,CAAC,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;IAEpD;;OAEG;IACH,aAAa,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,MAAM,CAAC;CAC7C;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB,CAAC,MAAM,GAAG,GAAG,CAAE,SAAQ,YAAY,CAAC,MAAM,CAAC;CAE9E"}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
2
|
-
import { ValueHandlerOptions } from './valueHandler.interface';
|
|
3
|
-
/**
|
|
4
|
-
* Constant used for accessing value handler plugin in NgSelect
|
|
5
|
-
*/
|
|
6
|
-
export declare const VALUE_HANDLER = "VALUE_HANDLER";
|
|
7
|
-
/**
|
|
8
|
-
* Token for injecting options for value handler plugin
|
|
9
|
-
*/
|
|
10
|
-
export declare const VALUE_HANDLER_OPTIONS: InjectionToken<ValueHandlerOptions>;
|
|
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,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AAE7D;;GAEG;AACH,eAAO,MAAM,aAAa,kBAAkB,CAAC;AAE7C;;GAEG;AACH,eAAO,MAAM,qBAAqB,EAAE,cAAc,CAAC,mBAAmB,CAAoE,CAAC"}
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import { PluginOptions, NgSelectPlugin } from '../../misc';
|
|
3
|
-
import { NgSelectOption } from '../../components/option';
|
|
4
|
-
/**
|
|
5
|
-
* Options for value handler plugin
|
|
6
|
-
*/
|
|
7
|
-
export interface ValueHandlerOptions extends PluginOptions {
|
|
8
|
-
}
|
|
9
|
-
/**
|
|
10
|
-
* Value handler plugin interface
|
|
11
|
-
*/
|
|
12
|
-
export interface ValueHandler<TValue = any> extends NgSelectPlugin {
|
|
13
|
-
/**
|
|
14
|
-
* Current selected options of NgSelect
|
|
15
|
-
*/
|
|
16
|
-
readonly selectedOptions: NgSelectOption<TValue> | NgSelectOption<TValue>[];
|
|
17
|
-
/**
|
|
18
|
-
* Current selected value of NgSelect
|
|
19
|
-
*/
|
|
20
|
-
readonly value: TValue | TValue[];
|
|
21
|
-
/**
|
|
22
|
-
* Occurs when value of NgSelect changes
|
|
23
|
-
*/
|
|
24
|
-
readonly valueChange: EventEmitter<void>;
|
|
25
|
-
/**
|
|
26
|
-
* Sets value for NgSelect
|
|
27
|
-
* @param value - Value to be set
|
|
28
|
-
*/
|
|
29
|
-
setValue(value: TValue | TValue[]): void;
|
|
30
|
-
}
|
|
31
|
-
//# sourceMappingURL=valueHandler.interface.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"valueHandler.interface.d.ts","sourceRoot":"","sources":["valueHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAE3C,OAAO,EAAC,aAAa,EAAE,cAAc,EAAC,MAAM,YAAY,CAAC;AACzD,OAAO,EAAC,cAAc,EAAC,MAAM,yBAAyB,CAAC;AAEvD;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,aAAa;CAEzD;AAED;;GAEG;AACH,MAAM,WAAW,YAAY,CAAC,MAAM,GAAG,GAAG,CAAE,SAAQ,cAAc;IAE9D;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,cAAc,CAAC,MAAM,CAAC,GAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC;IAE1E;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAC,MAAM,EAAE,CAAC;IAEhC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,YAAY,CAAC,IAAI,CAAC,CAAC;IAEzC;;;OAGG;IACH,QAAQ,CAAC,KAAK,EAAC,MAAM,GAAC,MAAM,EAAE,GAAG,IAAI,CAAC;CACzC"}
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter, OnDestroy } from '@angular/core';
|
|
2
|
-
import { Subscription } from 'rxjs';
|
|
3
|
-
import { NgSelectPlugin, OptionsGatherer, CompareValueFunc, LiveSearchFilter, NormalizeFunc } from '../../misc';
|
|
4
|
-
import { NgSelectPluginInstances } from '../../components/select';
|
|
5
|
-
import { ɵNgSelectOption, NgSelectOption } from '../../components/option';
|
|
6
|
-
import { NormalState } from '../normalState';
|
|
7
|
-
import { ValueHandler, ValueHandlerOptions } from './valueHandler.interface';
|
|
8
|
-
import { PluginBus } from '../../misc/pluginBus/pluginBus';
|
|
9
|
-
import * as i0 from "@angular/core";
|
|
10
|
-
/**
|
|
11
|
-
* Base class for value handlers
|
|
12
|
-
*/
|
|
13
|
-
export declare abstract class ValueHandlerBase<TValue = any, TOptions extends ValueHandlerOptions = any> implements ValueHandler<TValue>, NgSelectPlugin<TOptions, TValue>, OnDestroy {
|
|
14
|
-
ngSelectPlugins: NgSelectPluginInstances;
|
|
15
|
-
pluginElement: ElementRef;
|
|
16
|
-
pluginBus: PluginBus<TValue>;
|
|
17
|
-
/**
|
|
18
|
-
* Options for NgSelect plugin
|
|
19
|
-
*/
|
|
20
|
-
protected _options: TOptions;
|
|
21
|
-
/**
|
|
22
|
-
* Normal state that is used
|
|
23
|
-
*/
|
|
24
|
-
protected _normalState: NormalState;
|
|
25
|
-
/**
|
|
26
|
-
* Subscription for option selection
|
|
27
|
-
*/
|
|
28
|
-
protected _optionSelectSubscription: Subscription;
|
|
29
|
-
/**
|
|
30
|
-
* Subscription for option cancelation
|
|
31
|
-
*/
|
|
32
|
-
protected _optionCancelSubscription: Subscription;
|
|
33
|
-
/**
|
|
34
|
-
* Subscription for changes of options in options gatherer
|
|
35
|
-
*/
|
|
36
|
-
protected _optionsChangeSubscription: Subscription;
|
|
37
|
-
/**
|
|
38
|
-
* Instance of previous options gatherer, that is used for obtaining available options
|
|
39
|
-
*/
|
|
40
|
-
protected _optionsGatherer: OptionsGatherer<TValue>;
|
|
41
|
-
/**
|
|
42
|
-
* Options for NgSelect plugin
|
|
43
|
-
*/
|
|
44
|
-
abstract options: TOptions;
|
|
45
|
-
/**
|
|
46
|
-
* Occurs when value of NgSelect changes
|
|
47
|
-
*/
|
|
48
|
-
valueChange: EventEmitter<void>;
|
|
49
|
-
/**
|
|
50
|
-
* Current value of NgSelect
|
|
51
|
-
*/
|
|
52
|
-
selectedOptions: NgSelectOption<TValue> | NgSelectOption<TValue>[];
|
|
53
|
-
/**
|
|
54
|
-
* Current selected value of NgSelect
|
|
55
|
-
*/
|
|
56
|
-
get value(): TValue | TValue[];
|
|
57
|
-
/**
|
|
58
|
-
* Function of value comparer that is used for comparison of values
|
|
59
|
-
*/
|
|
60
|
-
protected get valueComparer(): CompareValueFunc<TValue>;
|
|
61
|
-
/**
|
|
62
|
-
* Method that is used for filtering when live search is running on static data
|
|
63
|
-
*/
|
|
64
|
-
protected get liveSearchFilter(): LiveSearchFilter<TValue>;
|
|
65
|
-
/**
|
|
66
|
-
* Normalizer used for normalizing values
|
|
67
|
-
*/
|
|
68
|
-
protected get normalizer(): NormalizeFunc<TValue>;
|
|
69
|
-
constructor(ngSelectPlugins: NgSelectPluginInstances, pluginElement: ElementRef, pluginBus: PluginBus<TValue>);
|
|
70
|
-
/**
|
|
71
|
-
* Called when component is destroyed
|
|
72
|
-
*/
|
|
73
|
-
ngOnDestroy(): void;
|
|
74
|
-
/**
|
|
75
|
-
* Sets value for NgSelect
|
|
76
|
-
* @param value - Value to be set
|
|
77
|
-
*/
|
|
78
|
-
abstract setValue(value: TValue | TValue[]): void;
|
|
79
|
-
/**
|
|
80
|
-
* Initialize plugin, to be ready to use, initialize communication with other plugins
|
|
81
|
-
*/
|
|
82
|
-
initialize(): void;
|
|
83
|
-
/**
|
|
84
|
-
* Initialize plugin options, all operations required to be done with plugin options are handled here
|
|
85
|
-
*/
|
|
86
|
-
initOptions(): void;
|
|
87
|
-
/**
|
|
88
|
-
* Explicitly runs invalidation of content (change detection)
|
|
89
|
-
*/
|
|
90
|
-
invalidateVisuals(): void;
|
|
91
|
-
/**
|
|
92
|
-
* Sets value
|
|
93
|
-
*/
|
|
94
|
-
protected abstract _setValue: (option: ɵNgSelectOption<TValue>) => void;
|
|
95
|
-
/**
|
|
96
|
-
* Cancels, removes option from selected options
|
|
97
|
-
* @param option - Option to be canceled
|
|
98
|
-
*/
|
|
99
|
-
protected _cancelValue: (option: ɵNgSelectOption<TValue>) => void;
|
|
100
|
-
/**
|
|
101
|
-
* Clears all selected values
|
|
102
|
-
*/
|
|
103
|
-
protected _clearSelected(): void;
|
|
104
|
-
/**
|
|
105
|
-
* Marks current value as selected
|
|
106
|
-
*/
|
|
107
|
-
protected _markValueAsSelected(): void;
|
|
108
|
-
/**
|
|
109
|
-
* Loads options
|
|
110
|
-
*/
|
|
111
|
-
protected abstract _loadOptions(): void;
|
|
112
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ValueHandlerBase<any, any>, never>;
|
|
113
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<ValueHandlerBase<any, any>, never, never, {}, {}, never, never, true, never>;
|
|
114
|
-
}
|
|
115
|
-
//# sourceMappingURL=valueHandlerBase.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"valueHandlerBase.d.ts","sourceRoot":"","sources":["valueHandlerBase.ts"],"names":[],"mappings":"AAAA,OAAO,EAAY,UAAU,EAAE,YAAY,EAAE,SAAS,EAAC,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAC,YAAY,EAAC,MAAM,MAAM,CAAC;AAElC,OAAO,EAAC,cAAc,EAAE,eAAe,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,aAAa,EAAC,MAAM,YAAY,CAAC;AAC9G,OAAO,EAAC,uBAAuB,EAAC,MAAM,yBAAyB,CAAC;AAChE,OAAO,EAAC,eAAe,EAAE,cAAc,EAAC,MAAM,yBAAyB,CAAC;AACxE,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAE3C,OAAO,EAAC,YAAY,EAAE,mBAAmB,EAAC,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAC,SAAS,EAAC,MAAM,gCAAgC,CAAC;;AAEzD;;GAEG;AACH,8BACsB,gBAAgB,CAAC,MAAM,GAAG,GAAG,EAAE,QAAQ,SAAS,mBAAmB,GAAG,GAAG,CAAE,YAAW,YAAY,CAAC,MAAM,CAAC,EAAE,cAAc,CAAC,QAAQ,EAAE,MAAM,CAAC,EAAE,SAAS;IAkGtJ,eAAe,EAAE,uBAAuB;IACxC,aAAa,EAAE,UAAU;IACzB,SAAS,EAAE,SAAS,CAAC,MAAM,CAAC;IAhG/C;;OAEG;IACH,SAAS,CAAC,QAAQ,EAAE,QAAQ,CAAC;IAE7B;;OAEG;IACH,SAAS,CAAC,YAAY,EAAE,WAAW,CAAC;IAEpC;;OAEG;IACH,SAAS,CAAC,yBAAyB,EAAE,YAAY,CAAC;IAElD;;OAEG;IACH,SAAS,CAAC,yBAAyB,EAAE,YAAY,CAAC;IAElD;;OAEG;IACH,SAAS,CAAC,0BAA0B,EAAE,YAAY,CAAC;IAEnD;;OAEG;IACH,SAAS,CAAC,gBAAgB,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;IAIpD;;OAEG;IACH,SAAgB,OAAO,EAAE,QAAQ,CAAC;IAElC;;OAEG;IACI,WAAW,EAAE,YAAY,CAAC,IAAI,CAAC,CAA4B;IAElE;;OAEG;IACI,eAAe,EAAE,cAAc,CAAC,MAAM,CAAC,GAAC,cAAc,CAAC,MAAM,CAAC,EAAE,CAAC;IAExE;;OAEG;IACH,IAAW,KAAK,IAAI,MAAM,GAAC,MAAM,EAAE,CAelC;IAID;;OAEG;IACH,SAAS,KAAK,aAAa,IAAI,gBAAgB,CAAC,MAAM,CAAC,CAGtD;IAED;;OAEG;IACH,SAAS,KAAK,gBAAgB,IAAI,gBAAgB,CAAC,MAAM,CAAC,CAGzD;IAED;;OAEG;IACH,SAAS,KAAK,UAAU,IAAI,aAAa,CAAC,MAAM,CAAC,CAGhD;gBAGkB,eAAe,EAAE,uBAAuB,EACxC,aAAa,EAAE,UAAU,EACzB,SAAS,EAAE,SAAS,CAAC,MAAM,CAAC;IAM/C;;OAEG;IACI,WAAW;IAclB;;;OAGG;aACa,QAAQ,CAAC,KAAK,EAAC,MAAM,GAAC,MAAM,EAAE,GAAG,IAAI;IAErD;;OAEG;IACI,UAAU;IAiCjB;;OAEG;IACI,WAAW;IAIlB;;OAEG;IACI,iBAAiB,IAAI,IAAI;IAMhC;;OAEG;IACH,SAAS,CAAC,QAAQ,CAAC,SAAS,EAAE,CAAC,MAAM,EAAE,eAAe,CAAC,MAAM,CAAC,KAAK,IAAI,CAAC;IAExE;;;OAGG;IACH,SAAS,CAAC,YAAY,GAAI,QAAQ,eAAe,CAAC,MAAM,CAAC,KAAG,IAAI,CAyB/D;IAED;;OAEG;IACH,SAAS,CAAC,cAAc;IAKxB;;OAEG;IACH,SAAS,CAAC,oBAAoB;IAe9B;;OAEG;IACH,SAAS,CAAC,QAAQ,CAAC,YAAY,IAAI,IAAI;yCAtPrB,gBAAgB;2CAAhB,gBAAgB;CAuPrC"}
|
/package/es2022/src/{plugins → interfaces/plugins}/keyboardHandler/keyboardHandler.interface.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|