@koobiq/components 18.18.0 → 18.20.0

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 (234) hide show
  1. package/actions-panel/actions-panel-config.d.ts +79 -0
  2. package/actions-panel/actions-panel-container.d.ts +90 -0
  3. package/actions-panel/actions-panel-container.scss +33 -0
  4. package/actions-panel/actions-panel-ref.d.ts +31 -0
  5. package/actions-panel/actions-panel-tokens.scss +13 -0
  6. package/actions-panel/actions-panel.d.ts +144 -0
  7. package/actions-panel/index.d.ts +5 -0
  8. package/actions-panel/module.d.ts +7 -0
  9. package/core/animation/animation.d.ts +26 -0
  10. package/core/form-field/form-field-ref.d.ts +4 -0
  11. package/core/locales/en-US.d.ts +45 -0
  12. package/core/locales/es-LA.d.ts +45 -0
  13. package/core/locales/fa-IR.d.ts +45 -0
  14. package/core/locales/locale-service.d.ts +315 -0
  15. package/core/locales/pt-BR.d.ts +45 -0
  16. package/core/locales/ru-RU.d.ts +45 -0
  17. package/core/locales/tk-TM.d.ts +45 -0
  18. package/core/locales/types.d.ts +6 -0
  19. package/core/locales/zh-CN.d.ts +45 -0
  20. package/core/option/option-tokens.scss +5 -1
  21. package/core/option/option.d.ts +3 -1
  22. package/core/option/option.scss +6 -4
  23. package/core/styles/common/_list.scss +2 -9
  24. package/core/styles/common/_select.scss +6 -0
  25. package/core/styles/common/_tokens.scss +1 -1
  26. package/datepicker/calendar.component.d.ts +9 -0
  27. package/datepicker/datepicker-input.directive.d.ts +5 -1
  28. package/dl/dl.component.d.ts +4 -4
  29. package/dropdown/_dropdown-theme.scss +9 -10
  30. package/dropdown/dropdown-tokens.scss +1 -0
  31. package/dropdown/dropdown.component.d.ts +1 -1
  32. package/dropdown/dropdown.scss +5 -0
  33. package/dropdown/dropdown.types.d.ts +3 -1
  34. package/esm2022/accordion/accordion-trigger.component.mjs +1 -1
  35. package/esm2022/actions-panel/actions-panel-config.mjs +55 -0
  36. package/esm2022/actions-panel/actions-panel-container.mjs +217 -0
  37. package/esm2022/actions-panel/actions-panel-ref.mjs +62 -0
  38. package/esm2022/actions-panel/actions-panel.mjs +220 -0
  39. package/esm2022/actions-panel/index.mjs +6 -0
  40. package/esm2022/actions-panel/koobiq-components-actions-panel.mjs +5 -0
  41. package/esm2022/actions-panel/module.mjs +21 -0
  42. package/esm2022/breadcrumbs/breadcrumbs.mjs +2 -2
  43. package/esm2022/button-toggle/button-toggle.component.mjs +2 -2
  44. package/esm2022/code-block/code-block.mjs +1 -1
  45. package/esm2022/core/animation/animation.mjs +29 -1
  46. package/esm2022/core/common-behaviors/common-module.mjs +2 -2
  47. package/esm2022/core/form-field/form-field-ref.mjs +1 -1
  48. package/esm2022/core/locales/en-US.mjs +46 -1
  49. package/esm2022/core/locales/es-LA.mjs +46 -1
  50. package/esm2022/core/locales/fa-IR.mjs +46 -1
  51. package/esm2022/core/locales/pt-BR.mjs +46 -1
  52. package/esm2022/core/locales/ru-RU.mjs +46 -1
  53. package/esm2022/core/locales/tk-TM.mjs +46 -1
  54. package/esm2022/core/locales/types.mjs +1 -1
  55. package/esm2022/core/locales/zh-CN.mjs +46 -1
  56. package/esm2022/core/option/option.mjs +12 -5
  57. package/esm2022/core/version.mjs +2 -2
  58. package/esm2022/datepicker/calendar-header.component.mjs +1 -1
  59. package/esm2022/datepicker/calendar.component.mjs +20 -2
  60. package/esm2022/datepicker/datepicker-input.directive.mjs +22 -11
  61. package/esm2022/datepicker/datepicker-toggle.component.mjs +1 -1
  62. package/esm2022/dl/dl.component.mjs +12 -9
  63. package/esm2022/dropdown/dropdown-item.component.mjs +2 -2
  64. package/esm2022/dropdown/dropdown-trigger.directive.mjs +6 -1
  65. package/esm2022/dropdown/dropdown.component.mjs +4 -4
  66. package/esm2022/dropdown/dropdown.types.mjs +1 -1
  67. package/esm2022/file-upload/multiple-file-upload.component.mjs +1 -1
  68. package/esm2022/file-upload/single-file-upload.component.mjs +1 -1
  69. package/esm2022/filter-bar/filter-bar-button.mjs +30 -0
  70. package/esm2022/filter-bar/filter-bar.mjs +168 -0
  71. package/esm2022/filter-bar/filter-bar.module.mjs +65 -0
  72. package/esm2022/filter-bar/filter-bar.types.mjs +13 -0
  73. package/esm2022/filter-bar/filter-refresher.mjs +34 -0
  74. package/esm2022/filter-bar/filter-reset.mjs +38 -0
  75. package/esm2022/filter-bar/filter-search.mjs +132 -0
  76. package/esm2022/filter-bar/filters.mjs +225 -0
  77. package/esm2022/filter-bar/index.mjs +2 -0
  78. package/esm2022/filter-bar/koobiq-components-filter-bar.mjs +5 -0
  79. package/esm2022/filter-bar/pipe-add.mjs +129 -0
  80. package/esm2022/filter-bar/pipe.directive.mjs +55 -0
  81. package/esm2022/filter-bar/pipes/base-pipe.mjs +106 -0
  82. package/esm2022/filter-bar/pipes/pipe-button.mjs +59 -0
  83. package/esm2022/filter-bar/pipes/pipe-date.mjs +171 -0
  84. package/esm2022/filter-bar/pipes/pipe-datetime.mjs +172 -0
  85. package/esm2022/filter-bar/pipes/pipe-multi-select.mjs +96 -0
  86. package/esm2022/filter-bar/pipes/pipe-select.mjs +88 -0
  87. package/esm2022/filter-bar/pipes/pipe-state.mjs +45 -0
  88. package/esm2022/filter-bar/pipes/pipe-text.mjs +89 -0
  89. package/esm2022/filter-bar/pipes/pipe-title.mjs +96 -0
  90. package/esm2022/filter-bar/public-api.mjs +20 -0
  91. package/esm2022/form-field/cleaner.mjs +1 -1
  92. package/esm2022/form-field/form-field.mjs +13 -6
  93. package/esm2022/form-field/password-hint.mjs +1 -1
  94. package/esm2022/form-field/password-toggle.mjs +1 -1
  95. package/esm2022/form-field/stepper.mjs +1 -1
  96. package/esm2022/icon/icon-button.component.mjs +9 -9
  97. package/esm2022/icon/icon-item.component.mjs +10 -10
  98. package/esm2022/icon/icon.component.mjs +9 -12
  99. package/esm2022/list/list-selection.component.mjs +18 -15
  100. package/esm2022/list/list.component.mjs +2 -2
  101. package/esm2022/modal/modal.component.mjs +1 -1
  102. package/esm2022/modal/modal.directive.mjs +1 -1
  103. package/esm2022/navbar/navbar-item.component.mjs +2 -2
  104. package/esm2022/navbar/navbar.component.mjs +2 -2
  105. package/esm2022/navbar/vertical-navbar.component.mjs +18 -16
  106. package/esm2022/overflow-items/overflow-items.mjs +129 -139
  107. package/esm2022/popover/popover-confirm.component.mjs +3 -3
  108. package/esm2022/popover/popover.component.mjs +30 -10
  109. package/esm2022/radio/radio.component.mjs +2 -2
  110. package/esm2022/select/select.component.mjs +3 -3
  111. package/esm2022/sidepanel/sidepanel-container.component.mjs +3 -3
  112. package/esm2022/sidepanel/sidepanel-directives.mjs +2 -2
  113. package/esm2022/tabs/tab-header.component.mjs +1 -1
  114. package/esm2022/tabs/tab-nav-bar.mjs +2 -2
  115. package/esm2022/tags/tag.component.mjs +2 -2
  116. package/esm2022/textarea/textarea.component.mjs +9 -5
  117. package/esm2022/timezone/timezone-option.component.mjs +2 -2
  118. package/esm2022/timezone/timezone-select.component.mjs +2 -2
  119. package/esm2022/title/title.directive.mjs +12 -5
  120. package/esm2022/toast/toast.component.mjs +2 -2
  121. package/esm2022/tree/toggle.mjs +1 -1
  122. package/esm2022/tree/tree-option.component.mjs +5 -4
  123. package/esm2022/tree/tree-selection.component.mjs +10 -3
  124. package/esm2022/tree-select/tree-select.component.mjs +6 -4
  125. package/fesm2022/koobiq-components-accordion.mjs +1 -1
  126. package/fesm2022/koobiq-components-accordion.mjs.map +1 -1
  127. package/fesm2022/koobiq-components-actions-panel.mjs +567 -0
  128. package/fesm2022/koobiq-components-actions-panel.mjs.map +1 -0
  129. package/fesm2022/koobiq-components-breadcrumbs.mjs +1 -1
  130. package/fesm2022/koobiq-components-breadcrumbs.mjs.map +1 -1
  131. package/fesm2022/koobiq-components-button-toggle.mjs +2 -2
  132. package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
  133. package/fesm2022/koobiq-components-code-block.mjs +1 -1
  134. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  135. package/fesm2022/koobiq-components-core.mjs +357 -7
  136. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  137. package/fesm2022/koobiq-components-datepicker.mjs +40 -12
  138. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  139. package/fesm2022/koobiq-components-dl.mjs +11 -8
  140. package/fesm2022/koobiq-components-dl.mjs.map +1 -1
  141. package/fesm2022/koobiq-components-dropdown.mjs +10 -5
  142. package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
  143. package/fesm2022/koobiq-components-file-upload.mjs +2 -2
  144. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  145. package/fesm2022/koobiq-components-filter-bar.mjs +1596 -0
  146. package/fesm2022/koobiq-components-filter-bar.mjs.map +1 -0
  147. package/fesm2022/koobiq-components-form-field.mjs +16 -9
  148. package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
  149. package/fesm2022/koobiq-components-icon.mjs +23 -26
  150. package/fesm2022/koobiq-components-icon.mjs.map +1 -1
  151. package/fesm2022/koobiq-components-list.mjs +19 -16
  152. package/fesm2022/koobiq-components-list.mjs.map +1 -1
  153. package/fesm2022/koobiq-components-modal.mjs +2 -2
  154. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  155. package/fesm2022/koobiq-components-navbar.mjs +21 -19
  156. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  157. package/fesm2022/koobiq-components-overflow-items.mjs +129 -139
  158. package/fesm2022/koobiq-components-overflow-items.mjs.map +1 -1
  159. package/fesm2022/koobiq-components-popover.mjs +31 -11
  160. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  161. package/fesm2022/koobiq-components-radio.mjs +2 -2
  162. package/fesm2022/koobiq-components-radio.mjs.map +1 -1
  163. package/fesm2022/koobiq-components-select.mjs +2 -2
  164. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  165. package/fesm2022/koobiq-components-sidepanel.mjs +3 -3
  166. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  167. package/fesm2022/koobiq-components-tabs.mjs +2 -2
  168. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  169. package/fesm2022/koobiq-components-tags.mjs +2 -2
  170. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  171. package/fesm2022/koobiq-components-textarea.mjs +8 -4
  172. package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
  173. package/fesm2022/koobiq-components-timezone.mjs +4 -4
  174. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  175. package/fesm2022/koobiq-components-title.mjs +11 -4
  176. package/fesm2022/koobiq-components-title.mjs.map +1 -1
  177. package/fesm2022/koobiq-components-toast.mjs +1 -1
  178. package/fesm2022/koobiq-components-toast.mjs.map +1 -1
  179. package/fesm2022/koobiq-components-tree-select.mjs +5 -3
  180. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  181. package/fesm2022/koobiq-components-tree.mjs +14 -6
  182. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  183. package/filter-bar/_filter-bar-theme.scss +61 -0
  184. package/filter-bar/filter-bar-button.d.ts +8 -0
  185. package/filter-bar/filter-bar.d.ts +55 -0
  186. package/filter-bar/filter-bar.module.d.ts +17 -0
  187. package/filter-bar/filter-bar.scss +60 -0
  188. package/filter-bar/filter-bar.types.d.ts +97 -0
  189. package/filter-bar/filter-refresher.d.ts +5 -0
  190. package/filter-bar/filter-refresher.scss +6 -0
  191. package/filter-bar/filter-reset.d.ts +11 -0
  192. package/filter-bar/filter-search.d.ts +25 -0
  193. package/filter-bar/filter-search.scss +14 -0
  194. package/filter-bar/filters.d.ts +72 -0
  195. package/filter-bar/filters.scss +92 -0
  196. package/filter-bar/index.d.ts +1 -0
  197. package/filter-bar/pipe-add.d.ts +18 -0
  198. package/filter-bar/pipe-add.scss +5 -0
  199. package/filter-bar/pipe.directive.d.ts +13 -0
  200. package/filter-bar/pipes/base-pipe.d.ts +40 -0
  201. package/filter-bar/pipes/base-pipe.scss +117 -0
  202. package/filter-bar/pipes/pipe-button.d.ts +13 -0
  203. package/filter-bar/pipes/pipe-button.scss +5 -0
  204. package/filter-bar/pipes/pipe-date.d.ts +41 -0
  205. package/filter-bar/pipes/pipe-date.scss +132 -0
  206. package/filter-bar/pipes/pipe-datetime.d.ts +41 -0
  207. package/filter-bar/pipes/pipe-multi-select.d.ts +22 -0
  208. package/filter-bar/pipes/pipe-multiselect.scss +15 -0
  209. package/filter-bar/pipes/pipe-select.d.ts +21 -0
  210. package/filter-bar/pipes/pipe-select.scss +3 -0
  211. package/filter-bar/pipes/pipe-state.d.ts +14 -0
  212. package/filter-bar/pipes/pipe-text.d.ts +19 -0
  213. package/filter-bar/pipes/pipe-title.d.ts +25 -0
  214. package/filter-bar/public-api.d.ts +19 -0
  215. package/form-field/form-field.d.ts +6 -1
  216. package/form-field/form-field.scss +1 -0
  217. package/icon/icon-button.component.d.ts +5 -3
  218. package/icon/icon-item.component.d.ts +5 -3
  219. package/icon/icon.component.d.ts +5 -4
  220. package/list/list.scss +2 -3
  221. package/navbar/vertical-navbar.component.d.ts +4 -1
  222. package/overflow-items/overflow-items.d.ts +59 -71
  223. package/package.json +19 -7
  224. package/popover/popover.component.d.ts +6 -1
  225. package/radio/radio-tokens.scss +7 -3
  226. package/radio/radio.scss +19 -15
  227. package/schematics/ng-add/index.js +6 -6
  228. package/select/_select-theme.scss +9 -1
  229. package/tags/tag.scss +3 -0
  230. package/textarea/textarea.component.d.ts +2 -1
  231. package/timezone/timezone-option-tokens.scss +3 -2
  232. package/title/title.directive.d.ts +2 -0
  233. package/tree/tree-option.scss +2 -1
  234. package/tree-select/_tree-select-theme.scss +9 -1
