@koobiq/components 16.0.0-beta.1 → 16.0.0-beta.5

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 (238) hide show
  1. package/LICENSE +1 -1
  2. package/README.md +2 -2
  3. package/autocomplete/autocomplete-origin.directive.d.ts +1 -1
  4. package/autocomplete/autocomplete-trigger.directive.d.ts +1 -1
  5. package/autocomplete/autocomplete.component.d.ts +1 -1
  6. package/autocomplete/autocomplete.scss +0 -3
  7. package/badge/README.md +0 -0
  8. package/{core/styles/theming/_badges-theme.scss → badge/_badge-theme.scss} +1 -5
  9. package/badge/badge.component.d.ts +26 -0
  10. package/badge/badge.component.scss +55 -0
  11. package/badge/badge.module.d.ts +10 -0
  12. package/badge/index.d.ts +1 -0
  13. package/badge/public-api.d.ts +2 -0
  14. package/button/button.scss +5 -2
  15. package/checkbox/README.md +1 -1
  16. package/checkbox/checkbox.d.ts +1 -1
  17. package/core/common-behaviors/color.d.ts +1 -1
  18. package/core/common-behaviors/common-module.d.ts +1 -1
  19. package/core/forms/_forms-theme.scss +4 -4
  20. package/core/forms/_forms.scss +1 -3
  21. package/core/option/_option-theme.scss +39 -16
  22. package/core/option/action.scss +3 -4
  23. package/core/option/option.scss +6 -51
  24. package/core/styles/_koobiq-theme.scss +4 -1
  25. package/core/styles/_tokens.kbq.import.scss +4 -4
  26. package/core/styles/_tokens.scss +4 -4
  27. package/core/styles/common/_list.scss +123 -0
  28. package/core/styles/common/_select.scss +218 -0
  29. package/core/styles/theming/_components-theming.scss +414 -47
  30. package/datepicker/datepicker-animations.d.ts +1 -1
  31. package/dropdown/_dropdown-theme.scss +30 -37
  32. package/dropdown/dropdown-item.component.d.ts +1 -1
  33. package/dropdown/dropdown-item.scss +18 -40
  34. package/dropdown/dropdown.scss +16 -39
  35. package/esm2022/alert/alert.component.mjs +1 -1
  36. package/esm2022/autocomplete/autocomplete-origin.directive.mjs +4 -4
  37. package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +8 -8
  38. package/esm2022/autocomplete/autocomplete.component.mjs +4 -4
  39. package/esm2022/badge/badge.component.mjs +62 -0
  40. package/esm2022/badge/badge.module.mjs +36 -0
  41. package/esm2022/badge/index.mjs +2 -0
  42. package/esm2022/badge/koobiq-components-badge.mjs +5 -0
  43. package/esm2022/badge/public-api.mjs +3 -0
  44. package/esm2022/button/button.component.mjs +2 -2
  45. package/esm2022/checkbox/checkbox.mjs +2 -2
  46. package/esm2022/code-block/actionbar.component.mjs +3 -3
  47. package/esm2022/code-block/code-block.component.mjs +3 -3
  48. package/esm2022/core/common-behaviors/color.mjs +1 -1
  49. package/esm2022/core/common-behaviors/common-module.mjs +2 -2
  50. package/esm2022/core/option/action.mjs +5 -5
  51. package/esm2022/core/option/option.mjs +3 -3
  52. package/esm2022/core/overlay/overlay-position-map.mjs +2 -1
  53. package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +3 -3
  54. package/esm2022/core/version.mjs +2 -2
  55. package/esm2022/datepicker/calendar-header.component.mjs +3 -3
  56. package/esm2022/datepicker/datepicker-animations.mjs +2 -2
  57. package/esm2022/dropdown/dropdown-item.component.mjs +3 -3
  58. package/esm2022/dropdown/dropdown.component.mjs +3 -3
  59. package/esm2022/file-upload/multiple-file-upload.component.mjs +2 -2
  60. package/esm2022/file-upload/single-file-upload.component.mjs +2 -2
  61. package/esm2022/form-field/form-field.mjs +6 -6
  62. package/esm2022/form-field/password-hint.mjs +2 -2
  63. package/esm2022/form-field/password-toggle.mjs +6 -6
  64. package/esm2022/form-field/prefix.mjs +3 -3
  65. package/esm2022/form-field/validate.directive.mjs +5 -5
  66. package/esm2022/icon/icon.component.mjs +3 -3
  67. package/esm2022/input/input-errors.mjs +2 -2
  68. package/esm2022/input/input-number.mjs +3 -3
  69. package/esm2022/input/input-password.mjs +5 -5
  70. package/esm2022/input/input.mjs +7 -7
  71. package/esm2022/link/link.component.mjs +2 -12
  72. package/esm2022/list/list-selection.component.mjs +20 -7
  73. package/esm2022/list/list.component.mjs +2 -2
  74. package/esm2022/list/list.module.mjs +8 -4
  75. package/esm2022/loader-overlay/loader-overlay.component.mjs +20 -19
  76. package/esm2022/modal/modal.component.mjs +6 -20
  77. package/esm2022/navbar/vertical-navbar.animation.mjs +2 -2
  78. package/esm2022/progress-spinner/progress-spinner.component.mjs +1 -1
  79. package/esm2022/risk-level/index.mjs +2 -0
  80. package/esm2022/risk-level/koobiq-components-risk-level.mjs +5 -0
  81. package/esm2022/risk-level/public-api.mjs +3 -0
  82. package/esm2022/risk-level/risk-level.component.mjs +40 -0
  83. package/esm2022/risk-level/risk-level.module.mjs +28 -0
  84. package/esm2022/select/select.component.mjs +5 -5
  85. package/esm2022/sidepanel/sidepanel-container.component.mjs +3 -3
  86. package/esm2022/sidepanel/sidepanel-directives.mjs +7 -9
  87. package/esm2022/tabs/tab-group.component.mjs +16 -21
  88. package/esm2022/tabs/tab-header.component.mjs +2 -2
  89. package/esm2022/tabs/tab-label-wrapper.directive.mjs +3 -3
  90. package/esm2022/tabs/tab-label.directive.mjs +3 -3
  91. package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +17 -7
  92. package/esm2022/tabs/tabs.module.mjs +2 -6
  93. package/esm2022/tags/tag-input.mjs +8 -8
  94. package/esm2022/tags/tag-list.component.mjs +4 -4
  95. package/esm2022/tags/tag.component.mjs +6 -6
  96. package/esm2022/textarea/textarea.component.mjs +4 -4
  97. package/esm2022/timezone/timezone-option.component.mjs +3 -3
  98. package/esm2022/timezone/timezone-select.component.mjs +2 -2
  99. package/esm2022/toast/toast-container.component.mjs +2 -2
  100. package/esm2022/toast/toast.component.mjs +25 -13
  101. package/esm2022/toast/toast.module.mjs +14 -5
  102. package/esm2022/toast/toast.type.mjs +6 -1
  103. package/esm2022/tooltip/tooltip.animations.mjs +2 -2
  104. package/esm2022/tooltip/tooltip.component.mjs +14 -14
  105. package/esm2022/tree/padding.directive.mjs +4 -4
  106. package/esm2022/tree/toggle.mjs +5 -4
  107. package/esm2022/tree/tree-option.component.mjs +4 -7
  108. package/esm2022/tree/tree.module.mjs +13 -4
  109. package/esm2022/tree-select/tree-select.component.mjs +16 -10
  110. package/fesm2022/koobiq-components-alert.mjs.map +1 -1
  111. package/fesm2022/koobiq-components-autocomplete.mjs +13 -13
  112. package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
  113. package/fesm2022/koobiq-components-badge.mjs +102 -0
  114. package/fesm2022/koobiq-components-badge.mjs.map +1 -0
  115. package/fesm2022/koobiq-components-button.mjs +2 -2
  116. package/fesm2022/koobiq-components-button.mjs.map +1 -1
  117. package/fesm2022/koobiq-components-checkbox.mjs +1 -1
  118. package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
  119. package/fesm2022/koobiq-components-code-block.mjs +4 -4
  120. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  121. package/fesm2022/koobiq-components-core.mjs +11 -10
  122. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  123. package/fesm2022/koobiq-components-datepicker.mjs +3 -3
  124. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  125. package/fesm2022/koobiq-components-dropdown.mjs +4 -4
  126. package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
  127. package/fesm2022/koobiq-components-file-upload.mjs +4 -4
  128. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  129. package/fesm2022/koobiq-components-form-field.mjs +17 -17
  130. package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
  131. package/fesm2022/koobiq-components-icon.mjs +2 -2
  132. package/fesm2022/koobiq-components-icon.mjs.map +1 -1
  133. package/fesm2022/koobiq-components-input.mjs +13 -13
  134. package/fesm2022/koobiq-components-input.mjs.map +1 -1
  135. package/fesm2022/koobiq-components-link.mjs +1 -11
  136. package/fesm2022/koobiq-components-link.mjs.map +1 -1
  137. package/fesm2022/koobiq-components-list.mjs +28 -11
  138. package/fesm2022/koobiq-components-list.mjs.map +1 -1
  139. package/fesm2022/koobiq-components-loader-overlay.mjs +19 -18
  140. package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
  141. package/fesm2022/koobiq-components-modal.mjs +5 -19
  142. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  143. package/fesm2022/koobiq-components-navbar.mjs +1 -1
  144. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  145. package/fesm2022/koobiq-components-progress-spinner.mjs.map +1 -1
  146. package/fesm2022/koobiq-components-risk-level.mjs +72 -0
  147. package/fesm2022/koobiq-components-risk-level.mjs.map +1 -0
  148. package/fesm2022/koobiq-components-select.mjs +4 -4
  149. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  150. package/fesm2022/koobiq-components-sidepanel.mjs +9 -10
  151. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  152. package/fesm2022/koobiq-components-tabs.mjs +38 -37
  153. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  154. package/fesm2022/koobiq-components-tags.mjs +15 -15
  155. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  156. package/fesm2022/koobiq-components-textarea.mjs +3 -3
  157. package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
  158. package/fesm2022/koobiq-components-timezone.mjs +4 -4
  159. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  160. package/fesm2022/koobiq-components-toast.mjs +41 -15
  161. package/fesm2022/koobiq-components-toast.mjs.map +1 -1
  162. package/fesm2022/koobiq-components-tooltip.mjs +14 -14
  163. package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
  164. package/fesm2022/koobiq-components-tree-select.mjs +15 -9
  165. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  166. package/fesm2022/koobiq-components-tree.mjs +27 -20
  167. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  168. package/form-field/_form-field-theme.scss +2 -2
  169. package/form-field/form-field.d.ts +2 -2
  170. package/form-field/password-toggle.d.ts +2 -2
  171. package/form-field/prefix.d.ts +1 -1
  172. package/form-field/validate.directive.d.ts +1 -1
  173. package/input/input-number.d.ts +1 -1
  174. package/input/input-password.d.ts +1 -1
  175. package/input/input.d.ts +2 -2
  176. package/input/input.scss +3 -1
  177. package/link/_link-theme.scss +1 -3
  178. package/link/link.component.d.ts +1 -4
  179. package/list/_list-theme.scss +35 -15
  180. package/list/list-selection.component.d.ts +5 -1
  181. package/list/list.module.d.ts +1 -1
  182. package/list/list.scss +3 -12
  183. package/loader-overlay/_loader-overlay-theme.scss +43 -11
  184. package/loader-overlay/loader-overlay.component.d.ts +6 -5
  185. package/loader-overlay/loader-overlay.scss +53 -22
  186. package/modal/_modal-confirm.scss +20 -28
  187. package/modal/_modal-theme.scss +5 -35
  188. package/modal/modal.component.d.ts +3 -6
  189. package/modal/modal.scss +32 -36
  190. package/package.json +41 -29
  191. package/prebuilt-themes/dark-theme.css +1 -1
  192. package/prebuilt-themes/light-theme.css +1 -1
  193. package/progress-spinner/progress-spinner.component.d.ts +2 -2
  194. package/risk-level/README.md +0 -0
  195. package/risk-level/_risk-level-theme.scss +88 -0
  196. package/risk-level/index.d.ts +1 -0
  197. package/risk-level/public-api.d.ts +2 -0
  198. package/risk-level/risk-level.component.d.ts +18 -0
  199. package/risk-level/risk-level.component.scss +26 -0
  200. package/risk-level/risk-level.module.d.ts +10 -0
  201. package/select/_select-theme.scss +8 -0
  202. package/select/select.scss +5 -189
  203. package/sidepanel/_sidepanel-theme.scss +6 -41
  204. package/sidepanel/sidepanel-directives.d.ts +0 -2
  205. package/sidepanel/sidepanel.scss +33 -35
  206. package/tabs/_tabs-common.scss +27 -146
  207. package/tabs/_tabs-theme.scss +81 -175
  208. package/tabs/tab-group.component.d.ts +5 -8
  209. package/tabs/tab-group.scss +10 -10
  210. package/tabs/tab-header.scss +2 -24
  211. package/tabs/tab-label-wrapper.directive.d.ts +1 -1
  212. package/tabs/tab-label.directive.d.ts +1 -1
  213. package/tabs/tab-nav-bar/tab-nav-bar.d.ts +3 -1
  214. package/tabs/tab-nav-bar/tab-nav-bar.scss +9 -16
  215. package/tabs/tabs.module.d.ts +1 -1
  216. package/tags/_tag-theme.scss +0 -24
  217. package/tags/tag-input.d.ts +1 -1
  218. package/tags/tag-list.scss +20 -16
  219. package/tags/tag.component.d.ts +3 -3
  220. package/textarea/textarea.component.d.ts +1 -1
  221. package/toast/_toast-theme.scss +21 -33
  222. package/toast/toast-container.component.scss +2 -1
  223. package/toast/toast.component.d.ts +4 -1
  224. package/toast/toast.component.scss +41 -34
  225. package/toast/toast.module.d.ts +1 -1
  226. package/toast/toast.type.d.ts +8 -5
  227. package/tooltip/tooltip.animations.d.ts +1 -1
  228. package/tooltip/tooltip.component.d.ts +4 -4
  229. package/tree/_tree-theme.scss +46 -34
  230. package/tree/tree-option.component.d.ts +0 -1
  231. package/tree/tree-option.scss +34 -23
  232. package/tree/tree.module.d.ts +2 -1
  233. package/tree-select/_tree-select-theme.scss +9 -1
  234. package/tree-select/tree-select.component.d.ts +5 -3
  235. package/tree-select/tree-select.scss +5 -194
  236. package/core/styles/theming/_badges.scss +0 -57
  237. package/core/styles/theming/prebuilt/light-theme.scss +0 -20
  238. package/list/_list-base.scss +0 -54
