@semcore/data-table 4.50.0 → 4.50.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/CHANGELOG.md +6 -0
- package/lib/cjs/Body.js +6 -4
- package/lib/cjs/Body.js.map +1 -1
- package/lib/cjs/DataTable.js +39 -37
- package/lib/cjs/DataTable.js.map +1 -1
- package/lib/es6/Body.js +6 -4
- package/lib/es6/Body.js.map +1 -1
- package/lib/es6/DataTable.js +39 -37
- package/lib/es6/DataTable.js.map +1 -1
- package/lib/esm/Body.mjs +348 -238
- package/lib/esm/DataTable.mjs +483 -336
- package/lib/esm/Head.mjs +317 -206
- package/lib/esm/index.mjs +6 -6
- package/lib/esm/style/data-table.shadow.css +413 -0
- package/lib/esm/style/scroll-shadows.shadow.css +7 -0
- package/lib/esm/translations/__intergalactic-dynamic-locales.mjs +30 -30
- package/lib/esm/translations/de.json.mjs +5 -4
- package/lib/esm/translations/en.json.mjs +5 -4
- package/lib/esm/translations/es.json.mjs +5 -4
- package/lib/esm/translations/fr.json.mjs +5 -4
- package/lib/esm/translations/it.json.mjs +5 -4
- package/lib/esm/translations/ja.json.mjs +5 -4
- package/lib/esm/translations/ko.json.mjs +5 -4
- package/lib/esm/translations/nl.json.mjs +5 -4
- package/lib/esm/translations/pl.json.mjs +5 -4
- package/lib/esm/translations/pt.json.mjs +5 -4
- package/lib/esm/translations/sv.json.mjs +5 -4
- package/lib/esm/translations/tr.json.mjs +5 -4
- package/lib/esm/translations/vi.json.mjs +5 -4
- package/lib/esm/translations/zh.json.mjs +5 -4
- package/lib/esm/utils.mjs +44 -29
- package/package.json +5 -5
|
@@ -0,0 +1,413 @@
|
|
|
1
|
+
SDataTable {
|
|
2
|
+
position: relative;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
SDataTable[compact] {
|
|
6
|
+
& SColumn,
|
|
7
|
+
& SCell {
|
|
8
|
+
padding: var(--intergalactic-spacing-3x, 12px) var(--intergalactic-spacing-2x, 8px);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
SHeadWrapper {
|
|
13
|
+
position: relative;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
SHeadWrapper[animationsDisabled] {
|
|
17
|
+
SColumn {
|
|
18
|
+
transition: none;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
SHeadWrapper[sticky] {
|
|
23
|
+
position: sticky;
|
|
24
|
+
top: 0;
|
|
25
|
+
z-index: 2;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
SHead {
|
|
29
|
+
display: flex;
|
|
30
|
+
position: relative;
|
|
31
|
+
flex-direction: row;
|
|
32
|
+
min-width: fit-content;
|
|
33
|
+
z-index: 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
SColumn {
|
|
37
|
+
display: flex;
|
|
38
|
+
align-items: flex-start;
|
|
39
|
+
flex-grow: 1;
|
|
40
|
+
font-size: var(--intergalactic-fs-100, 12px);
|
|
41
|
+
line-height: var(--intergalactic-lh-100, 133%);
|
|
42
|
+
color: var(--intergalactic-text-primary, #191b23);
|
|
43
|
+
box-sizing: border-box;
|
|
44
|
+
position: relative;
|
|
45
|
+
|
|
46
|
+
&:focus-visible {
|
|
47
|
+
outline: none;
|
|
48
|
+
box-shadow: inset var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5));
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
transition: width calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out, min-width calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out, max-width calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
SColumn[hidden] {
|
|
55
|
+
position: absolute !important;
|
|
56
|
+
width: 1px !important;
|
|
57
|
+
height: 1px !important;
|
|
58
|
+
padding: 0px !important;
|
|
59
|
+
margin: -1px !important;
|
|
60
|
+
overflow: hidden !important;
|
|
61
|
+
clip: rect(0, 0, 0, 0) !important;
|
|
62
|
+
white-space: nowrap !important;
|
|
63
|
+
border-width: 0 !important;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
SColumn[use='primary'] {
|
|
67
|
+
padding: var(--intergalactic-spacing-3x, 12px);
|
|
68
|
+
border-bottom: 1px solid var(--intergalactic-border-secondary, #e0e1e9);
|
|
69
|
+
background-color: var(--intergalactic-table-th-primary-cell, #f4f5f9);
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
SColumn[use='secondary'] {
|
|
73
|
+
padding: var(--intergalactic-spacing-2x, 8px);
|
|
74
|
+
border-bottom: 1px solid var(--intergalactic-border-table-accent, #a9abb6);
|
|
75
|
+
background-color: var(--intergalactic-table-th-secondary-cell, #ffffff);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
SColumn[group][use] {
|
|
79
|
+
display: flex;
|
|
80
|
+
flex-wrap: wrap;
|
|
81
|
+
flex-direction: column;
|
|
82
|
+
align-items: normal;
|
|
83
|
+
border-bottom: none;
|
|
84
|
+
padding: 0;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
SColumn[groupHead] {
|
|
88
|
+
justify-content: center;
|
|
89
|
+
/* for resizable */
|
|
90
|
+
z-index: 1;
|
|
91
|
+
border-bottom: none;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
SColumn[sortable] {
|
|
95
|
+
cursor: pointer;
|
|
96
|
+
|
|
97
|
+
&[use='primary']:hover, &[use='primary']:focus {
|
|
98
|
+
background-color: var(--intergalactic-table-th-primary-cell-hover, #e0e1e9);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&[justifyContent='right']:hover SSortWrapper, &[justifyContent='right']:focus SSortWrapper {
|
|
102
|
+
position: absolute;
|
|
103
|
+
flex-basis: 0;
|
|
104
|
+
right: var(--intergalactic-spacing-3x, 12px);
|
|
105
|
+
}
|
|
106
|
+
&[justifyContent='right'][active] SSortWrapper {
|
|
107
|
+
position: relative;
|
|
108
|
+
flex-basis: inherit;
|
|
109
|
+
right: 0;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
&:hover SSortWrapper, &:focus SSortWrapper, &[active] SSortWrapper {
|
|
113
|
+
flex-basis: calc(var(--intergalactic-spacing-1x, 4px) + 16px);
|
|
114
|
+
opacity: 1;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
&:hover SSortWrapper:before, &:focus SSortWrapper:before, &[active] SSortWrapper:before {
|
|
118
|
+
display: block;
|
|
119
|
+
opacity: 1;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
&:hover SSortIcon, &:focus SSortIcon {
|
|
123
|
+
display: block;
|
|
124
|
+
opacity: 1;
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
SColumn[use='primary'][active] {
|
|
129
|
+
background-color: var(--intergalactic-table-th-primary-cell-active, #e0e1e9);
|
|
130
|
+
width: 100%;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
SColumn[active] SSortIcon {
|
|
134
|
+
display: block;
|
|
135
|
+
opacity: 1;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
SColumn[resizable] {
|
|
139
|
+
border-right: 1px solid transparent;
|
|
140
|
+
|
|
141
|
+
&:hover:after {
|
|
142
|
+
border-right-color: var(--intergalactic-border-table-accent, #a9abb6);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
&:after {
|
|
146
|
+
content: '';
|
|
147
|
+
position: absolute;
|
|
148
|
+
bottom: 0;
|
|
149
|
+
right: -1px;
|
|
150
|
+
height: 100%;
|
|
151
|
+
width: 5px;
|
|
152
|
+
background: transparent;
|
|
153
|
+
cursor: col-resize;
|
|
154
|
+
border-right: 1px solid transparent;
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
SColumn[fixed] {
|
|
159
|
+
position: sticky;
|
|
160
|
+
/* because up resizable */
|
|
161
|
+
z-index: 2;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
SColumn[borderLeft],
|
|
165
|
+
SCell[borderLeft] {
|
|
166
|
+
border-left: 1px solid var(--intergalactic-border-secondary, #e0e1e9);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
SColumn[borderRight],
|
|
170
|
+
SCell[borderRight] {
|
|
171
|
+
border-right: 1px solid var(--intergalactic-border-secondary, #e0e1e9);
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
SSortWrapper {
|
|
175
|
+
flex-shrink: 1;
|
|
176
|
+
position: relative;
|
|
177
|
+
flex-basis: 0;
|
|
178
|
+
min-height: 16px;
|
|
179
|
+
opacity: 0;
|
|
180
|
+
transition: all calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
SSortWrapper:before {
|
|
184
|
+
display: none;
|
|
185
|
+
content: '';
|
|
186
|
+
position: absolute;
|
|
187
|
+
top: 0;
|
|
188
|
+
right: 0;
|
|
189
|
+
width: 20px;
|
|
190
|
+
height: 100%;
|
|
191
|
+
opacity: 0;
|
|
192
|
+
transition: opacity 0.3s ease;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
SSortIcon {
|
|
196
|
+
display: none;
|
|
197
|
+
fill: var(--intergalactic-icon-secondary-neutral-hover-active, #878992);
|
|
198
|
+
position: absolute;
|
|
199
|
+
top: calc(1em * 1.25 - 16px);
|
|
200
|
+
right: 0;
|
|
201
|
+
margin-left: var(--intergalactic-spacing-1x, 4px);
|
|
202
|
+
opacity: 0;
|
|
203
|
+
transition: opacity 0.3s ease;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
SColumn[use='primary'] SSortWrapper:before {
|
|
207
|
+
background: linear-gradient(
|
|
208
|
+
270deg,
|
|
209
|
+
var(--intergalactic-table-th-primary-cell-hover, #e0e1e9) 67.5%,
|
|
210
|
+
rgba(224, 225, 233, 0) 105%
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
SColumn[use='secondary'] SSortWrapper:before {
|
|
215
|
+
background: linear-gradient(
|
|
216
|
+
270deg,
|
|
217
|
+
var(--intergalactic-table-th-secondary-cell, #ffffff) 67.5%,
|
|
218
|
+
rgba(255, 255, 255, 0) 105%
|
|
219
|
+
);
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
SBodyWrapper {
|
|
223
|
+
position: relative;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
SBody {
|
|
227
|
+
display: flex;
|
|
228
|
+
flex-direction: column;
|
|
229
|
+
position: relative;
|
|
230
|
+
min-width: fit-content;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
SRow {
|
|
234
|
+
display: flex;
|
|
235
|
+
flex-direction: row;
|
|
236
|
+
position: relative;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/* DEFAULT THEME */
|
|
240
|
+
SRow[active] > SCell:not([theme]) {
|
|
241
|
+
/* The color is hardcoded because need hex(in figma rgba) */
|
|
242
|
+
/* disable-tokens-validator */
|
|
243
|
+
background-color: var(--intergalactic-table-td-cell-active, #e6e7ed);
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
SRow:hover > SCell:not([theme]),
|
|
247
|
+
SRow SCell:hover + SGroupCell SCell:not([theme]) {
|
|
248
|
+
/* The color is hardcoded because need hex(in figma rgba) */
|
|
249
|
+
/* disable-tokens-validator */
|
|
250
|
+
background-color: var(--intergalactic-table-td-cell-hover, #f0f0f4);
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/* MUTED THEME */
|
|
254
|
+
SRow[theme='muted'] SCell:not([theme]) {
|
|
255
|
+
background-color: var(--intergalactic-table-td-cell-unread, #f4f5f9);
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
SRow[theme='muted'][active] > SCell:not([theme]) {
|
|
259
|
+
/* The color is hardcoded because need hex(in figma rgba) */
|
|
260
|
+
/* disable-tokens-validator */
|
|
261
|
+
background-color: var(--intergalactic-table-td-cell-active, #e6e7ed);
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
SRow:hover > SCell[theme='muted'],
|
|
265
|
+
SRow[theme='muted']:hover > SCell:not([theme]),
|
|
266
|
+
SRow[theme='muted'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
267
|
+
/* The color is hardcoded because need hex(in figma rgba) */
|
|
268
|
+
/* disable-tokens-validator */
|
|
269
|
+
background-color: var(--intergalactic-table-td-cell-hover, #f0f0f4);
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
/* INFO THEME */
|
|
273
|
+
SRow[theme='info'] SCell:not([theme]) {
|
|
274
|
+
background-color: var(--intergalactic-table-td-cell-selected, #e9f7ff);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
SRow[theme='info'][active] > SCell:not([theme]) {
|
|
278
|
+
background-color: var(--intergalactic-table-td-cell-selected-active, #c4e5fe);
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
SRow:hover > SCell[theme='info'],
|
|
282
|
+
SRow[theme='info']:hover > SCell:not([theme]),
|
|
283
|
+
SRow[theme='info'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
284
|
+
background-color: var(--intergalactic-table-td-cell-selected-hover, #c4e5fe);
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/* SUCCESS THEME */
|
|
288
|
+
SRow[theme='success'] SCell:not([theme]) {
|
|
289
|
+
background-color: var(--intergalactic-table-td-cell-new, #dbfee8);
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
SRow[theme='success'][active] > SCell:not([theme]) {
|
|
293
|
+
background-color: var(--intergalactic-table-td-cell-new-active, #9ef2c9);
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
SRow:hover > SCell[theme='success'],
|
|
297
|
+
SRow[theme='success']:hover > SCell:not([theme]),
|
|
298
|
+
SRow[theme='success'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
299
|
+
background-color: var(--intergalactic-table-td-cell-new-hover, #9ef2c9);
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/* WARNING THEME */
|
|
303
|
+
SRow[theme='warning'] SCell:not([theme]) {
|
|
304
|
+
background-color: var(--intergalactic-table-td-cell-warning, #fff3d9);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
SRow[theme='warning'][active] > SCell:not([theme]) {
|
|
308
|
+
background-color: var(--intergalactic-table-td-cell-warning-active, #ffdca2);
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
SRow:hover > SCell[theme='warning'],
|
|
312
|
+
SRow[theme='warning']:hover > SCell:not([theme]),
|
|
313
|
+
SRow[theme='warning'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
314
|
+
background-color: var(--intergalactic-table-td-cell-warning-hover, #ffdca2);
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
/* DANGER THEME */
|
|
318
|
+
SRow[theme='danger'] SCell:not([theme]) {
|
|
319
|
+
background-color: var(--intergalactic-table-td-cell-critical, #fff0f7);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
SRow[theme='danger'][active] > SCell:not([theme]) {
|
|
323
|
+
background-color: var(--intergalactic-table-td-cell-critical-active, #ffd7df);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
SRow:hover > SCell[theme='danger'],
|
|
327
|
+
SRow[theme='danger']:hover > SCell:not([theme]),
|
|
328
|
+
SRow[theme='danger'] SCell:hover + SGroupCell SCell:not([theme]) {
|
|
329
|
+
background-color: var(--intergalactic-table-td-cell-critical-hover, #ffd7df);
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
SRow[positioned] {
|
|
333
|
+
position: absolute;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
SBody[animationsDisabled] SCell {
|
|
337
|
+
transition: none;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
SCell {
|
|
341
|
+
display: flex;
|
|
342
|
+
flex: 1;
|
|
343
|
+
flex-basis: auto;
|
|
344
|
+
font-size: var(--intergalactic-fs-200, 14px);
|
|
345
|
+
line-height: var(--intergalactic-lh-200, 142%);
|
|
346
|
+
color: var(--intergalactic-text-primary, #191b23);
|
|
347
|
+
box-sizing: border-box;
|
|
348
|
+
border-bottom: 1px solid var(--intergalactic-border-secondary, #e0e1e9);
|
|
349
|
+
overflow: hidden;
|
|
350
|
+
white-space: nowrap;
|
|
351
|
+
font-variant-numeric: tabular-nums;
|
|
352
|
+
transition: width calc(var(--intergalactic-duration-extra-fast, 100) * 1ms) ease-in-out;
|
|
353
|
+
outline: none;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
SCell[use='primary'] {
|
|
357
|
+
padding: var(--intergalactic-spacing-3x, 12px);
|
|
358
|
+
min-height: 45px;
|
|
359
|
+
background-color: var(--intergalactic-bg-primary-neutral, #ffffff);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
SCell[use='secondary'] {
|
|
363
|
+
padding: var(--intergalactic-spacing-2x, 8px);
|
|
364
|
+
min-height: 37px;
|
|
365
|
+
background-color: var(--intergalactic-bg-primary-neutral, #ffffff);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
SCell[fixed] {
|
|
369
|
+
position: sticky;
|
|
370
|
+
z-index: 1;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
SCell[theme='muted'] {
|
|
374
|
+
background-color: var(--intergalactic-table-td-cell-unread, #f4f5f9);
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
SCell[theme='info'] {
|
|
378
|
+
background-color: var(--intergalactic-table-td-cell-selected, #e9f7ff);
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
SCell[theme='success'] {
|
|
382
|
+
background-color: var(--intergalactic-table-td-cell-new, #dbfee8);
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
SCell[theme='warning'] {
|
|
386
|
+
background-color: var(--intergalactic-table-td-cell-warning, #fff3d9);
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
SCell[theme='danger'] {
|
|
390
|
+
background-color: var(--intergalactic-table-td-cell-critical, #fff0f7);
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
SCell:focus-visible:not([fixed]) {
|
|
394
|
+
position: relative;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
SCell:focus-visible::after {
|
|
398
|
+
position: absolute;
|
|
399
|
+
display: block;
|
|
400
|
+
content: '';
|
|
401
|
+
inset: 3px;
|
|
402
|
+
box-shadow: var(--intergalactic-keyboard-focus, 0px 0px 0px 3px rgba(0, 143, 248, 0.5));
|
|
403
|
+
pointer-events: none;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
SHeightHold {
|
|
407
|
+
position: absolute;
|
|
408
|
+
top: 0;
|
|
409
|
+
width: 100%;
|
|
410
|
+
pointer-events: none;
|
|
411
|
+
/* should be under other layers */
|
|
412
|
+
z-index: -1;
|
|
413
|
+
}
|
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import
|
|
5
|
-
import
|
|
6
|
-
import
|
|
7
|
-
import
|
|
8
|
-
import
|
|
9
|
-
import
|
|
10
|
-
import
|
|
11
|
-
import
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import
|
|
15
|
-
var
|
|
16
|
-
de
|
|
17
|
-
en
|
|
18
|
-
es
|
|
19
|
-
fr
|
|
20
|
-
it
|
|
21
|
-
ja
|
|
22
|
-
ko
|
|
23
|
-
nl
|
|
24
|
-
pt
|
|
25
|
-
tr
|
|
26
|
-
vi
|
|
27
|
-
zh
|
|
28
|
-
pl
|
|
29
|
-
sv
|
|
1
|
+
import de from "./de.json.mjs";
|
|
2
|
+
import en from "./en.json.mjs";
|
|
3
|
+
import es from "./es.json.mjs";
|
|
4
|
+
import fr from "./fr.json.mjs";
|
|
5
|
+
import it from "./it.json.mjs";
|
|
6
|
+
import ja from "./ja.json.mjs";
|
|
7
|
+
import ko from "./ko.json.mjs";
|
|
8
|
+
import nl from "./nl.json.mjs";
|
|
9
|
+
import pt from "./pt.json.mjs";
|
|
10
|
+
import tr from "./tr.json.mjs";
|
|
11
|
+
import vi from "./vi.json.mjs";
|
|
12
|
+
import zh from "./zh.json.mjs";
|
|
13
|
+
import pl from "./pl.json.mjs";
|
|
14
|
+
import sv from "./sv.json.mjs";
|
|
15
|
+
var localizedMessages = {
|
|
16
|
+
de,
|
|
17
|
+
en,
|
|
18
|
+
es,
|
|
19
|
+
fr,
|
|
20
|
+
it,
|
|
21
|
+
ja,
|
|
22
|
+
ko,
|
|
23
|
+
nl,
|
|
24
|
+
pt,
|
|
25
|
+
tr,
|
|
26
|
+
vi,
|
|
27
|
+
zh,
|
|
28
|
+
pl,
|
|
29
|
+
sv
|
|
30
30
|
};
|
|
31
31
|
export {
|
|
32
|
-
|
|
32
|
+
localizedMessages
|
|
33
33
|
};
|