@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
|
@@ -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
|
-
|
|
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
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
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
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
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>;
|
package/core/locales/pt-BR.d.ts
CHANGED
|
@@ -1,33 +1,30 @@
|
|
|
1
1
|
export declare const ptBRLocaleData: {
|
|
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/ru-RU.d.ts
CHANGED
|
@@ -1,29 +1,31 @@
|
|
|
1
1
|
export declare const ruRULocaleData: {
|
|
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
|
-
|
|
26
|
-
|
|
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;
|
|
27
29
|
};
|
|
28
30
|
};
|
|
29
31
|
};
|
package/core/locales/zh-CN.d.ts
CHANGED
|
@@ -1,32 +1,30 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
short: string;
|
|
13
|
-
};
|
|
1
|
+
export declare const zhCNLocaleData: {
|
|
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
|
-
tenThousand: string;
|
|
21
|
-
oneHundredMillions: string;
|
|
22
|
-
trillion: string;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
13
|
+
};
|
|
14
|
+
fileUpload: {
|
|
15
|
+
single: {
|
|
16
|
+
captionText: string;
|
|
17
|
+
browseLink: string;
|
|
25
18
|
};
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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;
|
|
30
28
|
};
|
|
31
29
|
};
|
|
32
30
|
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
@use 'theming/theming' as *;
|
|
4
4
|
@use 'typography/typography' as *;
|
|
5
5
|
|
|
6
|
-
@use 'theming/
|
|
6
|
+
@use 'theming/scrollbar-theme' as *;
|
|
7
7
|
|
|
8
8
|
@use '../selection/pseudo-checkbox/pseudo-checkbox-theme' as *;
|
|
9
9
|
@use '../../alert/alert-theme' as *;
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
@use '../../risk-level/risk-level-theme' as *;
|
|
38
38
|
@use '../../select/select-theme' as *;
|
|
39
39
|
@use '../../sidepanel/sidepanel-theme' as *;
|
|
40
|
+
@use '../../scrollbar/scrollbar-component-theme' as *;
|
|
40
41
|
@use '../../splitter/splitter-theme' as *;
|
|
41
42
|
@use '../../tabs/tabs-theme' as *;
|
|
42
43
|
@use '../../tags/tag-theme' as *;
|
|
@@ -95,6 +96,7 @@
|
|
|
95
96
|
@include kbq-radio-theme($theme);
|
|
96
97
|
@include kbq-risk-level-theme($theme);
|
|
97
98
|
@include kbq-scrollbar-theme($theme);
|
|
99
|
+
@include kbq-scrollbar-component-theme($theme);
|
|
98
100
|
@include kbq-select-theme($theme);
|
|
99
101
|
@include kbq-sidepanel-theme($theme);
|
|
100
102
|
@include kbq-splitter-theme($theme);
|
|
@@ -1,10 +1 @@
|
|
|
1
|
-
$z-index-modal-mask: 1000;
|
|
2
|
-
$z-index-modal: 1000;
|
|
3
|
-
$z-index-notification: 1010;
|
|
4
|
-
$z-index-message: 1010;
|
|
5
|
-
$z-index-popover: 1030;
|
|
6
|
-
$z-index-picker: 1050;
|
|
7
|
-
$z-index-dropdown: 1050;
|
|
8
|
-
$z-index-tooltip: 1060;
|
|
9
|
-
$z-index-toast: 1070;
|
|
10
1
|
$z-index-loader-overlay: 10;
|
|
@@ -41,6 +41,10 @@ $backdrop-animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !default;
|
|
|
41
41
|
// include overlays that have been detached, rather than disposed.
|
|
42
42
|
display: none;
|
|
43
43
|
}
|
|
44
|
+
|
|
45
|
+
&.cdk-overlay-container_dropdown {
|
|
46
|
+
z-index: calc($overlay-container-z-index - 1);
|
|
47
|
+
}
|
|
44
48
|
}
|
|
45
49
|
|
|
46
50
|
// We use an extra wrapper element in order to use make the overlay itself a flex item.
|
|
@@ -321,6 +321,11 @@
|
|
|
321
321
|
text: map-get($tokens, 'button-toggle-#{$scheme}-item-states-selected-active-text'),
|
|
322
322
|
icon: map-get($tokens, 'button-toggle-#{$scheme}-item-states-selected-active-icon')
|
|
323
323
|
),
|
|
324
|
+
selected-disabled: (
|
|
325
|
+
background: map-get($tokens, 'button-toggle-#{$scheme}-item-states-selected-disabled-background'),
|
|
326
|
+
text: map-get($tokens, 'button-toggle-#{$scheme}-item-states-selected-disabled-text'),
|
|
327
|
+
icon: map-get($tokens, 'button-toggle-#{$scheme}-item-states-selected-disabled-icon')
|
|
328
|
+
),
|
|
324
329
|
disabled: (
|
|
325
330
|
background: map-get($tokens, 'button-toggle-#{$scheme}-item-states-disabled-background'),
|
|
326
331
|
text: map-get($tokens, 'button-toggle-#{$scheme}-item-states-disabled-text'),
|
|
@@ -436,10 +441,10 @@
|
|
|
436
441
|
container: (
|
|
437
442
|
background: map-get($tokens, 'code-block-#{$scheme}-filled-container-background'),
|
|
438
443
|
border: map-get($tokens, 'code-block-#{$scheme}-filled-container-border-color'),
|
|
439
|
-
shadow: map-get($tokens, 'code-block-#{$scheme}-filled-container-shadow')
|
|
440
444
|
),
|
|
441
445
|
header: (
|
|
442
|
-
background: map-get($tokens, 'code-block-#{$scheme}-filled-header-background')
|
|
446
|
+
background: map-get($tokens, 'code-block-#{$scheme}-filled-header-background'),
|
|
447
|
+
shadow: map-get($tokens, 'code-block-#{$scheme}-filled-header-shadow')
|
|
443
448
|
),
|
|
444
449
|
actionbar: (
|
|
445
450
|
fade-gradient: map-get($tokens, 'code-block-#{$scheme}-filled-actionbar-fade-gradient'),
|
|
@@ -447,17 +452,20 @@
|
|
|
447
452
|
),
|
|
448
453
|
collapse: (
|
|
449
454
|
expanded-background: map-get($tokens, 'code-block-#{$scheme}-filled-collapse-expanded-background'),
|
|
450
|
-
collapsed-background: map-get($tokens, 'code-block-#{$scheme}-filled-collapse-collapsed-background')
|
|
455
|
+
collapsed-background: map-get($tokens, 'code-block-#{$scheme}-filled-collapse-collapsed-background'),
|
|
456
|
+
button-expand-background: map-get(
|
|
457
|
+
$tokens, 'code-block-#{$scheme}-filled-collapse-button-expand-background'
|
|
458
|
+
)
|
|
451
459
|
)
|
|
452
460
|
),
|
|
453
461
|
outline: (
|
|
454
462
|
container: (
|
|
455
463
|
background: map-get($tokens, 'code-block-#{$scheme}-outline-container-background'),
|
|
456
464
|
border: map-get($tokens, 'code-block-#{$scheme}-outline-container-border-color'),
|
|
457
|
-
shadow: map-get($tokens, 'code-block-#{$scheme}-outline-container-shadow')
|
|
458
465
|
),
|
|
459
466
|
header: (
|
|
460
|
-
background: map-get($tokens, 'code-block-#{$scheme}-outline-header-background')
|
|
467
|
+
background: map-get($tokens, 'code-block-#{$scheme}-outline-header-background'),
|
|
468
|
+
shadow: map-get($tokens, 'code-block-#{$scheme}-outline-header-shadow')
|
|
461
469
|
),
|
|
462
470
|
actionbar: (
|
|
463
471
|
fade-gradient: map-get($tokens, 'code-block-#{$scheme}-outline-actionbar-fade-gradient'),
|
|
@@ -465,7 +473,10 @@
|
|
|
465
473
|
),
|
|
466
474
|
collapse: (
|
|
467
475
|
expanded-background: map-get($tokens, 'code-block-#{$scheme}-outline-collapse-expanded-background'),
|
|
468
|
-
collapsed-background: map-get($tokens, 'code-block-#{$scheme}-outline-collapse-collapsed-background')
|
|
476
|
+
collapsed-background: map-get($tokens, 'code-block-#{$scheme}-outline-collapse-collapsed-background'),
|
|
477
|
+
button-expand-background: map-get(
|
|
478
|
+
$tokens, 'code-block-#{$scheme}-outline-collapse-button-expand-background'
|
|
479
|
+
)
|
|
469
480
|
)
|
|
470
481
|
),
|
|
471
482
|
|
|
@@ -500,6 +511,7 @@
|
|
|
500
511
|
function-color: map-get($tokens, 'code-block-#{$scheme}-hljs-function-color'),
|
|
501
512
|
keyword-background: map-get($tokens, 'code-block-#{$scheme}-hljs-keyword-background'),
|
|
502
513
|
keyword-color: map-get($tokens, 'code-block-#{$scheme}-hljs-keyword-color'),
|
|
514
|
+
line-numbers-color: map-get($tokens, 'code-block-#{$scheme}-hljs-line-numbers-color'),
|
|
503
515
|
link-background: map-get($tokens, 'code-block-#{$scheme}-hljs-link-background'),
|
|
504
516
|
link-color: map-get($tokens, 'code-block-#{$scheme}-hljs-link-color'),
|
|
505
517
|
literal-background: map-get($tokens, 'code-block-#{$scheme}-hljs-literal-background'),
|
|
@@ -1009,19 +1021,40 @@
|
|
|
1009
1021
|
|
|
1010
1022
|
$navbar: (
|
|
1011
1023
|
background: map-get($tokens, 'navbar-#{$scheme}-background'),
|
|
1024
|
+
border: map-get($tokens, 'navbar-#{$scheme}-border'),
|
|
1012
1025
|
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1026
|
+
item: (
|
|
1027
|
+
default: (
|
|
1028
|
+
background: map-get($tokens, 'navbar-item-#{$scheme}-default-content-background'),
|
|
1029
|
+
text: map-get($tokens, 'navbar-item-#{$scheme}-default-content-text'),
|
|
1030
|
+
icon-left: map-get($tokens, 'navbar-item-#{$scheme}-default-content-icon-left'),
|
|
1031
|
+
icon-right: map-get($tokens, 'navbar-item-#{$scheme}-default-content-icon-right')
|
|
1032
|
+
),
|
|
1033
|
+
hover: (
|
|
1034
|
+
background: map-get($tokens, 'navbar-item-#{$scheme}-states-hover-content-background'),
|
|
1035
|
+
text: map-get($tokens, 'navbar-item-#{$scheme}-states-hover-content-text'),
|
|
1036
|
+
icon-left: map-get($tokens, 'navbar-item-#{$scheme}-states-hover-content-icon-left'),
|
|
1037
|
+
icon-right: map-get($tokens, 'navbar-item-#{$scheme}-states-hover-content-icon-right')
|
|
1038
|
+
),
|
|
1039
|
+
selected: (
|
|
1040
|
+
background: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-content-background'),
|
|
1041
|
+
text: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-content-text'),
|
|
1042
|
+
icon-left: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-content-icon-left'),
|
|
1043
|
+
icon-right: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-content-icon-right')
|
|
1044
|
+
),
|
|
1045
|
+
selected-hover: (
|
|
1046
|
+
background: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-background'),
|
|
1047
|
+
text: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-text'),
|
|
1048
|
+
icon-left: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-icon-left'),
|
|
1049
|
+
icon-right: map-get($tokens, 'navbar-item-#{$scheme}-states-selected-hover-content-icon-right')
|
|
1050
|
+
),
|
|
1051
|
+
disabled: (
|
|
1052
|
+
background: map-get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-background'),
|
|
1053
|
+
text: map-get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-text'),
|
|
1054
|
+
icon-left: map-get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-icon-left'),
|
|
1055
|
+
icon-right: map-get($tokens, 'navbar-item-#{$scheme}-states-disabled-content-icon-right')
|
|
1056
|
+
)
|
|
1057
|
+
)
|
|
1025
1058
|
);
|
|
1026
1059
|
|
|
1027
1060
|
$popover: (
|
|
@@ -1697,7 +1730,8 @@
|
|
|
1697
1730
|
|
|
1698
1731
|
$timezone: (
|
|
1699
1732
|
text: map-get($tokens, 'timezone-option-#{$scheme}-text'),
|
|
1700
|
-
caption: map-get($tokens, 'timezone-option-#{$scheme}-caption')
|
|
1733
|
+
caption: map-get($tokens, 'timezone-option-#{$scheme}-caption'),
|
|
1734
|
+
optgroup-label: map-get($tokens, 'timezone-option-#{$scheme}-optgroup-label')
|
|
1701
1735
|
);
|
|
1702
1736
|
|
|
1703
1737
|
$toast: (
|
|
@@ -1783,7 +1817,12 @@
|
|
|
1783
1817
|
default: map-get($tokens, 'scrollbar-#{$scheme}-thumb-default-background'),
|
|
1784
1818
|
hover: map-get($tokens, 'scrollbar-#{$scheme}-thumb-hover-background'),
|
|
1785
1819
|
active: map-get($tokens, 'scrollbar-#{$scheme}-thumb-active-background'),
|
|
1786
|
-
disabled: map-get($tokens, 'scrollbar-#{$scheme}-thumb-disabled-background')
|
|
1820
|
+
disabled: map-get($tokens, 'scrollbar-#{$scheme}-thumb-disabled-background'),
|
|
1821
|
+
track: (
|
|
1822
|
+
default: map-get($tokens, 'scrollbar-#{$scheme}-track-default-background'),
|
|
1823
|
+
hover: map-get($tokens, 'scrollbar-#{$scheme}-track-hover-background'),
|
|
1824
|
+
active: map-get($tokens, 'scrollbar-#{$scheme}-track-active-background'),
|
|
1825
|
+
)
|
|
1787
1826
|
);
|
|
1788
1827
|
|
|
1789
1828
|
@return (
|
|
@@ -1813,7 +1852,6 @@
|
|
|
1813
1852
|
modal: $modal,
|
|
1814
1853
|
markdown: $markdown,
|
|
1815
1854
|
navbar: $navbar,
|
|
1816
|
-
navbar-item: $navbar-item,
|
|
1817
1855
|
popover: $popover,
|
|
1818
1856
|
progress-bar: $progress-bar,
|
|
1819
1857
|
progress-spinner: $progress-spinner,
|