@koobiq/components 18.17.0 → 18.19.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 (208) 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.d.ts +3 -1
  21. package/datepicker/calendar.component.d.ts +9 -0
  22. package/datepicker/datepicker-input.directive.d.ts +5 -1
  23. package/dl/dl.component.d.ts +3 -4
  24. package/dropdown/_dropdown-theme.scss +9 -10
  25. package/dropdown/dropdown-tokens.scss +1 -0
  26. package/dropdown/dropdown.component.d.ts +1 -1
  27. package/dropdown/dropdown.scss +5 -0
  28. package/dropdown/dropdown.types.d.ts +3 -1
  29. package/esm2022/accordion/accordion-trigger.component.mjs +1 -1
  30. package/esm2022/actions-panel/actions-panel-config.mjs +55 -0
  31. package/esm2022/actions-panel/actions-panel-container.mjs +217 -0
  32. package/esm2022/actions-panel/actions-panel-ref.mjs +62 -0
  33. package/esm2022/actions-panel/actions-panel.mjs +220 -0
  34. package/esm2022/actions-panel/index.mjs +6 -0
  35. package/esm2022/actions-panel/koobiq-components-actions-panel.mjs +5 -0
  36. package/esm2022/actions-panel/module.mjs +21 -0
  37. package/esm2022/breadcrumbs/breadcrumbs.mjs +2 -2
  38. package/esm2022/code-block/code-block.mjs +1 -1
  39. package/esm2022/core/animation/animation.mjs +29 -1
  40. package/esm2022/core/common-behaviors/common-module.mjs +2 -2
  41. package/esm2022/core/form-field/form-field-ref.mjs +1 -1
  42. package/esm2022/core/locales/en-US.mjs +46 -1
  43. package/esm2022/core/locales/es-LA.mjs +46 -1
  44. package/esm2022/core/locales/fa-IR.mjs +46 -1
  45. package/esm2022/core/locales/pt-BR.mjs +46 -1
  46. package/esm2022/core/locales/ru-RU.mjs +46 -1
  47. package/esm2022/core/locales/tk-TM.mjs +46 -1
  48. package/esm2022/core/locales/types.mjs +1 -1
  49. package/esm2022/core/locales/zh-CN.mjs +46 -1
  50. package/esm2022/core/option/option.mjs +10 -3
  51. package/esm2022/core/version.mjs +2 -2
  52. package/esm2022/datepicker/calendar-header.component.mjs +1 -1
  53. package/esm2022/datepicker/calendar.component.mjs +20 -2
  54. package/esm2022/datepicker/datepicker-input.directive.mjs +22 -11
  55. package/esm2022/datepicker/datepicker-toggle.component.mjs +1 -1
  56. package/esm2022/dl/dl.component.mjs +8 -7
  57. package/esm2022/dropdown/dropdown-item.component.mjs +1 -1
  58. package/esm2022/dropdown/dropdown-trigger.directive.mjs +6 -1
  59. package/esm2022/dropdown/dropdown.component.mjs +4 -4
  60. package/esm2022/dropdown/dropdown.types.mjs +1 -1
  61. package/esm2022/file-upload/multiple-file-upload.component.mjs +1 -1
  62. package/esm2022/file-upload/single-file-upload.component.mjs +1 -1
  63. package/esm2022/filter-bar/filter-bar-button.mjs +30 -0
  64. package/esm2022/filter-bar/filter-bar.mjs +168 -0
  65. package/esm2022/filter-bar/filter-bar.module.mjs +65 -0
  66. package/esm2022/filter-bar/filter-bar.types.mjs +13 -0
  67. package/esm2022/filter-bar/filter-refresher.mjs +34 -0
  68. package/esm2022/filter-bar/filter-reset.mjs +38 -0
  69. package/esm2022/filter-bar/filter-search.mjs +132 -0
  70. package/esm2022/filter-bar/filters.mjs +225 -0
  71. package/esm2022/filter-bar/index.mjs +2 -0
  72. package/esm2022/filter-bar/koobiq-components-filter-bar.mjs +5 -0
  73. package/esm2022/filter-bar/pipe-add.mjs +129 -0
  74. package/esm2022/filter-bar/pipe.directive.mjs +55 -0
  75. package/esm2022/filter-bar/pipes/base-pipe.mjs +106 -0
  76. package/esm2022/filter-bar/pipes/pipe-button.mjs +59 -0
  77. package/esm2022/filter-bar/pipes/pipe-date.mjs +171 -0
  78. package/esm2022/filter-bar/pipes/pipe-datetime.mjs +172 -0
  79. package/esm2022/filter-bar/pipes/pipe-multi-select.mjs +96 -0
  80. package/esm2022/filter-bar/pipes/pipe-select.mjs +88 -0
  81. package/esm2022/filter-bar/pipes/pipe-state.mjs +45 -0
  82. package/esm2022/filter-bar/pipes/pipe-text.mjs +89 -0
  83. package/esm2022/filter-bar/pipes/pipe-title.mjs +96 -0
  84. package/esm2022/filter-bar/public-api.mjs +20 -0
  85. package/esm2022/form-field/cleaner.mjs +1 -1
  86. package/esm2022/form-field/form-field.mjs +13 -6
  87. package/esm2022/form-field/password-hint.mjs +1 -1
  88. package/esm2022/form-field/password-toggle.mjs +1 -1
  89. package/esm2022/form-field/stepper.mjs +1 -1
  90. package/esm2022/icon/icon-button.component.mjs +9 -9
  91. package/esm2022/icon/icon-item.component.mjs +10 -10
  92. package/esm2022/icon/icon.component.mjs +9 -12
  93. package/esm2022/list/list-selection.component.mjs +4 -4
  94. package/esm2022/modal/modal.component.mjs +1 -1
  95. package/esm2022/modal/modal.directive.mjs +1 -1
  96. package/esm2022/navbar/navbar-item.component.mjs +2 -2
  97. package/esm2022/overflow-items/overflow-items.mjs +151 -195
  98. package/esm2022/popover/popover.component.mjs +30 -10
  99. package/esm2022/select/select.component.mjs +3 -3
  100. package/esm2022/sidepanel/sidepanel-directives.mjs +2 -2
  101. package/esm2022/tabs/tab-header.component.mjs +1 -1
  102. package/esm2022/tabs/tab-nav-bar.mjs +2 -2
  103. package/esm2022/textarea/textarea.component.mjs +9 -5
  104. package/esm2022/timezone/timezone-select.component.mjs +2 -2
  105. package/esm2022/title/title.directive.mjs +12 -5
  106. package/esm2022/toast/toast.component.mjs +2 -2
  107. package/esm2022/tree/toggle.mjs +1 -1
  108. package/esm2022/tree/tree-option.component.mjs +3 -2
  109. package/esm2022/tree/tree-selection.component.mjs +4 -2
  110. package/esm2022/tree-select/tree-select.component.mjs +6 -4
  111. package/fesm2022/koobiq-components-accordion.mjs +1 -1
  112. package/fesm2022/koobiq-components-accordion.mjs.map +1 -1
  113. package/fesm2022/koobiq-components-actions-panel.mjs +567 -0
  114. package/fesm2022/koobiq-components-actions-panel.mjs.map +1 -0
  115. package/fesm2022/koobiq-components-breadcrumbs.mjs +1 -1
  116. package/fesm2022/koobiq-components-breadcrumbs.mjs.map +1 -1
  117. package/fesm2022/koobiq-components-code-block.mjs +1 -1
  118. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  119. package/fesm2022/koobiq-components-core.mjs +355 -5
  120. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  121. package/fesm2022/koobiq-components-datepicker.mjs +40 -12
  122. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  123. package/fesm2022/koobiq-components-dl.mjs +7 -6
  124. package/fesm2022/koobiq-components-dl.mjs.map +1 -1
  125. package/fesm2022/koobiq-components-dropdown.mjs +9 -4
  126. package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
  127. package/fesm2022/koobiq-components-file-upload.mjs +2 -2
  128. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  129. package/fesm2022/koobiq-components-filter-bar.mjs +1596 -0
  130. package/fesm2022/koobiq-components-filter-bar.mjs.map +1 -0
  131. package/fesm2022/koobiq-components-form-field.mjs +16 -9
  132. package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
  133. package/fesm2022/koobiq-components-icon.mjs +23 -26
  134. package/fesm2022/koobiq-components-icon.mjs.map +1 -1
  135. package/fesm2022/koobiq-components-list.mjs +3 -3
  136. package/fesm2022/koobiq-components-list.mjs.map +1 -1
  137. package/fesm2022/koobiq-components-modal.mjs +2 -2
  138. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  139. package/fesm2022/koobiq-components-navbar.mjs +2 -2
  140. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  141. package/fesm2022/koobiq-components-overflow-items.mjs +152 -196
  142. package/fesm2022/koobiq-components-overflow-items.mjs.map +1 -1
  143. package/fesm2022/koobiq-components-popover.mjs +29 -9
  144. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  145. package/fesm2022/koobiq-components-select.mjs +2 -2
  146. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  147. package/fesm2022/koobiq-components-sidepanel.mjs +1 -1
  148. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  149. package/fesm2022/koobiq-components-tabs.mjs +2 -2
  150. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  151. package/fesm2022/koobiq-components-textarea.mjs +8 -4
  152. package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
  153. package/fesm2022/koobiq-components-timezone.mjs +2 -2
  154. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  155. package/fesm2022/koobiq-components-title.mjs +11 -4
  156. package/fesm2022/koobiq-components-title.mjs.map +1 -1
  157. package/fesm2022/koobiq-components-toast.mjs +1 -1
  158. package/fesm2022/koobiq-components-toast.mjs.map +1 -1
  159. package/fesm2022/koobiq-components-tree-select.mjs +5 -3
  160. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  161. package/fesm2022/koobiq-components-tree.mjs +6 -3
  162. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  163. package/filter-bar/_filter-bar-theme.scss +61 -0
  164. package/filter-bar/filter-bar-button.d.ts +8 -0
  165. package/filter-bar/filter-bar.d.ts +55 -0
  166. package/filter-bar/filter-bar.module.d.ts +17 -0
  167. package/filter-bar/filter-bar.scss +60 -0
  168. package/filter-bar/filter-bar.types.d.ts +97 -0
  169. package/filter-bar/filter-refresher.d.ts +5 -0
  170. package/filter-bar/filter-refresher.scss +6 -0
  171. package/filter-bar/filter-reset.d.ts +11 -0
  172. package/filter-bar/filter-search.d.ts +25 -0
  173. package/filter-bar/filter-search.scss +14 -0
  174. package/filter-bar/filters.d.ts +72 -0
  175. package/filter-bar/filters.scss +92 -0
  176. package/filter-bar/index.d.ts +1 -0
  177. package/filter-bar/pipe-add.d.ts +18 -0
  178. package/filter-bar/pipe-add.scss +5 -0
  179. package/filter-bar/pipe.directive.d.ts +13 -0
  180. package/filter-bar/pipes/base-pipe.d.ts +40 -0
  181. package/filter-bar/pipes/base-pipe.scss +117 -0
  182. package/filter-bar/pipes/pipe-button.d.ts +13 -0
  183. package/filter-bar/pipes/pipe-button.scss +5 -0
  184. package/filter-bar/pipes/pipe-date.d.ts +41 -0
  185. package/filter-bar/pipes/pipe-date.scss +132 -0
  186. package/filter-bar/pipes/pipe-datetime.d.ts +41 -0
  187. package/filter-bar/pipes/pipe-multi-select.d.ts +22 -0
  188. package/filter-bar/pipes/pipe-multiselect.scss +15 -0
  189. package/filter-bar/pipes/pipe-select.d.ts +21 -0
  190. package/filter-bar/pipes/pipe-select.scss +3 -0
  191. package/filter-bar/pipes/pipe-state.d.ts +14 -0
  192. package/filter-bar/pipes/pipe-text.d.ts +19 -0
  193. package/filter-bar/pipes/pipe-title.d.ts +25 -0
  194. package/filter-bar/public-api.d.ts +19 -0
  195. package/form-field/form-field.d.ts +6 -1
  196. package/form-field/form-field.scss +1 -0
  197. package/icon/icon-button.component.d.ts +5 -3
  198. package/icon/icon-item.component.d.ts +5 -3
  199. package/icon/icon.component.d.ts +5 -4
  200. package/overflow-items/overflow-items.d.ts +68 -82
  201. package/package.json +18 -6
  202. package/popover/popover.component.d.ts +6 -1
  203. package/schematics/ng-add/index.js +5 -5
  204. package/select/_select-theme.scss +9 -1
  205. package/textarea/textarea.component.d.ts +2 -1
  206. package/title/title.directive.d.ts +2 -0
  207. package/tree-select/_tree-select-theme.scss +9 -1
  208. package/tree-select/tree-select.component.d.ts +1 -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
  };
