@koobiq/components 18.33.0 → 18.35.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 (309) hide show
  1. package/actions-panel/actions-panel-config.d.ts +4 -3
  2. package/actions-panel/actions-panel-container.scss +0 -6
  3. package/actions-panel/actions-panel-ref.d.ts +13 -0
  4. package/actions-panel/actions-panel.d.ts +1 -7
  5. package/button/_button-theme.scss +1 -0
  6. package/clamped-text/clamped-text.d.ts +61 -0
  7. package/clamped-text/clamped-text.scss +17 -0
  8. package/clamped-text/constants.d.ts +14 -0
  9. package/clamped-text/index.d.ts +3 -0
  10. package/clamped-text/module.d.ts +7 -0
  11. package/content-panel/content-panel-aside.scss +9 -0
  12. package/content-panel/content-panel-body.scss +9 -0
  13. package/content-panel/content-panel-container.scss +32 -0
  14. package/content-panel/content-panel-footer.scss +5 -0
  15. package/content-panel/content-panel-header.scss +30 -0
  16. package/content-panel/content-panel-tokens.scss +9 -0
  17. package/content-panel/content-panel.d.ts +149 -0
  18. package/content-panel/content-panel.scss +25 -0
  19. package/content-panel/index.d.ts +3 -0
  20. package/content-panel/module.d.ts +7 -0
  21. package/content-panel/resizable.d.ts +70 -0
  22. package/core/form-field/field-sizing-content.d.ts +21 -0
  23. package/core/form-field/index.d.ts +1 -0
  24. package/core/locales/en-US.d.ts +10 -0
  25. package/core/locales/es-LA.d.ts +10 -0
  26. package/core/locales/fa-IR.d.ts +10 -0
  27. package/core/locales/locale-service.d.ts +70 -0
  28. package/core/locales/pt-BR.d.ts +10 -0
  29. package/core/locales/ru-RU.d.ts +10 -0
  30. package/core/locales/tk-TM.d.ts +10 -0
  31. package/core/locales/types.d.ts +5 -0
  32. package/core/locales/zh-CN.d.ts +10 -0
  33. package/core/navbar/index.d.ts +1 -0
  34. package/core/navbar/rectangle-item.d.ts +14 -0
  35. package/core/option/option.d.ts +3 -1
  36. package/core/pop-up/pop-up-trigger.d.ts +2 -0
  37. package/core/public-api.d.ts +1 -0
  38. package/core/styles/common/_select.scss +6 -3
  39. package/core/utils/dom.d.ts +9 -0
  40. package/core/utils/index.d.ts +1 -0
  41. package/core/utils/utils.d.ts +4 -0
  42. package/datepicker/calendar.component.d.ts +1 -1
  43. package/datepicker/datepicker-input.directive.d.ts +19 -8
  44. package/datepicker/datepicker-toggle.component.d.ts +1 -1
  45. package/datepicker/datepicker.component.d.ts +2 -2
  46. package/dropdown/dropdown-item.scss +1 -0
  47. package/dropdown/dropdown-trigger.directive.d.ts +7 -1
  48. package/dynamic-translation/dynamic-translation.d.ts +72 -0
  49. package/dynamic-translation/index.d.ts +2 -0
  50. package/dynamic-translation/module.d.ts +7 -0
  51. package/esm2022/actions-panel/actions-panel-config.mjs +1 -1
  52. package/esm2022/actions-panel/actions-panel-container.mjs +7 -7
  53. package/esm2022/actions-panel/actions-panel-ref.mjs +17 -1
  54. package/esm2022/actions-panel/actions-panel.mjs +34 -24
  55. package/esm2022/breadcrumbs/breadcrumbs.mjs +2 -2
  56. package/esm2022/button/button.component.mjs +2 -2
  57. package/esm2022/button-toggle/button-toggle.component.mjs +9 -9
  58. package/esm2022/clamped-text/clamped-text.mjs +202 -0
  59. package/esm2022/clamped-text/constants.mjs +20 -0
  60. package/esm2022/clamped-text/index.mjs +4 -0
  61. package/esm2022/clamped-text/koobiq-components-clamped-text.mjs +5 -0
  62. package/esm2022/clamped-text/module.mjs +19 -0
  63. package/esm2022/content-panel/content-panel.mjs +432 -0
  64. package/esm2022/content-panel/index.mjs +4 -0
  65. package/esm2022/content-panel/koobiq-components-content-panel.mjs +5 -0
  66. package/esm2022/content-panel/module.mjs +42 -0
  67. package/esm2022/content-panel/resizable.mjs +138 -0
  68. package/esm2022/core/form-field/field-sizing-content.mjs +114 -0
  69. package/esm2022/core/form-field/index.mjs +2 -1
  70. package/esm2022/core/locales/en-US.mjs +11 -1
  71. package/esm2022/core/locales/es-LA.mjs +11 -1
  72. package/esm2022/core/locales/fa-IR.mjs +11 -1
  73. package/esm2022/core/locales/pt-BR.mjs +11 -1
  74. package/esm2022/core/locales/ru-RU.mjs +11 -1
  75. package/esm2022/core/locales/tk-TM.mjs +11 -1
  76. package/esm2022/core/locales/types.mjs +1 -1
  77. package/esm2022/core/locales/zh-CN.mjs +11 -1
  78. package/esm2022/core/navbar/index.mjs +2 -0
  79. package/esm2022/core/navbar/rectangle-item.mjs +39 -0
  80. package/esm2022/core/option/option.mjs +8 -4
  81. package/esm2022/core/pop-up/pop-up-trigger.mjs +5 -1
  82. package/esm2022/core/public-api.mjs +2 -1
  83. package/esm2022/core/utils/dom.mjs +14 -0
  84. package/esm2022/core/utils/index.mjs +2 -1
  85. package/esm2022/core/utils/utils.mjs +9 -1
  86. package/esm2022/core/version.mjs +2 -2
  87. package/esm2022/datepicker/calendar-header.component.mjs +6 -3
  88. package/esm2022/datepicker/calendar.component.mjs +9 -9
  89. package/esm2022/datepicker/datepicker-input.directive.mjs +24 -21
  90. package/esm2022/datepicker/datepicker-toggle.component.mjs +8 -8
  91. package/esm2022/datepicker/datepicker.component.mjs +3 -3
  92. package/esm2022/dropdown/dropdown-item.component.mjs +2 -2
  93. package/esm2022/dropdown/dropdown-trigger.directive.mjs +30 -10
  94. package/esm2022/dropdown/dropdown.component.mjs +3 -3
  95. package/esm2022/dynamic-translation/dynamic-translation.mjs +175 -0
  96. package/esm2022/dynamic-translation/index.mjs +3 -0
  97. package/esm2022/dynamic-translation/koobiq-components-dynamic-translation.mjs +5 -0
  98. package/esm2022/dynamic-translation/module.mjs +25 -0
  99. package/esm2022/file-upload/file-drop.mjs +1 -1
  100. package/esm2022/file-upload/file-upload.mjs +6 -1
  101. package/esm2022/file-upload/multiple-file-upload.component.mjs +21 -16
  102. package/esm2022/file-upload/single-file-upload.component.mjs +23 -16
  103. package/esm2022/filter-bar/filter-bar.mjs +3 -3
  104. package/esm2022/filter-bar/filter-refresher.mjs +5 -5
  105. package/esm2022/filter-bar/filter-reset.mjs +3 -3
  106. package/esm2022/filter-bar/filter-search.mjs +11 -11
  107. package/esm2022/filter-bar/filters.mjs +16 -4
  108. package/esm2022/filter-bar/pipe-add.mjs +6 -6
  109. package/esm2022/filter-bar/pipes/base-pipe.mjs +2 -2
  110. package/esm2022/filter-bar/pipes/pipe-button.mjs +7 -7
  111. package/esm2022/filter-bar/pipes/pipe-date.mjs +10 -2
  112. package/esm2022/filter-bar/pipes/pipe-datetime.mjs +10 -2
  113. package/esm2022/filter-bar/pipes/pipe-multi-select.mjs +11 -17
  114. package/esm2022/filter-bar/pipes/pipe-multi-tree-select.mjs +10 -9
  115. package/esm2022/filter-bar/pipes/pipe-readonly.mjs +7 -7
  116. package/esm2022/filter-bar/pipes/pipe-select.mjs +3 -4
  117. package/esm2022/filter-bar/pipes/pipe-text.mjs +9 -3
  118. package/esm2022/filter-bar/pipes/pipe-tree-select.mjs +9 -3
  119. package/esm2022/form-field/cleaner.mjs +16 -11
  120. package/esm2022/form-field/fieldset.mjs +2 -2
  121. package/esm2022/form-field/form-field.mjs +5 -5
  122. package/esm2022/form-field/password-hint.mjs +14 -3
  123. package/esm2022/form-field/password-toggle.mjs +45 -10
  124. package/esm2022/form-field/reactive-password-hint.mjs +18 -17
  125. package/esm2022/form-field/stepper.mjs +9 -9
  126. package/esm2022/icon/icon-button.component.mjs +2 -2
  127. package/esm2022/input/input-number.mjs +15 -10
  128. package/esm2022/markdown/markdown.component.mjs +3 -3
  129. package/esm2022/modal/modal.component.mjs +14 -14
  130. package/esm2022/modal/modal.directive.mjs +7 -5
  131. package/esm2022/navbar/navbar-item.component.mjs +3 -3
  132. package/esm2022/navbar-ic/index.mjs +2 -0
  133. package/esm2022/navbar-ic/koobiq-components-navbar-ic.mjs +5 -0
  134. package/esm2022/navbar-ic/navbar-ic-header.mjs +58 -0
  135. package/esm2022/navbar-ic/navbar-ic-item.mjs +399 -0
  136. package/esm2022/navbar-ic/navbar-ic.animation.mjs +9 -0
  137. package/esm2022/navbar-ic/navbar-ic.mjs +281 -0
  138. package/esm2022/navbar-ic/navbar-ic.module.mjs +74 -0
  139. package/esm2022/navbar-ic/public-api.mjs +5 -0
  140. package/esm2022/popover/popover-confirm.component.mjs +3 -3
  141. package/esm2022/popover/popover.component.mjs +10 -5
  142. package/esm2022/scrollbar/scrollbar.component.mjs +5 -5
  143. package/esm2022/select/select.component.mjs +24 -11
  144. package/esm2022/sidebar/sidebar.component.mjs +46 -27
  145. package/esm2022/sidepanel/sidepanel-container.component.mjs +15 -4
  146. package/esm2022/sidepanel/sidepanel-directives.mjs +5 -5
  147. package/esm2022/sidepanel/sidepanel-ref.mjs +8 -6
  148. package/esm2022/splitter/splitter.component.mjs +1 -1
  149. package/esm2022/tabs/tab-body.component.mjs +3 -3
  150. package/esm2022/tabs/tab-group.component.mjs +27 -27
  151. package/esm2022/tabs/tab.component.mjs +4 -4
  152. package/esm2022/tags/tag-input.mjs +2 -2
  153. package/esm2022/tags/tag-list.component.mjs +36 -17
  154. package/esm2022/tags/tag.component.mjs +231 -22
  155. package/esm2022/tags/tag.module.mjs +16 -6
  156. package/esm2022/textarea/textarea.component.mjs +6 -4
  157. package/esm2022/timepicker/timepicker.directive.mjs +1 -1
  158. package/esm2022/timezone/timezone-select.component.mjs +3 -3
  159. package/esm2022/tooltip/tooltip.component.mjs +3 -3
  160. package/esm2022/tree/tree-selection.component.mjs +4 -4
  161. package/esm2022/tree-select/tree-select.component.mjs +11 -9
  162. package/esm2022/username/constants.mjs +25 -0
  163. package/esm2022/username/index.mjs +6 -0
  164. package/esm2022/username/koobiq-components-username.mjs +5 -0
  165. package/esm2022/username/module.mjs +35 -0
  166. package/esm2022/username/types.mjs +32 -0
  167. package/esm2022/username/username.mjs +129 -0
  168. package/esm2022/username/username.pipe.mjs +92 -0
  169. package/fesm2022/koobiq-components-actions-panel.mjs +56 -31
  170. package/fesm2022/koobiq-components-actions-panel.mjs.map +1 -1
  171. package/fesm2022/koobiq-components-breadcrumbs.mjs +1 -1
  172. package/fesm2022/koobiq-components-breadcrumbs.mjs.map +1 -1
  173. package/fesm2022/koobiq-components-button-toggle.mjs +8 -8
  174. package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
  175. package/fesm2022/koobiq-components-button.mjs +2 -2
  176. package/fesm2022/koobiq-components-button.mjs.map +1 -1
  177. package/fesm2022/koobiq-components-clamped-text.mjs +242 -0
  178. package/fesm2022/koobiq-components-clamped-text.mjs.map +1 -0
  179. package/fesm2022/koobiq-components-content-panel.mjs +612 -0
  180. package/fesm2022/koobiq-components-content-panel.mjs.map +1 -0
  181. package/fesm2022/koobiq-components-core.mjs +271 -31
  182. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  183. package/fesm2022/koobiq-components-datepicker.mjs +45 -40
  184. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  185. package/fesm2022/koobiq-components-dropdown.mjs +33 -13
  186. package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
  187. package/fesm2022/koobiq-components-dynamic-translation.mjs +204 -0
  188. package/fesm2022/koobiq-components-dynamic-translation.mjs.map +1 -0
  189. package/fesm2022/koobiq-components-file-upload.mjs +44 -27
  190. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  191. package/fesm2022/koobiq-components-filter-bar.mjs +100 -71
  192. package/fesm2022/koobiq-components-filter-bar.mjs.map +1 -1
  193. package/fesm2022/koobiq-components-form-field.mjs +100 -49
  194. package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
  195. package/fesm2022/koobiq-components-icon.mjs +2 -2
  196. package/fesm2022/koobiq-components-icon.mjs.map +1 -1
  197. package/fesm2022/koobiq-components-input.mjs +14 -9
  198. package/fesm2022/koobiq-components-input.mjs.map +1 -1
  199. package/fesm2022/koobiq-components-markdown.mjs +2 -2
  200. package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
  201. package/fesm2022/koobiq-components-modal.mjs +19 -17
  202. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  203. package/fesm2022/koobiq-components-navbar-ic.mjs +800 -0
  204. package/fesm2022/koobiq-components-navbar-ic.mjs.map +1 -0
  205. package/fesm2022/koobiq-components-navbar.mjs +2 -2
  206. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  207. package/fesm2022/koobiq-components-popover.mjs +11 -6
  208. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  209. package/fesm2022/koobiq-components-scrollbar.mjs +4 -4
  210. package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -1
  211. package/fesm2022/koobiq-components-select.mjs +23 -10
  212. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  213. package/fesm2022/koobiq-components-sidebar.mjs +45 -26
  214. package/fesm2022/koobiq-components-sidebar.mjs.map +1 -1
  215. package/fesm2022/koobiq-components-sidepanel.mjs +24 -12
  216. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  217. package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
  218. package/fesm2022/koobiq-components-tabs.mjs +31 -31
  219. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  220. package/fesm2022/koobiq-components-tags.mjs +284 -47
  221. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  222. package/fesm2022/koobiq-components-textarea.mjs +5 -3
  223. package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
  224. package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
  225. package/fesm2022/koobiq-components-timezone.mjs +2 -2
  226. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  227. package/fesm2022/koobiq-components-tooltip.mjs +2 -2
  228. package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
  229. package/fesm2022/koobiq-components-tree-select.mjs +10 -8
  230. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  231. package/fesm2022/koobiq-components-tree.mjs +3 -3
  232. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  233. package/fesm2022/koobiq-components-username.mjs +308 -0
  234. package/fesm2022/koobiq-components-username.mjs.map +1 -0
  235. package/file-upload/_file-upload-theme.scss +1 -1
  236. package/file-upload/file-drop.d.ts +1 -1
  237. package/file-upload/file-upload.d.ts +5 -2
  238. package/file-upload/multiple-file-upload.component.d.ts +4 -2
  239. package/file-upload/single-file-upload.component.d.ts +5 -3
  240. package/filter-bar/_filter-bar-theme.scss +2 -2
  241. package/filter-bar/filters.d.ts +1 -0
  242. package/filter-bar/pipes/pipe-date.d.ts +3 -1
  243. package/filter-bar/pipes/pipe-datetime.d.ts +3 -1
  244. package/filter-bar/pipes/pipe-multi-select.d.ts +0 -1
  245. package/filter-bar/pipes/pipe-multi-tree-select.d.ts +3 -2
  246. package/filter-bar/pipes/pipe-select.d.ts +0 -1
  247. package/filter-bar/pipes/pipe-tree-select.d.ts +3 -2
  248. package/form-field/_form-field-theme.scss +27 -18
  249. package/form-field/cleaner.d.ts +4 -2
  250. package/form-field/cleaner.scss +6 -2
  251. package/form-field/form-field.scss +12 -2
  252. package/form-field/password-hint.d.ts +7 -0
  253. package/form-field/password-toggle.d.ts +23 -3
  254. package/form-field/password-toggle.scss +4 -8
  255. package/form-field/reactive-password-hint.d.ts +1 -0
  256. package/icon/_icon-button-theme.scss +8 -2
  257. package/modal/modal.component.d.ts +6 -6
  258. package/navbar-ic/_navbar-ic-theme.scss +81 -0
  259. package/navbar-ic/index.d.ts +1 -0
  260. package/navbar-ic/navbar-ic-divider.scss +7 -0
  261. package/navbar-ic/navbar-ic-header.d.ts +18 -0
  262. package/navbar-ic/navbar-ic-header.scss +53 -0
  263. package/navbar-ic/navbar-ic-item.d.ts +125 -0
  264. package/navbar-ic/navbar-ic-item.scss +96 -0
  265. package/navbar-ic/navbar-ic-tokens.scss +22 -0
  266. package/navbar-ic/navbar-ic.animation.d.ts +2 -0
  267. package/navbar-ic/navbar-ic.d.ts +103 -0
  268. package/navbar-ic/navbar-ic.module.d.ts +14 -0
  269. package/navbar-ic/navbar-ic.scss +32 -0
  270. package/navbar-ic/public-api.d.ts +4 -0
  271. package/package.json +34 -4
  272. package/popover/_popover-theme.scss +6 -2
  273. package/popover/popover-confirm.component.d.ts +1 -1
  274. package/popover/popover-tokens.scss +2 -0
  275. package/popover/popover.component.d.ts +6 -3
  276. package/prebuilt-themes/dark-theme.css +1 -1
  277. package/prebuilt-themes/light-theme.css +1 -1
  278. package/prebuilt-themes/theme.css +1 -1
  279. package/schematics/ng-add/index.js +4 -4
  280. package/scrollbar/scrollbar.component.d.ts +4 -4
  281. package/select/select.component.d.ts +14 -2
  282. package/sidebar/sidebar.component.d.ts +31 -5
  283. package/sidepanel/sidepanel-container.component.d.ts +9 -0
  284. package/sidepanel/sidepanel-ref.d.ts +3 -3
  285. package/splitter/splitter.component.d.ts +2 -2
  286. package/tabs/tab-group.component.d.ts +1 -1
  287. package/tabs/tab.component.d.ts +1 -1
  288. package/tags/_tag-theme.scss +10 -1
  289. package/tags/tag-input.d.ts +1 -1
  290. package/tags/tag-list.component.d.ts +11 -3
  291. package/tags/tag-list.scss +5 -0
  292. package/tags/tag.component.d.ts +78 -8
  293. package/tags/tag.module.d.ts +1 -1
  294. package/tags/tag.scss +18 -0
  295. package/textarea/textarea-tokens.scss +1 -1
  296. package/timepicker/timepicker.directive.d.ts +1 -1
  297. package/tooltip/_tooltip-theme.scss +9 -2
  298. package/tooltip/tooltip-tokens.scss +2 -0
  299. package/tooltip/tooltip.component.d.ts +2 -2
  300. package/tree/tree-selection.component.d.ts +1 -1
  301. package/tree-select/tree-select.component.d.ts +1 -1
  302. package/username/constants.d.ts +15 -0
  303. package/username/index.d.ts +5 -0
  304. package/username/module.d.ts +8 -0
  305. package/username/types.d.ts +62 -0
  306. package/username/username-tokens.scss +6 -0
  307. package/username/username.d.ts +68 -0
  308. package/username/username.pipe.d.ts +23 -0
  309. package/username/username.scss +107 -0
