@koobiq/components 16.0.0-beta.9 → 17.0.0-beta.2

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 (427) hide show
  1. package/autocomplete/_autocomplete-theme.scss +3 -10
  2. package/autocomplete/autocomplete-trigger.directive.d.ts +7 -1
  3. package/autocomplete/autocomplete.scss +0 -5
  4. package/badge/_badge-theme.scss +4 -0
  5. package/badge/badge.component.d.ts +1 -0
  6. package/button/_button-base.scss +1 -1
  7. package/button/_button-theme.scss +23 -38
  8. package/button-toggle/_button-toggle-theme.scss +4 -0
  9. package/checkbox/_checkbox-theme.scss +9 -6
  10. package/checkbox/checkbox.scss +6 -9
  11. package/code-block/_code-block-theme.scss +53 -16
  12. package/code-block/actionbar.component.scss +34 -6
  13. package/code-block/code-block.component.d.ts +5 -2
  14. package/code-block/code-block.scss +112 -28
  15. package/core/common-behaviors/index.d.ts +2 -0
  16. package/core/datetime/date-adapter.d.ts +1 -1
  17. package/core/datetime/date-formats.d.ts +1 -1
  18. package/core/formatters/date/formatter.d.ts +2 -2
  19. package/core/formatters/date/formatter.pipe.d.ts +1 -1
  20. package/core/locales/en-US.d.ts +25 -22
  21. package/core/locales/es-LA.d.ts +24 -27
  22. package/core/locales/fa-IR.d.ts +24 -28
  23. package/core/locales/formatters.d.ts +121 -0
  24. package/core/locales/index.d.ts +7 -2
  25. package/core/locales/locale-service.d.ts +146 -32
  26. package/core/locales/pt-BR.d.ts +24 -27
  27. package/core/locales/ru-RU.d.ts +25 -23
  28. package/core/locales/zh-CN.d.ts +25 -27
  29. package/core/option/_option-action-theme.scss +1 -1
  30. package/core/option/_option-theme.scss +5 -5
  31. package/core/option/action.scss +1 -1
  32. package/core/pop-up/pop-up.d.ts +7 -0
  33. package/core/selection/pseudo-checkbox/pseudo-checkbox.scss +4 -15
  34. package/core/styles/_koobiq-theme.scss +3 -1
  35. package/core/styles/_variables.scss +1 -10
  36. package/core/styles/common/_overlay.scss +4 -0
  37. package/core/styles/common/_select.scss +2 -1
  38. package/core/styles/theming/_components-theming.scss +99 -38
  39. package/core/styles/theming/{_scrollbars-theme.scss → _scrollbar-theme.scss} +25 -4
  40. package/core/styles/theming/_theming.scss +1 -0
  41. package/core/styles/typography/_typography.scss +8 -1
  42. package/core/utils/data-size/data-size.pipe.d.ts +1 -1
  43. package/dropdown/_dropdown-theme.scss +1 -2
  44. package/ellipsis-center/ellipsis-center.directive.d.ts +3 -3
  45. package/esm2022/alert/alert.component.mjs +12 -12
  46. package/esm2022/alert/alert.module.mjs +4 -4
  47. package/esm2022/autocomplete/autocomplete-origin.directive.mjs +4 -4
  48. package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +18 -6
  49. package/esm2022/autocomplete/autocomplete.component.mjs +8 -8
  50. package/esm2022/autocomplete/autocomplete.module.mjs +4 -4
  51. package/esm2022/badge/badge.component.mjs +13 -12
  52. package/esm2022/badge/badge.module.mjs +4 -4
  53. package/esm2022/button/button.component.mjs +16 -13
  54. package/esm2022/button/button.module.mjs +4 -4
  55. package/esm2022/button-toggle/button-toggle.component.mjs +12 -12
  56. package/esm2022/button-toggle/button-toggle.module.mjs +4 -4
  57. package/esm2022/card/card.component.mjs +5 -5
  58. package/esm2022/card/card.module.mjs +4 -4
  59. package/esm2022/checkbox/checkbox-module.mjs +4 -4
  60. package/esm2022/checkbox/checkbox-required-validator.mjs +3 -3
  61. package/esm2022/checkbox/checkbox.mjs +7 -7
  62. package/esm2022/code-block/actionbar.component.mjs +5 -5
  63. package/esm2022/code-block/code-block.component.mjs +32 -14
  64. package/esm2022/code-block/code-block.module.mjs +8 -8
  65. package/esm2022/core/common-behaviors/color.mjs +1 -1
  66. package/esm2022/core/common-behaviors/common-module.mjs +7 -7
  67. package/esm2022/core/common-behaviors/error-state.mjs +1 -1
  68. package/esm2022/core/common-behaviors/index.mjs +3 -1
  69. package/esm2022/core/datetime/date-adapter.mjs +2 -2
  70. package/esm2022/core/datetime/date-formats.mjs +1 -1
  71. package/esm2022/core/error/error-options.mjs +6 -6
  72. package/esm2022/core/formatters/date/formatter.mjs +9 -9
  73. package/esm2022/core/formatters/date/formatter.pipe.mjs +53 -53
  74. package/esm2022/core/formatters/index.mjs +7 -6
  75. package/esm2022/core/formatters/number/formatter.mjs +19 -19
  76. package/esm2022/core/forms/forms-module.mjs +4 -4
  77. package/esm2022/core/forms/forms.directive.mjs +8 -8
  78. package/esm2022/core/highlight/highlight.pipe.mjs +5 -5
  79. package/esm2022/core/highlight/index.mjs +4 -4
  80. package/esm2022/core/line/line.mjs +8 -8
  81. package/esm2022/core/locales/en-US.mjs +25 -22
  82. package/esm2022/core/locales/es-LA.mjs +24 -29
  83. package/esm2022/core/locales/fa-IR.mjs +24 -28
  84. package/esm2022/core/locales/formatters.mjs +126 -0
  85. package/esm2022/core/locales/index.mjs +8 -3
  86. package/esm2022/core/locales/locale-service.mjs +14 -13
  87. package/esm2022/core/locales/locale-service.module.mjs +4 -4
  88. package/esm2022/core/locales/pt-BR.mjs +24 -27
  89. package/esm2022/core/locales/ru-RU.mjs +25 -25
  90. package/esm2022/core/locales/zh-CN.mjs +25 -27
  91. package/esm2022/core/option/action.mjs +9 -8
  92. package/esm2022/core/option/optgroup.mjs +4 -4
  93. package/esm2022/core/option/option-module.mjs +4 -4
  94. package/esm2022/core/option/option.mjs +8 -8
  95. package/esm2022/core/overlay/overlay-position-map.mjs +1 -1
  96. package/esm2022/core/pop-up/pop-up-trigger.mjs +6 -6
  97. package/esm2022/core/pop-up/pop-up.mjs +12 -5
  98. package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.mjs +6 -6
  99. package/esm2022/core/selection/pseudo-checkbox/pseudo-checkbox.module.mjs +4 -4
  100. package/esm2022/core/services/measure-scrollbar.service.mjs +6 -6
  101. package/esm2022/core/services/theme.service.mjs +5 -5
  102. package/esm2022/core/utils/data-size/data-size.pipe.mjs +9 -9
  103. package/esm2022/core/utils/data-size/size.mjs +1 -1
  104. package/esm2022/core/version.mjs +2 -2
  105. package/esm2022/datepicker/calendar-body.component.mjs +4 -4
  106. package/esm2022/datepicker/calendar-header.component.mjs +5 -5
  107. package/esm2022/datepicker/calendar.component.mjs +6 -6
  108. package/esm2022/datepicker/datepicker-animations.mjs +1 -1
  109. package/esm2022/datepicker/datepicker-input.directive.mjs +6 -6
  110. package/esm2022/datepicker/datepicker-intl.mjs +3 -3
  111. package/esm2022/datepicker/datepicker-module.mjs +4 -4
  112. package/esm2022/datepicker/datepicker-toggle.component.mjs +8 -8
  113. package/esm2022/datepicker/datepicker.component.mjs +10 -10
  114. package/esm2022/datepicker/month-view.component.mjs +6 -6
  115. package/esm2022/divider/divider.component.mjs +3 -3
  116. package/esm2022/divider/divider.module.mjs +4 -4
  117. package/esm2022/dl/dl.component.mjs +11 -11
  118. package/esm2022/dl/dl.module.mjs +4 -4
  119. package/esm2022/dropdown/dropdown-content.directive.mjs +6 -6
  120. package/esm2022/dropdown/dropdown-item.component.mjs +9 -8
  121. package/esm2022/dropdown/dropdown-trigger.directive.mjs +6 -6
  122. package/esm2022/dropdown/dropdown.component.mjs +6 -6
  123. package/esm2022/dropdown/dropdown.module.mjs +4 -4
  124. package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +20 -20
  125. package/esm2022/file-upload/file-drop.mjs +43 -6
  126. package/esm2022/file-upload/file-upload.mjs +1 -1
  127. package/esm2022/file-upload/file-upload.module.mjs +4 -4
  128. package/esm2022/file-upload/multiple-file-upload.component.mjs +47 -26
  129. package/esm2022/file-upload/single-file-upload.component.mjs +39 -16
  130. package/esm2022/form-field/cleaner.mjs +3 -3
  131. package/esm2022/form-field/form-field.mjs +21 -15
  132. package/esm2022/form-field/form-field.module.mjs +4 -4
  133. package/esm2022/form-field/hint.mjs +20 -8
  134. package/esm2022/form-field/password-hint.mjs +24 -21
  135. package/esm2022/form-field/password-toggle.mjs +6 -6
  136. package/esm2022/form-field/prefix.mjs +3 -3
  137. package/esm2022/form-field/stepper.mjs +4 -4
  138. package/esm2022/form-field/suffix.mjs +3 -3
  139. package/esm2022/form-field/validate.directive.mjs +17 -12
  140. package/esm2022/icon/icon-button.component.mjs +7 -6
  141. package/esm2022/icon/icon-item.component.mjs +7 -6
  142. package/esm2022/icon/icon.component.mjs +18 -6
  143. package/esm2022/icon/icon.module.mjs +4 -4
  144. package/esm2022/input/input-number-validators.mjs +7 -7
  145. package/esm2022/input/input-number.mjs +12 -9
  146. package/esm2022/input/input-password.mjs +6 -6
  147. package/esm2022/input/input.mjs +9 -9
  148. package/esm2022/input/input.module.mjs +4 -4
  149. package/esm2022/link/link.component.mjs +5 -5
  150. package/esm2022/link/link.module.mjs +4 -4
  151. package/esm2022/list/list-selection.component.mjs +16 -16
  152. package/esm2022/list/list.component.mjs +9 -9
  153. package/esm2022/list/list.module.mjs +4 -4
  154. package/esm2022/loader-overlay/loader-overlay.component.mjs +15 -15
  155. package/esm2022/loader-overlay/loader-overlay.module.mjs +4 -4
  156. package/esm2022/markdown/markdown.component.mjs +5 -5
  157. package/esm2022/markdown/markdown.module.mjs +4 -4
  158. package/esm2022/markdown/markdown.service.mjs +3 -3
  159. package/esm2022/modal/css-unit.pipe.mjs +3 -3
  160. package/esm2022/modal/modal-control.service.mjs +6 -6
  161. package/esm2022/modal/modal.component.mjs +22 -16
  162. package/esm2022/modal/modal.directive.mjs +12 -12
  163. package/esm2022/modal/modal.module.mjs +4 -4
  164. package/esm2022/modal/modal.service.mjs +5 -5
  165. package/esm2022/modal/modal.type.mjs +1 -1
  166. package/esm2022/navbar/navbar-item.component.mjs +69 -104
  167. package/esm2022/navbar/navbar.component.mjs +28 -17
  168. package/esm2022/navbar/navbar.module.mjs +6 -10
  169. package/esm2022/navbar/vertical-navbar.component.mjs +9 -13
  170. package/esm2022/popover/popover-confirm.component.mjs +11 -13
  171. package/esm2022/popover/popover.component.mjs +16 -11
  172. package/esm2022/popover/popover.module.mjs +4 -4
  173. package/esm2022/progress-bar/progress-bar.component.mjs +11 -11
  174. package/esm2022/progress-bar/progress-bar.module.mjs +4 -4
  175. package/esm2022/progress-spinner/progress-spinner.component.mjs +12 -12
  176. package/esm2022/progress-spinner/progress-spinner.module.mjs +4 -4
  177. package/esm2022/radio/radio.component.mjs +10 -10
  178. package/esm2022/radio/radio.module.mjs +4 -4
  179. package/esm2022/risk-level/risk-level.component.mjs +3 -3
  180. package/esm2022/risk-level/risk-level.module.mjs +4 -4
  181. package/esm2022/scrollbar/index.mjs +2 -0
  182. package/esm2022/scrollbar/koobiq-components-scrollbar.mjs +5 -0
  183. package/esm2022/scrollbar/public-api.mjs +5 -0
  184. package/esm2022/scrollbar/scrollbar.component.mjs +130 -0
  185. package/esm2022/scrollbar/scrollbar.directive.mjs +97 -0
  186. package/esm2022/scrollbar/scrollbar.module.mjs +20 -0
  187. package/esm2022/scrollbar/scrollbar.types.mjs +13 -0
  188. package/esm2022/select/select-option.directive.mjs +6 -6
  189. package/esm2022/select/select.component.mjs +43 -36
  190. package/esm2022/select/select.module.mjs +4 -4
  191. package/esm2022/sidebar/sidebar.component.mjs +11 -11
  192. package/esm2022/sidebar/sidebar.module.mjs +4 -4
  193. package/esm2022/sidepanel/sidepanel-animations.mjs +5 -5
  194. package/esm2022/sidepanel/sidepanel-container.component.mjs +11 -11
  195. package/esm2022/sidepanel/sidepanel-directives.mjs +26 -26
  196. package/esm2022/sidepanel/sidepanel-ref.mjs +1 -1
  197. package/esm2022/sidepanel/sidepanel.module.mjs +4 -4
  198. package/esm2022/sidepanel/sidepanel.service.mjs +6 -6
  199. package/esm2022/splitter/splitter.component.mjs +17 -17
  200. package/esm2022/splitter/splitter.module.mjs +4 -4
  201. package/esm2022/table/table.component.mjs +3 -3
  202. package/esm2022/table/table.module.mjs +4 -4
  203. package/esm2022/tabs/paginated-tab-header.mjs +6 -6
  204. package/esm2022/tabs/tab-body.component.mjs +12 -12
  205. package/esm2022/tabs/tab-content.directive.mjs +4 -4
  206. package/esm2022/tabs/tab-group.component.mjs +21 -21
  207. package/esm2022/tabs/tab-header.component.mjs +7 -7
  208. package/esm2022/tabs/tab-label-wrapper.directive.mjs +6 -5
  209. package/esm2022/tabs/tab-label.directive.mjs +3 -3
  210. package/esm2022/tabs/tab-nav-bar/tab-nav-bar.mjs +12 -11
  211. package/esm2022/tabs/tab.component.mjs +5 -5
  212. package/esm2022/tabs/tabs.module.mjs +4 -4
  213. package/esm2022/tags/tag-input.mjs +31 -11
  214. package/esm2022/tags/tag-list.component.mjs +9 -8
  215. package/esm2022/tags/tag.component.mjs +16 -16
  216. package/esm2022/tags/tag.module.mjs +4 -4
  217. package/esm2022/textarea/textarea.component.mjs +36 -25
  218. package/esm2022/textarea/textarea.module.mjs +4 -4
  219. package/esm2022/timepicker/timepicker.directive.mjs +6 -6
  220. package/esm2022/timepicker/timepicker.module.mjs +4 -4
  221. package/esm2022/timezone/cities-by-filter.pipe.mjs +3 -3
  222. package/esm2022/timezone/timezone-option.component.mjs +10 -9
  223. package/esm2022/timezone/timezone-option.directive.mjs +5 -5
  224. package/esm2022/timezone/timezone-select.component.mjs +9 -9
  225. package/esm2022/timezone/timezone.module.mjs +4 -4
  226. package/esm2022/timezone/timezone.utils.mjs +9 -4
  227. package/esm2022/timezone/utc-offset.pipe.mjs +6 -6
  228. package/esm2022/title/title.directive.mjs +6 -6
  229. package/esm2022/title/title.module.mjs +4 -4
  230. package/esm2022/toast/toast-animations.mjs +3 -3
  231. package/esm2022/toast/toast-container.component.mjs +7 -7
  232. package/esm2022/toast/toast.component.mjs +12 -11
  233. package/esm2022/toast/toast.module.mjs +4 -4
  234. package/esm2022/toast/toast.service.mjs +16 -8
  235. package/esm2022/toast/toast.type.mjs +1 -1
  236. package/esm2022/toggle/toggle.component.mjs +5 -5
  237. package/esm2022/toggle/toggle.module.mjs +4 -4
  238. package/esm2022/tooltip/tooltip.component.mjs +24 -24
  239. package/esm2022/tooltip/tooltip.module.mjs +4 -4
  240. package/esm2022/tree/control/base-tree-control.mjs +4 -4
  241. package/esm2022/tree/control/flat-tree-control.filters.mjs +47 -0
  242. package/esm2022/tree/control/flat-tree-control.mjs +27 -45
  243. package/esm2022/tree/control/nested-tree-control.mjs +1 -1
  244. package/esm2022/tree/control/tree-control.mjs +1 -1
  245. package/esm2022/tree/data-source/flat-data-source.mjs +1 -1
  246. package/esm2022/tree/node.mjs +5 -5
  247. package/esm2022/tree/outlet.mjs +4 -4
  248. package/esm2022/tree/padding.directive.mjs +6 -6
  249. package/esm2022/tree/public-api.mjs +2 -1
  250. package/esm2022/tree/toggle.mjs +12 -12
  251. package/esm2022/tree/tree-base.mjs +10 -10
  252. package/esm2022/tree/tree-option.component.mjs +12 -8
  253. package/esm2022/tree/tree-selection.component.mjs +6 -6
  254. package/esm2022/tree/tree.mjs +3 -3
  255. package/esm2022/tree/tree.module.mjs +4 -4
  256. package/esm2022/tree-select/tree-select.component.mjs +29 -19
  257. package/esm2022/tree-select/tree-select.module.mjs +9 -9
  258. package/fesm2022/koobiq-components-alert.mjs +16 -16
  259. package/fesm2022/koobiq-components-autocomplete.mjs +32 -20
  260. package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
  261. package/fesm2022/koobiq-components-badge.mjs +16 -15
  262. package/fesm2022/koobiq-components-badge.mjs.map +1 -1
  263. package/fesm2022/koobiq-components-button-toggle.mjs +15 -15
  264. package/fesm2022/koobiq-components-button-toggle.mjs.map +1 -1
  265. package/fesm2022/koobiq-components-button.mjs +19 -16
  266. package/fesm2022/koobiq-components-button.mjs.map +1 -1
  267. package/fesm2022/koobiq-components-card.mjs +8 -8
  268. package/fesm2022/koobiq-components-card.mjs.map +1 -1
  269. package/fesm2022/koobiq-components-checkbox.mjs +13 -13
  270. package/fesm2022/koobiq-components-checkbox.mjs.map +1 -1
  271. package/fesm2022/koobiq-components-code-block.mjs +40 -23
  272. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  273. package/fesm2022/koobiq-components-core.mjs +473 -350
  274. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  275. package/fesm2022/koobiq-components-datepicker.mjs +45 -45
  276. package/fesm2022/koobiq-components-datepicker.mjs.map +1 -1
  277. package/fesm2022/koobiq-components-divider.mjs +7 -7
  278. package/fesm2022/koobiq-components-dl.mjs +14 -14
  279. package/fesm2022/koobiq-components-dl.mjs.map +1 -1
  280. package/fesm2022/koobiq-components-dropdown.mjs +27 -26
  281. package/fesm2022/koobiq-components-dropdown.mjs.map +1 -1
  282. package/fesm2022/koobiq-components-ellipsis-center.mjs +19 -19
  283. package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
  284. package/fesm2022/koobiq-components-file-upload.mjs +128 -50
  285. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  286. package/fesm2022/koobiq-components-form-field.mjs +97 -72
  287. package/fesm2022/koobiq-components-form-field.mjs.map +1 -1
  288. package/fesm2022/koobiq-components-icon.mjs +33 -19
  289. package/fesm2022/koobiq-components-icon.mjs.map +1 -1
  290. package/fesm2022/koobiq-components-input.mjs +34 -31
  291. package/fesm2022/koobiq-components-input.mjs.map +1 -1
  292. package/fesm2022/koobiq-components-link.mjs +8 -8
  293. package/fesm2022/koobiq-components-link.mjs.map +1 -1
  294. package/fesm2022/koobiq-components-list.mjs +27 -27
  295. package/fesm2022/koobiq-components-list.mjs.map +1 -1
  296. package/fesm2022/koobiq-components-loader-overlay.mjs +18 -18
  297. package/fesm2022/koobiq-components-loader-overlay.mjs.map +1 -1
  298. package/fesm2022/koobiq-components-markdown.mjs +11 -11
  299. package/fesm2022/koobiq-components-markdown.mjs.map +1 -1
  300. package/fesm2022/koobiq-components-modal.mjs +49 -43
  301. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  302. package/fesm2022/koobiq-components-navbar.mjs +108 -149
  303. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  304. package/fesm2022/koobiq-components-popover.mjs +30 -26
  305. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  306. package/fesm2022/koobiq-components-progress-bar.mjs +14 -14
  307. package/fesm2022/koobiq-components-progress-bar.mjs.map +1 -1
  308. package/fesm2022/koobiq-components-progress-spinner.mjs +15 -15
  309. package/fesm2022/koobiq-components-progress-spinner.mjs.map +1 -1
  310. package/fesm2022/koobiq-components-radio.mjs +13 -13
  311. package/fesm2022/koobiq-components-radio.mjs.map +1 -1
  312. package/fesm2022/koobiq-components-risk-level.mjs +7 -7
  313. package/fesm2022/koobiq-components-scrollbar.mjs +256 -0
  314. package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -0
  315. package/fesm2022/koobiq-components-select.mjs +49 -42
  316. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  317. package/fesm2022/koobiq-components-sidebar.mjs +14 -14
  318. package/fesm2022/koobiq-components-sidebar.mjs.map +1 -1
  319. package/fesm2022/koobiq-components-sidepanel.mjs +47 -47
  320. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  321. package/fesm2022/koobiq-components-splitter.mjs +20 -20
  322. package/fesm2022/koobiq-components-splitter.mjs.map +1 -1
  323. package/fesm2022/koobiq-components-table.mjs +7 -7
  324. package/fesm2022/koobiq-components-tabs.mjs +72 -70
  325. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  326. package/fesm2022/koobiq-components-tags.mjs +56 -36
  327. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  328. package/fesm2022/koobiq-components-textarea.mjs +39 -28
  329. package/fesm2022/koobiq-components-textarea.mjs.map +1 -1
  330. package/fesm2022/koobiq-components-timepicker.mjs +9 -9
  331. package/fesm2022/koobiq-components-timepicker.mjs.map +1 -1
  332. package/fesm2022/koobiq-components-timezone.mjs +42 -37
  333. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  334. package/fesm2022/koobiq-components-title.mjs +9 -9
  335. package/fesm2022/koobiq-components-title.mjs.map +1 -1
  336. package/fesm2022/koobiq-components-toast.mjs +36 -27
  337. package/fesm2022/koobiq-components-toast.mjs.map +1 -1
  338. package/fesm2022/koobiq-components-toggle.mjs +8 -8
  339. package/fesm2022/koobiq-components-toggle.mjs.map +1 -1
  340. package/fesm2022/koobiq-components-tooltip.mjs +27 -27
  341. package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
  342. package/fesm2022/koobiq-components-tree-select.mjs +36 -26
  343. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  344. package/fesm2022/koobiq-components-tree.mjs +132 -100
  345. package/fesm2022/koobiq-components-tree.mjs.map +1 -1
  346. package/file-upload/_file-upload-theme.scss +10 -1
  347. package/file-upload/file-drop.d.ts +2 -1
  348. package/file-upload/file-upload.d.ts +4 -1
  349. package/file-upload/multiple-file-upload.component.d.ts +14 -6
  350. package/file-upload/single-file-upload.component.d.ts +12 -6
  351. package/form-field/_form-field-theme.scss +8 -14
  352. package/form-field/form-field.d.ts +2 -0
  353. package/form-field/form-field.scss +12 -1
  354. package/form-field/hint.scss +1 -1
  355. package/form-field/password-hint.d.ts +7 -5
  356. package/icon/icon-button.component.d.ts +1 -0
  357. package/icon/icon-item.component.d.ts +1 -0
  358. package/icon/icon.component.d.ts +3 -0
  359. package/input/input-number.d.ts +3 -2
  360. package/link/_link-theme.scss +1 -0
  361. package/list/_list-theme.scss +1 -2
  362. package/list/list.scss +3 -3
  363. package/loader-overlay/loader-overlay.scss +2 -2
  364. package/modal/_modal-confirm.scss +0 -24
  365. package/modal/modal.component.d.ts +4 -2
  366. package/modal/modal.scss +32 -20
  367. package/modal/modal.type.d.ts +0 -1
  368. package/navbar/_navbar-item_horizontal.scss +97 -0
  369. package/navbar/_navbar-item_vertical.scss +98 -0
  370. package/navbar/_navbar-theme.scss +58 -60
  371. package/navbar/navbar-brand.scss +76 -16
  372. package/navbar/navbar-divider.scss +13 -4
  373. package/navbar/navbar-item.component.d.ts +6 -17
  374. package/navbar/navbar-item.scss +41 -87
  375. package/navbar/navbar.component.d.ts +3 -0
  376. package/navbar/navbar.module.d.ts +1 -1
  377. package/navbar/navbar.scss +13 -1
  378. package/navbar/vertical-navbar.scss +7 -14
  379. package/package.json +28 -20
  380. package/popover/popover-confirm.component.d.ts +0 -2
  381. package/popover/popover.component.d.ts +6 -1
  382. package/popover/popover.scss +4 -9
  383. package/prebuilt-themes/dark-theme.css +1 -1
  384. package/prebuilt-themes/light-theme.css +1 -1
  385. package/progress-spinner/progress-spinner.scss +10 -5
  386. package/scrollbar/_scrollbar-component-theme.scss +52 -0
  387. package/scrollbar/index.d.ts +1 -0
  388. package/scrollbar/public-api.d.ts +4 -0
  389. package/scrollbar/scrollbar.component.d.ts +33 -0
  390. package/scrollbar/scrollbar.component.scss +559 -0
  391. package/scrollbar/scrollbar.directive.d.ts +47 -0
  392. package/scrollbar/scrollbar.module.d.ts +8 -0
  393. package/scrollbar/scrollbar.types.d.ts +32 -0
  394. package/select/select.component.d.ts +4 -3
  395. package/select/select.scss +7 -0
  396. package/sidepanel/sidepanel-animations.d.ts +2 -2
  397. package/sidepanel/sidepanel-directives.d.ts +5 -5
  398. package/splitter/_splitter-theme.scss +5 -4
  399. package/tabs/_tabs-common.scss +1 -1
  400. package/tabs/_tabs-theme.scss +2 -2
  401. package/tags/tag-input.d.ts +9 -4
  402. package/tags/tag-list.scss +4 -0
  403. package/textarea/textarea.component.d.ts +4 -3
  404. package/timezone/_timezone-option-theme.scss +8 -0
  405. package/timezone/timezone-option.component.scss +4 -0
  406. package/timezone/timezone-select.component.scss +13 -0
  407. package/timezone/timezone.utils.d.ts +4 -0
  408. package/timezone/utc-offset.pipe.d.ts +3 -1
  409. package/toast/toast-animations.d.ts +1 -1
  410. package/toast/toast-container.component.scss +1 -9
  411. package/toast/toast.component.scss +0 -4
  412. package/toast/toast.service.d.ts +5 -3
  413. package/toast/toast.type.d.ts +1 -0
  414. package/tooltip/tooltip.component.d.ts +1 -1
  415. package/tooltip/tooltip.scss +0 -3
  416. package/tree/_tree-theme.scss +5 -5
  417. package/tree/control/base-tree-control.d.ts +1 -1
  418. package/tree/control/flat-tree-control.d.ts +5 -3
  419. package/tree/control/flat-tree-control.filters.d.ts +26 -0
  420. package/tree/control/tree-control.d.ts +1 -1
  421. package/tree/public-api.d.ts +1 -0
  422. package/tree/tree-option.scss +4 -4
  423. package/tree-select/tree-select.component.d.ts +8 -4
  424. package/tree-select/tree-select.module.d.ts +1 -1
  425. package/esm2022/navbar/vertical-navbar.animation.mjs +0 -10
  426. package/form-field/password-hint.scss +0 -11
  427. package/navbar/vertical-navbar.animation.d.ts +0 -2
