@koobiq/components 16.0.0-beta.8 → 17.0.0-beta.1

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 (377) hide show
  1. package/autocomplete/_autocomplete-theme.scss +3 -10
  2. package/autocomplete/autocomplete.scss +0 -5
  3. package/badge/_badge-theme.scss +17 -8
  4. package/badge/badge.component.d.ts +20 -1
  5. package/badge/badge.component.scss +28 -0
  6. package/badge/badge.module.d.ts +1 -1
  7. package/button/_button-base.scss +1 -1
  8. package/button/_button-theme.scss +23 -38
  9. package/checkbox/_checkbox-theme.scss +9 -6
  10. package/checkbox/checkbox.scss +6 -8
  11. package/code-block/_code-block-theme.scss +43 -12
  12. package/code-block/actionbar.component.scss +34 -6
  13. package/code-block/code-block.component.d.ts +2 -2
  14. package/code-block/code-block.scss +101 -27
  15. package/core/common-behaviors/index.d.ts +2 -0
  16. package/core/locales/index.d.ts +0 -2
  17. package/core/option/_option-action-theme.scss +1 -1
  18. package/core/option/_option-theme.scss +5 -5
  19. package/core/option/action.scss +1 -1
  20. package/core/pop-up/pop-up.d.ts +7 -0
  21. package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +4 -15
  22. package/core/styles/_koobiq-theme.scss +2 -0
  23. package/core/styles/_variables.scss +1 -1
  24. package/core/styles/common/_select.scss +2 -1
  25. package/core/styles/theming/_components-theming.scss +116 -49
  26. package/core/styles/theming/_scrollbars-theme.scss +7 -2
  27. package/core/styles/theming/_theming.scss +200 -28
  28. package/core/styles/typography/_typography.scss +180 -5
  29. package/dropdown/_dropdown-theme.scss +1 -2
  30. package/esm2022/alert/alert.component.mjs +12 -12
  31. package/esm2022/alert/alert.module.mjs +4 -4
  32. package/esm2022/autocomplete/autocomplete-origin.directive.mjs +4 -4
  33. package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +6 -6
  34. package/esm2022/autocomplete/autocomplete.component.mjs +8 -8
  35. package/esm2022/autocomplete/autocomplete.module.mjs +4 -4
  36. package/esm2022/badge/badge.component.mjs +71 -10
  37. package/esm2022/badge/badge.module.mjs +14 -10
  38. package/esm2022/button/button.component.mjs +16 -13
  39. package/esm2022/button/button.module.mjs +4 -4
  40. package/esm2022/button-toggle/button-toggle.component.mjs +12 -12
  41. package/esm2022/button-toggle/button-toggle.module.mjs +4 -4
  42. package/esm2022/card/card.component.mjs +5 -5
  43. package/esm2022/card/card.module.mjs +4 -4
  44. package/esm2022/checkbox/checkbox-module.mjs +4 -4
  45. package/esm2022/checkbox/checkbox-required-validator.mjs +3 -3
  46. package/esm2022/checkbox/checkbox.mjs +7 -7
  47. package/esm2022/code-block/actionbar.component.mjs +5 -5
  48. package/esm2022/code-block/code-block.component.mjs +14 -12
  49. package/esm2022/code-block/code-block.module.mjs +8 -8
  50. package/esm2022/core/common-behaviors/color.mjs +1 -1
  51. package/esm2022/core/common-behaviors/common-module.mjs +7 -7
  52. package/esm2022/core/common-behaviors/error-state.mjs +1 -1
  53. package/esm2022/core/common-behaviors/index.mjs +3 -1
  54. package/esm2022/core/error/error-options.mjs +6 -6
  55. package/esm2022/core/formatters/date/formatter.mjs +5 -5
  56. package/esm2022/core/formatters/date/formatter.pipe.mjs +52 -52
  57. package/esm2022/core/formatters/index.mjs +7 -6
  58. package/esm2022/core/formatters/number/formatter.mjs +19 -19
  59. package/esm2022/core/forms/forms-module.mjs +4 -4
  60. package/esm2022/core/forms/forms.directive.mjs +8 -8
  61. package/esm2022/core/highlight/highlight.pipe.mjs +5 -5
  62. package/esm2022/core/highlight/index.mjs +4 -4
  63. package/esm2022/core/line/line.mjs +8 -8
  64. package/esm2022/core/locales/index.mjs +1 -3
  65. package/esm2022/core/locales/locale-service.mjs +5 -5
  66. package/esm2022/core/locales/locale-service.module.mjs +4 -4
  67. package/esm2022/core/option/action.mjs +9 -8
  68. package/esm2022/core/option/optgroup.mjs +4 -4
  69. package/esm2022/core/option/option-module.mjs +4 -4
  70. package/esm2022/core/option/option.mjs +8 -8
  71. package/esm2022/core/overlay/overlay-position-map.mjs +1 -1
  72. package/esm2022/core/pop-up/pop-up-trigger.mjs +6 -6
  73. package/esm2022/core/pop-up/pop-up.mjs +12 -5
  74. package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +6 -6
  75. package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs +4 -4
  76. package/esm2022/core/services/measure-scrollbar.service.mjs +6 -6
  77. package/esm2022/core/services/theme.service.mjs +5 -5
  78. package/esm2022/core/utils/data-size/data-size.pipe.mjs +7 -7
  79. package/esm2022/core/utils/data-size/size.mjs +1 -1
  80. package/esm2022/core/version.mjs +2 -2
  81. package/esm2022/datepicker/calendar-body.component.mjs +4 -4
  82. package/esm2022/datepicker/calendar-header.component.mjs +5 -5
  83. package/esm2022/datepicker/calendar.component.mjs +6 -6
  84. package/esm2022/datepicker/datepicker-animations.mjs +1 -1
  85. package/esm2022/datepicker/datepicker-input.directive.mjs +6 -6
  86. package/esm2022/datepicker/datepicker-intl.mjs +3 -3
  87. package/esm2022/datepicker/datepicker-module.mjs +4 -4
  88. package/esm2022/datepicker/datepicker-toggle.component.mjs +8 -8
  89. package/esm2022/datepicker/datepicker.component.mjs +10 -10
  90. package/esm2022/datepicker/month-view.component.mjs +6 -6
  91. package/esm2022/divider/divider.component.mjs +3 -3
  92. package/esm2022/divider/divider.module.mjs +4 -4
  93. package/esm2022/dl/dl.component.mjs +11 -11
  94. package/esm2022/dl/dl.module.mjs +4 -4
  95. package/esm2022/dropdown/dropdown-content.directive.mjs +6 -6
  96. package/esm2022/dropdown/dropdown-item.component.mjs +9 -8
  97. package/esm2022/dropdown/dropdown-trigger.directive.mjs +6 -6
  98. package/esm2022/dropdown/dropdown.component.mjs +6 -6
  99. package/esm2022/dropdown/dropdown.module.mjs +4 -4
  100. package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +10 -10
  101. package/esm2022/file-upload/file-drop.mjs +43 -6
  102. package/esm2022/file-upload/file-upload.mjs +1 -1
  103. package/esm2022/file-upload/file-upload.module.mjs +4 -4
  104. package/esm2022/file-upload/multiple-file-upload.component.mjs +7 -7
  105. package/esm2022/file-upload/single-file-upload.component.mjs +7 -7
  106. package/esm2022/form-field/cleaner.mjs +3 -3
  107. package/esm2022/form-field/form-field.mjs +21 -15
  108. package/esm2022/form-field/form-field.module.mjs +4 -4
  109. package/esm2022/form-field/hint.mjs +32 -10
  110. package/esm2022/form-field/password-hint.mjs +24 -21
  111. package/esm2022/form-field/password-toggle.mjs +6 -6
  112. package/esm2022/form-field/prefix.mjs +3 -3
  113. package/esm2022/form-field/stepper.mjs +4 -4
  114. package/esm2022/form-field/suffix.mjs +3 -3
  115. package/esm2022/form-field/validate.directive.mjs +17 -12
  116. package/esm2022/icon/icon-button.component.mjs +69 -0
  117. package/esm2022/icon/icon-item.component.mjs +28 -0
  118. package/esm2022/icon/icon.component.mjs +20 -93
  119. package/esm2022/icon/icon.module.mjs +8 -6
  120. package/esm2022/icon/public-api.mjs +3 -1
  121. package/esm2022/input/input-number-validators.mjs +7 -7
  122. package/esm2022/input/input-number.mjs +12 -9
  123. package/esm2022/input/input-password.mjs +6 -6
  124. package/esm2022/input/input.mjs +9 -9
  125. package/esm2022/input/input.module.mjs +4 -4
  126. package/esm2022/link/link.component.mjs +16 -5
  127. package/esm2022/link/link.module.mjs +4 -4
  128. package/esm2022/list/list-selection.component.mjs +16 -16
  129. package/esm2022/list/list.component.mjs +9 -9
  130. package/esm2022/list/list.module.mjs +4 -4
  131. package/esm2022/loader-overlay/loader-overlay.component.mjs +15 -15
  132. package/esm2022/loader-overlay/loader-overlay.module.mjs +4 -4
  133. package/esm2022/markdown/markdown.component.mjs +5 -5
  134. package/esm2022/markdown/markdown.module.mjs +4 -4
  135. package/esm2022/markdown/markdown.service.mjs +3 -3
  136. package/esm2022/modal/css-unit.pipe.mjs +3 -3
  137. package/esm2022/modal/modal-control.service.mjs +6 -6
  138. package/esm2022/modal/modal.component.mjs +22 -13
  139. package/esm2022/modal/modal.directive.mjs +12 -12
  140. package/esm2022/modal/modal.module.mjs +4 -4
  141. package/esm2022/modal/modal.service.mjs +5 -5
  142. package/esm2022/navbar/navbar-item.component.mjs +61 -52
  143. package/esm2022/navbar/navbar.component.mjs +28 -17
  144. package/esm2022/navbar/navbar.module.mjs +4 -4
  145. package/esm2022/navbar/vertical-navbar.component.mjs +9 -8
  146. package/esm2022/popover/popover-confirm.component.mjs +11 -13
  147. package/esm2022/popover/popover.component.mjs +16 -11
  148. package/esm2022/popover/popover.module.mjs +4 -4
  149. package/esm2022/progress-bar/progress-bar.component.mjs +11 -11
  150. package/esm2022/progress-bar/progress-bar.module.mjs +4 -4
  151. package/esm2022/progress-spinner/progress-spinner.component.mjs +12 -12
  152. package/esm2022/progress-spinner/progress-spinner.module.mjs +4 -4
  153. package/esm2022/radio/radio.component.mjs +10 -10
  154. package/esm2022/radio/radio.module.mjs +4 -4
  155. package/esm2022/risk-level/risk-level.component.mjs +3 -3
  156. package/esm2022/risk-level/risk-level.module.mjs +4 -4
  157. package/esm2022/select/select-option.directive.mjs +6 -6
  158. package/esm2022/select/select.component.mjs +30 -26
  159. package/esm2022/select/select.module.mjs +4 -4
  160. package/esm2022/sidebar/sidebar.component.mjs +11 -11
  161. package/esm2022/sidebar/sidebar.module.mjs +4 -4
  162. package/esm2022/sidepanel/sidepanel-container.component.mjs +7 -7
  163. package/esm2022/sidepanel/sidepanel-directives.mjs +18 -18
  164. package/esm2022/sidepanel/sidepanel-ref.mjs +1 -1
  165. package/esm2022/sidepanel/sidepanel.module.mjs +4 -4
  166. package/esm2022/sidepanel/sidepanel.service.mjs +6 -6
  167. package/esm2022/splitter/splitter.component.mjs +17 -17
  168. package/esm2022/splitter/splitter.module.mjs +4 -4
  169. package/esm2022/table/table.component.mjs +3 -3
  170. package/esm2022/table/table.module.mjs +4 -4
  171. package/esm2022/tabs/paginated-tab-header.mjs +6 -6
  172. package/esm2022/tabs/tab-body.component.mjs +11 -11
  173. package/esm2022/tabs/tab-content.directive.mjs +4 -4
  174. package/esm2022/tabs/tab-group.component.mjs +21 -21
  175. package/esm2022/tabs/tab-header.component.mjs +7 -7
  176. package/esm2022/tabs/tab-label-wrapper.directive.mjs +6 -5
  177. package/esm2022/tabs/tab-label.directive.mjs +3 -3
  178. package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +12 -11
  179. package/esm2022/tabs/tab.component.mjs +5 -5
  180. package/esm2022/tabs/tabs.module.mjs +4 -4
  181. package/esm2022/tags/tag-input.mjs +6 -6
  182. package/esm2022/tags/tag-list.component.mjs +9 -8
  183. package/esm2022/tags/tag.component.mjs +16 -16
  184. package/esm2022/tags/tag.module.mjs +4 -4
  185. package/esm2022/textarea/textarea.component.mjs +36 -25
  186. package/esm2022/textarea/textarea.module.mjs +4 -4
  187. package/esm2022/timepicker/timepicker.directive.mjs +6 -6
  188. package/esm2022/timepicker/timepicker.module.mjs +4 -4
  189. package/esm2022/timezone/cities-by-filter.pipe.mjs +3 -3
  190. package/esm2022/timezone/timezone-option.component.mjs +5 -5
  191. package/esm2022/timezone/timezone-option.directive.mjs +5 -5
  192. package/esm2022/timezone/timezone-select.component.mjs +9 -9
  193. package/esm2022/timezone/timezone.module.mjs +4 -4
  194. package/esm2022/timezone/timezone.utils.mjs +1 -1
  195. package/esm2022/timezone/utc-offset.pipe.mjs +3 -3
  196. package/esm2022/title/title.directive.mjs +6 -6
  197. package/esm2022/title/title.module.mjs +4 -4
  198. package/esm2022/toast/toast-animations.mjs +2 -1
  199. package/esm2022/toast/toast-container.component.mjs +22 -8
  200. package/esm2022/toast/toast.component.mjs +16 -10
  201. package/esm2022/toast/toast.module.mjs +4 -4
  202. package/esm2022/toast/toast.service.mjs +7 -6
  203. package/esm2022/toast/toast.type.mjs +1 -1
  204. package/esm2022/toggle/toggle.component.mjs +5 -5
  205. package/esm2022/toggle/toggle.module.mjs +4 -4
  206. package/esm2022/tooltip/tooltip.component.mjs +23 -23
  207. package/esm2022/tooltip/tooltip.module.mjs +4 -4
  208. package/esm2022/tree/control/base-tree-control.mjs +4 -4
  209. package/esm2022/tree/control/flat-tree-control.filters.mjs +47 -0
  210. package/esm2022/tree/control/flat-tree-control.mjs +27 -45
  211. package/esm2022/tree/control/nested-tree-control.mjs +1 -1
  212. package/esm2022/tree/control/tree-control.mjs +1 -1
  213. package/esm2022/tree/data-source/flat-data-source.mjs +1 -1
  214. package/esm2022/tree/node.mjs +5 -5
  215. package/esm2022/tree/outlet.mjs +4 -4
  216. package/esm2022/tree/padding.directive.mjs +6 -6
  217. package/esm2022/tree/public-api.mjs +2 -1
  218. package/esm2022/tree/toggle.mjs +12 -12
  219. package/esm2022/tree/tree-base.mjs +10 -10
  220. package/esm2022/tree/tree-option.component.mjs +12 -8
  221. package/esm2022/tree/tree-selection.component.mjs +6 -6
  222. package/esm2022/tree/tree.mjs +3 -3
  223. package/esm2022/tree/tree.module.mjs +4 -4
  224. package/esm2022/tree-select/tree-select.component.mjs +26 -18
  225. package/esm2022/tree-select/tree-select.module.mjs +9 -9
  226. package/fesm2022/koobiq-components-alert.mjs +16 -16
  227. package/fesm2022/koobiq-components-autocomplete.mjs +20 -20
  228. package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
  229. package/fesm2022/koobiq-components-badge.mjs +83 -18
  230. package/fesm2022/koobiq-components-badge.mjs.map +1 -1
  231. package/fesm2022/koobiq-components-button-toggle.mjs +15 -15
  232. package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
  233. package/fesm2022/koobiq-components-button.mjs +19 -16
  234. package/fesm2022/koobiq-components-button.mjs.map +1 -1
  235. package/fesm2022/koobiq-components-card.mjs +8 -8
  236. package/fesm2022/koobiq-components-card.mjs.map +1 -1
  237. package/fesm2022/koobiq-components-checkbox.mjs +13 -13
  238. package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
  239. package/fesm2022/koobiq-components-code-block.mjs +22 -21
  240. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  241. package/fesm2022/koobiq-components-core.mjs +199 -191
  242. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  243. package/fesm2022/koobiq-components-datepicker.mjs +45 -45
  244. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  245. package/fesm2022/koobiq-components-divider.mjs +7 -7
  246. package/fesm2022/koobiq-components-dl.mjs +14 -14
  247. package/fesm2022/koobiq-components-dl.mjs.map +1 -1
  248. package/fesm2022/koobiq-components-dropdown.mjs +27 -26
  249. package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
  250. package/fesm2022/koobiq-components-ellipsis-center.mjs +9 -9
  251. package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
  252. package/fesm2022/koobiq-components-file-upload.mjs +58 -21
  253. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  254. package/fesm2022/koobiq-components-form-field.mjs +109 -74
  255. package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
  256. package/fesm2022/koobiq-components-icon.mjs +39 -23
  257. package/fesm2022/koobiq-components-icon.mjs.map +1 -1
  258. package/fesm2022/koobiq-components-input.mjs +34 -31
  259. package/fesm2022/koobiq-components-input.mjs.map +1 -1
  260. package/fesm2022/koobiq-components-link.mjs +19 -8
  261. package/fesm2022/koobiq-components-link.mjs.map +1 -1
  262. package/fesm2022/koobiq-components-list.mjs +27 -27
  263. package/fesm2022/koobiq-components-list.mjs.map +1 -1
  264. package/fesm2022/koobiq-components-loader-overlay.mjs +18 -18
  265. package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
  266. package/fesm2022/koobiq-components-markdown.mjs +11 -11
  267. package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
  268. package/fesm2022/koobiq-components-modal.mjs +49 -40
  269. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  270. package/fesm2022/koobiq-components-navbar.mjs +99 -78
  271. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  272. package/fesm2022/koobiq-components-popover.mjs +30 -26
  273. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  274. package/fesm2022/koobiq-components-progress-bar.mjs +14 -14
  275. package/fesm2022/koobiq-components-progress-bar.mjs.map +1 -1
  276. package/fesm2022/koobiq-components-progress-spinner.mjs +15 -15
  277. package/fesm2022/koobiq-components-progress-spinner.mjs.map +1 -1
  278. package/fesm2022/koobiq-components-radio.mjs +13 -13
  279. package/fesm2022/koobiq-components-radio.mjs.map +1 -1
  280. package/fesm2022/koobiq-components-risk-level.mjs +7 -7
  281. package/fesm2022/koobiq-components-select.mjs +39 -35
  282. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  283. package/fesm2022/koobiq-components-sidebar.mjs +14 -14
  284. package/fesm2022/koobiq-components-sidebar.mjs.map +1 -1
  285. package/fesm2022/koobiq-components-sidepanel.mjs +32 -32
  286. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  287. package/fesm2022/koobiq-components-splitter.mjs +20 -20
  288. package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
  289. package/fesm2022/koobiq-components-table.mjs +7 -7
  290. package/fesm2022/koobiq-components-tabs.mjs +71 -69
  291. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  292. package/fesm2022/koobiq-components-tags.mjs +32 -31
  293. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  294. package/fesm2022/koobiq-components-textarea.mjs +39 -28
  295. package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
  296. package/fesm2022/koobiq-components-timepicker.mjs +9 -9
  297. package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
  298. package/fesm2022/koobiq-components-timezone.mjs +28 -28
  299. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  300. package/fesm2022/koobiq-components-title.mjs +9 -9
  301. package/fesm2022/koobiq-components-title.mjs.map +1 -1
  302. package/fesm2022/koobiq-components-toast.mjs +44 -26
  303. package/fesm2022/koobiq-components-toast.mjs.map +1 -1
  304. package/fesm2022/koobiq-components-toggle.mjs +8 -8
  305. package/fesm2022/koobiq-components-toggle.mjs.map +1 -1
  306. package/fesm2022/koobiq-components-tooltip.mjs +26 -26
  307. package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
  308. package/fesm2022/koobiq-components-tree-select.mjs +33 -25
  309. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  310. package/fesm2022/koobiq-components-tree.mjs +132 -100
  311. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  312. package/file-upload/_file-upload-theme.scss +10 -1
  313. package/file-upload/file-drop.d.ts +2 -1
  314. package/file-upload/file-upload.d.ts +4 -1
  315. package/file-upload/multiple-file-upload.component.d.ts +2 -2
  316. package/file-upload/single-file-upload.component.d.ts +2 -2
  317. package/form-field/_form-field-theme.scss +8 -14
  318. package/form-field/_hint-theme.scss +5 -1
  319. package/form-field/form-field.d.ts +2 -0
  320. package/form-field/form-field.scss +12 -1
  321. package/form-field/hint.d.ts +4 -1
  322. package/form-field/hint.scss +10 -2
  323. package/form-field/password-hint.d.ts +7 -5
  324. package/icon/_icon-button-theme.scss +129 -0
  325. package/icon/_icon-item-theme.scss +41 -0
  326. package/icon/_icon-theme.scss +1 -222
  327. package/icon/icon-button.component.d.ts +23 -0
  328. package/icon/icon-button.scss +33 -0
  329. package/icon/icon-item.component.d.ts +11 -0
  330. package/icon/icon-item.scss +18 -0
  331. package/icon/icon.component.d.ts +4 -25
  332. package/icon/icon.module.d.ts +6 -4
  333. package/icon/icon.scss +0 -41
  334. package/icon/public-api.d.ts +2 -0
  335. package/input/input-number.d.ts +3 -2
  336. package/link/_link-theme.scss +97 -89
  337. package/link/link.component.d.ts +4 -1
  338. package/list/_list-theme.scss +1 -2
  339. package/list/list.scss +3 -3
  340. package/modal/_modal-confirm.scss +0 -24
  341. package/modal/modal.component.d.ts +3 -0
  342. package/modal/modal.scss +32 -15
  343. package/navbar/_navbar-theme.scss +8 -7
  344. package/navbar/navbar-item.component.d.ts +5 -2
  345. package/navbar/navbar-item.scss +7 -2
  346. package/navbar/navbar.component.d.ts +3 -0
  347. package/package.json +30 -30
  348. package/popover/popover-confirm.component.d.ts +0 -2
  349. package/popover/popover.component.d.ts +6 -1
  350. package/prebuilt-themes/dark-theme.css +1 -1
  351. package/prebuilt-themes/light-theme.css +1 -1
  352. package/progress-spinner/progress-spinner.scss +10 -5
  353. package/select/_select-theme.scss +6 -6
  354. package/select/select.component.d.ts +1 -1
  355. package/select/select.scss +7 -0
  356. package/splitter/_splitter-theme.scss +5 -4
  357. package/tabs/_tabs-common.scss +1 -1
  358. package/tabs/_tabs-theme.scss +2 -2
  359. package/tags/tag-list.scss +4 -0
  360. package/textarea/textarea.component.d.ts +4 -3
  361. package/toast/toast-animations.d.ts +1 -0
  362. package/toast/toast-container.component.d.ts +7 -3
  363. package/toast/toast.component.d.ts +2 -0
  364. package/toast/toast.service.d.ts +2 -0
  365. package/toast/toast.type.d.ts +1 -0
  366. package/tooltip/tooltip.component.d.ts +1 -1
  367. package/tree/_tree-theme.scss +5 -5
  368. package/tree/control/base-tree-control.d.ts +1 -1
  369. package/tree/control/flat-tree-control.d.ts +5 -3
  370. package/tree/control/flat-tree-control.filters.d.ts +26 -0
  371. package/tree/control/tree-control.d.ts +1 -1
  372. package/tree/public-api.d.ts +1 -0
  373. package/tree/tree-option.scss +4 -4
  374. package/tree-select/_tree-select-theme.scss +6 -4
  375. package/tree-select/tree-select.component.d.ts +9 -5
  376. package/tree-select/tree-select.module.d.ts +1 -1
  377. package/form-field/password-hint.scss +0 -11
