@koobiq/components 17.0.0-beta.1 → 17.0.0-rc.1

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 (162) hide show
  1. package/autocomplete/autocomplete-trigger.directive.d.ts +7 -1
  2. package/button-toggle/_button-toggle-theme.scss +4 -0
  3. package/checkbox/checkbox.scss +0 -1
  4. package/code-block/_code-block-theme.scss +15 -9
  5. package/code-block/actionbar.component.scss +1 -1
  6. package/code-block/code-block.component.d.ts +3 -0
  7. package/code-block/code-block.scss +14 -4
  8. package/core/datetime/date-adapter.d.ts +1 -1
  9. package/core/datetime/date-formats.d.ts +1 -1
  10. package/core/formatters/date/formatter.d.ts +2 -2
  11. package/core/formatters/date/formatter.pipe.d.ts +1 -1
  12. package/core/locales/en-US.d.ts +25 -22
  13. package/core/locales/es-LA.d.ts +24 -27
  14. package/core/locales/fa-IR.d.ts +24 -28
  15. package/core/locales/formatters.d.ts +121 -0
  16. package/core/locales/index.d.ts +7 -0
  17. package/core/locales/locale-service.d.ts +146 -32
  18. package/core/locales/pt-BR.d.ts +24 -27
  19. package/core/locales/ru-RU.d.ts +25 -23
  20. package/core/locales/zh-CN.d.ts +25 -27
  21. package/core/styles/_koobiq-theme.scss +3 -1
  22. package/core/styles/_variables.scss +0 -9
  23. package/core/styles/common/_overlay.scss +4 -0
  24. package/core/styles/theming/_components-theming.scss +59 -21
  25. package/core/styles/theming/{_scrollbars-theme.scss → _scrollbar-theme.scss} +19 -3
  26. package/core/styles/typography/_typography.scss +3 -1
  27. package/core/utils/data-size/data-size.pipe.d.ts +1 -1
  28. package/ellipsis-center/ellipsis-center.directive.d.ts +3 -3
  29. package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +14 -2
  30. package/esm2022/code-block/actionbar.component.mjs +2 -2
  31. package/esm2022/code-block/code-block.component.mjs +21 -5
  32. package/esm2022/core/datetime/date-adapter.mjs +2 -2
  33. package/esm2022/core/datetime/date-formats.mjs +1 -1
  34. package/esm2022/core/formatters/date/formatter.mjs +4 -4
  35. package/esm2022/core/formatters/date/formatter.pipe.mjs +1 -1
  36. package/esm2022/core/locales/en-US.mjs +25 -22
  37. package/esm2022/core/locales/es-LA.mjs +24 -29
  38. package/esm2022/core/locales/fa-IR.mjs +24 -28
  39. package/esm2022/core/locales/formatters.mjs +126 -0
  40. package/esm2022/core/locales/index.mjs +8 -1
  41. package/esm2022/core/locales/locale-service.mjs +9 -8
  42. package/esm2022/core/locales/pt-BR.mjs +24 -27
  43. package/esm2022/core/locales/ru-RU.mjs +25 -25
  44. package/esm2022/core/locales/zh-CN.mjs +25 -27
  45. package/esm2022/core/utils/data-size/data-size.pipe.mjs +3 -3
  46. package/esm2022/core/version.mjs +2 -2
  47. package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +13 -13
  48. package/esm2022/file-upload/file-upload.mjs +15 -1
  49. package/esm2022/file-upload/file-upload.module.mjs +8 -4
  50. package/esm2022/file-upload/multiple-file-upload.component.mjs +74 -67
  51. package/esm2022/file-upload/single-file-upload.component.mjs +70 -62
  52. package/esm2022/modal/modal.component.mjs +3 -6
  53. package/esm2022/modal/modal.type.mjs +1 -1
  54. package/esm2022/navbar/navbar-item.component.mjs +24 -68
  55. package/esm2022/navbar/navbar.component.mjs +4 -4
  56. package/esm2022/navbar/navbar.module.mjs +2 -6
  57. package/esm2022/navbar/vertical-navbar.component.mjs +3 -8
  58. package/esm2022/popover/popover-confirm.component.mjs +3 -3
  59. package/esm2022/popover/popover.component.mjs +3 -3
  60. package/esm2022/scrollbar/index.mjs +2 -0
  61. package/esm2022/scrollbar/koobiq-components-scrollbar.mjs +5 -0
  62. package/esm2022/scrollbar/public-api.mjs +5 -0
  63. package/esm2022/scrollbar/scrollbar.component.mjs +130 -0
  64. package/esm2022/scrollbar/scrollbar.directive.mjs +97 -0
  65. package/esm2022/scrollbar/scrollbar.module.mjs +20 -0
  66. package/esm2022/scrollbar/scrollbar.types.mjs +13 -0
  67. package/esm2022/select/select.component.mjs +26 -17
  68. package/esm2022/sidepanel/sidepanel-animations.mjs +5 -5
  69. package/esm2022/sidepanel/sidepanel-container.component.mjs +6 -6
  70. package/esm2022/sidepanel/sidepanel-directives.mjs +13 -13
  71. package/esm2022/tabs/tab-body.component.mjs +3 -3
  72. package/esm2022/tags/tag-input.mjs +28 -8
  73. package/esm2022/timezone/timezone-option.component.mjs +7 -6
  74. package/esm2022/timezone/timezone-select.component.mjs +3 -3
  75. package/esm2022/timezone/timezone.utils.mjs +9 -4
  76. package/esm2022/timezone/utc-offset.pipe.mjs +3 -3
  77. package/esm2022/toast/toast-animations.mjs +3 -3
  78. package/esm2022/toast/toast-container.component.mjs +2 -2
  79. package/esm2022/toast/toast.component.mjs +4 -4
  80. package/esm2022/toast/toast.service.mjs +13 -5
  81. package/esm2022/tooltip/tooltip.component.mjs +3 -3
  82. package/esm2022/tree-select/tree-select.component.mjs +7 -5
  83. package/fesm2022/koobiq-components-autocomplete.mjs +13 -1
  84. package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
  85. package/fesm2022/koobiq-components-code-block.mjs +22 -6
  86. package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
  87. package/fesm2022/koobiq-components-core.mjs +277 -162
  88. package/fesm2022/koobiq-components-core.mjs.map +1 -1
  89. package/fesm2022/koobiq-components-ellipsis-center.mjs +12 -12
  90. package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
  91. package/fesm2022/koobiq-components-file-upload.mjs +153 -121
  92. package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
  93. package/fesm2022/koobiq-components-modal.mjs +2 -5
  94. package/fesm2022/koobiq-components-modal.mjs.map +1 -1
  95. package/fesm2022/koobiq-components-navbar.mjs +29 -91
  96. package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
  97. package/fesm2022/koobiq-components-popover.mjs +4 -4
  98. package/fesm2022/koobiq-components-popover.mjs.map +1 -1
  99. package/fesm2022/koobiq-components-scrollbar.mjs +256 -0
  100. package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -0
  101. package/fesm2022/koobiq-components-select.mjs +22 -13
  102. package/fesm2022/koobiq-components-select.mjs.map +1 -1
  103. package/fesm2022/koobiq-components-sidepanel.mjs +20 -20
  104. package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
  105. package/fesm2022/koobiq-components-tabs.mjs +2 -2
  106. package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
  107. package/fesm2022/koobiq-components-tags.mjs +26 -7
  108. package/fesm2022/koobiq-components-tags.mjs.map +1 -1
  109. package/fesm2022/koobiq-components-timezone.mjs +20 -15
  110. package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
  111. package/fesm2022/koobiq-components-toast.mjs +17 -9
  112. package/fesm2022/koobiq-components-toast.mjs.map +1 -1
  113. package/fesm2022/koobiq-components-tooltip.mjs +2 -2
  114. package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
  115. package/fesm2022/koobiq-components-tree-select.mjs +6 -4
  116. package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
  117. package/file-upload/file-upload.d.ts +1 -1
  118. package/file-upload/file-upload.module.d.ts +2 -1
  119. package/file-upload/multiple-file-upload.component.d.ts +20 -14
  120. package/file-upload/single-file-upload.component.d.ts +21 -18
  121. package/loader-overlay/loader-overlay.scss +2 -2
  122. package/modal/modal.component.d.ts +1 -2
  123. package/modal/modal.scss +0 -5
  124. package/modal/modal.type.d.ts +0 -1
  125. package/navbar/_navbar-item_horizontal.scss +97 -0
  126. package/navbar/_navbar-item_vertical.scss +98 -0
  127. package/navbar/_navbar-theme.scss +57 -60
  128. package/navbar/navbar-brand.scss +76 -16
  129. package/navbar/navbar-divider.scss +13 -4
  130. package/navbar/navbar-item.component.d.ts +1 -15
  131. package/navbar/navbar-item.scss +39 -90
  132. package/navbar/navbar.module.d.ts +1 -1
  133. package/navbar/navbar.scss +13 -1
  134. package/navbar/vertical-navbar.scss +7 -14
  135. package/package.json +16 -8
  136. package/popover/popover.scss +4 -9
  137. package/prebuilt-themes/dark-theme.css +1 -1
  138. package/prebuilt-themes/light-theme.css +1 -1
  139. package/scrollbar/_scrollbar-component-theme.scss +52 -0
  140. package/scrollbar/index.d.ts +1 -0
  141. package/scrollbar/public-api.d.ts +4 -0
  142. package/scrollbar/scrollbar.component.d.ts +33 -0
  143. package/scrollbar/scrollbar.component.scss +559 -0
  144. package/scrollbar/scrollbar.directive.d.ts +48 -0
  145. package/scrollbar/scrollbar.module.d.ts +8 -0
  146. package/scrollbar/scrollbar.types.d.ts +33 -0
  147. package/select/select.component.d.ts +4 -3
  148. package/sidepanel/sidepanel-animations.d.ts +2 -2
  149. package/sidepanel/sidepanel-directives.d.ts +5 -5
  150. package/tags/tag-input.d.ts +9 -4
  151. package/timezone/_timezone-option-theme.scss +8 -0
  152. package/timezone/timezone-option.component.scss +4 -0
  153. package/timezone/timezone-select.component.scss +13 -0
  154. package/timezone/timezone.utils.d.ts +4 -0
  155. package/timezone/utc-offset.pipe.d.ts +3 -1
  156. package/toast/toast-animations.d.ts +1 -1
  157. package/toast/toast-container.component.scss +1 -9
  158. package/toast/toast.component.scss +0 -4
  159. package/toast/toast.service.d.ts +5 -3
  160. package/tooltip/tooltip.scss +0 -3
  161. package/esm2022/navbar/vertical-navbar.animation.mjs +0 -10
  162. package/navbar/vertical-navbar.animation.d.ts +0 -2