@@ -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.
@@ -59,11 +59,20 @@ export declare class KbqCalendar<D> implements AfterContentInit, OnDestroy, OnCh
59
59
  * Emits whenever there is a state change that the header may need to respond to.
60
60
  */
61
61
  stateChanges: Subject<void>;
62
+ /** The input element this datepicker is associated with. */
63
+ datepickerInput: any;
62
64
  private readonly intlChanges;
65
+ /** Subscription to value changes in the associated input element. */
66
+ private inputSubscription;
63
67
  constructor(intl: KbqDatepickerIntl, adapter: DateAdapter<D>, changeDetectorRef: ChangeDetectorRef);
64
68
  ngAfterContentInit(): void;
65
69
  ngOnDestroy(): void;
66
70
  ngOnChanges(changes: SimpleChanges): void;
71
+ /**
72
+ * Register an input with this calendar.
73
+ * @param input The calendar input to register with this calendar.
74
+ */
75
+ registerInput(input: any): void;
67
76
  /** Updates today's date after an update of the active date */
68
77
  updateTodaysDate(): void;
69
78
  /** Handles date selection in the month view. */
@@ -4,6 +4,7 @@ import { DateAdapter, KbqDateFormats, KbqLocaleService } from '@koobiq/component
4
4
  import { KbqFormFieldControl } from '@koobiq/components/form-field';