@@ -132,6 +132,16 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
132
132
  backToPeriodSelection: string;
133
133
  };
134
134
  };
135
+ clampedText: {
136
+ openText: string;
137
+ closeText: string;
138
+ };
139
+ navbarIc: {
140
+ toggle: {
141
+ pinButton: string;
142
+ collapseButton: string;
143
+ };
144
+ };
135
145
  };
136
146
  'zh-CN': {
137
147
  formatters: {
@@ -255,6 +265,16 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
255
265
  backToPeriodSelection: string;
256
266
  };
257
267
  };
268
+ clampedText: {
269
+ openText: string;
270
+ closeText: string;
271
+ };
272
+ navbarIc: {
273
+ toggle: {
274
+ pinButton: string;
275
+ collapseButton: string;
276
+ };
277
+ };
258
278
  };
259
279
  'es-LA': {
260
280
  formatters: {
@@ -383,6 +403,16 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
383
403
  backToPeriodSelection: string;
384
404
  };
385
405
  };
406
+ clampedText: {
407
+ openText: string;
408
+ closeText: string;
409
+ };
410
+ navbarIc: {
411
+ toggle: {
412
+ pinButton: string;
413
+ collapseButton: string;
414
+ };
415
+ };
386
416
  };
387
417
  'pt-BR': {
388
418
  formatters: {
@@ -507,6 +537,16 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
507
537
  backToPeriodSelection: string;
508
538
  };
509
539
  };