@@ -67,6 +67,12 @@ export declare class KbqAutocompleteTrigger implements AfterViewInit, ControlVal
67
67
  */
68
68
  get autocompleteDisabled(): boolean;
69
69
  set autocompleteDisabled(value: boolean);
70
+ /**
71
+ * Event handler for input blur events.
72
+ * Determines whether the blur event is triggered outside the specific target
73
+ * @returns A boolean indicating if the blur event happened outside the target element
74
+ */
75
+ onInputBlur: (event: FocusEvent) => boolean;
70
76
  private _autocompleteDisabled;
71
77
  private overlayAttached;
72
78
  private overlayRef;
@@ -153,5 +159,5 @@ export declare class KbqAutocompleteTrigger implements AfterViewInit, ControlVal
153
159
  private resetActiveItem;
154
160
  private canOpen;
155
161
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqAutocompleteTrigger, [null, null, null, null, null, null, { optional: true; }, { optional: true; host: true; }, { optional: true; }, null]>;
156
- static ɵdir: i0.ɵɵDirectiveDeclaration<KbqAutocompleteTrigger, "input[kbqAutocomplete], textarea[kbqAutocomplete]", ["kbqAutocompleteTrigger"], { "autocomplete": { "alias": "kbqAutocomplete"; "required": false; }; "connectedTo": { "alias": "kbqAutocompleteConnectedTo"; "required": false; }; "autocompleteAttribute": { "alias": "autocomplete"; "required": false; }; "autocompleteDisabled": { "alias": "kbqAutocompleteDisabled"; "required": false; }; }, {}, never, never, false, never>;
162
+ static ɵdir: i0.ɵɵDirectiveDeclaration<KbqAutocompleteTrigger, "input[kbqAutocomplete], textarea[kbqAutocomplete]", ["kbqAutocompleteTrigger"], { "autocomplete": { "alias": "kbqAutocomplete"; "required": false; }; "connectedTo": { "alias": "kbqAutocompleteConnectedTo"; "required": false; }; "autocompleteAttribute": { "alias": "autocomplete"; "required": false; }; "autocompleteDisabled": { "alias": "kbqAutocompleteDisabled"; "required": false; }; "onInputBlur": { "alias": "kbqAutocompleteOnBlur"; "required": false; }; }, {}, never, never, false, never>;
157
163
  }