@@ -1,5 +1,7 @@
1
+ import { InjectionToken } from '@angular/core';
1
2
  export { KbqCommonModule, KBQ_SANITY_CHECKS } from './common-module';
2
3
  export { CanDisable, CanDisableCtor, mixinDisabled } from './disabled';
3
4
  export { CanColor, CanColorCtor, mixinColor, ThemePalette, KbqComponentColors } from './color';
4
5
  export { HasTabIndex, HasTabIndexCtor, mixinTabIndex } from './tabindex';
5
6
  export { CanUpdateErrorStateCtor, CanUpdateErrorState, mixinErrorState } from './error-state';
7
+ export declare const KBQ_PARENT_ANIMATION_COMPONENT: InjectionToken<any>;
@@ -1,5 +1,5 @@
1
1
  import { InjectionToken } from '@angular/core';
2
- import { DateAdapter as BaseDateAdapter } from '@mosaic-design/date-adapter';
2
+ import { DateAdapter as BaseDateAdapter } from '@koobiq/date-adapter';
3
3
  import { BehaviorSubject, Observable } from 'rxjs';
4
4
  /** InjectionToken for datepicker that can be used to override default locale code. */
5
5
  export declare const KBQ_DATE_LOCALE: InjectionToken<string>;
@@ -1,4 +1,4 @@
1
1
  import { InjectionToken } from '@angular/core';
