@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.
Files changed (741) hide show
  1. package/changelog.md +153 -0
  2. package/es2022/extensions/src/extensions/getValue.js +16 -1
  3. package/es2022/extensions/src/extensions/getValue.js.map +1 -1
  4. package/es2022/extensions/src/extensions/onFocus.js +14 -1
  5. package/es2022/extensions/src/extensions/onFocus.js.map +1 -1
  6. package/es2022/extensions/src/extensions/patchOptions.js +15 -11
  7. package/es2022/extensions/src/extensions/patchOptions.js.map +1 -1
  8. package/es2022/extensions/src/extensions/reinitializeOptions.js +19 -14
  9. package/es2022/extensions/src/extensions/reinitializeOptions.js.map +1 -1
  10. package/es2022/extensions/src/extensions/setReadonly.js +21 -1
  11. package/es2022/extensions/src/extensions/setReadonly.js.map +1 -1
  12. package/es2022/extensions/src/extensions/setValue.js +17 -1
  13. package/es2022/extensions/src/extensions/setValue.js.map +1 -1
  14. package/es2022/extensions/src/extensions/valueChange.js +17 -1
  15. package/es2022/extensions/src/extensions/valueChange.js.map +1 -1
  16. package/es2022/extensions/src/index.js +1 -7
  17. package/es2022/extensions/src/index.js.map +1 -1
  18. package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.component.js +100 -72
  19. package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.component.js.map +1 -1
  20. package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.interface.js +26 -1
  21. package/es2022/material/src/components/basicDialogPopup/basicDialogPopup.interface.js.map +1 -1
  22. package/es2022/material/src/components/basicDialogPopup/index.js +2 -1
  23. package/es2022/material/src/components/basicDialogPopup/index.js.map +1 -1
  24. package/es2022/material/src/components/basicDialogPopup/types.js +2 -1
  25. package/es2022/material/src/components/basicDialogPopup/types.js.map +1 -1
  26. package/es2022/material/src/directives/dialogPopup/dialogPopup.directive.js +73 -74
  27. package/es2022/material/src/directives/dialogPopup/dialogPopup.directive.js.map +1 -1
  28. package/es2022/material/src/index.js +1 -7
  29. package/es2022/material/src/index.js.map +1 -1
  30. package/es2022/material/src/modules/dialogPopup.module.js +33 -40
  31. package/es2022/material/src/modules/dialogPopup.module.js.map +1 -1
  32. package/es2022/material/src/modules/virtualEditPopup.module.js +27 -30
  33. package/es2022/material/src/modules/virtualEditPopup.module.js.map +1 -1
  34. package/es2022/material/src/plugins/popup/dialog/dialogPopup.component.js +172 -140
  35. package/es2022/material/src/plugins/popup/dialog/dialogPopup.component.js.map +1 -1
  36. package/es2022/material/src/plugins/popup/dialog/dialogPopup.interface.js +65 -1
  37. package/es2022/material/src/plugins/popup/dialog/dialogPopup.interface.js.map +1 -1
  38. package/es2022/material/src/plugins/popup/index.js +1 -2
  39. package/es2022/material/src/plugins/popup/index.js.map +1 -1
  40. package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.js +120 -88
  41. package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.js.map +1 -1
  42. package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.js +20 -1
  43. package/es2022/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.js.map +1 -1
  44. package/es2022/src/components/index.js +4 -0
  45. package/es2022/src/components/index.js.map +1 -0
  46. package/es2022/src/components/option/option.component.js +22 -19
  47. package/es2022/src/components/option/option.component.js.map +1 -1
  48. package/es2022/src/components/optionGroup/optgroup.component.js +29 -0
  49. package/es2022/src/components/optionGroup/optgroup.component.js.map +1 -0
  50. package/es2022/src/components/select/select.component.js +356 -450
  51. package/es2022/src/components/select/select.component.js.map +1 -1
  52. package/es2022/src/decorators/index.js +2 -0
  53. package/es2022/src/decorators/index.js.map +1 -0
  54. package/es2022/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.js +12 -0
  55. package/es2022/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.js.map +1 -0
  56. package/es2022/src/directives/index.js +5 -0
  57. package/es2022/src/directives/index.js.map +1 -0
  58. package/es2022/src/directives/normalStateTemplate/normalStateTemplate.directive.js +30 -0
  59. package/es2022/src/directives/normalStateTemplate/normalStateTemplate.directive.js.map +1 -0
  60. package/es2022/src/directives/optionTemplate/optionTemplate.directive.js +30 -0
  61. package/es2022/src/directives/optionTemplate/optionTemplate.directive.js.map +1 -0
  62. package/es2022/src/directives/selectAbsolute/selectAbsolute.directive.js +25 -0
  63. package/es2022/src/directives/selectAbsolute/selectAbsolute.directive.js.map +1 -0
  64. package/es2022/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.js +210 -0
  65. package/es2022/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.js.map +1 -0
  66. package/es2022/src/directives/selectEdit/selectEdit.directive.js +51 -0
  67. package/es2022/src/directives/selectEdit/selectEdit.directive.js.map +1 -0
  68. package/es2022/src/directives/selectPlaceholder/selectPlaceholder.directive.js +48 -0
  69. package/es2022/src/directives/selectPlaceholder/selectPlaceholder.directive.js.map +1 -0
  70. package/es2022/src/directives/withDirectAccess/withDirectAccess.directive.js +17 -0
  71. package/es2022/src/directives/withDirectAccess/withDirectAccess.directive.js.map +1 -0
  72. package/es2022/src/index.js +8 -41
  73. package/es2022/src/index.js.map +1 -1
  74. package/es2022/src/interfaces/index.js +20 -0
  75. package/es2022/src/interfaces/index.js.map +1 -0
  76. package/es2022/src/interfaces/initState/initState.interface.js +2 -0
  77. package/es2022/src/interfaces/initState/initState.interface.js.map +1 -0
  78. package/es2022/src/interfaces/normalStateContext/normalStateContext.interface.js +2 -0
  79. package/es2022/src/interfaces/normalStateContext/normalStateContext.interface.js.map +1 -0
  80. package/es2022/src/interfaces/optionsGatherer/optionsGatherer.interface.js +2 -0
  81. package/es2022/src/interfaces/optionsGatherer/optionsGatherer.interface.js.map +1 -0
  82. package/es2022/src/interfaces/pluginDescription/pluginDescription.interface.js +2 -0
  83. package/es2022/src/interfaces/pluginDescription/pluginDescription.interface.js.map +1 -0
  84. package/es2022/src/interfaces/pluginOptions/pluginOptions.interface.js +2 -0
  85. package/es2022/src/interfaces/pluginOptions/pluginOptions.interface.js.map +1 -0
  86. package/es2022/src/interfaces/plugins/index.js +10 -0
  87. package/es2022/src/interfaces/plugins/index.js.map +1 -0
  88. package/es2022/src/interfaces/plugins/interactions/interactions.interface.js +2 -0
  89. package/es2022/src/interfaces/plugins/interactions/interactions.interface.js.map +1 -0
  90. package/es2022/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.js.map +1 -0
  91. package/es2022/src/interfaces/plugins/liveSearch/liveSearch.interface.js.map +1 -0
  92. package/es2022/src/interfaces/plugins/normalState/normalState.interface.js.map +1 -0
  93. package/es2022/src/interfaces/plugins/optionsHandler/optionsHandler.interface.js +2 -0
  94. package/es2022/src/interfaces/plugins/optionsHandler/optionsHandler.interface.js.map +1 -0
  95. package/es2022/src/interfaces/plugins/popup/popup.interface.js.map +1 -0
  96. package/es2022/src/interfaces/plugins/positioner/positioner.interface.js.map +1 -0
  97. package/es2022/src/interfaces/plugins/readonlyState/readonlyState.interface.js.map +1 -0
  98. package/es2022/src/interfaces/plugins/valueHandler/valueHandler.interface.js.map +1 -0
  99. package/es2022/src/interfaces/popupContext/popupContext.interface.js +2 -0
  100. package/es2022/src/interfaces/popupContext/popupContext.interface.js.map +1 -0
  101. package/es2022/src/interfaces/selectApi/selectApi.interface.js +2 -0
  102. package/es2022/src/interfaces/selectApi/selectApi.interface.js.map +1 -0
  103. package/es2022/src/interfaces/selectBusOptions/selectBusOptions.interface.js +2 -0
  104. package/es2022/src/interfaces/selectBusOptions/selectBusOptions.interface.js.map +1 -0
  105. package/es2022/src/interfaces/selectCssClasses/selectCssClasses.interface.js +2 -0
  106. package/es2022/src/interfaces/selectCssClasses/selectCssClasses.interface.js.map +1 -0
  107. package/es2022/src/interfaces/selectEvent/selectEvent.interface.js +2 -0
  108. package/es2022/src/interfaces/selectEvent/selectEvent.interface.js.map +1 -0
  109. package/es2022/src/interfaces/selectEvents/selectEvents.interface.js +2 -0
  110. package/es2022/src/interfaces/selectEvents/selectEvents.interface.js.map +1 -0
  111. package/es2022/src/interfaces/selectOption/selectOption.interface.js +2 -0
  112. package/es2022/src/interfaces/selectOption/selectOption.interface.js.map +1 -0
  113. package/es2022/src/interfaces/selectOptionGroup/selectOptionGroup.interface.js +2 -0
  114. package/es2022/src/interfaces/selectOptionGroup/selectOptionGroup.interface.js.map +1 -0
  115. package/es2022/src/interfaces/selectOptions/selectOptions.interface.js +2 -0
  116. package/es2022/src/interfaces/selectOptions/selectOptions.interface.js.map +1 -0
  117. package/es2022/src/interfaces/selectPlugin/selectPlugin.interface.js +2 -0
  118. package/es2022/src/interfaces/selectPlugin/selectPlugin.interface.js.map +1 -0
  119. package/es2022/src/interfaces/selectPluginTypes/selectPluginTypes.interface.js +2 -0
  120. package/es2022/src/interfaces/selectPluginTypes/selectPluginTypes.interface.js.map +1 -0
  121. package/es2022/src/interfaces/templateGatherer/templateGatherer.interface.js.map +1 -0
  122. package/es2022/src/interfaces/visualPluginOptions/visualPluginOptions.interface.js +2 -0
  123. package/es2022/src/interfaces/visualPluginOptions/visualPluginOptions.interface.js.map +1 -0
  124. package/es2022/src/misc/classes/index.js +3 -0
  125. package/es2022/src/misc/classes/index.js.map +1 -0
  126. package/es2022/src/misc/{pluginBus/pluginBus.js → classes/selectBus/selectBus.js} +17 -8
  127. package/es2022/src/misc/classes/selectBus/selectBus.js.map +1 -0
  128. package/es2022/src/misc/classes/selectPluginInstances/selectPluginInstances.js +163 -0
  129. package/es2022/src/misc/classes/selectPluginInstances/selectPluginInstances.js.map +1 -0
  130. package/es2022/src/misc/enums.js +43 -0
  131. package/es2022/src/misc/enums.js.map +1 -0
  132. package/es2022/src/misc/extensions/getValue.js +16 -11
  133. package/es2022/src/misc/extensions/getValue.js.map +1 -1
  134. package/es2022/src/misc/extensions/index.js +6 -5
  135. package/es2022/src/misc/extensions/index.js.map +1 -1
  136. package/es2022/src/misc/extensions/onFocus.js +14 -9
  137. package/es2022/src/misc/extensions/onFocus.js.map +1 -1
  138. package/es2022/src/misc/extensions/setReadonly.js +22 -17
  139. package/es2022/src/misc/extensions/setReadonly.js.map +1 -1
  140. package/es2022/src/misc/extensions/setValue.js +17 -12
  141. package/es2022/src/misc/extensions/setValue.js.map +1 -1
  142. package/es2022/src/misc/extensions/valueChange.js +17 -11
  143. package/es2022/src/misc/extensions/valueChange.js.map +1 -1
  144. package/es2022/src/misc/ngSelectOptions.interface.js.map +1 -1
  145. package/es2022/src/misc/optionsGatherer/codeOptionsGatherer.js +119 -82
  146. package/es2022/src/misc/optionsGatherer/codeOptionsGatherer.js.map +1 -1
  147. package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.js +31 -1
  148. package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.js.map +1 -1
  149. package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.js +178 -117
  150. package/es2022/src/misc/optionsGatherer/dynamicOptionsGatherer.js.map +1 -1
  151. package/es2022/src/misc/optionsGatherer/excludingOptionsGatherer.js +155 -109
  152. package/es2022/src/misc/optionsGatherer/excludingOptionsGatherer.js.map +1 -1
  153. package/es2022/src/misc/optionsGatherer/optionsGatherer.interface.js +55 -1
  154. package/es2022/src/misc/optionsGatherer/optionsGatherer.interface.js.map +1 -1
  155. package/es2022/src/misc/optionsGatherer/types.js +4 -3
  156. package/es2022/src/misc/optionsGatherer/types.js.map +1 -1
  157. package/es2022/src/misc/providers.js +102 -0
  158. package/es2022/src/misc/providers.js.map +1 -0
  159. package/es2022/src/misc/tokens.js +78 -0
  160. package/es2022/src/misc/tokens.js.map +1 -0
  161. package/es2022/src/misc/types.js +1 -33
  162. package/es2022/src/misc/types.js.map +1 -1
  163. package/es2022/src/modules/index.js +2 -0
  164. package/es2022/src/modules/index.js.map +1 -0
  165. package/es2022/src/modules/ngSelect.module.js +31 -75
  166. package/es2022/src/modules/ngSelect.module.js.map +1 -1
  167. package/es2022/src/modules/ngSelectEdit.module.js +39 -50
  168. package/es2022/src/modules/ngSelectEdit.module.js.map +1 -1
  169. package/es2022/src/pipes/getPlugin/getPlugin.pipe.js +17 -0
  170. package/es2022/src/pipes/getPlugin/getPlugin.pipe.js.map +1 -0
  171. package/es2022/src/pipes/index.js +4 -0
  172. package/es2022/src/pipes/index.js.map +1 -0
  173. package/es2022/src/pipes/{ngSelectHasValue.pipe.js → selectHasValue/selectHasValue.pipe.js} +7 -7
  174. package/es2022/src/pipes/selectHasValue/selectHasValue.pipe.js.map +1 -0
  175. package/es2022/src/pipes/selectValue/selectValue.pipe.js +31 -0
  176. package/es2022/src/pipes/selectValue/selectValue.pipe.js.map +1 -0
  177. package/es2022/src/plugins/index.js +10 -0
  178. package/es2022/src/plugins/index.js.map +1 -0
  179. package/es2022/src/plugins/interactions/index.js +2 -0
  180. package/es2022/src/plugins/interactions/index.js.map +1 -0
  181. package/es2022/src/plugins/interactions/noInteractions/noInteractions.component.js +36 -0
  182. package/es2022/src/plugins/interactions/noInteractions/noInteractions.component.js.map +1 -0
  183. package/es2022/src/plugins/keyboardHandler/index.js +1 -3
  184. package/es2022/src/plugins/keyboardHandler/index.js.map +1 -1
  185. package/es2022/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.js +36 -0
  186. package/es2022/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.js.map +1 -0
  187. package/es2022/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.js +36 -0
  188. package/es2022/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.js.map +1 -0
  189. package/es2022/src/plugins/liveSearch/index.js +2 -4
  190. package/es2022/src/plugins/liveSearch/index.js.map +1 -1
  191. package/es2022/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.js +36 -0
  192. package/es2022/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.js.map +1 -0
  193. package/es2022/src/plugins/normalState/index.js +1 -3
  194. package/es2022/src/plugins/normalState/index.js.map +1 -1
  195. package/es2022/src/plugins/normalState/simpleNormalState/simpleNormalState.component.js +36 -0
  196. package/es2022/src/plugins/normalState/simpleNormalState/simpleNormalState.component.js.map +1 -0
  197. package/es2022/src/plugins/optionsHandler/index.js +2 -0
  198. package/es2022/src/plugins/optionsHandler/index.js.map +1 -0
  199. package/es2022/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.js +50 -0
  200. package/es2022/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.js.map +1 -0
  201. package/es2022/src/plugins/popup/index.js +1 -3
  202. package/es2022/src/plugins/popup/index.js.map +1 -1
  203. package/es2022/src/plugins/popup/simplePopup/simplePopup.component.js +36 -0
  204. package/es2022/src/plugins/popup/simplePopup/simplePopup.component.js.map +1 -0
  205. package/es2022/src/plugins/positioner/basicPositioner/basicPositioner.component.js +36 -0
  206. package/es2022/src/plugins/positioner/basicPositioner/basicPositioner.component.js.map +1 -0
  207. package/es2022/src/plugins/positioner/index.js +1 -3
  208. package/es2022/src/plugins/positioner/index.js.map +1 -1
  209. package/es2022/src/plugins/readonlyState/index.js +1 -1
  210. package/es2022/src/plugins/readonlyState/index.js.map +1 -1
  211. package/es2022/src/plugins/valueHandler/index.js +1 -4
  212. package/es2022/src/plugins/valueHandler/index.js.map +1 -1
  213. package/es2022/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.js +81 -0
  214. package/es2022/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.js.map +1 -0
  215. package/extensions/src/extensions/getValue.d.ts +0 -1
  216. package/extensions/src/extensions/getValue.d.ts.map +1 -1
  217. package/extensions/src/extensions/onFocus.d.ts +0 -1
  218. package/extensions/src/extensions/onFocus.d.ts.map +1 -1
  219. package/extensions/src/extensions/patchOptions.d.ts +0 -6
  220. package/extensions/src/extensions/patchOptions.d.ts.map +1 -1
  221. package/extensions/src/extensions/reinitializeOptions.d.ts +0 -6
  222. package/extensions/src/extensions/reinitializeOptions.d.ts.map +1 -1
  223. package/extensions/src/extensions/setReadonly.d.ts +0 -1
  224. package/extensions/src/extensions/setReadonly.d.ts.map +1 -1
  225. package/extensions/src/extensions/setValue.d.ts +0 -1
  226. package/extensions/src/extensions/setValue.d.ts.map +1 -1
  227. package/extensions/src/extensions/valueChange.d.ts +0 -1
  228. package/extensions/src/extensions/valueChange.d.ts.map +1 -1
  229. package/extensions/src/index.d.ts +1 -7
  230. package/extensions/src/index.d.ts.map +1 -1
  231. package/material/src/components/basicDialogPopup/basicDialogPopup.component.d.ts +0 -46
  232. package/material/src/components/basicDialogPopup/basicDialogPopup.component.d.ts.map +1 -1
  233. package/material/src/components/basicDialogPopup/basicDialogPopup.interface.d.ts +0 -23
  234. package/material/src/components/basicDialogPopup/basicDialogPopup.interface.d.ts.map +1 -1
  235. package/material/src/components/basicDialogPopup/index.d.ts +0 -1
  236. package/material/src/components/basicDialogPopup/index.d.ts.map +1 -1
  237. package/material/src/components/basicDialogPopup/types.d.ts +0 -1
  238. package/material/src/components/basicDialogPopup/types.d.ts.map +1 -1
  239. package/material/src/directives/dialogPopup/dialogPopup.directive.d.ts +0 -26
  240. package/material/src/directives/dialogPopup/dialogPopup.directive.d.ts.map +1 -1
  241. package/material/src/index.d.ts +1 -7
  242. package/material/src/index.d.ts.map +1 -1
  243. package/material/src/modules/dialogPopup.module.d.ts +0 -14
  244. package/material/src/modules/dialogPopup.module.d.ts.map +1 -1
  245. package/material/src/modules/virtualEditPopup.module.d.ts +0 -12
  246. package/material/src/modules/virtualEditPopup.module.d.ts.map +1 -1
  247. package/material/src/plugins/popup/dialog/dialogPopup.component.d.ts +0 -82
  248. package/material/src/plugins/popup/dialog/dialogPopup.component.d.ts.map +1 -1
  249. package/material/src/plugins/popup/dialog/dialogPopup.interface.d.ts +0 -59
  250. package/material/src/plugins/popup/dialog/dialogPopup.interface.d.ts.map +1 -1
  251. package/material/src/plugins/popup/index.d.ts +1 -2
  252. package/material/src/plugins/popup/index.d.ts.map +1 -1
  253. package/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.d.ts +0 -29
  254. package/material/src/plugins/popup/virtualEdit/virtualEditPopup.component.d.ts.map +1 -1
  255. package/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.d.ts +0 -16
  256. package/material/src/plugins/popup/virtualEdit/virtualEditPopup.interface.d.ts.map +1 -1
  257. package/package.json +27 -19
  258. package/src/components/index.d.ts +4 -0
  259. package/src/components/index.d.ts.map +1 -0
  260. package/src/components/option/option.component.d.ts +15 -14
  261. package/src/components/option/option.component.d.ts.map +1 -1
  262. package/src/components/optionGroup/optgroup.component.d.ts +25 -0
  263. package/src/components/optionGroup/optgroup.component.d.ts.map +1 -0
  264. package/src/components/select/select.component.css +5 -0
  265. package/src/components/select/select.component.d.ts +94 -179
  266. package/src/components/select/select.component.d.ts.map +1 -1
  267. package/src/components/select/select.component.html +10 -16
  268. package/src/decorators/index.d.ts +2 -0
  269. package/src/{components/select → decorators}/index.d.ts.map +1 -1
  270. package/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.d.ts +5 -0
  271. package/src/decorators/mergeOptionsAsSignal/mergeOptionsAsSignal.decorator.d.ts.map +1 -0
  272. package/src/directives/index.d.ts +5 -0
  273. package/src/directives/index.d.ts.map +1 -0
  274. package/src/directives/normalStateTemplate/normalStateTemplate.directive.d.ts +19 -0
  275. package/src/directives/normalStateTemplate/normalStateTemplate.directive.d.ts.map +1 -0
  276. package/src/directives/optionTemplate/optionTemplate.directive.d.ts +19 -0
  277. package/src/directives/optionTemplate/optionTemplate.directive.d.ts.map +1 -0
  278. package/src/directives/selectAbsolute/selectAbsolute.directive.d.ts +12 -0
  279. package/src/directives/selectAbsolute/selectAbsolute.directive.d.ts.map +1 -0
  280. package/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.d.ts +1 -0
  281. package/src/directives/selectControlValueAccessor/selectControlValueAccessor.directive.d.ts.map +1 -0
  282. package/src/directives/selectEdit/selectEdit.directive.d.ts +1 -0
  283. package/src/directives/selectEdit/selectEdit.directive.d.ts.map +1 -0
  284. package/src/directives/selectPlaceholder/selectPlaceholder.directive.d.ts +1 -0
  285. package/src/directives/selectPlaceholder/selectPlaceholder.directive.d.ts.map +1 -0
  286. package/src/directives/withDirectAccess/withDirectAccess.directive.d.ts +9 -0
  287. package/src/directives/withDirectAccess/withDirectAccess.directive.d.ts.map +1 -0
  288. package/src/index.d.ts +8 -41
  289. package/src/index.d.ts.map +1 -1
  290. package/src/interfaces/index.d.ts +20 -0
  291. package/src/interfaces/index.d.ts.map +1 -0
  292. package/src/interfaces/initState/initState.interface.d.ts +10 -0
  293. package/src/interfaces/initState/initState.interface.d.ts.map +1 -0
  294. package/src/interfaces/normalStateContext/normalStateContext.interface.d.ts +11 -0
  295. package/src/interfaces/normalStateContext/normalStateContext.interface.d.ts.map +1 -0
  296. package/src/interfaces/optionsGatherer/optionsGatherer.interface.d.ts +12 -0
  297. package/src/interfaces/optionsGatherer/optionsGatherer.interface.d.ts.map +1 -0
  298. package/src/interfaces/pluginDescription/pluginDescription.interface.d.ts +21 -0
  299. package/src/interfaces/pluginDescription/pluginDescription.interface.d.ts.map +1 -0
  300. package/src/interfaces/pluginOptions/pluginOptions.interface.d.ts +6 -0
  301. package/src/interfaces/pluginOptions/pluginOptions.interface.d.ts.map +1 -0
  302. package/src/interfaces/plugins/index.d.ts +10 -0
  303. package/src/interfaces/plugins/index.d.ts.map +1 -0
  304. package/src/interfaces/plugins/interactions/interactions.interface.d.ts +13 -0
  305. package/src/interfaces/plugins/interactions/interactions.interface.d.ts.map +1 -0
  306. package/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.d.ts +13 -0
  307. package/src/interfaces/plugins/keyboardHandler/keyboardHandler.interface.d.ts.map +1 -0
  308. package/src/interfaces/plugins/liveSearch/liveSearch.interface.d.ts +13 -0
  309. package/src/interfaces/plugins/liveSearch/liveSearch.interface.d.ts.map +1 -0
  310. package/src/interfaces/plugins/normalState/normalState.interface.d.ts +31 -0
  311. package/src/interfaces/plugins/normalState/normalState.interface.d.ts.map +1 -0
  312. package/src/interfaces/plugins/optionsHandler/optionsHandler.interface.d.ts +19 -0
  313. package/src/interfaces/plugins/optionsHandler/optionsHandler.interface.d.ts.map +1 -0
  314. package/src/interfaces/plugins/popup/popup.interface.d.ts +13 -0
  315. package/src/interfaces/plugins/popup/popup.interface.d.ts.map +1 -0
  316. package/src/interfaces/plugins/positioner/positioner.interface.d.ts +13 -0
  317. package/src/interfaces/plugins/positioner/positioner.interface.d.ts.map +1 -0
  318. package/src/interfaces/plugins/readonlyState/readonlyState.interface.d.ts +12 -0
  319. package/src/interfaces/plugins/readonlyState/readonlyState.interface.d.ts.map +1 -0
  320. package/src/interfaces/plugins/valueHandler/valueHandler.interface.d.ts +23 -0
  321. package/src/interfaces/plugins/valueHandler/valueHandler.interface.d.ts.map +1 -0
  322. package/src/interfaces/popupContext/popupContext.interface.d.ts +16 -0
  323. package/src/interfaces/popupContext/popupContext.interface.d.ts.map +1 -0
  324. package/src/interfaces/selectApi/selectApi.interface.d.ts +50 -0
  325. package/src/interfaces/selectApi/selectApi.interface.d.ts.map +1 -0
  326. package/src/interfaces/selectBusOptions/selectBusOptions.interface.d.ts +29 -0
  327. package/src/interfaces/selectBusOptions/selectBusOptions.interface.d.ts.map +1 -0
  328. package/src/interfaces/selectCssClasses/selectCssClasses.interface.d.ts +6 -0
  329. package/src/interfaces/selectCssClasses/selectCssClasses.interface.d.ts.map +1 -0
  330. package/src/interfaces/selectEvent/selectEvent.interface.d.ts +20 -0
  331. package/src/interfaces/selectEvent/selectEvent.interface.d.ts.map +1 -0
  332. package/src/interfaces/selectEvents/selectEvents.interface.d.ts +37 -0
  333. package/src/interfaces/selectEvents/selectEvents.interface.d.ts.map +1 -0
  334. package/src/interfaces/selectOption/selectOption.interface.d.ts +33 -0
  335. package/src/interfaces/selectOption/selectOption.interface.d.ts.map +1 -0
  336. package/src/interfaces/selectOptionGroup/selectOptionGroup.interface.d.ts +21 -0
  337. package/src/interfaces/selectOptionGroup/selectOptionGroup.interface.d.ts.map +1 -0
  338. package/src/interfaces/selectOptions/selectOptions.interface.d.ts +27 -0
  339. package/src/interfaces/selectOptions/selectOptions.interface.d.ts.map +1 -0
  340. package/src/interfaces/selectPlugin/selectPlugin.interface.d.ts +33 -0
  341. package/src/interfaces/selectPlugin/selectPlugin.interface.d.ts.map +1 -0
  342. package/src/interfaces/selectPluginTypes/selectPluginTypes.interface.d.ts +44 -0
  343. package/src/interfaces/selectPluginTypes/selectPluginTypes.interface.d.ts.map +1 -0
  344. package/src/interfaces/templateGatherer/templateGatherer.interface.d.ts +17 -0
  345. package/src/interfaces/templateGatherer/templateGatherer.interface.d.ts.map +1 -0
  346. package/src/interfaces/visualPluginOptions/visualPluginOptions.interface.d.ts +11 -0
  347. package/src/interfaces/visualPluginOptions/visualPluginOptions.interface.d.ts.map +1 -0
  348. package/src/misc/classes/index.d.ts +3 -0
  349. package/src/misc/classes/index.d.ts.map +1 -0
  350. package/src/misc/classes/selectBus/selectBus.d.ts +54 -0
  351. package/src/misc/classes/selectBus/selectBus.d.ts.map +1 -0
  352. package/src/misc/classes/selectPluginInstances/selectPluginInstances.d.ts +90 -0
  353. package/src/misc/classes/selectPluginInstances/selectPluginInstances.d.ts.map +1 -0
  354. package/src/misc/enums.d.ts +42 -0
  355. package/src/misc/enums.d.ts.map +1 -0
  356. package/src/misc/extensions/getValue.d.ts +0 -6
  357. package/src/misc/extensions/getValue.d.ts.map +1 -1
  358. package/src/misc/extensions/index.d.ts +0 -5
  359. package/src/misc/extensions/index.d.ts.map +1 -1
  360. package/src/misc/extensions/onFocus.d.ts +0 -7
  361. package/src/misc/extensions/onFocus.d.ts.map +1 -1
  362. package/src/misc/extensions/setReadonly.d.ts +0 -7
  363. package/src/misc/extensions/setReadonly.d.ts.map +1 -1
  364. package/src/misc/extensions/setValue.d.ts +0 -7
  365. package/src/misc/extensions/setValue.d.ts.map +1 -1
  366. package/src/misc/extensions/valueChange.d.ts +0 -7
  367. package/src/misc/extensions/valueChange.d.ts.map +1 -1
  368. package/src/misc/ngSelectOptions.interface.d.ts +0 -71
  369. package/src/misc/ngSelectOptions.interface.d.ts.map +1 -1
  370. package/src/misc/optionsGatherer/codeOptionsGatherer.d.ts +0 -69
  371. package/src/misc/optionsGatherer/codeOptionsGatherer.d.ts.map +1 -1
  372. package/src/misc/optionsGatherer/dynamicOptionsGatherer.d.ts +0 -85
  373. package/src/misc/optionsGatherer/dynamicOptionsGatherer.d.ts.map +1 -1
  374. package/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.d.ts +0 -28
  375. package/src/misc/optionsGatherer/dynamicOptionsGatherer.interface.d.ts.map +1 -1
  376. package/src/misc/optionsGatherer/excludingOptionsGatherer.d.ts +0 -72
  377. package/src/misc/optionsGatherer/excludingOptionsGatherer.d.ts.map +1 -1
  378. package/src/misc/optionsGatherer/optionsGatherer.interface.d.ts +0 -52
  379. package/src/misc/optionsGatherer/optionsGatherer.interface.d.ts.map +1 -1
  380. package/src/misc/optionsGatherer/types.d.ts +0 -3
  381. package/src/misc/optionsGatherer/types.d.ts.map +1 -1
  382. package/src/misc/providers.d.ts +54 -0
  383. package/src/misc/providers.d.ts.map +1 -0
  384. package/src/misc/tokens.d.ts +81 -0
  385. package/src/misc/tokens.d.ts.map +1 -0
  386. package/src/misc/types.d.ts +11 -31
  387. package/src/misc/types.d.ts.map +1 -1
  388. package/src/modules/index.d.ts +2 -0
  389. package/src/modules/index.d.ts.map +1 -0
  390. package/src/modules/ngSelect.module.d.ts +7 -20
  391. package/src/modules/ngSelect.module.d.ts.map +1 -1
  392. package/src/modules/ngSelectEdit.module.d.ts +0 -16
  393. package/src/modules/ngSelectEdit.module.d.ts.map +1 -1
  394. package/src/pipes/getPlugin/getPlugin.pipe.d.ts +25 -0
  395. package/src/pipes/getPlugin/getPlugin.pipe.d.ts.map +1 -0
  396. package/src/pipes/index.d.ts +4 -0
  397. package/src/pipes/index.d.ts.map +1 -0
  398. package/src/pipes/selectHasValue/selectHasValue.pipe.d.ts +16 -0
  399. package/src/pipes/selectHasValue/selectHasValue.pipe.d.ts.map +1 -0
  400. package/src/pipes/selectValue/selectValue.pipe.d.ts +19 -0
  401. package/src/pipes/selectValue/selectValue.pipe.d.ts.map +1 -0
  402. package/src/plugins/index.d.ts +9 -0
  403. package/src/plugins/index.d.ts.map +1 -0
  404. package/src/plugins/interactions/index.d.ts +2 -0
  405. package/src/plugins/interactions/index.d.ts.map +1 -0
  406. package/src/plugins/interactions/noInteractions/noInteractions.component.d.ts +28 -0
  407. package/src/plugins/interactions/noInteractions/noInteractions.component.d.ts.map +1 -0
  408. package/src/plugins/keyboardHandler/index.d.ts +1 -3
  409. package/src/plugins/keyboardHandler/index.d.ts.map +1 -1
  410. package/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.d.ts +28 -0
  411. package/src/plugins/keyboardHandler/simpleKeyboardHandler/simpleKeyboardHandler.component.d.ts.map +1 -0
  412. package/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.d.ts +28 -0
  413. package/src/plugins/liveSearch/filterLiveSearch/filterLiveSearch.component.d.ts.map +1 -0
  414. package/src/plugins/liveSearch/index.d.ts +2 -4
  415. package/src/plugins/liveSearch/index.d.ts.map +1 -1
  416. package/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.d.ts +28 -0
  417. package/src/plugins/liveSearch/noLiveSearch/noLiveSearch.component.d.ts.map +1 -0
  418. package/src/plugins/normalState/index.d.ts +1 -3
  419. package/src/plugins/normalState/index.d.ts.map +1 -1
  420. package/src/plugins/normalState/simpleNormalState/simpleNormalState.component.d.ts +28 -0
  421. package/src/plugins/normalState/simpleNormalState/simpleNormalState.component.d.ts.map +1 -0
  422. package/src/plugins/optionsHandler/index.d.ts +2 -0
  423. package/src/plugins/optionsHandler/index.d.ts.map +1 -0
  424. package/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.d.ts +41 -0
  425. package/src/plugins/optionsHandler/noOptionsHandler/noOptionsHandler.component.d.ts.map +1 -0
  426. package/src/plugins/popup/index.d.ts +1 -3
  427. package/src/plugins/popup/index.d.ts.map +1 -1
  428. package/src/plugins/popup/simplePopup/simplePopup.component.d.ts +28 -0
  429. package/src/plugins/popup/simplePopup/simplePopup.component.d.ts.map +1 -0
  430. package/src/plugins/positioner/basicPositioner/basicPositioner.component.d.ts +28 -0
  431. package/src/plugins/positioner/basicPositioner/basicPositioner.component.d.ts.map +1 -0
  432. package/src/plugins/positioner/index.d.ts +1 -3
  433. package/src/plugins/positioner/index.d.ts.map +1 -1
  434. package/src/plugins/readonlyState/index.d.ts +0 -1
  435. package/src/plugins/readonlyState/index.d.ts.map +1 -1
  436. package/src/plugins/valueHandler/index.d.ts +1 -4
  437. package/src/plugins/valueHandler/index.d.ts.map +1 -1
  438. package/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.d.ts +46 -0
  439. package/src/plugins/valueHandler/staticValueHandler/staticValueHandler.component.d.ts.map +1 -0
  440. package/styles/components/_grid.scss +9 -0
  441. package/styles/core/_functions.scss +10 -0
  442. package/styles/core/_misc.scss +146 -0
  443. package/styles/core/_mixins.scss +44 -0
  444. package/styles/core/_theme.scss +16 -0
  445. package/styles/index.scss +2 -0
  446. package/styles/themes/dark.scss +19 -0
  447. package/styles/themes/light.scss +19 -0
  448. package/version.bak +1 -1
  449. package/es2022/material/src/directives/types.js +0 -2
  450. package/es2022/material/src/directives/types.js.map +0 -1
  451. package/es2022/material/src/plugins/popup/components.js +0 -3
  452. package/es2022/material/src/plugins/popup/components.js.map +0 -1
  453. package/es2022/src/components/option/index.js +0 -3
  454. package/es2022/src/components/option/index.js.map +0 -1
  455. package/es2022/src/components/option/optgroup.component.js +0 -54
  456. package/es2022/src/components/option/optgroup.component.js.map +0 -1
  457. package/es2022/src/components/option/optgroup.interface.js +0 -2
  458. package/es2022/src/components/option/optgroup.interface.js.map +0 -1
  459. package/es2022/src/components/option/option.interface.js +0 -2
  460. package/es2022/src/components/option/option.interface.js.map +0 -1
  461. package/es2022/src/components/select/index.js +0 -2
  462. package/es2022/src/components/select/index.js.map +0 -1
  463. package/es2022/src/components/select/select.interface.js +0 -2
  464. package/es2022/src/components/select/select.interface.js.map +0 -1
  465. package/es2022/src/components/select/types.js +0 -6
  466. package/es2022/src/components/select/types.js.map +0 -1
  467. package/es2022/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.js +0 -25
  468. package/es2022/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.js.map +0 -1
  469. package/es2022/src/directives/ngSelectEdit/ngSelectEdit.directive.js +0 -66
  470. package/es2022/src/directives/ngSelectEdit/ngSelectEdit.directive.js.map +0 -1
  471. package/es2022/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.js +0 -42
  472. package/es2022/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.js.map +0 -1
  473. package/es2022/src/index.ssr.js +0 -10
  474. package/es2022/src/index.ssr.js.map +0 -1
  475. package/es2022/src/misc/index.js +0 -6
  476. package/es2022/src/misc/index.js.map +0 -1
  477. package/es2022/src/misc/ngSelectControlValueAccessor.directive.js +0 -162
  478. package/es2022/src/misc/ngSelectControlValueAccessor.directive.js.map +0 -1
  479. package/es2022/src/misc/plugin.interface.js +0 -2
  480. package/es2022/src/misc/plugin.interface.js.map +0 -1
  481. package/es2022/src/misc/pluginBus/pluginBus.interface.js +0 -2
  482. package/es2022/src/misc/pluginBus/pluginBus.interface.js.map +0 -1
  483. package/es2022/src/misc/pluginBus/pluginBus.js.map +0 -1
  484. package/es2022/src/misc/templateGatherer.interface.js.map +0 -1
  485. package/es2022/src/modules/ngSelectDynamic.module.js +0 -20
  486. package/es2022/src/modules/ngSelectDynamic.module.js.map +0 -1
  487. package/es2022/src/pipes/ngSelectHasValue.pipe.js.map +0 -1
  488. package/es2022/src/pipes/ngSelectValue.pipe.js +0 -31
  489. package/es2022/src/pipes/ngSelectValue.pipe.js.map +0 -1
  490. package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.js +0 -146
  491. package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.js.map +0 -1
  492. package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.js +0 -2
  493. package/es2022/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.js.map +0 -1
  494. package/es2022/src/plugins/keyboardHandler/components.js +0 -3
  495. package/es2022/src/plugins/keyboardHandler/components.js.map +0 -1
  496. package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.js +0 -197
  497. package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.js.map +0 -1
  498. package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.js +0 -2
  499. package/es2022/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.js.map +0 -1
  500. package/es2022/src/plugins/keyboardHandler/keyboardHandler.interface.js.map +0 -1
  501. package/es2022/src/plugins/keyboardHandler/types.js +0 -10
  502. package/es2022/src/plugins/keyboardHandler/types.js.map +0 -1
  503. package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.component.js +0 -164
  504. package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.component.js.map +0 -1
  505. package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.interface.js +0 -2
  506. package/es2022/src/plugins/liveSearch/basic/basicLiveSearch.interface.js.map +0 -1
  507. package/es2022/src/plugins/liveSearch/components.js +0 -4
  508. package/es2022/src/plugins/liveSearch/components.js.map +0 -1
  509. package/es2022/src/plugins/liveSearch/edit/editLiveSearch.component.js +0 -313
  510. package/es2022/src/plugins/liveSearch/edit/editLiveSearch.component.js.map +0 -1
  511. package/es2022/src/plugins/liveSearch/edit/editLiveSearch.interface.js +0 -2
  512. package/es2022/src/plugins/liveSearch/edit/editLiveSearch.interface.js.map +0 -1
  513. package/es2022/src/plugins/liveSearch/liveSearch.interface.js.map +0 -1
  514. package/es2022/src/plugins/liveSearch/no/noLiveSearch.component.js +0 -65
  515. package/es2022/src/plugins/liveSearch/no/noLiveSearch.component.js.map +0 -1
  516. package/es2022/src/plugins/liveSearch/no/noLiveSearch.interface.js +0 -2
  517. package/es2022/src/plugins/liveSearch/no/noLiveSearch.interface.js.map +0 -1
  518. package/es2022/src/plugins/liveSearch/types.js +0 -10
  519. package/es2022/src/plugins/liveSearch/types.js.map +0 -1
  520. package/es2022/src/plugins/normalState/basic/basicNormalState.component.js +0 -58
  521. package/es2022/src/plugins/normalState/basic/basicNormalState.component.js.map +0 -1
  522. package/es2022/src/plugins/normalState/basic/basicNormalState.interface.js +0 -2
  523. package/es2022/src/plugins/normalState/basic/basicNormalState.interface.js.map +0 -1
  524. package/es2022/src/plugins/normalState/components.js +0 -4
  525. package/es2022/src/plugins/normalState/components.js.map +0 -1
  526. package/es2022/src/plugins/normalState/edit/editNormalState.component.js +0 -88
  527. package/es2022/src/plugins/normalState/edit/editNormalState.component.js.map +0 -1
  528. package/es2022/src/plugins/normalState/edit/editNormalState.interface.js +0 -2
  529. package/es2022/src/plugins/normalState/edit/editNormalState.interface.js.map +0 -1
  530. package/es2022/src/plugins/normalState/normalState.interface.js.map +0 -1
  531. package/es2022/src/plugins/normalState/normalStateAbstract.component.js +0 -89
  532. package/es2022/src/plugins/normalState/normalStateAbstract.component.js.map +0 -1
  533. package/es2022/src/plugins/normalState/types.js +0 -10
  534. package/es2022/src/plugins/normalState/types.js.map +0 -1
  535. package/es2022/src/plugins/popup/basic/basicPopup.component.js +0 -62
  536. package/es2022/src/plugins/popup/basic/basicPopup.component.js.map +0 -1
  537. package/es2022/src/plugins/popup/basic/basicPopup.interface.js +0 -2
  538. package/es2022/src/plugins/popup/basic/basicPopup.interface.js.map +0 -1
  539. package/es2022/src/plugins/popup/component.js +0 -4
  540. package/es2022/src/plugins/popup/component.js.map +0 -1
  541. package/es2022/src/plugins/popup/edit/editPopup.component.js +0 -85
  542. package/es2022/src/plugins/popup/edit/editPopup.component.js.map +0 -1
  543. package/es2022/src/plugins/popup/edit/editPopup.interface.js +0 -2
  544. package/es2022/src/plugins/popup/edit/editPopup.interface.js.map +0 -1
  545. package/es2022/src/plugins/popup/popup.interface.js.map +0 -1
  546. package/es2022/src/plugins/popup/popupAbstract.component.js +0 -200
  547. package/es2022/src/plugins/popup/popupAbstract.component.js.map +0 -1
  548. package/es2022/src/plugins/popup/types.js +0 -10
  549. package/es2022/src/plugins/popup/types.js.map +0 -1
  550. package/es2022/src/plugins/positioner/components.js +0 -3
  551. package/es2022/src/plugins/positioner/components.js.map +0 -1
  552. package/es2022/src/plugins/positioner/default/defaultPositioner.component.js +0 -160
  553. package/es2022/src/plugins/positioner/default/defaultPositioner.component.js.map +0 -1
  554. package/es2022/src/plugins/positioner/default/defaultPositioner.interface.js +0 -2
  555. package/es2022/src/plugins/positioner/default/defaultPositioner.interface.js.map +0 -1
  556. package/es2022/src/plugins/positioner/no/noPositioner.component.js +0 -78
  557. package/es2022/src/plugins/positioner/no/noPositioner.component.js.map +0 -1
  558. package/es2022/src/plugins/positioner/no/noPositioner.interface.js +0 -2
  559. package/es2022/src/plugins/positioner/no/noPositioner.interface.js.map +0 -1
  560. package/es2022/src/plugins/positioner/positioner.interface.js.map +0 -1
  561. package/es2022/src/plugins/positioner/types.js +0 -10
  562. package/es2022/src/plugins/positioner/types.js.map +0 -1
  563. package/es2022/src/plugins/readonlyState/readonlyState.interface.js.map +0 -1
  564. package/es2022/src/plugins/readonlyState/types.js +0 -10
  565. package/es2022/src/plugins/readonlyState/types.js.map +0 -1
  566. package/es2022/src/plugins/valueHandler/basic/basicValueHandler.component.js +0 -159
  567. package/es2022/src/plugins/valueHandler/basic/basicValueHandler.component.js.map +0 -1
  568. package/es2022/src/plugins/valueHandler/basic/basicValueHandler.interface.js +0 -2
  569. package/es2022/src/plugins/valueHandler/basic/basicValueHandler.interface.js.map +0 -1
  570. package/es2022/src/plugins/valueHandler/components.js +0 -3
  571. package/es2022/src/plugins/valueHandler/components.js.map +0 -1
  572. package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.js +0 -179
  573. package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.js.map +0 -1
  574. package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.js +0 -2
  575. package/es2022/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.js.map +0 -1
  576. package/es2022/src/plugins/valueHandler/types.js +0 -10
  577. package/es2022/src/plugins/valueHandler/types.js.map +0 -1
  578. package/es2022/src/plugins/valueHandler/valueHandler.interface.js.map +0 -1
  579. package/es2022/src/plugins/valueHandler/valueHandlerBase.js +0 -145
  580. package/es2022/src/plugins/valueHandler/valueHandlerBase.js.map +0 -1
  581. package/material/src/directives/types.d.ts +0 -2
  582. package/material/src/directives/types.d.ts.map +0 -1
  583. package/material/src/plugins/popup/components.d.ts +0 -3
  584. package/material/src/plugins/popup/components.d.ts.map +0 -1
  585. package/src/components/option/index.d.ts +0 -3
  586. package/src/components/option/index.d.ts.map +0 -1
  587. package/src/components/option/optgroup.component.d.ts +0 -37
  588. package/src/components/option/optgroup.component.d.ts.map +0 -1
  589. package/src/components/option/optgroup.interface.d.ts +0 -20
  590. package/src/components/option/optgroup.interface.d.ts.map +0 -1
  591. package/src/components/option/option.interface.d.ts +0 -31
  592. package/src/components/option/option.interface.d.ts.map +0 -1
  593. package/src/components/select/index.d.ts +0 -2
  594. package/src/components/select/select.interface.d.ts +0 -68
  595. package/src/components/select/select.interface.d.ts.map +0 -1
  596. package/src/components/select/types.d.ts +0 -7
  597. package/src/components/select/types.d.ts.map +0 -1
  598. package/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.d.ts +0 -11
  599. package/src/directives/ngSelectAbsolute/ngSelectAbsolute.directive.d.ts.map +0 -1
  600. package/src/directives/ngSelectEdit/ngSelectEdit.directive.d.ts +0 -11
  601. package/src/directives/ngSelectEdit/ngSelectEdit.directive.d.ts.map +0 -1
  602. package/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.d.ts +0 -21
  603. package/src/directives/ngSelectPlaceholder/ngSelectPlaceholder.directive.d.ts.map +0 -1
  604. package/src/index.ssr.d.ts +0 -1
  605. package/src/index.ssr.d.ts.map +0 -1
  606. package/src/misc/index.d.ts +0 -6
  607. package/src/misc/index.d.ts.map +0 -1
  608. package/src/misc/ngSelectControlValueAccessor.directive.d.ts +0 -63
  609. package/src/misc/ngSelectControlValueAccessor.directive.d.ts.map +0 -1
  610. package/src/misc/plugin.interface.d.ts +0 -108
  611. package/src/misc/plugin.interface.d.ts.map +0 -1
  612. package/src/misc/pluginBus/pluginBus.d.ts +0 -49
  613. package/src/misc/pluginBus/pluginBus.d.ts.map +0 -1
  614. package/src/misc/pluginBus/pluginBus.interface.d.ts +0 -36
  615. package/src/misc/pluginBus/pluginBus.interface.d.ts.map +0 -1
  616. package/src/misc/templateGatherer.interface.d.ts +0 -17
  617. package/src/misc/templateGatherer.interface.d.ts.map +0 -1
  618. package/src/modules/ngSelectDynamic.module.d.ts +0 -11
  619. package/src/modules/ngSelectDynamic.module.d.ts.map +0 -1
  620. package/src/pipes/ngSelectHasValue.pipe.d.ts +0 -16
  621. package/src/pipes/ngSelectHasValue.pipe.d.ts.map +0 -1
  622. package/src/pipes/ngSelectValue.pipe.d.ts +0 -19
  623. package/src/pipes/ngSelectValue.pipe.d.ts.map +0 -1
  624. package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.d.ts +0 -58
  625. package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.component.d.ts.map +0 -1
  626. package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.d.ts +0 -12
  627. package/src/plugins/keyboardHandler/basic/basicKeyboardHandler.interface.d.ts.map +0 -1
  628. package/src/plugins/keyboardHandler/components.d.ts +0 -3
  629. package/src/plugins/keyboardHandler/components.d.ts.map +0 -1
  630. package/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.d.ts +0 -68
  631. package/src/plugins/keyboardHandler/edit/editKeyboardHandler.component.d.ts.map +0 -1
  632. package/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.d.ts +0 -12
  633. package/src/plugins/keyboardHandler/edit/editKeyboardHandler.interface.d.ts.map +0 -1
  634. package/src/plugins/keyboardHandler/keyboardHandler.interface.d.ts +0 -12
  635. package/src/plugins/keyboardHandler/keyboardHandler.interface.d.ts.map +0 -1
  636. package/src/plugins/keyboardHandler/types.d.ts +0 -11
  637. package/src/plugins/keyboardHandler/types.d.ts.map +0 -1
  638. package/src/plugins/liveSearch/basic/basicLiveSearch.component.css +0 -11
  639. package/src/plugins/liveSearch/basic/basicLiveSearch.component.d.ts +0 -98
  640. package/src/plugins/liveSearch/basic/basicLiveSearch.component.d.ts.map +0 -1
  641. package/src/plugins/liveSearch/basic/basicLiveSearch.component.html +0 -5
  642. package/src/plugins/liveSearch/basic/basicLiveSearch.interface.d.ts +0 -29
  643. package/src/plugins/liveSearch/basic/basicLiveSearch.interface.d.ts.map +0 -1
  644. package/src/plugins/liveSearch/components.d.ts +0 -4
  645. package/src/plugins/liveSearch/components.d.ts.map +0 -1
  646. package/src/plugins/liveSearch/edit/editLiveSearch.component.css +0 -13
  647. package/src/plugins/liveSearch/edit/editLiveSearch.component.d.ts +0 -141
  648. package/src/plugins/liveSearch/edit/editLiveSearch.component.d.ts.map +0 -1
  649. package/src/plugins/liveSearch/edit/editLiveSearch.component.html +0 -13
  650. package/src/plugins/liveSearch/edit/editLiveSearch.interface.d.ts +0 -37
  651. package/src/plugins/liveSearch/edit/editLiveSearch.interface.d.ts.map +0 -1
  652. package/src/plugins/liveSearch/liveSearch.interface.d.ts +0 -38
  653. package/src/plugins/liveSearch/liveSearch.interface.d.ts.map +0 -1
  654. package/src/plugins/liveSearch/no/noLiveSearch.component.d.ts +0 -54
  655. package/src/plugins/liveSearch/no/noLiveSearch.component.d.ts.map +0 -1
  656. package/src/plugins/liveSearch/no/noLiveSearch.interface.d.ts +0 -12
  657. package/src/plugins/liveSearch/no/noLiveSearch.interface.d.ts.map +0 -1
  658. package/src/plugins/liveSearch/types.d.ts +0 -11
  659. package/src/plugins/liveSearch/types.d.ts.map +0 -1
  660. package/src/plugins/normalState/basic/basicNormalState.component.css +0 -38
  661. package/src/plugins/normalState/basic/basicNormalState.component.d.ts +0 -17
  662. package/src/plugins/normalState/basic/basicNormalState.component.d.ts.map +0 -1
  663. package/src/plugins/normalState/basic/basicNormalState.component.html +0 -6
  664. package/src/plugins/normalState/basic/basicNormalState.interface.d.ts +0 -29
  665. package/src/plugins/normalState/basic/basicNormalState.interface.d.ts.map +0 -1
  666. package/src/plugins/normalState/components.d.ts +0 -4
  667. package/src/plugins/normalState/components.d.ts.map +0 -1
  668. package/src/plugins/normalState/edit/editNormalState.component.css +0 -77
  669. package/src/plugins/normalState/edit/editNormalState.component.d.ts +0 -26
  670. package/src/plugins/normalState/edit/editNormalState.component.d.ts.map +0 -1
  671. package/src/plugins/normalState/edit/editNormalState.component.html +0 -19
  672. package/src/plugins/normalState/edit/editNormalState.interface.d.ts +0 -53
  673. package/src/plugins/normalState/edit/editNormalState.interface.d.ts.map +0 -1
  674. package/src/plugins/normalState/normalState.interface.d.ts +0 -49
  675. package/src/plugins/normalState/normalState.interface.d.ts.map +0 -1
  676. package/src/plugins/normalState/normalStateAbstract.component.d.ts +0 -65
  677. package/src/plugins/normalState/normalStateAbstract.component.d.ts.map +0 -1
  678. package/src/plugins/normalState/types.d.ts +0 -11
  679. package/src/plugins/normalState/types.d.ts.map +0 -1
  680. package/src/plugins/popup/basic/basicPopup.component.css +0 -61
  681. package/src/plugins/popup/basic/basicPopup.component.d.ts +0 -17
  682. package/src/plugins/popup/basic/basicPopup.component.d.ts.map +0 -1
  683. package/src/plugins/popup/basic/basicPopup.component.html +0 -21
  684. package/src/plugins/popup/basic/basicPopup.interface.d.ts +0 -33
  685. package/src/plugins/popup/basic/basicPopup.interface.d.ts.map +0 -1
  686. package/src/plugins/popup/component.d.ts +0 -4
  687. package/src/plugins/popup/component.d.ts.map +0 -1
  688. package/src/plugins/popup/edit/editPopup.component.css +0 -61
  689. package/src/plugins/popup/edit/editPopup.component.d.ts +0 -32
  690. package/src/plugins/popup/edit/editPopup.component.d.ts.map +0 -1
  691. package/src/plugins/popup/edit/editPopup.component.html +0 -19
  692. package/src/plugins/popup/edit/editPopup.interface.d.ts +0 -33
  693. package/src/plugins/popup/edit/editPopup.interface.d.ts.map +0 -1
  694. package/src/plugins/popup/popup.interface.d.ts +0 -52
  695. package/src/plugins/popup/popup.interface.d.ts.map +0 -1
  696. package/src/plugins/popup/popupAbstract.component.d.ts +0 -130
  697. package/src/plugins/popup/popupAbstract.component.d.ts.map +0 -1
  698. package/src/plugins/popup/types.d.ts +0 -11
  699. package/src/plugins/popup/types.d.ts.map +0 -1
  700. package/src/plugins/positioner/components.d.ts +0 -3
  701. package/src/plugins/positioner/components.d.ts.map +0 -1
  702. package/src/plugins/positioner/default/defaultPositioner.component.d.ts +0 -89
  703. package/src/plugins/positioner/default/defaultPositioner.component.d.ts.map +0 -1
  704. package/src/plugins/positioner/default/defaultPositioner.interface.d.ts +0 -12
  705. package/src/plugins/positioner/default/defaultPositioner.interface.d.ts.map +0 -1
  706. package/src/plugins/positioner/no/noPositioner.component.d.ts +0 -50
  707. package/src/plugins/positioner/no/noPositioner.component.d.ts.map +0 -1
  708. package/src/plugins/positioner/no/noPositioner.interface.d.ts +0 -12
  709. package/src/plugins/positioner/no/noPositioner.interface.d.ts.map +0 -1
  710. package/src/plugins/positioner/positioner.interface.d.ts +0 -22
  711. package/src/plugins/positioner/positioner.interface.d.ts.map +0 -1
  712. package/src/plugins/positioner/types.d.ts +0 -11
  713. package/src/plugins/positioner/types.d.ts.map +0 -1
  714. package/src/plugins/readonlyState/readonlyState.interface.d.ts +0 -12
  715. package/src/plugins/readonlyState/readonlyState.interface.d.ts.map +0 -1
  716. package/src/plugins/readonlyState/types.d.ts +0 -11
  717. package/src/plugins/readonlyState/types.d.ts.map +0 -1
  718. package/src/plugins/valueHandler/basic/basicValueHandler.component.d.ts +0 -51
  719. package/src/plugins/valueHandler/basic/basicValueHandler.component.d.ts.map +0 -1
  720. package/src/plugins/valueHandler/basic/basicValueHandler.interface.d.ts +0 -12
  721. package/src/plugins/valueHandler/basic/basicValueHandler.interface.d.ts.map +0 -1
  722. package/src/plugins/valueHandler/components.d.ts +0 -3
  723. package/src/plugins/valueHandler/components.d.ts.map +0 -1
  724. package/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.d.ts +0 -52
  725. package/src/plugins/valueHandler/dynamic/dynamicValueHandler.component.d.ts.map +0 -1
  726. package/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.d.ts +0 -21
  727. package/src/plugins/valueHandler/dynamic/dynamicValueHandler.interface.d.ts.map +0 -1
  728. package/src/plugins/valueHandler/types.d.ts +0 -11
  729. package/src/plugins/valueHandler/types.d.ts.map +0 -1
  730. package/src/plugins/valueHandler/valueHandler.interface.d.ts +0 -31
  731. package/src/plugins/valueHandler/valueHandler.interface.d.ts.map +0 -1
  732. package/src/plugins/valueHandler/valueHandlerBase.d.ts +0 -115
  733. package/src/plugins/valueHandler/valueHandlerBase.d.ts.map +0 -1
  734. /package/es2022/src/{plugins → interfaces/plugins}/keyboardHandler/keyboardHandler.interface.js +0 -0
  735. /package/es2022/src/{plugins → interfaces/plugins}/liveSearch/liveSearch.interface.js +0 -0
  736. /package/es2022/src/{plugins → interfaces/plugins}/normalState/normalState.interface.js +0 -0
  737. /package/es2022/src/{plugins → interfaces/plugins}/popup/popup.interface.js +0 -0
  738. /package/es2022/src/{plugins → interfaces/plugins}/positioner/positioner.interface.js +0 -0
  739. /package/es2022/src/{plugins → interfaces/plugins}/readonlyState/readonlyState.interface.js +0 -0
  740. /package/es2022/src/{plugins → interfaces/plugins}/valueHandler/valueHandler.interface.js +0 -0
  741. /package/es2022/src/{misc → interfaces/templateGatherer}/templateGatherer.interface.js +0 -0
