@anglr/select 15.0.0 → 16.0.0-beta.20260226142137
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/changelog.md +153 -0
- package/es2022/extensions/src/extensions/getValue.js +16 -1
- package/es2022/extensions/src/extensions/getValue.js.map +1 -1
- package/es2022/extensions/src/extensions/onFocus.js +14 -1
- package/es2022/extensions/src/extensions/onFocus.js.map +1 -1
- package/es2022/extensions/src/extensions/patchOptions.js +15 -11
- package/es2022/extensions/src/extensions/patchOptions.js.map +1 -1
- package/es2022/extensions/src/extensions/reinitializeOptions.js +19 -14
- package/es2022/extensions/src/extensions/reinitializeOptions.js.map +1 -1
- package/es2022/extensions/src/extensions/setReadonly.js +21 -1
- package/es2022/extensions/src/extensions/setReadonly.js.map +1 -1
- package/es2022/extensions/src/extensions/setValue.js +17 -1
- package/es2022/extensions/src/extensions/setValue.js.map +1 -1
- package/es2022/extensions/src/extensions/valueChange.js +17 -1
- package/es2022/extensions/src/extensions/valueChange.js.map +1 -1
- package/es2022/extensions/src/index.js +1 -7
- package/es2022/extensions/src/index.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.component.js +100 -72
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.component.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.interface.js +26 -1
- package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.interface.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/index.js +2 -1
- package/es2022/material/src/components/basicDialogPopup/index.js.map +1 -1
- package/es2022/material/src/components/basicDialogPopup/types.js +2 -1
- package/es2022/material/src/components/basicDialogPopup/types.js.map +1 -1
- package/es2022/material/src/directives/dialogPopup/dialogPopup.directive.js +73 -74
- package/es2022/material/src/directives/dialogPopup/dialogPopup.directive.js.map +1 -1
- package/es2022/material/src/index.js +1 -7
- package/es2022/material/src/index.js.map +1 -1
- package/es2022/material/src/modules/dialogPopup.module.js +33 -40
- package/es2022/material/src/modules/dialogPopup.module.js.map +1 -1
- package/es2022/material/src/modules/virtualEditPopup.module.js +27 -30
- package/es2022/material/src/modules/virtualEditPopup.module.js.map +1 -1
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.component.js +172 -140
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.component.js.map +1 -1
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.interface.js +65 -1
- package/es2022/material/src/plugins/popup/dialog/dialogPopup.interface.js.map +1 -1
- package/es2022/material/src/plugins/popup/index.js +1 -2
- package/es2022/material/src/plugins/popup/index.js.map +1 -1
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.js +120 -88
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.js.map +1 -1
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.js +20 -1
- package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.js.map +1 -1
- package/es2022/src/components/index.js +4 -0
- package/es2022/src/components/index.js.map +1 -0
- package/es2022/src/components/option/option.component.js +22 -19
- package/es2022/src/components/option/option.component.js.map +1 -1
- package/es2022/src/components/optionGroup/optgroup.component.js +29 -0
- package/es2022/src/components/optionGroup/optgroup.component.js.map +1 -0
- package/es2022/src/components/select/select.component.js +356 -450
- package/es2022/src/components/select/select.component.js.map +1 -1
- package/es2022/src/decorators/index.js +2 -0
- package/es2022/src/decorators/index.js.map +1 -0
- package/es2022/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.js +12 -0
- package/es2022/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.js.map +1 -0
- package/es2022/src/directives/index.js +5 -0
- package/es2022/src/directives/index.js.map +1 -0
- package/es2022/src/directives/normalStateTemplate/normalStateTemplate.directive.js +30 -0
- package/es2022/src/directives/normalStateTemplate/normalStateTemplate.directive.js.map +1 -0
- package/es2022/src/directives/optionTemplate/optionTemplate.directive.js +30 -0
- package/es2022/src/directives/optionTemplate/optionTemplate.directive.js.map +1 -0
- package/es2022/src/directives/selectAbsolute/selectAbsolute.directive.js +25 -0
- package/es2022/src/directives/selectAbsolute/selectAbsolute.directive.js.map +1 -0
- package/es2022/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.js +210 -0
- package/es2022/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.js.map +1 -0
- package/es2022/src/directives/selectEdit/selectEdit.directive.js +51 -0
- package/es2022/src/directives/selectEdit/selectEdit.directive.js.map +1 -0
- package/es2022/src/directives/selectPlaceholder/selectPlaceholder.directive.js +48 -0
- package/es2022/src/directives/selectPlaceholder/selectPlaceholder.directive.js.map +1 -0
- package/es2022/src/directives/withDirectAccess/withDirectAccess.directive.js +17 -0
- package/es2022/src/directives/withDirectAccess/withDirectAccess.directive.js.map +1 -0
- package/es2022/src/index.js +8 -41
- package/es2022/src/index.js.map +1 -1
- package/es2022/src/interfaces/index.js +20 -0
- package/es2022/src/interfaces/index.js.map +1 -0
- package/es2022/src/interfaces/initState/initState.interface.js +2 -0
- package/es2022/src/interfaces/initState/initState.interface.js.map +1 -0
- package/es2022/src/interfaces/normalStateContext/normalStateContext.interface.js +2 -0
- package/es2022/src/interfaces/normalStateContext/normalStateContext.interface.js.map +1 -0
- package/es2022/src/interfaces/optionsGatherer/optionsGatherer.interface.js +2 -0
- package/es2022/src/interfaces/optionsGatherer/optionsGatherer.interface.js.map +1 -0
- package/es2022/src/interfaces/pluginDescription/pluginDescription.interface.js +2 -0
- package/es2022/src/interfaces/pluginDescription/pluginDescription.interface.js.map +1 -0
- package/es2022/src/interfaces/pluginOptions/pluginOptions.interface.js +2 -0
- package/es2022/src/interfaces/pluginOptions/pluginOptions.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/index.js +10 -0
- package/es2022/src/interfaces/plugins/index.js.map +1 -0
- package/es2022/src/interfaces/plugins/interactions/interactions.interface.js +2 -0
- package/es2022/src/interfaces/plugins/interactions/interactions.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/liveSearch/liveSearch.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/normalState/normalState.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/optionsHandler/optionsHandler.interface.js +2 -0
- package/es2022/src/interfaces/plugins/optionsHandler/optionsHandler.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/popup/popup.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/positioner/positioner.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/readonlyState/readonlyState.interface.js.map +1 -0
- package/es2022/src/interfaces/plugins/valueHandler/valueHandler.interface.js.map +1 -0
- package/es2022/src/interfaces/popupContext/popupContext.interface.js +2 -0
- package/es2022/src/interfaces/popupContext/popupContext.interface.js.map +1 -0
- package/es2022/src/interfaces/selectApi/selectApi.interface.js +2 -0
- package/es2022/src/interfaces/selectApi/selectApi.interface.js.map +1 -0
- package/es2022/src/interfaces/selectBusOptions/selectBusOptions.interface.js +2 -0
- package/es2022/src/interfaces/selectBusOptions/selectBusOptions.interface.js.map +1 -0
- package/es2022/src/interfaces/selectCssClasses/selectCssClasses.interface.js +2 -0
- package/es2022/src/interfaces/selectCssClasses/selectCssClasses.interface.js.map +1 -0
- package/es2022/src/interfaces/selectEvent/selectEvent.interface.js +2 -0
- package/es2022/src/interfaces/selectEvent/selectEvent.interface.js.map +1 -0
- package/es2022/src/interfaces/selectEvents/selectEvents.interface.js +2 -0
- package/es2022/src/interfaces/selectEvents/selectEvents.interface.js.map +1 -0
- package/es2022/src/interfaces/selectOption/selectOption.interface.js +2 -0
- package/es2022/src/interfaces/selectOption/selectOption.interface.js.map +1 -0
- package/es2022/src/interfaces/selectOptionGroup/selectOptionGroup.interface.js +2 -0
- package/es2022/src/interfaces/selectOptionGroup/selectOptionGroup.interface.js.map +1 -0
- package/es2022/src/interfaces/selectOptions/selectOptions.interface.js +2 -0
- package/es2022/src/interfaces/selectOptions/selectOptions.interface.js.map +1 -0
- package/es2022/src/interfaces/selectPlugin/selectPlugin.interface.js +2 -0
- package/es2022/src/interfaces/selectPlugin/selectPlugin.interface.js.map +1 -0
- package/es2022/src/interfaces/selectPluginTypes/selectPluginTypes.interface.js +2 -0
- package/es2022/src/interfaces/selectPluginTypes/selectPluginTypes.interface.js.map +1 -0
- package/es2022/src/interfaces/templateGatherer/templateGatherer.interface.js.map +1 -0
- package/es2022/src/interfaces/visualPluginOptions/visualPluginOptions.interface.js +2 -0
- package/es2022/src/interfaces/visualPluginOptions/visualPluginOptions.interface.js.map +1 -0
- package/es2022/src/misc/classes/index.js +3 -0
- package/es2022/src/misc/classes/index.js.map +1 -0
- package/es2022/src/misc/{pluginBus/pluginBus.js → classes/selectBus/selectBus.js} +17 -8
- package/es2022/src/misc/classes/selectBus/selectBus.js.map +1 -0
- package/es2022/src/misc/classes/selectPluginInstances/selectPluginInstances.js +163 -0
- package/es2022/src/misc/classes/selectPluginInstances/selectPluginInstances.js.map +1 -0
- package/es2022/src/misc/enums.js +43 -0
- package/es2022/src/misc/enums.js.map +1 -0
- package/es2022/src/misc/extensions/getValue.js +16 -11
- package/es2022/src/misc/extensions/getValue.js.map +1 -1
- package/es2022/src/misc/extensions/index.js +6 -5
- package/es2022/src/misc/extensions/index.js.map +1 -1
- package/es2022/src/misc/extensions/onFocus.js +14 -9
- package/es2022/src/misc/extensions/onFocus.js.map +1 -1
- package/es2022/src/misc/extensions/setReadonly.js +22 -17
- package/es2022/src/misc/extensions/setReadonly.js.map +1 -1
- package/es2022/src/misc/extensions/setValue.js +17 -12
- package/es2022/src/misc/extensions/setValue.js.map +1 -1
- package/es2022/src/misc/extensions/valueChange.js +17 -11
- package/es2022/src/misc/extensions/valueChange.js.map +1 -1
- package/es2022/src/misc/ngSelectOptions.interface.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/codeOptionsGatherer.js +119 -82
- package/es2022/src/misc/optionsGatherer/codeOptionsGatherer.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.js +31 -1
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.js +178 -117
- package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/excludingOptionsGatherer.js +155 -109
- package/es2022/src/misc/optionsGatherer/excludingOptionsGatherer.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/optionsGatherer.interface.js +55 -1
- package/es2022/src/misc/optionsGatherer/optionsGatherer.interface.js.map +1 -1
- package/es2022/src/misc/optionsGatherer/types.js +4 -3
- package/es2022/src/misc/optionsGatherer/types.js.map +1 -1
- package/es2022/src/misc/providers.js +102 -0
- package/es2022/src/misc/providers.js.map +1 -0
- package/es2022/src/misc/tokens.js +78 -0
- package/es2022/src/misc/tokens.js.map +1 -0
- package/es2022/src/misc/types.js +1 -33
- package/es2022/src/misc/types.js.map +1 -1
- package/es2022/src/modules/index.js +2 -0
- package/es2022/src/modules/index.js.map +1 -0
- package/es2022/src/modules/ngSelect.module.js +31 -75
- package/es2022/src/modules/ngSelect.module.js.map +1 -1
- package/es2022/src/modules/ngSelectEdit.module.js +39 -50
- package/es2022/src/modules/ngSelectEdit.module.js.map +1 -1
- package/es2022/src/pipes/getPlugin/getPlugin.pipe.js +17 -0
- package/es2022/src/pipes/getPlugin/getPlugin.pipe.js.map +1 -0
- package/es2022/src/pipes/index.js +4 -0
- package/es2022/src/pipes/index.js.map +1 -0
- package/es2022/src/pipes/{ngSelectHasValue.pipe.js → selectHasValue/selectHasValue.pipe.js} +7 -7
- package/es2022/src/pipes/selectHasValue/selectHasValue.pipe.js.map +1 -0
- package/es2022/src/pipes/selectValue/selectValue.pipe.js +31 -0
- package/es2022/src/pipes/selectValue/selectValue.pipe.js.map +1 -0
- package/es2022/src/plugins/index.js +10 -0
- package/es2022/src/plugins/index.js.map +1 -0
- package/es2022/src/plugins/interactions/index.js +2 -0
- package/es2022/src/plugins/interactions/index.js.map +1 -0
- package/es2022/src/plugins/interactions/noInteractions/noInteractions.component.js +36 -0
- package/es2022/src/plugins/interactions/noInteractions/noInteractions.component.js.map +1 -0
- package/es2022/src/plugins/keyboardHandler/index.js +1 -3
- package/es2022/src/plugins/keyboardHandler/index.js.map +1 -1
- package/es2022/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.js +36 -0
- package/es2022/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.js.map +1 -0
- package/es2022/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.js +36 -0
- package/es2022/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.js.map +1 -0
- package/es2022/src/plugins/liveSearch/index.js +2 -4
- package/es2022/src/plugins/liveSearch/index.js.map +1 -1
- package/es2022/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.js +36 -0
- package/es2022/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.js.map +1 -0
- package/es2022/src/plugins/normalState/index.js +1 -3
- package/es2022/src/plugins/normalState/index.js.map +1 -1
- package/es2022/src/plugins/normalState/simpleNormalState/simpleNormalState.component.js +36 -0
- package/es2022/src/plugins/normalState/simpleNormalState/simpleNormalState.component.js.map +1 -0
- package/es2022/src/plugins/optionsHandler/index.js +2 -0
- package/es2022/src/plugins/optionsHandler/index.js.map +1 -0
- package/es2022/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.js +50 -0
- package/es2022/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.js.map +1 -0
- package/es2022/src/plugins/popup/index.js +1 -3
- package/es2022/src/plugins/popup/index.js.map +1 -1
- package/es2022/src/plugins/popup/simplePopup/simplePopup.component.js +36 -0
- package/es2022/src/plugins/popup/simplePopup/simplePopup.component.js.map +1 -0
- package/es2022/src/plugins/positioner/basicPositioner/basicPositioner.component.js +36 -0
- package/es2022/src/plugins/positioner/basicPositioner/basicPositioner.component.js.map +1 -0
- package/es2022/src/plugins/positioner/index.js +1 -3
- package/es2022/src/plugins/positioner/index.js.map +1 -1
- package/es2022/src/plugins/readonlyState/index.js +1 -1
- package/es2022/src/plugins/readonlyState/index.js.map +1 -1
- package/es2022/src/plugins/valueHandler/index.js +1 -4
- package/es2022/src/plugins/valueHandler/index.js.map +1 -1
- package/es2022/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.js +81 -0
- package/es2022/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.js.map +1 -0
- package/extensions/src/extensions/getValue.d.ts +0 -1
- package/extensions/src/extensions/getValue.d.ts.map +1 -1
- package/extensions/src/extensions/onFocus.d.ts +0 -1
- package/extensions/src/extensions/onFocus.d.ts.map +1 -1
- package/extensions/src/extensions/patchOptions.d.ts +0 -6
- package/extensions/src/extensions/patchOptions.d.ts.map +1 -1
- package/extensions/src/extensions/reinitializeOptions.d.ts +0 -6
- package/extensions/src/extensions/reinitializeOptions.d.ts.map +1 -1
- package/extensions/src/extensions/setReadonly.d.ts +0 -1
- package/extensions/src/extensions/setReadonly.d.ts.map +1 -1
- package/extensions/src/extensions/setValue.d.ts +0 -1
- package/extensions/src/extensions/setValue.d.ts.map +1 -1
- package/extensions/src/extensions/valueChange.d.ts +0 -1
- package/extensions/src/extensions/valueChange.d.ts.map +1 -1
- package/extensions/src/index.d.ts +1 -7
- package/extensions/src/index.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/basicDialogPopup.component.d.ts +0 -46
- package/material/src/components/basicDialogPopup/basicDialogPopup.component.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/basicDialogPopup.interface.d.ts +0 -23
- package/material/src/components/basicDialogPopup/basicDialogPopup.interface.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/index.d.ts +0 -1
- package/material/src/components/basicDialogPopup/index.d.ts.map +1 -1
- package/material/src/components/basicDialogPopup/types.d.ts +0 -1
- package/material/src/components/basicDialogPopup/types.d.ts.map +1 -1
- package/material/src/directives/dialogPopup/dialogPopup.directive.d.ts +0 -26
- package/material/src/directives/dialogPopup/dialogPopup.directive.d.ts.map +1 -1
- package/material/src/index.d.ts +1 -7
- package/material/src/index.d.ts.map +1 -1
- package/material/src/modules/dialogPopup.module.d.ts +0 -14
- package/material/src/modules/dialogPopup.module.d.ts.map +1 -1
- package/material/src/modules/virtualEditPopup.module.d.ts +0 -12
- package/material/src/modules/virtualEditPopup.module.d.ts.map +1 -1
- package/material/src/plugins/popup/dialog/dialogPopup.component.d.ts +0 -82
- package/material/src/plugins/popup/dialog/dialogPopup.component.d.ts.map +1 -1
- package/material/src/plugins/popup/dialog/dialogPopup.interface.d.ts +0 -59
- package/material/src/plugins/popup/dialog/dialogPopup.interface.d.ts.map +1 -1
- package/material/src/plugins/popup/index.d.ts +1 -2
- package/material/src/plugins/popup/index.d.ts.map +1 -1
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.d.ts +0 -29
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.d.ts.map +1 -1
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.d.ts +0 -16
- package/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.d.ts.map +1 -1
- package/package.json +27 -19
- package/src/components/index.d.ts +4 -0
- package/src/components/index.d.ts.map +1 -0
- package/src/components/option/option.component.d.ts +15 -14
- package/src/components/option/option.component.d.ts.map +1 -1
- package/src/components/optionGroup/optgroup.component.d.ts +25 -0
- package/src/components/optionGroup/optgroup.component.d.ts.map +1 -0
- package/src/components/select/select.component.css +5 -0
- package/src/components/select/select.component.d.ts +94 -179
- package/src/components/select/select.component.d.ts.map +1 -1
- package/src/components/select/select.component.html +10 -16
- package/src/decorators/index.d.ts +2 -0
- package/src/{components/select → decorators}/index.d.ts.map +1 -1
- package/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.d.ts +5 -0
- package/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.d.ts.map +1 -0
- package/src/directives/index.d.ts +5 -0
- package/src/directives/index.d.ts.map +1 -0
- package/src/directives/normalStateTemplate/normalStateTemplate.directive.d.ts +19 -0
- package/src/directives/normalStateTemplate/normalStateTemplate.directive.d.ts.map +1 -0
- package/src/directives/optionTemplate/optionTemplate.directive.d.ts +19 -0
- package/src/directives/optionTemplate/optionTemplate.directive.d.ts.map +1 -0
- package/src/directives/selectAbsolute/selectAbsolute.directive.d.ts +12 -0
- package/src/directives/selectAbsolute/selectAbsolute.directive.d.ts.map +1 -0
- package/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.d.ts +1 -0
- package/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.d.ts.map +1 -0
- package/src/directives/selectEdit/selectEdit.directive.d.ts +1 -0
- package/src/directives/selectEdit/selectEdit.directive.d.ts.map +1 -0
- package/src/directives/selectPlaceholder/selectPlaceholder.directive.d.ts +1 -0
- package/src/directives/selectPlaceholder/selectPlaceholder.directive.d.ts.map +1 -0
- package/src/directives/withDirectAccess/withDirectAccess.directive.d.ts +9 -0
- package/src/directives/withDirectAccess/withDirectAccess.directive.d.ts.map +1 -0
- package/src/index.d.ts +8 -41
- package/src/index.d.ts.map +1 -1
- package/src/interfaces/index.d.ts +20 -0
- package/src/interfaces/index.d.ts.map +1 -0
- package/src/interfaces/initState/initState.interface.d.ts +10 -0
- package/src/interfaces/initState/initState.interface.d.ts.map +1 -0
- package/src/interfaces/normalStateContext/normalStateContext.interface.d.ts +11 -0
- package/src/interfaces/normalStateContext/normalStateContext.interface.d.ts.map +1 -0
- package/src/interfaces/optionsGatherer/optionsGatherer.interface.d.ts +12 -0
- package/src/interfaces/optionsGatherer/optionsGatherer.interface.d.ts.map +1 -0
- package/src/interfaces/pluginDescription/pluginDescription.interface.d.ts +21 -0
- package/src/interfaces/pluginDescription/pluginDescription.interface.d.ts.map +1 -0
- package/src/interfaces/pluginOptions/pluginOptions.interface.d.ts +6 -0
- package/src/interfaces/pluginOptions/pluginOptions.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/index.d.ts +10 -0
- package/src/interfaces/plugins/index.d.ts.map +1 -0
- package/src/interfaces/plugins/interactions/interactions.interface.d.ts +13 -0
- package/src/interfaces/plugins/interactions/interactions.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.d.ts +13 -0
- package/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/liveSearch/liveSearch.interface.d.ts +13 -0
- package/src/interfaces/plugins/liveSearch/liveSearch.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/normalState/normalState.interface.d.ts +31 -0
- package/src/interfaces/plugins/normalState/normalState.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/optionsHandler/optionsHandler.interface.d.ts +19 -0
- package/src/interfaces/plugins/optionsHandler/optionsHandler.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/popup/popup.interface.d.ts +13 -0
- package/src/interfaces/plugins/popup/popup.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/positioner/positioner.interface.d.ts +13 -0
- package/src/interfaces/plugins/positioner/positioner.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/readonlyState/readonlyState.interface.d.ts +12 -0
- package/src/interfaces/plugins/readonlyState/readonlyState.interface.d.ts.map +1 -0
- package/src/interfaces/plugins/valueHandler/valueHandler.interface.d.ts +23 -0
- package/src/interfaces/plugins/valueHandler/valueHandler.interface.d.ts.map +1 -0
- package/src/interfaces/popupContext/popupContext.interface.d.ts +16 -0
- package/src/interfaces/popupContext/popupContext.interface.d.ts.map +1 -0
- package/src/interfaces/selectApi/selectApi.interface.d.ts +50 -0
- package/src/interfaces/selectApi/selectApi.interface.d.ts.map +1 -0
- package/src/interfaces/selectBusOptions/selectBusOptions.interface.d.ts +29 -0
- package/src/interfaces/selectBusOptions/selectBusOptions.interface.d.ts.map +1 -0
- package/src/interfaces/selectCssClasses/selectCssClasses.interface.d.ts +6 -0
- package/src/interfaces/selectCssClasses/selectCssClasses.interface.d.ts.map +1 -0
- package/src/interfaces/selectEvent/selectEvent.interface.d.ts +20 -0
- package/src/interfaces/selectEvent/selectEvent.interface.d.ts.map +1 -0
- package/src/interfaces/selectEvents/selectEvents.interface.d.ts +37 -0
- package/src/interfaces/selectEvents/selectEvents.interface.d.ts.map +1 -0
- package/src/interfaces/selectOption/selectOption.interface.d.ts +33 -0
- package/src/interfaces/selectOption/selectOption.interface.d.ts.map +1 -0
- package/src/interfaces/selectOptionGroup/selectOptionGroup.interface.d.ts +21 -0
- package/src/interfaces/selectOptionGroup/selectOptionGroup.interface.d.ts.map +1 -0
- package/src/interfaces/selectOptions/selectOptions.interface.d.ts +27 -0
- package/src/interfaces/selectOptions/selectOptions.interface.d.ts.map +1 -0
- package/src/interfaces/selectPlugin/selectPlugin.interface.d.ts +33 -0
- package/src/interfaces/selectPlugin/selectPlugin.interface.d.ts.map +1 -0
- package/src/interfaces/selectPluginTypes/selectPluginTypes.interface.d.ts +44 -0
- package/src/interfaces/selectPluginTypes/selectPluginTypes.interface.d.ts.map +1 -0
- package/src/interfaces/templateGatherer/templateGatherer.interface.d.ts +17 -0
- package/src/interfaces/templateGatherer/templateGatherer.interface.d.ts.map +1 -0
- package/src/interfaces/visualPluginOptions/visualPluginOptions.interface.d.ts +11 -0
- package/src/interfaces/visualPluginOptions/visualPluginOptions.interface.d.ts.map +1 -0
- package/src/misc/classes/index.d.ts +3 -0
- package/src/misc/classes/index.d.ts.map +1 -0
- package/src/misc/classes/selectBus/selectBus.d.ts +54 -0
- package/src/misc/classes/selectBus/selectBus.d.ts.map +1 -0
- package/src/misc/classes/selectPluginInstances/selectPluginInstances.d.ts +90 -0
- package/src/misc/classes/selectPluginInstances/selectPluginInstances.d.ts.map +1 -0
- package/src/misc/enums.d.ts +42 -0
- package/src/misc/enums.d.ts.map +1 -0
- package/src/misc/extensions/getValue.d.ts +0 -6
- package/src/misc/extensions/getValue.d.ts.map +1 -1
- package/src/misc/extensions/index.d.ts +0 -5
- package/src/misc/extensions/index.d.ts.map +1 -1
- package/src/misc/extensions/onFocus.d.ts +0 -7
- package/src/misc/extensions/onFocus.d.ts.map +1 -1
- package/src/misc/extensions/setReadonly.d.ts +0 -7
- package/src/misc/extensions/setReadonly.d.ts.map +1 -1
- package/src/misc/extensions/setValue.d.ts +0 -7
- package/src/misc/extensions/setValue.d.ts.map +1 -1
- package/src/misc/extensions/valueChange.d.ts +0 -7
- package/src/misc/extensions/valueChange.d.ts.map +1 -1
- package/src/misc/ngSelectOptions.interface.d.ts +0 -71
- package/src/misc/ngSelectOptions.interface.d.ts.map +1 -1
- package/src/misc/optionsGatherer/codeOptionsGatherer.d.ts +0 -69
- package/src/misc/optionsGatherer/codeOptionsGatherer.d.ts.map +1 -1
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.d.ts +0 -85
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.d.ts.map +1 -1
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.d.ts +0 -28
- package/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.d.ts.map +1 -1
- package/src/misc/optionsGatherer/excludingOptionsGatherer.d.ts +0 -72
- package/src/misc/optionsGatherer/excludingOptionsGatherer.d.ts.map +1 -1
- package/src/misc/optionsGatherer/optionsGatherer.interface.d.ts +0 -52
- package/src/misc/optionsGatherer/optionsGatherer.interface.d.ts.map +1 -1
- package/src/misc/optionsGatherer/types.d.ts +0 -3
- package/src/misc/optionsGatherer/types.d.ts.map +1 -1
- package/src/misc/providers.d.ts +54 -0
- package/src/misc/providers.d.ts.map +1 -0
- package/src/misc/tokens.d.ts +81 -0
- package/src/misc/tokens.d.ts.map +1 -0
- package/src/misc/types.d.ts +11 -31
- package/src/misc/types.d.ts.map +1 -1
- package/src/modules/index.d.ts +2 -0
- package/src/modules/index.d.ts.map +1 -0
- package/src/modules/ngSelect.module.d.ts +7 -20
- package/src/modules/ngSelect.module.d.ts.map +1 -1
- package/src/modules/ngSelectEdit.module.d.ts +0 -16
- package/src/modules/ngSelectEdit.module.d.ts.map +1 -1
- package/src/pipes/getPlugin/getPlugin.pipe.d.ts +25 -0
- package/src/pipes/getPlugin/getPlugin.pipe.d.ts.map +1 -0
- package/src/pipes/index.d.ts +4 -0
- package/src/pipes/index.d.ts.map +1 -0
- package/src/pipes/selectHasValue/selectHasValue.pipe.d.ts +16 -0
- package/src/pipes/selectHasValue/selectHasValue.pipe.d.ts.map +1 -0
- package/src/pipes/selectValue/selectValue.pipe.d.ts +19 -0
- package/src/pipes/selectValue/selectValue.pipe.d.ts.map +1 -0
- package/src/plugins/index.d.ts +9 -0
- package/src/plugins/index.d.ts.map +1 -0
- package/src/plugins/interactions/index.d.ts +2 -0
- package/src/plugins/interactions/index.d.ts.map +1 -0
- package/src/plugins/interactions/noInteractions/noInteractions.component.d.ts +28 -0
- package/src/plugins/interactions/noInteractions/noInteractions.component.d.ts.map +1 -0
- package/src/plugins/keyboardHandler/index.d.ts +1 -3
- package/src/plugins/keyboardHandler/index.d.ts.map +1 -1
- package/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.d.ts +28 -0
- package/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.d.ts.map +1 -0
- package/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.d.ts +28 -0
- package/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.d.ts.map +1 -0
- package/src/plugins/liveSearch/index.d.ts +2 -4
- package/src/plugins/liveSearch/index.d.ts.map +1 -1
- package/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.d.ts +28 -0
- package/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.d.ts.map +1 -0
- package/src/plugins/normalState/index.d.ts +1 -3
- package/src/plugins/normalState/index.d.ts.map +1 -1
- package/src/plugins/normalState/simpleNormalState/simpleNormalState.component.d.ts +28 -0
- package/src/plugins/normalState/simpleNormalState/simpleNormalState.component.d.ts.map +1 -0
- package/src/plugins/optionsHandler/index.d.ts +2 -0
- package/src/plugins/optionsHandler/index.d.ts.map +1 -0
- package/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.d.ts +41 -0
- package/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.d.ts.map +1 -0
- package/src/plugins/popup/index.d.ts +1 -3
- package/src/plugins/popup/index.d.ts.map +1 -1
- package/src/plugins/popup/simplePopup/simplePopup.component.d.ts +28 -0
- package/src/plugins/popup/simplePopup/simplePopup.component.d.ts.map +1 -0
- package/src/plugins/positioner/basicPositioner/basicPositioner.component.d.ts +28 -0
- package/src/plugins/positioner/basicPositioner/basicPositioner.component.d.ts.map +1 -0
- package/src/plugins/positioner/index.d.ts +1 -3
- package/src/plugins/positioner/index.d.ts.map +1 -1
- package/src/plugins/readonlyState/index.d.ts +0 -1
- package/src/plugins/readonlyState/index.d.ts.map +1 -1
- package/src/plugins/valueHandler/index.d.ts +1 -4
- package/src/plugins/valueHandler/index.d.ts.map +1 -1
- package/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.d.ts +46 -0
- package/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.d.ts.map +1 -0
- package/styles/components/_grid.scss +9 -0
- package/styles/core/_functions.scss +10 -0
- package/styles/core/_misc.scss +146 -0
- package/styles/core/_mixins.scss +44 -0
- package/styles/core/_theme.scss +16 -0
- package/styles/index.scss +2 -0
- package/styles/themes/dark.scss +19 -0
- package/styles/themes/light.scss +19 -0
- package/version.bak +1 -1
- package/es2022/material/src/directives/types.js +0 -2
- package/es2022/material/src/directives/types.js.map +0 -1
- package/es2022/material/src/plugins/popup/components.js +0 -3
- package/es2022/material/src/plugins/popup/components.js.map +0 -1
- package/es2022/src/components/option/index.js +0 -3
- package/es2022/src/components/option/index.js.map +0 -1
- package/es2022/src/components/option/optgroup.component.js +0 -54
- package/es2022/src/components/option/optgroup.component.js.map +0 -1
- package/es2022/src/components/option/optgroup.interface.js +0 -2
- package/es2022/src/components/option/optgroup.interface.js.map +0 -1
- package/es2022/src/components/option/option.interface.js +0 -2
- package/es2022/src/components/option/option.interface.js.map +0 -1
- package/es2022/src/components/select/index.js +0 -2
- package/es2022/src/components/select/index.js.map +0 -1
- package/es2022/src/components/select/select.interface.js +0 -2
- package/es2022/src/components/select/select.interface.js.map +0 -1
- package/es2022/src/components/select/types.js +0 -6
- package/es2022/src/components/select/types.js.map +0 -1
- package/es2022/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.js +0 -25
- package/es2022/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.js.map +0 -1
- package/es2022/src/directives/ngSelectEdit/ngSelectEdit.directive.js +0 -66
- package/es2022/src/directives/ngSelectEdit/ngSelectEdit.directive.js.map +0 -1
- package/es2022/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.js +0 -42
- package/es2022/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.js.map +0 -1
- package/es2022/src/index.ssr.js +0 -10
- package/es2022/src/index.ssr.js.map +0 -1
- package/es2022/src/misc/index.js +0 -6
- package/es2022/src/misc/index.js.map +0 -1
- package/es2022/src/misc/ngSelectControlValueAccessor.directive.js +0 -162
- package/es2022/src/misc/ngSelectControlValueAccessor.directive.js.map +0 -1
- package/es2022/src/misc/plugin.interface.js +0 -2
- package/es2022/src/misc/plugin.interface.js.map +0 -1
- package/es2022/src/misc/pluginBus/pluginBus.interface.js +0 -2
- package/es2022/src/misc/pluginBus/pluginBus.interface.js.map +0 -1
- package/es2022/src/misc/pluginBus/pluginBus.js.map +0 -1
- package/es2022/src/misc/templateGatherer.interface.js.map +0 -1
- package/es2022/src/modules/ngSelectDynamic.module.js +0 -20
- package/es2022/src/modules/ngSelectDynamic.module.js.map +0 -1
- package/es2022/src/pipes/ngSelectHasValue.pipe.js.map +0 -1
- package/es2022/src/pipes/ngSelectValue.pipe.js +0 -31
- package/es2022/src/pipes/ngSelectValue.pipe.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.js +0 -146
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.js +0 -2
- package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/components.js +0 -3
- package/es2022/src/plugins/keyboardHandler/components.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.js +0 -197
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.js +0 -2
- package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/keyboardHandler.interface.js.map +0 -1
- package/es2022/src/plugins/keyboardHandler/types.js +0 -10
- package/es2022/src/plugins/keyboardHandler/types.js.map +0 -1
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.component.js +0 -164
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.component.js.map +0 -1
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.interface.js +0 -2
- package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/components.js +0 -4
- package/es2022/src/plugins/liveSearch/components.js.map +0 -1
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.component.js +0 -313
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.component.js.map +0 -1
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.interface.js +0 -2
- package/es2022/src/plugins/liveSearch/edit/editLiveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/liveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.component.js +0 -65
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.component.js.map +0 -1
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.interface.js +0 -2
- package/es2022/src/plugins/liveSearch/no/noLiveSearch.interface.js.map +0 -1
- package/es2022/src/plugins/liveSearch/types.js +0 -10
- package/es2022/src/plugins/liveSearch/types.js.map +0 -1
- package/es2022/src/plugins/normalState/basic/basicNormalState.component.js +0 -58
- package/es2022/src/plugins/normalState/basic/basicNormalState.component.js.map +0 -1
- package/es2022/src/plugins/normalState/basic/basicNormalState.interface.js +0 -2
- package/es2022/src/plugins/normalState/basic/basicNormalState.interface.js.map +0 -1
- package/es2022/src/plugins/normalState/components.js +0 -4
- package/es2022/src/plugins/normalState/components.js.map +0 -1
- package/es2022/src/plugins/normalState/edit/editNormalState.component.js +0 -88
- package/es2022/src/plugins/normalState/edit/editNormalState.component.js.map +0 -1
- package/es2022/src/plugins/normalState/edit/editNormalState.interface.js +0 -2
- package/es2022/src/plugins/normalState/edit/editNormalState.interface.js.map +0 -1
- package/es2022/src/plugins/normalState/normalState.interface.js.map +0 -1
- package/es2022/src/plugins/normalState/normalStateAbstract.component.js +0 -89
- package/es2022/src/plugins/normalState/normalStateAbstract.component.js.map +0 -1
- package/es2022/src/plugins/normalState/types.js +0 -10
- package/es2022/src/plugins/normalState/types.js.map +0 -1
- package/es2022/src/plugins/popup/basic/basicPopup.component.js +0 -62
- package/es2022/src/plugins/popup/basic/basicPopup.component.js.map +0 -1
- package/es2022/src/plugins/popup/basic/basicPopup.interface.js +0 -2
- package/es2022/src/plugins/popup/basic/basicPopup.interface.js.map +0 -1
- package/es2022/src/plugins/popup/component.js +0 -4
- package/es2022/src/plugins/popup/component.js.map +0 -1
- package/es2022/src/plugins/popup/edit/editPopup.component.js +0 -85
- package/es2022/src/plugins/popup/edit/editPopup.component.js.map +0 -1
- package/es2022/src/plugins/popup/edit/editPopup.interface.js +0 -2
- package/es2022/src/plugins/popup/edit/editPopup.interface.js.map +0 -1
- package/es2022/src/plugins/popup/popup.interface.js.map +0 -1
- package/es2022/src/plugins/popup/popupAbstract.component.js +0 -200
- package/es2022/src/plugins/popup/popupAbstract.component.js.map +0 -1
- package/es2022/src/plugins/popup/types.js +0 -10
- package/es2022/src/plugins/popup/types.js.map +0 -1
- package/es2022/src/plugins/positioner/components.js +0 -3
- package/es2022/src/plugins/positioner/components.js.map +0 -1
- package/es2022/src/plugins/positioner/default/defaultPositioner.component.js +0 -160
- package/es2022/src/plugins/positioner/default/defaultPositioner.component.js.map +0 -1
- package/es2022/src/plugins/positioner/default/defaultPositioner.interface.js +0 -2
- package/es2022/src/plugins/positioner/default/defaultPositioner.interface.js.map +0 -1
- package/es2022/src/plugins/positioner/no/noPositioner.component.js +0 -78
- package/es2022/src/plugins/positioner/no/noPositioner.component.js.map +0 -1
- package/es2022/src/plugins/positioner/no/noPositioner.interface.js +0 -2
- package/es2022/src/plugins/positioner/no/noPositioner.interface.js.map +0 -1
- package/es2022/src/plugins/positioner/positioner.interface.js.map +0 -1
- package/es2022/src/plugins/positioner/types.js +0 -10
- package/es2022/src/plugins/positioner/types.js.map +0 -1
- package/es2022/src/plugins/readonlyState/readonlyState.interface.js.map +0 -1
- package/es2022/src/plugins/readonlyState/types.js +0 -10
- package/es2022/src/plugins/readonlyState/types.js.map +0 -1
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.component.js +0 -159
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.component.js.map +0 -1
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.interface.js +0 -2
- package/es2022/src/plugins/valueHandler/basic/basicValueHandler.interface.js.map +0 -1
- package/es2022/src/plugins/valueHandler/components.js +0 -3
- package/es2022/src/plugins/valueHandler/components.js.map +0 -1
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.js +0 -179
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.js.map +0 -1
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.js +0 -2
- package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.js.map +0 -1
- package/es2022/src/plugins/valueHandler/types.js +0 -10
- package/es2022/src/plugins/valueHandler/types.js.map +0 -1
- package/es2022/src/plugins/valueHandler/valueHandler.interface.js.map +0 -1
- package/es2022/src/plugins/valueHandler/valueHandlerBase.js +0 -145
- package/es2022/src/plugins/valueHandler/valueHandlerBase.js.map +0 -1
- package/material/src/directives/types.d.ts +0 -2
- package/material/src/directives/types.d.ts.map +0 -1
- package/material/src/plugins/popup/components.d.ts +0 -3
- package/material/src/plugins/popup/components.d.ts.map +0 -1
- package/src/components/option/index.d.ts +0 -3
- package/src/components/option/index.d.ts.map +0 -1
- package/src/components/option/optgroup.component.d.ts +0 -37
- package/src/components/option/optgroup.component.d.ts.map +0 -1
- package/src/components/option/optgroup.interface.d.ts +0 -20
- package/src/components/option/optgroup.interface.d.ts.map +0 -1
- package/src/components/option/option.interface.d.ts +0 -31
- package/src/components/option/option.interface.d.ts.map +0 -1
- package/src/components/select/index.d.ts +0 -2
- package/src/components/select/select.interface.d.ts +0 -68
- package/src/components/select/select.interface.d.ts.map +0 -1
- package/src/components/select/types.d.ts +0 -7
- package/src/components/select/types.d.ts.map +0 -1
- package/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.d.ts +0 -11
- package/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.d.ts.map +0 -1
- package/src/directives/ngSelectEdit/ngSelectEdit.directive.d.ts +0 -11
- package/src/directives/ngSelectEdit/ngSelectEdit.directive.d.ts.map +0 -1
- package/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.d.ts +0 -21
- package/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.d.ts.map +0 -1
- package/src/index.ssr.d.ts +0 -1
- package/src/index.ssr.d.ts.map +0 -1
- package/src/misc/index.d.ts +0 -6
- package/src/misc/index.d.ts.map +0 -1
- package/src/misc/ngSelectControlValueAccessor.directive.d.ts +0 -63
- package/src/misc/ngSelectControlValueAccessor.directive.d.ts.map +0 -1
- package/src/misc/plugin.interface.d.ts +0 -108
- package/src/misc/plugin.interface.d.ts.map +0 -1
- package/src/misc/pluginBus/pluginBus.d.ts +0 -49
- package/src/misc/pluginBus/pluginBus.d.ts.map +0 -1
- package/src/misc/pluginBus/pluginBus.interface.d.ts +0 -36
- package/src/misc/pluginBus/pluginBus.interface.d.ts.map +0 -1
- package/src/misc/templateGatherer.interface.d.ts +0 -17
- package/src/misc/templateGatherer.interface.d.ts.map +0 -1
- package/src/modules/ngSelectDynamic.module.d.ts +0 -11
- package/src/modules/ngSelectDynamic.module.d.ts.map +0 -1
- package/src/pipes/ngSelectHasValue.pipe.d.ts +0 -16
- package/src/pipes/ngSelectHasValue.pipe.d.ts.map +0 -1
- package/src/pipes/ngSelectValue.pipe.d.ts +0 -19
- package/src/pipes/ngSelectValue.pipe.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.d.ts +0 -58
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.d.ts +0 -12
- package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/components.d.ts +0 -3
- package/src/plugins/keyboardHandler/components.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.d.ts +0 -68
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.d.ts +0 -12
- package/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/keyboardHandler.interface.d.ts +0 -12
- package/src/plugins/keyboardHandler/keyboardHandler.interface.d.ts.map +0 -1
- package/src/plugins/keyboardHandler/types.d.ts +0 -11
- package/src/plugins/keyboardHandler/types.d.ts.map +0 -1
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.css +0 -11
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.d.ts +0 -98
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.d.ts.map +0 -1
- package/src/plugins/liveSearch/basic/basicLiveSearch.component.html +0 -5
- package/src/plugins/liveSearch/basic/basicLiveSearch.interface.d.ts +0 -29
- package/src/plugins/liveSearch/basic/basicLiveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/components.d.ts +0 -4
- package/src/plugins/liveSearch/components.d.ts.map +0 -1
- package/src/plugins/liveSearch/edit/editLiveSearch.component.css +0 -13
- package/src/plugins/liveSearch/edit/editLiveSearch.component.d.ts +0 -141
- package/src/plugins/liveSearch/edit/editLiveSearch.component.d.ts.map +0 -1
- package/src/plugins/liveSearch/edit/editLiveSearch.component.html +0 -13
- package/src/plugins/liveSearch/edit/editLiveSearch.interface.d.ts +0 -37
- package/src/plugins/liveSearch/edit/editLiveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/liveSearch.interface.d.ts +0 -38
- package/src/plugins/liveSearch/liveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/no/noLiveSearch.component.d.ts +0 -54
- package/src/plugins/liveSearch/no/noLiveSearch.component.d.ts.map +0 -1
- package/src/plugins/liveSearch/no/noLiveSearch.interface.d.ts +0 -12
- package/src/plugins/liveSearch/no/noLiveSearch.interface.d.ts.map +0 -1
- package/src/plugins/liveSearch/types.d.ts +0 -11
- package/src/plugins/liveSearch/types.d.ts.map +0 -1
- package/src/plugins/normalState/basic/basicNormalState.component.css +0 -38
- package/src/plugins/normalState/basic/basicNormalState.component.d.ts +0 -17
- package/src/plugins/normalState/basic/basicNormalState.component.d.ts.map +0 -1
- package/src/plugins/normalState/basic/basicNormalState.component.html +0 -6
- package/src/plugins/normalState/basic/basicNormalState.interface.d.ts +0 -29
- package/src/plugins/normalState/basic/basicNormalState.interface.d.ts.map +0 -1
- package/src/plugins/normalState/components.d.ts +0 -4
- package/src/plugins/normalState/components.d.ts.map +0 -1
- package/src/plugins/normalState/edit/editNormalState.component.css +0 -77
- package/src/plugins/normalState/edit/editNormalState.component.d.ts +0 -26
- package/src/plugins/normalState/edit/editNormalState.component.d.ts.map +0 -1
- package/src/plugins/normalState/edit/editNormalState.component.html +0 -19
- package/src/plugins/normalState/edit/editNormalState.interface.d.ts +0 -53
- package/src/plugins/normalState/edit/editNormalState.interface.d.ts.map +0 -1
- package/src/plugins/normalState/normalState.interface.d.ts +0 -49
- package/src/plugins/normalState/normalState.interface.d.ts.map +0 -1
- package/src/plugins/normalState/normalStateAbstract.component.d.ts +0 -65
- package/src/plugins/normalState/normalStateAbstract.component.d.ts.map +0 -1
- package/src/plugins/normalState/types.d.ts +0 -11
- package/src/plugins/normalState/types.d.ts.map +0 -1
- package/src/plugins/popup/basic/basicPopup.component.css +0 -61
- package/src/plugins/popup/basic/basicPopup.component.d.ts +0 -17
- package/src/plugins/popup/basic/basicPopup.component.d.ts.map +0 -1
- package/src/plugins/popup/basic/basicPopup.component.html +0 -21
- package/src/plugins/popup/basic/basicPopup.interface.d.ts +0 -33
- package/src/plugins/popup/basic/basicPopup.interface.d.ts.map +0 -1
- package/src/plugins/popup/component.d.ts +0 -4
- package/src/plugins/popup/component.d.ts.map +0 -1
- package/src/plugins/popup/edit/editPopup.component.css +0 -61
- package/src/plugins/popup/edit/editPopup.component.d.ts +0 -32
- package/src/plugins/popup/edit/editPopup.component.d.ts.map +0 -1
- package/src/plugins/popup/edit/editPopup.component.html +0 -19
- package/src/plugins/popup/edit/editPopup.interface.d.ts +0 -33
- package/src/plugins/popup/edit/editPopup.interface.d.ts.map +0 -1
- package/src/plugins/popup/popup.interface.d.ts +0 -52
- package/src/plugins/popup/popup.interface.d.ts.map +0 -1
- package/src/plugins/popup/popupAbstract.component.d.ts +0 -130
- package/src/plugins/popup/popupAbstract.component.d.ts.map +0 -1
- package/src/plugins/popup/types.d.ts +0 -11
- package/src/plugins/popup/types.d.ts.map +0 -1
- package/src/plugins/positioner/components.d.ts +0 -3
- package/src/plugins/positioner/components.d.ts.map +0 -1
- package/src/plugins/positioner/default/defaultPositioner.component.d.ts +0 -89
- package/src/plugins/positioner/default/defaultPositioner.component.d.ts.map +0 -1
- package/src/plugins/positioner/default/defaultPositioner.interface.d.ts +0 -12
- package/src/plugins/positioner/default/defaultPositioner.interface.d.ts.map +0 -1
- package/src/plugins/positioner/no/noPositioner.component.d.ts +0 -50
- package/src/plugins/positioner/no/noPositioner.component.d.ts.map +0 -1
- package/src/plugins/positioner/no/noPositioner.interface.d.ts +0 -12
- package/src/plugins/positioner/no/noPositioner.interface.d.ts.map +0 -1
- package/src/plugins/positioner/positioner.interface.d.ts +0 -22
- package/src/plugins/positioner/positioner.interface.d.ts.map +0 -1
- package/src/plugins/positioner/types.d.ts +0 -11
- package/src/plugins/positioner/types.d.ts.map +0 -1
- package/src/plugins/readonlyState/readonlyState.interface.d.ts +0 -12
- package/src/plugins/readonlyState/readonlyState.interface.d.ts.map +0 -1
- package/src/plugins/readonlyState/types.d.ts +0 -11
- package/src/plugins/readonlyState/types.d.ts.map +0 -1
- package/src/plugins/valueHandler/basic/basicValueHandler.component.d.ts +0 -51
- package/src/plugins/valueHandler/basic/basicValueHandler.component.d.ts.map +0 -1
- package/src/plugins/valueHandler/basic/basicValueHandler.interface.d.ts +0 -12
- package/src/plugins/valueHandler/basic/basicValueHandler.interface.d.ts.map +0 -1
- package/src/plugins/valueHandler/components.d.ts +0 -3
- package/src/plugins/valueHandler/components.d.ts.map +0 -1
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.d.ts +0 -52
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.d.ts.map +0 -1
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.d.ts +0 -21
- package/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.d.ts.map +0 -1
- package/src/plugins/valueHandler/types.d.ts +0 -11
- package/src/plugins/valueHandler/types.d.ts.map +0 -1
- package/src/plugins/valueHandler/valueHandler.interface.d.ts +0 -31
- package/src/plugins/valueHandler/valueHandler.interface.d.ts.map +0 -1
- package/src/plugins/valueHandler/valueHandlerBase.d.ts +0 -115
- package/src/plugins/valueHandler/valueHandlerBase.d.ts.map +0 -1
- /package/es2022/src/{plugins → interfaces/plugins}/keyboardHandler/keyboardHandler.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/liveSearch/liveSearch.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/normalState/normalState.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/popup/popup.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/positioner/positioner.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/readonlyState/readonlyState.interface.js +0 -0
- /package/es2022/src/{plugins → interfaces/plugins}/valueHandler/valueHandler.interface.js +0 -0
- /package/es2022/src/{misc → interfaces/templateGatherer}/templateGatherer.interface.js +0 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
/**
|
|
3
|
+
* Injection token for 'SelectOptions'
|
|
4
|
+
*/
|
|
5
|
+
export const SELECT_OPTIONS = new InjectionToken('SELECT_OPTIONS');
|
|
6
|
+
/**
|
|
7
|
+
* Injection token for 'KeyboardHandler' implementation
|
|
8
|
+
*/
|
|
9
|
+
export const KEYBOARD_HANDLER_TYPE = new InjectionToken('KEYBOARD_HANDLER_TYPE');
|
|
10
|
+
/**
|
|
11
|
+
* Injection token for 'NormalState' implementation
|
|
12
|
+
*/
|
|
13
|
+
export const NORMAL_STATE_TYPE = new InjectionToken('NORMAL_STATE_TYPE');
|
|
14
|
+
/**
|
|
15
|
+
* Injection token for 'Popup' implementation
|
|
16
|
+
*/
|
|
17
|
+
export const POPUP_TYPE = new InjectionToken('POPUP_TYPE');
|
|
18
|
+
/**
|
|
19
|
+
* Injection token for 'Positioner' implementation
|
|
20
|
+
*/
|
|
21
|
+
export const POSITIONER_TYPE = new InjectionToken('POSITIONER_TYPE');
|
|
22
|
+
/**
|
|
23
|
+
* Injection token for 'ReadonlyState' implementation
|
|
24
|
+
*/
|
|
25
|
+
export const READONLY_STATE_TYPE = new InjectionToken('READONLY_STATE_TYPE');
|
|
26
|
+
/**
|
|
27
|
+
* Injection token for 'ValueHandler' implementation
|
|
28
|
+
*/
|
|
29
|
+
export const VALUE_HANDLER_TYPE = new InjectionToken('VALUE_HANDLER_TYPE');
|
|
30
|
+
/**
|
|
31
|
+
* Injection token for 'LiveSearch' implementation
|
|
32
|
+
*/
|
|
33
|
+
export const LIVE_SEARCH_TYPE = new InjectionToken('LIVE_SEARCH_TYPE');
|
|
34
|
+
/**
|
|
35
|
+
* Injection token for 'Interactions' implementation
|
|
36
|
+
*/
|
|
37
|
+
export const INTERACTIONS_TYPE = new InjectionToken('INTERACTIONS');
|
|
38
|
+
/**
|
|
39
|
+
* Injection token for 'OptionsHandler' implementation
|
|
40
|
+
*/
|
|
41
|
+
export const OPTIONS_HANDLER_TYPE = new InjectionToken('OPTIONS_HANDLER_TYPE');
|
|
42
|
+
/**
|
|
43
|
+
* Injection token for 'KeyboardHandlerOptions' implementation
|
|
44
|
+
*/
|
|
45
|
+
export const KEYBOARD_HANDLER_OPTIONS = new InjectionToken('KEYBOARD_HANDLER_OPTIONS');
|
|
46
|
+
/**
|
|
47
|
+
* Injection token for 'NormalStateOptions' implementation
|
|
48
|
+
*/
|
|
49
|
+
export const NORMAL_STATE_OPTIONS = new InjectionToken('NORMAL_STATE_OPTIONS');
|
|
50
|
+
/**
|
|
51
|
+
* Injection token for 'PopupOptions' implementation
|
|
52
|
+
*/
|
|
53
|
+
export const POPUP_OPTIONS = new InjectionToken('POPUP_OPTIONS');
|
|
54
|
+
/**
|
|
55
|
+
* Injection token for 'PositionerOptions' implementation
|
|
56
|
+
*/
|
|
57
|
+
export const POSITIONER_OPTIONS = new InjectionToken('POSITIONER_OPTIONS');
|
|
58
|
+
/**
|
|
59
|
+
* Injection token for 'ReadonlyStateOptions' implementation
|
|
60
|
+
*/
|
|
61
|
+
export const READONLY_STATE_OPTIONS = new InjectionToken('READONLY_STATE_OPTIONS');
|
|
62
|
+
/**
|
|
63
|
+
* Injection token for 'ValueHandlerOptions' implementation
|
|
64
|
+
*/
|
|
65
|
+
export const VALUE_HANDLER_OPTIONS = new InjectionToken('VALUE_HANDLER_OPTIONS');
|
|
66
|
+
/**
|
|
67
|
+
* Injection token for 'LiveSearchOptions' implementation
|
|
68
|
+
*/
|
|
69
|
+
export const LIVE_SEARCH_OPTIONS = new InjectionToken('LIVE_SEARCH_OPTIONS');
|
|
70
|
+
/**
|
|
71
|
+
* Injection token for 'InteractionsOptions' implementation
|
|
72
|
+
*/
|
|
73
|
+
export const INTERACTIONS_OPTIONS = new InjectionToken('INTERACTIONS_OPTIONS');
|
|
74
|
+
/**
|
|
75
|
+
* Injection token for 'OptionsHandlerOptions' implementation
|
|
76
|
+
*/
|
|
77
|
+
export const OPTIONS_HANDLER_OPTIONS = new InjectionToken('OPTIONS_HANDLER_OPTIONS');
|
|
78
|
+
//# sourceMappingURL=tokens.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tokens.js","sourceRoot":"","sources":["../../../src/misc/tokens.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAO,MAAM,eAAe,CAAC;AAMnD;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAoD,IAAI,cAAc,CAAkC,gBAAgB,CAAC,CAAC;AAErJ;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAA0C,IAAI,cAAc,CAAwB,uBAAuB,CAAC,CAAC;AAE/I;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAsC,IAAI,cAAc,CAAoB,mBAAmB,CAAC,CAAC;AAE/H;;GAEG;AACH,MAAM,CAAC,MAAM,UAAU,GAAgC,IAAI,cAAc,CAAc,YAAY,CAAC,CAAC;AAErG;;GAEG;AACH,MAAM,CAAC,MAAM,eAAe,GAAqC,IAAI,cAAc,CAAmB,iBAAiB,CAAC,CAAC;AAEzH;;GAEG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAwC,IAAI,cAAc,CAAsB,qBAAqB,CAAC,CAAC;AAEvI;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAuC,IAAI,cAAc,CAAqB,oBAAoB,CAAC,CAAC;AAEnI;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAqC,IAAI,cAAc,CAAmB,kBAAkB,CAAC,CAAC;AAE3H;;GAEG;AACH,MAAM,CAAC,MAAM,iBAAiB,GAAuC,IAAI,cAAc,CAAqB,cAAc,CAAC,CAAC;AAE5H;;GAEG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAyC,IAAI,cAAc,CAAuB,sBAAsB,CAAC,CAAC;AAE3I;;GAEG;AACH,MAAM,CAAC,MAAM,wBAAwB,GAA2C,IAAI,cAAc,CAAyB,0BAA0B,CAAC,CAAC;AAEvJ;;GAEG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAuC,IAAI,cAAc,CAAqB,sBAAsB,CAAC,CAAC;AAEvI;;GAEG;AACH,MAAM,CAAC,MAAM,aAAa,GAAiC,IAAI,cAAc,CAAe,eAAe,CAAC,CAAC;AAE7G;;GAEG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAAsC,IAAI,cAAc,CAAoB,oBAAoB,CAAC,CAAC;AAEjI;;GAEG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAyC,IAAI,cAAc,CAAuB,wBAAwB,CAAC,CAAC;AAE/I;;GAEG;AACH,MAAM,CAAC,MAAM,qBAAqB,GAAwC,IAAI,cAAc,CAAsB,uBAAuB,CAAC,CAAC;AAE3I;;GAEG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAAsC,IAAI,cAAc,CAAoB,qBAAqB,CAAC,CAAC;AAEnI;;GAEG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAwC,IAAI,cAAc,CAAsB,sBAAsB,CAAC,CAAC;AAEzI;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAA0C,IAAI,cAAc,CAAwB,yBAAyB,CAAC,CAAC","sourcesContent":["import {InjectionToken, Type} from '@angular/core';\nimport {RecursivePartial} from '@jscrpt/common';\n\nimport {SelectOptions} from '../interfaces/selectOptions/selectOptions.interface';\nimport {Interactions, InteractionsOptions, KeyboardHandler, KeyboardHandlerOptions, LiveSearch, LiveSearchOptions, NormalState, NormalStateOptions, OptionsHandler, OptionsHandlerOptions, Popup, PopupOptions, Positioner, PositionerOptions, ReadonlyState, ReadonlyStateOptions, ValueHandler, ValueHandlerOptions} from '../interfaces';\n\n/**\n * Injection token for 'SelectOptions'\n */\nexport const SELECT_OPTIONS: InjectionToken<RecursivePartial<SelectOptions>> = new InjectionToken<RecursivePartial<SelectOptions>>('SELECT_OPTIONS');\n\n/**\n * Injection token for 'KeyboardHandler' implementation\n */\nexport const KEYBOARD_HANDLER_TYPE: InjectionToken<Type<KeyboardHandler>> = new InjectionToken<Type<KeyboardHandler>>('KEYBOARD_HANDLER_TYPE');\n\n/**\n * Injection token for 'NormalState' implementation\n */\nexport const NORMAL_STATE_TYPE: InjectionToken<Type<NormalState>> = new InjectionToken<Type<NormalState>>('NORMAL_STATE_TYPE');\n\n/**\n * Injection token for 'Popup' implementation\n */\nexport const POPUP_TYPE: InjectionToken<Type<Popup>> = new InjectionToken<Type<Popup>>('POPUP_TYPE');\n\n/**\n * Injection token for 'Positioner' implementation\n */\nexport const POSITIONER_TYPE: InjectionToken<Type<Positioner>> = new InjectionToken<Type<Positioner>>('POSITIONER_TYPE');\n\n/**\n * Injection token for 'ReadonlyState' implementation\n */\nexport const READONLY_STATE_TYPE: InjectionToken<Type<ReadonlyState>> = new InjectionToken<Type<ReadonlyState>>('READONLY_STATE_TYPE');\n\n/**\n * Injection token for 'ValueHandler' implementation\n */\nexport const VALUE_HANDLER_TYPE: InjectionToken<Type<ValueHandler>> = new InjectionToken<Type<ValueHandler>>('VALUE_HANDLER_TYPE');\n\n/**\n * Injection token for 'LiveSearch' implementation\n */\nexport const LIVE_SEARCH_TYPE: InjectionToken<Type<LiveSearch>> = new InjectionToken<Type<LiveSearch>>('LIVE_SEARCH_TYPE');\n\n/**\n * Injection token for 'Interactions' implementation\n */\nexport const INTERACTIONS_TYPE: InjectionToken<Type<Interactions>> = new InjectionToken<Type<Interactions>>('INTERACTIONS');\n\n/**\n * Injection token for 'OptionsHandler' implementation\n */\nexport const OPTIONS_HANDLER_TYPE: InjectionToken<Type<OptionsHandler>> = new InjectionToken<Type<OptionsHandler>>('OPTIONS_HANDLER_TYPE');\n\n/**\n * Injection token for 'KeyboardHandlerOptions' implementation\n */\nexport const KEYBOARD_HANDLER_OPTIONS: InjectionToken<KeyboardHandlerOptions> = new InjectionToken<KeyboardHandlerOptions>('KEYBOARD_HANDLER_OPTIONS');\n\n/**\n * Injection token for 'NormalStateOptions' implementation\n */\nexport const NORMAL_STATE_OPTIONS: InjectionToken<NormalStateOptions> = new InjectionToken<NormalStateOptions>('NORMAL_STATE_OPTIONS');\n\n/**\n * Injection token for 'PopupOptions' implementation\n */\nexport const POPUP_OPTIONS: InjectionToken<PopupOptions> = new InjectionToken<PopupOptions>('POPUP_OPTIONS');\n\n/**\n * Injection token for 'PositionerOptions' implementation\n */\nexport const POSITIONER_OPTIONS: InjectionToken<PositionerOptions> = new InjectionToken<PositionerOptions>('POSITIONER_OPTIONS');\n\n/**\n * Injection token for 'ReadonlyStateOptions' implementation\n */\nexport const READONLY_STATE_OPTIONS: InjectionToken<ReadonlyStateOptions> = new InjectionToken<ReadonlyStateOptions>('READONLY_STATE_OPTIONS');\n\n/**\n * Injection token for 'ValueHandlerOptions' implementation\n */\nexport const VALUE_HANDLER_OPTIONS: InjectionToken<ValueHandlerOptions> = new InjectionToken<ValueHandlerOptions>('VALUE_HANDLER_OPTIONS');\n\n/**\n * Injection token for 'LiveSearchOptions' implementation\n */\nexport const LIVE_SEARCH_OPTIONS: InjectionToken<LiveSearchOptions> = new InjectionToken<LiveSearchOptions>('LIVE_SEARCH_OPTIONS');\n\n/**\n * Injection token for 'InteractionsOptions' implementation\n */\nexport const INTERACTIONS_OPTIONS: InjectionToken<InteractionsOptions> = new InjectionToken<InteractionsOptions>('INTERACTIONS_OPTIONS');\n\n/**\n * Injection token for 'OptionsHandlerOptions' implementation\n */\nexport const OPTIONS_HANDLER_OPTIONS: InjectionToken<OptionsHandlerOptions> = new InjectionToken<OptionsHandlerOptions>('OPTIONS_HANDLER_OPTIONS');\n"]}
|
package/es2022/src/misc/types.js
CHANGED
|
@@ -1,34 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
/**
|
|
3
|
-
* Injection token for 'NgSelectOptions'
|
|
4
|
-
*/
|
|
5
|
-
export const NG_SELECT_OPTIONS = new InjectionToken('NG_SELECT_OPTIONS');
|
|
6
|
-
/**
|
|
7
|
-
* Injection token for 'KeyboardHandler' implementation
|
|
8
|
-
*/
|
|
9
|
-
export const KEYBOARD_HANDLER_TYPE = new InjectionToken('KEYBOARD_HANDLER_TYPE');
|
|
10
|
-
/**
|
|
11
|
-
* Injection token for 'NormalState' implementation
|
|
12
|
-
*/
|
|
13
|
-
export const NORMAL_STATE_TYPE = new InjectionToken('NORMAL_STATE_TYPE');
|
|
14
|
-
/**
|
|
15
|
-
* Injection token for 'Popup' implementation
|
|
16
|
-
*/
|
|
17
|
-
export const POPUP_TYPE = new InjectionToken('POPUP_TYPE');
|
|
18
|
-
/**
|
|
19
|
-
* Injection token for 'Positioner' implementation
|
|
20
|
-
*/
|
|
21
|
-
export const POSITIONER_TYPE = new InjectionToken('POSITIONER_TYPE');
|
|
22
|
-
/**
|
|
23
|
-
* Injection token for 'ReadonlyState' implementation
|
|
24
|
-
*/
|
|
25
|
-
export const READONLY_STATE_TYPE = new InjectionToken('READONLY_STATE_TYPE');
|
|
26
|
-
/**
|
|
27
|
-
* Injection token for 'ValueHandler' implementation
|
|
28
|
-
*/
|
|
29
|
-
export const VALUE_HANDLER_TYPE = new InjectionToken('VALUE_HANDLER_TYPE');
|
|
30
|
-
/**
|
|
31
|
-
* Injection token for 'LiveSearch' implementation
|
|
32
|
-
*/
|
|
33
|
-
export const LIVE_SEARCH_TYPE = new InjectionToken('LIVE_SEARCH_TYPE');
|
|
1
|
+
export {};
|
|
34
2
|
//# sourceMappingURL=types.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/misc/types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/misc/types.ts"],"names":[],"mappings":"","sourcesContent":["import {SelectApi, SelectCssClasses, SelectOption} from '../interfaces';\n\n/**\n * Defintion of action that can be executed on Select\n */\nexport type SelectAction<TValue = unknown, TCssClasses = SelectCssClasses> = (ngSelect: SelectApi<TValue, TCssClasses>) => void;\n\n/**\n * Definition of function that can be executed on Select and returns some data\n */\nexport type SelectFunction<TResult = unknown, TValue = unknown, TCssClasses = SelectCssClasses> = (ngSelect: SelectApi<TValue, TCssClasses>) => TResult;\n\n/**\n * Definition of function used for transformation of select option into display text\n */\nexport type DisplayTextFunc<TValue = unknown> = (option: SelectOption<TValue>) => string;\n\n/**\n * Definition of function used for checking equality of select value\n */\nexport type ValueEqualityFunc<TValue = unknown> = (value: TValue, compare: TValue) => boolean;\n\n/**\n * Definition of function used for extracting value from select option\n */\nexport type ValueExtractorFunc<TValue = unknown> = (option: SelectOption<TValue>) => TValue;\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/modules/index.ts"],"names":[],"mappings":"AAAA,cAAc,mBAAmB,CAAC","sourcesContent":["export * from './ngSelect.module';\n"]}
|
|
@@ -1,89 +1,45 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import { NgSelectValuePipe } from '../pipes/ngSelectValue.pipe';
|
|
5
|
-
import { NgSelectHasValuePipe } from '../pipes/ngSelectHasValue.pipe';
|
|
6
|
-
import { NgSelectControlValueAccessor } from '../misc/ngSelectControlValueAccessor.directive';
|
|
7
|
-
import { BasicNormalStateComponent } from '../plugins/normalState/basic/basicNormalState.component';
|
|
8
|
-
import { NoLiveSearchComponent } from '../plugins/liveSearch/no/noLiveSearch.component';
|
|
9
|
-
import { BasicLiveSearchComponent } from '../plugins/liveSearch/basic/basicLiveSearch.component';
|
|
10
|
-
import { BasicPopupComponent } from '../plugins/popup/basic/basicPopup.component';
|
|
11
|
-
import { DefaultPositionerComponent } from '../plugins/positioner/default/defaultPositioner.component';
|
|
12
|
-
import { NoPositionerComponent } from '../plugins/positioner/no/noPositioner.component';
|
|
13
|
-
import { BasicKeyboardHandlerComponent } from '../plugins/keyboardHandler/basic/basicKeyboardHandler.component';
|
|
14
|
-
import { BasicValueHandlerComponent } from '../plugins/valueHandler/basic/basicValueHandler.component';
|
|
15
|
-
import { OptionComponent } from '../components/option/option.component';
|
|
16
|
-
import { OptGroupComponent } from '../components/option/optgroup.component';
|
|
17
|
-
import { NgSelectComponent } from '../components/select/select.component';
|
|
18
|
-
import { NgSelectAbsoluteDirective } from '../directives/ngSelectAbsolute/ngSelectAbsolute.directive';
|
|
19
|
-
import { NgSelectPlaceholderDirective } from '../directives/ngSelectPlaceholder/ngSelectPlaceholder.directive';
|
|
2
|
+
import { SelectValuePipe, SelectHasValuePipe } from '../pipes';
|
|
3
|
+
import { Option, OptGroup, Select } from '../components';
|
|
20
4
|
import * as i0 from "@angular/core";
|
|
21
5
|
/**
|
|
22
6
|
* Module for select and its options
|
|
23
7
|
*/
|
|
24
|
-
export class
|
|
25
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.
|
|
26
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
BasicKeyboardHandlerComponent], imports: [CommonModule,
|
|
37
|
-
NgSelectValuePipe,
|
|
38
|
-
CommonDynamicModule,
|
|
39
|
-
NgSelectHasValuePipe,
|
|
40
|
-
NgSelectAbsoluteDirective,
|
|
41
|
-
NgSelectPlaceholderDirective,
|
|
42
|
-
NgSelectControlValueAccessor], exports: [OptionComponent,
|
|
43
|
-
OptGroupComponent,
|
|
44
|
-
NgSelectComponent,
|
|
45
|
-
NgSelectValuePipe,
|
|
46
|
-
NgSelectHasValuePipe,
|
|
47
|
-
NgSelectAbsoluteDirective,
|
|
48
|
-
NgSelectControlValueAccessor,
|
|
49
|
-
NgSelectPlaceholderDirective] }); }
|
|
50
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: NgSelectModule, imports: [CommonModule,
|
|
51
|
-
CommonDynamicModule] }); }
|
|
8
|
+
export class SelectModule {
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: SelectModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
10
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "21.1.5", ngImport: i0, type: SelectModule, imports: [Option,
|
|
11
|
+
OptGroup,
|
|
12
|
+
Select,
|
|
13
|
+
SelectValuePipe,
|
|
14
|
+
SelectHasValuePipe], exports: [Option,
|
|
15
|
+
OptGroup,
|
|
16
|
+
Select,
|
|
17
|
+
SelectValuePipe,
|
|
18
|
+
SelectHasValuePipe] }); }
|
|
19
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: SelectModule }); }
|
|
52
20
|
}
|
|
53
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.
|
|
21
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: SelectModule, decorators: [{
|
|
54
22
|
type: NgModule,
|
|
55
23
|
args: [{
|
|
56
24
|
imports: [
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
declarations: [
|
|
66
|
-
OptionComponent,
|
|
67
|
-
OptGroupComponent,
|
|
68
|
-
NgSelectComponent,
|
|
69
|
-
BasicPopupComponent,
|
|
70
|
-
NoPositionerComponent,
|
|
71
|
-
NoLiveSearchComponent,
|
|
72
|
-
BasicLiveSearchComponent,
|
|
73
|
-
BasicNormalStateComponent,
|
|
74
|
-
DefaultPositionerComponent,
|
|
75
|
-
BasicValueHandlerComponent,
|
|
76
|
-
BasicKeyboardHandlerComponent,
|
|
25
|
+
Option,
|
|
26
|
+
OptGroup,
|
|
27
|
+
Select,
|
|
28
|
+
SelectValuePipe,
|
|
29
|
+
SelectHasValuePipe,
|
|
30
|
+
// SelectAbsoluteDirective,
|
|
31
|
+
// SelectControlValueAccessor,
|
|
32
|
+
// SelectPlaceholderDirective,
|
|
77
33
|
],
|
|
78
34
|
exports: [
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
NgSelectAbsoluteDirective,
|
|
85
|
-
NgSelectControlValueAccessor,
|
|
86
|
-
NgSelectPlaceholderDirective,
|
|
35
|
+
Option,
|
|
36
|
+
OptGroup,
|
|
37
|
+
Select,
|
|
38
|
+
SelectValuePipe,
|
|
39
|
+
SelectHasValuePipe,
|
|
40
|
+
// NgSelectAbsoluteDirective,
|
|
41
|
+
// NgSelectControlValueAccessor,
|
|
42
|
+
// NgSelectPlaceholderDirective,
|
|
87
43
|
]
|
|
88
44
|
}]
|
|
89
45
|
}] });
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelect.module.js","sourceRoot":"","sources":["../../../src/modules/ngSelect.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAC,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"ngSelect.module.js","sourceRoot":"","sources":["../../../src/modules/ngSelect.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAC,MAAM,eAAe,CAAC;AAEvC,OAAO,EAAC,eAAe,EAAE,kBAAkB,EAAC,MAAM,UAAU,CAAC;AAC7D,OAAO,EAAC,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAC,MAAM,eAAe,CAAC;;AAEvD;;GAEG;AA0BH,MAAM,OAAO,YAAY;8GAAZ,YAAY;+GAAZ,YAAY,YArBjB,MAAM;YACN,QAAQ;YACR,MAAM;YACN,eAAe;YACf,kBAAkB,aAOlB,MAAM;YACN,QAAQ;YACR,MAAM;YACN,eAAe;YACf,kBAAkB;+GAMb,YAAY;;2FAAZ,YAAY;kBAzBxB,QAAQ;mBACT;oBACI,OAAO,EACP;wBACI,MAAM;wBACN,QAAQ;wBACR,MAAM;wBACN,eAAe;wBACf,kBAAkB;wBAClB,2BAA2B;wBAC3B,8BAA8B;wBAC9B,8BAA8B;qBACjC;oBACD,OAAO,EACP;wBACI,MAAM;wBACN,QAAQ;wBACR,MAAM;wBACN,eAAe;wBACf,kBAAkB;wBAClB,6BAA6B;wBAC7B,gCAAgC;wBAChC,gCAAgC;qBACnC;iBACJ","sourcesContent":["import {NgModule} from '@angular/core';\n\nimport {SelectValuePipe, SelectHasValuePipe} from '../pipes';\nimport {Option, OptGroup, Select} from '../components';\n\n/**\n * Module for select and its options\n */\n@NgModule(\n{\n imports:\n [\n Option,\n OptGroup,\n Select,\n SelectValuePipe,\n SelectHasValuePipe,\n // SelectAbsoluteDirective,\n // SelectControlValueAccessor,\n // SelectPlaceholderDirective,\n ],\n exports:\n [\n Option,\n OptGroup,\n Select,\n SelectValuePipe,\n SelectHasValuePipe,\n // NgSelectAbsoluteDirective,\n // NgSelectControlValueAccessor,\n // NgSelectPlaceholderDirective,\n ]\n})\nexport class SelectModule\n{\n}\n"]}
|
|
@@ -1,51 +1,40 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import
|
|
10
|
-
/**
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
EditKeyboardHandlerComponent
|
|
41
|
-
],
|
|
42
|
-
exports: [
|
|
43
|
-
NgSelectEditDirective,
|
|
44
|
-
EditNormalStateComponent,
|
|
45
|
-
EditLiveSearchComponent,
|
|
46
|
-
EditPopupComponent,
|
|
47
|
-
EditKeyboardHandlerComponent
|
|
48
|
-
]
|
|
49
|
-
}]
|
|
50
|
-
}] });
|
|
1
|
+
"use strict";
|
|
2
|
+
// import {NgModule} from '@angular/core';
|
|
3
|
+
// import {CommonModule} from '@angular/common';
|
|
4
|
+
// import {NgSelectEditDirective} from '../directives/selectEdit/selectEdit.directive';
|
|
5
|
+
// import {EditNormalStateComponent} from '../plugins/normalState/edit/editNormalState.component';
|
|
6
|
+
// import {EditLiveSearchComponent} from '../plugins/liveSearch/edit/editLiveSearch.component';
|
|
7
|
+
// import {EditPopupComponent} from '../plugins/popup/edit/editPopup.component';
|
|
8
|
+
// import {EditKeyboardHandlerComponent} from '../plugins/keyboardHandler/edit/editKeyboardHandler.component';
|
|
9
|
+
// import {NgSelectModule} from './ngSelect.module';
|
|
10
|
+
// /**
|
|
11
|
+
// * Module for select with editation and tags (jira like select)
|
|
12
|
+
// */
|
|
13
|
+
// @NgModule(
|
|
14
|
+
// {
|
|
15
|
+
// imports:
|
|
16
|
+
// [
|
|
17
|
+
// CommonModule,
|
|
18
|
+
// NgSelectModule,
|
|
19
|
+
// NgSelectEditDirective,
|
|
20
|
+
// ],
|
|
21
|
+
// declarations:
|
|
22
|
+
// [
|
|
23
|
+
// EditNormalStateComponent,
|
|
24
|
+
// EditLiveSearchComponent,
|
|
25
|
+
// EditPopupComponent,
|
|
26
|
+
// EditKeyboardHandlerComponent
|
|
27
|
+
// ],
|
|
28
|
+
// exports:
|
|
29
|
+
// [
|
|
30
|
+
// NgSelectEditDirective,
|
|
31
|
+
// EditNormalStateComponent,
|
|
32
|
+
// EditLiveSearchComponent,
|
|
33
|
+
// EditPopupComponent,
|
|
34
|
+
// EditKeyboardHandlerComponent
|
|
35
|
+
// ]
|
|
36
|
+
// })
|
|
37
|
+
// export class NgSelectEditModule
|
|
38
|
+
// {
|
|
39
|
+
// }
|
|
51
40
|
//# sourceMappingURL=ngSelectEdit.module.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ngSelectEdit.module.js","sourceRoot":"","sources":["../../../src/modules/ngSelectEdit.module.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"ngSelectEdit.module.js","sourceRoot":"","sources":["../../../src/modules/ngSelectEdit.module.ts"],"names":[],"mappings":";AAAA,0CAA0C;AAC1C,gDAAgD;AAEhD,uFAAuF;AACvF,kGAAkG;AAClG,+FAA+F;AAC/F,gFAAgF;AAChF,8GAA8G;AAC9G,oDAAoD;AAEpD,MAAM;AACN,kEAAkE;AAClE,MAAM;AACN,aAAa;AACb,IAAI;AACJ,eAAe;AACf,QAAQ;AACR,wBAAwB;AACxB,0BAA0B;AAC1B,iCAAiC;AACjC,SAAS;AACT,oBAAoB;AACpB,QAAQ;AACR,oCAAoC;AACpC,mCAAmC;AACnC,8BAA8B;AAC9B,uCAAuC;AACvC,SAAS;AACT,eAAe;AACf,QAAQ;AACR,iCAAiC;AACjC,oCAAoC;AACpC,mCAAmC;AACnC,8BAA8B;AAC9B,uCAAuC;AACvC,QAAQ;AACR,KAAK;AACL,kCAAkC;AAClC,IAAI;AACJ,IAAI","sourcesContent":["// import {NgModule} from '@angular/core';\n// import {CommonModule} from '@angular/common';\n\n// import {NgSelectEditDirective} from '../directives/selectEdit/selectEdit.directive';\n// import {EditNormalStateComponent} from '../plugins/normalState/edit/editNormalState.component';\n// import {EditLiveSearchComponent} from '../plugins/liveSearch/edit/editLiveSearch.component';\n// import {EditPopupComponent} from '../plugins/popup/edit/editPopup.component';\n// import {EditKeyboardHandlerComponent} from '../plugins/keyboardHandler/edit/editKeyboardHandler.component';\n// import {NgSelectModule} from './ngSelect.module';\n\n// /**\n// * Module for select with editation and tags (jira like select)\n// */\n// @NgModule(\n// {\n// imports:\n// [\n// CommonModule,\n// NgSelectModule,\n// NgSelectEditDirective,\n// ],\n// declarations:\n// [\n// EditNormalStateComponent,\n// EditLiveSearchComponent,\n// EditPopupComponent,\n// EditKeyboardHandlerComponent\n// ],\n// exports:\n// [\n// NgSelectEditDirective,\n// EditNormalStateComponent,\n// EditLiveSearchComponent,\n// EditPopupComponent,\n// EditKeyboardHandlerComponent\n// ]\n// })\n// export class NgSelectEditModule\n// {\n// }"]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Pipe } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Gets instance of select plugin from another plugin instance
|
|
5
|
+
*/
|
|
6
|
+
export class GetPlugin {
|
|
7
|
+
transform(plugin, pluginType) {
|
|
8
|
+
return plugin.selectPlugins[pluginType];
|
|
9
|
+
}
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetPlugin, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
11
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.5", ngImport: i0, type: GetPlugin, isStandalone: true, name: "getPlugin" }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: GetPlugin, decorators: [{
|
|
14
|
+
type: Pipe,
|
|
15
|
+
args: [{ name: 'getPlugin' }]
|
|
16
|
+
}] });
|
|
17
|
+
//# sourceMappingURL=getPlugin.pipe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getPlugin.pipe.js","sourceRoot":"","sources":["../../../../src/pipes/getPlugin/getPlugin.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAgB,MAAM,eAAe,CAAC;;AAKlD;;GAEG;AAEH,MAAM,OAAO,SAAS;IAkBX,SAAS,CAAsC,MAAoB,EAAE,UAAyC;QAEjH,OAAO,MAAM,CAAC,aAAa,CAAC,UAAU,CAAmB,CAAC;IAC9D,CAAC;8GArBQ,SAAS;4GAAT,SAAS;;2FAAT,SAAS;kBADrB,IAAI;mBAAC,EAAC,IAAI,EAAE,WAAW,EAAC","sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\n\nimport {SelectPluginType} from '../../misc/enums';\nimport {Interactions, KeyboardHandler, LiveSearch, NormalState, OptionsHandler, Popup, Positioner, ReadonlyState, ValueHandler, SelectPlugin} from '../../interfaces';\n\n/**\n * Gets instance of select plugin from another plugin instance\n */\n@Pipe({name: 'getPlugin'})\nexport class GetPlugin implements PipeTransform\n{\n //######################### public methods - implementation of PipeTransform #########################\n\n /**\n * Gets instance of select plugin from another plugin instance\n * @param plugin - Plugin instance from which plugin should be retrieved\n * @param pluginType - Name of plugin to be retrieved\n */\n public transform(plugin: SelectPlugin, pluginType: 'Interactions'): Interactions;\n public transform(plugin: SelectPlugin, pluginType: 'KeyboardHandler'): KeyboardHandler;\n public transform(plugin: SelectPlugin, pluginType: 'LiveSearch'): LiveSearch;\n public transform(plugin: SelectPlugin, pluginType: 'NormalState'): NormalState;\n public transform(plugin: SelectPlugin, pluginType: 'OptionsHandler'): OptionsHandler;\n public transform(plugin: SelectPlugin, pluginType: 'Popup'): Popup;\n public transform(plugin: SelectPlugin, pluginType: 'Positioner'): Positioner;\n public transform(plugin: SelectPlugin, pluginType: 'ReadonlyState'): ReadonlyState;\n public transform(plugin: SelectPlugin, pluginType: 'ValueHandler'): ValueHandler;\n public transform<PluginInstance extends SelectPlugin>(plugin: SelectPlugin, pluginType: keyof typeof SelectPluginType): PluginInstance\n {\n return plugin.selectPlugins[pluginType] as PluginInstance;\n }\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/pipes/index.ts"],"names":[],"mappings":"AAAA,cAAc,4BAA4B,CAAC;AAC3C,cAAc,sCAAsC,CAAC;AACrD,cAAc,gCAAgC,CAAC","sourcesContent":["export * from './getPlugin/getPlugin.pipe';\nexport * from './selectHasValue/selectHasValue.pipe';\nexport * from './selectValue/selectValue.pipe';\n"]}
|
|
@@ -4,8 +4,8 @@ import * as i0 from "@angular/core";
|
|
|
4
4
|
/**
|
|
5
5
|
* Pipe that checks whether select has currently any option
|
|
6
6
|
*/
|
|
7
|
-
export class
|
|
8
|
-
//######################### public methods #########################
|
|
7
|
+
export class SelectHasValuePipe {
|
|
8
|
+
//######################### public methods - implementation of PipeTransform #########################
|
|
9
9
|
/**
|
|
10
10
|
* Transforms selected option into boolean indication if there is option selected
|
|
11
11
|
* @param options - Selected options to be transformed into boolean
|
|
@@ -13,11 +13,11 @@ export class NgSelectHasValuePipe {
|
|
|
13
13
|
transform(options) {
|
|
14
14
|
return !(isBlank(options) || (Array.isArray(options) && !options.length));
|
|
15
15
|
}
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.
|
|
17
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: SelectHasValuePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
17
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.5", ngImport: i0, type: SelectHasValuePipe, isStandalone: true, name: "selectHasValue" }); }
|
|
18
18
|
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: SelectHasValuePipe, decorators: [{
|
|
20
20
|
type: Pipe,
|
|
21
|
-
args: [{ name: '
|
|
21
|
+
args: [{ name: 'selectHasValue' }]
|
|
22
22
|
}] });
|
|
23
|
-
//# sourceMappingURL=
|
|
23
|
+
//# sourceMappingURL=selectHasValue.pipe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectHasValue.pipe.js","sourceRoot":"","sources":["../../../../src/pipes/selectHasValue/selectHasValue.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAgB,MAAM,eAAe,CAAC;AAClD,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;;AAIvC;;GAEG;AAEH,MAAM,OAAO,kBAAkB;IAE3B,sGAAsG;IAEtG;;;OAGG;IACI,SAAS,CAAC,OAAyD;QAEtE,OAAO,CAAC,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC;IAC9E,CAAC;8GAXQ,kBAAkB;4GAAlB,kBAAkB;;2FAAlB,kBAAkB;kBAD9B,IAAI;mBAAC,EAAC,IAAI,EAAE,gBAAgB,EAAC","sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\nimport {isBlank} from '@jscrpt/common';\n\nimport {SelectOption} from '../../interfaces';\n\n/**\n * Pipe that checks whether select has currently any option\n */\n@Pipe({name: 'selectHasValue'})\nexport class SelectHasValuePipe<TValue = unknown> implements PipeTransform\n{\n //######################### public methods - implementation of PipeTransform #########################\n\n /**\n * Transforms selected option into boolean indication if there is option selected\n * @param options - Selected options to be transformed into boolean\n */\n public transform(options: SelectOption<TValue>|Array<SelectOption<TValue>>): boolean\n {\n return !(isBlank(options) || (Array.isArray(options) && !options.length));\n }\n}\n"]}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Pipe } from '@angular/core';
|
|
2
|
+
import { isBlank } from '@jscrpt/common';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Pipe to transform select selected option into
|
|
6
|
+
*/
|
|
7
|
+
export class SelectValuePipe {
|
|
8
|
+
//######################### public methods - implementation of PipeTransform #########################
|
|
9
|
+
/**
|
|
10
|
+
* Transforms selected option into string
|
|
11
|
+
* @param option - 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(option, nothingSelectedText, optionDisplayText = option => option.text()) {
|
|
16
|
+
if (isBlank(option) || (Array.isArray(option) && !option.length)) {
|
|
17
|
+
return nothingSelectedText;
|
|
18
|
+
}
|
|
19
|
+
if (Array.isArray(option)) {
|
|
20
|
+
return option.map(optionDisplayText).join(', ');
|
|
21
|
+
}
|
|
22
|
+
return optionDisplayText(option);
|
|
23
|
+
}
|
|
24
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: SelectValuePipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
25
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "21.1.5", ngImport: i0, type: SelectValuePipe, isStandalone: true, name: "selectValue" }); }
|
|
26
|
+
}
|
|
27
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: SelectValuePipe, decorators: [{
|
|
28
|
+
type: Pipe,
|
|
29
|
+
args: [{ name: 'selectValue' }]
|
|
30
|
+
}] });
|
|
31
|
+
//# sourceMappingURL=selectValue.pipe.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectValue.pipe.js","sourceRoot":"","sources":["../../../../src/pipes/selectValue/selectValue.pipe.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAgB,MAAM,eAAe,CAAC;AAClD,OAAO,EAAC,OAAO,EAAC,MAAM,gBAAgB,CAAC;;AAKvC;;GAEG;AAEH,MAAM,OAAO,eAAe;IAExB,sGAAsG;IAEtG;;;;;OAKG;IACI,SAAS,CAAC,MAAuE,EAAE,mBAA2B,EAAE,oBAA6C,MAAM,CAAC,EAAE,CAAC,MAAM,CAAC,IAAI,EAAE;QAEvL,IAAG,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,EAC/D,CAAC;YACG,OAAO,mBAAmB,CAAC;QAC/B,CAAC;QAED,IAAG,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,EACxB,CAAC;YACG,OAAO,MAAM,CAAC,GAAG,CAAC,iBAAiB,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACpD,CAAC;QAED,OAAO,iBAAiB,CAAC,MAAM,CAAC,CAAC;IACrC,CAAC;8GAvBQ,eAAe;4GAAf,eAAe;;2FAAf,eAAe;kBAD3B,IAAI;mBAAC,EAAC,IAAI,EAAE,aAAa,EAAC","sourcesContent":["import {Pipe, PipeTransform} from '@angular/core';\nimport {isBlank} from '@jscrpt/common';\n\nimport {SelectOption} from '../../interfaces';\nimport {DisplayTextFunc} from '../../misc/types';\n\n/**\n * Pipe to transform select selected option into\n */\n@Pipe({name: 'selectValue'})\nexport class SelectValuePipe<TValue = unknown> implements PipeTransform\n{\n //######################### public methods - implementation of PipeTransform #########################\n\n /**\n * Transforms selected option into string\n * @param option - Selected options to be transformed into text\n * @param nothingSelectedText - Text displayed if nothing is selected\n * @param optionDisplayText - Function used for transformation of option into display text, defaults to text property of option\n */\n public transform(option: SelectOption<TValue>|Array<SelectOption<TValue>>|undefined|null, nothingSelectedText: string, optionDisplayText: DisplayTextFunc<TValue> = option => option.text()): string\n {\n if(isBlank(option) || (Array.isArray(option) && !option.length))\n {\n return nothingSelectedText;\n }\n\n if(Array.isArray(option))\n {\n return option.map(optionDisplayText).join(', ');\n }\n\n return optionDisplayText(option);\n }\n}\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './interactions';
|
|
2
|
+
export * from './keyboardHandler';
|
|
3
|
+
export * from './liveSearch';
|
|
4
|
+
export * from './normalState';
|
|
5
|
+
export * from './optionsHandler';
|
|
6
|
+
export * from './popup';
|
|
7
|
+
export * from './positioner';
|
|
8
|
+
// export * from './readonlyState';
|
|
9
|
+
export * from './valueHandler';
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/plugins/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AACjC,cAAc,SAAS,CAAC;AACxB,cAAc,cAAc,CAAC;AAC7B,mCAAmC;AACnC,cAAc,gBAAgB,CAAC","sourcesContent":["export * from './interactions';\nexport * from './keyboardHandler';\nexport * from './liveSearch';\nexport * from './normalState';\nexport * from './optionsHandler';\nexport * from './popup';\nexport * from './positioner';\n// export * from './readonlyState';\nexport * from './valueHandler';\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/plugins/interactions/index.ts"],"names":[],"mappings":"AAAA,cAAc,2CAA2C,CAAC","sourcesContent":["export * from './noInteractions/noInteractions.component';\n"]}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Component, ElementRef } from '@angular/core';
|
|
2
|
+
import { SelectPluginInstances, SelectBus } from '../../../misc/classes';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../../misc/classes";
|
|
5
|
+
/**
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export class NoInteractionsComponent {
|
|
9
|
+
//######################### constructor #########################
|
|
10
|
+
constructor(pluginElement, selectPlugins, pluginBus) {
|
|
11
|
+
this.pluginElement = pluginElement;
|
|
12
|
+
this.selectPlugins = selectPlugins;
|
|
13
|
+
this.pluginBus = pluginBus;
|
|
14
|
+
}
|
|
15
|
+
//######################### public methods - implementation of SelectPlugin #########################
|
|
16
|
+
/**
|
|
17
|
+
* @inheritdoc
|
|
18
|
+
*/
|
|
19
|
+
initialize() {
|
|
20
|
+
}
|
|
21
|
+
/**
|
|
22
|
+
* @inheritdoc
|
|
23
|
+
*/
|
|
24
|
+
initOptions() {
|
|
25
|
+
}
|
|
26
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: NoInteractionsComponent, deps: [{ token: i0.ElementRef }, { token: i1.SelectPluginInstances }, { token: i1.SelectBus }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
27
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.5", type: NoInteractionsComponent, isStandalone: true, selector: "no-interactions", ngImport: i0, template: '', isInline: true }); }
|
|
28
|
+
}
|
|
29
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.5", ngImport: i0, type: NoInteractionsComponent, decorators: [{
|
|
30
|
+
type: Component,
|
|
31
|
+
args: [{
|
|
32
|
+
selector: 'no-interactions',
|
|
33
|
+
template: '',
|
|
34
|
+
}]
|
|
35
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.SelectPluginInstances }, { type: i1.SelectBus }] });
|
|
36
|
+
//# sourceMappingURL=noInteractions.component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"noInteractions.component.js","sourceRoot":"","sources":["../../../../../src/plugins/interactions/noInteractions/noInteractions.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,UAAU,EAAC,MAAM,eAAe,CAAC;AAGpD,OAAO,EAAC,qBAAqB,EAAE,SAAS,EAAC,MAAM,uBAAuB,CAAC;;;AAEvE;;GAEG;AAMH,MAAM,OAAO,uBAAuB;IAOhC,iEAAiE;IACjE,YAAmB,aAAsC,EACtC,aAAoC,EACpC,SAA6B;QAF7B,kBAAa,GAAb,aAAa,CAAyB;QACtC,kBAAa,GAAb,aAAa,CAAuB;QACpC,cAAS,GAAT,SAAS,CAAoB;IAGhD,CAAC;IAED,qGAAqG;IAErG;;OAEG;IACI,UAAU;IAEjB,CAAC;IAED;;OAEG;IACI,WAAW;IAElB,CAAC;8GA7BQ,uBAAuB;kGAAvB,uBAAuB,2EAFtB,EAAE;;2FAEH,uBAAuB;kBALnC,SAAS;mBACV;oBACI,QAAQ,EAAE,iBAAiB;oBAC3B,QAAQ,EAAE,EAAE;iBACf","sourcesContent":["import {Component, ElementRef} from '@angular/core';\n\nimport {Interactions} from '../../../interfaces';\nimport {SelectPluginInstances, SelectBus} from '../../../misc/classes';\n\n/**\n *\n */\n@Component(\n{\n selector: 'no-interactions',\n template: '',\n})\nexport class NoInteractionsComponent implements Interactions\n{\n /**\n * @inheritdoc\n */\n public options: unknown;\n\n //######################### constructor #########################\n constructor(public pluginElement: ElementRef<HTMLElement>,\n public selectPlugins: SelectPluginInstances,\n public pluginBus: SelectBus<unknown>,)\n {\n\n }\n\n //######################### public methods - implementation of SelectPlugin #########################\n\n /**\n * @inheritdoc\n */\n public initialize(): void\n {\n }\n\n /**\n * @inheritdoc\n */\n public initOptions(): void\n {\n }\n}\n"]}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/plugins/keyboardHandler/index.ts"],"names":[],"mappings":"AAAA,cAAc,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/plugins/keyboardHandler/index.ts"],"names":[],"mappings":"AAAA,cAAc,yDAAyD,CAAC","sourcesContent":["export * from './simpleKeyboardHandler/simpleKeyboardHandler.component';\n"]}
|