@@ -41,6 +41,12 @@ class KbqLink extends KbqLinkMixinBase {
41
41
  set big(value) {
42
42
  this._big = toBoolean(value);
43
43
  }
44
+ get compact() {
45
+ return this._compact;
46
+ }
47
+ set compact(value) {
48
+ this._compact = toBoolean(value);
49
+ }
44
50
  get useVisited() {
45
51
  return this._useVisited;
46
52
  }
@@ -64,6 +70,7 @@ class KbqLink extends KbqLinkMixinBase {
64
70
  this._pseudo = false;
65
71
  this._noUnderline = false;
66
72
  this._big = false;
73
+ this._compact = false;
67
74
  this._useVisited = false;
68
75
  this.focusMonitor.monitor(elementRef.nativeElement, true);
69
76
  this.updatePrintUrl();
@@ -82,10 +89,10 @@ class KbqLink extends KbqLinkMixinBase {
82
89
  this.printUrl = this._print || this.getHostElement().href?.replace(baseURLRegex, '');
83
90
  });
84
91
  }
85
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqLink, deps: [{ token: i0.ElementRef }, { token: i1.FocusMonitor }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive }); }
86
- /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.5", type: KbqLink, selector: "[kbq-link]", inputs: { tabIndex: "tabIndex", disabled: "disabled", pseudo: "pseudo", noUnderline: "noUnderline", big: "big", useVisited: "useVisited", print: "print" }, host: { properties: { "class.kbq-link_no-underline": "noUnderline", "class.kbq-link_use-visited": "useVisited", "class.kbq-link_big": "big", "class.kbq-link_pseudo": "pseudo", "class.kbq-link_print": "printMode", "class.kbq-text-only": "!hasIcon", "class.kbq-text-with-icon": "hasIcon", "attr.disabled": "disabled || null", "attr.tabindex": "tabIndex", "attr.print": "printUrl" }, classAttribute: "kbq-link" }, queries: [{ propertyName: "icon", first: true, predicate: KbqIcon, descendants: true }], exportAs: ["kbqLink"], usesInheritance: true, ngImport: i0 }); }
92
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLink, deps: [{ token: i0.ElementRef }, { token: i1.FocusMonitor }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Directive }); }
93
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqLink, selector: "[kbq-link]", inputs: { tabIndex: "tabIndex", disabled: "disabled", pseudo: "pseudo", noUnderline: "noUnderline", big: "big", compact: "compact", useVisited: "useVisited", print: "print" }, host: { properties: { "class.kbq-link_no-underline": "noUnderline", "class.kbq-link_use-visited": "useVisited", "class.kbq-link_big": "big", "class.kbq-link_compact": "compact", "class.kbq-link_pseudo": "pseudo", "class.kbq-link_print": "printMode", "class.kbq-text-only": "!hasIcon", "class.kbq-text-with-icon": "hasIcon", "class.kbq-disabled": "disabled || null", "attr.disabled": "disabled || null", "attr.tabindex": "tabIndex", "attr.print": "printUrl" }, classAttribute: "kbq-link" }, queries: [{ propertyName: "icon", first: true, predicate: KbqIcon, descendants: true }], exportAs: ["kbqLink"], usesInheritance: true, ngImport: i0 }); }
87
94
  }