2
- import { DateFormats } from '@mosaic-design/date-adapter';
2
+ import { DateFormats } from '@koobiq/date-adapter';
3
3
  export declare const KBQ_DATE_FORMATS: InjectionToken<DateFormats>;
4
4
  export type KbqDateFormats = DateFormats;
@@ -1,5 +1,5 @@
1
- import { DateAdapter } from '@mosaic-design/date-adapter';
2
- import { DateFormatter as BaseDateFormatter } from '@mosaic-design/date-formatter';
1
+ import { DateAdapter } from '@koobiq/date-adapter';
2
+ import { DateFormatter as BaseDateFormatter } from '@koobiq/date-formatter';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class DateFormatter<D> extends BaseDateFormatter<D> {
5
5
  readonly adapter: DateAdapter<D>;
@@ -1,5 +1,5 @@
1
1
  import { PipeTransform } from '@angular/core';
2
- import { DateTimeOptions } from '@mosaic-design/date-formatter';
2
+ import { DateTimeOptions } from '@koobiq/date-formatter';
3
3
  import { DateAdapter } from '../../datetime';
4
4
  import { DateFormatter } from './formatter';
5
5
  import * as i0 from "@angular/core";
@@ -1,28 +1,31 @@
1
1
  export declare const enUSLocaleData: {
2
- 'en-US': {
3
- select: {
4
- hiddenItemsText: string;
5
- };
6
- datepicker: {
7
- placeholder: string;
8
- dateInput: string;
2
+ select: {
3
+ hiddenItemsText: string;
4
+ };
5
+ datepicker: {
6
+ placeholder: string;
7
+ dateInput: string;
8
+ };
9
+ timepicker: {
10
+ placeholder: {
11
+ full: string;
12
+ short: string;
9
13
  };
10
- formatters: {
11
- number: {
12
- rounding: {
13
- separator: string;
14
- groupSeparator: string;
15
- thousand: string;
16
- million: string;
17
- billion: string;
18
- trillion: string;
19
- };
20
- };
14
+ };
15
+ fileUpload: {
16
+ single: {
17
+ captionText: string;
18
+ browseLink: string;
21
19
  };
22
- input: {
23
- number: {
24
- groupSeparator: string[];
25
- fractionSeparator: string;
20
+ multiple: {
21
+ captionText: string;
22
+ captionTextWhenSelected: string;
23
+ captionTextForCompactSize: string;
24
+ browseLink: string;
25
+ title: string;
26
+ gridHeaders: {
27
+ file: string;
28
+ size: string;
26
29
  };
27
30
  };
28
31
  };
@@ -1,33 +1,30 @@
1
1
  export declare const esLALocaleData: {
2
- 'es-LA': {
3
- select: {
4
- hiddenItemsText: string;
5
- };
6
- datepicker: {
7
- placeholder: string;
8
- };
9
- timepicker: {
10
- placeholder: {
11
- full: string;
12
- short: string;
13
- };
2
+ select: {
3
+ hiddenItemsText: string;
4
+ };
5
+ datepicker: {
6
+ placeholder: string;
7
+ };
8
+ timepicker: {
9
+ placeholder: {
10
+ full: string;
11
+ short: string;
14
12
  };
15
- formatters: {
16
- number: {
17
- rounding: {
18
- separator: string;
19
- groupSeparator: string;
20
- thousand: string;
21
- million: string;
22
- billion: string;
23
- trillion: string;
24
- };
25
- };
13
+ };
14
+ fileUpload: {
15
+ single: {
16
+ captionText: string;
17
+ browseLink: string;
26
18
  };
27
- input: {
28
- number: {
29
- groupSeparator: string[];
30
- fractionSeparator: string;
19
+ multiple: {
20
+ captionText: string;
21
+ captionTextWhenSelected: string;
22
+ captionTextForCompactSize: string;
23
+ browseLink: string;
24
+ title: string;
25
+ gridHeaders: {
26
+ file: string;
27
+ size: string;
31
28
  };
32
29
  };
33
30
  };
@@ -1,34 +1,30 @@
1
1
  export declare const faIRLocaleData: {
2
- 'fa-IR': {
3
- select: {
4
- hiddenItemsText: string;
5
- };
6
- datepicker: {
7
- placeholder: string;
8
- };
9
- timepicker: {
10
- placeholder: {
11
- full: string;
12
- short: string;
13
- };
2
+ select: {
3
+ hiddenItemsText: string;
4
+ };
5
+ datepicker: {
6
+ placeholder: string;
7
+ };
8
+ timepicker: {
9
+ placeholder: {
10
+ full: string;
11
+ short: string;
14
12
  };
15
- formatters: {
16
- number: {
17
- rounding: {
18
- separator: string;
19
- groupSeparator: string;
20
- thousand: string;
21
- million: string;
22
- billion: string;
23
- trillion: string;
24
- rtl: boolean;
25
- };
26
- };
13
+ };
14
+ fileUpload: {
15
+ single: {
16
+ captionText: string;
17
+ browseLink: string;
27
18
  };
28
- input: {
29
- number: {
30
- groupSeparator: string[];
31
- fractionSeparator: string;
19
+ multiple: {
20
+ captionText: string;
21
+ captionTextWhenSelected: string;
22
+ captionTextForCompactSize: string;
23
+ browseLink: string;
24
+ title: string;
25
+ gridHeaders: {
26
+ file: string;
27
+ size: string;
32
28
  };
33
29
  };
34
30
  };
@@ -0,0 +1,121 @@
1
+ export declare const enUSFormattersData: {
2
+ formatters: {
3
+ number: {
4
+ rounding: {
5
+ separator: string;
6
+ groupSeparator: string;
7
+ thousand: string;
8
+ million: string;
9
+ billion: string;
10
+ trillion: string;
11
+ };
12
+ };
13
+ };
14
+ input: {
15
+ number: {
16
+ groupSeparator: string[];
17
+ fractionSeparator: string;
18
+ };
19
+ };
20
+ };
21
+ export declare const esLAFormattersData: {
22
+ formatters: {
23
+ number: {
24
+ rounding: {
25
+ separator: string;
26
+ groupSeparator: string;
27
+ thousand: string;
28
+ million: string;
29
+ billion: string;
30
+ trillion: string;
31
+ };
32
+ };
33
+ };
34
+ input: {
35
+ number: {
36
+ groupSeparator: string[];
37
+ fractionSeparator: string;
38
+ };
39
+ };
40
+ };
41
+ export declare const faIRFormattersData: {
42
+ formatters: {
43
+ number: {
44
+ rounding: {
45
+ separator: string;
46
+ groupSeparator: string;
47
+ thousand: string;
48
+ million: string;
49
+ billion: string;
50
+ trillion: string;
51
+ rtl: boolean;
52
+ };
53
+ };
54
+ };
55
+ input: {
56
+ number: {
57
+ groupSeparator: string[];
58
+ fractionSeparator: string;
59
+ };
60
+ };
61
+ };
62
+ export declare const ptBRFormattersData: {
63
+ formatters: {
64
+ number: {
65
+ rounding: {
66
+ separator: string;
67
+ groupSeparator: string;
68
+ thousand: string;
69
+ million: string;
70
+ billion: string;
71
+ trillion: string;
72
+ };
73
+ };
74
+ };
75
+ input: {
76
+ number: {
77
+ groupSeparator: string[];
78
+ fractionSeparator: string;
79
+ };
80
+ };
81
+ };
82
+ export declare const ruRUFormattersData: {
83
+ formatters: {
84
+ number: {
85
+ rounding: {
86
+ separator: string;
87
+ groupSeparator: string;
88
+ thousand: string;
89
+ million: string;
90
+ billion: string;
91
+ trillion: string;
92
+ };
93
+ };
94
+ };
95
+ input: {
96
+ number: {
97
+ groupSeparator: string[];
98
+ fractionSeparator: string;
99
+ startFormattingFrom: number;
100
+ };
101
+ };
102
+ };
103
+ export declare const zhCNFormattersData: {
104
+ formatters: {
105
+ number: {
106
+ rounding: {
107
+ separator: string;
108
+ groupSeparator: string;
109
+ tenThousand: string;
110
+ oneHundredMillions: string;
111
+ trillion: string;
112
+ };
113
+ };
114
+ };
115
+ input: {
116
+ number: {
117
+ groupSeparator: string[];
118
+ fractionSeparator: string;
119
+ };
120
+ };
121
+ };
@@ -1,4 +1,9 @@
1
- import { InjectionToken } from '@angular/core';
1
+ export * from './en-US';
2
+ export * from './es-LA';
3
+ export * from './fa-IR';
4
+ export * from './pt-BR';
5
+ export * from './ru-RU';
6
+ export * from './zh-CN';
2
7
  export * from './locale-service';
3
8
  export * from './locale-service.module';
4
- export declare const KBQ_LOCALE_ID: InjectionToken<string>;
9
+ export * from './formatters';
@@ -4,12 +4,35 @@ import * as i0 from "@angular/core";
4
4
  export declare const KBQ_LOCALE_ID: InjectionToken<string>;
5
5
  export declare const KBQ_DEFAULT_LOCALE_ID = "ru-RU";
6
6
  export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
7
- 'zh-CN': {
7
+ items: {
8
+ id: string;
9
+ name: string;
10
+ }[];
11
+ 'en-US': {
12
+ formatters: {
13
+ number: {
14
+ rounding: {
15
+ separator: string;
16
+ groupSeparator: string;
17
+ thousand: string;
18
+ million: string;
19
+ billion: string;
20
+ trillion: string;
21
+ };
22
+ };
23
+ };
24
+ input: {
25
+ number: {
26
+ groupSeparator: string[];
27
+ fractionSeparator: string;
28
+ };
29
+ };
8
30
  select: {
9
31
  hiddenItemsText: string;
10
32
  };
11
33
  datepicker: {
12
34
  placeholder: string;
35
+ dateInput: string;
13
36
  };
14
37
  timepicker: {
15
38
  placeholder: {
@@ -17,6 +40,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
17
40
  short: string;
18
41
  };
19
42
  };
43
+ fileUpload: {
44
+ single: {
45
+ captionText: string;
46
+ browseLink: string;
47
+ };
48
+ multiple: {
49
+ captionText: string;
50
+ captionTextWhenSelected: string;
51
+ captionTextForCompactSize: string;
52
+ browseLink: string;
53
+ title: string;
54
+ gridHeaders: {
55
+ file: string;
56
+ size: string;
57
+ };
58
+ };
59
+ };
60
+ };
61
+ 'zh-CN': {
20
62
  formatters: {
21
63
  number: {
22
64
  rounding: {
@@ -34,8 +76,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
34
76
  fractionSeparator: string;
35
77
  };
36
78
  };
37
- };
38
- 'pt-BR': {
39
79
  select: {
40
80
  hiddenItemsText: string;
41
81
  };
@@ -48,6 +88,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
48
88
  short: string;
49
89
  };
50
90
  };
91
+ fileUpload: {
92
+ single: {
93
+ captionText: string;
94
+ browseLink: string;
95
+ };
96
+ multiple: {
97
+ captionText: string;
98
+ captionTextWhenSelected: string;
99
+ captionTextForCompactSize: string;
100
+ browseLink: string;
101
+ title: string;
102
+ gridHeaders: {
103
+ file: string;
104
+ size: string;
105
+ };
106
+ };
107
+ };
108
+ };
109
+ 'es-LA': {
51
110
  formatters: {
52
111
  number: {
53
112
  rounding: {
@@ -66,8 +125,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
66
125
  fractionSeparator: string;
67
126
  };
68
127
  };
69
- };
70
- 'fa-IR': {
71
128
  select: {
72
129
  hiddenItemsText: string;
73
130
  };
@@ -80,6 +137,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
80
137
  short: string;
81
138
  };
82
139
  };
140
+ fileUpload: {
141
+ single: {
142
+ captionText: string;
143
+ browseLink: string;
144
+ };
145
+ multiple: {
146
+ captionText: string;
147
+ captionTextWhenSelected: string;
148
+ captionTextForCompactSize: string;
149
+ browseLink: string;
150
+ title: string;
151
+ gridHeaders: {
152
+ file: string;
153
+ size: string;
154
+ };
155
+ };
156
+ };
157
+ };
158
+ 'pt-BR': {
83
159
  formatters: {
84
160
  number: {
85
161
  rounding: {
@@ -89,7 +165,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
89
165
  million: string;
90
166
  billion: string;
91
167
  trillion: string;
92
- rtl: boolean;
93
168
  };
94
169
  };
95
170
  };
@@ -99,8 +174,6 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
99
174
  fractionSeparator: string;
100
175
  };
101
176
  };
102
- };
103
- 'es-LA': {
104
177
  select: {
105
178
  hiddenItemsText: string;
106
179
  };
@@ -113,6 +186,25 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
113
186
  short: string;
114
187
  };
115
188
  };
189
+ fileUpload: {
190
+ single: {
191
+ captionText: string;
192
+ browseLink: string;
193
+ };
194
+ multiple: {
195
+ captionText: string;
196
+ captionTextWhenSelected: string;
197
+ captionTextForCompactSize: string;
198
+ browseLink: string;
199
+ title: string;
200
+ gridHeaders: {
201
+ file: string;
202
+ size: string;
203
+ };
204
+ };
205
+ };
206
+ };
207
+ 'ru-RU': {
116
208
  formatters: {
117
209
  number: {
118
210
  rounding: {
@@ -129,10 +221,9 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
129
221
  number: {
130
222
  groupSeparator: string[];
131
223
  fractionSeparator: string;
224
+ startFormattingFrom: number;
132
225
  };
133
226
  };
134
- };
135
- 'en-US': {
136
227
  select: {
137
228
  hiddenItemsText: string;
138
229
  };
@@ -140,6 +231,31 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
140
231
  placeholder: string;
141
232
  dateInput: string;
142
233
  };
234
+ timepicker: {
235
+ placeholder: {
236
+ full: string;
237
+ short: string;
238
+ };
239
+ };
240
+ fileUpload: {
241
+ single: {
242
+ captionText: string;
243
+ browseLink: string;
244
+ };
245
+ multiple: {
246
+ captionText: string;
247
+ captionTextWhenSelected: string;
248
+ captionTextForCompactSize: string;
249
+ browseLink: string;
250
+ title: string;
251
+ gridHeaders: {
252
+ file: string;
253
+ size: string;
254
+ };
255
+ };
256
+ };
257
+ };
258
+ 'fa-IR': {
143
259
  formatters: {
144
260
  number: {
145
261
  rounding: {
@@ -149,6 +265,7 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
149
265
  million: string;
150
266
  billion: string;
151
267
  trillion: string;
268
+ rtl: boolean;
152
269
  };
153
270
  };
154
271
  };
@@ -158,39 +275,36 @@ export declare function KBQ_DEFAULT_LOCALE_DATA_FACTORY(): {
158
275
  fractionSeparator: string;
159
276
  };
160
277
  };
161
- };
162
- 'ru-RU': {
163
278
  select: {
164
279
  hiddenItemsText: string;
165
280
  };
166
281
  datepicker: {
167
282
  placeholder: string;
168
- dateInput: string;
169
283
  };
170
- formatters: {
171
- number: {
172
- rounding: {
173
- separator: string;
174
- groupSeparator: string;
175
- thousand: string;
176
- million: string;
177
- billion: string;
178
- trillion: string;
179
- };
284
+ timepicker: {
285
+ placeholder: {
286
+ full: string;
287
+ short: string;
180
288
  };
181
289
  };
182
- input: {
183
- number: {
184
- groupSeparator: string[];
185
- fractionSeparator: string;
186
- startFormattingFrom: number;
290
+ fileUpload: {
291
+ single: {
292
+ captionText: string;
293
+ browseLink: string;
294
+ };
295
+ multiple: {
296
+ captionText: string;
297
+ captionTextWhenSelected: string;
298
+ captionTextForCompactSize: string;
299
+ browseLink: string;
300
+ title: string;
301
+ gridHeaders: {
302
+ file: string;
303
+ size: string;
304
+ };
187
305
  };
188
306
  };
189
307
  };
190
- items: {
191
- id: string;
192
- name: string;
193
- }[];
194
308
  };
195
309
  export declare const KBQ_LOCALE_DATA: InjectionToken<any>;
196
310
  export declare const KBQ_LOCALE_SERVICE: InjectionToken<KbqLocaleService>;
@@ -1,33 +1,30 @@
1
1
  export declare const ptBRLocaleData: {
2
- 'pt-BR': {
3
- select: {
4
- hiddenItemsText: string;
5
- };
6
- datepicker: {
7
- placeholder: string;
8
- };
9
- timepicker: {
10
- placeholder: {
11
- full: string;
12
- short: string;
13
- };
2
+ select: {
3
+ hiddenItemsText: string;
4
+ };
5
+ datepicker: {
6
+ placeholder: string;
7
+ };
8
+ timepicker: {
9
+ placeholder: {
10
+ full: string;
11
+ short: string;
14
12
  };
15
- formatters: {
16
- number: {
17
- rounding: {
18
- separator: string;
19
- groupSeparator: string;
20
- thousand: string;
21
- million: string;
22
- billion: string;
23
- trillion: string;
24
- };
25
- };
13
+ };
14
+ fileUpload: {
15
+ single: {
16
+ captionText: string;
17
+ browseLink: string;
26
18
  };
27
- input: {
28
- number: {
29
- groupSeparator: string[];
30
- fractionSeparator: string;
19
+ multiple: {
20
+ captionText: string;
21
+ captionTextWhenSelected: string;
22
+ captionTextForCompactSize: string;
23
+ browseLink: string;
24
+ title: string;
25
+ gridHeaders: {
26
+ file: string;
27
+ size: string;
31
28
  };
32
29
  };
33
30
  };