@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
package/src/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC;AAC7B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,eAAe,CAAC;AAC9B,cAAc,cAAc,CAAC;AAC7B,cAAc,WAAW,CAAC;AAC1B,cAAc,SAAS,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export * from './initState/initState.interface';
|
|
2
|
+
export * from './normalStateContext/normalStateContext.interface';
|
|
3
|
+
export * from './optionsGatherer/optionsGatherer.interface';
|
|
4
|
+
export * from './pluginDescription/pluginDescription.interface';
|
|
5
|
+
export * from './pluginOptions/pluginOptions.interface';
|
|
6
|
+
export * from './plugins';
|
|
7
|
+
export * from './popupContext/popupContext.interface';
|
|
8
|
+
export * from './selectApi/selectApi.interface';
|
|
9
|
+
export * from './selectBusOptions/selectBusOptions.interface';
|
|
10
|
+
export * from './selectCssClasses/selectCssClasses.interface';
|
|
11
|
+
export * from './selectEvent/selectEvent.interface';
|
|
12
|
+
export * from './selectEvents/selectEvents.interface';
|
|
13
|
+
export * from './selectOption/selectOption.interface';
|
|
14
|
+
export * from './selectOptionGroup/selectOptionGroup.interface';
|
|
15
|
+
export * from './selectOptions/selectOptions.interface';
|
|
16
|
+
export * from './selectPlugin/selectPlugin.interface';
|
|
17
|
+
export * from './selectPluginTypes/selectPluginTypes.interface';
|
|
18
|
+
export * from './templateGatherer/templateGatherer.interface';
|
|
19
|
+
export * from './visualPluginOptions/visualPluginOptions.interface';
|
|
20
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,iCAAiC,CAAC;AAChD,cAAc,mDAAmD,CAAC;AAClE,cAAc,6CAA6C,CAAC;AAC5D,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,WAAW,CAAC;AAC1B,cAAc,uCAAuC,CAAC;AACtD,cAAc,iCAAiC,CAAC;AAChD,cAAc,+CAA+C,CAAC;AAC9D,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qCAAqC,CAAC;AACpD,cAAc,uCAAuC,CAAC;AACtD,cAAc,uCAAuC,CAAC;AACtD,cAAc,iDAAiD,CAAC;AAChE,cAAc,yCAAyC,CAAC;AACxD,cAAc,uCAAuC,CAAC;AACtD,cAAc,iDAAiD,CAAC;AAChE,cAAc,+CAA+C,CAAC;AAC9D,cAAc,qDAAqD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"initState.interface.d.ts","sourceRoot":"","sources":["initState.interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,SAAS;IAItB;;OAEG;IACH,WAAW,EAAE,OAAO,CAAC;CACxB"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { NormalState } from '../plugins';
|
|
2
|
+
/**
|
|
3
|
+
* Context for template that is used within normal state plugin for rendering content
|
|
4
|
+
*/
|
|
5
|
+
export interface NormalStateContext {
|
|
6
|
+
/**
|
|
7
|
+
* Instance of plugin itself
|
|
8
|
+
*/
|
|
9
|
+
$implicit: NormalState;
|
|
10
|
+
}
|
|
11
|
+
//# sourceMappingURL=normalStateContext.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"normalStateContext.interface.d.ts","sourceRoot":"","sources":["normalStateContext.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,YAAY,CAAC;AAEvC;;GAEG;AACH,MAAM,WAAW,kBAAkB;IAE/B;;OAEG;IACH,SAAS,EAAE,WAAW,CAAC;CAC1B"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import { SelectOption } from '../selectOption/selectOption.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Gatherer used for obtaining options for select
|
|
5
|
+
*/
|
|
6
|
+
export interface OptionsGatherer<TValue = unknown> {
|
|
7
|
+
/**
|
|
8
|
+
* Array of all available options for select
|
|
9
|
+
*/
|
|
10
|
+
readonly availableOptions: Signal<readonly SelectOption<TValue>[] | undefined | null>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=optionsGatherer.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"optionsGatherer.interface.d.ts","sourceRoot":"","sources":["optionsGatherer.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,eAAe,CAAC;AAErC,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,eAAe,CAAC,MAAM,GAAG,OAAO;IAE7C;;OAEG;IACH,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,YAAY,CAAC,MAAM,CAAC,EAAE,GAAC,SAAS,GAAC,IAAI,CAAC,CAAC;CACrF"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Type } from '@angular/core';
|
|
2
|
+
import { SelectPlugin } from '../selectPlugin/selectPlugin.interface';
|
|
3
|
+
import { PluginOptions } from '../pluginOptions/pluginOptions.interface';
|
|
4
|
+
/**
|
|
5
|
+
* Description of plugin, used for creating plugin instance
|
|
6
|
+
*/
|
|
7
|
+
export interface PluginDescription<PluginType = unknown> {
|
|
8
|
+
/**
|
|
9
|
+
* Type of plugin that will be dynamically instantiated
|
|
10
|
+
*/
|
|
11
|
+
type: Type<PluginType> | undefined | null;
|
|
12
|
+
/**
|
|
13
|
+
* Options that will be passed to dynamically instantiated plugin
|
|
14
|
+
*/
|
|
15
|
+
options: PluginOptions | undefined | null;
|
|
16
|
+
/**
|
|
17
|
+
* Optional callback used for obtaining dynamic instance of plugin (allows direct communication with plugin)
|
|
18
|
+
*/
|
|
19
|
+
instanceCallback: ((instance: SelectPlugin | undefined | null) => void) | undefined | null;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=pluginDescription.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pluginDescription.interface.d.ts","sourceRoot":"","sources":["pluginDescription.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,IAAI,EAAC,MAAM,eAAe,CAAC;AAEnC,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAC,aAAa,EAAC,MAAM,0CAA0C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,iBAAiB,CAAC,UAAU,GAAG,OAAO;IAEnD;;OAEG;IACH,IAAI,EAAE,IAAI,CAAC,UAAU,CAAC,GAAC,SAAS,GAAC,IAAI,CAAC;IAEtC;;OAEG;IACH,OAAO,EAAE,aAAa,GAAC,SAAS,GAAC,IAAI,CAAC;IAEtC;;OAEG;IACH,gBAAgB,EAAE,CAAC,CAAC,QAAQ,EAAE,YAAY,GAAC,SAAS,GAAC,IAAI,KAAK,IAAI,CAAC,GAAC,SAAS,GAAC,IAAI,CAAC;CACtF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pluginOptions.interface.d.ts","sourceRoot":"","sources":["pluginOptions.interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,aAAa;CAE7B"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './interactions/interactions.interface';
|
|
2
|
+
export * from './keyboardHandler/keyboardHandler.interface';
|
|
3
|
+
export * from './liveSearch/liveSearch.interface';
|
|
4
|
+
export * from './normalState/normalState.interface';
|
|
5
|
+
export * from './optionsHandler/optionsHandler.interface';
|
|
6
|
+
export * from './popup/popup.interface';
|
|
7
|
+
export * from './positioner/positioner.interface';
|
|
8
|
+
export * from './readonlyState/readonlyState.interface';
|
|
9
|
+
export * from './valueHandler/valueHandler.interface';
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAAA,cAAc,uCAAuC,CAAC;AACtD,cAAc,6CAA6C,CAAC;AAC5D,cAAc,mCAAmC,CAAC;AAClD,cAAc,qCAAqC,CAAC;AACpD,cAAc,2CAA2C,CAAC;AAC1D,cAAc,yBAAyB,CAAC;AACxC,cAAc,mCAAmC,CAAC;AAClD,cAAc,yCAAyC,CAAC;AACxD,cAAc,uCAAuC,CAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PluginOptions } from '../../pluginOptions/pluginOptions.interface';
|
|
2
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Options for interactions plugin
|
|
5
|
+
*/
|
|
6
|
+
export interface InteractionsOptions extends PluginOptions {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Interactions plugin interface
|
|
10
|
+
*/
|
|
11
|
+
export interface Interactions extends SelectPlugin {
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=interactions.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"interactions.interface.d.ts","sourceRoot":"","sources":["interactions.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,aAAa;CAEzD;AAED;;GAEG;AACH,MAAM,WAAW,YAAa,SAAQ,YAAY;CAEjD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PluginOptions } from '../../pluginOptions/pluginOptions.interface';
|
|
2
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Options for keyboard handler plugin
|
|
5
|
+
*/
|
|
6
|
+
export interface KeyboardHandlerOptions extends PluginOptions {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Keyboard handler plugin interface
|
|
10
|
+
*/
|
|
11
|
+
export interface KeyboardHandler extends SelectPlugin {
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=keyboardHandler.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"keyboardHandler.interface.d.ts","sourceRoot":"","sources":["keyboardHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,sBAAuB,SAAQ,aAAa;CAE5D;AAED;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,YAAY;CAEpD"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PluginOptions } from '../../pluginOptions/pluginOptions.interface';
|
|
2
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Options for live search plugin
|
|
5
|
+
*/
|
|
6
|
+
export interface LiveSearchOptions extends PluginOptions {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Live search plugin interface
|
|
10
|
+
*/
|
|
11
|
+
export interface LiveSearch extends SelectPlugin {
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=liveSearch.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"liveSearch.interface.d.ts","sourceRoot":"","sources":["liveSearch.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,aAAa;CAEvD;AAED;;GAEG;AACH,MAAM,WAAW,UAAW,SAAQ,YAAY;CAE/C"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { DisplayTextFunc } from '../../../misc/types';
|
|
2
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
3
|
+
import { VisualPluginOptions } from '../../visualPluginOptions/visualPluginOptions.interface';
|
|
4
|
+
/**
|
|
5
|
+
* Texts that are used within NormalState
|
|
6
|
+
*/
|
|
7
|
+
export interface NormalStateTexts {
|
|
8
|
+
/**
|
|
9
|
+
* Displayed when there is no value selected, represents empty value, used if value is null or empty array
|
|
10
|
+
*/
|
|
11
|
+
nothingSelected: string;
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* Options for normal state plugin
|
|
15
|
+
*/
|
|
16
|
+
export interface NormalStateOptions<TValue = unknown, TCssClasses = unknown> extends VisualPluginOptions<TCssClasses> {
|
|
17
|
+
/**
|
|
18
|
+
* Texts that are used within any NormalState
|
|
19
|
+
*/
|
|
20
|
+
texts: NormalStateTexts;
|
|
21
|
+
/**
|
|
22
|
+
* Function used for transformation of option into display text
|
|
23
|
+
*/
|
|
24
|
+
optionDisplayText: DisplayTextFunc<TValue>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Normal state plugin interface
|
|
28
|
+
*/
|
|
29
|
+
export interface NormalState extends SelectPlugin {
|
|
30
|
+
}
|
|
31
|
+
//# sourceMappingURL=normalState.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"normalState.interface.d.ts","sourceRoot":"","sources":["normalState.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,eAAe,EAAC,MAAM,qBAAqB,CAAC;AACpD,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AACvE,OAAO,EAAC,mBAAmB,EAAC,MAAM,yDAAyD,CAAC;AAE5F;;GAEG;AACH,MAAM,WAAW,gBAAgB;IAE7B;;OAEG;IACH,eAAe,EAAE,MAAM,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB,CAAC,MAAM,GAAG,OAAO,EAAE,WAAW,GAAG,OAAO,CAAE,SAAQ,mBAAmB,CAAC,WAAW,CAAC;IAEjH;;OAEG;IACH,KAAK,EAAE,gBAAgB,CAAC;IAExB;;OAEG;IACH,iBAAiB,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;CAC9C;AAED;;GAEG;AACH,MAAM,WAAW,WAAY,SAAQ,YAAY;CAEhD"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import { PluginOptions } from '../../pluginOptions/pluginOptions.interface';
|
|
3
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
4
|
+
import { SelectOption } from '../../selectOption/selectOption.interface';
|
|
5
|
+
/**
|
|
6
|
+
* Options for options handler plugin
|
|
7
|
+
*/
|
|
8
|
+
export interface OptionsHandlerOptions extends PluginOptions {
|
|
9
|
+
}
|
|
10
|
+
/**
|
|
11
|
+
* Options handler plugin interface
|
|
12
|
+
*/
|
|
13
|
+
export interface OptionsHandler<TValue = unknown, TOptions extends OptionsHandlerOptions = OptionsHandlerOptions> extends SelectPlugin<TOptions, TValue> {
|
|
14
|
+
/**
|
|
15
|
+
* Array of options that are available for displaying in select
|
|
16
|
+
*/
|
|
17
|
+
readonly availableOptions: Signal<readonly SelectOption<TValue>[] | undefined | null>;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=optionsHandler.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"optionsHandler.interface.d.ts","sourceRoot":"","sources":["optionsHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,eAAe,CAAC;AAErC,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AACvE,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,aAAa;CAE3D;AAED;;GAEG;AACH,MAAM,WAAW,cAAc,CAAC,MAAM,GAAG,OAAO,EAAE,QAAQ,SAAS,qBAAqB,GAAG,qBAAqB,CAAE,SAAQ,YAAY,CAAC,QAAQ,EAAE,MAAM,CAAC;IAIpJ;;OAEG;IACH,QAAQ,CAAC,gBAAgB,EAAE,MAAM,CAAC,SAAS,YAAY,CAAC,MAAM,CAAC,EAAE,GAAC,SAAS,GAAC,IAAI,CAAC,CAAC;CACrF"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PluginOptions } from '../../pluginOptions/pluginOptions.interface';
|
|
2
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Options for popup plugin
|
|
5
|
+
*/
|
|
6
|
+
export interface PopupOptions extends PluginOptions {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Popup plugin interface
|
|
10
|
+
*/
|
|
11
|
+
export interface Popup extends SelectPlugin {
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=popup.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"popup.interface.d.ts","sourceRoot":"","sources":["popup.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,YAAa,SAAQ,aAAa;CAElD;AAED;;GAEG;AACH,MAAM,WAAW,KAAM,SAAQ,YAAY;CAE1C"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { PluginOptions } from '../../pluginOptions/pluginOptions.interface';
|
|
2
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Options for positioner plugin
|
|
5
|
+
*/
|
|
6
|
+
export interface PositionerOptions extends PluginOptions {
|
|
7
|
+
}
|
|
8
|
+
/**
|
|
9
|
+
* Positioner plugin interface
|
|
10
|
+
*/
|
|
11
|
+
export interface Positioner extends SelectPlugin {
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=positioner.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"positioner.interface.d.ts","sourceRoot":"","sources":["positioner.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,aAAa;CAEvD;AAED;;GAEG;AACH,MAAM,WAAW,UAAW,SAAQ,YAAY;CAE/C"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { NormalState, NormalStateOptions } from '../normalState/normalState.interface';
|
|
2
|
+
/**
|
|
3
|
+
* Options for readonly state plugin
|
|
4
|
+
*/
|
|
5
|
+
export interface ReadonlyStateOptions<TCssClasses = unknown> extends NormalStateOptions<TCssClasses> {
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Readonly state plugin interface
|
|
9
|
+
*/
|
|
10
|
+
export interface ReadonlyState extends NormalState {
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=readonlyState.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"readonlyState.interface.d.ts","sourceRoot":"","sources":["readonlyState.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAE,kBAAkB,EAAC,MAAM,sCAAsC,CAAC;AAErF;;GAEG;AACH,MAAM,WAAW,oBAAoB,CAAC,WAAW,GAAG,OAAO,CAAE,SAAQ,kBAAkB,CAAC,WAAW,CAAC;CAEnG;AAED;;GAEG;AACH,MAAM,WAAW,aAAc,SAAQ,WAAW;CAEjD"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import { PluginOptions } from '../../pluginOptions/pluginOptions.interface';
|
|
3
|
+
import { SelectPlugin } from '../../selectPlugin/selectPlugin.interface';
|
|
4
|
+
/**
|
|
5
|
+
* Options for value handler plugin
|
|
6
|
+
*/
|
|
7
|
+
export interface ValueHandlerOptions extends PluginOptions {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* Value handler plugin interface
|
|
11
|
+
*/
|
|
12
|
+
export interface ValueHandler<TValue = unknown, TOptions extends ValueHandlerOptions = ValueHandlerOptions> extends SelectPlugin<TOptions, TValue> {
|
|
13
|
+
/**
|
|
14
|
+
* Current selected value of Select
|
|
15
|
+
*/
|
|
16
|
+
readonly value: Signal<TValue | TValue[] | undefined | null>;
|
|
17
|
+
/**
|
|
18
|
+
* Sets value for Select
|
|
19
|
+
* @param value - Value to be set
|
|
20
|
+
*/
|
|
21
|
+
setValue(value: TValue | TValue[] | undefined | null): void;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=valueHandler.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"valueHandler.interface.d.ts","sourceRoot":"","sources":["valueHandler.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,eAAe,CAAC;AAErC,OAAO,EAAC,aAAa,EAAC,MAAM,6CAA6C,CAAC;AAC1E,OAAO,EAAC,YAAY,EAAC,MAAM,2CAA2C,CAAC;AAEvE;;GAEG;AACH,MAAM,WAAW,mBAAoB,SAAQ,aAAa;CAEzD;AAED;;GAEG;AACH,MAAM,WAAW,YAAY,CAAC,MAAM,GAAG,OAAO,EAAE,QAAQ,SAAS,mBAAmB,GAAG,mBAAmB,CAAE,SAAQ,YAAY,CAAC,QAAQ,EAAE,MAAM,CAAC;IAI9I;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,CAAC,MAAM,GAAC,MAAM,EAAE,GAAC,SAAS,GAAC,IAAI,CAAC,CAAC;IAIvD;;;OAGG;IACH,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAC,MAAM,EAAE,GAAC,SAAS,GAAC,IAAI,GAAG,IAAI,CAAC;CACzD"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Popup } from '../plugins';
|
|
2
|
+
import { SelectOption } from '../selectOption/selectOption.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Context for template that is used within popup plugin for rendering option
|
|
5
|
+
*/
|
|
6
|
+
export interface PopupContext {
|
|
7
|
+
/**
|
|
8
|
+
* Instance of plugin itself
|
|
9
|
+
*/
|
|
10
|
+
$implicit: SelectOption;
|
|
11
|
+
/**
|
|
12
|
+
* Instance of plugin itself
|
|
13
|
+
*/
|
|
14
|
+
popup: Popup;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=popupContext.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"popupContext.interface.d.ts","sourceRoot":"","sources":["popupContext.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAC,MAAM,YAAY,CAAC;AACjC,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,YAAY;IAEzB;;OAEG;IACH,SAAS,EAAE,YAAY,CAAC;IAExB;;OAEG;IACH,KAAK,EAAE,KAAK,CAAC;CAChB"}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Signal } from '@angular/core';
|
|
2
|
+
import { SelectOptions } from '../selectOptions/selectOptions.interface';
|
|
3
|
+
import { SelectPlugin } from '../selectPlugin/selectPlugin.interface';
|
|
4
|
+
import { SelectAction, SelectFunction } from '../../misc/types';
|
|
5
|
+
import { SelectEvents } from '../selectEvents/selectEvents.interface';
|
|
6
|
+
import { SelectPluginType } from '../../misc/enums';
|
|
7
|
+
import { Interactions, KeyboardHandler, LiveSearch, NormalState, OptionsHandler, Popup, Positioner, ReadonlyState, ValueHandler } from '../plugins';
|
|
8
|
+
import { SelectCssClasses } from '../selectCssClasses/selectCssClasses.interface';
|
|
9
|
+
/**
|
|
10
|
+
* Public API for Select
|
|
11
|
+
*/
|
|
12
|
+
export interface SelectApi<TValue = unknown, TCssClasses = SelectCssClasses> {
|
|
13
|
+
/**
|
|
14
|
+
* Gets information whether is select initialized or not, changes when Select is initialized or reinitialized, if value is false Select was not initialized yet
|
|
15
|
+
*/
|
|
16
|
+
readonly initialized: Signal<boolean>;
|
|
17
|
+
/**
|
|
18
|
+
* Gets or sets Select options
|
|
19
|
+
*/
|
|
20
|
+
selectOptions: SelectOptions<TValue, TCssClasses>;
|
|
21
|
+
/**
|
|
22
|
+
* Select public events, signal based
|
|
23
|
+
*/
|
|
24
|
+
readonly events: SelectEvents;
|
|
25
|
+
/**
|
|
26
|
+
* Gets instance of plugin by its type
|
|
27
|
+
* @param pluginType - Type of plugin
|
|
28
|
+
*/
|
|
29
|
+
getPlugin(pluginType: SelectPluginType.Interactions): Interactions;
|
|
30
|
+
getPlugin(pluginType: SelectPluginType.KeyboardHandler): KeyboardHandler;
|
|
31
|
+
getPlugin(pluginType: SelectPluginType.LiveSearch): LiveSearch;
|
|
32
|
+
getPlugin(pluginType: SelectPluginType.NormalState): NormalState;
|
|
33
|
+
getPlugin(pluginType: SelectPluginType.OptionsHandler): OptionsHandler;
|
|
34
|
+
getPlugin(pluginType: SelectPluginType.Popup): Popup;
|
|
35
|
+
getPlugin(pluginType: SelectPluginType.Positioner): Positioner;
|
|
36
|
+
getPlugin(pluginType: SelectPluginType.ReadonlyState): ReadonlyState;
|
|
37
|
+
getPlugin(pluginType: SelectPluginType.ValueHandler): ValueHandler;
|
|
38
|
+
getPlugin<PluginInstance extends SelectPlugin>(pluginType: SelectPluginType): PluginInstance;
|
|
39
|
+
/**
|
|
40
|
+
* Executes actions on Select
|
|
41
|
+
* @param actions - Array of actions that are executed over Select
|
|
42
|
+
*/
|
|
43
|
+
execute(...actions: SelectAction<TValue, TCssClasses>[]): void;
|
|
44
|
+
/**
|
|
45
|
+
* Executes function on Select and returns result
|
|
46
|
+
* @param func - Function that is executed and its result is returned
|
|
47
|
+
*/
|
|
48
|
+
executeAndReturn<TResult>(func: SelectFunction<TResult, TValue, TCssClasses>): TResult;
|
|
49
|
+
}
|
|
50
|
+
//# sourceMappingURL=selectApi.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectApi.interface.d.ts","sourceRoot":"","sources":["selectApi.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAC,MAAM,eAAe,CAAC;AAErC,OAAO,EAAC,aAAa,EAAC,MAAM,0CAA0C,CAAC;AACvE,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAC,YAAY,EAAE,cAAc,EAAC,MAAM,kBAAkB,CAAC;AAC9D,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AACpE,OAAO,EAAC,gBAAgB,EAAC,MAAM,kBAAkB,CAAC;AAClD,OAAO,EAAC,YAAY,EAAE,eAAe,EAAE,UAAU,EAAE,WAAW,EAAE,cAAc,EAAE,KAAK,EAAE,UAAU,EAAE,aAAa,EAAE,YAAY,EAAC,MAAM,YAAY,CAAC;AAClJ,OAAO,EAAC,gBAAgB,EAAC,MAAM,gDAAgD,CAAC;AAEhF;;GAEG;AACH,MAAM,WAAW,SAAS,CAAC,MAAM,GAAG,OAAO,EAAE,WAAW,GAAG,gBAAgB;IAEvE;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC;IAEtC;;OAEG;IACH,aAAa,EAAE,aAAa,CAAC,MAAM,EAAE,WAAW,CAAC,CAAC;IAElD;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,YAAY,CAAC;IAE9B;;;OAGG;IACH,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,YAAY,GAAG,YAAY,CAAC;IACnE,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,eAAe,GAAG,eAAe,CAAC;IACzE,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/D,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,WAAW,GAAG,WAAW,CAAC;IACjE,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,cAAc,GAAG,cAAc,CAAC;IACvE,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,KAAK,GAAG,KAAK,CAAC;IACrD,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,UAAU,GAAG,UAAU,CAAC;IAC/D,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,aAAa,GAAG,aAAa,CAAC;IACrE,SAAS,CAAC,UAAU,EAAE,gBAAgB,CAAC,YAAY,GAAG,YAAY,CAAC;IACnE,SAAS,CAAC,cAAc,SAAS,YAAY,EAAE,UAAU,EAAE,gBAAgB,GAAG,cAAc,CAAC;IAE7F;;;OAGG;IACH,OAAO,CAAC,GAAG,OAAO,EAAE,YAAY,CAAC,MAAM,EAAE,WAAW,CAAC,EAAE,GAAG,IAAI,CAAC;IAE/D;;;OAGG;IACH,gBAAgB,CAAC,OAAO,EAAE,IAAI,EAAE,cAAc,CAAC,OAAO,EAAE,MAAM,EAAE,WAAW,CAAC,GAAG,OAAO,CAAC;CAC1F"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ValueExtractorFunc } from '../../misc/types';
|
|
2
|
+
import { OptionsGatherer } from '../optionsGatherer/optionsGatherer.interface';
|
|
3
|
+
import { TemplateGatherer } from '../templateGatherer/templateGatherer.interface';
|
|
4
|
+
/**
|
|
5
|
+
* Options used for select bus
|
|
6
|
+
*/
|
|
7
|
+
export interface SelectBusOptions<TValue = unknown> {
|
|
8
|
+
/**
|
|
9
|
+
* Instance of options gatherer that is used for obtaining options
|
|
10
|
+
*/
|
|
11
|
+
optionsGatherer: OptionsGatherer<TValue>;
|
|
12
|
+
/**
|
|
13
|
+
* Instance of template gatherer used for obtaining custom templates
|
|
14
|
+
*/
|
|
15
|
+
templateGatherer: TemplateGatherer;
|
|
16
|
+
/**
|
|
17
|
+
* Indication whether is Select readonly or not
|
|
18
|
+
*/
|
|
19
|
+
readonly: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Indication that multiple values can be selected
|
|
22
|
+
*/
|
|
23
|
+
multiple: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Function used to extract value from option, if not provided, select option value will be used as value
|
|
26
|
+
*/
|
|
27
|
+
valueExtractor: ValueExtractorFunc<TValue>;
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=selectBusOptions.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectBusOptions.interface.d.ts","sourceRoot":"","sources":["selectBusOptions.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,kBAAkB,EAAC,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAC,eAAe,EAAC,MAAM,8CAA8C,CAAC;AAC7E,OAAO,EAAC,gBAAgB,EAAC,MAAM,gDAAgD,CAAC;AAEhF;;GAEG;AACH,MAAM,WAAW,gBAAgB,CAAC,MAAM,GAAG,OAAO;IAI9C;;OAEG;IACH,eAAe,EAAE,eAAe,CAAC,MAAM,CAAC,CAAC;IAEzC;;OAEG;IACH,gBAAgB,EAAE,gBAAgB,CAAC;IAEnC;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAOlB;;OAEG;IACH,cAAc,EAAE,kBAAkB,CAAC,MAAM,CAAC,CAAC;CAW9C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectCssClasses.interface.d.ts","sourceRoot":"","sources":["selectCssClasses.interface.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,WAAW,gBAAgB;CAEhC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { SelectApi } from '../selectApi/selectApi.interface';
|
|
2
|
+
import { SelectPlugin } from '../selectPlugin/selectPlugin.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Event that is used for 'void' events, storing information about source of event and source element
|
|
5
|
+
*/
|
|
6
|
+
export interface SelectEvent<TData = void> {
|
|
7
|
+
/**
|
|
8
|
+
* Html element that caused the event
|
|
9
|
+
*/
|
|
10
|
+
sourceElement: HTMLElement;
|
|
11
|
+
/**
|
|
12
|
+
* Instance of select or select plugin that caused event
|
|
13
|
+
*/
|
|
14
|
+
source: SelectApi | SelectPlugin;
|
|
15
|
+
/**
|
|
16
|
+
* Data passed with event that occured
|
|
17
|
+
*/
|
|
18
|
+
data?: TData;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=selectEvent.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectEvent.interface.d.ts","sourceRoot":"","sources":["selectEvent.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAC,MAAM,kCAAkC,CAAC;AAC3D,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,WAAW,CAAC,KAAK,GAAG,IAAI;IAErC;;OAEG;IACH,aAAa,EAAE,WAAW,CAAC;IAE3B;;OAEG;IACH,MAAM,EAAE,SAAS,GAAC,YAAY,CAAC;IAE/B;;OAEG;IACH,IAAI,CAAC,EAAE,KAAK,CAAC;CAChB"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Observable } from 'rxjs';
|
|
2
|
+
import { SelectEvent } from '../selectEvent/selectEvent.interface';
|
|
3
|
+
import { SelectOption } from '../selectOption/selectOption.interface';
|
|
4
|
+
/**
|
|
5
|
+
* Represents all events implemented by select bus
|
|
6
|
+
*/
|
|
7
|
+
export interface SelectEvents {
|
|
8
|
+
/**
|
|
9
|
+
* Occurs when popup visibility should be toggled
|
|
10
|
+
*/
|
|
11
|
+
readonly togglePopup: Observable<SelectEvent>;
|
|
12
|
+
/**
|
|
13
|
+
* Occurs when popup visibility should be changed
|
|
14
|
+
*/
|
|
15
|
+
readonly showHidePopup: Observable<SelectEvent<boolean>>;
|
|
16
|
+
/**
|
|
17
|
+
* Occurs when option should be selected
|
|
18
|
+
*/
|
|
19
|
+
readonly optionSelect: Observable<SelectEvent<SelectOption>>;
|
|
20
|
+
/**
|
|
21
|
+
* Occurs when option should be canceled
|
|
22
|
+
*/
|
|
23
|
+
readonly optionCancel: Observable<SelectEvent<SelectOption>>;
|
|
24
|
+
/**
|
|
25
|
+
* Occurs when any part of select gains focus
|
|
26
|
+
*/
|
|
27
|
+
readonly focus: Observable<SelectEvent>;
|
|
28
|
+
/**
|
|
29
|
+
* Occurs when live search should gain focus
|
|
30
|
+
*/
|
|
31
|
+
readonly liveSearchFocus: Observable<SelectEvent>;
|
|
32
|
+
/**
|
|
33
|
+
* Occurs when there is need for updating displayed value
|
|
34
|
+
*/
|
|
35
|
+
readonly updateDisplayedValue: Observable<SelectEvent>;
|
|
36
|
+
}
|
|
37
|
+
//# sourceMappingURL=selectEvents.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectEvents.interface.d.ts","sourceRoot":"","sources":["selectEvents.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,UAAU,EAAC,MAAM,MAAM,CAAC;AAEhC,OAAO,EAAC,WAAW,EAAC,MAAM,sCAAsC,CAAC;AACjE,OAAO,EAAC,YAAY,EAAC,MAAM,wCAAwC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,YAAY;IAIzB;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAE9C;;OAEG;IACH,QAAQ,CAAC,aAAa,EAAE,UAAU,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAAC;IAEzD;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,UAAU,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,CAAC;IAE7D;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,UAAU,CAAC,WAAW,CAAC,YAAY,CAAC,CAAC,CAAC;IAE7D;;OAEG;IACH,QAAQ,CAAC,KAAK,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAExC;;OAEG;IACH,QAAQ,CAAC,eAAe,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;IAElD;;OAEG;IACH,QAAQ,CAAC,oBAAoB,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC;CAC1D"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { Signal, WritableSignal } from '@angular/core';
|
|
2
|
+
import { SelectOptionGroup } from '../selectOptionGroup/selectOptionGroup.interface';
|
|
3
|
+
/**
|
|
4
|
+
* Option for select
|
|
5
|
+
*/
|
|
6
|
+
export interface SelectOption<TValue = unknown> {
|
|
7
|
+
/**
|
|
8
|
+
* Value that will be used if this option will be selected
|
|
9
|
+
*/
|
|
10
|
+
value: Signal<TValue | undefined | null>;
|
|
11
|
+
/**
|
|
12
|
+
* Text that is displayed if this value is selected
|
|
13
|
+
*/
|
|
14
|
+
text: Signal<string>;
|
|
15
|
+
/**
|
|
16
|
+
* If specified this option will be displayed in group
|
|
17
|
+
*/
|
|
18
|
+
group: Signal<SelectOptionGroup | undefined | null>;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* Option for ng select
|
|
22
|
+
*/
|
|
23
|
+
export interface ɵSelectOption<TValue = unknown> extends SelectOption<TValue> {
|
|
24
|
+
/**
|
|
25
|
+
* Indication whether is item active
|
|
26
|
+
*/
|
|
27
|
+
active: WritableSignal<boolean>;
|
|
28
|
+
/**
|
|
29
|
+
* Indication whether is this option selected
|
|
30
|
+
*/
|
|
31
|
+
selected: WritableSignal<boolean>;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=selectOption.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectOption.interface.d.ts","sourceRoot":"","sources":["selectOption.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAE,cAAc,EAAC,MAAM,eAAe,CAAC;AAErD,OAAO,EAAC,iBAAiB,EAAC,MAAM,kDAAkD,CAAC;AAEnF;;GAEG;AACH,MAAM,WAAW,YAAY,CAAC,MAAM,GAAG,OAAO;IAE1C;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC,MAAM,GAAC,SAAS,GAAC,IAAI,CAAC,CAAC;IAErC;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;IAErB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC,iBAAiB,GAAC,SAAS,GAAC,IAAI,CAAC,CAAC;CACnD;AAED;;GAEG;AACH,MAAM,WAAW,aAAa,CAAC,MAAM,GAAG,OAAO,CAAE,SAAQ,YAAY,CAAC,MAAM,CAAC;IAEzE;;OAEG;IACH,MAAM,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;IAEhC;;OAEG;IACH,QAAQ,EAAE,cAAc,CAAC,OAAO,CAAC,CAAC;CACrC"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Signal, TemplateRef } from '@angular/core';
|
|
2
|
+
/**
|
|
3
|
+
* Option group for Select
|
|
4
|
+
*/
|
|
5
|
+
export interface SelectOptionGroup {
|
|
6
|
+
/**
|
|
7
|
+
* Optional template to be used for rendering option group
|
|
8
|
+
*/
|
|
9
|
+
template: TemplateRef<{
|
|
10
|
+
$implicit: string;
|
|
11
|
+
}> | undefined | null;
|
|
12
|
+
/**
|
|
13
|
+
* Unique id of group
|
|
14
|
+
*/
|
|
15
|
+
readonly id: string;
|
|
16
|
+
/**
|
|
17
|
+
* Text that is displayed for this options group
|
|
18
|
+
*/
|
|
19
|
+
text: Signal<string>;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=selectOptionGroup.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectOptionGroup.interface.d.ts","sourceRoot":"","sources":["selectOptionGroup.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAE,WAAW,EAAC,MAAM,eAAe,CAAC;AAElD;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAE9B;;OAEG;IACH,QAAQ,EAAE,WAAW,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAC,CAAC,GAAC,SAAS,GAAC,IAAI,CAAC;IAE1D;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC;CACxB"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { SelectBusOptions } from '../selectBusOptions/selectBusOptions.interface';
|
|
2
|
+
import { SelectCssClasses } from '../selectCssClasses/selectCssClasses.interface';
|
|
3
|
+
import { SelectPluginTypes } from '../selectPluginTypes/selectPluginTypes.interface';
|
|
4
|
+
/**
|
|
5
|
+
* Describes select options used for Select
|
|
6
|
+
*/
|
|
7
|
+
export interface SelectOptions<TValue = unknown, TCssClasses = SelectCssClasses> extends SelectBusOptions<TValue> {
|
|
8
|
+
/**
|
|
9
|
+
* Css classes applied to select component
|
|
10
|
+
*/
|
|
11
|
+
cssClasses: TCssClasses;
|
|
12
|
+
/**
|
|
13
|
+
* Object defining overrides for default plugins, default plugins can be also specified using DI
|
|
14
|
+
*/
|
|
15
|
+
plugins: SelectPluginTypes;
|
|
16
|
+
/**
|
|
17
|
+
* Indication whether is 'Popup' plugin displayd inside of Select (false) or directly in Body (true)
|
|
18
|
+
*/
|
|
19
|
+
absolute: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* String that defines element in which should be absolute popup rendered, if not specified, body is used, used only if absolute is set to true, otherwise it has no effect
|
|
22
|
+
*
|
|
23
|
+
* Allows also css classes to be specified (div.body-box)
|
|
24
|
+
*/
|
|
25
|
+
containerElement: string | undefined | null;
|
|
26
|
+
}
|
|
27
|
+
//# sourceMappingURL=selectOptions.interface.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"selectOptions.interface.d.ts","sourceRoot":"","sources":["selectOptions.interface.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,gBAAgB,EAAC,MAAM,gDAAgD,CAAC;AAChF,OAAO,EAAC,gBAAgB,EAAC,MAAM,gDAAgD,CAAC;AAChF,OAAO,EAAC,iBAAiB,EAAC,MAAM,kDAAkD,CAAC;AAEnF;;GAEG;AACH,MAAM,WAAW,aAAa,CAAC,MAAM,GAAG,OAAO,EAAE,WAAW,GAAG,gBAAgB,CAAE,SAAQ,gBAAgB,CAAC,MAAM,CAAC;IAE7G;;OAEG;IACH,UAAU,EAAE,WAAW,CAAC;IAExB;;OAEG;IACH,OAAO,EAAE,iBAAiB,CAAC;IAE3B;;OAEG;IACH,QAAQ,EAAE,OAAO,CAAC;IAElB;;;;OAIG;IACH,gBAAgB,EAAE,MAAM,GAAC,SAAS,GAAC,IAAI,CAAC;CAC3C"}
|