@schukai/monster 4.149.1 → 4.150.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/package.json +1 -1
- package/source/components/accessibility/locale-picker.mjs +22 -14
- package/source/components/accessibility/locale-select.mjs +2 -0
- package/source/components/content/stylesheet/camera-capture.mjs +1 -1
- package/source/components/content/stylesheet/copy.mjs +1 -1
- package/source/components/content/viewer/message.mjs +22 -0
- package/source/components/content/viewer/stylesheet/message.mjs +1 -1
- package/source/components/content/viewer.mjs +6 -6
- package/source/components/datatable/datatable.mjs +139 -7
- package/source/components/datatable/filter/date-range.mjs +168 -3
- package/source/components/datatable/filter/input.mjs +47 -3
- package/source/components/datatable/filter/range.mjs +91 -3
- package/source/components/datatable/filter-button.mjs +47 -3
- package/source/components/datatable/filter.mjs +11 -0
- package/source/components/datatable/save-button.mjs +47 -3
- package/source/components/datatable/style/column-bar.pcss +4 -1
- package/source/components/datatable/style/datatable.pcss +12 -3
- package/source/components/datatable/style/filter-controls-defaults.pcss +4 -1
- package/source/components/datatable/stylesheet/column-bar.mjs +3 -1
- package/source/components/datatable/stylesheet/datatable.mjs +11 -3
- package/source/components/datatable/stylesheet/filter-controls-defaults.mjs +5 -1
- package/source/components/files/file-manager.mjs +96 -13
- package/source/components/form/buy-box.mjs +87 -87
- package/source/components/form/cart-control.mjs +24 -24
- package/source/components/form/credential-button.mjs +13 -0
- package/source/components/form/field-set.mjs +80 -3
- package/source/components/form/login.mjs +143 -96
- package/source/components/form/register-wizard.mjs +298 -298
- package/source/components/form/select.mjs +103 -79
- package/source/components/form/style/checklist.pcss +4 -1
- package/source/components/form/style/choice-cards.pcss +16 -4
- package/source/components/form/style/digits.pcss +4 -1
- package/source/components/form/style/field-layout.pcss +4 -1
- package/source/components/form/style/mixin/field-set-layout.pcss +8 -2
- package/source/components/form/style/select.pcss +12 -3
- package/source/components/form/style/toggle-switch.pcss +8 -0
- package/source/components/form/style/variant-select.pcss +8 -2
- package/source/components/form/stylesheet/button-bar.mjs +1 -1
- package/source/components/form/stylesheet/checklist.mjs +3 -1
- package/source/components/form/stylesheet/choice-cards.mjs +9 -1
- package/source/components/form/stylesheet/confirm-button.mjs +1 -1
- package/source/components/form/stylesheet/context-error.mjs +1 -1
- package/source/components/form/stylesheet/context-help.mjs +1 -1
- package/source/components/form/stylesheet/control-bar.mjs +1 -1
- package/source/components/form/stylesheet/digits.mjs +5 -1
- package/source/components/form/stylesheet/field-layout.mjs +5 -1
- package/source/components/form/stylesheet/field-set.mjs +5 -1
- package/source/components/form/stylesheet/form.mjs +3 -1
- package/source/components/form/stylesheet/input-group.mjs +3 -1
- package/source/components/form/stylesheet/login.mjs +3 -1
- package/source/components/form/stylesheet/popper-button.mjs +3 -1
- package/source/components/form/stylesheet/register-wizard.mjs +3 -1
- package/source/components/form/stylesheet/repeat-field-set-items.mjs +3 -1
- package/source/components/form/stylesheet/select.mjs +8 -2
- package/source/components/form/stylesheet/toggle-switch.mjs +5 -1
- package/source/components/form/stylesheet/variant-select.mjs +5 -1
- package/source/components/form/variant-select.mjs +17 -17
- package/source/components/form/wizard.mjs +20 -20
- package/source/components/host/stylesheet/host.mjs +3 -1
- package/source/components/layout/details.mjs +47 -3
- package/source/components/layout/style/tabs.pcss +16 -4
- package/source/components/layout/style/vertical-tabs.pcss +4 -1
- package/source/components/layout/stylesheet/overlay.mjs +3 -1
- package/source/components/layout/stylesheet/popper.mjs +1 -1
- package/source/components/layout/stylesheet/tabs.mjs +12 -4
- package/source/components/layout/stylesheet/vertical-tabs.mjs +3 -1
- package/source/components/layout/tabs.mjs +65 -10
- package/source/components/layout/vertical-tabs.mjs +65 -10
- package/source/components/style/floating-ui.css +13 -0
- package/source/components/style/floating-ui.pcss +4 -0
- package/source/components/style/form.css +3 -1
- package/source/components/style/form.pcss +8 -2
- package/source/components/style/theme-modern.css +2 -2
- package/source/components/style/theme-modern.pcss +4 -4
- package/source/components/stylesheet/floating-ui.mjs +1 -1
- package/source/components/stylesheet/form.mjs +3 -1
- package/source/components/stylesheet/theme-modern.mjs +2 -2
- package/source/components/time/month-calendar.mjs +75 -2
- package/source/components/tree-menu/style/tree-menu.pcss +12 -1
- package/source/components/tree-menu/stylesheet/tree-menu.mjs +7 -1
- package/source/i18n/internal.mjs +60 -18
- package/source/i18n/map/languages.mjs +2 -1
- package/source/i18n/time-ago.mjs +129 -0
- package/test/cases/components/datatable/datasource-rest-lifecycle.mjs +9 -1
- package/test/cases/components/form/locale-defaults.mjs +58 -0
- package/test/cases/components/form/popper-button.mjs +12 -0
- package/test/cases/components/form/register-wizard.mjs +15 -0
- package/test/cases/components/style/theme-accent.mjs +137 -0
- package/test/cases/components/style/theme-modern.mjs +10 -1
- package/test/cases/i18n/built-in-locales.mjs +151 -0
- package/test/cases/i18n/time-ago.mjs +52 -32
|
@@ -337,7 +337,7 @@ function getTranslations() {
|
|
|
337
337
|
weeks: "Semaines",
|
|
338
338
|
moreThanValue: "Plus de",
|
|
339
339
|
};
|
|
340
|
-
case "
|
|
340
|
+
case "es":
|
|
341
341
|
return {
|
|
342
342
|
singleValue: "Valor",
|
|
343
343
|
fromValue: "Desde",
|
|
@@ -352,6 +352,126 @@ function getTranslations() {
|
|
|
352
352
|
weeks: "Semanas",
|
|
353
353
|
moreThanValue: "Más de",
|
|
354
354
|
};
|
|
355
|
+
case "zh":
|
|
356
|
+
return {
|
|
357
|
+
singleValue: "值",
|
|
358
|
+
fromValue: "从",
|
|
359
|
+
toValue: "到",
|
|
360
|
+
rangeFrom: "从",
|
|
361
|
+
rangeTo: "到",
|
|
362
|
+
todayValue: "今天",
|
|
363
|
+
withinValue: "以内",
|
|
364
|
+
months: "个月",
|
|
365
|
+
days: "天",
|
|
366
|
+
years: "年",
|
|
367
|
+
weeks: "周",
|
|
368
|
+
moreThanValue: "超过",
|
|
369
|
+
};
|
|
370
|
+
case "hi":
|
|
371
|
+
return {
|
|
372
|
+
singleValue: "मान",
|
|
373
|
+
fromValue: "से",
|
|
374
|
+
toValue: "तक",
|
|
375
|
+
rangeFrom: "से",
|
|
376
|
+
rangeTo: "तक",
|
|
377
|
+
todayValue: "आज",
|
|
378
|
+
withinValue: "के भीतर",
|
|
379
|
+
months: "महीने",
|
|
380
|
+
days: "दिन",
|
|
381
|
+
years: "वर्ष",
|
|
382
|
+
weeks: "सप्ताह",
|
|
383
|
+
moreThanValue: "से अधिक",
|
|
384
|
+
};
|
|
385
|
+
case "bn":
|
|
386
|
+
return {
|
|
387
|
+
singleValue: "মান",
|
|
388
|
+
fromValue: "থেকে",
|
|
389
|
+
toValue: "পর্যন্ত",
|
|
390
|
+
rangeFrom: "থেকে",
|
|
391
|
+
rangeTo: "পর্যন্ত",
|
|
392
|
+
todayValue: "আজ",
|
|
393
|
+
withinValue: "এর মধ্যে",
|
|
394
|
+
months: "মাস",
|
|
395
|
+
days: "দিন",
|
|
396
|
+
years: "বছর",
|
|
397
|
+
weeks: "সপ্তাহ",
|
|
398
|
+
moreThanValue: "এর বেশি",
|
|
399
|
+
};
|
|
400
|
+
case "pt":
|
|
401
|
+
return {
|
|
402
|
+
singleValue: "Valor",
|
|
403
|
+
fromValue: "De",
|
|
404
|
+
toValue: "Até",
|
|
405
|
+
rangeFrom: "De",
|
|
406
|
+
rangeTo: "Até",
|
|
407
|
+
todayValue: "Hoje",
|
|
408
|
+
withinValue: "Dentro de",
|
|
409
|
+
months: "Meses",
|
|
410
|
+
days: "Dias",
|
|
411
|
+
years: "Anos",
|
|
412
|
+
weeks: "Semanas",
|
|
413
|
+
moreThanValue: "Mais de",
|
|
414
|
+
};
|
|
415
|
+
case "ru":
|
|
416
|
+
return {
|
|
417
|
+
singleValue: "Значение",
|
|
418
|
+
fromValue: "От",
|
|
419
|
+
toValue: "До",
|
|
420
|
+
rangeFrom: "От",
|
|
421
|
+
rangeTo: "До",
|
|
422
|
+
todayValue: "Сегодня",
|
|
423
|
+
withinValue: "В течение",
|
|
424
|
+
months: "Месяцы",
|
|
425
|
+
days: "Дни",
|
|
426
|
+
years: "Годы",
|
|
427
|
+
weeks: "Недели",
|
|
428
|
+
moreThanValue: "Более",
|
|
429
|
+
};
|
|
430
|
+
case "ja":
|
|
431
|
+
return {
|
|
432
|
+
singleValue: "値",
|
|
433
|
+
fromValue: "開始",
|
|
434
|
+
toValue: "終了",
|
|
435
|
+
rangeFrom: "開始",
|
|
436
|
+
rangeTo: "終了",
|
|
437
|
+
todayValue: "今日",
|
|
438
|
+
withinValue: "以内",
|
|
439
|
+
months: "か月",
|
|
440
|
+
days: "日",
|
|
441
|
+
years: "年",
|
|
442
|
+
weeks: "週間",
|
|
443
|
+
moreThanValue: "より前",
|
|
444
|
+
};
|
|
445
|
+
case "pa":
|
|
446
|
+
return {
|
|
447
|
+
singleValue: "ਮੁੱਲ",
|
|
448
|
+
fromValue: "ਤੋਂ",
|
|
449
|
+
toValue: "ਤੱਕ",
|
|
450
|
+
rangeFrom: "ਤੋਂ",
|
|
451
|
+
rangeTo: "ਤੱਕ",
|
|
452
|
+
todayValue: "ਅੱਜ",
|
|
453
|
+
withinValue: "ਦੇ ਅੰਦਰ",
|
|
454
|
+
months: "ਮਹੀਨੇ",
|
|
455
|
+
days: "ਦਿਨ",
|
|
456
|
+
years: "ਸਾਲ",
|
|
457
|
+
weeks: "ਹਫ਼ਤੇ",
|
|
458
|
+
moreThanValue: "ਤੋਂ ਵੱਧ",
|
|
459
|
+
};
|
|
460
|
+
case "mr":
|
|
461
|
+
return {
|
|
462
|
+
singleValue: "मूल्य",
|
|
463
|
+
fromValue: "पासून",
|
|
464
|
+
toValue: "पर्यंत",
|
|
465
|
+
rangeFrom: "पासून",
|
|
466
|
+
rangeTo: "पर्यंत",
|
|
467
|
+
todayValue: "आज",
|
|
468
|
+
withinValue: "च्या आत",
|
|
469
|
+
months: "महिने",
|
|
470
|
+
days: "दिवस",
|
|
471
|
+
years: "वर्षे",
|
|
472
|
+
weeks: "आठवडे",
|
|
473
|
+
moreThanValue: "पेक्षा जास्त",
|
|
474
|
+
};
|
|
355
475
|
case "it":
|
|
356
476
|
return {
|
|
357
477
|
singleValue: "Valore",
|
|
@@ -397,7 +517,22 @@ function getTranslations() {
|
|
|
397
517
|
weeks: "Uker",
|
|
398
518
|
moreThanValue: "Mer enn",
|
|
399
519
|
};
|
|
400
|
-
case "
|
|
520
|
+
case "nl":
|
|
521
|
+
return {
|
|
522
|
+
singleValue: "Waarde",
|
|
523
|
+
fromValue: "Van",
|
|
524
|
+
toValue: "Tot",
|
|
525
|
+
rangeFrom: "Van",
|
|
526
|
+
rangeTo: "Tot",
|
|
527
|
+
todayValue: "Vandaag",
|
|
528
|
+
withinValue: "Binnen",
|
|
529
|
+
months: "Maanden",
|
|
530
|
+
days: "Dagen",
|
|
531
|
+
years: "Jaren",
|
|
532
|
+
weeks: "Weken",
|
|
533
|
+
moreThanValue: "Meer dan",
|
|
534
|
+
};
|
|
535
|
+
case "da":
|
|
401
536
|
return {
|
|
402
537
|
singleValue: "Værdi",
|
|
403
538
|
fromValue: "Fra",
|
|
@@ -412,7 +547,7 @@ function getTranslations() {
|
|
|
412
547
|
weeks: "Uger",
|
|
413
548
|
moreThanValue: "Mere end",
|
|
414
549
|
};
|
|
415
|
-
case "
|
|
550
|
+
case "sv":
|
|
416
551
|
return {
|
|
417
552
|
singleValue: "Värde",
|
|
418
553
|
fromValue: "Från",
|
|
@@ -427,6 +562,36 @@ function getTranslations() {
|
|
|
427
562
|
weeks: "Veckor",
|
|
428
563
|
moreThanValue: "Mer än",
|
|
429
564
|
};
|
|
565
|
+
case "fi":
|
|
566
|
+
return {
|
|
567
|
+
singleValue: "Arvo",
|
|
568
|
+
fromValue: "Alkaen",
|
|
569
|
+
toValue: "Asti",
|
|
570
|
+
rangeFrom: "Alkaen",
|
|
571
|
+
rangeTo: "Asti",
|
|
572
|
+
todayValue: "Tänään",
|
|
573
|
+
withinValue: "Sisällä",
|
|
574
|
+
months: "Kuukaudet",
|
|
575
|
+
days: "Päivät",
|
|
576
|
+
years: "Vuodet",
|
|
577
|
+
weeks: "Viikot",
|
|
578
|
+
moreThanValue: "Yli",
|
|
579
|
+
};
|
|
580
|
+
case "cs":
|
|
581
|
+
return {
|
|
582
|
+
singleValue: "Hodnota",
|
|
583
|
+
fromValue: "Od",
|
|
584
|
+
toValue: "Do",
|
|
585
|
+
rangeFrom: "Od",
|
|
586
|
+
rangeTo: "Do",
|
|
587
|
+
todayValue: "Dnes",
|
|
588
|
+
withinValue: "Během",
|
|
589
|
+
months: "Měsíce",
|
|
590
|
+
days: "Dny",
|
|
591
|
+
years: "Roky",
|
|
592
|
+
weeks: "Týdny",
|
|
593
|
+
moreThanValue: "Více než",
|
|
594
|
+
};
|
|
430
595
|
default:
|
|
431
596
|
case "en":
|
|
432
597
|
return {
|
|
@@ -127,10 +127,42 @@ function getTranslations() {
|
|
|
127
127
|
return {
|
|
128
128
|
filter: "Filtre",
|
|
129
129
|
};
|
|
130
|
-
case "
|
|
130
|
+
case "es":
|
|
131
131
|
return {
|
|
132
132
|
filter: "Filtro",
|
|
133
133
|
};
|
|
134
|
+
case "zh":
|
|
135
|
+
return {
|
|
136
|
+
filter: "筛选",
|
|
137
|
+
};
|
|
138
|
+
case "hi":
|
|
139
|
+
return {
|
|
140
|
+
filter: "फ़िल्टर",
|
|
141
|
+
};
|
|
142
|
+
case "bn":
|
|
143
|
+
return {
|
|
144
|
+
filter: "ফিল্টার",
|
|
145
|
+
};
|
|
146
|
+
case "pt":
|
|
147
|
+
return {
|
|
148
|
+
filter: "Filtro",
|
|
149
|
+
};
|
|
150
|
+
case "ru":
|
|
151
|
+
return {
|
|
152
|
+
filter: "Фильтр",
|
|
153
|
+
};
|
|
154
|
+
case "ja":
|
|
155
|
+
return {
|
|
156
|
+
filter: "フィルター",
|
|
157
|
+
};
|
|
158
|
+
case "pa":
|
|
159
|
+
return {
|
|
160
|
+
filter: "ਫਿਲਟਰ",
|
|
161
|
+
};
|
|
162
|
+
case "mr":
|
|
163
|
+
return {
|
|
164
|
+
filter: "फिल्टर",
|
|
165
|
+
};
|
|
134
166
|
case "it":
|
|
135
167
|
return {
|
|
136
168
|
filter: "Filtro",
|
|
@@ -143,14 +175,26 @@ function getTranslations() {
|
|
|
143
175
|
return {
|
|
144
176
|
filter: "Filter",
|
|
145
177
|
};
|
|
146
|
-
case "
|
|
178
|
+
case "nl":
|
|
179
|
+
return {
|
|
180
|
+
filter: "Filter",
|
|
181
|
+
};
|
|
182
|
+
case "da":
|
|
147
183
|
return {
|
|
148
184
|
filter: "Filter",
|
|
149
185
|
};
|
|
150
|
-
case "
|
|
186
|
+
case "sv":
|
|
151
187
|
return {
|
|
152
188
|
filter: "Filter",
|
|
153
189
|
};
|
|
190
|
+
case "fi":
|
|
191
|
+
return {
|
|
192
|
+
filter: "Suodatin",
|
|
193
|
+
};
|
|
194
|
+
case "cs":
|
|
195
|
+
return {
|
|
196
|
+
filter: "Filtr",
|
|
197
|
+
};
|
|
154
198
|
default:
|
|
155
199
|
case "en":
|
|
156
200
|
return {
|
|
@@ -290,7 +290,7 @@ function getTranslations() {
|
|
|
290
290
|
rangeFrom: "De",
|
|
291
291
|
rangeTo: "À",
|
|
292
292
|
};
|
|
293
|
-
case "
|
|
293
|
+
case "es":
|
|
294
294
|
return {
|
|
295
295
|
singleValue: "Valor",
|
|
296
296
|
fromValue: "Desde",
|
|
@@ -298,6 +298,70 @@ function getTranslations() {
|
|
|
298
298
|
rangeFrom: "Desde",
|
|
299
299
|
rangeTo: "Hasta",
|
|
300
300
|
};
|
|
301
|
+
case "zh":
|
|
302
|
+
return {
|
|
303
|
+
singleValue: "值",
|
|
304
|
+
fromValue: "从",
|
|
305
|
+
toValue: "到",
|
|
306
|
+
rangeFrom: "从",
|
|
307
|
+
rangeTo: "到",
|
|
308
|
+
};
|
|
309
|
+
case "hi":
|
|
310
|
+
return {
|
|
311
|
+
singleValue: "मान",
|
|
312
|
+
fromValue: "से",
|
|
313
|
+
toValue: "तक",
|
|
314
|
+
rangeFrom: "से",
|
|
315
|
+
rangeTo: "तक",
|
|
316
|
+
};
|
|
317
|
+
case "bn":
|
|
318
|
+
return {
|
|
319
|
+
singleValue: "মান",
|
|
320
|
+
fromValue: "থেকে",
|
|
321
|
+
toValue: "পর্যন্ত",
|
|
322
|
+
rangeFrom: "থেকে",
|
|
323
|
+
rangeTo: "পর্যন্ত",
|
|
324
|
+
};
|
|
325
|
+
case "pt":
|
|
326
|
+
return {
|
|
327
|
+
singleValue: "Valor",
|
|
328
|
+
fromValue: "De",
|
|
329
|
+
toValue: "Até",
|
|
330
|
+
rangeFrom: "De",
|
|
331
|
+
rangeTo: "Até",
|
|
332
|
+
};
|
|
333
|
+
case "ru":
|
|
334
|
+
return {
|
|
335
|
+
singleValue: "Значение",
|
|
336
|
+
fromValue: "От",
|
|
337
|
+
toValue: "До",
|
|
338
|
+
rangeFrom: "От",
|
|
339
|
+
rangeTo: "До",
|
|
340
|
+
};
|
|
341
|
+
case "ja":
|
|
342
|
+
return {
|
|
343
|
+
singleValue: "値",
|
|
344
|
+
fromValue: "開始",
|
|
345
|
+
toValue: "終了",
|
|
346
|
+
rangeFrom: "開始",
|
|
347
|
+
rangeTo: "終了",
|
|
348
|
+
};
|
|
349
|
+
case "pa":
|
|
350
|
+
return {
|
|
351
|
+
singleValue: "ਮੁੱਲ",
|
|
352
|
+
fromValue: "ਤੋਂ",
|
|
353
|
+
toValue: "ਤੱਕ",
|
|
354
|
+
rangeFrom: "ਤੋਂ",
|
|
355
|
+
rangeTo: "ਤੱਕ",
|
|
356
|
+
};
|
|
357
|
+
case "mr":
|
|
358
|
+
return {
|
|
359
|
+
singleValue: "मूल्य",
|
|
360
|
+
fromValue: "पासून",
|
|
361
|
+
toValue: "पर्यंत",
|
|
362
|
+
rangeFrom: "पासून",
|
|
363
|
+
rangeTo: "पर्यंत",
|
|
364
|
+
};
|
|
301
365
|
case "it":
|
|
302
366
|
return {
|
|
303
367
|
singleValue: "Valore",
|
|
@@ -322,7 +386,15 @@ function getTranslations() {
|
|
|
322
386
|
rangeFrom: "Fra",
|
|
323
387
|
rangeTo: "Til",
|
|
324
388
|
};
|
|
325
|
-
case "
|
|
389
|
+
case "nl":
|
|
390
|
+
return {
|
|
391
|
+
singleValue: "Waarde",
|
|
392
|
+
fromValue: "Van",
|
|
393
|
+
toValue: "Tot",
|
|
394
|
+
rangeFrom: "Van",
|
|
395
|
+
rangeTo: "Tot",
|
|
396
|
+
};
|
|
397
|
+
case "da":
|
|
326
398
|
return {
|
|
327
399
|
singleValue: "Værdi",
|
|
328
400
|
fromValue: "Fra",
|
|
@@ -330,7 +402,7 @@ function getTranslations() {
|
|
|
330
402
|
rangeFrom: "Fra",
|
|
331
403
|
rangeTo: "Til",
|
|
332
404
|
};
|
|
333
|
-
case "
|
|
405
|
+
case "sv":
|
|
334
406
|
return {
|
|
335
407
|
singleValue: "Värde",
|
|
336
408
|
fromValue: "Från",
|
|
@@ -338,6 +410,22 @@ function getTranslations() {
|
|
|
338
410
|
rangeFrom: "Från",
|
|
339
411
|
rangeTo: "Till",
|
|
340
412
|
};
|
|
413
|
+
case "fi":
|
|
414
|
+
return {
|
|
415
|
+
singleValue: "Arvo",
|
|
416
|
+
fromValue: "Alkaen",
|
|
417
|
+
toValue: "Asti",
|
|
418
|
+
rangeFrom: "Alkaen",
|
|
419
|
+
rangeTo: "Asti",
|
|
420
|
+
};
|
|
421
|
+
case "cs":
|
|
422
|
+
return {
|
|
423
|
+
singleValue: "Hodnota",
|
|
424
|
+
fromValue: "Od",
|
|
425
|
+
toValue: "Do",
|
|
426
|
+
rangeFrom: "Od",
|
|
427
|
+
rangeTo: "Do",
|
|
428
|
+
};
|
|
341
429
|
default:
|
|
342
430
|
case "en":
|
|
343
431
|
return {
|
|
@@ -78,10 +78,42 @@ function getTranslations() {
|
|
|
78
78
|
return {
|
|
79
79
|
button: "Filtrer",
|
|
80
80
|
};
|
|
81
|
-
case "
|
|
81
|
+
case "es":
|
|
82
82
|
return {
|
|
83
83
|
button: "Filtrar",
|
|
84
84
|
};
|
|
85
|
+
case "zh":
|
|
86
|
+
return {
|
|
87
|
+
button: "筛选",
|
|
88
|
+
};
|
|
89
|
+
case "hi":
|
|
90
|
+
return {
|
|
91
|
+
button: "फ़िल्टर करें",
|
|
92
|
+
};
|
|
93
|
+
case "bn":
|
|
94
|
+
return {
|
|
95
|
+
button: "ফিল্টার করুন",
|
|
96
|
+
};
|
|
97
|
+
case "pt":
|
|
98
|
+
return {
|
|
99
|
+
button: "Filtrar",
|
|
100
|
+
};
|
|
101
|
+
case "ru":
|
|
102
|
+
return {
|
|
103
|
+
button: "Фильтровать",
|
|
104
|
+
};
|
|
105
|
+
case "ja":
|
|
106
|
+
return {
|
|
107
|
+
button: "絞り込む",
|
|
108
|
+
};
|
|
109
|
+
case "pa":
|
|
110
|
+
return {
|
|
111
|
+
button: "ਫਿਲਟਰ ਕਰੋ",
|
|
112
|
+
};
|
|
113
|
+
case "mr":
|
|
114
|
+
return {
|
|
115
|
+
button: "फिल्टर करा",
|
|
116
|
+
};
|
|
85
117
|
case "it":
|
|
86
118
|
return {
|
|
87
119
|
button: "Filtra",
|
|
@@ -94,14 +126,26 @@ function getTranslations() {
|
|
|
94
126
|
return {
|
|
95
127
|
button: "Filtrer",
|
|
96
128
|
};
|
|
97
|
-
case "
|
|
129
|
+
case "nl":
|
|
130
|
+
return {
|
|
131
|
+
button: "Filteren",
|
|
132
|
+
};
|
|
133
|
+
case "da":
|
|
98
134
|
return {
|
|
99
135
|
button: "Filtrér",
|
|
100
136
|
};
|
|
101
|
-
case "
|
|
137
|
+
case "sv":
|
|
102
138
|
return {
|
|
103
139
|
button: "Filtrera",
|
|
104
140
|
};
|
|
141
|
+
case "fi":
|
|
142
|
+
return {
|
|
143
|
+
button: "Suodata",
|
|
144
|
+
};
|
|
145
|
+
case "cs":
|
|
146
|
+
return {
|
|
147
|
+
button: "Filtrovat",
|
|
148
|
+
};
|
|
105
149
|
default:
|
|
106
150
|
case "en":
|
|
107
151
|
return {
|
|
@@ -621,6 +621,17 @@ function getTranslations() {
|
|
|
621
621
|
"query-not-changed":
|
|
622
622
|
"ਖੋਜ ਦੀ ਬੇਨਤੀ ਵਿੱਚ ਕੋਈ ਤਬਦੀਲੀ ਨਹੀਂ ਆਈ ਹੈ, ਇਸ ਲਈ ਖੋਜ ਦੀ ਲੋੜ ਨਹੀਂ ਹੈ।",
|
|
623
623
|
};
|
|
624
|
+
case "mr":
|
|
625
|
+
return {
|
|
626
|
+
search: "शोधा",
|
|
627
|
+
reset: "रीसेट करा",
|
|
628
|
+
save: "जतन करा",
|
|
629
|
+
"filter-name": "फिल्टरचे नाव",
|
|
630
|
+
"empty-query-and-no-default":
|
|
631
|
+
"क्वेरी रिकामी आहे आणि कोणतीही डीफॉल्ट क्वेरी नाही.",
|
|
632
|
+
"query-not-changed":
|
|
633
|
+
"शोध विनंती बदललेली नाही, त्यामुळे शोध घेण्याची आवश्यकता नाही.",
|
|
634
|
+
};
|
|
624
635
|
default:
|
|
625
636
|
case "en":
|
|
626
637
|
return {
|
|
@@ -389,10 +389,42 @@ function getTranslations() {
|
|
|
389
389
|
return {
|
|
390
390
|
button: "Enregistrer",
|
|
391
391
|
};
|
|
392
|
-
case "
|
|
392
|
+
case "es":
|
|
393
393
|
return {
|
|
394
394
|
button: "Guardar",
|
|
395
395
|
};
|
|
396
|
+
case "zh":
|
|
397
|
+
return {
|
|
398
|
+
button: "保存",
|
|
399
|
+
};
|
|
400
|
+
case "hi":
|
|
401
|
+
return {
|
|
402
|
+
button: "सहेजें",
|
|
403
|
+
};
|
|
404
|
+
case "bn":
|
|
405
|
+
return {
|
|
406
|
+
button: "সংরক্ষণ করুন",
|
|
407
|
+
};
|
|
408
|
+
case "pt":
|
|
409
|
+
return {
|
|
410
|
+
button: "Salvar",
|
|
411
|
+
};
|
|
412
|
+
case "ru":
|
|
413
|
+
return {
|
|
414
|
+
button: "Сохранить",
|
|
415
|
+
};
|
|
416
|
+
case "ja":
|
|
417
|
+
return {
|
|
418
|
+
button: "保存",
|
|
419
|
+
};
|
|
420
|
+
case "pa":
|
|
421
|
+
return {
|
|
422
|
+
button: "ਸੰਭਾਲੋ",
|
|
423
|
+
};
|
|
424
|
+
case "mr":
|
|
425
|
+
return {
|
|
426
|
+
button: "जतन करा",
|
|
427
|
+
};
|
|
396
428
|
case "it":
|
|
397
429
|
return {
|
|
398
430
|
button: "Salva",
|
|
@@ -405,14 +437,26 @@ function getTranslations() {
|
|
|
405
437
|
return {
|
|
406
438
|
button: "Lagre",
|
|
407
439
|
};
|
|
408
|
-
case "
|
|
440
|
+
case "nl":
|
|
441
|
+
return {
|
|
442
|
+
button: "Opslaan",
|
|
443
|
+
};
|
|
444
|
+
case "da":
|
|
409
445
|
return {
|
|
410
446
|
button: "Gem",
|
|
411
447
|
};
|
|
412
|
-
case "
|
|
448
|
+
case "sv":
|
|
413
449
|
return {
|
|
414
450
|
button: "Spara",
|
|
415
451
|
};
|
|
452
|
+
case "fi":
|
|
453
|
+
return {
|
|
454
|
+
button: "Tallenna",
|
|
455
|
+
};
|
|
456
|
+
case "cs":
|
|
457
|
+
return {
|
|
458
|
+
button: "Uložit",
|
|
459
|
+
};
|
|
416
460
|
default:
|
|
417
461
|
case "en":
|
|
418
462
|
return {
|
|
@@ -145,7 +145,10 @@
|
|
|
145
145
|
}
|
|
146
146
|
|
|
147
147
|
& input[type=checkbox] {
|
|
148
|
-
accent-color: var(
|
|
148
|
+
accent-color: var(
|
|
149
|
+
--monster-theme-accent,
|
|
150
|
+
var(--monster-bg-color-primary-1)
|
|
151
|
+
);
|
|
149
152
|
}
|
|
150
153
|
}
|
|
151
154
|
|
|
@@ -578,8 +581,14 @@ monster-state[data-monster-role=empty-without-action]::part(action) {
|
|
|
578
581
|
}
|
|
579
582
|
|
|
580
583
|
&.selected {
|
|
581
|
-
background-color: var(
|
|
582
|
-
|
|
584
|
+
background-color: var(
|
|
585
|
+
--monster-theme-accent-subtle,
|
|
586
|
+
var(--monster-bg-color-selection-2)
|
|
587
|
+
);
|
|
588
|
+
color: var(
|
|
589
|
+
--monster-theme-accent,
|
|
590
|
+
var(--monster-color-selection-2)
|
|
591
|
+
);
|
|
583
592
|
}
|
|
584
593
|
}
|
|
585
594
|
}
|
|
@@ -93,7 +93,9 @@ try {
|
|
|
93
93
|
--monster-column-toggle-target-block-size,var(--monster-column-toggle-target-size,24px)
|
|
94
94
|
);padding:0;width:var(
|
|
95
95
|
--monster-column-toggle-target-inline-size,var(--monster-column-toggle-target-size,16px)
|
|
96
|
-
)}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-hidden:before,:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-visible:before{background-color:var(--monster-bg-color-primary-4);content:\"\";display:block;height:8px;margin:auto;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:8px 8px;mask-size:8px 8px;width:8px}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-visible:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E%3C/svg%3E\")}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-hidden:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E\")}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-hidden:focus-visible,:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-visible:focus-visible{outline-offset:0}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) :focus,:is(:is([data-monster-role=control] [data-monster-role=dots]) li) :hover{background-clip:border-box}:is([data-monster-role=control] [data-monster-role=dots]) .dots-overflow-hidden{display:none}:is([data-monster-role=control] [data-monster-role=dots]) .dots-overflow-indicator{align-items:center;color:var(--monster-color-primary-1);display:flex;font-size:.75rem;line-height:1;padding:0 2px;white-space:nowrap}[data-monster-role=control] [data-monster-role=settings-layer]{background-color:var(--monster-bg-color-primary-4);color:var(--monster-color-primary-4);padding:1rem;border-radius:4px;z-index:var(--monster-z-index-popover);display:none}.visible:is([data-monster-role=control] [data-monster-role=settings-layer]){display:block}:is([data-monster-role=control] [data-monster-role=settings-layer]) label{display:flex;align-items:center;justify-content:flex-start;margin:0;min-height:var(--monster-column-settings-target-size,24px);padding:0;cursor:pointer}:is(:is([data-monster-role=control] [data-monster-role=settings-layer]) label) input{accent-color:var(
|
|
96
|
+
)}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-hidden:before,:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-visible:before{background-color:var(--monster-bg-color-primary-4);content:\"\";display:block;height:8px;margin:auto;-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:8px 8px;mask-size:8px 8px;width:8px}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-visible:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E%3C/svg%3E\")}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-hidden:before{-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E\")}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-hidden:focus-visible,:is(:is([data-monster-role=control] [data-monster-role=dots]) li) .is-visible:focus-visible{outline-offset:0}:is(:is([data-monster-role=control] [data-monster-role=dots]) li) :focus,:is(:is([data-monster-role=control] [data-monster-role=dots]) li) :hover{background-clip:border-box}:is([data-monster-role=control] [data-monster-role=dots]) .dots-overflow-hidden{display:none}:is([data-monster-role=control] [data-monster-role=dots]) .dots-overflow-indicator{align-items:center;color:var(--monster-color-primary-1);display:flex;font-size:.75rem;line-height:1;padding:0 2px;white-space:nowrap}[data-monster-role=control] [data-monster-role=settings-layer]{background-color:var(--monster-bg-color-primary-4);color:var(--monster-color-primary-4);padding:1rem;border-radius:4px;z-index:var(--monster-z-index-popover);display:none}.visible:is([data-monster-role=control] [data-monster-role=settings-layer]){display:block}:is([data-monster-role=control] [data-monster-role=settings-layer]) label{display:flex;align-items:center;justify-content:flex-start;margin:0;min-height:var(--monster-column-settings-target-size,24px);padding:0;cursor:pointer}:is(:is([data-monster-role=control] [data-monster-role=settings-layer]) label) input{accent-color:var(
|
|
97
|
+
--monster-theme-accent,var(--monster-bg-color-primary-4)
|
|
98
|
+
);margin:0 .5rem 0 0}:is([data-monster-role=control] [data-monster-role=settings-layer]) [data-monster-role=settings-popup-list]{display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);grid-gap:.1rem 1rem}[data-monster-role=control] a[data-monster-role=settings-button]{display:flex;align-items:center;color:var(--monster-color-primary-1);background:none;white-space:nowrap}:is([data-monster-role=control] a[data-monster-role=settings-button]):after{content:\"\";display:block;width:20px;height:16px;margin:2px 3px 0 5px;padding-top:4px;background-color:var(--monster-color-primary-1);-webkit-mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5zM1.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5H5V1zM10 15V1H6v14zm1 0h3.5a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5H11z'/%3E%3C/svg%3E\");mask-image:url(\"data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5zM1.5 1a.5.5 0 0 0-.5.5v13a.5.5 0 0 0 .5.5H5V1zM10 15V1H6v14zm1 0h3.5a.5.5 0 0 0 .5-.5v-13a.5.5 0 0 0-.5-.5H11z'/%3E%3C/svg%3E\");-webkit-mask-size:cover;mask-size:cover}[data-monster-role=control]:hover{color:var(--monster-color-primary-1)}.hidden[data-monster-role=control]{display:none}@media (pointer:coarse){:is([data-monster-role=control] [data-monster-role=dots] li) .is-hidden,:is([data-monster-role=control] [data-monster-role=dots] li) .is-visible{min-height:24px;min-width:24px}}:host(.small){--monster-datatable-utility-action-size:2.25rem;height:var(--monster-datatable-utility-action-size);min-width:var(--monster-datatable-utility-action-size);width:var(--monster-datatable-utility-action-size)}:host(.small) [data-monster-role=control]{align-items:stretch;flex-direction:column;gap:0;min-width:var(--monster-datatable-utility-action-size);width:var(--monster-datatable-utility-action-size)}:is(:host(.small) [data-monster-role=control]) [data-monster-role=dots]{display:none}:is(:host(.small) [data-monster-role=control]) a[data-monster-role=settings-button]{align-items:center;background-color:var(--monster-theme-control-bg-color);border:1px solid var(--monster-theme-control-border-color);border-radius:var(--monster-theme-control-border-radius);box-sizing:border-box;color:var(--monster-theme-control-color);font-size:0;height:var(--monster-datatable-utility-action-size);justify-content:center;min-height:var(--monster-datatable-utility-action-size);min-width:var(--monster-datatable-utility-action-size);padding:0;text-align:center;text-decoration:none;width:var(--monster-datatable-utility-action-size)}:is(:host(.small) [data-monster-role=control]) a[data-monster-role=settings-button]:after{margin:0}:is(:host(.small) [data-monster-role=control]) a[data-monster-role=settings-button]:hover{background-color:var(--monster-theme-control-hover-bg-color);color:var(--monster-theme-control-hover-color)}@media (pointer:coarse){:host(.small){--monster-datatable-utility-action-size:var(--monster-control-min-block-size,44px)}}
|
|
97
99
|
}`,
|
|
98
100
|
0,
|
|
99
101
|
);
|