@@ -57,6 +57,10 @@ $tokens: meta.module-variables(tokens) !default;
57
57
  @include kbq-button-toggle-color(map.get($button, disabled));
58
58
  }
59
59
 
60
+ &.kbq-disabled.kbq-selected {
61
+ @include kbq-button-toggle-color(map.get($button, selected-disabled));
62
+ }
63
+
60
64
  &.cdk-keyboard-focused {
61
65
  border-color: map.get($button, focused);
62
66
  }
@@ -3,7 +3,6 @@
3
3
 
4
4
  @use '../core/styles/common/visually-hidden';
5
5
  @use '../core/styles/common/layout';
6
- @use '../core/styles/variables';
7
6
 
8
7
  @use '../core/styles/tokens';
9
8
 
@@ -6,6 +6,7 @@
6
6
 
7
7
 
8
8
  @mixin kbq-code-block-style($style) {
9
+ $header: map.get($style, header);
9
10
  $container: map.get($style, container);
10
11
  $actionbar: map.get($style, actionbar);
11
12
  $collapse: map.get($style, collapse);
@@ -18,8 +19,14 @@
18
19
  background: map.get($header, background) !important;
19
20
  }
20
21
 
21
- &:not(.kbq-code-block_no-header) .kbq-code-block__code {
22
- box-shadow: map.get($container, shadow);
22
+ & .kbq-code-block-actionbar {
23
+ background: map.get($actionbar, background);
24
+ }
25
+
26
+ &.kbq-code-block_header-with-shadow {
27
+ & .kbq-tab-header {
28
+ box-shadow: map.get($header, shadow);
29
+ }
23
30
  }
24
31
 
25
32
  &.kbq-code-block_no-header {
@@ -30,11 +37,13 @@
30
37
  }
31
38
  }