@@ -86,7 +86,7 @@ function mcSanityChecksFactory() {
86
86
  return true;
87
87
  }
88
88
  /**
89
- * Module that captures anything that should be loaded and/or run for *all* Mosaic
89
+ * Module that captures anything that should be loaded and/or run for *all* Koobiq
90
90
  * components. This includes Bidi, etc.
91
91
  *
92
92
  * This module should be imported to each top-level component module (e.g., KbqTabsModule).
@@ -1100,7 +1100,7 @@ class KbqPseudoCheckbox extends KbqPseudoCheckboxMixinBase {
1100
1100
  this.disabled = false;
1101
1101
  }
1102
1102
  /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqPseudoCheckbox, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
1103
- /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqPseudoCheckbox, selector: "kbq-pseudo-checkbox", inputs: { color: "color", big: "big", state: "state", disabled: "disabled" }, host: { properties: { "class.kbq-checkbox_big": "big", "class.kbq-indeterminate": "state === \"indeterminate\"", "class.kbq-checked": "state === \"checked\"", "class.kbq-disabled": "disabled" }, classAttribute: "kbq-pseudo-checkbox" }, usesInheritance: true, ngImport: i0, template: "<i class=\"kbq-checkbox-checkmark mc kbq-check_16\"></i>\n<i class=\"kbq-checkbox-mixedmark mc kbq-minus_16\"></i>\n", styles: [".kbq-pseudo-checkbox{position:relative;display:inline-block;box-sizing:border-box;width:var(--kbq-checkbox-size-normal-width, 16px);height:var(--kbq-checkbox-size-normal-width, 16px);border-radius:var(--kbq-checkbox-size-normal-border-radius, 4px);border-width:var(--kbq-checkbox-size-normal-border-width, 1px);border-style:solid;cursor:pointer;vertical-align:middle;flex-shrink:0}.kbq-pseudo-checkbox .kbq-checkbox-checkmark,.kbq-pseudo-checkbox .kbq-checkbox-mixedmark{display:none;position:absolute;top:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px))}.kbq-pseudo-checkbox.kbq-pseudo-checkbox-checked,.kbq-pseudo-checkbox.kbq-pseudo-checkbox-indeterminate{border-color:transparent}.kbq-pseudo-checkbox.kbq-checked .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-indeterminate .kbq-checkbox-mixedmark{display:inline-block}.kbq-pseudo-checkbox.kbq-disabled{cursor:default}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big{width:var(--kbq-checkbox-size-big-width, 16px);height:var(--kbq-checkbox-size-big-width, 16px);border-radius:var(--kbq-checkbox-size-big-border-radius, 4px);border-width:var(--kbq-checkbox-size-big-border-width, 1px)}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-mixedmark{top:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px))}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1103
+ /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqPseudoCheckbox, selector: "kbq-pseudo-checkbox", inputs: { color: "color", big: "big", state: "state", disabled: "disabled" }, host: { properties: { "class.kbq-checkbox_big": "big", "class.kbq-indeterminate": "state === \"indeterminate\"", "class.kbq-checked": "state === \"checked\"", "class.kbq-disabled": "disabled" }, classAttribute: "kbq-pseudo-checkbox" }, usesInheritance: true, ngImport: i0, template: "<i class=\"kbq-checkbox-checkmark mc mc-check_16\"></i>\n<i class=\"kbq-checkbox-mixedmark mc mc-minus_16\"></i>\n", styles: [".kbq-pseudo-checkbox{position:relative;display:inline-block;box-sizing:border-box;width:var(--kbq-checkbox-size-normal-width, 16px);height:var(--kbq-checkbox-size-normal-width, 16px);border-radius:var(--kbq-checkbox-size-normal-border-radius, 4px);border-width:var(--kbq-checkbox-size-normal-border-width, 1px);border-style:solid;cursor:pointer;vertical-align:middle;flex-shrink:0}.kbq-pseudo-checkbox .kbq-checkbox-checkmark,.kbq-pseudo-checkbox .kbq-checkbox-mixedmark{display:none;position:absolute;top:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px))}.kbq-pseudo-checkbox.kbq-pseudo-checkbox-checked,.kbq-pseudo-checkbox.kbq-pseudo-checkbox-indeterminate{border-color:transparent}.kbq-pseudo-checkbox.kbq-checked .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-indeterminate .kbq-checkbox-mixedmark{display:inline-block}.kbq-pseudo-checkbox.kbq-disabled{cursor:default}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big{width:var(--kbq-checkbox-size-big-width, 16px);height:var(--kbq-checkbox-size-big-width, 16px);border-radius:var(--kbq-checkbox-size-big-border-radius, 4px);border-width:var(--kbq-checkbox-size-big-border-width, 1px)}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-mixedmark{top:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px))}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1104
1104
  }
1105
1105
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqPseudoCheckbox, decorators: [{
1106
1106
  type: Component,
@@ -1110,7 +1110,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
1110
1110
  '[class.kbq-indeterminate]': 'state === "indeterminate"',
1111
1111
  '[class.kbq-checked]': 'state === "checked"',
1112
1112
  '[class.kbq-disabled]': 'disabled'
1113
- }, preserveWhitespaces: false, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<i class=\"kbq-checkbox-checkmark mc kbq-check_16\"></i>\n<i class=\"kbq-checkbox-mixedmark mc kbq-minus_16\"></i>\n", styles: [".kbq-pseudo-checkbox{position:relative;display:inline-block;box-sizing:border-box;width:var(--kbq-checkbox-size-normal-width, 16px);height:var(--kbq-checkbox-size-normal-width, 16px);border-radius:var(--kbq-checkbox-size-normal-border-radius, 4px);border-width:var(--kbq-checkbox-size-normal-border-width, 1px);border-style:solid;cursor:pointer;vertical-align:middle;flex-shrink:0}.kbq-pseudo-checkbox .kbq-checkbox-checkmark,.kbq-pseudo-checkbox .kbq-checkbox-mixedmark{display:none;position:absolute;top:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px))}.kbq-pseudo-checkbox.kbq-pseudo-checkbox-checked,.kbq-pseudo-checkbox.kbq-pseudo-checkbox-indeterminate{border-color:transparent}.kbq-pseudo-checkbox.kbq-checked .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-indeterminate .kbq-checkbox-mixedmark{display:inline-block}.kbq-pseudo-checkbox.kbq-disabled{cursor:default}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big{width:var(--kbq-checkbox-size-big-width, 16px);height:var(--kbq-checkbox-size-big-width, 16px);border-radius:var(--kbq-checkbox-size-big-border-radius, 4px);border-width:var(--kbq-checkbox-size-big-border-width, 1px)}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-mixedmark{top:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px))}\n"] }]
1113
+ }, preserveWhitespaces: false, inputs: ['color'], changeDetection: ChangeDetectionStrategy.OnPush, encapsulation: ViewEncapsulation.None, template: "<i class=\"kbq-checkbox-checkmark mc mc-check_16\"></i>\n<i class=\"kbq-checkbox-mixedmark mc mc-minus_16\"></i>\n", styles: [".kbq-pseudo-checkbox{position:relative;display:inline-block;box-sizing:border-box;width:var(--kbq-checkbox-size-normal-width, 16px);height:var(--kbq-checkbox-size-normal-width, 16px);border-radius:var(--kbq-checkbox-size-normal-border-radius, 4px);border-width:var(--kbq-checkbox-size-normal-border-width, 1px);border-style:solid;cursor:pointer;vertical-align:middle;flex-shrink:0}.kbq-pseudo-checkbox .kbq-checkbox-checkmark,.kbq-pseudo-checkbox .kbq-checkbox-mixedmark{display:none;position:absolute;top:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-normal-border-width, 1px))}.kbq-pseudo-checkbox.kbq-pseudo-checkbox-checked,.kbq-pseudo-checkbox.kbq-pseudo-checkbox-indeterminate{border-color:transparent}.kbq-pseudo-checkbox.kbq-checked .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-indeterminate .kbq-checkbox-mixedmark{display:inline-block}.kbq-pseudo-checkbox.kbq-disabled{cursor:default}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big{width:var(--kbq-checkbox-size-big-width, 16px);height:var(--kbq-checkbox-size-big-width, 16px);border-radius:var(--kbq-checkbox-size-big-border-radius, 4px);border-width:var(--kbq-checkbox-size-big-border-width, 1px)}.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-checkmark,.kbq-pseudo-checkbox.kbq-pseudo-checkbox_big .kbq-checkbox-mixedmark{top:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px));left:calc(-1 * var(--kbq-checkbox-size-big-border-width, 1px))}\n"] }]
1114
1114
  }], ctorParameters: function () { return [{ type: i0.ElementRef }]; }, propDecorators: { big: [{
1115
1115
  type: Input
1116
1116
  }], state: [{
@@ -1295,7 +1295,7 @@ class KbqOption {
1295
1295
  /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqOption, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: KBQ_OPTION_PARENT_COMPONENT, optional: true }, { token: KbqOptgroup, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
1296
1296
  /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqOption, selector: "kbq-option", inputs: { value: "value", showCheckbox: "showCheckbox", disabled: "disabled" }, outputs: { onSelectionChange: "onSelectionChange" }, host: { listeners: { "click": "selectViaInteraction()", "keydown": "handleKeydown($event)" }, properties: { "attr.tabindex": "getTabIndex()", "class.kbq-selected": "selected", "class.kbq-option-multiple": "multiple", "class.kbq-active": "active", "class.kbq-disabled": "disabled", "id": "id" }, classAttribute: "kbq-option" }, providers: [{
1297
1297
  provide: KBQ_TITLE_TEXT_REF, useExisting: KbqOption
1298
- }], viewQueries: [{ propertyName: "textElement", first: true, predicate: ["mcTitleText"], descendants: true }], exportAs: ["mcOption"], ngImport: i0, template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #mcTitleText class=\"kbq-option-text\"><ng-content></ng-content></span>\n\n<div class=\"kbq-option-overlay\"></div>\n", styles: [".kbq-option{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;position:relative;max-width:100%;height:var(--kbq-option-size-height, 32px);border:var(--kbq-option-size-border-width, 2px) solid transparent;cursor:pointer;outline:none;padding-left:var(--kbq-option-size-horizontal-padding, 12px);padding-right:var(--kbq-option-size-horizontal-padding, 12px);-webkit-tap-highlight-color:transparent}.kbq-option.kbq-disabled{cursor:default}.kbq-option .kbq-pseudo-checkbox{margin-right:8px}.kbq-option .kbq-option-overlay{position:absolute;top:calc(-1 * var(--kbq-option-size-border-width, 2px));left:calc(-1 * var(--kbq-option-size-border-width, 2px));right:calc(-1 * var(--kbq-option-size-border-width, 2px));bottom:calc(-1 * var(--kbq-option-size-border-width, 2px));pointer-events:none;border-radius:inherit}.kbq-option-text{display:inline-block;flex-grow:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: KbqPseudoCheckbox, selector: "kbq-pseudo-checkbox", inputs: ["color", "big", "state", "disabled"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1298
+ }], viewQueries: [{ propertyName: "textElement", first: true, predicate: ["mcTitleText"], descendants: true }], exportAs: ["mcOption"], ngImport: i0, template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #mcTitleText class=\"kbq-option-text\">\n <ng-content></ng-content>\n</span>\n", styles: ["@keyframes kbq-progress{0%{background-position:0 0}to{background-position:29px 0}}.kbq-progress{position:relative}.kbq-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.05) 10px,transparent 10px,transparent 20px,rgba(0,0,0,.05) 20px,rgba(0,0,0,.05) 30px,transparent 30px) repeat;background-size:29px 29px;animation:kbq-progress 1s linear infinite}.kbq-group{display:flex;flex-direction:row}.kbq-group .kbq-group_justified>.kbq-group-item{width:100%}.kbq-group .kbq-group-item+.kbq-group-item{margin-left:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group{display:flex;flex-direction:column}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-bottom-left-radius:0}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-top-right-radius:0;border-top-left-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group .kbq-group-item+.kbq-group-item{margin-top:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.kbq-option{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-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-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option .kbq-list-text:empty{display:none}.kbq-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-option-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-option-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option-text:empty{display:none}.kbq-option-text:not(.kbq-disabled):not([disabled]){cursor:pointer}\n"], dependencies: [{ kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: KbqPseudoCheckbox, selector: "kbq-pseudo-checkbox", inputs: ["color", "big", "state", "disabled"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1299
1299
  }
1300
1300
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqOption, decorators: [{
1301
1301
  type: Component,
@@ -1311,7 +1311,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
1311
1311
  '(keydown)': 'handleKeydown($event)'
1312
1312
  }, encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, providers: [{
1313
1313
  provide: KBQ_TITLE_TEXT_REF, useExisting: KbqOption
1314
- }], template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #mcTitleText class=\"kbq-option-text\"><ng-content></ng-content></span>\n\n<div class=\"kbq-option-overlay\"></div>\n", styles: [".kbq-option{display:flex;flex-direction:row;align-items:center;box-sizing:border-box;position:relative;max-width:100%;height:var(--kbq-option-size-height, 32px);border:var(--kbq-option-size-border-width, 2px) solid transparent;cursor:pointer;outline:none;padding-left:var(--kbq-option-size-horizontal-padding, 12px);padding-right:var(--kbq-option-size-horizontal-padding, 12px);-webkit-tap-highlight-color:transparent}.kbq-option.kbq-disabled{cursor:default}.kbq-option .kbq-pseudo-checkbox{margin-right:8px}.kbq-option .kbq-option-overlay{position:absolute;top:calc(-1 * var(--kbq-option-size-border-width, 2px));left:calc(-1 * var(--kbq-option-size-border-width, 2px));right:calc(-1 * var(--kbq-option-size-border-width, 2px));bottom:calc(-1 * var(--kbq-option-size-border-width, 2px));pointer-events:none;border-radius:inherit}.kbq-option-text{display:inline-block;flex-grow:1;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}\n"] }]
1314
+ }], template: "<kbq-pseudo-checkbox\n *ngIf=\"showCheckbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\"\n [disabled]=\"disabled\">\n</kbq-pseudo-checkbox>\n\n<span #mcTitleText class=\"kbq-option-text\">\n <ng-content></ng-content>\n</span>\n", styles: ["@keyframes kbq-progress{0%{background-position:0 0}to{background-position:29px 0}}.kbq-progress{position:relative}.kbq-progress:after{content:\"\";position:absolute;border-radius:inherit;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.05) 10px,transparent 10px,transparent 20px,rgba(0,0,0,.05) 20px,rgba(0,0,0,.05) 30px,transparent 30px) repeat;background-size:29px 29px;animation:kbq-progress 1s linear infinite}.kbq-group{display:flex;flex-direction:row}.kbq-group .kbq-group_justified>.kbq-group-item{width:100%}.kbq-group .kbq-group-item+.kbq-group-item{margin-left:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-top-right-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-bottom-left-radius:0;border-top-left-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group{display:flex;flex-direction:column}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child){border-bottom-right-radius:0;border-bottom-left-radius:0;border-top-right-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:first-child:not(:last-child)>.kbq-form-field__container{border-bottom-right-radius:0;border-bottom-left-radius:0}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child){border-top-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:var(--kbq-button-size-border-radius, 8px)}.kbq-vertical-group>.kbq-group-item:last-child:not(:first-child)>.kbq-form-field__container{border-top-right-radius:0;border-top-left-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child){border-radius:0}.kbq-vertical-group>.kbq-group-item:not(:first-child):not(:last-child)>.kbq-form-field__container{border-radius:0}.kbq-vertical-group .kbq-group-item+.kbq-group-item{margin-top:calc(-1 * var(--kbq-button-size-border-width, 2px))}.kbq-no-select{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none}.kbq-option{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-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-option .kbq-list-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option .kbq-list-text:empty{display:none}.kbq-option .kbq-list-option-caption{padding-top:var(--kbq-list-size-container-content-gap-vertical, 2px)}.kbq-option-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-option-text>*{margin:0;padding:0;font-weight:400;font-size:inherit}.kbq-option-text:empty{display:none}.kbq-option-text:not(.kbq-disabled):not([disabled]){cursor:pointer}\n"] }]
1315
1315
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: undefined, decorators: [{
1316
1316
  type: Optional
1317
1317
  }, {
@@ -1454,16 +1454,16 @@ class KbqOptionActionComponent extends KbqOptionActionMixinBase {
1454
1454
  /** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqOptionActionComponent, deps: [{ token: i0.ElementRef }, { token: i1$1.FocusMonitor }, { token: KBQ_OPTION_ACTION_PARENT }], target: i0.ɵɵFactoryTarget.Component }); }
1455
1455
  /** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.1.5", type: KbqOptionActionComponent, selector: "kbq-option-action", inputs: { disabled: "disabled" }, host: { listeners: { "focus": "onFocus($event)", "blur": "onBlur()", "click": "onClick($event)", "keydown": "onKeyDown($event)" }, properties: { "class.kbq-expanded": "false", "attr.disabled": "disabled || null", "attr.tabIndex": "-1" }, classAttribute: "kbq-option-action" }, queries: [{ propertyName: "customIcon", first: true, predicate: ["customIcon"], descendants: true }], exportAs: ["mcOptionAction"], usesInheritance: true, ngImport: i0, template: `
1456
1456
  <ng-container [ngSwitch]="!!customIcon">
1457
- <i class="mc kbq-icon kbq-ellipsis_16" *ngSwitchCase="false"></i>
1457
+ <i class="mc kbq-icon mc-ellipsis_16" *ngSwitchCase="false"></i>
1458
1458
  <ng-content select="[kbq-icon]" *ngSwitchCase="true"></ng-content>
1459
1459
  </ng-container>
1460
- `, isInline: true, styles: [".kbq-option-action{box-sizing:unset;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:28px;height:100%;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action[disabled]{cursor:default}\n"], dependencies: [{ kind: "directive", type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1460
+ `, isInline: true, styles: [".kbq-option-action{box-sizing:border-box;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:24px;height:24px;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action[disabled]{cursor:default}\n"], dependencies: [{ kind: "directive", type: i2.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i2.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush, encapsulation: i0.ViewEncapsulation.None }); }
1461
1461
  }
1462
1462
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImport: i0, type: KbqOptionActionComponent, decorators: [{
1463
1463
  type: Component,
1464
1464
  args: [{ selector: 'kbq-option-action', exportAs: 'mcOptionAction', template: `
1465
1465
  <ng-container [ngSwitch]="!!customIcon">
1466
- <i class="mc kbq-icon kbq-ellipsis_16" *ngSwitchCase="false"></i>
1466
+ <i class="mc kbq-icon mc-ellipsis_16" *ngSwitchCase="false"></i>
1467
1467
  <ng-content select="[kbq-icon]" *ngSwitchCase="true"></ng-content>
1468
1468
  </ng-container>
1469
1469
  `, host: {
@@ -1475,7 +1475,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.1.5", ngImpor
1475
1475
  '(blur)': 'onBlur()',
1476
1476
  '(click)': 'onClick($event)',
1477
1477
  '(keydown)': 'onKeyDown($event)'
1478
- }, inputs: ['disabled'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, styles: [".kbq-option-action{box-sizing:unset;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:28px;height:100%;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action[disabled]{cursor:default}\n"] }]
1478
+ }, inputs: ['disabled'], encapsulation: ViewEncapsulation.None, changeDetection: ChangeDetectionStrategy.OnPush, styles: [".kbq-option-action{box-sizing:border-box;position:relative;display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-right:-2px;width:24px;height:24px;cursor:pointer;outline:none;border:2px solid transparent;background:transparent}.kbq-option-action[disabled]{cursor:default}\n"] }]
1479
1479
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1$1.FocusMonitor }, { type: undefined, decorators: [{
1480
1480
  type: Inject,
1481
1481
  args: [KBQ_OPTION_ACTION_PARENT]
@@ -1621,6 +1621,7 @@ const EXTENDED_OVERLAY_POSITIONS = objectValues([
1621
1621
  const TOP_POSITION_PRIORITY = objectValues([
1622
1622
  POSITION_MAP.top,
1623
1623
  POSITION_MAP.bottom,
1624
+ POSITION_MAP.right,
1624
1625
  POSITION_MAP.rightBottom,
1625
1626
  POSITION_MAP.leftBottom,
1626
1627
  POSITION_MAP.bottomLeft,
@@ -2328,7 +2329,7 @@ const validationTooltipShowDelay = 10;
2328
2329
  const validationTooltipHideDelay = 3000;
2329
2330
  const KBQ_VALIDATION = new InjectionToken('KbqUseValidation', { factory: () => ({ useValidation: true }) });
2330
2331
 
2331
- const VERSION = new Version('16.0.0-beta.1+sha-9882803');
2332
+ const VERSION = new Version('16.0.0-beta.5+sha-4808246');
2332
2333
 
2333
2334
  /**
2334
2335
  * Generated bundle index. Do not edit.