540
+ clampedText: {
541
+ openText: string;
542
+ closeText: string;
543
+ };
544
+ navbarIc: {
545
+ toggle: {
546
+ pinButton: string;
547
+ collapseButton: string;
548
+ };
549
+ };
510
550
  };
511
551
  'ru-RU': {
512
552
  formatters: {
@@ -637,6 +677,16 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
637
677
  backToPeriodSelection: string;
638
678
  };
639
679
  };
680
+ clampedText: {
681
+ openText: string;
682
+ closeText: string;
683
+ };
684
+ navbarIc: {
685
+ toggle: {
686
+ pinButton: string;
687
+ collapseButton: string;
688
+ };
689
+ };
640
690
  };
641
691
  'fa-IR': {
642
692
  formatters: {
@@ -762,6 +812,16 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
762
812
  backToPeriodSelection: string;
763
813
  };
764
814
  };
815
+ clampedText: {
816
+ openText: string;
817
+ closeText: string;
818
+ };
819
+ navbarIc: {
820
+ toggle: {
821
+ pinButton: string;
822
+ collapseButton: string;
823
+ };
824
+ };
765
825
  };
766
826
  'tk-TM': {
767
827
  formatters: {
@@ -887,6 +947,16 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
887
947
  backToPeriodSelection: string;
888
948
  };
889
949
  };
950
+ clampedText: {
951
+ openText: string;
952
+ closeText: string;
953
+ };
954
+ navbarIc: {
955
+ toggle: {
956
+ pinButton: string;
957
+ collapseButton: string;
958
+ };
959
+ };
890
960
  };
891
961
  };
892
962
  export declare const KBQ_LOCALE_DATA: InjectionToken<any>;
@@ -87,4 +87,14 @@ export declare const ptBRLocaleData: {
87
87
  backToPeriodSelection: string;
88
88
  };
89
89
  };
90
+ clampedText: {
91
+ openText: string;
92
+ closeText: string;
93
+ };
94
+ navbarIc: {
95
+ toggle: {
96
+ pinButton: string;
97
+ collapseButton: string;
98
+ };
99
+ };
90
100
  };
@@ -88,4 +88,14 @@ export declare const ruRULocaleData: {
88
88
  backToPeriodSelection: string;
89
89
  };
90
90
  };
91
+ clampedText: {
92
+ openText: string;
93
+ closeText: string;
94
+ };
95
+ navbarIc: {
96
+ toggle: {
97
+ pinButton: string;
98
+ collapseButton: string;
99
+ };
100
+ };
91
101
  };
@@ -88,4 +88,14 @@ export declare const tkTMLocaleData: {
88
88
  backToPeriodSelection: string;
89
89
  };
90
90
  };