32
39
 
33
- & .kbq-code-block-actionbar {
34
- background: map.get($actionbar, background);
40
+ .kbq-code-block__show-more {
41
+ .bg-wrapper {
42
+ background: map.get($collapse, button-expand-background);
43
+ opacity: 90%;
44
+ }
35
45
  }
36
46
 
37
-
38
47
  & .kbq-code-block__show-more_expanded {
39
48
  background: map.get($collapse, expanded-background);
40
49
  }
@@ -310,7 +319,7 @@
310
319
  }
311
320
 
312
321
  &-ln-n {
313
- color: map.get($code-block, line-numbers-color);
322
+ color: map.get($hljs, line-numbers-color);
314
323
  }
315
324
 
316
325
  &-line-numbers {
@@ -332,9 +341,6 @@
332
341
  border-bottom-color: transparent;
333
342
  }
334
343
  }
335
-
336
- .kbq-code-block__show-more {
337
- }
338
344
  }
339
345
 
340
346
  .kbq-code-block-actionbar {
@@ -13,7 +13,7 @@ $tokens: meta.module-variables(tokens) !default;
13
13
 
14
14
  position: absolute;
15
15
 
16
- top: 0;
16
+ top: -1px;
17
17
  right: 0;
18
18
 
19
19
  padding:
@@ -53,6 +53,7 @@ export declare class KbqCodeBlockComponent implements OnDestroy {
53
53
  copied: boolean;
54
54
  viewAll: boolean;
55
55
  multiLine: boolean;
56
+ isTopOverflow: boolean;
56
57
  readonly resizeStream: Subject<Event>;
57
58
  private readonly resizeDebounceInterval;
58
59
  private resizeSubscription;
@@ -67,6 +68,8 @@ export declare class KbqCodeBlockComponent implements OnDestroy {
67
68
  onHighlighted(): void;
68
69
  getMaxHeight(): string;
69
70
  onSelectTab($event: KbqTabChangeEvent): void;
71
+ checkOverflow(currentCodeContentElement: HTMLElement): void;
72
+ onShowMoreClick(currentCodeContentElement: HTMLPreElement): void;
70
73
  private updateMultiline;
71
74
  private getFullFileName;
72
75
  static ɵfac: i0.ɵɵFactoryDeclaration<KbqCodeBlockComponent, [null, null, null, null, { optional: true; }]>;
@@ -28,17 +28,17 @@ $tokens: meta.module-variables(tokens) !default;
28
28
 
29
29
  .kbq-tab-header {
30
30
  // 4 buttons + margin
31
- margin-right: calc(32 * 4) + 24px;
31
+ $buttons-margin: calc(32 * 4) + 24px;
32
32
 
33
33
  padding:
34
34
  var(
35
35
  --kbq-code-block-size-header-padding-vertical,
36
36
  map.get($tokens, code-block-size-header-padding-vertical)
37
37
  )
38
- var(
38
+ calc(var(
39
39
  --kbq-code-block-size-header-padding-right,
40
40
  map.get($tokens, code-block-size-header-padding-right)
41
- )
41
+ ) + $buttons-margin)
42
42
  var(
43
43
  --kbq-code-block-size-header-padding-vertical,
44
44
  map.get($tokens, code-block-size-header-padding-vertical)
@@ -121,6 +121,12 @@ $tokens: meta.module-variables(tokens) !default;
121
121
  }
122
122
  }
123
123
 
124
+ &:not(:has(.kbq-code-block__show-more)) {
125
+ .kbq-code-block__code {
126
+ overflow-y: auto;
127
+ }
128
+ }
129
+
124
130
  pre {
125
131
  margin: 0;
126
132
  }
@@ -140,7 +146,7 @@ $tokens: meta.module-variables(tokens) !default;
140
146
 
141
147
  &.kbq-code-block__code_view-all {
142
148
  max-height: unset;
143
- overflow-y: unset;
149
+ overflow-y: auto;
144
150
  }
145
151
 
146
152
  &.kbq-code-block__code_soft-wrap {
@@ -198,5 +204,9 @@ $tokens: meta.module-variables(tokens) !default;
198
204
  map.get($tokens, code-block-size-collapse-expanded-padding-bottom)
199
205
  );
200
206
  }
207
+
208
+ .bg-wrapper {
209
+ border-radius: var(--kbq-button-size-border-radius, map.get($tokens, button-size-border-radius));
210
+ }
201
211
  }
202
212
  /* stylelint-enable no-descending-specificity */
@@ -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,2 +1,9 @@
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';
1
7
  export * from './locale-service';
2
8
  export * from './locale-service.module';
9
+ export * from './formatters';