@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,164 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, ChangeDetectorRef, Inject, Optional, ElementRef, ViewChild, EventEmitter } from '@angular/core';
2
- import { STRING_LOCALIZATION } from '@anglr/common';
3
- import { extend } from '@jscrpt/common/extend';
4
- import { NG_SELECT_PLUGIN_INSTANCES } from '../../../components/select/types';
5
- import { LIVE_SEARCH_OPTIONS } from '../types';
6
- import { POPUP } from '../../popup/types';
7
- import { PluginBus } from '../../../misc/pluginBus/pluginBus';
8
- import * as i0 from "@angular/core";
9
- import * as i1 from "../../../misc/pluginBus/pluginBus";
10
- import * as i2 from "@angular/common";
11
- /**
12
- * Default options for live search
13
- * @internal
14
- */
15
- const defaultOptions = {
16
- cssClasses: {
17
- wrapperDiv: 'wrapper-div',
18
- input: 'form-control'
19
- },
20
- texts: {
21
- inputPlaceholder: 'Filter options'
22
- },
23
- keepSearchValue: false
24
- };
25
- /**
26
- * Component used for obtaining basic live search html element
27
- */
28
- export class BasicLiveSearchComponent {
29
- //######################### public properties - implementation of BasicLiveSearch #########################
30
- /**
31
- * Options for NgSelect plugin
32
- */
33
- get options() {
34
- return this._options;
35
- }
36
- set options(options) {
37
- this._options = extend(true, this._options, options);
38
- }
39
- /**
40
- * HTML element that represents live search
41
- */
42
- get liveSearchElement() {
43
- return this.liveSearchElementChild.nativeElement;
44
- }
45
- //######################### constructor #########################
46
- constructor(ngSelectPlugins, pluginBus, pluginElement, _changeDetector, _stringLocalization, options) {
47
- this.ngSelectPlugins = ngSelectPlugins;
48
- this.pluginBus = pluginBus;
49
- this.pluginElement = pluginElement;
50
- this._changeDetector = _changeDetector;
51
- this._stringLocalization = _stringLocalization;
52
- /**
53
- * Current value of live search
54
- */
55
- this.searchValue = null;
56
- /**
57
- * Occurs when current value of live search changes
58
- */
59
- this.searchValueChange = new EventEmitter();
60
- //######################### public properties - template bindings #########################
61
- /**
62
- * Object containing available texts
63
- * @internal
64
- */
65
- this.texts = {};
66
- this._options = extend(true, {}, defaultOptions, options);
67
- }
68
- //######################### public methods - implementation of OnDestroy #########################
69
- /**
70
- * Called when component is destroyed
71
- */
72
- ngOnDestroy() {
73
- this._visibilityChangeSubscription?.unsubscribe();
74
- this._visibilityChangeSubscription = null;
75
- this._liveSearchFocusSubscription?.unsubscribe();
76
- this._liveSearchFocusSubscription = null;
77
- }
78
- //######################### public methods - implementation of BasicLiveSearch #########################
79
- /**
80
- * Initialize plugin, to be ready to use, initialize communication with other plugins
81
- */
82
- initialize() {
83
- const popup = this.ngSelectPlugins[POPUP];
84
- if (this._popup && this._popup != popup) {
85
- this._visibilityChangeSubscription.unsubscribe();
86
- this._visibilityChangeSubscription = null;
87
- this._popup = null;
88
- }
89
- if (!this._popup) {
90
- this._popup = popup;
91
- this._visibilityChangeSubscription = this._popup.visibilityChange.subscribe(() => {
92
- if (!this.options.keepSearchValue) {
93
- this.handleInput('');
94
- this._changeDetector.detectChanges();
95
- }
96
- });
97
- }
98
- if (!this._liveSearchFocusSubscription) {
99
- this._liveSearchFocusSubscription = this.pluginBus.liveSearchFocus.subscribe(() => {
100
- this.inputElementChild?.nativeElement.focus();
101
- });
102
- }
103
- this._initTexts();
104
- }
105
- /**
106
- * Initialize plugin options, all operations required to be done with plugin options are handled here
107
- */
108
- initOptions() {
109
- }
110
- /**
111
- * Explicitly runs invalidation of content (change detection)
112
- */
113
- invalidateVisuals() {
114
- this._changeDetector.detectChanges();
115
- }
116
- //######################### public methods - template bindings #########################
117
- /**
118
- * Handle input value
119
- * @param value - Value of input
120
- * @internal
121
- */
122
- handleInput(value) {
123
- this.searchValue = value;
124
- this.searchValueChange.emit();
125
- }
126
- //######################### protected methods #########################
127
- /**
128
- * Initialize texts
129
- */
130
- _initTexts() {
131
- Object.keys(this.options.texts).forEach(key => {
132
- this.texts[key] = this._stringLocalization.get(this.options.texts[key], null, true)();
133
- });
134
- this._changeDetector.detectChanges();
135
- }
136
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BasicLiveSearchComponent, deps: [{ token: NG_SELECT_PLUGIN_INSTANCES, optional: true }, { token: i1.PluginBus, optional: true }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: STRING_LOCALIZATION }, { token: LIVE_SEARCH_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
137
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.3", type: BasicLiveSearchComponent, isStandalone: false, selector: "ng-basic-live-search", viewQueries: [{ propertyName: "liveSearchElementChild", first: true, predicate: ["liveSearchElement"], descendants: true }, { propertyName: "inputElementChild", first: true, predicate: ["inputElement"], descendants: true }], ngImport: i0, template: "<div style=\"display: none;\">\r\n <div #liveSearchElement [ngClass]=\"options?.cssClasses?.wrapperDiv\">\r\n <input #inputElement [ngClass]=\"options?.cssClasses?.input\" type=\"text\" (input)=\"handleInput($any($event.target).value)\" [value]=\"searchValue\" placeholder=\"{{texts?.inputPlaceholder}}\">\r\n </div>\r\n</div>", styles: [".wrapper-div\r\n{\r\n padding: 4px;\r\n border-bottom: 1px solid #666;\r\n margin-bottom: 2px;\r\n}\r\n\r\n.form-control\r\n{\r\n width: 100%;\r\n}"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
138
- }
139
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: BasicLiveSearchComponent, decorators: [{
140
- type: Component,
141
- args: [{ selector: 'ng-basic-live-search', standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div style=\"display: none;\">\r\n <div #liveSearchElement [ngClass]=\"options?.cssClasses?.wrapperDiv\">\r\n <input #inputElement [ngClass]=\"options?.cssClasses?.input\" type=\"text\" (input)=\"handleInput($any($event.target).value)\" [value]=\"searchValue\" placeholder=\"{{texts?.inputPlaceholder}}\">\r\n </div>\r\n</div>", styles: [".wrapper-div\r\n{\r\n padding: 4px;\r\n border-bottom: 1px solid #666;\r\n margin-bottom: 2px;\r\n}\r\n\r\n.form-control\r\n{\r\n width: 100%;\r\n}"] }]
142
- }], ctorParameters: () => [{ type: undefined, decorators: [{
143
- type: Inject,
144
- args: [NG_SELECT_PLUGIN_INSTANCES]
145
- }, {
146
- type: Optional
147
- }] }, { type: i1.PluginBus, decorators: [{
148
- type: Optional
149
- }] }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
150
- type: Inject,
151
- args: [STRING_LOCALIZATION]
152
- }] }, { type: undefined, decorators: [{
153
- type: Inject,
154
- args: [LIVE_SEARCH_OPTIONS]
155
- }, {
156
- type: Optional
157
- }] }], propDecorators: { liveSearchElementChild: [{
158
- type: ViewChild,
159
- args: ['liveSearchElement']
160
- }], inputElementChild: [{
161
- type: ViewChild,
162
- args: ['inputElement']
163
- }] } });
164
- //# sourceMappingURL=basicLiveSearch.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"basicLiveSearch.component.js","sourceRoot":"","sources":["../../../../../src/plugins/liveSearch/basic/basicLiveSearch.component.ts","../../../../../src/plugins/liveSearch/basic/basicLiveSearch.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAC,SAAS,EAAE,uBAAuB,EAAE,iBAAiB,EAAE,MAAM,EAAE,QAAQ,EAAE,UAAU,EAAE,SAAS,EAAE,YAAY,EAAY,MAAM,eAAe,CAAC;AACtJ,OAAO,EAAC,mBAAmB,EAAqB,MAAM,eAAe,CAAC;AACtE,OAAO,EAAC,MAAM,EAAC,MAAM,uBAAuB,CAAC;AAM7C,OAAO,EAAC,0BAA0B,EAAC,MAAM,kCAAkC,CAAC;AAE5E,OAAO,EAAC,mBAAmB,EAAC,MAAM,UAAU,CAAC;AAE7C,OAAO,EAAC,KAAK,EAAC,MAAM,mBAAmB,CAAC;AACxC,OAAO,EAAC,SAAS,EAAC,MAAM,mCAAmC,CAAC;;;;AAE5D;;;GAGG;AACH,MAAM,cAAc,GACpB;IACI,UAAU,EACV;QACI,UAAU,EAAE,aAAa;QACzB,KAAK,EAAE,cAAc;KACxB;IACD,KAAK,EACL;QACI,gBAAgB,EAAE,gBAAgB;KACrC;IACD,eAAe,EAAE,KAAK;CACzB,CAAC;AAEF;;GAEG;AASH,MAAM,OAAO,wBAAwB;IAwBjC,2GAA2G;IAE3G;;OAEG;IACH,IAAW,OAAO;QAEd,OAAO,IAAI,CAAC,QAAQ,CAAC;IACzB,CAAC;IACD,IAAW,OAAO,CAAC,OAA+B;QAE9C,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,QAAQ,EAAE,OAAO,CAAC,CAAC;IACzD,CAAC;IAED;;OAEG;IACH,IAAW,iBAAiB;QAExB,OAAO,IAAI,CAAC,sBAAsB,CAAC,aAAa,CAAC;IACrD,CAAC;IAoCD,iEAAiE;IACjE,YAAmE,eAAwC,EAC5E,SAAoB,EAChC,aAAyB,EACtB,eAAkC,EACL,mBAAuC,EACrC,OAAgC;QALlB,oBAAe,GAAf,eAAe,CAAyB;QAC5E,cAAS,GAAT,SAAS,CAAW;QAChC,kBAAa,GAAb,aAAa,CAAY;QACtB,oBAAe,GAAf,eAAe,CAAmB;QACL,wBAAmB,GAAnB,mBAAmB,CAAoB;QAvC1F;;WAEG;QACI,gBAAW,GAAW,IAAI,CAAC;QAElC;;WAEG;QACI,sBAAiB,GAAuB,IAAI,YAAY,EAAQ,CAAC;QAExE,2FAA2F;QAE3F;;;WAGG;QACI,UAAK,GAAoB,EAAE,CAAC;QA0B/B,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,IAAI,EAAE,EAAE,EAAE,cAAc,EAAE,OAAO,CAAC,CAAC;IAC9D,CAAC;IAED,kGAAkG;IAElG;;OAEG;IACI,WAAW;QAEd,IAAI,CAAC,6BAA6B,EAAE,WAAW,EAAE,CAAC;QAClD,IAAI,CAAC,6BAA6B,GAAG,IAAI,CAAC;QAE1C,IAAI,CAAC,4BAA4B,EAAE,WAAW,EAAE,CAAC;QACjD,IAAI,CAAC,4BAA4B,GAAG,IAAI,CAAC;IAC7C,CAAC;IAED,wGAAwG;IAExG;;OAEG;IACI,UAAU;QAEb,MAAM,KAAK,GAAG,IAAI,CAAC,eAAe,CAAC,KAAK,CAAU,CAAC;QAEnD,IAAG,IAAI,CAAC,MAAM,IAAI,IAAI,CAAC,MAAM,IAAI,KAAK,EACtC,CAAC;YACG,IAAI,CAAC,6BAA6B,CAAC,WAAW,EAAE,CAAC;YACjD,IAAI,CAAC,6BAA6B,GAAG,IAAI,CAAC;YAE1C,IAAI,CAAC,MAAM,GAAG,IAAI,CAAC;QACvB,CAAC;QAED,IAAG,CAAC,IAAI,CAAC,MAAM,EACf,CAAC;YACG,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;YAEpB,IAAI,CAAC,6BAA6B,GAAG,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,SAAS,CAAC,GAAG,EAAE;gBAE7E,IAAG,CAAC,IAAI,CAAC,OAAO,CAAC,eAAe,EAChC,CAAC;oBACG,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,CAAC;oBAErB,IAAI,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC;gBACzC,CAAC;YACL,CAAC,CAAC,CAAC;QACP,CAAC;QAED,IAAG,CAAC,IAAI,CAAC,4BAA4B,EACrC,CAAC;YACG,IAAI,CAAC,4BAA4B,GAAG,IAAI,CAAC,SAAS,CAAC,eAAe,CAAC,SAAS,CAAC,GAAG,EAAE;gBAE9E,IAAI,CAAC,iBAAiB,EAAE,aAAa,CAAC,KAAK,EAAE,CAAC;YAClD,CAAC,CAAC,CAAC;QACP,CAAC;QAED,IAAI,CAAC,UAAU,EAAE,CAAC;IACtB,CAAC;IAED;;OAEG;IACI,WAAW;IAElB,CAAC;IAED;;OAEG;IACI,iBAAiB;QAEpB,IAAI,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC;IACzC,CAAC;IAED,wFAAwF;IAExF;;;;OAIG;IACI,WAAW,CAAC,KAAa;QAE5B,IAAI,CAAC,WAAW,GAAG,KAAK,CAAC;QACzB,IAAI,CAAC,iBAAiB,CAAC,IAAI,EAAE,CAAC;IAClC,CAAC;IAED,uEAAuE;IAEvE;;OAEG;IACO,UAAU;QAEhB,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,GAAG,CAAC,EAAE;YAE1C,IAAI,CAAC,KAAK,CAAC,GAA4B,CAAC,GAAG,IAAI,CAAC,mBAAmB,CAAC,GAAG,CAAC,IAAI,CAAC,OAAO,CAAC,KAAK,CAAC,GAA4B,CAAC,EAAE,IAAI,EAAE,IAAI,CAAC,EAAE,CAAC;QAC5I,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,eAAe,CAAC,aAAa,EAAE,CAAC;IACzC,CAAC;8GA7LQ,wBAAwB,kBAiFb,0BAA0B,iIAI1B,mBAAmB,aACnB,mBAAmB;kGAtF9B,wBAAwB,kTC5CrC,qVAIM;;2FDwCO,wBAAwB;kBARpC,SAAS;+BAEI,sBAAsB,cAGpB,KAAK,mBACA,uBAAuB,CAAC,MAAM;;0BAmFlC,MAAM;2BAAC,0BAA0B;;0BAAG,QAAQ;;0BAC5C,QAAQ;;0BAGR,MAAM;2BAAC,mBAAmB;;0BAC1B,MAAM;2BAAC,mBAAmB;;0BAAG,QAAQ;;sBAhBjD,SAAS;uBAAC,mBAAmB;;sBAO7B,SAAS;uBAAC,cAAc","sourcesContent":["import {Component, ChangeDetectionStrategy, ChangeDetectorRef, Inject, Optional, ElementRef, ViewChild, EventEmitter, OnDestroy} from '@angular/core';\nimport {STRING_LOCALIZATION, StringLocalization} from '@anglr/common';\nimport {extend} from '@jscrpt/common/extend';\nimport {Subscription} from 'rxjs';\n\nimport {BasicLiveSearchOptions, BasicLiveSearch} from './basicLiveSearch.interface';\nimport {NgSelectPlugin} from '../../../misc';\nimport {NgSelectPluginInstances} from '../../../components/select';\nimport {NG_SELECT_PLUGIN_INSTANCES} from '../../../components/select/types';\nimport {LiveSearchTexts} from '../liveSearch.interface';\nimport {LIVE_SEARCH_OPTIONS} from '../types';\nimport {Popup} from '../../popup';\nimport {POPUP} from '../../popup/types';\nimport {PluginBus} from '../../../misc/pluginBus/pluginBus';\n\n/**\n * Default options for live search\n * @internal\n */\nconst defaultOptions: BasicLiveSearchOptions =\n{\n cssClasses:\n {\n wrapperDiv: 'wrapper-div',\n input: 'form-control'\n },\n texts:\n {\n inputPlaceholder: 'Filter options'\n },\n keepSearchValue: false\n};\n\n/**\n * Component used for obtaining basic live search html element\n */\n@Component(\n{\n selector: 'ng-basic-live-search',\n templateUrl: 'basicLiveSearch.component.html',\n styleUrl: 'basicLiveSearch.component.css',\n standalone: false,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class BasicLiveSearchComponent implements BasicLiveSearch, NgSelectPlugin<BasicLiveSearchOptions>, OnDestroy\n{\n //######################### protected fields #########################\n\n /**\n * Popup used in NgSelect\n */\n protected _popup: Popup;\n\n /**\n * Subscription for changes of popup visibility\n */\n protected _visibilityChangeSubscription: Subscription;\n\n /**\n * Subscription for live search focus request\n */\n protected _liveSearchFocusSubscription: Subscription;\n\n /**\n * Options for NgSelect plugin\n */\n protected _options: BasicLiveSearchOptions;\n\n //######################### public properties - implementation of BasicLiveSearch #########################\n\n /**\n * Options for NgSelect plugin\n */\n public get options(): BasicLiveSearchOptions\n {\n return this._options;\n }\n public set options(options: BasicLiveSearchOptions)\n {\n this._options = extend(true, this._options, options);\n }\n\n /**\n * HTML element that represents live search\n */\n public get liveSearchElement(): HTMLElement\n {\n return this.liveSearchElementChild.nativeElement;\n }\n\n /**\n * Current value of live search\n */\n public searchValue: string = null;\n\n /**\n * Occurs when current value of live search changes\n */\n public searchValueChange: EventEmitter<void> = new EventEmitter<void>();\n\n //######################### public properties - template bindings #########################\n\n /**\n * Object containing available texts\n * @internal\n */\n public texts: LiveSearchTexts = {};\n\n //######################### public properties - children #########################\n\n /**\n * View child that represents live search element\n * @internal\n */\n @ViewChild('liveSearchElement')\n public liveSearchElementChild: ElementRef<HTMLElement>;\n\n /**\n * View child that represents input element\n * @internal\n */\n @ViewChild('inputElement')\n public inputElementChild: ElementRef<HTMLInputElement>;\n\n //######################### constructor #########################\n constructor(@Inject(NG_SELECT_PLUGIN_INSTANCES) @Optional() public ngSelectPlugins: NgSelectPluginInstances,\n @Optional() public pluginBus: PluginBus,\n public pluginElement: ElementRef,\n protected _changeDetector: ChangeDetectorRef,\n @Inject(STRING_LOCALIZATION) protected _stringLocalization: StringLocalization,\n @Inject(LIVE_SEARCH_OPTIONS) @Optional() options?: BasicLiveSearchOptions)\n {\n this._options = extend(true, {}, defaultOptions, options);\n }\n\n //######################### public methods - implementation of OnDestroy #########################\n\n /**\n * Called when component is destroyed\n */\n public ngOnDestroy()\n {\n this._visibilityChangeSubscription?.unsubscribe();\n this._visibilityChangeSubscription = null;\n\n this._liveSearchFocusSubscription?.unsubscribe();\n this._liveSearchFocusSubscription = null;\n }\n\n //######################### public methods - implementation of BasicLiveSearch #########################\n\n /**\n * Initialize plugin, to be ready to use, initialize communication with other plugins\n */\n public initialize()\n {\n const popup = this.ngSelectPlugins[POPUP] as Popup;\n\n if(this._popup && this._popup != popup)\n {\n this._visibilityChangeSubscription.unsubscribe();\n this._visibilityChangeSubscription = null;\n\n this._popup = null;\n }\n\n if(!this._popup)\n {\n this._popup = popup;\n\n this._visibilityChangeSubscription = this._popup.visibilityChange.subscribe(() =>\n {\n if(!this.options.keepSearchValue)\n {\n this.handleInput('');\n\n this._changeDetector.detectChanges();\n }\n });\n }\n\n if(!this._liveSearchFocusSubscription)\n {\n this._liveSearchFocusSubscription = this.pluginBus.liveSearchFocus.subscribe(() =>\n {\n this.inputElementChild?.nativeElement.focus();\n });\n }\n\n this._initTexts();\n }\n\n /**\n * Initialize plugin options, all operations required to be done with plugin options are handled here\n */\n public initOptions()\n {\n }\n\n /**\n * Explicitly runs invalidation of content (change detection)\n */\n public invalidateVisuals(): void\n {\n this._changeDetector.detectChanges();\n }\n\n //######################### public methods - template bindings #########################\n\n /**\n * Handle input value\n * @param value - Value of input\n * @internal\n */\n public handleInput(value: string)\n {\n this.searchValue = value;\n this.searchValueChange.emit();\n }\n\n //######################### protected methods #########################\n\n /**\n * Initialize texts\n */\n protected _initTexts()\n {\n Object.keys(this.options.texts).forEach(key =>\n {\n this.texts[key as keyof LiveSearchTexts] = this._stringLocalization.get(this.options.texts[key as keyof LiveSearchTexts], null, true)();\n });\n\n this._changeDetector.detectChanges();\n }\n}\n","<div style=\"display: none;\">\r\n <div #liveSearchElement [ngClass]=\"options?.cssClasses?.wrapperDiv\">\r\n <input #inputElement [ngClass]=\"options?.cssClasses?.input\" type=\"text\" (input)=\"handleInput($any($event.target).value)\" [value]=\"searchValue\" placeholder=\"{{texts?.inputPlaceholder}}\">\r\n </div>\r\n</div>"]}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=basicLiveSearch.interface.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"basicLiveSearch.interface.js","sourceRoot":"","sources":["../../../../../src/plugins/liveSearch/basic/basicLiveSearch.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {LiveSearch, LiveSearchOptions} from '../liveSearch.interface';\n\n/**\n * Css classes for basic live search\n */\nexport interface CssClassesBasicLiveSearch\n{\n /**\n * Applied to wrapper div around input\n */\n wrapperDiv?: string;\n\n /**\n * Applied to input that represents live search\n */\n input?: string;\n}\n\n/**\n * Basic live search options\n */\nexport interface BasicLiveSearchOptions extends LiveSearchOptions<CssClassesBasicLiveSearch>\n{\n /**\n * Indication whether keep search value after popup close\n */\n keepSearchValue?: boolean;\n}\n\n/**\n * Public API for 'BasicLiveSearchComponent'\n */\nexport interface BasicLiveSearch extends LiveSearch\n{\n}"]}
@@ -1,4 +0,0 @@
1
- export * from './no/noLiveSearch.component';
2
- export * from './basic/basicLiveSearch.component';
3
- export * from './edit/editLiveSearch.component';
4
- //# sourceMappingURL=components.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"components.js","sourceRoot":"","sources":["../../../../src/plugins/liveSearch/components.ts"],"names":[],"mappings":"AAAA,cAAc,6BAA6B,CAAC;AAC5C,cAAc,mCAAmC,CAAC;AAClD,cAAc,iCAAiC,CAAC","sourcesContent":["export * from './no/noLiveSearch.component';\nexport * from './basic/basicLiveSearch.component';\nexport * from './edit/editLiveSearch.component';"]}
@@ -1,313 +0,0 @@
1
- import { Component, ChangeDetectionStrategy, ChangeDetectorRef, Inject, Optional, ElementRef, ViewChild, EventEmitter } from '@angular/core';
2
- import { STRING_LOCALIZATION } from '@anglr/common';
3
- import { isPresent } from '@jscrpt/common';
4
- import { extend } from '@jscrpt/common/extend';
5
- import { NG_SELECT_PLUGIN_INSTANCES } from '../../../components/select/types';
6
- import { LIVE_SEARCH_OPTIONS } from '../types';
7
- import { VALUE_HANDLER } from '../../valueHandler/types';
8
- import { POPUP } from '../../popup/types';
9
- import { PluginBus } from '../../../misc/pluginBus/pluginBus';
10
- import * as i0 from "@angular/core";
11
- import * as i1 from "../../../misc/pluginBus/pluginBus";
12
- import * as i2 from "@angular/common";
13
- /**
14
- * Default options for live search
15
- * @internal
16
- */
17
- const defaultOptions = {
18
- cssClasses: {
19
- wrapperDiv: 'edit-wrapper-div',
20
- input: 'edit-control'
21
- },
22
- texts: {
23
- inputPlaceholder: 'Select item'
24
- },
25
- keepSearchValue: false,
26
- nonExistingCancel: false,
27
- emptyCancel: false
28
- };
29
- /**
30
- * Component used for obtaining edit live search html element
31
- */
32
- export class EditLiveSearchComponent {
33
- //######################### protected properties #########################
34
- /**
35
- * Gets currently available options
36
- */
37
- get availableOptions() {
38
- return this.pluginBus.selectOptions.optionsGatherer.availableOptions;
39
- }
40
- //######################### public properties - implementation of EditLiveSearch #########################
41
- /**
42
- * Options for NgSelect plugin
43
- */
44
- get options() {
45
- return this._options;
46
- }
47
- set options(options) {
48
- this._options = extend(true, this._options, options);
49
- }
50
- /**
51
- * HTML element that represents live search
52
- */
53
- get liveSearchElement() {
54
- return this.liveSearchElementChild.nativeElement;
55
- }
56
- //######################### constructor #########################
57
- constructor(ngSelectPlugins, pluginBus, pluginElement, _changeDetector, _stringLocalization, options) {
58
- this.ngSelectPlugins = ngSelectPlugins;
59
- this.pluginBus = pluginBus;
60
- this.pluginElement = pluginElement;
61
- this._changeDetector = _changeDetector;
62
- this._stringLocalization = _stringLocalization;
63
- /**
64
- * Current value of live search
65
- */
66
- this.searchValue = null;
67
- /**
68
- * Occurs when current value of live search changes
69
- */
70
- this.searchValueChange = new EventEmitter();
71
- //######################### public properties - template bindings #########################
72
- /**
73
- * Current value that is displayed
74
- * @internal
75
- */
76
- this.searchValueDisplayed = null;
77
- /**
78
- * Object containing available texts
79
- * @internal
80
- */
81
- this.texts = {};
82
- this._options = extend(true, {}, defaultOptions, options);
83
- }
84
- //######################### public methods - implementation of OnDestroy #########################
85
- /**
86
- * Called when component is destroyed
87
- */
88
- ngOnDestroy() {
89
- this._optionsChangeSubscription?.unsubscribe();
90
- this._optionsChangeSubscription = null;
91
- this._valueChangedSubscription?.unsubscribe();
92
- this._valueChangedSubscription = null;
93
- this._liveSearchFocusSubscription?.unsubscribe();
94
- this._liveSearchFocusSubscription = null;
95
- this._updateDisplayedValueSubscription?.unsubscribe();
96
- this._updateDisplayedValueSubscription = null;
97
- }
98
- //######################### public methods - implementation of EditLiveSearch #########################
99
- /**
100
- * Initialize plugin, to be ready to use, initialize communication with other plugins
101
- */
102
- initialize() {
103
- if (this._optionsGatherer && this._optionsGatherer != this.pluginBus.selectOptions.optionsGatherer) {
104
- this._optionsChangeSubscription.unsubscribe();
105
- this._optionsChangeSubscription = null;
106
- this._optionsGatherer = null;
107
- }
108
- if (!this._optionsGatherer) {
109
- this._optionsGatherer = this.pluginBus.selectOptions.optionsGatherer;
110
- this._optionsChangeSubscription = this._optionsGatherer.availableOptionsChange.subscribe(() => {
111
- //do not change active if active is visible
112
- if (!this.pluginBus.selectOptions.optionsGatherer.availableOptions.find((option) => option.active)) {
113
- //only when input is filled at least with one char
114
- if (this.searchValue) {
115
- const option = this.pluginBus.selectOptions.optionsGatherer.availableOptions.find(itm => this.pluginBus.selectOptions.liveSearchFilter(this.searchValue, this.pluginBus.selectOptions.normalizer)(itm));
116
- if (option) {
117
- this.pluginBus.selectOptions.optionsGatherer.options.forEach((option) => option.active = false);
118
- option.active = true;
119
- this._popup.invalidateVisuals();
120
- }
121
- }
122
- //select first
123
- else {
124
- this._activateSelectedOrFirst();
125
- }
126
- }
127
- });
128
- }
129
- const popup = this.ngSelectPlugins[POPUP];
130
- if (this._popup && this._popup != popup) {
131
- this._popup = null;
132
- }
133
- if (!this._popup) {
134
- this._popup = popup;
135
- }
136
- if (!this._liveSearchFocusSubscription) {
137
- this._liveSearchFocusSubscription = this.pluginBus.liveSearchFocus.subscribe(() => {
138
- this.inputElementChild?.nativeElement.focus();
139
- });
140
- }
141
- if (!this._updateDisplayedValueSubscription) {
142
- this._updateDisplayedValueSubscription = this.pluginBus.updateDisplayedValue.subscribe(() => {
143
- this.handleBlur();
144
- });
145
- }
146
- const valueHandler = this.ngSelectPlugins[VALUE_HANDLER];
147
- if (this._valueHandler && this._valueHandler != valueHandler) {
148
- this._valueChangedSubscription.unsubscribe();
149
- this._valueChangedSubscription = null;
150
- this._valueHandler = null;
151
- }
152
- if (!this._valueHandler) {
153
- this._valueHandler = valueHandler;
154
- this._valueChangedSubscription = this._valueHandler.valueChange.subscribe(() => {
155
- const selected = this._valueHandler.selectedOptions;
156
- if (!selected) {
157
- this.searchValueDisplayed = '';
158
- this.handleInput('');
159
- this._changeDetector.detectChanges();
160
- return;
161
- }
162
- //reset filtering of available options
163
- this.handleInput(null);
164
- if (Array.isArray(selected)) {
165
- this.searchValueDisplayed = '';
166
- this.inputElementChild?.nativeElement.focus();
167
- this._changeDetector.detectChanges();
168
- }
169
- else {
170
- //set selected into live search
171
- this.searchValueDisplayed = selected.text;
172
- this._changeDetector.detectChanges();
173
- //select current text
174
- this.inputElementChild?.nativeElement.select();
175
- }
176
- });
177
- }
178
- this._initTexts();
179
- }
180
- /**
181
- * Initialize plugin options, all operations required to be done with plugin options are handled here
182
- */
183
- initOptions() {
184
- }
185
- /**
186
- * Explicitly runs invalidation of content (change detection)
187
- */
188
- invalidateVisuals() {
189
- this._changeDetector.detectChanges();
190
- }
191
- //######################### public methods - template bindings #########################
192
- /**
193
- * Handle input value
194
- * @param value - Value of input
195
- * @param inputChange - Indication that change was by input event of input
196
- * @internal
197
- */
198
- handleInput(value, inputChange = false) {
199
- this.searchValue = value;
200
- this.searchValueChange.emit();
201
- if (inputChange) {
202
- this.pluginBus.showHidePopup.emit(true);
203
- this.searchValueDisplayed = value;
204
- //single value select
205
- if (!this.pluginBus.selectOptions.multiple) {
206
- //cancel value
207
- if (this._options.nonExistingCancel) {
208
- this._valueHandler.setValue(null);
209
- }
210
- //empty string cancels value
211
- else if (this._options.emptyCancel && isPresent(value) && !value.length) {
212
- this._valueHandler.setValue(null);
213
- }
214
- //otherwise keep last value
215
- }
216
- }
217
- }
218
- /**
219
- * Handles focus event
220
- * @param element - Element that got focus
221
- * @param show - Indication whether show popup
222
- * @internal
223
- */
224
- handleFocus(element, show = false) {
225
- element.select();
226
- this._activateSelectedOrFirst();
227
- if (show) {
228
- this.pluginBus.showHidePopup.emit(true);
229
- }
230
- this.pluginBus.focus.emit();
231
- }
232
- /**
233
- * Handles blur of live search
234
- */
235
- handleBlur() {
236
- //not multiple and selected value
237
- if (!this.pluginBus.selectOptions.multiple) {
238
- //use selected text
239
- if (this._valueHandler.selectedOptions && !Array.isArray(this._valueHandler.selectedOptions)) {
240
- this.searchValueDisplayed = this._valueHandler.selectedOptions.text;
241
- }
242
- //reset text
243
- else {
244
- this.searchValueDisplayed = '';
245
- }
246
- }
247
- //reset text
248
- else {
249
- this.searchValueDisplayed = '';
250
- }
251
- //reset available options
252
- this.searchValue = null;
253
- this.searchValueChange.emit();
254
- this._changeDetector.detectChanges();
255
- }
256
- //######################### protected methods #########################
257
- /**
258
- * Initialize texts
259
- */
260
- _initTexts() {
261
- Object.keys(this.options.texts).forEach(key => {
262
- this.texts[key] = this._stringLocalization.get(this.options.texts[key], null, true)();
263
- });
264
- this._changeDetector.detectChanges();
265
- }
266
- /**
267
- * Activates first available option or selected option
268
- */
269
- _activateSelectedOrFirst() {
270
- const activeOption = this.availableOptions.find(itm => itm.active);
271
- const selectedOptions = this.availableOptions.filter(itm => itm.selected);
272
- //nothing active, nothing selected
273
- if (!activeOption && !selectedOptions.length) {
274
- const first = this.availableOptions[0];
275
- if (first) {
276
- first.active = true;
277
- }
278
- }
279
- //nothing active
280
- else if (!activeOption) {
281
- //last selected as sactive
282
- selectedOptions[selectedOptions.length - 1].active = true;
283
- }
284
- }
285
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: EditLiveSearchComponent, deps: [{ token: NG_SELECT_PLUGIN_INSTANCES, optional: true }, { token: i1.PluginBus, optional: true }, { token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: STRING_LOCALIZATION }, { token: LIVE_SEARCH_OPTIONS, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
286
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.1.3", type: EditLiveSearchComponent, isStandalone: false, selector: "ng-edit-live-search", viewQueries: [{ propertyName: "liveSearchElementChild", first: true, predicate: ["liveSearchElement"], descendants: true }, { propertyName: "inputElementChild", first: true, predicate: ["inputElement"], descendants: true }], ngImport: i0, template: "<div style=\"display: none;\">\r\n <div #liveSearchElement [ngClass]=\"options?.cssClasses?.wrapperDiv\">\r\n <input #inputElement\r\n [ngClass]=\"options?.cssClasses?.input\"\r\n type=\"text\"\r\n [value]=\"searchValueDisplayed\"\r\n (input)=\"handleInput($any($event.target).value, true)\"\r\n (focus)=\"handleFocus($any($event.target))\"\r\n (click)=\"handleFocus($any($event.target), true)\"\r\n placeholder=\"{{texts?.inputPlaceholder}}\"\r\n [disabled]=\"pluginBus?.selectOptions.readonly\">\r\n </div>\r\n</div>", styles: [".edit-wrapper-div\r\n{\r\n width: 100%;\r\n}\r\n\r\n.edit-control\r\n{\r\n padding: 4px;\r\n height: 26px;\r\n width: 100%;\r\n border: none;\r\n outline: none;\r\n}"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
287
- }
288
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.1.3", ngImport: i0, type: EditLiveSearchComponent, decorators: [{
289
- type: Component,
290
- args: [{ selector: 'ng-edit-live-search', standalone: false, changeDetection: ChangeDetectionStrategy.OnPush, template: "<div style=\"display: none;\">\r\n <div #liveSearchElement [ngClass]=\"options?.cssClasses?.wrapperDiv\">\r\n <input #inputElement\r\n [ngClass]=\"options?.cssClasses?.input\"\r\n type=\"text\"\r\n [value]=\"searchValueDisplayed\"\r\n (input)=\"handleInput($any($event.target).value, true)\"\r\n (focus)=\"handleFocus($any($event.target))\"\r\n (click)=\"handleFocus($any($event.target), true)\"\r\n placeholder=\"{{texts?.inputPlaceholder}}\"\r\n [disabled]=\"pluginBus?.selectOptions.readonly\">\r\n </div>\r\n</div>", styles: [".edit-wrapper-div\r\n{\r\n width: 100%;\r\n}\r\n\r\n.edit-control\r\n{\r\n padding: 4px;\r\n height: 26px;\r\n width: 100%;\r\n border: none;\r\n outline: none;\r\n}"] }]
291
- }], ctorParameters: () => [{ type: undefined, decorators: [{
292
- type: Inject,
293
- args: [NG_SELECT_PLUGIN_INSTANCES]
294
- }, {
295
- type: Optional
296
- }] }, { type: i1.PluginBus, decorators: [{
297
- type: Optional
298
- }] }, { type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
299
- type: Inject,
300
- args: [STRING_LOCALIZATION]
301
- }] }, { type: undefined, decorators: [{
302
- type: Inject,
303
- args: [LIVE_SEARCH_OPTIONS]
304
- }, {
305
- type: Optional
306
- }] }], propDecorators: { liveSearchElementChild: [{
307
- type: ViewChild,
308
- args: ['liveSearchElement']
309
- }], inputElementChild: [{
310
- type: ViewChild,
311
- args: ['inputElement']
312
- }] } });
313
- //# sourceMappingURL=editLiveSearch.component.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"editLiveSearch.component.js","sourceRoot":"","sources":["../../../../../src/plugins/liveSearch/edit/editLiveSearch.component.ts","../../../../../src/plugins/liveSearch/edit/editLiveSearch.component.html"],"names":[],"mappings":"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","sourcesContent":["import {Component, ChangeDetectionStrategy, ChangeDetectorRef, Inject, Optional, ElementRef, ViewChild, EventEmitter, OnDestroy} from '@angular/core';\nimport {STRING_LOCALIZATION, StringLocalization} from '@anglr/common';\nimport {isPresent} from '@jscrpt/common';\nimport {extend} from '@jscrpt/common/extend';\nimport {Subscription} from 'rxjs';\n\nimport {EditLiveSearchOptions, EditLiveSearch} from './editLiveSearch.interface';\nimport {NgSelectPlugin, OptionsGatherer} from '../../../misc';\nimport {NgSelectPluginInstances} from '../../../components/select';\nimport {NG_SELECT_PLUGIN_INSTANCES} from '../../../components/select/types';\nimport {LIVE_SEARCH_OPTIONS} from '../types';\nimport {ValueHandler} from '../../valueHandler';\nimport {VALUE_HANDLER} from '../../valueHandler/types';\nimport {Popup} from '../../popup';\nimport {POPUP} from '../../popup/types';\nimport {ɵNgSelectOption} from '../../../components/option';\nimport {PluginBus} from '../../../misc/pluginBus/pluginBus';\nimport {LiveSearchTexts} from '../liveSearch.interface';\n\n/**\n * Default options for live search\n * @internal\n */\nconst defaultOptions: EditLiveSearchOptions =\n{\n cssClasses:\n {\n wrapperDiv: 'edit-wrapper-div',\n input: 'edit-control'\n },\n texts:\n {\n inputPlaceholder: 'Select item'\n\n },\n keepSearchValue: false,\n nonExistingCancel: false,\n emptyCancel: false\n};\n\n/**\n * Component used for obtaining edit live search html element\n */\n@Component(\n{\n selector: 'ng-edit-live-search',\n templateUrl: 'editLiveSearch.component.html',\n styleUrl: 'editLiveSearch.component.css',\n standalone: false,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class EditLiveSearchComponent implements EditLiveSearch, NgSelectPlugin<EditLiveSearchOptions>, OnDestroy\n{\n //######################### protected fields #########################\n\n /**\n * Popup plugin used within `NgSelect`\n */\n protected _popup: Popup;\n\n /**\n * Value handler plugin used within `NgSelect`\n */\n protected _valueHandler: ValueHandler;\n\n /**\n * Instance of previous options gatherer, that is used for obtaining available options\n */\n protected _optionsGatherer: OptionsGatherer;\n\n /**\n * Subscription for changes of options in options gatherer\n */\n protected _optionsChangeSubscription: Subscription;\n\n /**\n * Subscription for changes of selected value\n */\n protected _valueChangedSubscription: Subscription;\n\n /**\n * Subscription for live search focus request\n */\n protected _liveSearchFocusSubscription: Subscription;\n\n /**\n * Subscription for update displayed value request\n */\n protected _updateDisplayedValueSubscription: Subscription;\n\n /**\n * Options for NgSelect plugin\n */\n protected _options: EditLiveSearchOptions;\n\n //######################### protected properties #########################\n\n /**\n * Gets currently available options\n */\n protected get availableOptions(): ɵNgSelectOption[]\n {\n return this.pluginBus.selectOptions.optionsGatherer.availableOptions;\n }\n\n //######################### public properties - implementation of EditLiveSearch #########################\n\n /**\n * Options for NgSelect plugin\n */\n public get options(): EditLiveSearchOptions\n {\n return this._options;\n }\n public set options(options: EditLiveSearchOptions)\n {\n this._options = extend(true, this._options, options);\n }\n\n /**\n * HTML element that represents live search\n */\n public get liveSearchElement(): HTMLElement\n {\n return this.liveSearchElementChild.nativeElement;\n }\n\n /**\n * Current value of live search\n */\n public searchValue: string = null;\n\n /**\n * Occurs when current value of live search changes\n */\n public searchValueChange: EventEmitter<void> = new EventEmitter<void>();\n\n //######################### public properties - template bindings #########################\n\n /**\n * Current value that is displayed\n * @internal\n */\n public searchValueDisplayed: string = null;\n\n /**\n * Object containing available texts\n * @internal\n */\n public texts: LiveSearchTexts = {};\n\n //######################### public properties - children #########################\n\n /**\n * View child that represents live search element\n * @internal\n */\n @ViewChild('liveSearchElement')\n public liveSearchElementChild: ElementRef<HTMLElement>;\n\n /**\n * View child that represents input element\n * @internal\n */\n @ViewChild('inputElement')\n public inputElementChild: ElementRef<HTMLInputElement>;\n\n //######################### constructor #########################\n constructor(@Inject(NG_SELECT_PLUGIN_INSTANCES) @Optional() public ngSelectPlugins: NgSelectPluginInstances,\n @Optional() public pluginBus: PluginBus,\n public pluginElement: ElementRef,\n protected _changeDetector: ChangeDetectorRef,\n @Inject(STRING_LOCALIZATION) protected _stringLocalization: StringLocalization,\n @Inject(LIVE_SEARCH_OPTIONS) @Optional() options?: EditLiveSearchOptions)\n {\n this._options = extend(true, {}, defaultOptions, options);\n }\n\n //######################### public methods - implementation of OnDestroy #########################\n\n /**\n * Called when component is destroyed\n */\n public ngOnDestroy()\n {\n this._optionsChangeSubscription?.unsubscribe();\n this._optionsChangeSubscription = null;\n\n this._valueChangedSubscription?.unsubscribe();\n this._valueChangedSubscription = null;\n\n this._liveSearchFocusSubscription?.unsubscribe();\n this._liveSearchFocusSubscription = null;\n\n this._updateDisplayedValueSubscription?.unsubscribe();\n this._updateDisplayedValueSubscription = null;\n }\n\n //######################### public methods - implementation of EditLiveSearch #########################\n\n /**\n * Initialize plugin, to be ready to use, initialize communication with other plugins\n */\n public initialize()\n {\n if(this._optionsGatherer && this._optionsGatherer != this.pluginBus.selectOptions.optionsGatherer)\n {\n this._optionsChangeSubscription.unsubscribe();\n this._optionsChangeSubscription = null;\n\n this._optionsGatherer = null;\n }\n\n if(!this._optionsGatherer)\n {\n this._optionsGatherer = this.pluginBus.selectOptions.optionsGatherer;\n\n this._optionsChangeSubscription = this._optionsGatherer.availableOptionsChange.subscribe(() =>\n {\n //do not change active if active is visible\n if(!this.pluginBus.selectOptions.optionsGatherer.availableOptions.find((option: ɵNgSelectOption) => option.active))\n {\n //only when input is filled at least with one char\n if(this.searchValue)\n {\n const option: ɵNgSelectOption = this.pluginBus.selectOptions.optionsGatherer.availableOptions.find(itm => this.pluginBus.selectOptions.liveSearchFilter(this.searchValue, this.pluginBus.selectOptions.normalizer)(itm));\n\n if(option)\n {\n this.pluginBus.selectOptions.optionsGatherer.options.forEach((option: ɵNgSelectOption) => option.active = false);\n option.active = true;\n this._popup.invalidateVisuals();\n }\n }\n //select first\n else\n {\n this._activateSelectedOrFirst();\n }\n }\n });\n }\n\n const popup = this.ngSelectPlugins[POPUP] as Popup;\n\n if(this._popup && this._popup != popup)\n {\n this._popup = null;\n }\n\n if(!this._popup)\n {\n this._popup = popup;\n }\n\n if(!this._liveSearchFocusSubscription)\n {\n this._liveSearchFocusSubscription = this.pluginBus.liveSearchFocus.subscribe(() =>\n {\n this.inputElementChild?.nativeElement.focus();\n });\n }\n\n if(!this._updateDisplayedValueSubscription)\n {\n this._updateDisplayedValueSubscription = this.pluginBus.updateDisplayedValue.subscribe(() =>\n {\n this.handleBlur();\n });\n }\n\n const valueHandler = this.ngSelectPlugins[VALUE_HANDLER] as ValueHandler;\n\n if(this._valueHandler && this._valueHandler != valueHandler)\n {\n this._valueChangedSubscription.unsubscribe();\n this._valueChangedSubscription = null;\n\n this._valueHandler = null;\n }\n\n if(!this._valueHandler)\n {\n this._valueHandler = valueHandler;\n\n this._valueChangedSubscription = this._valueHandler.valueChange.subscribe(() =>\n {\n const selected = this._valueHandler.selectedOptions;\n\n if(!selected)\n {\n this.searchValueDisplayed = '';\n this.handleInput('');\n this._changeDetector.detectChanges();\n\n return;\n }\n\n //reset filtering of available options\n this.handleInput(null);\n\n if(Array.isArray(selected))\n {\n this.searchValueDisplayed = '';\n this.inputElementChild?.nativeElement.focus();\n this._changeDetector.detectChanges();\n }\n else\n {\n //set selected into live search\n this.searchValueDisplayed = selected.text;\n this._changeDetector.detectChanges();\n\n //select current text\n this.inputElementChild?.nativeElement.select();\n }\n });\n }\n\n this._initTexts();\n }\n\n /**\n * Initialize plugin options, all operations required to be done with plugin options are handled here\n */\n public initOptions()\n {\n }\n\n /**\n * Explicitly runs invalidation of content (change detection)\n */\n public invalidateVisuals(): void\n {\n this._changeDetector.detectChanges();\n }\n\n //######################### public methods - template bindings #########################\n\n /**\n * Handle input value\n * @param value - Value of input\n * @param inputChange - Indication that change was by input event of input\n * @internal\n */\n public handleInput(value: string, inputChange: boolean = false)\n {\n this.searchValue = value;\n this.searchValueChange.emit();\n\n if(inputChange)\n {\n this.pluginBus.showHidePopup.emit(true);\n this.searchValueDisplayed = value;\n\n //single value select\n if(!this.pluginBus.selectOptions.multiple)\n {\n //cancel value\n if(this._options.nonExistingCancel)\n {\n this._valueHandler.setValue(null);\n }\n //empty string cancels value\n else if(this._options.emptyCancel && isPresent(value) && !value.length)\n {\n this._valueHandler.setValue(null);\n }\n //otherwise keep last value\n }\n }\n }\n\n /**\n * Handles focus event\n * @param element - Element that got focus\n * @param show - Indication whether show popup\n * @internal\n */\n public handleFocus(element: HTMLInputElement, show: boolean = false)\n {\n element.select();\n\n this._activateSelectedOrFirst();\n\n if(show)\n {\n this.pluginBus.showHidePopup.emit(true);\n }\n\n this.pluginBus.focus.emit();\n }\n\n /**\n * Handles blur of live search\n */\n public handleBlur()\n {\n //not multiple and selected value\n if(!this.pluginBus.selectOptions.multiple)\n {\n //use selected text\n if(this._valueHandler.selectedOptions && !Array.isArray(this._valueHandler.selectedOptions))\n {\n this.searchValueDisplayed = this._valueHandler.selectedOptions.text;\n }\n //reset text\n else\n {\n this.searchValueDisplayed = '';\n }\n }\n //reset text\n else\n {\n this.searchValueDisplayed = '';\n }\n\n //reset available options\n this.searchValue = null;\n this.searchValueChange.emit();\n this._changeDetector.detectChanges();\n }\n\n //######################### protected methods #########################\n\n /**\n * Initialize texts\n */\n protected _initTexts()\n {\n Object.keys(this.options.texts).forEach(key =>\n {\n this.texts[key as keyof LiveSearchTexts] = this._stringLocalization.get(this.options.texts[key as keyof LiveSearchTexts], null, true)();\n });\n\n this._changeDetector.detectChanges();\n }\n\n /**\n * Activates first available option or selected option\n */\n protected _activateSelectedOrFirst()\n {\n const activeOption = this.availableOptions.find(itm => itm.active);\n const selectedOptions = this.availableOptions.filter(itm => itm.selected);\n\n //nothing active, nothing selected\n if(!activeOption && !selectedOptions.length)\n {\n const first = this.availableOptions[0];\n\n if(first)\n {\n first.active = true;\n }\n }\n //nothing active\n else if(!activeOption)\n {\n //last selected as sactive\n selectedOptions[selectedOptions.length - 1].active = true;\n }\n }\n}\n","<div style=\"display: none;\">\r\n <div #liveSearchElement [ngClass]=\"options?.cssClasses?.wrapperDiv\">\r\n <input #inputElement\r\n [ngClass]=\"options?.cssClasses?.input\"\r\n type=\"text\"\r\n [value]=\"searchValueDisplayed\"\r\n (input)=\"handleInput($any($event.target).value, true)\"\r\n (focus)=\"handleFocus($any($event.target))\"\r\n (click)=\"handleFocus($any($event.target), true)\"\r\n placeholder=\"{{texts?.inputPlaceholder}}\"\r\n [disabled]=\"pluginBus?.selectOptions.readonly\">\r\n </div>\r\n</div>"]}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=editLiveSearch.interface.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"editLiveSearch.interface.js","sourceRoot":"","sources":["../../../../../src/plugins/liveSearch/edit/editLiveSearch.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {LiveSearch, LiveSearchOptions} from '../liveSearch.interface';\n\n/**\n * Css classes for edit live search\n */\nexport interface CssClassesEditLiveSearch\n{\n /**\n * Applied to wrapper div around input\n */\n wrapperDiv?: string;\n\n /**\n * Applied to input that represents live search\n */\n input?: string;\n}\n\n/**\n * Edit live search options\n */\nexport interface EditLiveSearchOptions extends LiveSearchOptions<CssClassesEditLiveSearch>\n{\n /**\n * Indication whether keep search value after popup close\n */\n keepSearchValue?: boolean;\n\n /**\n * Indication whether cancel selected value if non existing value is in live search, works for single value\n */\n nonExistingCancel?: boolean;\n\n /**\n * Indicaiton whether empty string in live search cancel selected value\n */\n emptyCancel?: boolean;\n}\n\n/**\n * Public API for 'EditLiveSearchComponent'\n */\nexport interface EditLiveSearch extends LiveSearch\n{\n}"]}
@@ -1 +0,0 @@
1
- {"version":3,"file":"liveSearch.interface.js","sourceRoot":"","sources":["../../../../src/plugins/liveSearch/liveSearch.interface.ts"],"names":[],"mappings":"","sourcesContent":["import {EventEmitter} from '@angular/core';\n\nimport {NgSelectPlugin, VisualPluginOptions} from '../../misc';\n\n/**\n * Texts that are used within LiveSearch\n */\nexport interface LiveSearchTexts\n{\n /**\n * Displayed when nothing was entered into input\n */\n inputPlaceholder?: string;\n}\n\n/**\n * Options for live search plugin\n */\nexport interface LiveSearchOptions<TCssClasses = any> extends VisualPluginOptions<TCssClasses>\n{\n /**\n * Texts that are used within any LiveSearch\n */\n texts?: LiveSearchTexts;\n}\n\n/**\n * Keyboard handler plugin interface\n */\nexport interface LiveSearch extends NgSelectPlugin\n{\n /**\n * HTML element that represents live search\n */\n readonly liveSearchElement: HTMLElement;\n\n /**\n * Current value of live search\n */\n readonly searchValue: string;\n\n /**\n * Occurs when current value of live search changes\n */\n readonly searchValueChange: EventEmitter<void>;\n}"]}