88
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqLink, decorators: [{
95
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLink, decorators: [{
89
96
  type: Directive,
90
97
  args: [{
91
98
  selector: '[kbq-link]',
@@ -96,16 +103,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
96
103
  '[class.kbq-link_no-underline]': 'noUnderline',
97
104
  '[class.kbq-link_use-visited]': 'useVisited',
98
105
  '[class.kbq-link_big]': 'big',
106
+ '[class.kbq-link_compact]': 'compact',
99
107
  '[class.kbq-link_pseudo]': 'pseudo',
100
108
  '[class.kbq-link_print]': 'printMode',
101
109
  '[class.kbq-text-only]': '!hasIcon',
102
110
  '[class.kbq-text-with-icon]': 'hasIcon',
111
+ '[class.kbq-disabled]': 'disabled || null',
103
112
  '[attr.disabled]': 'disabled || null',
104
113
  '[attr.tabindex]': 'tabIndex',
105
114
  '[attr.print]': 'printUrl'
106
115
  }
107
116
  }]
108
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.FocusMonitor }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { disabled: [{
117
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i1.FocusMonitor }, { type: i0.ChangeDetectorRef }], propDecorators: { disabled: [{
109
118
  type: Input
110
119
  }], pseudo: [{
111
120
  type: Input
@@ -113,6 +122,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
113
122
  type: Input
114
123
  }], big: [{
115
124
  type: Input
125
+ }], compact: [{
126
+ type: Input
116
127
  }], useVisited: [{
117
128
  type: Input
118
129
  }], print: [{
@@ -123,13 +134,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
123
134
  }] } });
124
135
 
125
136
  class KbqLinkModule {
126
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
127
- /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.5", ngImport: i0, type: KbqLinkModule, declarations: [KbqLink], imports: [CommonModule,
137
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLinkModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
138
+ /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqLinkModule, declarations: [KbqLink], imports: [CommonModule,
128
139
  A11yModule], exports: [KbqLink] }); }