@@ -1,83 +1,120 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { LIVE_SEARCH } from '../../plugins/liveSearch/types';
3
- /**
4
- * Options gatherer used for static options gathering from code
5
- */
6
- export class CodeOptionsGatherer {
7
- constructor() {
8
- //######################### private fields #########################
9
- /**
10
- * Array of visible, displayed options for select
11
- */
12
- this._availableOptions = [];
13
- /**
14
- * Array of provided options for select
15
- */
16
- this._options = [];
17
- /**
18
- * Occurs when array of visible, displayed options has changed
19
- */
20
- this._availableOptionsChange = new EventEmitter();
21
- /**
22
- * Occurs when array of provided options has changed
23
- */
24
- this.optionsChange = new EventEmitter();
25
- }
26
- //######################### public properties - implementation of OptionsGatherer #########################
27
- /**
28
- * Array of provided options for select
29
- */
30
- get options() {
31
- return this._options;
32
- }
33
- set options(value) {
34
- this._options = value;
35
- this._availableOptions = value;
36
- }
37
- /**
38
- * Array of visible, displayed options for select
39
- */
40
- get availableOptions() {
41
- return this._availableOptions;
42
- }
43
- /**
44
- * Occurs when array of visible, displayed options has changed
45
- */
46
- get availableOptionsChange() {
47
- return this._availableOptionsChange;
48
- }
49
- //######################### public methods - implmentation of OptionsGatherer #########################
50
- /**
51
- * Initialize gatherer during initialization phase
52
- */
53
- initializeGatherer() {
54
- const liveSearch = this.ngSelectPlugins[LIVE_SEARCH];
55
- if (this._liveSearch && this._liveSearch != liveSearch) {
56
- this._searchValueChangeSubscription.unsubscribe();
57
- this._searchValueChangeSubscription = null;
58
- this._liveSearch = null;
59
- }
60
- if (!this._liveSearch) {
61
- this._liveSearch = liveSearch;
62
- this._searchValueChangeSubscription = this._liveSearch.searchValueChange.subscribe(() => {
63
- if (!this._liveSearch.searchValue) {
64
- this._availableOptions = this.options;
65
- this._availableOptionsChange.emit();
66
- return;
67
- }
68
- this._availableOptions = this.options.filter(this.pluginBus.selectOptions.liveSearchFilter(this._liveSearch.searchValue, this.pluginBus.selectOptions.normalizer));
69
- this._availableOptionsChange.emit();
70
- });
71
- }
72
- }
73
- /**
74
- * Called when gatherer needs to be destroyed
75
- */
76
- destroyGatherer() {
77
- if (this._searchValueChangeSubscription) {
78
- this._searchValueChangeSubscription.unsubscribe();
79
- this._searchValueChangeSubscription = null;
80
- }
81
- }
82
- }
1
+ "use strict";
2
+ // import {EventEmitter} from '@angular/core';
3
+ // import {Subscription} from 'rxjs';
4
+ // import {OptionsGatherer} from './optionsGatherer.interface';
5
+ // import {NgSelectOption} from '../../components/option';
6
+ // import {NgSelectPluginInstances, NgSelect} from '../../components/select';
7
+ // import {LiveSearch} from '../../plugins/liveSearch';
8
+ // import {LIVE_SEARCH} from '../../plugins/liveSearch/types';
9
+ // import {PluginBus} from '../pluginBus/pluginBus';
10
+ // /**
11
+ // * Options gatherer used for static options gathering from code
12
+ // */
13
+ // export class CodeOptionsGatherer<TValue = any> implements OptionsGatherer<TValue>
14
+ // {
15
+ // //######################### private fields #########################
16
+ // /**
17
+ // * Array of visible, displayed options for select
18
+ // */
19
+ // private _availableOptions: NgSelectOption<TValue>[] = [];
20
+ // /**
21
+ // * Array of provided options for select
22
+ // */
23
+ // private _options: NgSelectOption<TValue>[] = [];
24
+ // /**
25
+ // * Occurs when array of visible, displayed options has changed
26
+ // */
27
+ // private _availableOptionsChange: EventEmitter<void> = new EventEmitter<void>();
28
+ // /**
29
+ // * Live search plugin currently used in NgSelect
30
+ // */
31
+ // protected _liveSearch: LiveSearch;
32
+ // /**
33
+ // * Subscription for changes of live search value
34
+ // */
35
+ // protected _searchValueChangeSubscription: Subscription;
36
+ // //######################### public properties - implementation of OptionsGatherer #########################
37
+ // /**
38
+ // * Array of provided options for select
39
+ // */
40
+ // public get options(): NgSelectOption<TValue>[]
41
+ // {
42
+ // return this._options;
43
+ // }
44
+ // public set options(value: NgSelectOption<TValue>[])
45
+ // {
46
+ // this._options = value;
47
+ // this._availableOptions = value;
48
+ // }
49
+ // /**
50
+ // * Occurs when array of provided options has changed
51
+ // */
52
+ // public optionsChange: EventEmitter<void> = new EventEmitter<void>();
53
+ // /**
54
+ // * Array of visible, displayed options for select
55
+ // */
56
+ // public get availableOptions(): NgSelectOption<TValue>[]
57
+ // {
58
+ // return this._availableOptions;
59
+ // }
60
+ // /**
61
+ // * Occurs when array of visible, displayed options has changed
62
+ // */
63
+ // public get availableOptionsChange(): EventEmitter<void>
64
+ // {
65
+ // return this._availableOptionsChange;
66
+ // }
67
+ // /**
68
+ // * NgSelect plugin instances available for gatherer
69
+ // */
70
+ // public ngSelectPlugins: NgSelectPluginInstances;
71
+ // /**
72
+ // * Plugin bus used for inter plugin shared events
73
+ // */
74
+ // public pluginBus: PluginBus<TValue>;
75
+ // /**
76
+ // * Select element that implements default gatherers
77
+ // */
78
+ // public select: NgSelect<TValue>;
79
+ // //######################### public methods - implmentation of OptionsGatherer #########################
80
+ // /**
81
+ // * Initialize gatherer during initialization phase
82
+ // */
83
+ // public initializeGatherer(): void
84
+ // {
85
+ // const liveSearch = this.ngSelectPlugins[LIVE_SEARCH] as LiveSearch;
86
+ // if(this._liveSearch && this._liveSearch != liveSearch)
87
+ // {
88
+ // this._searchValueChangeSubscription.unsubscribe();
89
+ // this._searchValueChangeSubscription = null;
90
+ // this._liveSearch = null;
91
+ // }
92
+ // if(!this._liveSearch)
93
+ // {
94
+ // this._liveSearch = liveSearch;
95
+ // this._searchValueChangeSubscription = this._liveSearch.searchValueChange.subscribe(() =>
96
+ // {
97
+ // if(!this._liveSearch.searchValue)
98
+ // {
99
+ // this._availableOptions = this.options;
100
+ // this._availableOptionsChange.emit();
101
+ // return;
102
+ // }
103
+ // this._availableOptions = this.options.filter(this.pluginBus.selectOptions.liveSearchFilter(this._liveSearch.searchValue, this.pluginBus.selectOptions.normalizer));
104
+ // this._availableOptionsChange.emit();
105
+ // });
106
+ // }
107
+ // }
108
+ // /**
109
+ // * Called when gatherer needs to be destroyed
110
+ // */
111
+ // public destroyGatherer(): void
112
+ // {
113
+ // if(this._searchValueChangeSubscription)
114
+ // {
115
+ // this._searchValueChangeSubscription.unsubscribe();
116
+ // this._searchValueChangeSubscription = null;
117
+ // }
118
+ // }
119
+ // }
83
120
  //# sourceMappingURL=codeOptionsGatherer.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"codeOptionsGatherer.js","sourceRoot":"","sources":["../../../../src/misc/optionsGatherer/codeOptionsGatherer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,YAAY,EAAC,MAAM,eAAe,CAAC;AAO3C,OAAO,EAAC,WAAW,EAAC,MAAM,gCAAgC,CAAC;AAG3D;;GAEG;AACH,MAAM,OAAO,mBAAmB;IAAhC;QAEI,oEAAoE;QAEpE;;WAEG;QACK,sBAAiB,GAA6B,EAAE,CAAC;QAEzD;;WAEG;QACK,aAAQ,GAA6B,EAAE,CAAC;QAEhD;;WAEG;QACK,4BAAuB,GAAuB,IAAI,YAAY,EAAQ,CAAC;QA2B/E;;WAEG;QACI,kBAAa,GAAuB,IAAI,YAAY,EAAQ,CAAC;IAiFxE,CAAC;IAnGG,2GAA2G;IAE3G;;OAEG;IACH,IAAW,OAAO;QAEd,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IACD,IAAW,OAAO,CAAC,KAA+B;QAE9C,IAAI,CAAC,QAAQ,GAAG,KAAK,CAAC;QACtB,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;IACnC,CAAC;IAOD;;OAEG;IACH,IAAW,gBAAgB;QAEvB,OAAO,IAAI,CAAC,iBAAiB,CAAC;IAClC,CAAC;IAED;;OAEG;IACH,IAAW,sBAAsB;QAE7B,OAAO,IAAI,CAAC,uBAAuB,CAAC;IACxC,CAAC;IAiBD,uGAAuG;IAEvG;;OAEG;IACI,kBAAkB;QAErB,MAAM,UAAU,GAAG,IAAI,CAAC,eAAe,CAAC,WAAW,CAAe,CAAC;QAEnE,IAAG,IAAI,CAAC,WAAW,IAAI,IAAI,CAAC,WAAW,IAAI,UAAU,EACrD,CAAC;YACG,IAAI,CAAC,8BAA8B,CAAC,WAAW,EAAE,CAAC;YAClD,IAAI,CAAC,8BAA8B,GAAG,IAAI,CAAC;YAE3C,IAAI,CAAC,WAAW,GAAG,IAAI,CAAC;QAC5B,CAAC;QAED,IAAG,CAAC,IAAI,CAAC,WAAW,EACpB,CAAC;YACG,IAAI,CAAC,WAAW,GAAG,UAAU,CAAC;YAE9B,IAAI,CAAC,8BAA8B,GAAG,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,SAAS,CAAC,GAAG,EAAE;gBAEpF,IAAG,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,EAChC,CAAC;oBACG,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,OAAO,CAAC;oBACtC,IAAI,CAAC,uBAAuB,CAAC,IAAI,EAAE,CAAC;oBAEpC,OAAO;gBACX,CAAC;gBAED,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,gBAAgB,CAAC,IAAI,CAAC,WAAW,CAAC,WAAW,EAAE,IAAI,CAAC,SAAS,CAAC,aAAa,CAAC,UAAU,CAAC,CAAC,CAAC;gBACnK,IAAI,CAAC,uBAAuB,CAAC,IAAI,EAAE,CAAC;YACxC,CAAC,CAAC,CAAC;QACP,CAAC;IACL,CAAC;IAED;;OAEG;IACI,eAAe;QAElB,IAAG,IAAI,CAAC,8BAA8B,EACtC,CAAC;YACG,IAAI,CAAC,8BAA8B,CAAC,WAAW,EAAE,CAAC;YAClD,IAAI,CAAC,8BAA8B,GAAG,IAAI,CAAC;QAC/C,CAAC;IACL,CAAC;CACJ","sourcesContent":["import {EventEmitter} from '@angular/core';\nimport {Subscription} from 'rxjs';\n\nimport {OptionsGatherer} from './optionsGatherer.interface';\nimport {NgSelectOption} from '../../components/option';\nimport {NgSelectPluginInstances, NgSelect} from '../../components/select';\nimport {LiveSearch} from '../../plugins/liveSearch';\nimport {LIVE_SEARCH} from '../../plugins/liveSearch/types';\nimport {PluginBus} from '../pluginBus/pluginBus';\n\n/**\n * Options gatherer used for static options gathering from code\n */\nexport class CodeOptionsGatherer<TValue = any> implements OptionsGatherer<TValue>\n{\n //######################### private fields #########################\n\n /**\n * Array of visible, displayed options for select\n */\n private _availableOptions: NgSelectOption<TValue>[] = [];\n\n /**\n * Array of provided options for select\n */\n private _options: NgSelectOption<TValue>[] = [];\n\n /**\n * Occurs when array of visible, displayed options has changed\n */\n private _availableOptionsChange: EventEmitter<void> = new EventEmitter<void>();\n\n /**\n * Live search plugin currently used in NgSelect\n */\n protected _liveSearch: LiveSearch;\n\n /**\n * Subscription for changes of live search value\n */\n protected _searchValueChangeSubscription: Subscription;\n\n //######################### public properties - implementation of OptionsGatherer #########################\n\n /**\n * Array of provided options for select\n */\n public get options(): NgSelectOption<TValue>[]\n {\n return this._options;\n }\n public set options(value: NgSelectOption<TValue>[])\n {\n this._options = value;\n this._availableOptions = value;\n }\n\n /**\n * Occurs when array of provided options has changed\n */\n public optionsChange: EventEmitter<void> = new EventEmitter<void>();\n\n /**\n * Array of visible, displayed options for select\n */\n public get availableOptions(): NgSelectOption<TValue>[]\n {\n return this._availableOptions;\n }\n\n /**\n * Occurs when array of visible, displayed options has changed\n */\n public get availableOptionsChange(): EventEmitter<void>\n {\n return this._availableOptionsChange;\n }\n\n /**\n * NgSelect plugin instances available for gatherer\n */\n public ngSelectPlugins: NgSelectPluginInstances;\n\n /**\n * Plugin bus used for inter plugin shared events\n */\n public pluginBus: PluginBus<TValue>;\n\n /**\n * Select element that implements default gatherers\n */\n public select: NgSelect<TValue>;\n\n //######################### public methods - implmentation of OptionsGatherer #########################\n\n /**\n * Initialize gatherer during initialization phase\n */\n public initializeGatherer(): void\n {\n const liveSearch = this.ngSelectPlugins[LIVE_SEARCH] as LiveSearch;\n\n if(this._liveSearch && this._liveSearch != liveSearch)\n {\n this._searchValueChangeSubscription.unsubscribe();\n this._searchValueChangeSubscription = null;\n\n this._liveSearch = null;\n }\n\n if(!this._liveSearch)\n {\n this._liveSearch = liveSearch;\n\n this._searchValueChangeSubscription = this._liveSearch.searchValueChange.subscribe(() =>\n {\n if(!this._liveSearch.searchValue)\n {\n this._availableOptions = this.options;\n this._availableOptionsChange.emit();\n\n return;\n }\n\n this._availableOptions = this.options.filter(this.pluginBus.selectOptions.liveSearchFilter(this._liveSearch.searchValue, this.pluginBus.selectOptions.normalizer));\n this._availableOptionsChange.emit();\n });\n }\n }\n\n /**\n * Called when gatherer needs to be destroyed\n */\n public destroyGatherer(): void\n {\n if(this._searchValueChangeSubscription)\n {\n this._searchValueChangeSubscription.unsubscribe();\n this._searchValueChangeSubscription = null;\n }\n }\n}"]}