@@ -86,6 +86,51 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
86
86
  timezone: {
87
87
  searchPlaceholder: string;
88
88
  };
89
+ actionsPanel: {
90
+ closeTooltip: string;
91
+ };
92
+ filterBar: {
93
+ reset: {
94
+ buttonName: string;
95
+ };
96
+ search: {
97
+ tooltip: string;
98
+ placeholder: string;
99
+ };
100
+ filters: {
101
+ defaultName: string;
102
+ saveNewFilterTooltip: string;
103
+ searchPlaceholder: string;
104
+ searchEmptyResult: string;
105
+ saveAsNewFilter: string;
106
+ saveChanges: string;
107
+ saveAsNew: string;
108
+ change: string;
109
+ resetChanges: string;
110
+ remove: string;
111
+ name: string;
112
+ error: string;
113
+ errorHint: string;
114
+ saveButton: string;
115
+ cancelButton: string;
116
+ };
117
+ add: {
118
+ tooltip: string;
119
+ };
120
+ pipe: {
121
+ clearButtonTooltip: string;
122
+ removeButtonTooltip: string;
123
+ applyButton: string;
124
+ emptySearchResult: string;
125
+ };
126
+ datePipe: {
127
+ customPeriod: string;
128
+ customPeriodFrom: string;
129
+ customPeriodTo: string;
130
+ customPeriodErrorHint: string;
131
+ backToPeriodSelection: string;
132
+ };
133
+ };
89
134
  };
