@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
@@ -9,6 +9,7 @@ $tokens: meta.module-variables(tokens) !default;
9
9
  .kbq-code-block {
10
10
  display: block;
11
11
  position: relative;
12
+ overflow: hidden;
12
13
 
13
14
  box-sizing: border-box;
14
15
 
@@ -17,24 +18,62 @@ $tokens: meta.module-variables(tokens) !default;
17
18
  -moz-hyphens: none;
18
19
  -webkit-hyphens: none;
19
20
 
20
- border-width: 1px;
21
+ border-width: var(
22
+ --kbq-code-block-size-container-border-width, map.get($tokens, code-block-size-container-border-width)
23
+ );
21
24
  border-style: solid;
22
- border-radius: map.get($tokens, code-block-size-border-radius);
23
-
24
- &:not(.kbq-code-block_no-header) .kbq-tab-group:after {
25
- content: "";
26
-
27
- position: absolute;
28
- top: 39px;
29
- left: 0;
30
- right: 0;
31
-
32
- height: 1px;
33
- }
25
+ border-radius: var(
26
+ --kbq-code-block-size-container-border-radius, map.get($tokens, code-block-size-container-border-radius)
27
+ );
34
28
 
35
29
  .kbq-tab-header {
36
30
  // 4 buttons + margin
37
31
  margin-right: calc(32 * 4) + 24px;
32
+
33
+ padding:
34
+ var(
35
+ --kbq-code-block-size-header-padding-vertical,
36
+ map.get($tokens, code-block-size-header-padding-vertical)
37
+ )
38
+ var(
39
+ --kbq-code-block-size-header-padding-right,
40
+ map.get($tokens, code-block-size-header-padding-right)
41
+ )
42
+ var(
43
+ --kbq-code-block-size-header-padding-vertical,
44
+ map.get($tokens, code-block-size-header-padding-vertical)
45
+ ) var(
46
+ --kbq-code-block-size-header-padding-left,
47
+ map.get($tokens, code-block-size-header-padding-left)
48
+ );
49
+ }
50
+
51
+ .kbq-code-block__code {
52
+ > code {
53
+ padding:
54
+ var(
55
+ --kbq-code-block-size-with-header-content-padding-top,
56
+ map.get($tokens, code-block-size-with-header-content-padding-top)
57
+ )
58
+ var(
59
+ --kbq-code-block-size-with-header-content-padding-horizontal,
60
+ map.get($tokens, code-block-size-with-header-content-padding-horizontal)
61
+ )
62
+ var(
63
+ --kbq-code-block-size-with-header-content-padding-bottom,
64
+ map.get($tokens, code-block-size-with-header-content-padding-bottom)
65
+ ) var(
66
+ --kbq-code-block-size-with-header-content-padding-horizontal,
67
+ map.get($tokens, code-block-size-with-header-content-padding-horizontal)
68
+ );
69
+ }
70
+
71
+ .hljs-ln-numbers {
72
+ padding-right: var(
73
+ --kbq-code-block-size-with-header-content-content-gap-horizontal,
74
+ map.get($tokens, code-block-size-with-header-content-content-gap-horizontal)
75
+ );
76
+ }
38
77
  }
39
78
 
40
79
  &.kbq-code-block_hide-line-numbers .hljs-ln-line.hljs-ln-numbers {
@@ -54,12 +93,31 @@ $tokens: meta.module-variables(tokens) !default;
54
93
  }
55
94
 
56
95
  &.kbq-code-block_no-header {
96
+ .kbq-tab-header {
97
+ display: none;
98
+ }
99
+
57
100
  .kbq-code-block__code {
58
101
  position: relative;
59
- }
60
102
 
61
- .kbq-tab-header {
62
- display: none;
103
+ & > code {
104
+ padding:
105
+ var(
106
+ --kbq-code-block-size-no-header-content-padding-vertical,
107
+ map.get($tokens, code-block-size-no-header-content-padding-vertical)
108
+ )
109
+ var(
110
+ --kbq-code-block-size-no-header-content-padding-horizontal,
111
+ map.get($tokens, code-block-size-no-header-content-padding-horizontal)
112
+ );
113
+ }
114
+
115
+ .hljs-ln-numbers {
116
+ padding-right: var(
117
+ --kbq-code-block-size-no-header-content-content-gap-horizontal,
118
+ map.get($tokens, code-block-size-no-header-content-content-gap-horizontal)
119
+ );
120
+ }
63
121
  }
64
122
  }
65
123
 
@@ -89,10 +147,6 @@ $tokens: meta.module-variables(tokens) !default;
89
147
  white-space: pre-wrap
90
148
  }