5
5
  import { KbqWarningTooltipTrigger } from '@koobiq/components/tooltip';
6
6
  import { Subject } from 'rxjs';
7
+ import { KbqCalendar } from './calendar.component';
7
8
  import { KbqDatepicker } from './datepicker.component';
8
9
  import * as i0 from "@angular/core";
9
10
  export declare const MAX_YEAR = 9999;
@@ -41,6 +42,7 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
41
42
  controlType: string;
42
43
  focused: boolean;
43
44
  datepicker: KbqDatepicker<D>;
45
+ calendar: KbqCalendar<D>;
44
46
  dateFilter: (date: D | null) => boolean;
45
47
  /** Emits when the value changes (either due to user input or programmatic change). */
46
48
  valueChange: EventEmitter<D | null>;
@@ -54,6 +56,8 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
54
56
  private _required;
55
57
  /** The datepicker that this input is associated with. */
56
58
  set kbqDatepicker(value: KbqDatepicker<D>);
59
+ /** The calendar that this input is associated with. */
60
+ set kbqCalendar(value: KbqCalendar<D>);
57
61
  /** Function that can be used to filter out dates within the datepicker. */
58
62
  set kbqDatepickerFilter(value: (date: D | null) => boolean);
59
63
  /** The value of the input. */
@@ -187,5 +191,5 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
187
191
  private createDateTime;