129
- /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqLinkModule, imports: [CommonModule,
140
+ /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLinkModule, imports: [CommonModule,
130
141
  A11yModule] }); }
131
142
  }
132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqLinkModule, decorators: [{
143
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqLinkModule, decorators: [{
133
144
  type: NgModule,
134
145
  args: [{
135
146
  imports: [
@@ -1 +1 @@
1
- {"version":3,"file":"koobiq-components-link.mjs","sources":["../../../packages/components/link/link.component.ts","../../../packages/components/link/link.module.ts","../../../packages/components/link/koobiq-components-link.ts"],"sourcesContent":["import { FocusMonitor } from '@angular/cdk/a11y';\nimport {\n Input,\n ElementRef,\n OnDestroy,\n ChangeDetectorRef,\n Directive,\n ContentChild\n} from '@angular/core';\nimport {\n CanDisable,\n CanDisableCtor,\n HasTabIndex,\n HasTabIndexCtor,\n mixinDisabled,\n mixinTabIndex,\n toBoolean\n} from '@koobiq/components/core';\nimport { KbqIcon } from '@koobiq/components/icon';\n\n\n/** @docs-private */\nexport class KbqLinkBase {}\n\n/** @docs-private */\nexport const KbqLinkMixinBase: HasTabIndexCtor & CanDisableCtor &\n typeof KbqLinkBase = mixinTabIndex(mixinDisabled(KbqLinkBase));\n\nexport const baseURLRegex = /^http(s)?:\\/\\//;\n\n@Directive({\n selector: '[kbq-link]',\n exportAs: 'kbqLink',\n inputs: ['tabIndex'],\n host: {\n class: 'kbq-link',\n '[class.kbq-link_no-underline]': 'noUnderline',\n '[class.kbq-link_use-visited]': 'useVisited',\n '[class.kbq-link_big]': 'big',\n '[class.kbq-link_pseudo]': 'pseudo',\n '[class.kbq-link_print]': 'printMode',\n '[class.kbq-text-only]': '!hasIcon',\n '[class.kbq-text-with-icon]': 'hasIcon',\n '[attr.disabled]': 'disabled || null',\n '[attr.tabindex]': 'tabIndex',\n '[attr.print]': 'printUrl'\n }\n})\n\nexport class KbqLink extends KbqLinkMixinBase implements OnDestroy, HasTabIndex, CanDisable {\n @Input()\n get disabled() {\n return this._disabled;\n }\n\n set disabled(value: any) {\n const newValue = toBoolean(value);\n\n if (newValue !== this._disabled) {\n this._disabled = newValue;\n this.changeDetector.markForCheck();\n }\n }\n\n private _disabled = false;\n\n @Input()\n get pseudo() {\n return this._pseudo;\n }\n\n set pseudo(value: any) {\n this._pseudo = toBoolean(value);\n }\n\n private _pseudo = false;\n\n @Input()\n get noUnderline() {\n return this._noUnderline;\n }\n\n set noUnderline(value: any) {\n this._noUnderline = toBoolean(value);\n }\n\n private _noUnderline = false;\n\n @Input()\n get big() {\n return this._big;\n }\n\n set big(value: any) {\n this._big = toBoolean(value);\n }\n\n private _big = false;\n\n @Input()\n get useVisited() {\n return this._useVisited;\n }\n\n set useVisited(value: any) {\n this._useVisited = toBoolean(value);\n }\n\n private _useVisited = false;\n\n get hasIcon(): boolean {\n return !!this.icon;\n }\n\n @Input()\n set print(value: any) {\n this.printMode = value !== null;\n\n this._print = value;\n\n this.updatePrintUrl();\n }\n\n private _print: string;\n\n printMode: boolean;\n\n printUrl: string;\n\n @ContentChild(KbqIcon) icon: KbqIcon;\n\n constructor(\n private elementRef: ElementRef,\n private focusMonitor: FocusMonitor,\n private changeDetector: ChangeDetectorRef\n ) {\n super();\n\n this.focusMonitor.monitor(elementRef.nativeElement, true);\n\n this.updatePrintUrl();\n }\n\n ngOnDestroy() {\n this.focusMonitor.stopMonitoring(this.elementRef.nativeElement);\n }\n\n focus(): void {\n this.getHostElement().focus();\n }\n\n getHostElement() {\n return this.elementRef.nativeElement;\n }\n\n private updatePrintUrl() {\n Promise.resolve().then(() => {\n this.printUrl = this._print || this.getHostElement().href?.replace(baseURLRegex, '');\n });\n }\n}\n","import { A11yModule } from '@angular/cdk/a11y';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { KbqLink } from './link.component';\n\n\n@NgModule({\n imports: [\n CommonModule,\n A11yModule\n ],\n declarations: [KbqLink],\n exports: [KbqLink]\n})\nexport class KbqLinkModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"koobiq-components-link.mjs","sources":["../../../packages/components/link/link.component.ts","../../../packages/components/link/link.module.ts","../../../packages/components/link/koobiq-components-link.ts"],"sourcesContent":["import { FocusMonitor } from '@angular/cdk/a11y';\nimport {\n Input,\n ElementRef,\n OnDestroy,\n ChangeDetectorRef,\n Directive,\n ContentChild\n} from '@angular/core';\nimport {\n CanDisable,\n CanDisableCtor,\n HasTabIndex,\n HasTabIndexCtor,\n mixinDisabled,\n mixinTabIndex,\n toBoolean\n} from '@koobiq/components/core';\nimport { KbqIcon } from '@koobiq/components/icon';\n\n\n/** @docs-private */\nexport class KbqLinkBase {}\n\n/** @docs-private */\nexport const KbqLinkMixinBase: HasTabIndexCtor & CanDisableCtor &\n typeof KbqLinkBase = mixinTabIndex(mixinDisabled(KbqLinkBase));\n\nexport const baseURLRegex = /^http(s)?:\\/\\//;\n\n@Directive({\n selector: '[kbq-link]',\n exportAs: 'kbqLink',\n inputs: ['tabIndex'],\n host: {\n class: 'kbq-link',\n '[class.kbq-link_no-underline]': 'noUnderline',\n '[class.kbq-link_use-visited]': 'useVisited',\n '[class.kbq-link_big]': 'big',\n '[class.kbq-link_compact]': 'compact',\n '[class.kbq-link_pseudo]': 'pseudo',\n '[class.kbq-link_print]': 'printMode',\n '[class.kbq-text-only]': '!hasIcon',\n '[class.kbq-text-with-icon]': 'hasIcon',\n '[class.kbq-disabled]': 'disabled || null',\n '[attr.disabled]': 'disabled || null',\n '[attr.tabindex]': 'tabIndex',\n '[attr.print]': 'printUrl'\n }\n})\n\nexport class KbqLink extends KbqLinkMixinBase implements OnDestroy, HasTabIndex, CanDisable {\n @Input()\n get disabled() {\n return this._disabled;\n }\n\n set disabled(value: any) {\n const newValue = toBoolean(value);\n\n if (newValue !== this._disabled) {\n this._disabled = newValue;\n this.changeDetector.markForCheck();\n }\n }\n\n private _disabled = false;\n\n @Input()\n get pseudo() {\n return this._pseudo;\n }\n\n set pseudo(value: any) {\n this._pseudo = toBoolean(value);\n }\n\n private _pseudo = false;\n\n @Input()\n get noUnderline() {\n return this._noUnderline;\n }\n\n set noUnderline(value: any) {\n this._noUnderline = toBoolean(value);\n }\n\n private _noUnderline = false;\n\n @Input()\n get big() {\n return this._big;\n }\n\n set big(value: any) {\n this._big = toBoolean(value);\n }\n\n private _big = false;\n\n @Input()\n get compact() {\n return this._compact;\n }\n\n set compact(value: any) {\n this._compact = toBoolean(value);\n }\n\n private _compact = false;\n\n @Input()\n get useVisited() {\n return this._useVisited;\n }\n\n set useVisited(value: any) {\n this._useVisited = toBoolean(value);\n }\n\n private _useVisited = false;\n\n get hasIcon(): boolean {\n return !!this.icon;\n }\n\n @Input()\n set print(value: any) {\n this.printMode = value !== null;\n\n this._print = value;\n\n this.updatePrintUrl();\n }\n\n private _print: string;\n\n printMode: boolean;\n\n printUrl: string;\n\n @ContentChild(KbqIcon) icon: KbqIcon;\n\n constructor(\n private elementRef: ElementRef,\n private focusMonitor: FocusMonitor,\n private changeDetector: ChangeDetectorRef\n ) {\n super();\n\n this.focusMonitor.monitor(elementRef.nativeElement, true);\n\n this.updatePrintUrl();\n }\n\n ngOnDestroy() {\n this.focusMonitor.stopMonitoring(this.elementRef.nativeElement);\n }\n\n focus(): void {\n this.getHostElement().focus();\n }\n\n getHostElement() {\n return this.elementRef.nativeElement;\n }\n\n private updatePrintUrl() {\n Promise.resolve().then(() => {\n this.printUrl = this._print || this.getHostElement().href?.replace(baseURLRegex, '');\n });\n }\n}\n","import { A11yModule } from '@angular/cdk/a11y';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { KbqLink } from './link.component';\n\n\n@NgModule({\n imports: [\n CommonModule,\n A11yModule\n ],\n declarations: [KbqLink],\n exports: [KbqLink]\n})\nexport class KbqLinkModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
@@ -441,15 +441,15 @@ class KbqListSelection extends KbqListSelectionMixinBase {
441
441
  }
442
442
  option.preventBlur = false;
443
443
  }
444
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListSelection, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: 'multiple', attribute: true }, { token: i1.Clipboard, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
445
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqListSelection, selector: "kbq-list-selection", inputs: { disabled: "disabled", autoSelect: "autoSelect", noUnselectLast: "noUnselectLast", horizontal: "horizontal", tabIndex: "tabIndex", compareWith: "compareWith" }, outputs: { onSelectAll: "onSelectAll", onCopy: "onCopy", selectionChange: "selectionChange" }, host: { listeners: { "keydown": "onKeyDown($event)", "window:resize": "updateScrollSize()" }, properties: { "attr.tabindex": "-1", "attr.disabled": "disabled || null" }, classAttribute: "kbq-list-selection" }, providers: [KBQ_SELECTION_LIST_VALUE_ACCESSOR], queries: [{ propertyName: "options", predicate: i0.forwardRef(function () { return KbqListOption; }), descendants: true }], exportAs: ["kbqListSelection"], usesInheritance: true, ngImport: i0, template: `
444
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListSelection, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: 'multiple', attribute: true }, { token: i1.Clipboard, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
445
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqListSelection, selector: "kbq-list-selection", inputs: { disabled: "disabled", autoSelect: "autoSelect", noUnselectLast: "noUnselectLast", horizontal: "horizontal", tabIndex: "tabIndex", compareWith: "compareWith" }, outputs: { onSelectAll: "onSelectAll", onCopy: "onCopy", selectionChange: "selectionChange" }, host: { listeners: { "keydown": "onKeyDown($event)", "window:resize": "updateScrollSize()" }, properties: { "attr.tabindex": "-1", "attr.disabled": "disabled || null" }, classAttribute: "kbq-list-selection" }, providers: [KBQ_SELECTION_LIST_VALUE_ACCESSOR], queries: [{ propertyName: "options", predicate: i0.forwardRef(() => KbqListOption), descendants: true }], exportAs: ["kbqListSelection"], usesInheritance: true, ngImport: i0, template: `
446
446
  <div [attr.tabindex]="tabIndex"
447
447
  (focus)="focus()"
448
448
  (blur)="blur()">
449
449
  <ng-content></ng-content>
450
- </div>`, isInline: true, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not([disabled]):hover .kbq-option-action,.kbq-list-item:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-item:not([disabled]).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not([disabled]):hover .kbq-option-action,.kbq-list-option:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-option:not([disabled]).kbq-action-button-focused .kbq-option-action{display:flex}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
450
+ </div>`, isInline: true, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action{display:flex}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
451
451
  }
452
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListSelection, decorators: [{
452
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListSelection, decorators: [{
453
453
  type: Component,
454
454
  args: [{ selector: 'kbq-list-selection', exportAs: 'kbqListSelection', template: `
455
455
  <div [attr.tabindex]="tabIndex"
@@ -462,13 +462,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
462
462
  '[attr.disabled]': 'disabled || null',
463
463
  '(keydown)': 'onKeyDown($event)',
464
464
  '(window:resize)': 'updateScrollSize()'
465
- }, providers: [KBQ_SELECTION_LIST_VALUE_ACCESSOR], preserveWhitespaces: false, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not([disabled]):hover .kbq-option-action,.kbq-list-item:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-item:not([disabled]).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not([disabled]):hover .kbq-option-action,.kbq-list-option:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-option:not([disabled]).kbq-action-button-focused .kbq-option-action{display:flex}\n"] }]
466
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i2.MultipleMode, decorators: [{
465
+ }, providers: [KBQ_SELECTION_LIST_VALUE_ACCESSOR], preserveWhitespaces: false, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action{display:flex}\n"] }]
466
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i2.MultipleMode, decorators: [{
467
467
  type: Attribute,
468
468
  args: ['multiple']
469
469
  }] }, { type: i1.Clipboard, decorators: [{
470
470
  type: Optional
471
- }] }]; }, propDecorators: { options: [{
471
+ }] }], propDecorators: { options: [{
472
472
  type: ContentChildren,
473
473
  args: [forwardRef(() => KbqListOption), { descendants: true }]
474
474
  }], onSelectAll: [{
@@ -489,10 +489,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
489
489
  type: Input
490
490
  }] } });
491
491
  class KbqListOptionCaption {
492
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListOptionCaption, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
493
- /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.1.5", type: KbqListOptionCaption, selector: "[kbq-list-option-caption]", host: { classAttribute: "kbq-list-option-caption" }, ngImport: i0 }); }
492
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListOptionCaption, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
493
+ /** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.2.0", type: KbqListOptionCaption, selector: "[kbq-list-option-caption]", host: { classAttribute: "kbq-list-option-caption" }, ngImport: i0 }); }
494
494
  }
495
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListOptionCaption, decorators: [{
495
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListOptionCaption, decorators: [{
496
496
  type: Directive,
497
497
  args: [{
498
498
  selector: '[kbq-list-option-caption]',
@@ -662,13 +662,13 @@ class KbqListOption {
662
662
  getHostElement() {
663
663
  return this.elementRef.nativeElement;
664
664
  }
665
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListOption, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: forwardRef(() => KbqListSelection) }, { token: i2.KbqOptgroup, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
666
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqListOption, selector: "kbq-list-option", inputs: { checkboxPosition: "checkboxPosition", value: "value", disabled: "disabled", showCheckbox: "showCheckbox", selected: "selected" }, host: { listeners: { "focusin": "focus()", "blur": "blur()", "click": "handleClick($event)", "keydown": "onKeydown($event)" }, properties: { "class.kbq-selected": "selected", "class.kbq-disabled": "disabled", "class.kbq-focused": "hasFocus", "class.kbq-action-button-focused": "actionButton?.active", "attr.tabindex": "tabIndex", "attr.disabled": "disabled || null" }, classAttribute: "kbq-list-option" }, providers: [
665
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListOption, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }, { token: forwardRef(() => KbqListSelection) }, { token: i2.KbqOptgroup, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
666
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqListOption, selector: "kbq-list-option", inputs: { checkboxPosition: "checkboxPosition", value: "value", disabled: "disabled", showCheckbox: "showCheckbox", selected: "selected" }, host: { listeners: { "focusin": "focus()", "blur": "blur()", "click": "handleClick($event)", "keydown": "onKeydown($event)" }, properties: { "class.kbq-selected": "selected", "class.kbq-disabled": "disabled", "class.kbq-focused": "hasFocus", "class.kbq-action-button-focused": "actionButton?.active", "attr.tabindex": "tabIndex", "attr.disabled": "disabled || null" }, classAttribute: "kbq-list-option" }, providers: [
667
667
  { provide: KBQ_OPTION_ACTION_PARENT, useExisting: KbqListOption },
668
668
  { provide: KBQ_TITLE_TEXT_REF, useExisting: KbqListOption }
669
669
  ], queries: [{ propertyName: "actionButton", first: true, predicate: KbqOptionActionComponent, descendants: true }, { propertyName: "tooltipTrigger", first: true, predicate: KbqTooltipTrigger, descendants: true }, { propertyName: "dropdownTrigger", first: true, predicate: KbqDropdownTrigger, descendants: true }], viewQueries: [{ propertyName: "text", first: true, predicate: ["text"], descendants: true }, { propertyName: "textElement", first: true, predicate: ["kbqTitleText"], descendants: true }], exportAs: ["kbqListOption"], ngImport: i0, template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<ng-content select=\"[kbq-icon]\"></ng-content>\n\n<div class=\"kbq-list-text\" #text #kbqTitleText>\n <ng-content></ng-content>\n <ng-content select=\"[kbq-list-option-caption]\"></ng-content>\n</div>\n\n<ng-content select=\"kbq-option-action\"></ng-content>\n", dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.KbqPseudoCheckbox, selector: "kbq-pseudo-checkbox", inputs: ["color", "big", "state", "disabled"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
670
670
  }
671
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListOption, decorators: [{
671
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListOption, decorators: [{
672
672
  type: Component,
673
673
  args: [{ exportAs: 'kbqListOption', selector: 'kbq-list-option', host: {
674
674
  class: 'kbq-list-option',
@@ -686,12 +686,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
686
686
  { provide: KBQ_OPTION_ACTION_PARENT, useExisting: KbqListOption },
687
687
  { provide: KBQ_TITLE_TEXT_REF, useExisting: KbqListOption }
688
688
  ], template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<ng-content select=\"[kbq-icon]\"></ng-content>\n\n<div class=\"kbq-list-text\" #text #kbqTitleText>\n <ng-content></ng-content>\n <ng-content select=\"[kbq-list-option-caption]\"></ng-content>\n</div>\n\n<ng-content select=\"kbq-option-action\"></ng-content>\n" }]
689
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: KbqListSelection, decorators: [{
689
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }, { type: KbqListSelection, decorators: [{
690
690
  type: Inject,
691
691
  args: [forwardRef(() => KbqListSelection)]
692
692
  }] }, { type: i2.KbqOptgroup, decorators: [{
693
693
  type: Optional
694
- }] }]; }, propDecorators: { actionButton: [{
694
+ }] }], propDecorators: { actionButton: [{
695
695
  type: ContentChild,
696
696
  args: [KbqOptionActionComponent]
697
697
  }], tooltipTrigger: [{
@@ -720,12 +720,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
720
720
 
721
721
  // todo пока не делаем, перенесено из материала, но у нас в доках таких простых списков нет.
722
722
  class KbqList {
723
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqList, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
724
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqList, selector: "kbq-list", host: { classAttribute: "kbq-list" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not([disabled]):hover .kbq-option-action,.kbq-list-item:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-item:not([disabled]).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not([disabled]):hover .kbq-option-action,.kbq-list-option:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-option:not([disabled]).kbq-action-button-focused .kbq-option-action{display:flex}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
723
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqList, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
724
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqList, selector: "kbq-list", host: { classAttribute: "kbq-list" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action{display:flex}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
725
725
  }
726
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqList, decorators: [{
726
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqList, decorators: [{
727
727
  type: Component,
728
- args: [{ selector: 'kbq-list', host: { class: 'kbq-list' }, template: '<ng-content></ng-content>', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not([disabled]):hover .kbq-option-action,.kbq-list-item:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-item:not([disabled]).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not([disabled]):hover .kbq-option-action,.kbq-list-option:not([disabled]).kbq-focused .kbq-option-action,.kbq-list-option:not([disabled]).kbq-action-button-focused .kbq-option-action{display:flex}\n"] }]
728
+ args: [{ selector: 'kbq-list', host: { class: 'kbq-list' }, template: '<ng-content></ng-content>', changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, styles: [".kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.kbq-list,.kbq-list-selection{display:block;outline:none}.kbq-list-item,.kbq-list-option{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative;display:flex;flex-direction:row;align-items:center;box-sizing:border-box;outline:none;-webkit-tap-highlight-color:transparent;min-height:32px;gap:var(--kbq-list-size-container-content-gap-horizontal, 8px);border-width:var(--kbq-list-size-container-focus-outline-width, 2px);border-style:solid;border-color:transparent;padding:calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-right, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-vertical, 4px) - var(--kbq-list-size-container-focus-outline-width, 2px)) calc(var(--kbq-list-size-container-padding-left, 12px) - var(--kbq-list-size-container-focus-outline-width, 2px))}.kbq-list-item .kbq-list-text,.kbq-list-option .kbq-list-text{display:flex;flex-direction:column;width:100%;box-sizing:border-box;display:inline-block;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding-top:var(--kbq-list-size-text-padding-vertical, 4px);padding-bottom:var(--kbq-list-size-text-padding-vertical, 4px)}.kbq-list-item .kbq-list-text>*,.kbq-list-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-list-item .kbq-list-text:empty,.kbq-list-option .kbq-list-text:empty{display:none}.kbq-list-item .kbq-list-option-caption,.kbq-list-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-list-item:not(.kbq-disabled),.kbq-list-option:not(.kbq-disabled){cursor:pointer}.kbq-list-item .kbq-option-action,.kbq-list-option .kbq-option-action{display:none}.kbq-list-item:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-item:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled):hover .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-focused .kbq-option-action,.kbq-list-option:not(.kbq-disabled).kbq-action-button-focused .kbq-option-action{display:flex}\n"] }]
729
729
  }] });
730
730
  class KbqListItem {
731
731
  constructor(elementRef) {
@@ -744,24 +744,24 @@ class KbqListItem {
744
744
  getHostElement() {
745
745
  return this.elementRef.nativeElement;
746
746
  }
747
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
748
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqListItem, selector: "kbq-list-item, a[kbq-list-item]", host: { listeners: { "focus": "handleFocus()", "blur": "handleBlur()" }, classAttribute: "kbq-list-item" }, queries: [{ propertyName: "lines", predicate: KbqLine }], ngImport: i0, template: "<ng-content select=\"[kbq-list-icon], [mcListIcon]\"></ng-content>\n\n<div class=\"kbq-list-text\">\n <ng-content select=\"[kbq-line], [mcLine]\"></ng-content>\n</div>\n\n<ng-content></ng-content>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
747
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListItem, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
748
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.2.0", type: KbqListItem, selector: "kbq-list-item, a[kbq-list-item]", host: { listeners: { "focus": "handleFocus()", "blur": "handleBlur()" }, classAttribute: "kbq-list-item" }, queries: [{ propertyName: "lines", predicate: KbqLine }], ngImport: i0, template: "<ng-content select=\"[kbq-list-icon], [mcListIcon]\"></ng-content>\n\n<div class=\"kbq-list-text\">\n <ng-content select=\"[kbq-line], [mcLine]\"></ng-content>\n</div>\n\n<ng-content></ng-content>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
749
749
  }
750
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListItem, decorators: [{
750
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListItem, decorators: [{
751
751
  type: Component,
752
752
  args: [{ selector: 'kbq-list-item, a[kbq-list-item]', host: {
753
753
  class: 'kbq-list-item',
754
754
  '(focus)': 'handleFocus()',
755
755
  '(blur)': 'handleBlur()'
756
756
  }, encapsulation: ViewEncapsulation.None, preserveWhitespaces: false, changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content select=\"[kbq-list-icon], [mcListIcon]\"></ng-content>\n\n<div class=\"kbq-list-text\">\n <ng-content select=\"[kbq-line], [mcLine]\"></ng-content>\n</div>\n\n<ng-content></ng-content>\n" }]
757
- }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { lines: [{
757
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { lines: [{
758
758
  type: ContentChildren,
759
759
  args: [KbqLine]
760
760
  }] } });
761
761
 
762
762
  class KbqListModule {
763
- /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
764
- /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.1.5", ngImport: i0, type: KbqListModule, declarations: [KbqList,
763
+ /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
764
+ /** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.2.0", ngImport: i0, type: KbqListModule, declarations: [KbqList,
765
765
  KbqListSelection,
766
766
  KbqListItem,
767
767
  KbqListOption,
@@ -775,13 +775,13 @@ class KbqListModule {
775
775
  KbqListOption,
776
776
  KbqListOptionCaption,
777
777
  KbqOptionModule] }); }
778
- /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListModule, imports: [CommonModule,
778
+ /** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListModule, imports: [CommonModule,
779
779
  A11yModule,
780
780
  KbqPseudoCheckboxModule,
781
781
  KbqLineModule,
782
782
  KbqOptionModule, KbqOptionModule] }); }
783
783
  }
784
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqListModule, decorators: [{
784
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.2.0", ngImport: i0, type: KbqListModule, decorators: [{
785
785
  type: NgModule,
786
786
  args: [{
787
787
  imports: [