91
149
 
92
- > code {
93
- padding: map.get($tokens, code-block-size-padding) !important;
94
- }
95
-
96
150
  .hljs-ln {
97
151
  border-collapse: unset;
98
152
 
@@ -102,9 +156,6 @@ $tokens: meta.module-variables(tokens) !default;
102
156
  }
103
157
 
104
158
  .hljs-ln-numbers {
105
- border-right-width: map.get($tokens, code-block-size-line-numbers-border-width);
106
- padding: map.get($tokens, code-block-size-line-numbers-padding);
107
-
108
159
  vertical-align: baseline;
109
160
  text-align: right;
110
161
  }
@@ -115,14 +166,37 @@ $tokens: meta.module-variables(tokens) !default;
115
166
  }
116
167
 
117
168
  .kbq-code-block__show-more {
169
+ display: flex;
170
+ justify-content: center;
118
171
  overflow: hidden;
119
172
 
120
173
  width: 100%;
121
174
 
122
- border-top-style: solid !important;
123
- border-top-width: 1px !important;
175
+ position: absolute;
176
+ bottom: 0;
124
177
 
125
- border-top-left-radius: 0 !important;
126
- border-top-right-radius: 0 !important;
178
+ &.kbq-code-block__show-more_collapsed {
179
+ padding-top: var(
180
+ --kbq-code-block-size-collapse-collapsed-padding-top,
181
+ map.get($tokens, code-block-size-collapse-collapsed-padding-top)
182
+ );
183
+
184
+ padding-bottom: var(
185
+ --kbq-code-block-size-collapse-collapsed-padding-bottom,
186
+ map.get($tokens, code-block-size-collapse-collapsed-padding-bottom)
187
+ );
188
+ }
189
+
190
+ &.kbq-code-block__show-more_expanded {
191
+ padding-top: var(
192
+ --kbq-code-block-size-collapse-expanded-padding-top,
193
+ map.get($tokens, code-block-size-collapse-expanded-padding-top)
194
+ );
195
+
196
+ margin-bottom: var(
197
+ --kbq-code-block-size-collapse-expanded-padding-bottom,
198
+ map.get($tokens, code-block-size-collapse-expanded-padding-bottom)
199
+ );
200
+ }
127
201
  }
128
202
  /* stylelint-enable no-descending-specificity */
@@ -1,5 +1,7 @@
1
+ import { InjectionToken } from '@angular/core';
1
2
  export { KbqCommonModule, KBQ_SANITY_CHECKS } from './common-module';
2
3
  export { CanDisable, CanDisableCtor, mixinDisabled } from './disabled';
3
4
  export { CanColor, CanColorCtor, mixinColor, ThemePalette, KbqComponentColors } from './color';
4
5
  export { HasTabIndex, HasTabIndexCtor, mixinTabIndex } from './tabindex';
5
6
  export { CanUpdateErrorStateCtor, CanUpdateErrorState, mixinErrorState } from './error-state';
7
+ export declare const KBQ_PARENT_ANIMATION_COMPONENT: InjectionToken<any>;
@@ -1,4 +1,2 @@
1
- import { InjectionToken } from '@angular/core';
2
1
  export * from './locale-service';
3
2
  export * from './locale-service.module';
4
- export declare const KBQ_LOCALE_ID: InjectionToken<string>;
@@ -30,7 +30,7 @@
30
30
  color: kbq-color($secondary, if($is-dark, 70, 30));
31
31
  }
32
32
 