90
135
  'zh-CN': {
91
136
  formatters: {
@@ -163,6 +208,51 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
163
208
  timezone: {
164
209
  searchPlaceholder: string;
165
210
  };
211
+ actionsPanel: {
212
+ closeTooltip: string;
213
+ };
214
+ filterBar: {
215
+ reset: {
216
+ buttonName: string;
217
+ };
218
+ search: {
219
+ tooltip: string;
220
+ placeholder: string;
221
+ };
222
+ filters: {
223
+ defaultName: string;
224
+ saveNewFilterTooltip: string;
225
+ searchPlaceholder: string;
226
+ searchEmptyResult: string;
227
+ saveAsNewFilter: string;
228
+ saveChanges: string;
229
+ saveAsNew: string;
230
+ change: string;
231
+ resetChanges: string;
232
+ remove: string;
233
+ name: string;
234
+ error: string;
235
+ errorHint: string;
236
+ saveButton: string;
237
+ cancelButton: string;
238
+ };
239
+ add: {
240
+ tooltip: string;
241
+ };
242
+ pipe: {
243
+ clearButtonTooltip: string;
244
+ removeButtonTooltip: string;
245
+ applyButton: string;
246
+ emptySearchResult: string;
247
+ };
248
+ datePipe: {
249
+ customPeriod: string;
250
+ customPeriodFrom: string;
251
+ customPeriodTo: string;
252
+ customPeriodErrorHint: string;
253
+ backToPeriodSelection: string;
254
+ };
255
+ };
166
256
  };
167
257
  'es-LA': {
168
258
  formatters: {
@@ -241,6 +331,51 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
241
331
  timezone: {
242
332
  searchPlaceholder: string;
243
333
  };
334
+ actionsPanel: {
335
+ closeTooltip: string;
336
+ };
337
+ filterBar: {
338
+ reset: {
339
+ buttonName: string;
340
+ };
341
+ search: {
342
+ tooltip: string;
343
+ placeholder: string;
344
+ };
345
+ filters: {
346
+ defaultName: string;
347
+ saveNewFilterTooltip: string;
348
+ searchPlaceholder: string;
349
+ searchEmptyResult: string;
350
+ saveAsNewFilter: string;
351
+ saveChanges: string;
352
+ saveAsNew: string;
353
+ change: string;
354
+ resetChanges: string;
355
+ remove: string;
356
+ name: string;
357
+ error: string;
358
+ errorHint: string;
359
+ saveButton: string;
360
+ cancelButton: string;
361
+ };
362
+ add: {
363
+ tooltip: string;
364
+ };
365
+ pipe: {
366
+ clearButtonTooltip: string;
367
+ removeButtonTooltip: string;
368
+ applyButton: string;
369
+ emptySearchResult: string;
370
+ };
371
+ datePipe: {
372
+ customPeriod: string;
373
+ customPeriodFrom: string;
374
+ customPeriodTo: string;
375
+ customPeriodErrorHint: string;
376
+ backToPeriodSelection: string;
377
+ };
378
+ };
244
379
  };
245
380
  'pt-BR': {
246
381
  formatters: {
@@ -319,6 +454,51 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
319
454
  timezone: {
320
455
  searchPlaceholder: string;
321
456
  };
457
+ actionsPanel: {
458
+ closeTooltip: string;
459
+ };
460
+ filterBar: {
461
+ reset: {
462
+ buttonName: string;
463
+ };
464
+ search: {
465
+ tooltip: string;
466
+ placeholder: string;
467
+ };
468
+ filters: {
469
+ defaultName: string;
470
+ saveNewFilterTooltip: string;
471
+ searchPlaceholder: string;
472
+ searchEmptyResult: string;
473
+ saveAsNewFilter: string;
474
+ saveChanges: string;
475
+ saveAsNew: string;
476
+ change: string;
477
+ resetChanges: string;
478
+ remove: string;
479
+ name: string;
480
+ error: string;
481
+ errorHint: string;
482
+ saveButton: string;
483
+ cancelButton: string;
484
+ };
485
+ add: {
486
+ tooltip: string;
487
+ };
488
+ pipe: {
489
+ clearButtonTooltip: string;
490
+ removeButtonTooltip: string;
491
+ applyButton: string;
492
+ emptySearchResult: string;
493
+ };
494
+ datePipe: {
495
+ customPeriod: string;
496
+ customPeriodFrom: string;
497
+ customPeriodTo: string;
498
+ customPeriodErrorHint: string;
499
+ backToPeriodSelection: string;
500
+ };
501
+ };
322
502
  };
323
503
  'ru-RU': {
324
504
  formatters: {
@@ -399,6 +579,51 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
399
579
  timezone: {
400
580
  searchPlaceholder: string;
401
581
  };
582
+ actionsPanel: {
583
+ closeTooltip: string;
584
+ };
585
+ filterBar: {
586
+ reset: {
587
+ buttonName: string;
588
+ };
589
+ search: {
590
+ tooltip: string;
591
+ placeholder: string;
592
+ };
593
+ filters: {
594
+ defaultName: string;
595
+ saveNewFilterTooltip: string;
596
+ searchPlaceholder: string;
597
+ searchEmptyResult: string;
598
+ saveAsNewFilter: string;
599
+ saveChanges: string;
600
+ saveAsNew: string;
601
+ change: string;
602
+ resetChanges: string;
603
+ remove: string;
604
+ name: string;
605
+ error: string;
606
+ errorHint: string;
607
+ saveButton: string;
608
+ cancelButton: string;
609
+ };
610
+ add: {
611
+ tooltip: string;
612
+ };
613
+ pipe: {
614
+ clearButtonTooltip: string;
615
+ removeButtonTooltip: string;
616
+ applyButton: string;
617
+ emptySearchResult: string;
618
+ };
619
+ datePipe: {
620
+ customPeriod: string;
621
+ customPeriodFrom: string;
622
+ customPeriodTo: string;
623
+ customPeriodErrorHint: string;
624
+ backToPeriodSelection: string;
625
+ };
626
+ };
402
627
  };
403
628
  'fa-IR': {
404
629
  formatters: {
@@ -478,6 +703,51 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
478
703
  timezone: {
479
704
  searchPlaceholder: string;
480
705
  };
706
+ actionsPanel: {
707
+ closeTooltip: string;
708
+ };
709
+ filterBar: {
710
+ reset: {
711
+ buttonName: string;
712
+ };
713
+ search: {
714
+ tooltip: string;
715
+ placeholder: string;
716
+ };
717
+ filters: {
718
+ defaultName: string;
719
+ saveNewFilterTooltip: string;
720
+ searchPlaceholder: string;
721
+ searchEmptyResult: string;
722
+ saveAsNewFilter: string;
723
+ saveChanges: string;
724
+ saveAsNew: string;
725
+ change: string;
726
+ resetChanges: string;
727
+ remove: string;
728
+ name: string;
729
+ error: string;
730
+ errorHint: string;
731
+ saveButton: string;
732
+ cancelButton: string;
733
+ };
734
+ add: {
735
+ tooltip: string;
736
+ };
737
+ pipe: {
738
+ clearButtonTooltip: string;
739
+ removeButtonTooltip: string;
740
+ applyButton: string;
741
+ emptySearchResult: string;
742
+ };
743
+ datePipe: {
744
+ customPeriod: string;
745
+ customPeriodFrom: string;
746
+ customPeriodTo: string;
747
+ customPeriodErrorHint: string;
748
+ backToPeriodSelection: string;
749
+ };
750
+ };
481
751
  };
482
752
  'tk-TM': {
483
753
  formatters: {
@@ -557,6 +827,51 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
557
827
  timezone: {
558
828
  searchPlaceholder: string;
559
829
  };
830
+ actionsPanel: {
831
+ closeTooltip: string;
832
+ };
833
+ filterBar: {
834
+ reset: {
835
+ buttonName: string;
836
+ };
837
+ search: {
838
+ tooltip: string;
839
+ placeholder: string;
840
+ };
841
+ filters: {
842
+ defaultName: string;
843
+ saveNewFilterTooltip: string;
844
+ searchPlaceholder: string;
845
+ searchEmptyResult: string;
846
+ saveAsNewFilter: string;
847
+ saveChanges: string;
848
+ saveAsNew: string;
849
+ change: string;
850
+ resetChanges: string;
851
+ remove: string;
852
+ name: string;
853
+ error: string;
854
+ errorHint: string;
855
+ saveButton: string;
856
+ cancelButton: string;
857
+ };
858
+ add: {
859
+ tooltip: string;
860
+ };
861
+ pipe: {
862
+ clearButtonTooltip: string;
863
+ removeButtonTooltip: string;
864
+ applyButton: string;
865
+ emptySearchResult: string;
866
+ };
867
+ datePipe: {
868
+ customPeriod: string;
869
+ customPeriodFrom: string;
870
+ customPeriodTo: string;
871
+ customPeriodErrorHint: string;
872
+ backToPeriodSelection: string;
873
+ };
874
+ };
560
875
  };
561
876
  };
562
877
  export declare const KBQ_LOCALE_DATA: InjectionToken<any>;
@@ -41,4 +41,49 @@ export declare const ptBRLocaleData: {
41
41
  timezone: {
42
42
  searchPlaceholder: string;
43
43
  };
44
+ actionsPanel: {
45
+ closeTooltip: string;
46
+ };
47
+ filterBar: {
48
+ reset: {
49
+ buttonName: string;
50
+ };
51
+ search: {
52
+ tooltip: string;
53
+ placeholder: string;
54
+ };
55
+ filters: {
56
+ defaultName: string;
57
+ saveNewFilterTooltip: string;
58
+ searchPlaceholder: string;
59
+ searchEmptyResult: string;
60
+ saveAsNewFilter: string;
61
+ saveChanges: string;
62
+ saveAsNew: string;
63
+ change: string;
64
+ resetChanges: string;
65
+ remove: string;
66
+ name: string;
67
+ error: string;
68
+ errorHint: string;
69
+ saveButton: string;
70
+ cancelButton: string;
71
+ };
72
+ add: {
73
+ tooltip: string;
74
+ };
75
+ pipe: {
76
+ clearButtonTooltip: string;
77
+ removeButtonTooltip: string;
78
+ applyButton: string;
79
+ emptySearchResult: string;
80
+ };
81
+ datePipe: {
82
+ customPeriod: string;
83
+ customPeriodFrom: string;
84
+ customPeriodTo: string;
85
+ customPeriodErrorHint: string;
86
+ backToPeriodSelection: string;
87
+ };
88
+ };
44
89
  };
@@ -42,4 +42,49 @@ export declare const ruRULocaleData: {
42
42
  timezone: {
43
43
  searchPlaceholder: string;
44
44
  };
45
+ actionsPanel: {
46
+ closeTooltip: string;
47
+ };
48
+ filterBar: {
49
+ reset: {
50
+ buttonName: string;
51
+ };
52
+ search: {
53
+ tooltip: string;
54
+ placeholder: string;
55
+ };
56
+ filters: {
57
+ defaultName: string;
58
+ saveNewFilterTooltip: string;
59
+ searchPlaceholder: string;
60
+ searchEmptyResult: string;
61
+ saveAsNewFilter: string;
62
+ saveChanges: string;
63
+ saveAsNew: string;
64
+ change: string;
65
+ resetChanges: string;
66
+ remove: string;
67
+ name: string;
68
+ error: string;
69
+ errorHint: string;
70
+ saveButton: string;
71
+ cancelButton: string;
72
+ };
73
+ add: {
74
+ tooltip: string;
75
+ };
76
+ pipe: {
77
+ clearButtonTooltip: string;
78
+ removeButtonTooltip: string;
79
+ applyButton: string;
80
+ emptySearchResult: string;
81
+ };
82
+ datePipe: {
83
+ customPeriod: string;
84
+ customPeriodFrom: string;
85
+ customPeriodTo: string;
86
+ customPeriodErrorHint: string;
87
+ backToPeriodSelection: string;
88
+ };
89
+ };
45
90
  };
@@ -42,4 +42,49 @@ export declare const tkTMLocaleData: {
42
42
  timezone: {
43
43
  searchPlaceholder: string;
44
44
  };
45
+ actionsPanel: {
46
+ closeTooltip: string;
47
+ };
48
+ filterBar: {
49
+ reset: {
50
+ buttonName: string;
51
+ };
52
+ search: {
53
+ tooltip: string;
54
+ placeholder: string;
55
+ };
56
+ filters: {
57
+ defaultName: string;
58
+ saveNewFilterTooltip: string;
59
+ searchPlaceholder: string;
60
+ searchEmptyResult: string;
61
+ saveAsNewFilter: string;
62
+ saveChanges: string;
63
+ saveAsNew: string;
64
+ change: string;
65
+ resetChanges: string;
66
+ remove: string;
67
+ name: string;
68
+ error: string;
69
+ errorHint: string;
70
+ saveButton: string;
71
+ cancelButton: string;
72
+ };
73
+ add: {
74
+ tooltip: string;
75
+ };
76
+ pipe: {
77
+ clearButtonTooltip: string;
78
+ removeButtonTooltip: string;
79
+ applyButton: string;
80
+ emptySearchResult: string;
81
+ };
82
+ datePipe: {
83
+ customPeriod: string;
84
+ customPeriodFrom: string;
85
+ customPeriodTo: string;
86
+ customPeriodErrorHint: string;
87
+ backToPeriodSelection: string;
88
+ };
89
+ };
45
90
  };
@@ -9,3 +9,9 @@ export type KbqCodeBlockLocaleConfiguration = {
9
9
  viewLessText: string;
10
10
  openExternalSystemTooltip: string;
11
11
  };
12
+ /**
13
+ * Locale configuration for `KbqActionsPanelModule`.
14
+ */
15
+ export type KbqActionsPanelLocaleConfiguration = {
16
+ closeTooltip: string;
17
+ };
@@ -41,4 +41,49 @@ export declare const zhCNLocaleData: {
41
41
  timezone: {
42
42
  searchPlaceholder: string;
43
43
  };
44
+ actionsPanel: {
45
+ closeTooltip: string;
46
+ };
47
+ filterBar: {
48
+ reset: {
49
+ buttonName: string;
50
+ };
51
+ search: {
52
+ tooltip: string;
53
+ placeholder: string;
54
+ };
55
+ filters: {
56
+ defaultName: string;
57
+ saveNewFilterTooltip: string;
58
+ searchPlaceholder: string;
59
+ searchEmptyResult: string;
60
+ saveAsNewFilter: string;
61
+ saveChanges: string;
62
+ saveAsNew: string;
63
+ change: string;
64
+ resetChanges: string;
65
+ remove: string;
66
+ name: string;
67
+ error: string;
68
+ errorHint: string;
69
+ saveButton: string;
70
+ cancelButton: string;
71
+ };
72
+ add: {
73
+ tooltip: string;
74
+ };
75
+ pipe: {
76
+ clearButtonTooltip: string;
77
+ removeButtonTooltip: string;
78
+ applyButton: string;
79
+ emptySearchResult: string;
80
+ };
81
+ datePipe: {
82
+ customPeriod: string;
83
+ customPeriodFrom: string;
84
+ customPeriodTo: string;
85
+ customPeriodErrorHint: string;
86
+ backToPeriodSelection: string;
87
+ };
88
+ };
44
89
  };
@@ -1,10 +1,14 @@
1
1
  @use '../../list/list-tokens';
2
2
 
3
- .kbq-option {
3
+ %kbq-option-geometry-tokens {
4
4
  --kbq-option-size-horizontal-padding: var(--kbq-size-m);
5
5
  --kbq-option-size-height: var(--kbq-size-3xl);
6
6
  --kbq-option-size-border-width: 2px;
7
7
  --kbq-option-border-radius: var(--kbq-size-xs);
8
+ }
9
+
10
+ .kbq-option {
11
+ @extend %kbq-option-geometry-tokens;
8
12
  /* LIST THEME TOKENS */
9
13
  @include list-tokens.list-theme-tokens;
10
14
  }
@@ -63,6 +63,7 @@ export declare class KbqOption extends KbqOptionBase implements AfterViewChecked
63
63
  textElement: ElementRef;
64
64
  /** The form value of the option. */
65
65
  value: any;
66
+ userSelect: boolean;
66
67
  get showCheckbox(): boolean | undefined;
67
68
  set showCheckbox(value: boolean | undefined);
68
69
  private _showCheckbox;
@@ -124,7 +125,8 @@ export declare class KbqOption extends KbqOptionBase implements AfterViewChecked
124
125
  getTabIndex(): string;
125
126
  getHostElement(): HTMLElement;
126
127
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqOption, [null, null, { optional: true; }, { optional: true; }]>;
127
- static ɵcmp: i0.ɵɵComponentDeclaration<KbqOption, "kbq-option", ["kbqOption"], { "value": { "alias": "value"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; }, never, ["*"], false, never>;
128
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqOption, "kbq-option", ["kbqOption"], { "value": { "alias": "value"; "required": false; }; "userSelect": { "alias": "userSelect"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; }, never, ["*"], false, never>;
129
+ static ngAcceptInputType_userSelect: unknown;
128
130
  }
129
131
  /**
130
132
  * Counts the amount of option group labels that precede the specified option.
@@ -1,9 +1,11 @@
1
- @use '../styles/common';
2
-
1
+ @use '../styles/common/list';
2
+ @use '../styles/common/vendor-prefixes';
3
3
  @use './option-theme' as *;
4
4
 
5
5
  .kbq-option {
6
- @include common.kbq-list-item-base();
6
+ @include list.kbq-list-item-base();
7
+ @include vendor-prefixes.user-select(none);
8
+
7
9
  border-radius: var(--kbq-option-border-radius);
8
10
 
9
11
  &:not(.kbq-disabled) {
@@ -12,7 +14,7 @@
12
14
  }
13
15
 
14
16
  .kbq-option-text {
15
- @include common.kbq-list-text();
17
+ @include list.kbq-list-text();
16
18
  }
17
19
 
18
20
  @include kbq-option-theme();
@@ -1,5 +1,6 @@
1
1
  @use '../tokens';
2
2
  @use './tokens' as *;
3
+ @use './vendor-prefixes';
3
4
 
4
5
  // This mixin will ensure that lines that overflow the container will hide the overflow and
5
6
  // truncate neatly with an ellipsis.
@@ -36,14 +37,6 @@
36
37
  }
37
38
  }
38
39
 
39
- @mixin kbq-no-select() {
40
- -webkit-touch-callout: none; /* iOS Safari */
41
- -webkit-user-select: none; /* Safari */
42
- -moz-user-select: none; /* Firefox */
43
- -ms-user-select: none; /* Internet Explorer/Edge */
44
- user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
45
- }
46
-
47
40
  @mixin kbq-list-text() {
48
41
  @include kbq-line-wrapper-base();
49
42
  display: inline-block;
@@ -121,5 +114,5 @@
121
114
  }
122
115
 
123
116
  .kbq-no-select {
124
- @include kbq-no-select;
117
+ @include vendor-prefixes.user-select(none);
125
118
  }
@@ -11,6 +11,8 @@
11
11
  outline: none;
12
12
 
13
13
  .kbq-select__matcher {
14
+ @include vendor-prefixes.user-select(none);
15
+
14
16
  display: flex;
15
17
  align-items: center;
16
18
 
@@ -145,6 +147,8 @@
145
147
  }
146
148
 
147
149
  .kbq-select__no-options-message {
150
+ @include vendor-prefixes.user-select(none);
151
+
148
152
  display: flex;
149
153
  flex-direction: row;
150
154
  align-items: center;
@@ -180,6 +184,8 @@
180
184
  }
181
185
 
182
186
  %kbq-select-footer {
187
+ @include vendor-prefixes.user-select(none);
188
+
183
189
  display: flex;
184
190
  align-items: center;
185
191
  box-sizing: border-box;
@@ -78,7 +78,7 @@ $tokens: meta.module-variables(tokens) !default;
78
78
  @if (meta.type-of($border) == number or meta.type-of($border) == calculation) {
79
79
  @return calc((var(--kbq-#{$outer}) - var(--kbq-#{$inner}) - $border * 2) / 2);
80
80
  } @else {
81
- @return calc((var(--kbq-#{$outer}) - var(--kbq-#{$inner}) - var(--kbq-#{$border} * 2)) / 2);
81
+ @return calc((var(--kbq-#{$outer}) - var(--kbq-#{$inner}) - var(--kbq-#{$border}) * 2) / 2);
82
82
  }
83
83
  } @else {
84
84
  @return calc((var(--kbq-#{$outer}) - var(--kbq-#{$inner})) / 2);