@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.
- package/autocomplete/autocomplete-trigger.directive.d.ts +7 -1
- package/button-toggle/_button-toggle-theme.scss +4 -0
- package/checkbox/checkbox.scss +0 -1
- package/code-block/_code-block-theme.scss +15 -9
- package/code-block/actionbar.component.scss +1 -1
- package/code-block/code-block.component.d.ts +3 -0
- package/code-block/code-block.scss +14 -4
- package/core/datetime/date-adapter.d.ts +1 -1
- package/core/datetime/date-formats.d.ts +1 -1
- package/core/formatters/date/formatter.d.ts +2 -2
- package/core/formatters/date/formatter.pipe.d.ts +1 -1
- package/core/locales/en-US.d.ts +25 -22
- package/core/locales/es-LA.d.ts +24 -27
- package/core/locales/fa-IR.d.ts +24 -28
- package/core/locales/formatters.d.ts +121 -0
- package/core/locales/index.d.ts +7 -0
- package/core/locales/locale-service.d.ts +146 -32
- package/core/locales/pt-BR.d.ts +24 -27
- package/core/locales/ru-RU.d.ts +25 -23
- package/core/locales/zh-CN.d.ts +25 -27
- package/core/styles/_koobiq-theme.scss +3 -1
- package/core/styles/_variables.scss +0 -9
- package/core/styles/common/_overlay.scss +4 -0
- package/core/styles/theming/_components-theming.scss +59 -21
- package/core/styles/theming/{_scrollbars-theme.scss → _scrollbar-theme.scss} +19 -3
- package/core/styles/typography/_typography.scss +3 -1
- package/core/utils/data-size/data-size.pipe.d.ts +1 -1
- package/ellipsis-center/ellipsis-center.directive.d.ts +3 -3
- package/esm2022/autocomplete/autocomplete-trigger.directive.mjs +14 -2
- package/esm2022/code-block/actionbar.component.mjs +2 -2
- package/esm2022/code-block/code-block.component.mjs +21 -5
- package/esm2022/core/datetime/date-adapter.mjs +2 -2
- package/esm2022/core/datetime/date-formats.mjs +1 -1
- package/esm2022/core/formatters/date/formatter.mjs +4 -4
- package/esm2022/core/formatters/date/formatter.pipe.mjs +1 -1
- package/esm2022/core/locales/en-US.mjs +25 -22
- package/esm2022/core/locales/es-LA.mjs +24 -29
- package/esm2022/core/locales/fa-IR.mjs +24 -28
- package/esm2022/core/locales/formatters.mjs +126 -0
- package/esm2022/core/locales/index.mjs +8 -1
- package/esm2022/core/locales/locale-service.mjs +9 -8
- package/esm2022/core/locales/pt-BR.mjs +24 -27
- package/esm2022/core/locales/ru-RU.mjs +25 -25
- package/esm2022/core/locales/zh-CN.mjs +25 -27
- package/esm2022/core/utils/data-size/data-size.pipe.mjs +3 -3
- package/esm2022/core/version.mjs +2 -2
- package/esm2022/ellipsis-center/ellipsis-center.directive.mjs +13 -13
- package/esm2022/file-upload/file-upload.mjs +15 -1
- package/esm2022/file-upload/file-upload.module.mjs +8 -4
- package/esm2022/file-upload/multiple-file-upload.component.mjs +74 -67
- package/esm2022/file-upload/single-file-upload.component.mjs +70 -62
- package/esm2022/modal/modal.component.mjs +3 -6
- package/esm2022/modal/modal.type.mjs +1 -1
- package/esm2022/navbar/navbar-item.component.mjs +24 -68
- package/esm2022/navbar/navbar.component.mjs +4 -4
- package/esm2022/navbar/navbar.module.mjs +2 -6
- package/esm2022/navbar/vertical-navbar.component.mjs +3 -8
- package/esm2022/popover/popover-confirm.component.mjs +3 -3
- package/esm2022/popover/popover.component.mjs +3 -3
- package/esm2022/scrollbar/index.mjs +2 -0
- package/esm2022/scrollbar/koobiq-components-scrollbar.mjs +5 -0
- package/esm2022/scrollbar/public-api.mjs +5 -0
- package/esm2022/scrollbar/scrollbar.component.mjs +130 -0
- package/esm2022/scrollbar/scrollbar.directive.mjs +97 -0
- package/esm2022/scrollbar/scrollbar.module.mjs +20 -0
- package/esm2022/scrollbar/scrollbar.types.mjs +13 -0
- package/esm2022/select/select.component.mjs +26 -17
- package/esm2022/sidepanel/sidepanel-animations.mjs +5 -5
- package/esm2022/sidepanel/sidepanel-container.component.mjs +6 -6
- package/esm2022/sidepanel/sidepanel-directives.mjs +13 -13
- package/esm2022/tabs/tab-body.component.mjs +3 -3
- package/esm2022/tags/tag-input.mjs +28 -8
- package/esm2022/timezone/timezone-option.component.mjs +7 -6
- package/esm2022/timezone/timezone-select.component.mjs +3 -3
- package/esm2022/timezone/timezone.utils.mjs +9 -4
- package/esm2022/timezone/utc-offset.pipe.mjs +3 -3
- package/esm2022/toast/toast-animations.mjs +3 -3
- package/esm2022/toast/toast-container.component.mjs +2 -2
- package/esm2022/toast/toast.component.mjs +4 -4
- package/esm2022/toast/toast.service.mjs +13 -5
- package/esm2022/tooltip/tooltip.component.mjs +3 -3
- package/esm2022/tree-select/tree-select.component.mjs +7 -5
- package/fesm2022/koobiq-components-autocomplete.mjs +13 -1
- package/fesm2022/koobiq-components-autocomplete.mjs.map +1 -1
- package/fesm2022/koobiq-components-code-block.mjs +22 -6
- package/fesm2022/koobiq-components-code-block.mjs.map +1 -1
- package/fesm2022/koobiq-components-core.mjs +277 -162
- package/fesm2022/koobiq-components-core.mjs.map +1 -1
- package/fesm2022/koobiq-components-ellipsis-center.mjs +12 -12
- package/fesm2022/koobiq-components-ellipsis-center.mjs.map +1 -1
- package/fesm2022/koobiq-components-file-upload.mjs +153 -121
- package/fesm2022/koobiq-components-file-upload.mjs.map +1 -1
- package/fesm2022/koobiq-components-modal.mjs +2 -5
- package/fesm2022/koobiq-components-modal.mjs.map +1 -1
- package/fesm2022/koobiq-components-navbar.mjs +29 -91
- package/fesm2022/koobiq-components-navbar.mjs.map +1 -1
- package/fesm2022/koobiq-components-popover.mjs +4 -4
- package/fesm2022/koobiq-components-popover.mjs.map +1 -1
- package/fesm2022/koobiq-components-scrollbar.mjs +256 -0
- package/fesm2022/koobiq-components-scrollbar.mjs.map +1 -0
- package/fesm2022/koobiq-components-select.mjs +22 -13
- package/fesm2022/koobiq-components-select.mjs.map +1 -1
- package/fesm2022/koobiq-components-sidepanel.mjs +20 -20
- package/fesm2022/koobiq-components-sidepanel.mjs.map +1 -1
- package/fesm2022/koobiq-components-tabs.mjs +2 -2
- package/fesm2022/koobiq-components-tabs.mjs.map +1 -1
- package/fesm2022/koobiq-components-tags.mjs +26 -7
- package/fesm2022/koobiq-components-tags.mjs.map +1 -1
- package/fesm2022/koobiq-components-timezone.mjs +20 -15
- package/fesm2022/koobiq-components-timezone.mjs.map +1 -1
- package/fesm2022/koobiq-components-toast.mjs +17 -9
- package/fesm2022/koobiq-components-toast.mjs.map +1 -1
- package/fesm2022/koobiq-components-tooltip.mjs +2 -2
- package/fesm2022/koobiq-components-tooltip.mjs.map +1 -1
- package/fesm2022/koobiq-components-tree-select.mjs +6 -4
- package/fesm2022/koobiq-components-tree-select.mjs.map +1 -1
- package/file-upload/file-upload.d.ts +1 -1
- package/file-upload/file-upload.module.d.ts +2 -1
- package/file-upload/multiple-file-upload.component.d.ts +20 -14
- package/file-upload/single-file-upload.component.d.ts +21 -18
- package/loader-overlay/loader-overlay.scss +2 -2
- package/modal/modal.component.d.ts +1 -2
- package/modal/modal.scss +0 -5
- package/modal/modal.type.d.ts +0 -1
- package/navbar/_navbar-item_horizontal.scss +97 -0
- package/navbar/_navbar-item_vertical.scss +98 -0
- package/navbar/_navbar-theme.scss +57 -60
- package/navbar/navbar-brand.scss +76 -16
- package/navbar/navbar-divider.scss +13 -4
- package/navbar/navbar-item.component.d.ts +1 -15
- package/navbar/navbar-item.scss +39 -90
- package/navbar/navbar.module.d.ts +1 -1
- package/navbar/navbar.scss +13 -1
- package/navbar/vertical-navbar.scss +7 -14
- package/package.json +16 -8
- package/popover/popover.scss +4 -9
- package/prebuilt-themes/dark-theme.css +1 -1
- package/prebuilt-themes/light-theme.css +1 -1
- package/scrollbar/_scrollbar-component-theme.scss +52 -0
- package/scrollbar/index.d.ts +1 -0
- package/scrollbar/public-api.d.ts +4 -0
- package/scrollbar/scrollbar.component.d.ts +33 -0
- package/scrollbar/scrollbar.component.scss +559 -0
- package/scrollbar/scrollbar.directive.d.ts +48 -0
- package/scrollbar/scrollbar.module.d.ts +8 -0
- package/scrollbar/scrollbar.types.d.ts +33 -0
- package/select/select.component.d.ts +4 -3
- package/sidepanel/sidepanel-animations.d.ts +2 -2
- package/sidepanel/sidepanel-directives.d.ts +5 -5
- package/tags/tag-input.d.ts +9 -4
- package/timezone/_timezone-option-theme.scss +8 -0
- package/timezone/timezone-option.component.scss +4 -0
- package/timezone/timezone-select.component.scss +13 -0
- package/timezone/timezone.utils.d.ts +4 -0
- package/timezone/utc-offset.pipe.d.ts +3 -1
- package/toast/toast-animations.d.ts +1 -1
- package/toast/toast-container.component.scss +1 -9
- package/toast/toast.component.scss +0 -4
- package/toast/toast.service.d.ts +5 -3
- package/tooltip/tooltip.scss +0 -3
- package/esm2022/navbar/vertical-navbar.animation.mjs +0 -10
- 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
|
}
|
package/checkbox/checkbox.scss
CHANGED
|
@@ -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
|
-
|
|
22
|
-
|
|
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
|
-
|
|
34
|
-
|
|
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($
|
|
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 {
|
|
@@ -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
|
|
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:
|
|
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 '@
|
|
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 '@
|
|
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 '@
|
|
2
|
-
import { DateFormatter as BaseDateFormatter } from '@
|
|
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 '@
|
|
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";
|
package/core/locales/en-US.d.ts
CHANGED
|
@@ -1,28 +1,31 @@
|
|
|
1
1
|
export declare const enUSLocaleData: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
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
|
};
|
package/core/locales/es-LA.d.ts
CHANGED
|
@@ -1,33 +1,30 @@
|
|
|
1
1
|
export declare const esLALocaleData: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
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
|
};
|
package/core/locales/fa-IR.d.ts
CHANGED
|
@@ -1,34 +1,30 @@
|
|
|
1
1
|
export declare const faIRLocaleData: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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
|
+
};
|
package/core/locales/index.d.ts
CHANGED
|
@@ -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';
|