1
+ {"version":3,"file":"codeOptionsGatherer.js","sourceRoot":"","sources":["../../../../src/misc/optionsGatherer/codeOptionsGatherer.ts"],"names":[],"mappings":";AAAA,8CAA8C;AAC9C,qCAAqC;AAErC,+DAA+D;AAC/D,0DAA0D;AAC1D,6EAA6E;AAC7E,uDAAuD;AACvD,8DAA8D;AAC9D,oDAAoD;AAEpD,MAAM;AACN,kEAAkE;AAClE,MAAM;AACN,oFAAoF;AACpF,IAAI;AACJ,2EAA2E;AAE3E,UAAU;AACV,wDAAwD;AACxD,UAAU;AACV,gEAAgE;AAEhE,UAAU;AACV,8CAA8C;AAC9C,UAAU;AACV,uDAAuD;AAEvD,UAAU;AACV,qEAAqE;AACrE,UAAU;AACV,sFAAsF;AAEtF,UAAU;AACV,uDAAuD;AACvD,UAAU;AACV,yCAAyC;AAEzC,UAAU;AACV,uDAAuD;AACvD,UAAU;AACV,8DAA8D;AAE9D,kHAAkH;AAElH,UAAU;AACV,8CAA8C;AAC9C,UAAU;AACV,qDAAqD;AACrD,QAAQ;AACR,gCAAgC;AAChC,QAAQ;AACR,0DAA0D;AAC1D,QAAQ;AACR,iCAAiC;AACjC,0CAA0C;AAC1C,QAAQ;AAER,UAAU;AACV,2DAA2D;AAC3D,UAAU;AACV,2EAA2E;AAE3E,UAAU;AACV,wDAAwD;AACxD,UAAU;AACV,8DAA8D;AAC9D,QAAQ;AACR,yCAAyC;AACzC,QAAQ;AAER,UAAU;AACV,qEAAqE;AACrE,UAAU;AACV,8DAA8D;AAC9D,QAAQ;AACR,+CAA+C;AAC/C,QAAQ;AAER,UAAU;AACV,0DAA0D;AAC1D,UAAU;AACV,uDAAuD;AAEvD,UAAU;AACV,wDAAwD;AACxD,UAAU;AACV,2CAA2C;AAE3C,UAAU;AACV,0DAA0D;AAC1D,UAAU;AACV,uCAAuC;AAEvC,8GAA8G;AAE9G,UAAU;AACV,yDAAyD;AACzD,UAAU;AACV,wCAAwC;AACxC,QAAQ;AACR,8EAA8E;AAE9E,iEAAiE;AACjE,YAAY;AACZ,iEAAiE;AACjE,0DAA0D;AAE1D,uCAAuC;AACvC,YAAY;AAEZ,gCAAgC;AAChC,YAAY;AACZ,6CAA6C;AAE7C,uGAAuG;AACvG,gBAAgB;AAChB,oDAAoD;AACpD,oBAAoB;AACpB,6DAA6D;AAC7D,2DAA2D;AAE3D,8BAA8B;AAC9B,oBAAoB;AAEpB,sLAAsL;AACtL,uDAAuD;AACvD,kBAAkB;AAClB,YAAY;AACZ,QAAQ;AAER,UAAU;AACV,oDAAoD;AACpD,UAAU;AACV,qCAAqC;AACrC,QAAQ;AACR,kDAAkD;AAClD,YAAY;AACZ,iEAAiE;AACjE,0DAA0D;AAC1D,YAAY;AACZ,QAAQ;AACR,IAAI","sourcesContent":["// import {EventEmitter} from '@angular/core';\n// import {Subscription} from 'rxjs';\n\n// import {OptionsGatherer} from './optionsGatherer.interface';\n// import {NgSelectOption} from '../../components/option';\n// import {NgSelectPluginInstances, NgSelect} from '../../components/select';\n// import {LiveSearch} from '../../plugins/liveSearch';\n// import {LIVE_SEARCH} from '../../plugins/liveSearch/types';\n// import {PluginBus} from '../pluginBus/pluginBus';\n\n// /**\n// * Options gatherer used for static options gathering from code\n// */\n// export class CodeOptionsGatherer<TValue = any> implements OptionsGatherer<TValue>\n// {\n// //######################### private fields #########################\n\n// /**\n// * Array of visible, displayed options for select\n// */\n// private _availableOptions: NgSelectOption<TValue>[] = [];\n\n// /**\n// * Array of provided options for select\n// */\n// private _options: NgSelectOption<TValue>[] = [];\n\n// /**\n// * Occurs when array of visible, displayed options has changed\n// */\n// private _availableOptionsChange: EventEmitter<void> = new EventEmitter<void>();\n\n// /**\n// * Live search plugin currently used in NgSelect\n// */\n// protected _liveSearch: LiveSearch;\n\n// /**\n// * Subscription for changes of live search value\n// */\n// protected _searchValueChangeSubscription: Subscription;\n\n// //######################### public properties - implementation of OptionsGatherer #########################\n\n// /**\n// * Array of provided options for select\n// */\n// public get options(): NgSelectOption<TValue>[]\n// {\n// return this._options;\n// }\n// public set options(value: NgSelectOption<TValue>[])\n// {\n// this._options = value;\n// this._availableOptions = value;\n// }\n\n// /**\n// * Occurs when array of provided options has changed\n// */\n// public optionsChange: EventEmitter<void> = new EventEmitter<void>();\n\n// /**\n// * Array of visible, displayed options for select\n// */\n// public get availableOptions(): NgSelectOption<TValue>[]\n// {\n// return this._availableOptions;\n// }\n\n// /**\n// * Occurs when array of visible, displayed options has changed\n// */\n// public get availableOptionsChange(): EventEmitter<void>\n// {\n// return this._availableOptionsChange;\n// }\n\n// /**\n// * NgSelect plugin instances available for gatherer\n// */\n// public ngSelectPlugins: NgSelectPluginInstances;\n\n// /**\n// * Plugin bus used for inter plugin shared events\n// */\n// public pluginBus: PluginBus<TValue>;\n\n// /**\n// * Select element that implements default gatherers\n// */\n// public select: NgSelect<TValue>;\n\n// //######################### public methods - implmentation of OptionsGatherer #########################\n\n// /**\n// * Initialize gatherer during initialization phase\n// */\n// public initializeGatherer(): void\n// {\n// const liveSearch = this.ngSelectPlugins[LIVE_SEARCH] as LiveSearch;\n\n// if(this._liveSearch && this._liveSearch != liveSearch)\n// {\n// this._searchValueChangeSubscription.unsubscribe();\n// this._searchValueChangeSubscription = null;\n\n// this._liveSearch = null;\n// }\n\n// if(!this._liveSearch)\n// {\n// this._liveSearch = liveSearch;\n\n// this._searchValueChangeSubscription = this._liveSearch.searchValueChange.subscribe(() =>\n// {\n// if(!this._liveSearch.searchValue)\n// {\n// this._availableOptions = this.options;\n// this._availableOptionsChange.emit();\n\n// return;\n// }\n\n// this._availableOptions = this.options.filter(this.pluginBus.selectOptions.liveSearchFilter(this._liveSearch.searchValue, this.pluginBus.selectOptions.normalizer));\n// this._availableOptionsChange.emit();\n// });\n// }\n// }\n\n// /**\n// * Called when gatherer needs to be destroyed\n// */\n// public destroyGatherer(): void\n// {\n// if(this._searchValueChangeSubscription)\n// {\n// this._searchValueChangeSubscription.unsubscribe();\n// this._searchValueChangeSubscription = null;\n// }\n// }\n// }"]}
@@ -1,2 +1,32 @@
1
- export {};
1
+ "use strict";
2
+ // import {NgSelectOption} from '../../components/option';
3
+ // /**
4
+ // * Callback used for obtaining dynamic options
5
+ // */
6
+ // export interface GetOptionsCallback<TValue = any>
7
+ // {
8
+ // /**
9
+ // * Gets array of options based on query
10
+ // * @param query - Query for obtaining options, can be searched string or TValue in case of obtaining option for value during initialization
11
+ // */
12
+ // (query: string|TValue): Promise<NgSelectOption<TValue>[]>;
13
+ // }
14
+ // /**
15
+ // * Options for dynamic options gatherer
16
+ // */
17
+ // export interface DynamicOptionsGathererOptions<TValue = any>
18
+ // {
19
+ // /**
20
+ // * Callback used for obtaining dynamic options
21
+ // */
22
+ // dynamicOptionsCallback: GetOptionsCallback<TValue>;
23
+ // /**
24
+ // * Number of miliseconds which represents minimal delay between calls of dynamicOptionsCallback
25
+ // */
26
+ // delay?: number;
27
+ // /**
28
+ // * Minimal number of characters to be used for searching
29
+ // */
30
+ // minLength?: number;
31
+ // }
2
32
  //# sourceMappingURL=dynamicOptionsGatherer.interface.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"dynamicOptionsGatherer.interface.js","sourceRoot":"","sources":["../../../../src/misc/optionsGatherer/dynamicOptionsGatherer.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {NgSelectOption} from '../../components/option';\n\n/**\n * Callback used for obtaining dynamic options\n */\nexport interface GetOptionsCallback<TValue = any>\n{\n /**\n * Gets array of options based on query\n * @param query - Query for obtaining options, can be searched string or TValue in case of obtaining option for value during initialization\n */\n (query: string|TValue): Promise<NgSelectOption<TValue>[]>;\n}\n\n/**\n * Options for dynamic options gatherer\n */\nexport interface DynamicOptionsGathererOptions<TValue = any>\n{\n /**\n * Callback used for obtaining dynamic options\n */\n dynamicOptionsCallback: GetOptionsCallback<TValue>;\n\n /**\n * Number of miliseconds which represents minimal delay between calls of dynamicOptionsCallback\n */\n delay?: number;\n\n /**\n * Minimal number of characters to be used for searching\n */\n minLength?: number;\n}"]}