33
- &[disabled] {
33
+ &.kbq-disabled {
34
34
  & .kbq-icon {
35
35
  color: kbq-color($secondary, if($is-dark, 30, 70));
36
36
  }
@@ -11,9 +11,10 @@
11
11
  color: map.get($state, text);
12
12
  }
13
13
 
14
- .kbq-icon {
15
- color: map.get($state, icon);
16
- }
14
+ // todo выглядит как баг
15
+ //.kbq-icon {
16
+ // color: map.get($state, icon);
17
+ //}
17
18
 
18
19
  .kbq-option-action .kbq-icon {
19
20
  color: map.get($state, icon-button);
@@ -47,8 +48,7 @@
47
48
  }
48
49
  }
49
50
 
50
- &.kbq-disabled,
51
- &[disabled] {
51
+ &.kbq-disabled {
52
52
  @include kbq-option(map.get($list-item, disabled));
53
53
  }
54
54
  }
@@ -21,7 +21,7 @@
21
21
 
22
22
  background: transparent;
23
23
 
24
- &[disabled] {
24
+ &.kbq-disabled {
25
25
  cursor: default;
26
26
  }
27
27
  }
@@ -21,6 +21,13 @@ export declare abstract class KbqPopUp implements OnDestroy {
21
21
  ngOnDestroy(): void;
22
22
  isTemplateRef(value: any): boolean;
23
23
  show(delay: number): void;
24
+ /**
25
+ * Hides the popup after a specified delay.
26
+ *
27
+ * The hide timeout triggers the hiding of the popup by updating visibility and emitting relevant events.
28
+ * Also, it marks for check to ensure proper change detection, especially for parent components with OnPush strategy.
29
+ * @param delay - The delay in milliseconds before hiding the popup.
30
+ */
24
31
  hide(delay: number): void;
25
32
  isVisible(): boolean;
26
33
  updateClassMap(placement: string, customClass: string, classMap?: any): void;
@@ -8,9 +8,12 @@ $tokens: meta.module-variables(tokens) !default;
8
8
 
9
9
  .kbq-pseudo-checkbox {
10
10
  position: relative;
11
- display: inline-block;
11
+ display: inline-flex;
12
12
  box-sizing: border-box;
13
13
 
14
+ align-items: center;
15
+ justify-content: center;
16
+
14
17
  width: var(--kbq-checkbox-size-normal-width, map.get($tokens, checkbox-size-normal-width));
15
18
  height: var(--kbq-checkbox-size-normal-width, map.get($tokens, checkbox-size-normal-width));
16
19
 
@@ -28,14 +31,6 @@ $tokens: meta.module-variables(tokens) !default;
28
31
  & .kbq-checkbox-checkmark,
29
32
  & .kbq-checkbox-mixedmark {
30
33
  display: none;
31
-
32
- position: absolute;
33
- top: calc(
34
- -1 * var(--kbq-checkbox-size-normal-border-width, #{map.get($tokens, checkbox-size-normal-border-width)})
35
- );
36
- left: calc(
37
- -1 * var(--kbq-checkbox-size-normal-border-width, #{map.get($tokens, checkbox-size-normal-border-width)})
38
- );
39
34
  }
40
35
 
41
36
  &.kbq-pseudo-checkbox-checked,
@@ -68,10 +63,4 @@ $tokens: meta.module-variables(tokens) !default;
68
63
  radius: var(--kbq-checkbox-size-big-border-radius, map.get($tokens, checkbox-size-big-border-radius));
69
64
  width: var(--kbq-checkbox-size-big-border-width, map.get($tokens, checkbox-size-big-border-width));
70
65
  }
71
-
72
- & .kbq-checkbox-checkmark,
73
- & .kbq-checkbox-mixedmark {
74
- top: calc(-1 * var(--kbq-checkbox-size-big-border-width, #{map.get($tokens, checkbox-size-big-border-width)}));
75
- left: calc(-1 * var(--kbq-checkbox-size-big-border-width, #{map.get($tokens, checkbox-size-big-border-width)}));
76
- }
77
66
  }
@@ -21,6 +21,8 @@
21
21
  @use '../../form-field/form-field-theme' as *;
22
22
  @use '../../form-field/hint-theme' as *;
23
23
  @use '../../icon/icon-theme' as *;
24
+ @use '../../icon/icon-item-theme' as *;
25
+ @use '../../icon/icon-button-theme' as *;
24
26
  @use '../../input/input-theme' as *;
25
27
  @use '../../link/link-theme' as *;
26
28
  @use '../../list/list-theme' as *;
@@ -7,4 +7,4 @@ $z-index-picker: 1050;
7
7
  $z-index-dropdown: 1050;
8
8
  $z-index-tooltip: 1060;
9
9
  $z-index-toast: 1070;
10
- $z-index-loader-overlay: 1000;
10
+ $z-index-loader-overlay: 10;
@@ -50,7 +50,8 @@ $tokens: meta.module-variables(tokens) !default;
50
50
  );
51
51
  }
52
52
 
53
- .kbq-select__trigger.kbq-select__trigger_single {
53
+ .kbq-select__trigger.kbq-select__trigger_single,
54
+ .kbq-select__trigger.kbq-select__trigger_multiple.kbq-select__trigger_empty {
54
55
  & .kbq-select__matcher {
55
56
  $padding-vertical: map.get($tokens, select-size-single-padding-vertical);
56
57
 
@@ -28,47 +28,61 @@
28
28
  $badge: (
29
29
  filled: (
30
30
  fade-off: (
31
+ theme: (
32
+ color: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-color'),
33
+ background: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-background'),
34
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-caption'),
35
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-theme-icon')
36
+ ),
31
37
  success: (
32
38
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-color'),
33
39
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-background'),
34
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-caption')
40
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-caption'),
41
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-success-icon')
35
42
  ),
36
43
  warning: (
37
44
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-color'),
38
45
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-background'),
39
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-caption')
46
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-caption'),
47
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-warning-icon')
40
48
  ),
41
49
  error: (
42
50
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-color'),
43
51
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-background'),
44
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-caption')
52
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-caption'),
53
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-off-error-icon')
45
54
  )
46
55
  ),
47
56
  fade-on: (
48
57
  theme: (
49
58
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-color'),
50
59
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-background'),
51
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-caption')
60
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-caption'),
61
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-theme-icon')
52
62
  ),
53
63
  contrast: (
54
64
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-color'),
55
65
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-background'),
56
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-caption')
66
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-caption'),
67
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-contrast-icon')
57
68
  ),
58
69
  success: (
59
70
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-color'),
60
71
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-background'),
61
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-caption')
72
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-caption'),
73
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-success-icon')
62
74
  ),
63
75
  warning: (
64
76
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-color'),
65
77
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-background'),
66
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-caption')
78
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-caption'),
79
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-warning-icon')
67
80
  ),
68
81
  error: (
69
82
  color: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-color'),
70
83
  background: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-background'),
71
- caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-caption')
84
+ caption: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-caption'),
85
+ icon: map-get($tokens, 'badge-#{$scheme}-filled-fade-on-error-icon')
72
86
  )
73
87
  )
74
88
  ),
@@ -78,31 +92,36 @@
78
92
  color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-color'),
79
93
  background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-background'),
80
94
  border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-border'),
81
- caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-caption')
95
+ caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-caption'),
96
+ icon: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-theme-icon')
82
97
  ),
83
98
  contrast: (
84
99
  color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-color'),
85
100
  background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-background'),
86
101
  border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-border'),
87
- caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-caption')
102
+ caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-caption'),
103
+ icon: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-contrast-icon')
88
104
  ),
89
105
  success: (
90
106
  color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-color'),
91
107
  background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-background'),
92
108
  border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-border'),
93
- caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-caption')
109
+ caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-caption'),
110
+ icon: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-success-icon')
94
111
  ),
95
112
  warning: (
96
113
  color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-color'),
97
114
  background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-background'),
98
115
  border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-border'),
99
- caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-caption')
116
+ caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-caption'),
117
+ icon: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-warning-icon')
100
118
  ),
101
119
  error: (
102
120
  color: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-color'),
103
121
  background: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-background'),
104
122
  border: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-border'),
105
- caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-caption')
123
+ caption: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-caption'),
124
+ icon: map-get($tokens, 'badge-#{$scheme}-outline-fade-on-error-icon')
106
125
  )
107
126
  )
108
127
  )
@@ -339,6 +358,7 @@
339
358
  default: (
340
359
  border: map-get($tokens, 'checkbox-#{$scheme}-theme-default-border'),
341
360
  color: map-get($tokens, 'checkbox-#{$scheme}-theme-default-color'),
361
+ text: map-get($tokens, 'checkbox-#{$scheme}-theme-default-text'),
342
362
  background: map-get($tokens, 'checkbox-#{$scheme}-theme-default-background'),
343
363
  caption: map-get($tokens, 'checkbox-#{$scheme}-theme-default-caption')
344
364
  ),
@@ -367,6 +387,7 @@
367
387
  disabled: (
368
388
  border: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-border'),
369
389
  color: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-color'),
390
+ text: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-text'),
370
391
  background: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-background'),
371
392
  caption: map-get($tokens, 'checkbox-#{$scheme}-theme-states-disabled-caption')
372
393
  )
@@ -375,6 +396,7 @@
375
396
  default: (
376
397
  border: map-get($tokens, 'checkbox-#{$scheme}-error-default-border'),
377
398
  color: map-get($tokens, 'checkbox-#{$scheme}-error-default-color'),
399
+ text: map-get($tokens, 'checkbox-#{$scheme}-error-default-text'),
378
400
  background: map-get($tokens, 'checkbox-#{$scheme}-error-default-background'),
379
401
  ),
380
402
 
@@ -403,22 +425,48 @@
403
425
  disabled: (
404
426
  border: map-get($tokens, 'checkbox-#{$scheme}-error-states-disabled-border'),
405
427
  color: map-get($tokens, 'checkbox-#{$scheme}-error-states-disabled-color'),
428
+ text: map-get($tokens, 'checkbox-#{$scheme}-error-states-disabled-text'),
406
429
  background: map-get($tokens, 'checkbox-#{$scheme}-error-states-disabled-background')
407
430
  )
408
431
  )
409
432
  );
410
433
 
411
434
  $code-block: (
412
- main-background: map-get($tokens, 'code-block-#{$scheme}-background'),
413
- actionbar-background: map-get($tokens, 'code-block-#{$scheme}-actionbar-background'),
414
- border: map-get($tokens, 'code-block-#{$scheme}-border'),
415
- main-background-less-contrast: map-get($tokens, 'code-block-#{$scheme}-decoration-less-contrast-background'),
416
- line-numbers-color: map-get($tokens, 'code-block-#{$scheme}-line-numbers-color'),
417
- main-code-color: map-get($tokens, 'code-block-#{$scheme}-color'),
418
-
419
- actionbar: (
420
- bg: map-get($tokens, 'code-block-#{$scheme}-actionbar-background'),
421
- bg-less-contrast: map-get($tokens, 'code-block-#{$scheme}-decoration-less-contrast-actionbar-background'),
435
+ filled: (
436
+ container: (
437
+ background: map-get($tokens, 'code-block-#{$scheme}-filled-container-background'),
438
+ border: map-get($tokens, 'code-block-#{$scheme}-filled-container-border-color'),
439
+ shadow: map-get($tokens, 'code-block-#{$scheme}-filled-container-shadow')
440
+ ),
441
+ header: (
442
+ background: map-get($tokens, 'code-block-#{$scheme}-filled-header-background')
443
+ ),
444
+ actionbar: (
445
+ fade-gradient: map-get($tokens, 'code-block-#{$scheme}-filled-actionbar-fade-gradient'),
446
+ background: map-get($tokens, 'code-block-#{$scheme}-filled-actionbar-background')
447
+ ),
448
+ collapse: (
449
+ expanded-background: map-get($tokens, 'code-block-#{$scheme}-filled-collapse-expanded-background'),
450
+ collapsed-background: map-get($tokens, 'code-block-#{$scheme}-filled-collapse-collapsed-background')
451
+ )
452
+ ),
453
+ outline: (
454
+ container: (
455
+ background: map-get($tokens, 'code-block-#{$scheme}-outline-container-background'),
456
+ border: map-get($tokens, 'code-block-#{$scheme}-outline-container-border-color'),
457
+ shadow: map-get($tokens, 'code-block-#{$scheme}-outline-container-shadow')
458
+ ),
459
+ header: (
460
+ background: map-get($tokens, 'code-block-#{$scheme}-outline-header-background')
461
+ ),
462
+ actionbar: (
463
+ fade-gradient: map-get($tokens, 'code-block-#{$scheme}-outline-actionbar-fade-gradient'),
464
+ background: map-get($tokens, 'code-block-#{$scheme}-outline-actionbar-background')
465
+ ),
466
+ collapse: (
467
+ expanded-background: map-get($tokens, 'code-block-#{$scheme}-outline-collapse-expanded-background'),
468
+ collapsed-background: map-get($tokens, 'code-block-#{$scheme}-outline-collapse-collapsed-background')
469
+ )
422
470
  ),
423
471
 
424
472
  hljs: (
@@ -609,7 +657,7 @@
609
657
  border: map-get($tokens, 'form-field-#{$scheme}-states-disabled-border-color'),
610
658
  background: map-get($tokens, 'form-field-#{$scheme}-states-disabled-background'),
611
659
  placeholder: map-get($tokens, 'form-field-#{$scheme}-states-disabled-placeholder'),
612
- text: map-get($tokens, 'form-field-#{$scheme}-states--disabled-text')
660
+ text: map-get($tokens, 'form-field-#{$scheme}-states-disabled-text')
613
661
  )
614
662
  );
615
663
 
@@ -617,17 +665,6 @@
617
665
  text: map-get($tokens, 'form-field-hint-#{$scheme}-text')
618
666
  );
619
667
 
620
- $form-field-password-hint: (
621
- text-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-text-color'),
622
- icon-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-text-color'),
623
-
624
- state-invalid-text-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-invalid-text-color'),
625
- state-invalid-icon-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-invalid-icon-color'),
626
-
627
- state-valid-text-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-valid-text-color'),
628
- state-valid-icon-color: map-get($tokens, 'form-field-password-hint-#{$scheme}-states-valid-icon-color')
629
- );
630
-
631
668
  $hint: (
632
669
  fill-text-on: (
633
670
  fade-contrast: (
@@ -819,23 +856,48 @@
819
856
  state-hover: map-get($tokens, 'icon-button-#{$scheme}-success-states-hover'),
820
857
  state-active: map-get($tokens, 'icon-button-#{$scheme}-success-states-active'),
821
858
  state-disabled: map-get($tokens, 'icon-button-#{$scheme}-success-states-disabled')
859
+ ),
860
+ warning: (
861
+ default: map-get($tokens, 'icon-button-#{$scheme}-warning-default'),
862
+ state-hover: map-get($tokens, 'icon-button-#{$scheme}-warning-states-hover'),
863
+ state-active: map-get($tokens, 'icon-button-#{$scheme}-warning-states-active'),
864
+ state-disabled: map-get($tokens, 'icon-button-#{$scheme}-warning-states-disabled')
822
865
  )
823
866
  );
824
867
 
825
- $link: (
826
- text: map-get($tokens, 'link-#{$scheme}-text'),
827
- border-bottom: map-get($tokens, 'link-#{$scheme}-border-bottom'),
828
-
829
- state-visited-text: map-get($tokens, 'link-#{$scheme}-state-visited-text'),
830
- state-visited-border-bottom: map-get($tokens, 'link-#{$scheme}-state-visited-border-bottom'),
831
-
832
- state-hover-text: map-get($tokens, 'link-#{$scheme}-state-hover-text'),
833
- state-hover-border-bottom: map-get($tokens, 'link-#{$scheme}-state-hover-border-bottom'),
834
868
 
835
- state-active-text: map-get($tokens, 'link-#{$scheme}-state-active'),
836
- state-active-border-bottom: map-get($tokens, 'link-#{$scheme}-state-active-border-bottom'),
837
-
838
- state-focused-outline: map-get($tokens, 'link-#{$scheme}-state-focused-outline')
869
+ $link: (
870
+ default: (
871
+ text: map-get($tokens, 'link-#{$scheme}-text'),
872
+ border-bottom: map-get($tokens, 'link-#{$scheme}-border-bottom')
873
+ ),
874
+ visited: (
875
+ text: map-get($tokens, 'link-#{$scheme}-state-visited-text'),
876
+ border-bottom: map-get($tokens, 'link-#{$scheme}-state-visited-border-bottom')
877
+ ),
878
+ visited-hover: (
879
+ text: map-get($tokens, 'link-#{$scheme}-state-visited-hover-text'),
880
+ border-bottom: map-get($tokens, 'link-#{$scheme}-state-visited-hover-border-bottom')
881
+ ),
882
+ visited-active: (
883
+ text: map-get($tokens, 'link-#{$scheme}-state-visited-active-text'),
884
+ border-bottom: map-get($tokens, 'link-#{$scheme}-state-visited-active-border-bottom')
885
+ ),
886
+ hover: (
887
+ text: map-get($tokens, 'link-#{$scheme}-state-hover-text'),
888
+ border-bottom: map-get($tokens, 'link-#{$scheme}-state-hover-border-bottom')
889
+ ),
890
+ active: (
891
+ text: map-get($tokens, 'link-#{$scheme}-state-active-text'),
892
+ border-bottom: map-get($tokens, 'link-#{$scheme}-state-active-border-bottom')
893
+ ),
894
+ focused: (
895
+ outline: map-get($tokens, 'link-#{$scheme}-state-focused-outline')
896
+ ),
897
+ disabled: (
898
+ text: map-get($tokens, 'link-#{$scheme}-state-disabled-text'),
899
+ border-bottom: map-get($tokens, 'link-#{$scheme}-state-disabled-border-bottom')
900
+ )
839
901
  );
840
902
 
841
903
  $list-item: (
@@ -1226,6 +1288,11 @@
1226
1288
  )
1227
1289
  );
1228
1290
 
1291
+ $select-panel: (
1292
+ background: map-get($tokens, 'select-panel-#{$scheme}-dropdown-background'),
1293
+ shadow: map-get($tokens, 'select-panel-#{$scheme}-dropdown-shadow')
1294
+ );
1295
+
1229
1296
  $sidepanel: (
1230
1297
  box-shadow: map-get($tokens, 'sidepanel-#{$scheme}-container-box-shadow'),
1231
1298
  background: map-get($tokens, 'sidepanel-#{$scheme}-container-background'),
@@ -1735,7 +1802,6 @@
1735
1802
  file-upload: $file-upload,
1736
1803
  form-field: $form-field,
1737
1804
  form-field-hint: $form-field-hint,
1738
- form-field-password-hint: $form-field-password-hint,
1739
1805
  hint: $hint,
1740
1806
  forms: $forms,
1741
1807
  icon: $icon,
@@ -1753,6 +1819,7 @@
1753
1819
  progress-spinner: $progress-spinner,
1754
1820
  radio: $radio,
1755
1821
  risk-level: $risk-level,
1822
+ select-panel: $select-panel,
1756
1823
  sidepanel: $sidepanel,
1757
1824
  tab-item: $tab-item,
1758
1825
  tab-stack: $tab-stack,
@@ -11,7 +11,9 @@
11
11
  );
12
12
 
13
13
  //firefox
14
- scrollbar-width: auto;
14
+ @supports not selector(::-webkit-scrollbar) {
15
+ scrollbar-width: thin;
16
+ }
15
17
 
16
18
  // webkit
17
19
  &::-webkit-scrollbar,
@@ -30,6 +32,7 @@
30
32
  --kbq-scrollbar-size-thumb-inset-border-radius,
31
33
  map.get($tokens, scrollbar-size-thumb-border-radius)
32
34
  );
35
+ min-height: 20px;
33
36
  }
34
37
 
35
38
  &::-webkit-scrollbar-button,
@@ -46,7 +49,9 @@
46
49
  @include kbq-scrollbar(map.get($theme, tokens));
47
50
 
48
51
  // firefox
49
- scrollbar-color: map.get($scrollbar, default) transparent;
52
+ @supports not selector(::-webkit-scrollbar) {
53
+ scrollbar-color: map.get($scrollbar, default) transparent;
54
+ }
50
55
 
51
56
  // webkit
52
57
  &::-webkit-scrollbar,