91
+ clampedText: {
92
+ openText: string;
93
+ closeText: string;
94
+ };
95
+ navbarIc: {
96
+ toggle: {
97
+ pinButton: string;
98
+ collapseButton: string;
99
+ };
100
+ };
91
101
  };
@@ -29,3 +29,8 @@ export type KbqNumberInputLocaleConfig = {
29
29
  /** Number of digits before applying group separators */
30
30
  startFormattingFrom?: number;
31
31
  } & KbqNumberFormatOptions;
32
+ /** Locale configuration for `KbqClampedText` */
33
+ export type KbqClampedTextLocaleConfig = {
34
+ openText: string;
35
+ closeText: string;
36
+ };
@@ -87,4 +87,14 @@ export declare const zhCNLocaleData: {
87
87
  backToPeriodSelection: string;
88
88
  };
89
89
  };
90
+ clampedText: {
91
+ openText: string;
92
+ closeText: string;
93
+ };
94
+ navbarIc: {
95
+ toggle: {
96
+ pinButton: string;
97
+ collapseButton: string;
98
+ };
99
+ };
90
100
  };
@@ -0,0 +1 @@
1
+ export * from './rectangle-item';
@@ -0,0 +1,14 @@
1
+ import { Subject } from 'rxjs';
2
+ import * as i0 from "@angular/core";
3
+ export declare class KbqRectangleItem {
4
+ protected readonly isBrowser: boolean;
5
+ protected readonly nativeElement: any;
6
+ private readonly window;
7
+ readonly state: Subject<void>;
8
+ get collapsed(): boolean;
9
+ set collapsed(value: boolean);
10
+ private _collapsed;
11
+ getOuterElementWidth(): number;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqRectangleItem, never>;
13
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqRectangleItem, never, never, {}, {}, never, never, true, never>;
14
+ }
@@ -78,6 +78,8 @@ export declare class KbqOption extends KbqOptionBase implements AfterViewChecked
78
78
  * select's trigger.
79
79
  */
80
80
  get viewValue(): string;
81
+ set viewValue(value: string);
82
+ private _viewValue;
81
83
  /** Whether the wrapping component is in multiple selection mode. */
82
84
  get multiple(): boolean;
83
85
  get id(): string;
@@ -127,7 +129,7 @@ export declare class KbqOption extends KbqOptionBase implements AfterViewChecked
127
129
  getTabIndex(): string;
128
130
  getHostElement(): HTMLElement;