188
192
  private correctCursorPosition;
189
193
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqDatepickerInput<any>, [null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
190
- static ɵdir: i0.ɵɵDirectiveDeclaration<KbqDatepickerInput<any>, "input[kbqDatepicker]", ["kbqDatepickerInput"], { "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "kbqDatepicker": { "alias": "kbqDatepicker"; "required": false; }; "kbqDatepickerFilter": { "alias": "kbqDatepickerFilter"; "required": false; }; "value": { "alias": "value"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "kbqValidationTooltip": { "alias": "kbqValidationTooltip"; "required": false; }; }, { "incorrectInput": "incorrectInput"; "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>;
194
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqDatepickerInput<any>, "input[kbqDatepicker], input[kbqCalendar]", ["kbqDatepickerInput"], { "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "kbqDatepicker": { "alias": "kbqDatepicker"; "required": false; }; "kbqCalendar": { "alias": "kbqCalendar"; "required": false; }; "kbqDatepickerFilter": { "alias": "kbqDatepickerFilter"; "required": false; }; "value": { "alias": "value"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "kbqValidationTooltip": { "alias": "kbqValidationTooltip"; "required": false; }; }, { "incorrectInput": "incorrectInput"; "dateChange": "dateChange"; "dateInput": "dateInput"; }, never, never, false, never>;
191
195
  }
@@ -1,18 +1,17 @@
1
- import { AfterContentInit, ElementRef, OnDestroy } from '@angular/core';
1
+ import { AfterContentInit, OnDestroy } from '@angular/core';
2
2
  import { Subject } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class KbqDlComponent implements AfterContentInit, OnDestroy {
5
- protected elementRef: ElementRef;
6
5
  minWidth: number;
7
6
  wide: boolean;
8
7
  vertical: boolean | null;
9
8
  readonly resizeStream: Subject<Event>;
10
9
  private readonly resizeDebounceInterval;
11
10
  private resizeSubscription;
12
- constructor(elementRef: ElementRef);
11
+ private readonly elementRef;
13
12
  ngAfterContentInit(): void;
14
13
  ngOnDestroy(): void;
15
- updateState: () => void;
14
+ private readonly updateState;
16
15
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqDlComponent, never>;
17
16
  static ɵcmp: i0.ɵɵComponentDeclaration<KbqDlComponent, "kbq-dl", never, { "minWidth": { "alias": "minWidth"; "required": false; }; "wide": { "alias": "wide"; "required": false; }; "vertical": { "alias": "vertical"; "required": false; }; }, {}, never, ["*"], false, never>;
18
17
  }