@public-ui/themes 1.5.0-rc.2 → 1.5.0-rc.21
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/assets/bundes/style.css +4 -4
- package/assets/material-icons/LICENSE +202 -0
- package/assets/material-icons/README.md +129 -0
- package/assets/material-icons/_data/versions.json +2124 -0
- package/assets/material-icons/css/_codepoints.scss +2279 -0
- package/assets/material-icons/css/_mixins.scss +13 -0
- package/assets/material-icons/css/_variables.scss +6 -0
- package/assets/material-icons/css/material-icons.css +9208 -0
- package/assets/material-icons/css/material-icons.min.css +1 -0
- package/assets/material-icons/css/material-icons.scss +39 -0
- package/assets/material-icons/iconfont/_mixins.scss +55 -0
- package/assets/material-icons/iconfont/_variables.scss +3 -0
- package/assets/material-icons/iconfont/filled.css +24 -0
- package/assets/material-icons/iconfont/filled.scss +4 -0
- package/assets/material-icons/iconfont/material-icons-outlined.woff +0 -0
- package/assets/material-icons/iconfont/material-icons-outlined.woff2 +0 -0
- package/assets/material-icons/iconfont/material-icons-round.woff +0 -0
- package/assets/material-icons/iconfont/material-icons-round.woff2 +0 -0
- package/assets/material-icons/iconfont/material-icons-sharp.woff +0 -0
- package/assets/material-icons/iconfont/material-icons-sharp.woff2 +0 -0
- package/assets/material-icons/iconfont/material-icons-two-tone.woff +0 -0
- package/assets/material-icons/iconfont/material-icons-two-tone.woff2 +0 -0
- package/assets/material-icons/iconfont/material-icons.css +124 -0
- package/assets/material-icons/iconfont/material-icons.scss +5 -0
- package/assets/material-icons/iconfont/material-icons.woff +0 -0
- package/assets/material-icons/iconfont/material-icons.woff2 +0 -0
- package/assets/material-icons/iconfont/outlined.css +24 -0
- package/assets/material-icons/iconfont/outlined.scss +4 -0
- package/assets/material-icons/iconfont/round.css +24 -0
- package/assets/material-icons/iconfont/round.scss +4 -0
- package/assets/material-icons/iconfont/sharp.css +24 -0
- package/assets/material-icons/iconfont/sharp.scss +4 -0
- package/assets/material-icons/iconfont/two-tone.css +24 -0
- package/assets/material-icons/iconfont/two-tone.scss +4 -0
- package/assets/material-icons/index.d.ts +2128 -0
- package/assets/material-icons/package.json +52 -0
- package/assets/material-symbols/LICENSE +202 -0
- package/assets/material-symbols/README.md +114 -0
- package/assets/material-symbols/_core.scss +47 -0
- package/assets/material-symbols/index.css +74 -0
- package/assets/material-symbols/index.d.ts +2809 -0
- package/assets/material-symbols/index.scss +3 -0
- package/assets/material-symbols/material-symbols-outlined.woff2 +0 -0
- package/assets/material-symbols/material-symbols-rounded.woff2 +0 -0
- package/assets/material-symbols/material-symbols-sharp.woff2 +0 -0
- package/assets/material-symbols/outlined.css +24 -0
- package/assets/material-symbols/outlined.scss +3 -0
- package/assets/material-symbols/package.json +41 -0
- package/assets/material-symbols/rounded.css +24 -0
- package/assets/material-symbols/rounded.scss +3 -0
- package/assets/material-symbols/sharp.css +24 -0
- package/assets/material-symbols/sharp.scss +3 -0
- package/assets/tabler-icons/fonts/tabler-icons.eot +0 -0
- package/assets/tabler-icons/fonts/tabler-icons.ttf +0 -0
- package/assets/tabler-icons/fonts/tabler-icons.woff +0 -0
- package/assets/tabler-icons/fonts/tabler-icons.woff2 +0 -0
- package/assets/tabler-icons/tabler-icons.css +16056 -0
- package/assets/tabler-icons/tabler-icons.html +36226 -0
- package/assets/tabler-icons/tabler-icons.min.css +4 -0
- package/assets/tabler-icons/tabler-icons.png +0 -0
- package/assets/tabler-icons/tabler-icons.scss +8058 -0
- package/dist/index.cjs +40706 -294
- package/dist/index.d.ts +36 -89
- package/dist/index.mjs +40707 -294
- package/package.json +10 -9
- /package/assets/{favicon.ico → kolibri.ico} +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -16,63 +16,11 @@ declare const BAMF: (patch: (name: string, map: {
|
|
|
16
16
|
"KOL-TEXTAREA"?: string | undefined;
|
|
17
17
|
"KOL-IMAGE"?: string | undefined;
|
|
18
18
|
"KOL-HEADING"?: string | undefined;
|
|
19
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
20
|
-
"KOL-ICON"?: string | undefined;
|
|
21
19
|
"KOL-BADGE"?: string | undefined;
|
|
22
|
-
"KOL-TABS"?: string | undefined;
|
|
23
|
-
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
24
|
-
"KOL-ALERT"?: string | undefined;
|
|
25
|
-
"KOL-AVATAR"?: string | undefined;
|
|
26
|
-
"KOL-BREADCRUMB"?: string | undefined;
|
|
27
|
-
"KOL-BUTTON-GROUP"?: string | undefined;
|
|
28
|
-
"KOL-BUTTON-LINK"?: string | undefined;
|
|
29
|
-
"KOL-DROPDOWN"?: string | undefined;
|
|
30
|
-
"KOL-INDENTED-TEXT"?: string | undefined;
|
|
31
|
-
"KOL-INPUT-CHECKBOX"?: string | undefined;
|
|
32
|
-
"KOL-INPUT-COLOR"?: string | undefined;
|
|
33
|
-
"KOL-INPUT-DATE"?: string | undefined;
|
|
34
|
-
"KOL-INPUT-FILE"?: string | undefined;
|
|
35
|
-
"KOL-INPUT-EMAIL"?: string | undefined;
|
|
36
|
-
"KOL-INPUT-NUMBER"?: string | undefined;
|
|
37
|
-
"KOL-INPUT-PASSWORD"?: string | undefined;
|
|
38
|
-
"KOL-INPUT-RADIO"?: string | undefined;
|
|
39
|
-
"KOL-INPUT-RANGE"?: string | undefined;
|
|
40
|
-
"KOL-INPUT-TEXT"?: string | undefined;
|
|
41
|
-
"KOL-LINK-BUTTON"?: string | undefined;
|
|
42
|
-
"KOL-LINK-GROUP"?: string | undefined;
|
|
43
|
-
"KOL-MODAL"?: string | undefined;
|
|
44
|
-
"KOL-PAGINATION"?: string | undefined;
|
|
45
|
-
"KOL-POPOVER"?: string | undefined;
|
|
46
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
47
|
-
"KOL-SKIP-NAV"?: string | undefined;
|
|
48
|
-
"KOL-SPIN"?: string | undefined;
|
|
49
|
-
"KOL-TOAST"?: string | undefined;
|
|
50
|
-
"KOL-TOOLBAR"?: string | undefined;
|
|
51
|
-
"KOL-TOOLTIP"?: string | undefined;
|
|
52
|
-
}) => string) => string;
|
|
53
|
-
|
|
54
|
-
declare const BMF: (patch: (name: string, map: {
|
|
55
|
-
GLOBAL?: string | undefined;
|
|
56
|
-
PROPERTIES?: string | undefined;
|
|
57
|
-
"KOL-SYMBOL"?: string | undefined;
|
|
58
|
-
"KOL-CARD"?: string | undefined;
|
|
59
|
-
"KOL-ABBR"?: string | undefined;
|
|
60
|
-
"KOL-BUTTON"?: string | undefined;
|
|
61
|
-
"KOL-DETAILS"?: string | undefined;
|
|
62
|
-
"KOL-DIALOG"?: string | undefined;
|
|
63
|
-
"KOL-FORM"?: string | undefined;
|
|
64
|
-
"KOL-LINK"?: string | undefined;
|
|
65
|
-
"KOL-NAV"?: string | undefined;
|
|
66
|
-
"KOL-PROGRESS"?: string | undefined;
|
|
67
|
-
"KOL-SELECT"?: string | undefined;
|
|
68
|
-
"KOL-TABLE"?: string | undefined;
|
|
69
|
-
"KOL-TEXTAREA"?: string | undefined;
|
|
70
|
-
"KOL-IMAGE"?: string | undefined;
|
|
71
|
-
"KOL-HEADING"?: string | undefined;
|
|
72
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
73
20
|
"KOL-ICON"?: string | undefined;
|
|
74
|
-
"KOL-
|
|
21
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
75
22
|
"KOL-TABS"?: string | undefined;
|
|
23
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
76
24
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
77
25
|
"KOL-ALERT"?: string | undefined;
|
|
78
26
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -96,7 +44,6 @@ declare const BMF: (patch: (name: string, map: {
|
|
|
96
44
|
"KOL-MODAL"?: string | undefined;
|
|
97
45
|
"KOL-PAGINATION"?: string | undefined;
|
|
98
46
|
"KOL-POPOVER"?: string | undefined;
|
|
99
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
100
47
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
101
48
|
"KOL-SPIN"?: string | undefined;
|
|
102
49
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -122,10 +69,11 @@ declare const BPA: (patch: (name: string, map: {
|
|
|
122
69
|
"KOL-TEXTAREA"?: string | undefined;
|
|
123
70
|
"KOL-IMAGE"?: string | undefined;
|
|
124
71
|
"KOL-HEADING"?: string | undefined;
|
|
125
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
126
|
-
"KOL-ICON"?: string | undefined;
|
|
127
72
|
"KOL-BADGE"?: string | undefined;
|
|
73
|
+
"KOL-ICON"?: string | undefined;
|
|
74
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
128
75
|
"KOL-TABS"?: string | undefined;
|
|
76
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
129
77
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
130
78
|
"KOL-ALERT"?: string | undefined;
|
|
131
79
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -149,7 +97,6 @@ declare const BPA: (patch: (name: string, map: {
|
|
|
149
97
|
"KOL-MODAL"?: string | undefined;
|
|
150
98
|
"KOL-PAGINATION"?: string | undefined;
|
|
151
99
|
"KOL-POPOVER"?: string | undefined;
|
|
152
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
153
100
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
154
101
|
"KOL-SPIN"?: string | undefined;
|
|
155
102
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -175,10 +122,11 @@ declare const BZSt: (patch: (name: string, map: {
|
|
|
175
122
|
"KOL-TEXTAREA"?: string | undefined;
|
|
176
123
|
"KOL-IMAGE"?: string | undefined;
|
|
177
124
|
"KOL-HEADING"?: string | undefined;
|
|
178
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
179
|
-
"KOL-ICON"?: string | undefined;
|
|
180
125
|
"KOL-BADGE"?: string | undefined;
|
|
126
|
+
"KOL-ICON"?: string | undefined;
|
|
127
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
181
128
|
"KOL-TABS"?: string | undefined;
|
|
129
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
182
130
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
183
131
|
"KOL-ALERT"?: string | undefined;
|
|
184
132
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -202,7 +150,6 @@ declare const BZSt: (patch: (name: string, map: {
|
|
|
202
150
|
"KOL-MODAL"?: string | undefined;
|
|
203
151
|
"KOL-PAGINATION"?: string | undefined;
|
|
204
152
|
"KOL-POPOVER"?: string | undefined;
|
|
205
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
206
153
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
207
154
|
"KOL-SPIN"?: string | undefined;
|
|
208
155
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -210,7 +157,7 @@ declare const BZSt: (patch: (name: string, map: {
|
|
|
210
157
|
"KOL-TOOLTIP"?: string | undefined;
|
|
211
158
|
}) => string) => string;
|
|
212
159
|
|
|
213
|
-
declare const
|
|
160
|
+
declare const BMF: (patch: (name: string, map: {
|
|
214
161
|
GLOBAL?: string | undefined;
|
|
215
162
|
PROPERTIES?: string | undefined;
|
|
216
163
|
"KOL-SYMBOL"?: string | undefined;
|
|
@@ -228,10 +175,11 @@ declare const DEFAULT: (patch: (name: string, map: {
|
|
|
228
175
|
"KOL-TEXTAREA"?: string | undefined;
|
|
229
176
|
"KOL-IMAGE"?: string | undefined;
|
|
230
177
|
"KOL-HEADING"?: string | undefined;
|
|
231
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
232
|
-
"KOL-ICON"?: string | undefined;
|
|
233
178
|
"KOL-BADGE"?: string | undefined;
|
|
179
|
+
"KOL-ICON"?: string | undefined;
|
|
180
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
234
181
|
"KOL-TABS"?: string | undefined;
|
|
182
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
235
183
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
236
184
|
"KOL-ALERT"?: string | undefined;
|
|
237
185
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -255,7 +203,6 @@ declare const DEFAULT: (patch: (name: string, map: {
|
|
|
255
203
|
"KOL-MODAL"?: string | undefined;
|
|
256
204
|
"KOL-PAGINATION"?: string | undefined;
|
|
257
205
|
"KOL-POPOVER"?: string | undefined;
|
|
258
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
259
206
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
260
207
|
"KOL-SPIN"?: string | undefined;
|
|
261
208
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -281,10 +228,11 @@ declare const DESYv1: (patch: (name: string, map: {
|
|
|
281
228
|
"KOL-TEXTAREA"?: string | undefined;
|
|
282
229
|
"KOL-IMAGE"?: string | undefined;
|
|
283
230
|
"KOL-HEADING"?: string | undefined;
|
|
284
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
285
|
-
"KOL-ICON"?: string | undefined;
|
|
286
231
|
"KOL-BADGE"?: string | undefined;
|
|
232
|
+
"KOL-ICON"?: string | undefined;
|
|
233
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
287
234
|
"KOL-TABS"?: string | undefined;
|
|
235
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
288
236
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
289
237
|
"KOL-ALERT"?: string | undefined;
|
|
290
238
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -308,7 +256,6 @@ declare const DESYv1: (patch: (name: string, map: {
|
|
|
308
256
|
"KOL-MODAL"?: string | undefined;
|
|
309
257
|
"KOL-PAGINATION"?: string | undefined;
|
|
310
258
|
"KOL-POPOVER"?: string | undefined;
|
|
311
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
312
259
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
313
260
|
"KOL-SPIN"?: string | undefined;
|
|
314
261
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -334,10 +281,11 @@ declare const DESYv2: (patch: (name: string, map: {
|
|
|
334
281
|
"KOL-TEXTAREA"?: string | undefined;
|
|
335
282
|
"KOL-IMAGE"?: string | undefined;
|
|
336
283
|
"KOL-HEADING"?: string | undefined;
|
|
337
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
338
|
-
"KOL-ICON"?: string | undefined;
|
|
339
284
|
"KOL-BADGE"?: string | undefined;
|
|
285
|
+
"KOL-ICON"?: string | undefined;
|
|
286
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
340
287
|
"KOL-TABS"?: string | undefined;
|
|
288
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
341
289
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
342
290
|
"KOL-ALERT"?: string | undefined;
|
|
343
291
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -361,7 +309,6 @@ declare const DESYv2: (patch: (name: string, map: {
|
|
|
361
309
|
"KOL-MODAL"?: string | undefined;
|
|
362
310
|
"KOL-PAGINATION"?: string | undefined;
|
|
363
311
|
"KOL-POPOVER"?: string | undefined;
|
|
364
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
365
312
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
366
313
|
"KOL-SPIN"?: string | undefined;
|
|
367
314
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -387,10 +334,11 @@ declare const ECL_EC: (patch: (name: string, map: {
|
|
|
387
334
|
"KOL-TEXTAREA"?: string | undefined;
|
|
388
335
|
"KOL-IMAGE"?: string | undefined;
|
|
389
336
|
"KOL-HEADING"?: string | undefined;
|
|
390
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
391
|
-
"KOL-ICON"?: string | undefined;
|
|
392
337
|
"KOL-BADGE"?: string | undefined;
|
|
338
|
+
"KOL-ICON"?: string | undefined;
|
|
339
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
393
340
|
"KOL-TABS"?: string | undefined;
|
|
341
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
394
342
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
395
343
|
"KOL-ALERT"?: string | undefined;
|
|
396
344
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -414,7 +362,6 @@ declare const ECL_EC: (patch: (name: string, map: {
|
|
|
414
362
|
"KOL-MODAL"?: string | undefined;
|
|
415
363
|
"KOL-PAGINATION"?: string | undefined;
|
|
416
364
|
"KOL-POPOVER"?: string | undefined;
|
|
417
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
418
365
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
419
366
|
"KOL-SPIN"?: string | undefined;
|
|
420
367
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -440,10 +387,11 @@ declare const ECL_EU: (patch: (name: string, map: {
|
|
|
440
387
|
"KOL-TEXTAREA"?: string | undefined;
|
|
441
388
|
"KOL-IMAGE"?: string | undefined;
|
|
442
389
|
"KOL-HEADING"?: string | undefined;
|
|
443
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
444
|
-
"KOL-ICON"?: string | undefined;
|
|
445
390
|
"KOL-BADGE"?: string | undefined;
|
|
391
|
+
"KOL-ICON"?: string | undefined;
|
|
392
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
446
393
|
"KOL-TABS"?: string | undefined;
|
|
394
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
447
395
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
448
396
|
"KOL-ALERT"?: string | undefined;
|
|
449
397
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -467,7 +415,6 @@ declare const ECL_EU: (patch: (name: string, map: {
|
|
|
467
415
|
"KOL-MODAL"?: string | undefined;
|
|
468
416
|
"KOL-PAGINATION"?: string | undefined;
|
|
469
417
|
"KOL-POPOVER"?: string | undefined;
|
|
470
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
471
418
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
472
419
|
"KOL-SPIN"?: string | undefined;
|
|
473
420
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -493,10 +440,11 @@ declare const ITZBund: (patch: (name: string, map: {
|
|
|
493
440
|
"KOL-TEXTAREA"?: string | undefined;
|
|
494
441
|
"KOL-IMAGE"?: string | undefined;
|
|
495
442
|
"KOL-HEADING"?: string | undefined;
|
|
496
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
497
|
-
"KOL-ICON"?: string | undefined;
|
|
498
443
|
"KOL-BADGE"?: string | undefined;
|
|
444
|
+
"KOL-ICON"?: string | undefined;
|
|
445
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
499
446
|
"KOL-TABS"?: string | undefined;
|
|
447
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
500
448
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
501
449
|
"KOL-ALERT"?: string | undefined;
|
|
502
450
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -520,7 +468,6 @@ declare const ITZBund: (patch: (name: string, map: {
|
|
|
520
468
|
"KOL-MODAL"?: string | undefined;
|
|
521
469
|
"KOL-PAGINATION"?: string | undefined;
|
|
522
470
|
"KOL-POPOVER"?: string | undefined;
|
|
523
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
524
471
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
525
472
|
"KOL-SPIN"?: string | undefined;
|
|
526
473
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -546,10 +493,11 @@ declare const MAPZ: (patch: (name: string, map: {
|
|
|
546
493
|
"KOL-TEXTAREA"?: string | undefined;
|
|
547
494
|
"KOL-IMAGE"?: string | undefined;
|
|
548
495
|
"KOL-HEADING"?: string | undefined;
|
|
549
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
550
|
-
"KOL-ICON"?: string | undefined;
|
|
551
496
|
"KOL-BADGE"?: string | undefined;
|
|
497
|
+
"KOL-ICON"?: string | undefined;
|
|
498
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
552
499
|
"KOL-TABS"?: string | undefined;
|
|
500
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
553
501
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
554
502
|
"KOL-ALERT"?: string | undefined;
|
|
555
503
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -573,7 +521,6 @@ declare const MAPZ: (patch: (name: string, map: {
|
|
|
573
521
|
"KOL-MODAL"?: string | undefined;
|
|
574
522
|
"KOL-PAGINATION"?: string | undefined;
|
|
575
523
|
"KOL-POPOVER"?: string | undefined;
|
|
576
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
577
524
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
578
525
|
"KOL-SPIN"?: string | undefined;
|
|
579
526
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -599,10 +546,11 @@ declare const ZOLLv2: (patch: (name: string, map: {
|
|
|
599
546
|
"KOL-TEXTAREA"?: string | undefined;
|
|
600
547
|
"KOL-IMAGE"?: string | undefined;
|
|
601
548
|
"KOL-HEADING"?: string | undefined;
|
|
602
|
-
"KOL-ACCORDION"?: string | undefined;
|
|
603
|
-
"KOL-ICON"?: string | undefined;
|
|
604
549
|
"KOL-BADGE"?: string | undefined;
|
|
550
|
+
"KOL-ICON"?: string | undefined;
|
|
551
|
+
"KOL-SEPARATOR"?: string | undefined;
|
|
605
552
|
"KOL-TABS"?: string | undefined;
|
|
553
|
+
"KOL-ACCORDION"?: string | undefined;
|
|
606
554
|
"KOL-ACCORDION-GROUP"?: string | undefined;
|
|
607
555
|
"KOL-ALERT"?: string | undefined;
|
|
608
556
|
"KOL-AVATAR"?: string | undefined;
|
|
@@ -626,7 +574,6 @@ declare const ZOLLv2: (patch: (name: string, map: {
|
|
|
626
574
|
"KOL-MODAL"?: string | undefined;
|
|
627
575
|
"KOL-PAGINATION"?: string | undefined;
|
|
628
576
|
"KOL-POPOVER"?: string | undefined;
|
|
629
|
-
"KOL-SEPARATOR"?: string | undefined;
|
|
630
577
|
"KOL-SKIP-NAV"?: string | undefined;
|
|
631
578
|
"KOL-SPIN"?: string | undefined;
|
|
632
579
|
"KOL-TOAST"?: string | undefined;
|
|
@@ -639,10 +586,10 @@ declare const DE: (patch: (name: "ab" | "aa" | "af" | "ak" | "sq" | "am" | "ar"
|
|
|
639
586
|
"kol-success"?: string | undefined;
|
|
640
587
|
"kol-warning"?: string | undefined;
|
|
641
588
|
"kol-error"?: string | undefined;
|
|
642
|
-
"kol-close"?: string | undefined;
|
|
643
589
|
"kol-of"?: string | undefined;
|
|
644
590
|
"kol-characters"?: string | undefined;
|
|
645
591
|
"kol-message"?: string | undefined;
|
|
592
|
+
"kol-close"?: string | undefined;
|
|
646
593
|
"kol-form-description"?: string | undefined;
|
|
647
594
|
"kol-new"?: string | undefined;
|
|
648
595
|
"kol-no-entries"?: string | undefined;
|
|
@@ -669,10 +616,10 @@ declare const EN: (patch: (name: "ab" | "aa" | "af" | "ak" | "sq" | "am" | "ar"
|
|
|
669
616
|
"kol-success"?: string | undefined;
|
|
670
617
|
"kol-warning"?: string | undefined;
|
|
671
618
|
"kol-error"?: string | undefined;
|
|
672
|
-
"kol-close"?: string | undefined;
|
|
673
619
|
"kol-of"?: string | undefined;
|
|
674
620
|
"kol-characters"?: string | undefined;
|
|
675
621
|
"kol-message"?: string | undefined;
|
|
622
|
+
"kol-close"?: string | undefined;
|
|
676
623
|
"kol-form-description"?: string | undefined;
|
|
677
624
|
"kol-new"?: string | undefined;
|
|
678
625
|
"kol-no-entries"?: string | undefined;
|
|
@@ -694,4 +641,4 @@ declare const EN: (patch: (name: "ab" | "aa" | "af" | "ak" | "sq" | "am" | "ar"
|
|
|
694
641
|
"kol-kolibri-logo"?: string | undefined;
|
|
695
642
|
}) => "ab" | "aa" | "af" | "ak" | "sq" | "am" | "ar" | "an" | "hy" | "as" | "av" | "ae" | "ay" | "az" | "bm" | "ba" | "eu" | "be" | "bn" | "bh" | "bi" | "nb" | "bs" | "br" | "bg" | "my" | "es" | "ca" | "km" | "ch" | "ce" | "ny" | "zh" | "za" | "cu" | "cv" | "kw" | "co" | "cr" | "hr" | "cs" | "da" | "dv" | "nl" | "dz" | "en" | "eo" | "et" | "ee" | "fo" | "fj" | "fi" | "fr" | "ff" | "gd" | "gl" | "lg" | "ka" | "de" | "ki" | "el" | "kl" | "gn" | "gu" | "ht" | "ha" | "he" | "hz" | "hi" | "ho" | "hu" | "is" | "io" | "ig" | "id" | "ia" | "ie" | "iu" | "ik" | "ga" | "it" | "ja" | "jv" | "kn" | "kr" | "ks" | "kk" | "rw" | "ky" | "kv" | "kg" | "ko" | "kj" | "ku" | "lo" | "la" | "lv" | "lb" | "li" | "ln" | "lt" | "lu" | "mk" | "mg" | "ms" | "ml" | "mt" | "gv" | "mi" | "mr" | "mh" | "ro" | "mn" | "na" | "nv" | "nd" | "nr" | "ng" | "ne" | "se" | "no" | "nn" | "ii" | "oc" | "oj" | "or" | "om" | "os" | "pi" | "pa" | "ps" | "fa" | "pl" | "pt" | "qu" | "rm" | "rn" | "ru" | "sm" | "sg" | "sa" | "sc" | "sr" | "sn" | "sd" | "si" | "sk" | "sl" | "so" | "st" | "su" | "sw" | "ss" | "sv" | "tl" | "ty" | "tg" | "ta" | "tt" | "te" | "th" | "bo" | "ti" | "to" | "ts" | "tn" | "tr" | "tk" | "tw" | "ug" | "uk" | "ur" | "uz" | "ve" | "vi" | "vo" | "wa" | "cy" | "fy" | "wo" | "xh" | "yi" | "yo" | "zu") => "ab" | "aa" | "af" | "ak" | "sq" | "am" | "ar" | "an" | "hy" | "as" | "av" | "ae" | "ay" | "az" | "bm" | "ba" | "eu" | "be" | "bn" | "bh" | "bi" | "nb" | "bs" | "br" | "bg" | "my" | "es" | "ca" | "km" | "ch" | "ce" | "ny" | "zh" | "za" | "cu" | "cv" | "kw" | "co" | "cr" | "hr" | "cs" | "da" | "dv" | "nl" | "dz" | "en" | "eo" | "et" | "ee" | "fo" | "fj" | "fi" | "fr" | "ff" | "gd" | "gl" | "lg" | "ka" | "de" | "ki" | "el" | "kl" | "gn" | "gu" | "ht" | "ha" | "he" | "hz" | "hi" | "ho" | "hu" | "is" | "io" | "ig" | "id" | "ia" | "ie" | "iu" | "ik" | "ga" | "it" | "ja" | "jv" | "kn" | "kr" | "ks" | "kk" | "rw" | "ky" | "kv" | "kg" | "ko" | "kj" | "ku" | "lo" | "la" | "lv" | "lb" | "li" | "ln" | "lt" | "lu" | "mk" | "mg" | "ms" | "ml" | "mt" | "gv" | "mi" | "mr" | "mh" | "ro" | "mn" | "na" | "nv" | "nd" | "nr" | "ng" | "ne" | "se" | "no" | "nn" | "ii" | "oc" | "oj" | "or" | "om" | "os" | "pi" | "pa" | "ps" | "fa" | "pl" | "pt" | "qu" | "rm" | "rn" | "ru" | "sm" | "sg" | "sa" | "sc" | "sr" | "sn" | "sd" | "si" | "sk" | "sl" | "so" | "st" | "su" | "sw" | "ss" | "sv" | "tl" | "ty" | "tg" | "ta" | "tt" | "te" | "th" | "bo" | "ti" | "to" | "ts" | "tn" | "tr" | "tk" | "tw" | "ug" | "uk" | "ur" | "uz" | "ve" | "vi" | "vo" | "wa" | "cy" | "fy" | "wo" | "xh" | "yi" | "yo" | "zu";
|
|
696
643
|
|
|
697
|
-
export { BAMF, BMF, BPA, BZSt, DE,
|
|
644
|
+
export { BAMF, BMF, BPA, BZSt, DE, DESYv1, DESYv2, ECL_EC, ECL_EU, EN, ITZBund, MAPZ, ZOLLv2 };
|