129
131
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqOption, [null, null, { optional: true; }, { optional: true; }]>;
130
- static ɵcmp: i0.ɵɵComponentDeclaration<KbqOption, "kbq-option", ["kbqOption"], { "value": { "alias": "value"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "userSelect": { "alias": "userSelect"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; }, never, ["kbq-pseudo-checkbox", "*"], false, never>;
132
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqOption, "kbq-option", ["kbqOption"], { "value": { "alias": "value"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "userSelect": { "alias": "userSelect"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "viewValue": { "alias": "viewValue"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "onSelectionChange": "onSelectionChange"; }, never, ["kbq-pseudo-checkbox", "*"], false, never>;
131
133
  static ngAcceptInputType_selectable: unknown;
132
134
  static ngAcceptInputType_userSelect: unknown;
133
135
  }
@@ -50,6 +50,8 @@ export declare abstract class KbqPopUpTrigger<T> implements OnInit, OnDestroy {
50
50
  protected strategy: FlexibleConnectedPositionStrategy;
51
51
  /** Hide pop-up with timeout. Need if you want to show pop-up after leaving trigger */
52
52
  protected hideWithTimeout: boolean;
53
+ /** prevents closure by any event */
54
+ protected preventClose: boolean;
53
55
  abstract updateClassMap(newPlacement?: string): void;
54
56
  abstract updateData(): void;
55
57
  abstract closingActions(): Observable<any>;
@@ -8,6 +8,7 @@ export * from './forms/index';
8
8
  export * from './highlight/index';
9
9
  export * from './line/line';
10
10
  export * from './locales/index';
11
+ export * from './navbar/index';
11
12
  export * from './option/index';
12
13
  export * from './overlay/overlay-position-map';
13
14
  export * from './pop-up/index';
@@ -17,7 +17,7 @@
17
17
 
18
18
  cursor: pointer;
19
19
 
20
- min-height: var(--kbq-form-field-size-height);
20
+ min-height: calc(var(--kbq-form-field-size-height) - calc(var(--kbq-size-border-width) * 2));
21
21
 
22
22
  &:not(.kbq-select__trigger_multiline) {
23
23
  height: calc(var(--kbq-form-field-size-height) - calc(var(--kbq-size-border-width) * 2));
@@ -89,8 +89,10 @@
89
89
  & .kbq-select__matcher {
90
90
  max-width: 100%;
91
91
 
92
- padding: var(--kbq-select-size-multiple-padding-vertical) var(--kbq-select-size-multiple-padding-right)
93
- var(--kbq-select-size-multiple-padding-vertical) var(--kbq-select-size-multiple-padding-left);
92
+ padding: calc(var(--kbq-select-size-multiple-padding-vertical) - var(--kbq-size-border-width))
93
+ var(--kbq-select-size-multiple-padding-right)
94
+ calc(var(--kbq-select-size-multiple-padding-vertical) - var(--kbq-size-border-width))
95
+ var(--kbq-select-size-multiple-padding-left);
94
96
  }
95
97
 
96
98
  & .kbq-select__cleaner,
@@ -99,6 +101,7 @@
99
101
  align-items: center;
100
102
 
101
103
  height: calc(var(--kbq-form-field-size-height) - var(--kbq-size-s));
104
+ min-width: var(--kbq-form-field-size-addon-width);
102
105
  }
103
106
 
104
107
  & .kbq-select__multiline-match-list {
@@ -0,0 +1,9 @@
1
+ import { ElementRef } from '@angular/core';
2
+ /**
3
+ * Injects the ElementRef for the current component.
4
+ */
5
+ export declare const kbqInjectElementRef: <T = HTMLElement>() => ElementRef<T>;
6
+ /**
7
+ * Injects the native element for the current component.
8
+ */
9
+ export declare const kbqInjectNativeElement: <T = HTMLElement>() => T;
@@ -1 +1,2 @@
1
+ export * from './dom';
1
2
  export * from './public-api';
@@ -1,4 +1,8 @@
1
1
  export declare function isBoolean(value: unknown): value is boolean;
2
+ /** Whether the value is undefined. */
3
+ export declare const isUndefined: (value: unknown) => value is undefined;
4
+ /** Whether the value is null. */
5
+ export declare const isNull: (value: unknown) => value is null;
2
6
  /**
3
7
  * Will be removed in the next major release
4
8
  *
@@ -65,9 +65,9 @@ export declare class KbqCalendar<D> implements AfterContentInit, OnDestroy, OnCh
65
65
  /** Subscription to value changes in the associated input element. */
66
66
  private inputSubscription;
67
67
  constructor(intl: KbqDatepickerIntl, adapter: DateAdapter<D>, changeDetectorRef: ChangeDetectorRef);
68
+ ngOnChanges(changes: SimpleChanges): void;
68
69
  ngAfterContentInit(): void;
69
70
  ngOnDestroy(): void;
70
- ngOnChanges(changes: SimpleChanges): void;
71
71
  /**
72
72
  * Register an input with this calendar.
73
73
  * @param input The calendar input to register with this calendar.
@@ -1,6 +1,6 @@
1
- import { AfterContentInit, DoCheck, ElementRef, EventEmitter, OnDestroy, Renderer2 } from '@angular/core';
1
+ import { AfterContentInit, DoCheck, ElementRef, EventEmitter, InjectionToken, OnDestroy, Renderer2 } from '@angular/core';
2
2
  import { AbstractControl, ControlValueAccessor, ValidationErrors, Validator } from '@angular/forms';
3
- import { DateAdapter, ErrorStateMatcher, KbqDateFormats, KbqLocaleService } from '@koobiq/components/core';
3
+ import { DateAdapter, ErrorStateMatcher, KbqDateFormats } from '@koobiq/components/core';
4
4
  import { KbqFormFieldControl } from '@koobiq/components/form-field';
5
5
  import { KbqWarningTooltipTrigger } from '@koobiq/components/tooltip';
6
6
  import { Subject } from 'rxjs';
@@ -12,6 +12,15 @@ export declare const MAX_YEAR = 9999;
12
12
  export declare const KBQ_DATEPICKER_VALUE_ACCESSOR: any;
13
13
  /** @docs-private */
14
14
  export declare const KBQ_DATEPICKER_VALIDATORS: any;
15
+ /** default configuration of datepicker */
16
+ /** @docs-private */
17
+ export declare const KBQ_DATEPICKER_DEFAULT_CONFIGURATION: {
18
+ placeholder: string;
19
+ dateInput: string;
20
+ };
21
+ /** Injection Token for providing configuration of datepicker */
22
+ /** @docs-private */
23
+ export declare const KBQ_DATEPICKER_CONFIGURATION: InjectionToken<unknown>;
15
24
  /**
16
25
  * An event used for datepicker input and change events. We don't always have access to a native
17
26
  * input or change event because the event may have been triggered by the user clicking on the
@@ -36,7 +45,10 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
36
45
  private readonly renderer;
37
46
  readonly adapter: DateAdapter<D>;
38
47
  private readonly dateFormats;
39
- private localeService;
48
+ /** @docs-private */
49
+ protected readonly localeService: import("@koobiq/components/core").KbqLocaleService | null;
50
+ protected readonly externalConfiguration: unknown;
51
+ protected configuration: any;
40
52
  readonly stateChanges: Subject<void>;
41
53
  controlType: string;
42
54
  focused: boolean;
@@ -82,7 +94,7 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
82
94
  set id(value: string);
83
95
  private _id;
84
96
  set kbqValidationTooltip(tooltip: KbqWarningTooltipTrigger);
85
- incorrectInput: EventEmitter<void>;
97
+ readonly incorrectInput: EventEmitter<void>;
86
98
  /** Emits when a `change` event is fired on this `<input>`. */
87
99
  readonly dateChange: EventEmitter<KbqDatepickerInputEvent<D>>;
88
100
  /** Emits when an `input` event is fired on this `<input>`. */
@@ -102,7 +114,6 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
102
114
  private control;
103
115
  private readonly uid;
104
116
  private datepickerSubscription;
105
- private localeSubscription;
106
117
  /** Whether the last value set on the input was valid. */
107
118
  private lastValueValid;
108
119
  /** The combined form control validator for this input. */
@@ -112,9 +123,8 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
112
123
  private secondDigit;
113
124
  private thirdDigit;
114
125
  private separatorPositions;
115
- private usePlaceholderFromInput;
116
126
  private errorStateTracker;
117
- constructor(elementRef: ElementRef<HTMLInputElement>, renderer: Renderer2, adapter: DateAdapter<D>, dateFormats: KbqDateFormats, localeService: KbqLocaleService);
127
+ constructor(elementRef: ElementRef<HTMLInputElement>, renderer: Renderer2, adapter: DateAdapter<D>, dateFormats: KbqDateFormats);
118
128
  ngDoCheck(): void;
119
129
  onContainerClick(): void;
120
130
  focus(): void;
@@ -142,6 +152,7 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
142
152
  updateErrorState(): void;
143
153
  private saveTimePart;
144
154
  private updateLocaleParams;
155
+ private initDefaultParams;
145
156
  private setFormat;
146
157
  private updateValue;
147
158
  private isKeyForClose;
@@ -199,6 +210,6 @@ export declare class KbqDatepickerInput<D> implements KbqFormFieldControl<D>, Co
199
210
  private createDate;
200
211
  private createDateTime;
201
212
  private correctCursorPosition;
202
- static ɵfac: i0.ɵɵFactoryDeclaration<KbqDatepickerInput<any>, [null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
213
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqDatepickerInput<any>, [null, null, { optional: true; }, { optional: true; }]>;
203
214
  static ɵdir: i0.ɵɵDirectiveDeclaration<KbqDatepickerInput<any>, "input[kbqDatepicker], input[kbqCalendar]", ["kbqDatepickerInput"], { "errorStateMatcher": { "alias": "errorStateMatcher"; "required": false; }; "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>;
204
215
  }
@@ -48,8 +48,8 @@ export declare class KbqDatepickerToggle<D> implements AfterContentInit, OnChang
48
48
  private _disabled;
49
49
  constructor(intl: KbqDatepickerIntl, changeDetectorRef: ChangeDetectorRef);
50
50
  ngOnChanges(changes: SimpleChanges): void;
51
- ngOnDestroy(): void;
52
51
  ngAfterContentInit(): void;
52
+ ngOnDestroy(): void;
53
53
  open(event: Event): void;
54
54
  private watchStateChanges;
55
55
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqDatepickerToggle<any>, never>;
@@ -90,9 +90,9 @@ export declare class KbqDatepicker<D> implements OnDestroy {
90
90
  dateClass: (date: D) => KbqCalendarCellCssClasses;
91
91
  backdropClass: string;
92
92
  /** Emits when the datepicker has been opened. */
93
- openedStream: EventEmitter<void>;
93
+ readonly openedStream: EventEmitter<void>;
94
94
  /** Emits when the datepicker has been closed. */
95
- closedStream: EventEmitter<void>;
95
+ readonly closedStream: EventEmitter<void>;
96
96
  readonly stateChanges: Subject<void>;
97
97
  /** Emits when the datepicker is disabled. */
98
98
  readonly disabledChange: Subject<boolean>;
@@ -13,6 +13,7 @@
13
13
 
14
14
  text-align: left;
15
15
  align-items: flex-start;
16
+ text-decoration: none;
16
17
 
17
18
  & > .kbq-icon:first-child:before {
18
19
  align-self: center;
@@ -36,6 +36,10 @@ export declare class KbqDropdownTrigger implements AfterContentInit, OnDestroy {
36
36
  protected readonly isBrowser: boolean;
37
37
  private readonly window;
38
38
  lastDestroyReason: DropdownCloseReason;
39
+ /** Position offset of the dropdown in the X axis. */
40
+ offsetX: number;
41
+ /** Position offset of the dropdown in the Y axis. */
42
+ offsetY: number;
39
43
  /** Data to be passed along to any lazily-rendered content. */
40
44
  data: any;
41
45
  openByArrowDown: boolean;
@@ -134,5 +138,7 @@ export declare class KbqDropdownTrigger implements AfterContentInit, OnDestroy {
134
138
  private getPortal;
135
139
  private getWidth;
136
140
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqDropdownTrigger, [null, null, null, null, { optional: true; }, { optional: true; self: true; }, { optional: true; }, null, null]>;
137
- static ɵdir: i0.ɵɵDirectiveDeclaration<KbqDropdownTrigger, "[kbqDropdownTriggerFor]", ["kbqDropdownTrigger"], { "data": { "alias": "kbqDropdownTriggerData"; "required": false; }; "openByArrowDown": { "alias": "openByArrowDown"; "required": false; }; "restoreFocus": { "alias": "kbqDropdownTriggerRestoreFocus"; "required": false; }; "dropdown": { "alias": "kbqDropdownTriggerFor"; "required": false; }; }, { "dropdownOpened": "dropdownOpened"; "dropdownClosed": "dropdownClosed"; }, never, never, false, never>;
141
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqDropdownTrigger, "[kbqDropdownTriggerFor]", ["kbqDropdownTrigger"], { "offsetX": { "alias": "offsetX"; "required": false; }; "offsetY": { "alias": "offsetY"; "required": false; }; "data": { "alias": "kbqDropdownTriggerData"; "required": false; }; "openByArrowDown": { "alias": "openByArrowDown"; "required": false; }; "restoreFocus": { "alias": "kbqDropdownTriggerRestoreFocus"; "required": false; }; "dropdown": { "alias": "kbqDropdownTriggerFor"; "required": false; }; }, { "dropdownOpened": "dropdownOpened"; "dropdownClosed": "dropdownClosed"; }, never, never, false, never>;
142
+ static ngAcceptInputType_offsetX: unknown;
143
+ static ngAcceptInputType_offsetY: unknown;
138
144
  }
@@ -0,0 +1,72 @@
1
+ import { Signal, TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * @docs-private
5
+ */
6
+ type KbqDynamicTranslationParsedSlot = {
7
+ type: 'text' | 'slot';
8
+ template: TemplateRef<unknown> | null;
9
+ context?: {
10
+ $implicit: unknown;
11
+ };
12
+ text?: string;
13
+ };
14
+ /**
15
+ * @docs-private
16
+ */
17
+ export interface KbqDynamicTranslationHelperSlot {
18
+ name: string;
19
+ tag: string;
20
+ attributes?: {
21
+ key: string;
22
+ value: string;
23
+ }[];
24
+ content?: string;
25
+ }
26
+ /**
27
+ * Directive for defining a dynamic translation slot.
28
+ */
29
+ export declare class KbqDynamicTranslationSlot {
30
+ /**
31
+ * The name of the dynamic translation slot.
32
+ */
33
+ readonly name: import("@angular/core").InputSignal<string>;
34
+ /**
35
+ * @docs-private
36
+ */
37
+ readonly templateRef: TemplateRef<any>;
38
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqDynamicTranslationSlot, never>;
39
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqDynamicTranslationSlot, "[kbqDynamicTranslationSlot]", never, { "name": { "alias": "kbqDynamicTranslationSlot"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
40
+ }
41
+ /**
42
+ * Component for dynamic translation.
43
+ */
44
+ export declare class KbqDynamicTranslation {
45
+ private readonly slots;
46
+ /**
47
+ * The text which will be translated.
48
+ */
49
+ readonly text: import("@angular/core").InputSignal<string>;
50
+ /**
51
+ * @docs-private
52
+ */
53
+ protected readonly parsedSlots: Signal<KbqDynamicTranslationParsedSlot[]>;
54
+ private parseSlots;
55
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqDynamicTranslation, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqDynamicTranslation, "kbq-dynamic-translation", never, { "text": { "alias": "text"; "required": true; "isSignal": true; }; }, {}, ["slots"], never, true, never>;
57
+ }
58
+ /**
59
+ * @docs-private
60
+ */
61
+ export declare class KbqDynamicTranslationHelper {
62
+ private readonly renderer;
63
+ private readonly replaceableSlotContainers;
64
+ private readonly slotsByName;
65
+ readonly text: import("@angular/core").InputSignal<string>;
66
+ readonly slots: import("@angular/core").InputSignal<KbqDynamicTranslationHelperSlot[]>;
67
+ constructor();
68
+ private replaceSlots;
69
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqDynamicTranslationHelper, never>;
70
+ static ɵcmp: i0.ɵɵComponentDeclaration<KbqDynamicTranslationHelper, "kbq-dynamic-translation-with-dynamic-component-creation", never, { "text": { "alias": "text"; "required": true; "isSignal": true; }; "slots": { "alias": "slots"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
71
+ }
72
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from './dynamic-translation';
2
+ export * from './module';
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./dynamic-translation";
3
+ export declare class KbqDynamicTranslationModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<KbqDynamicTranslationModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KbqDynamicTranslationModule, never, [typeof i1.KbqDynamicTranslationSlot, typeof i1.KbqDynamicTranslationHelper, typeof i1.KbqDynamicTranslation], [typeof i1.KbqDynamicTranslationSlot, typeof i1.KbqDynamicTranslationHelper, typeof i1.KbqDynamicTranslation]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<KbqDynamicTranslationModule>;
7
+ }
@@ -52,4 +52,4 @@ export class KbqActionsPanelConfig {
52
52
  this.disableClose = false;
53
53
  }
54
54
  }
55
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9ucy1wYW5lbC1jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21wb25lbnRzL2FjdGlvbnMtcGFuZWwvYWN0aW9ucy1wYW5lbC1jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFjLGNBQWMsRUFBc0IsTUFBTSxlQUFlLENBQUM7QUFFL0UsZ0ZBQWdGO0FBQ2hGLE1BQU0sQ0FBQyxNQUFNLGdDQUFnQyxHQUFHLElBQUksY0FBYyxDQUM5RCxrQ0FBa0MsRUFDbEMsRUFBRSxPQUFPLEVBQUUsR0FBRyxFQUFFLENBQUMsSUFBSSxxQkFBcUIsRUFBRSxFQUFFLENBQ2pELENBQUM7QUFFRjs7OztHQUlHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sb0NBQW9DLEdBQUcsQ0FBSSxNQUFnQyxFQUFZLEVBQUUsQ0FBQyxDQUFDO0lBQ3BHLE9BQU8sRUFBRSxnQ0FBZ0M7SUFDekMsUUFBUSxFQUFFLE1BQU07Q0FDbkIsQ0FBQyxDQUFDO0FBRUg7Ozs7OztHQU1HO0FBQ0gsTUFBTSxPQUFPLHFCQUFxQjtJQUFsQztRQU1JOzs7O1dBSUc7UUFDSCxTQUFJLEdBQWMsSUFBSSxDQUFDO1FBS3ZCOzs7OztXQUtHO1FBQ0gsc0JBQWlCLEdBQWEsSUFBSSxDQUFDO1FBK0JuQzs7OztXQUlHO1FBQ0gsY0FBUyxHQUFlLEtBQUssQ0FBQztRQUU5Qjs7OztXQUlHO1FBQ0gsbUJBQWMsR0FBMEMsQ0FBQyxPQUFPLEVBQUUsRUFBRSxDQUFDLE9BQU8sQ0FBQyxnQkFBZ0IsQ0FBQyxVQUFVLEVBQUUsQ0FBQztRQUUzRzs7OztXQUlHO1FBQ0gsaUJBQVksR0FBYSxLQUFLLENBQUM7SUFDbkMsQ0FBQztDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2JpZGknO1xuaW1wb3J0IHsgT3ZlcmxheSwgU2Nyb2xsU3RyYXRlZ3kgfSBmcm9tICdAYW5ndWxhci9jZGsvb3ZlcmxheSc7XG5pbXBvcnQgeyBFbGVtZW50UmVmLCBJbmplY3Rpb25Ub2tlbiwgSW5qZWN0b3IsIFByb3ZpZGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8qKiBJbmplY3Rpb24gdG9rZW4gdGhhdCBjYW4gYmUgdXNlZCB0byBzcGVjaWZ5IGRlZmF1bHQgYWN0aW9ucyBwYW5lbCBjb25maWcuICovXG5leHBvcnQgY29uc3QgS0JRX0FDVElPTlNfUEFORUxfREVGQVVMVF9DT05GSUcgPSBuZXcgSW5qZWN0aW9uVG9rZW48S2JxQWN0aW9uc1BhbmVsQ29uZmlnPihcbiAgICAnS0JRX0FDVElPTlNfUEFORUxfREVGQVVMVF9DT05GSUcnLFxuICAgIHsgZmFjdG9yeTogKCkgPT4gbmV3IEticUFjdGlvbnNQYW5lbENvbmZpZygpIH1cbik7XG5cbi8qKlxuICogVXRpbGl0eSBmb3IgcHJvdmlkaW5nIGRlZmF1bHQgYWN0aW9ucyBwYW5lbCBjb25maWcuXG4gKlxuICogQHNlZSBgS0JRX0FDVElPTlNfUEFORUxfREVGQVVMVF9DT05GSUdgXG4gKi9cbmV4cG9ydCBjb25zdCBrYnFBY3Rpb25zUGFuZWxEZWZhdWx0Q29uZmlnUHJvdmlkZXIgPSA8RD4oY29uZmlnOiBLYnFBY3Rpb25zUGFuZWxDb25maWc8RD4pOiBQcm92aWRlciA9PiAoe1xuICAgIHByb3ZpZGU6IEtCUV9BQ1RJT05TX1BBTkVMX0RFRkFVTFRfQ09ORklHLFxuICAgIHVzZVZhbHVlOiBjb25maWdcbn0pO1xuXG4vKipcbiAqIENvbmZpZ3VyYXRpb24gZm9yIG9wZW5lZCBhY3Rpb25zIHBhbmVsLlxuICogQmFzZWQgb24gY2RrIGBEaWFsb2dDb25maWdgLlxuICpcbiAqIEBzZWUgYERpYWxvZ0NvbmZpZ2BcbiAqXG4gKi9cbmV4cG9ydCBjbGFzcyBLYnFBY3Rpb25zUGFuZWxDb25maWc8RCA9IHVua25vd24+IHtcbiAgICAvKipcbiAgICAgKiBJbmplY3RvciB1c2VkIGZvciB0aGUgaW5zdGFudGlhdGlvbiBvZiB0aGUgY29tcG9uZW50IHRvIGJlIGF0dGFjaGVkLlxuICAgICAqL1xuICAgIGluamVjdG9yPzogSW5qZWN0b3I7XG5cbiAgICAvKipcbiAgICAgKiBEYXRhIGJlaW5nIGluamVjdGVkIGludG8gdGhlIGNoaWxkIGNvbXBvbmVudC5cbiAgICAgKlxuICAgICAqIEBzZWUgYEtCUV9BQ1RJT05TX1BBTkVMX0RBVEFgXG4gICAgICovXG4gICAgZGF0YT86IEQgfCBudWxsID0gbnVsbDtcblxuICAgIC8qKiBFeHRyYSBDU1MgY2xhc3NlcyB0byBiZSBhZGRlZCB0byB0aGUgYWN0aW9ucyBwYW5lbCBjb250YWluZXIuICovXG4gICAgY29udGFpbmVyQ2xhc3M/OiBzdHJpbmcgfCBzdHJpbmdbXTtcblxuICAgIC8qKlxuICAgICAqIFdoZXRoZXIgdGhlIGFjdGlvbnMgcGFuZWwgc2hvdWxkIGJlIGNsb3NlZCBvZiB3aGVuIHRoZSB1c2VyIGdvZXMgYmFja3dhcmRzL2ZvcndhcmRzIGluIGhpc3RvcnkuXG4gICAgICogTk9URSEgVGhpcyBkb2VzIG5vdCBhcHBseSB0byByb3V0ZXIgbmF2aWdhdGlvbi5cbiAgICAgKlxuICAgICAqIEBkZWZhdWx0IHRydWVcbiAgICAgKi9cbiAgICBjbG9zZU9uTmF2aWdhdGlvbj86IGJvb2xlYW4gPSB0cnVlO1xuXG4gICAgLyoqXG4gICAgICogT3ZlcmxheSBjb250YWluZXIgZWxlbWVudCBpbiB3aGljaCB0aGUgYWN0aW9ucyBwYW5lbCBhcmUgcmVuZGVyZWQuXG4gICAgICpcbiAgICAgKiBAZGVmYXVsdCBgZG9jdW1lbnQuYm9keWBcbiAgICAgKi9cbiAgICBvdmVybGF5Q29udGFpbmVyPzogRWxlbWVudFJlZjxIVE1MRWxlbWVudD47XG5cbiAgICAvKipcbiAgICAgKiBFeHRyYSBDU1MgY2xhc3NlcyB0byBiZSBhZGRlZCB0byB0aGUgb3ZlcmxheSBwYW5lbC5cbiAgICAgKi9cbiAgICBvdmVybGF5UGFuZWxDbGFzcz86IHN0cmluZyB8IHN0cmluZ1tdO1xuXG4gICAgLyoqXG4gICAgICogV2lkdGggb2YgdGhlIGFjdGlvbnMgcGFuZWwuXG4gICAgICovXG4gICAgd2lkdGg/OiBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBNaW4td2lkdGggb2YgdGhlIGFjdGlvbnMgcGFuZWwuXG4gICAgICogSWYgYSBudW1iZXIgaXMgcHJvdmlkZWQsIGFzc3VtZXMgcGl4ZWwgdW5pdHMuXG4gICAgICovXG4gICAgbWluV2lkdGg/OiBudW1iZXIgfCBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBNYXgtd2lkdGggb2YgdGhlIGFjdGlvbnMgcGFuZWwuXG4gICAgICogSWYgYSBudW1iZXIgaXMgcHJvdmlkZWQsIGFzc3VtZXMgcGl4ZWwgdW5pdHMuXG4gICAgICovXG4gICAgbWF4V2lkdGg/OiBudW1iZXIgfCBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBEaXJlY3Rpb24gb2YgdGhlIHRleHQgaW4gdGhlIGFjdGlvbnMgcGFuZWwuXG4gICAgICpcbiAgICAgKiBAZGVmYXVsdCAnbHRyJ1xuICAgICAqL1xuICAgIGRpcmVjdGlvbj86IERpcmVjdGlvbiA9ICdsdHInO1xuXG4gICAgLyoqXG4gICAgICogU2Nyb2xsIHN0cmF0ZWd5IHRvIGJlIHVzZWQgZm9yIHRoZSBhY3Rpb25zIHBhbmVsLlxuICAgICAqXG4gICAgICogQGRlZmF1bHQgYFJlcG9zaXRpb25TY3JvbGxTdHJhdGVneWBcbiAgICAgKi9cbiAgICBzY3JvbGxTdHJhdGVneT86IChvdmVybGF5OiBPdmVybGF5KSA9PiBTY3JvbGxTdHJhdGVneSA9IChvdmVybGF5KSA9PiBvdmVybGF5LnNjcm9sbFN0cmF0ZWdpZXMucmVwb3NpdGlvbigpO1xuXG4gICAgLyoqXG4gICAgICogV2hldGhlciB0aGUgdXNlciBjYW4gdXNlIEVTQyBvciBjbGljayBvbiBjbG9zZSBidXR0b24gdG8gY2xvc2UgdGhlIGFjdGlvbnMgcGFuZWwuXG4gICAgICpcbiAgICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgICAqL1xuICAgIGRpc2FibGVDbG9zZT86IGJvb2xlYW4gPSBmYWxzZTtcbn1cbiJdfQ==
55
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9ucy1wYW5lbC1jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wYWNrYWdlcy9jb21wb25lbnRzL2FjdGlvbnMtcGFuZWwvYWN0aW9ucy1wYW5lbC1jb25maWcudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBRUEsT0FBTyxFQUFjLGNBQWMsRUFBc0IsTUFBTSxlQUFlLENBQUM7QUFFL0UsZ0ZBQWdGO0FBQ2hGLE1BQU0sQ0FBQyxNQUFNLGdDQUFnQyxHQUFHLElBQUksY0FBYyxDQUM5RCxrQ0FBa0MsRUFDbEMsRUFBRSxPQUFPLEVBQUUsR0FBRyxFQUFFLENBQUMsSUFBSSxxQkFBcUIsRUFBRSxFQUFFLENBQ2pELENBQUM7QUFFRjs7OztHQUlHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sb0NBQW9DLEdBQUcsQ0FBSSxNQUFnQyxFQUFZLEVBQUUsQ0FBQyxDQUFDO0lBQ3BHLE9BQU8sRUFBRSxnQ0FBZ0M7SUFDekMsUUFBUSxFQUFFLE1BQU07Q0FDbkIsQ0FBQyxDQUFDO0FBRUg7Ozs7OztHQU1HO0FBQ0gsTUFBTSxPQUFPLHFCQUFxQjtJQUFsQztRQU1JOzs7O1dBSUc7UUFDSCxTQUFJLEdBQWMsSUFBSSxDQUFDO1FBS3ZCOzs7OztXQUtHO1FBQ0gsc0JBQWlCLEdBQWEsSUFBSSxDQUFDO1FBZ0NuQzs7OztXQUlHO1FBQ0gsY0FBUyxHQUFlLEtBQUssQ0FBQztRQUU5Qjs7OztXQUlHO1FBQ0gsbUJBQWMsR0FBMEMsQ0FBQyxPQUFPLEVBQUUsRUFBRSxDQUFDLE9BQU8sQ0FBQyxnQkFBZ0IsQ0FBQyxVQUFVLEVBQUUsQ0FBQztRQUUzRzs7OztXQUlHO1FBQ0gsaUJBQVksR0FBYSxLQUFLLENBQUM7SUFDbkMsQ0FBQztDQUFBIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aW9uIH0gZnJvbSAnQGFuZ3VsYXIvY2RrL2JpZGknO1xuaW1wb3J0IHsgT3ZlcmxheSwgU2Nyb2xsU3RyYXRlZ3kgfSBmcm9tICdAYW5ndWxhci9jZGsvb3ZlcmxheSc7XG5pbXBvcnQgeyBFbGVtZW50UmVmLCBJbmplY3Rpb25Ub2tlbiwgSW5qZWN0b3IsIFByb3ZpZGVyIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbi8qKiBJbmplY3Rpb24gdG9rZW4gdGhhdCBjYW4gYmUgdXNlZCB0byBzcGVjaWZ5IGRlZmF1bHQgYWN0aW9ucyBwYW5lbCBjb25maWcuICovXG5leHBvcnQgY29uc3QgS0JRX0FDVElPTlNfUEFORUxfREVGQVVMVF9DT05GSUcgPSBuZXcgSW5qZWN0aW9uVG9rZW48S2JxQWN0aW9uc1BhbmVsQ29uZmlnPihcbiAgICAnS0JRX0FDVElPTlNfUEFORUxfREVGQVVMVF9DT05GSUcnLFxuICAgIHsgZmFjdG9yeTogKCkgPT4gbmV3IEticUFjdGlvbnNQYW5lbENvbmZpZygpIH1cbik7XG5cbi8qKlxuICogVXRpbGl0eSBmb3IgcHJvdmlkaW5nIGRlZmF1bHQgYWN0aW9ucyBwYW5lbCBjb25maWcuXG4gKlxuICogQHNlZSBgS0JRX0FDVElPTlNfUEFORUxfREVGQVVMVF9DT05GSUdgXG4gKi9cbmV4cG9ydCBjb25zdCBrYnFBY3Rpb25zUGFuZWxEZWZhdWx0Q29uZmlnUHJvdmlkZXIgPSA8RD4oY29uZmlnOiBLYnFBY3Rpb25zUGFuZWxDb25maWc8RD4pOiBQcm92aWRlciA9PiAoe1xuICAgIHByb3ZpZGU6IEtCUV9BQ1RJT05TX1BBTkVMX0RFRkFVTFRfQ09ORklHLFxuICAgIHVzZVZhbHVlOiBjb25maWdcbn0pO1xuXG4vKipcbiAqIENvbmZpZ3VyYXRpb24gZm9yIG9wZW5lZCBhY3Rpb25zIHBhbmVsLlxuICogQmFzZWQgb24gY2RrIGBEaWFsb2dDb25maWdgLlxuICpcbiAqIEBzZWUgYERpYWxvZ0NvbmZpZ2BcbiAqXG4gKi9cbmV4cG9ydCBjbGFzcyBLYnFBY3Rpb25zUGFuZWxDb25maWc8RCA9IHVua25vd24+IHtcbiAgICAvKipcbiAgICAgKiBJbmplY3RvciB1c2VkIGZvciB0aGUgaW5zdGFudGlhdGlvbiBvZiB0aGUgY29tcG9uZW50IHRvIGJlIGF0dGFjaGVkLlxuICAgICAqL1xuICAgIGluamVjdG9yPzogSW5qZWN0b3I7XG5cbiAgICAvKipcbiAgICAgKiBEYXRhIGJlaW5nIGluamVjdGVkIGludG8gdGhlIGNoaWxkIGNvbXBvbmVudC5cbiAgICAgKlxuICAgICAqIEBzZWUgYEtCUV9BQ1RJT05TX1BBTkVMX0RBVEFgXG4gICAgICovXG4gICAgZGF0YT86IEQgfCBudWxsID0gbnVsbDtcblxuICAgIC8qKiBFeHRyYSBDU1MgY2xhc3NlcyB0byBiZSBhZGRlZCB0byB0aGUgYWN0aW9ucyBwYW5lbCBjb250YWluZXIuICovXG4gICAgY29udGFpbmVyQ2xhc3M/OiBzdHJpbmcgfCBzdHJpbmdbXTtcblxuICAgIC8qKlxuICAgICAqIFdoZXRoZXIgdGhlIGFjdGlvbnMgcGFuZWwgc2hvdWxkIGJlIGNsb3NlZCBvZiB3aGVuIHRoZSB1c2VyIGdvZXMgYmFja3dhcmRzL2ZvcndhcmRzIGluIGhpc3RvcnkuXG4gICAgICogTk9URSEgVGhpcyBkb2VzIG5vdCBhcHBseSB0byByb3V0ZXIgbmF2aWdhdGlvbi5cbiAgICAgKlxuICAgICAqIEBkZWZhdWx0IHRydWVcbiAgICAgKi9cbiAgICBjbG9zZU9uTmF2aWdhdGlvbj86IGJvb2xlYW4gPSB0cnVlO1xuXG4gICAgLyoqXG4gICAgICogRWxlbWVudCBpbiB3aGljaCB0aGUgYWN0aW9ucyBwYW5lbCBvdmVybGF5IHdpbGwgYmUgY29ubmVjdGVkIHRvLlxuICAgICAqL1xuICAgIG92ZXJsYXlDb250YWluZXI/OiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PjtcblxuICAgIC8qKlxuICAgICAqIEV4dHJhIENTUyBjbGFzc2VzIHRvIGJlIGFkZGVkIHRvIHRoZSBvdmVybGF5IHBhbmVsLlxuICAgICAqL1xuICAgIG92ZXJsYXlQYW5lbENsYXNzPzogc3RyaW5nIHwgc3RyaW5nW107XG5cbiAgICAvKipcbiAgICAgKiBXaWR0aCBvZiB0aGUgYWN0aW9ucyBwYW5lbC5cbiAgICAgKi9cbiAgICB3aWR0aD86IHN0cmluZztcblxuICAgIC8qKlxuICAgICAqIE1pbi13aWR0aCBvZiB0aGUgYWN0aW9ucyBwYW5lbC5cbiAgICAgKiBJZiBhIG51bWJlciBpcyBwcm92aWRlZCwgYXNzdW1lcyBwaXhlbCB1bml0cy5cbiAgICAgKi9cbiAgICBtaW5XaWR0aD86IG51bWJlciB8IHN0cmluZztcblxuICAgIC8qKlxuICAgICAqIE1heC13aWR0aCBvZiB0aGUgYWN0aW9ucyBwYW5lbC5cbiAgICAgKiBJZiBhIG51bWJlciBpcyBwcm92aWRlZCwgYXNzdW1lcyBwaXhlbCB1bml0cy5cbiAgICAgKlxuICAgICAqIE5PVEU6IHRoaXMgcHJvcGVydHkgaXMgaWdub3JlZCBpZiB0aGUgYG92ZXJsYXlDb250YWluZXJgIHByb3BlcnR5IGlzIHByb3ZpZGVkLCBhbmQgd2lsbCBiZSBjYWxjdWxhdGVkIGJhc2VkIG9uXG4gICAgICogdGhlIHdpZHRoIG9mIHRoZSBgb3ZlcmxheUNvbnRhaW5lcmAuXG4gICAgICovXG4gICAgbWF4V2lkdGg/OiBudW1iZXIgfCBzdHJpbmc7XG5cbiAgICAvKipcbiAgICAgKiBEaXJlY3Rpb24gb2YgdGhlIHRleHQgaW4gdGhlIGFjdGlvbnMgcGFuZWwuXG4gICAgICpcbiAgICAgKiBAZGVmYXVsdCAnbHRyJ1xuICAgICAqL1xuICAgIGRpcmVjdGlvbj86IERpcmVjdGlvbiA9ICdsdHInO1xuXG4gICAgLyoqXG4gICAgICogU2Nyb2xsIHN0cmF0ZWd5IHRvIGJlIHVzZWQgZm9yIHRoZSBhY3Rpb25zIHBhbmVsLlxuICAgICAqXG4gICAgICogQGRlZmF1bHQgYFJlcG9zaXRpb25TY3JvbGxTdHJhdGVneWBcbiAgICAgKi9cbiAgICBzY3JvbGxTdHJhdGVneT86IChvdmVybGF5OiBPdmVybGF5KSA9PiBTY3JvbGxTdHJhdGVneSA9IChvdmVybGF5KSA9PiBvdmVybGF5LnNjcm9sbFN0cmF0ZWdpZXMucmVwb3NpdGlvbigpO1xuXG4gICAgLyoqXG4gICAgICogV2hldGhlciB0aGUgdXNlciBjYW4gdXNlIEVTQyBvciBjbGljayBvbiBjbG9zZSBidXR0b24gdG8gY2xvc2UgdGhlIGFjdGlvbnMgcGFuZWwuXG4gICAgICpcbiAgICAgKiBAZGVmYXVsdCBmYWxzZVxuICAgICAqL1xuICAgIGRpc2FibGVDbG9zZT86IGJvb2xlYW4gPSBmYWxzZTtcbn1cbiJdfQ==