1
+ {"version":3,"file":"dynamicOptionsGatherer.interface.js","sourceRoot":"","sources":["../../../../src/misc/optionsGatherer/dynamicOptionsGatherer.interface.ts"],"names":[],"mappings":";AAAA,0DAA0D;AAE1D,MAAM;AACN,iDAAiD;AACjD,MAAM;AACN,oDAAoD;AACpD,IAAI;AACJ,UAAU;AACV,8CAA8C;AAC9C,kJAAkJ;AAClJ,UAAU;AACV,iEAAiE;AACjE,IAAI;AAEJ,MAAM;AACN,0CAA0C;AAC1C,MAAM;AACN,+DAA+D;AAC/D,IAAI;AACJ,UAAU;AACV,qDAAqD;AACrD,UAAU;AACV,0DAA0D;AAE1D,UAAU;AACV,sGAAsG;AACtG,UAAU;AACV,sBAAsB;AAEtB,UAAU;AACV,+DAA+D;AAC/D,UAAU;AACV,0BAA0B;AAC1B,IAAI","sourcesContent":["// import {NgSelectOption} from '../../components/option';\n\n// /**\n// * Callback used for obtaining dynamic options\n// */\n// export interface GetOptionsCallback<TValue = any>\n// {\n// /**\n// * Gets array of options based on query\n// * @param query - Query for obtaining options, can be searched string or TValue in case of obtaining option for value during initialization\n// */\n// (query: string|TValue): Promise<NgSelectOption<TValue>[]>;\n// }\n\n// /**\n// * Options for dynamic options gatherer\n// */\n// export interface DynamicOptionsGathererOptions<TValue = any>\n// {\n// /**\n// * Callback used for obtaining dynamic options\n// */\n// dynamicOptionsCallback: GetOptionsCallback<TValue>;\n\n// /**\n// * Number of miliseconds which represents minimal delay between calls of dynamicOptionsCallback\n// */\n// delay?: number;\n\n// /**\n// * Minimal number of characters to be used for searching\n// */\n// minLength?: number;\n// }"]}
@@ -1,118 +1,179 @@
1
- import { EventEmitter } from '@angular/core';
2
- import { isPresent } from '@jscrpt/common';
3
- import { debounceTime } from 'rxjs/operators';
4
- import { LIVE_SEARCH } from '../../plugins/liveSearch/types';
5
- import { POPUP } from '../../plugins/popup/types';
6
- import { VALUE_HANDLER } from '../../plugins/valueHandler/types';
7
- /**
8
- * Class that is used as for options gathering in dynamic way, for example from external source when writing
9
- */
10
- export class DynamicOptionsGatherer {
11
- /**
12
- * Array of visible, displayed options for select
13
- */
14
- get availableOptions() {
15
- return this.options;
16
- }
17
- /**
18
- * Occurs when array of visible, displayed options has changed
19
- */
20
- get availableOptionsChange() {
21
- return this.optionsChange;
22
- }
23
- //######################### constructor #########################
24
- constructor(_options) {
25
- this._options = _options;
26
- /**
27
- * Minimal number of characters required for searching
28
- */
29
- this._minLength = 1;
30
- /**
31
- * Indication that first initial call was performed
32
- */
33
- this._initialized = false;
34
- //######################### public properties - implementation of OptionsGatherer #########################
35
- /**
36
- * Array of provided options for select
37
- */
38
- this.options = [];
39
- /**
40
- * Occurs when array of provided options has changed
41
- */
42
- this.optionsChange = new EventEmitter();
43
- if (!this._options) {
44
- throw new Error('Options can not be null!');
45
- }
46
- if (this._options && isPresent(this._options.minLength)) {
47
- this._minLength = this._options.minLength;
48
- }
49
- }
50
- //######################### public methods - implementation of OptionsGatherer #########################
51
- /**
52
- * Initialize gatherer during initialization phase
53
- */
54
- initializeGatherer() {
55
- const liveSearch = this.ngSelectPlugins[LIVE_SEARCH];
56
- if (this._liveSearch && this._liveSearch != liveSearch) {
57
- this._searchValueChangeSubscription.unsubscribe();
58
- this._searchValueChangeSubscription = null;
59
- this._liveSearch = null;
60
- }
61
- const popup = this.ngSelectPlugins[POPUP];
62
- if (this._popup && this._popup != popup) {
63
- this._visibilitySubscription.unsubscribe();
64
- this._visibilitySubscription = null;
65
- this._popup = null;
66
- }
67
- this._valueHandler = this.ngSelectPlugins[VALUE_HANDLER];
68
- if (!this._popup) {
69
- this._popup = popup;
70
- this._visibilitySubscription = this._popup.visibilityChange.subscribe(async () => {
71
- if (this._initialized) {
72
- return;
73
- }
74
- await this._processOptionsChange();
75
- });
76
- }
77
- if (!this._liveSearch) {
78
- this._liveSearch = liveSearch;
79
- let searchValueChange = this._liveSearch.searchValueChange;
80
- if (this._options.delay) {
81
- searchValueChange = searchValueChange.pipe(debounceTime(this._options.delay));
82
- }
83
- this._searchValueChangeSubscription = searchValueChange.subscribe(async () => await this._processOptionsChange());
84
- }
85
- }
86
- /**
87
- * Called when gatherer needs to be destroyed
88
- */
89
- destroyGatherer() {
90
- this._searchValueChangeSubscription?.unsubscribe();
91
- this._searchValueChangeSubscription = null;
92
- this._visibilitySubscription?.unsubscribe();
93
- this._visibilitySubscription = null;
94
- }
95
- //######################### protected methods #########################
96
- /**
97
- * Process options change request
98
- */
99
- async _processOptionsChange() {
100
- let searchValue = this._liveSearch.searchValue;
101
- //use value as search value if not initialized
102
- if (!this._initialized && !this.pluginBus.selectOptions.multiple && !Array.isArray(this._valueHandler.selectedOptions) && isPresent(this._valueHandler.selectedOptions)) {
103
- searchValue = this._liveSearch.searchValue ?? this._valueHandler.selectedOptions.text;
104
- }
105
- this._initialized = true;
106
- if ((searchValue?.length ?? 0) < this._minLength) {
107
- //remove available options if multiple or empty string
108
- if (isPresent(searchValue) || this.pluginBus.selectOptions.multiple) {
109
- this.options = [];
110
- this.optionsChange.emit();
111
- }
112
- return;
113
- }
114
- this.options = await this._options.dynamicOptionsCallback(searchValue ?? '');
115
- this.optionsChange.emit();
116
- }
117
- }
1
+ "use strict";
2
+ // import {EventEmitter} from '@angular/core';
3
+ // import {isPresent} from '@jscrpt/common';
4
+ // import {Subscription, Observable} from 'rxjs';
5
+ // import {debounceTime} from 'rxjs/operators';
6
+ // import {OptionsGatherer} from './optionsGatherer.interface';
7
+ // import {NgSelectPluginInstances, NgSelect} from '../../components/select';
8
+ // import {NgSelectOption} from '../../components/option';
9
+ // import {DynamicOptionsGathererOptions} from './dynamicOptionsGatherer.interface';
10
+ // import {LiveSearch} from '../../plugins/liveSearch';
11
+ // import {LIVE_SEARCH} from '../../plugins/liveSearch/types';
12
+ // import {PluginBus} from '../pluginBus/pluginBus';
13
+ // import {Popup} from '../../plugins/popup';
14
+ // import {POPUP} from '../../plugins/popup/types';
15
+ // import {VALUE_HANDLER} from '../../plugins/valueHandler/types';
16
+ // import {ValueHandler} from '../../plugins/valueHandler';
17
+ // /**
18
+ // * Class that is used as for options gathering in dynamic way, for example from external source when writing
19
+ // */
20
+ // export class DynamicOptionsGatherer<TValue = any> implements OptionsGatherer<TValue>
21
+ // {
22
+ // //######################### protected fields #########################
23
+ // /**
24
+ // * Live search plugin currently used in NgSelect
25
+ // */
26
+ // protected _liveSearch: LiveSearch;
27
+ // /**
28
+ // * Subscription for changes of live search value
29
+ // */
30
+ // protected _searchValueChangeSubscription: Subscription;
31
+ // /**
32
+ // * Subscription for visibility change of popup
33
+ // */
34
+ // protected _visibilitySubscription: Subscription;
35
+ // /**
36
+ // * Minimal number of characters required for searching
37
+ // */
38
+ // protected _minLength: number = 1;
39
+ // /**
40
+ // * Popup that is displayed
41
+ // */
42
+ // protected _popup: Popup;
43
+ // /**
44
+ // * Indication that first initial call was performed
45
+ // */
46
+ // protected _initialized: boolean = false;
47
+ // /**
48
+ // * Currently used value handler plugin
49
+ // */
50
+ // protected _valueHandler: ValueHandler;
51
+ // //######################### public properties - implementation of OptionsGatherer #########################
52
+ // /**
53
+ // * Array of provided options for select
54
+ // */
55
+ // public options: NgSelectOption<TValue>[] = [];
56
+ // /**
57
+ // * Occurs when array of provided options has changed
58
+ // */
59
+ // public optionsChange: EventEmitter<void> = new EventEmitter<void>();
60
+ // /**
61
+ // * Array of visible, displayed options for select
62
+ // */
63
+ // public get availableOptions(): NgSelectOption<TValue>[]
64
+ // {
65
+ // return this.options;
66
+ // }
67
+ // /**
68
+ // * Occurs when array of visible, displayed options has changed
69
+ // */
70
+ // public get availableOptionsChange(): EventEmitter<void>
71
+ // {
72
+ // return this.optionsChange;
73
+ // }
74
+ // /**
75
+ // * NgSelect plugin instances available for gatherer
76
+ // */
77
+ // public ngSelectPlugins: NgSelectPluginInstances;
78
+ // /**
79
+ // * Plugin bus used for inter plugin shared events
80
+ // */
81
+ // public pluginBus: PluginBus<TValue>;
82
+ // /**
83
+ // * Select element that implements default gatherers
84
+ // */
85
+ // public select: NgSelect<TValue>;
86
+ // //######################### constructor #########################
87
+ // constructor(protected _options: DynamicOptionsGathererOptions<TValue>)
88
+ // {
89
+ // if(!this._options)
90
+ // {
91
+ // throw new Error('Options can not be null!');
92
+ // }
93
+ // if(this._options && isPresent(this._options.minLength))
94
+ // {
95
+ // this._minLength = this._options.minLength;
96
+ // }
97
+ // }
98
+ // //######################### public methods - implementation of OptionsGatherer #########################
99
+ // /**
100
+ // * Initialize gatherer during initialization phase
101
+ // */
102
+ // public initializeGatherer(): void
103
+ // {
104
+ // const liveSearch = this.ngSelectPlugins[LIVE_SEARCH] as LiveSearch;
105
+ // if(this._liveSearch && this._liveSearch != liveSearch)
106
+ // {
107
+ // this._searchValueChangeSubscription.unsubscribe();
108
+ // this._searchValueChangeSubscription = null;
109
+ // this._liveSearch = null;
110
+ // }
111
+ // const popup: Popup = this.ngSelectPlugins[POPUP] as Popup;
112
+ // if(this._popup && this._popup != popup)
113
+ // {
114
+ // this._visibilitySubscription.unsubscribe();
115
+ // this._visibilitySubscription = null;
116
+ // this._popup = null;
117
+ // }
118
+ // this._valueHandler = this.ngSelectPlugins[VALUE_HANDLER] as ValueHandler;
119
+ // if(!this._popup)
120
+ // {
121
+ // this._popup = popup;
122
+ // this._visibilitySubscription = this._popup.visibilityChange.subscribe(async () =>
123
+ // {
124
+ // if(this._initialized)
125
+ // {
126
+ // return;
127
+ // }
128
+ // await this._processOptionsChange();
129
+ // });
130
+ // }
131
+ // if(!this._liveSearch)
132
+ // {
133
+ // this._liveSearch = liveSearch;
134
+ // let searchValueChange: Observable<void> = this._liveSearch.searchValueChange;
135
+ // if(this._options.delay)
136
+ // {
137
+ // searchValueChange = searchValueChange.pipe(debounceTime(this._options.delay));
138
+ // }
139
+ // this._searchValueChangeSubscription = searchValueChange.subscribe(async () => await this._processOptionsChange());
140
+ // }
141
+ // }
142
+ // /**
143
+ // * Called when gatherer needs to be destroyed
144
+ // */
145
+ // public destroyGatherer(): void
146
+ // {
147
+ // this._searchValueChangeSubscription?.unsubscribe();
148
+ // this._searchValueChangeSubscription = null;
149
+ // this._visibilitySubscription?.unsubscribe();
150
+ // this._visibilitySubscription = null;
151
+ // }
152
+ // //######################### protected methods #########################
153
+ // /**
154
+ // * Process options change request
155
+ // */
156
+ // protected async _processOptionsChange()
157
+ // {
158
+ // let searchValue: string = this._liveSearch.searchValue;
159
+ // //use value as search value if not initialized
160
+ // if(!this._initialized && !this.pluginBus.selectOptions.multiple && !Array.isArray(this._valueHandler.selectedOptions) && isPresent(this._valueHandler.selectedOptions))
161
+ // {
162
+ // searchValue = this._liveSearch.searchValue ?? this._valueHandler.selectedOptions.text;
163
+ // }
164
+ // this._initialized = true;
165
+ // if((searchValue?.length ?? 0) < this._minLength)
166
+ // {
167
+ // //remove available options if multiple or empty string
168
+ // if(isPresent(searchValue) || this.pluginBus.selectOptions.multiple)
169
+ // {
170
+ // this.options = [];
171
+ // this.optionsChange.emit();
172
+ // }
173
+ // return;
174
+ // }
175
+ // this.options = await this._options.dynamicOptionsCallback(searchValue ?? '');
176
+ // this.optionsChange.emit();
177
+ // }
178
+ // }
118
179
  //# sourceMappingURL=dynamicOptionsGatherer.js.map