vuetify 3.4.10 → 3.4.11
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/dist/json/attributes.json +5 -5
- package/dist/json/importMap.json +154 -154
- package/dist/json/web-types.json +2511 -2489
- package/dist/vuetify-labs.css +2293 -2287
- package/dist/vuetify-labs.d.ts +1116 -15
- package/dist/vuetify-labs.esm.js +166 -157
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +166 -157
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +548 -542
- package/dist/vuetify.d.ts +1162 -61
- package/dist/vuetify.esm.js +166 -157
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +166 -157
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +755 -758
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VBtn/VBtn.mjs +3 -1
- package/lib/components/VBtn/VBtn.mjs.map +1 -1
- package/lib/components/VBtn/index.d.mts +21 -5
- package/lib/components/VCarousel/index.d.mts +5 -5
- package/lib/components/VDataIterator/VDataIterator.mjs +2 -1
- package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +6 -0
- package/lib/components/VDataTable/VDataTable.mjs +2 -1
- package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
- package/lib/components/VDataTable/VDataTableFooter.css +9 -4
- package/lib/components/VDataTable/VDataTableFooter.sass +9 -4
- package/lib/components/VDataTable/_variables.scss +5 -0
- package/lib/components/VDataTable/composables/paginate.mjs +6 -2
- package/lib/components/VDataTable/composables/paginate.mjs.map +1 -1
- package/lib/components/VDataTable/index.d.mts +6 -0
- package/lib/components/VDatePicker/VDatePicker.mjs +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -0
- package/lib/components/VList/VListItem.sass +1 -0
- package/lib/components/VList/_variables.scss +1 -0
- package/lib/components/VOverlay/locationStrategies.mjs +1 -3
- package/lib/components/VOverlay/locationStrategies.mjs.map +1 -1
- package/lib/components/VPagination/VPagination.mjs +10 -10
- package/lib/components/VPagination/VPagination.mjs.map +1 -1
- package/lib/components/VPagination/index.d.mts +2 -2
- package/lib/components/VSelectionControl/VSelectionControl.mjs +6 -3
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.mjs +4 -3
- package/lib/components/VSlider/VSliderThumb.mjs.map +1 -1
- package/lib/components/VTabs/VTab.mjs +6 -6
- package/lib/components/VTabs/VTab.mjs.map +1 -1
- package/lib/components/VTabs/index.d.mts +1102 -3
- package/lib/components/VWindow/VWindow.mjs +2 -2
- package/lib/components/VWindow/VWindow.mjs.map +1 -1
- package/lib/components/VWindow/index.d.mts +1 -1
- package/lib/components/index.d.mts +1116 -15
- package/lib/composables/calendar.mjs +1 -1
- package/lib/composables/calendar.mjs.map +1 -1
- package/lib/composables/date/adapters/vuetify.mjs +1 -2
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/date/date.mjs +4 -4
- package/lib/composables/date/date.mjs.map +1 -1
- package/lib/composables/locale.mjs +46 -2
- package/lib/composables/locale.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/locale/index.d.mts +1 -45
- package/lib/locale/index.mjs +0 -43
- package/lib/locale/index.mjs.map +1 -1
- package/lib/locale/sk.mjs +22 -22
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/styles/main.css +78 -78
- package/lib/styles/settings/_utilities.scss +1 -0
- package/lib/util/helpers.mjs +1 -43
- package/lib/util/helpers.mjs.map +1 -1
- package/package.json +3 -2
- package/lib/components/VDatePicker/utils.mjs +0 -69
- package/lib/components/VDatePicker/utils.mjs.map +0 -1
- package/lib/util/dateTimeUtils.mjs +0 -115
- package/lib/util/dateTimeUtils.mjs.map +0 -1
package/lib/index.d.mts
CHANGED
|
@@ -493,29 +493,26 @@ declare module '@vue/runtime-core' {
|
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
export interface GlobalComponents {
|
|
496
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
497
496
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
498
497
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
499
498
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
500
499
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
501
500
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
502
|
-
|
|
501
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
502
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
503
503
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
504
504
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
505
505
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
506
|
-
|
|
507
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
506
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
508
507
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
508
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
509
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
510
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
509
511
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
510
512
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
511
513
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
512
514
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
513
515
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
514
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
515
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
516
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
517
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
518
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
519
516
|
VCard: typeof import('vuetify/components')['VCard']
|
|
520
517
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
521
518
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
@@ -524,45 +521,47 @@ declare module '@vue/runtime-core' {
|
|
|
524
521
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
525
522
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
526
523
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
524
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
525
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
526
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
527
527
|
VChip: typeof import('vuetify/components')['VChip']
|
|
528
|
-
VCode: typeof import('vuetify/components')['VCode']
|
|
529
528
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
530
|
-
|
|
531
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
532
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
533
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
534
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
535
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
529
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
536
530
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
537
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
|
538
531
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
539
532
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
540
533
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
541
534
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
|
542
535
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
543
536
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
537
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
|
538
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
539
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
540
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
541
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
542
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
543
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
544
544
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
545
545
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
546
|
-
VField: typeof import('vuetify/components')['VField']
|
|
547
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
548
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
549
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
550
546
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
551
547
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
552
548
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
553
549
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
550
|
+
VField: typeof import('vuetify/components')['VField']
|
|
551
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
552
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
553
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
554
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
554
555
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
555
556
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
556
557
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
557
558
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
558
559
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
559
|
-
VImg: typeof import('vuetify/components')['VImg']
|
|
560
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
561
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
562
560
|
VInput: typeof import('vuetify/components')['VInput']
|
|
563
|
-
|
|
561
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
564
562
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
565
563
|
VItem: typeof import('vuetify/components')['VItem']
|
|
564
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
566
565
|
VList: typeof import('vuetify/components')['VList']
|
|
567
566
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
568
567
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -572,67 +571,68 @@ declare module '@vue/runtime-core' {
|
|
|
572
571
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
573
572
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
574
573
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
574
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
575
575
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
576
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
|
577
576
|
VMain: typeof import('vuetify/components')['VMain']
|
|
577
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
|
578
578
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
579
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
580
579
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
581
|
-
|
|
580
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
582
581
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
583
|
-
|
|
582
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
584
583
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
585
|
-
|
|
586
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
584
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
587
585
|
VRating: typeof import('vuetify/components')['VRating']
|
|
588
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
589
586
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
587
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
588
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
589
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
|
590
590
|
VSheet: typeof import('vuetify/components')['VSheet']
|
|
591
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
591
592
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
592
593
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
593
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
|
594
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
595
594
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
596
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
597
595
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
598
596
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
599
597
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
|
600
598
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
|
601
599
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
602
600
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
601
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
602
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
603
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
603
604
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
604
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
605
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
606
605
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
607
606
|
VTab: typeof import('vuetify/components')['VTab']
|
|
608
|
-
VTable: typeof import('vuetify/components')['VTable']
|
|
609
|
-
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
610
|
-
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
611
|
-
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
612
607
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
613
608
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
609
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
610
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
614
611
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
615
612
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
613
|
+
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
614
|
+
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
615
|
+
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
616
616
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
617
617
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
618
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
619
|
+
VHover: typeof import('vuetify/components')['VHover']
|
|
618
620
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
619
621
|
VCol: typeof import('vuetify/components')['VCol']
|
|
620
622
|
VRow: typeof import('vuetify/components')['VRow']
|
|
621
623
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
622
|
-
|
|
623
|
-
VHover: typeof import('vuetify/components')['VHover']
|
|
624
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
|
624
625
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
625
626
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
626
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
|
627
627
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
628
628
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
629
629
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
630
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
|
631
630
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
631
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
|
632
632
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
633
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
633
634
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
634
635
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
635
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
636
636
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
637
637
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
638
638
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
package/lib/locale/index.d.mts
CHANGED
|
@@ -4282,48 +4282,4 @@ declare const _default: {
|
|
|
4282
4282
|
};
|
|
4283
4283
|
//# sourceMappingURL=zh-Hant.d.ts.map
|
|
4284
4284
|
|
|
4285
|
-
|
|
4286
|
-
af: boolean;
|
|
4287
|
-
ar: boolean;
|
|
4288
|
-
bg: boolean;
|
|
4289
|
-
ca: boolean;
|
|
4290
|
-
ckb: boolean;
|
|
4291
|
-
cs: boolean;
|
|
4292
|
-
de: boolean;
|
|
4293
|
-
el: boolean;
|
|
4294
|
-
en: boolean;
|
|
4295
|
-
es: boolean;
|
|
4296
|
-
et: boolean;
|
|
4297
|
-
fa: boolean;
|
|
4298
|
-
fi: boolean;
|
|
4299
|
-
fr: boolean;
|
|
4300
|
-
hr: boolean;
|
|
4301
|
-
hu: boolean;
|
|
4302
|
-
he: boolean;
|
|
4303
|
-
id: boolean;
|
|
4304
|
-
it: boolean;
|
|
4305
|
-
ja: boolean;
|
|
4306
|
-
ko: boolean;
|
|
4307
|
-
lv: boolean;
|
|
4308
|
-
lt: boolean;
|
|
4309
|
-
nl: boolean;
|
|
4310
|
-
no: boolean;
|
|
4311
|
-
pl: boolean;
|
|
4312
|
-
pt: boolean;
|
|
4313
|
-
ro: boolean;
|
|
4314
|
-
ru: boolean;
|
|
4315
|
-
sk: boolean;
|
|
4316
|
-
sl: boolean;
|
|
4317
|
-
srCyrl: boolean;
|
|
4318
|
-
srLatn: boolean;
|
|
4319
|
-
sv: boolean;
|
|
4320
|
-
th: boolean;
|
|
4321
|
-
tr: boolean;
|
|
4322
|
-
az: boolean;
|
|
4323
|
-
uk: boolean;
|
|
4324
|
-
vi: boolean;
|
|
4325
|
-
zhHans: boolean;
|
|
4326
|
-
zhHant: boolean;
|
|
4327
|
-
};
|
|
4328
|
-
|
|
4329
|
-
export { _default$F as af, _default$E as ar, _default$4 as az, _default$D as bg, _default$C as ca, _default$B as ckb, _default$A as cs, _default$z as da, _default$y as de, defaultRtl, _default$x as el, _default$w as en, _default$v as es, _default$u as et, _default$t as fa, _default$s as fi, _default$r as fr, _default$o as he, _default$q as hr, _default$p as hu, _default$n as id, _default$m as it, _default$l as ja, _default$k as ko, _default$i as lt, _default$j as lv, _default$h as nl, _default$g as no, _default$f as pl, _default$e as pt, _default$d as ro, _default$c as ru, _default$b as sk, _default$a as sl, _default$9 as srCyrl, _default$8 as srLatn, _default$7 as sv, _default$6 as th, _default$5 as tr, _default$3 as uk, _default$2 as vi, _default$1 as zhHans, _default as zhHant };
|
|
4285
|
+
export { _default$F as af, _default$E as ar, _default$4 as az, _default$D as bg, _default$C as ca, _default$B as ckb, _default$A as cs, _default$z as da, _default$y as de, _default$x as el, _default$w as en, _default$v as es, _default$u as et, _default$t as fa, _default$s as fi, _default$r as fr, _default$o as he, _default$q as hr, _default$p as hu, _default$n as id, _default$m as it, _default$l as ja, _default$k as ko, _default$i as lt, _default$j as lv, _default$h as nl, _default$g as no, _default$f as pl, _default$e as pt, _default$d as ro, _default$c as ru, _default$b as sk, _default$a as sl, _default$9 as srCyrl, _default$8 as srLatn, _default$7 as sv, _default$6 as th, _default$5 as tr, _default$3 as uk, _default$2 as vi, _default$1 as zhHans, _default as zhHant };
|
package/lib/locale/index.mjs
CHANGED
|
@@ -40,47 +40,4 @@ export { default as uk } from "./uk.mjs";
|
|
|
40
40
|
export { default as vi } from "./vi.mjs";
|
|
41
41
|
export { default as zhHans } from "./zh-Hans.mjs";
|
|
42
42
|
export { default as zhHant } from "./zh-Hant.mjs";
|
|
43
|
-
export const defaultRtl = {
|
|
44
|
-
af: false,
|
|
45
|
-
ar: true,
|
|
46
|
-
bg: false,
|
|
47
|
-
ca: false,
|
|
48
|
-
ckb: false,
|
|
49
|
-
cs: false,
|
|
50
|
-
de: false,
|
|
51
|
-
el: false,
|
|
52
|
-
en: false,
|
|
53
|
-
es: false,
|
|
54
|
-
et: false,
|
|
55
|
-
fa: true,
|
|
56
|
-
fi: false,
|
|
57
|
-
fr: false,
|
|
58
|
-
hr: false,
|
|
59
|
-
hu: false,
|
|
60
|
-
he: true,
|
|
61
|
-
id: false,
|
|
62
|
-
it: false,
|
|
63
|
-
ja: false,
|
|
64
|
-
ko: false,
|
|
65
|
-
lv: false,
|
|
66
|
-
lt: false,
|
|
67
|
-
nl: false,
|
|
68
|
-
no: false,
|
|
69
|
-
pl: false,
|
|
70
|
-
pt: false,
|
|
71
|
-
ro: false,
|
|
72
|
-
ru: false,
|
|
73
|
-
sk: false,
|
|
74
|
-
sl: false,
|
|
75
|
-
srCyrl: false,
|
|
76
|
-
srLatn: false,
|
|
77
|
-
sv: false,
|
|
78
|
-
th: false,
|
|
79
|
-
tr: false,
|
|
80
|
-
az: false,
|
|
81
|
-
uk: false,
|
|
82
|
-
vi: false,
|
|
83
|
-
zhHans: false,
|
|
84
|
-
zhHant: false
|
|
85
|
-
};
|
|
86
43
|
//# sourceMappingURL=index.mjs.map
|
package/lib/locale/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","names":["default","af","ar","bg","ca","ckb","cs","da","de","el","en","es","et","fa","fi","fr","hr","hu","he","id","it","ja","ko","lv","lt","nl","no","pl","pt","ro","ru","sk","sl","srCyrl","srLatn","sv","th","tr","az","uk","vi","zhHans","zhHant"
|
|
1
|
+
{"version":3,"file":"index.mjs","names":["default","af","ar","bg","ca","ckb","cs","da","de","el","en","es","et","fa","fi","fr","hr","hu","he","id","it","ja","ko","lv","lt","nl","no","pl","pt","ro","ru","sk","sl","srCyrl","srLatn","sv","th","tr","az","uk","vi","zhHans","zhHant"],"sources":["../../src/locale/index.ts"],"sourcesContent":["export { default as af } from './af'\nexport { default as ar } from './ar'\nexport { default as bg } from './bg'\nexport { default as ca } from './ca'\nexport { default as ckb } from './ckb'\nexport { default as cs } from './cs'\nexport { default as da } from './da'\nexport { default as de } from './de'\nexport { default as el } from './el'\nexport { default as en } from './en'\nexport { default as es } from './es'\nexport { default as et } from './et'\nexport { default as fa } from './fa'\nexport { default as fi } from './fi'\nexport { default as fr } from './fr'\nexport { default as hr } from './hr'\nexport { default as hu } from './hu'\nexport { default as he } from './he'\nexport { default as id } from './id'\nexport { default as it } from './it'\nexport { default as ja } from './ja'\nexport { default as ko } from './ko'\nexport { default as lv } from './lv'\nexport { default as lt } from './lt'\nexport { default as nl } from './nl'\nexport { default as no } from './no'\nexport { default as pl } from './pl'\nexport { default as pt } from './pt'\nexport { default as ro } from './ro'\nexport { default as ru } from './ru'\nexport { default as sk } from './sk'\nexport { default as sl } from './sl'\nexport { default as srCyrl } from './sr-Cyrl'\nexport { default as srLatn } from './sr-Latn'\nexport { default as sv } from './sv'\nexport { default as th } from './th'\nexport { default as tr } from './tr'\nexport { default as az } from './az'\nexport { default as uk } from './uk'\nexport { default as vi } from './vi'\nexport { default as zhHans } from './zh-Hans'\nexport { default as zhHant } from './zh-Hant'\n"],"mappings":"SAASA,OAAO,IAAIC,EAAE;AAAA,SACbD,OAAO,IAAIE,EAAE;AAAA,SACbF,OAAO,IAAIG,EAAE;AAAA,SACbH,OAAO,IAAII,EAAE;AAAA,SACbJ,OAAO,IAAIK,GAAG;AAAA,SACdL,OAAO,IAAIM,EAAE;AAAA,SACbN,OAAO,IAAIO,EAAE;AAAA,SACbP,OAAO,IAAIQ,EAAE;AAAA,SACbR,OAAO,IAAIS,EAAE;AAAA,SACbT,OAAO,IAAIU,EAAE;AAAA,SACbV,OAAO,IAAIW,EAAE;AAAA,SACbX,OAAO,IAAIY,EAAE;AAAA,SACbZ,OAAO,IAAIa,EAAE;AAAA,SACbb,OAAO,IAAIc,EAAE;AAAA,SACbd,OAAO,IAAIe,EAAE;AAAA,SACbf,OAAO,IAAIgB,EAAE;AAAA,SACbhB,OAAO,IAAIiB,EAAE;AAAA,SACbjB,OAAO,IAAIkB,EAAE;AAAA,SACblB,OAAO,IAAImB,EAAE;AAAA,SACbnB,OAAO,IAAIoB,EAAE;AAAA,SACbpB,OAAO,IAAIqB,EAAE;AAAA,SACbrB,OAAO,IAAIsB,EAAE;AAAA,SACbtB,OAAO,IAAIuB,EAAE;AAAA,SACbvB,OAAO,IAAIwB,EAAE;AAAA,SACbxB,OAAO,IAAIyB,EAAE;AAAA,SACbzB,OAAO,IAAI0B,EAAE;AAAA,SACb1B,OAAO,IAAI2B,EAAE;AAAA,SACb3B,OAAO,IAAI4B,EAAE;AAAA,SACb5B,OAAO,IAAI6B,EAAE;AAAA,SACb7B,OAAO,IAAI8B,EAAE;AAAA,SACb9B,OAAO,IAAI+B,EAAE;AAAA,SACb/B,OAAO,IAAIgC,EAAE;AAAA,SACbhC,OAAO,IAAIiC,MAAM;AAAA,SACjBjC,OAAO,IAAIkC,MAAM;AAAA,SACjBlC,OAAO,IAAImC,EAAE;AAAA,SACbnC,OAAO,IAAIoC,EAAE;AAAA,SACbpC,OAAO,IAAIqC,EAAE;AAAA,SACbrC,OAAO,IAAIsC,EAAE;AAAA,SACbtC,OAAO,IAAIuC,EAAE;AAAA,SACbvC,OAAO,IAAIwC,EAAE;AAAA,SACbxC,OAAO,IAAIyC,MAAM;AAAA,SACjBzC,OAAO,IAAI0C,MAAM"}
|
package/lib/locale/sk.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
badge: 'Odznak',
|
|
3
|
-
open: '
|
|
3
|
+
open: 'Otvoriť',
|
|
4
4
|
close: 'Zavrieť',
|
|
5
5
|
confirmEdit: {
|
|
6
6
|
ok: 'OK',
|
|
7
|
-
cancel: '
|
|
7
|
+
cancel: 'Zrušiť'
|
|
8
8
|
},
|
|
9
9
|
dataIterator: {
|
|
10
10
|
noResultsText: 'Neboli nájdené žiadne záznamy',
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
sortDescending: 'Zoradené zostupne.',
|
|
17
17
|
sortAscending: 'Zoradené vzostupne.',
|
|
18
18
|
sortNone: 'Nezoradené.',
|
|
19
|
-
activateNone: 'Aktivujte na zrušenie
|
|
19
|
+
activateNone: 'Aktivujte na zrušenie zoradenia.',
|
|
20
20
|
activateDescending: 'Aktivujte na zoradenie zostupne.',
|
|
21
21
|
activateAscending: 'Aktivujte na zoradenie vzostupne.'
|
|
22
22
|
},
|
|
@@ -32,18 +32,18 @@ export default {
|
|
|
32
32
|
pageText: '{0}–{1} z {2}'
|
|
33
33
|
},
|
|
34
34
|
dateRangeInput: {
|
|
35
|
-
divider: '
|
|
35
|
+
divider: 'až'
|
|
36
36
|
},
|
|
37
37
|
datePicker: {
|
|
38
|
-
itemsSelected: '{0}
|
|
38
|
+
itemsSelected: '{0} vybraných',
|
|
39
39
|
range: {
|
|
40
|
-
title: '
|
|
41
|
-
header: '
|
|
40
|
+
title: 'Vyberte rozsah dátumov',
|
|
41
|
+
header: 'Zadajte rozsah dátumov'
|
|
42
42
|
},
|
|
43
|
-
title: '
|
|
44
|
-
header: '
|
|
43
|
+
title: 'Vyberte dátum',
|
|
44
|
+
header: 'Zadajte dátum',
|
|
45
45
|
input: {
|
|
46
|
-
placeholder: '
|
|
46
|
+
placeholder: 'Zadajte dátum'
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
noDataText: 'Nie sú dostupné žiadne dáta',
|
|
@@ -56,13 +56,13 @@ export default {
|
|
|
56
56
|
},
|
|
57
57
|
calendar: {
|
|
58
58
|
moreEvents: '{0} ďalších',
|
|
59
|
-
today: '
|
|
59
|
+
today: 'Dnes'
|
|
60
60
|
},
|
|
61
61
|
input: {
|
|
62
|
-
clear: '
|
|
63
|
-
prependAction: '{0}
|
|
64
|
-
appendAction: '{0}
|
|
65
|
-
otp: '
|
|
62
|
+
clear: 'Vymazať {0}',
|
|
63
|
+
prependAction: 'Akcia pred {0}',
|
|
64
|
+
appendAction: 'Akcia za {0}',
|
|
65
|
+
otp: 'Prosím zadajte OTP znak {0}'
|
|
66
66
|
},
|
|
67
67
|
fileInput: {
|
|
68
68
|
counter: '{0} súborov',
|
|
@@ -79,23 +79,23 @@ export default {
|
|
|
79
79
|
previous: 'Predchádzajúca stránka',
|
|
80
80
|
page: 'Ísť na stránku {0}',
|
|
81
81
|
currentPage: 'Aktuálna stránka, stránka {0}',
|
|
82
|
-
first: '
|
|
83
|
-
last: '
|
|
82
|
+
first: 'Prvá stránka',
|
|
83
|
+
last: 'Posledná stránka'
|
|
84
84
|
}
|
|
85
85
|
},
|
|
86
86
|
stepper: {
|
|
87
|
-
next: '
|
|
88
|
-
prev: '
|
|
87
|
+
next: 'Ďalší',
|
|
88
|
+
prev: 'Predchádzajúci'
|
|
89
89
|
},
|
|
90
90
|
rating: {
|
|
91
91
|
ariaLabel: {
|
|
92
92
|
item: 'Hodnotenie {0} z {1}'
|
|
93
93
|
}
|
|
94
94
|
},
|
|
95
|
-
loading: '
|
|
95
|
+
loading: 'Načítavam...',
|
|
96
96
|
infiniteScroll: {
|
|
97
|
-
loadMore: '
|
|
98
|
-
empty: '
|
|
97
|
+
loadMore: 'Načítať viac',
|
|
98
|
+
empty: 'Žiadne ďalšie'
|
|
99
99
|
}
|
|
100
100
|
};
|
|
101
101
|
//# sourceMappingURL=sk.mjs.map
|
package/lib/locale/sk.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sk.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/sk.ts"],"sourcesContent":["export default {\n badge: 'Odznak',\n open: '
|
|
1
|
+
{"version":3,"file":"sk.mjs","names":["badge","open","close","confirmEdit","ok","cancel","dataIterator","noResultsText","loadingText","dataTable","itemsPerPageText","ariaLabel","sortDescending","sortAscending","sortNone","activateNone","activateDescending","activateAscending","sortBy","dataFooter","itemsPerPageAll","nextPage","prevPage","firstPage","lastPage","pageText","dateRangeInput","divider","datePicker","itemsSelected","range","title","header","input","placeholder","noDataText","carousel","prev","next","delimiter","calendar","moreEvents","today","clear","prependAction","appendAction","otp","fileInput","counter","counterSize","timePicker","am","pm","pagination","root","previous","page","currentPage","first","last","stepper","rating","item","loading","infiniteScroll","loadMore","empty"],"sources":["../../src/locale/sk.ts"],"sourcesContent":["export default {\n badge: 'Odznak',\n open: 'Otvoriť',\n close: 'Zavrieť',\n confirmEdit: {\n ok: 'OK',\n cancel: 'Zrušiť',\n },\n dataIterator: {\n noResultsText: 'Neboli nájdené žiadne záznamy',\n loadingText: 'Načítavam položky...',\n },\n dataTable: {\n itemsPerPageText: 'Počet riadkov na stránku:',\n ariaLabel: {\n sortDescending: 'Zoradené zostupne.',\n sortAscending: 'Zoradené vzostupne.',\n sortNone: 'Nezoradené.',\n activateNone: 'Aktivujte na zrušenie zoradenia.',\n activateDescending: 'Aktivujte na zoradenie zostupne.',\n activateAscending: 'Aktivujte na zoradenie vzostupne.',\n },\n sortBy: 'Zoradiť podľa',\n },\n dataFooter: {\n itemsPerPageText: 'Počet položiek na stránku:',\n itemsPerPageAll: 'Všetko',\n nextPage: 'Ďalšia stránka',\n prevPage: 'Predchádzajúca stránka',\n firstPage: 'Prvá stránka',\n lastPage: 'Posledná stránka',\n pageText: '{0}–{1} z {2}',\n },\n dateRangeInput: {\n divider: 'až',\n },\n datePicker: {\n itemsSelected: '{0} vybraných',\n range: {\n title: 'Vyberte rozsah dátumov',\n header: 'Zadajte rozsah dátumov',\n },\n title: 'Vyberte dátum',\n header: 'Zadajte dátum',\n input: {\n placeholder: 'Zadajte dátum',\n },\n },\n noDataText: 'Nie sú dostupné žiadne dáta',\n carousel: {\n prev: 'Predchádzajúci obrázok',\n next: 'Další obrázok',\n ariaLabel: {\n delimiter: 'Snímka {0} z {1}',\n },\n },\n calendar: {\n moreEvents: '{0} ďalších',\n today: 'Dnes',\n },\n input: {\n clear: 'Vymazať {0}',\n prependAction: 'Akcia pred {0}',\n appendAction: 'Akcia za {0}',\n otp: 'Prosím zadajte OTP znak {0}',\n },\n fileInput: {\n counter: '{0} súborov',\n counterSize: '{0} súborov ({1} celkom)',\n },\n timePicker: {\n am: 'AM',\n pm: 'PM',\n },\n pagination: {\n ariaLabel: {\n root: 'Navigácia stránkovania',\n next: 'Ďalšia stránka',\n previous: 'Predchádzajúca stránka',\n page: 'Ísť na stránku {0}',\n currentPage: 'Aktuálna stránka, stránka {0}',\n first: 'Prvá stránka',\n last: 'Posledná stránka',\n },\n },\n stepper: {\n next: 'Ďalší',\n prev: 'Predchádzajúci',\n },\n rating: {\n ariaLabel: {\n item: 'Hodnotenie {0} z {1}',\n },\n },\n loading: 'Načítavam...',\n infiniteScroll: {\n loadMore: 'Načítať viac',\n empty: 'Žiadne ďalšie',\n },\n}\n"],"mappings":"AAAA,eAAe;EACbA,KAAK,EAAE,QAAQ;EACfC,IAAI,EAAE,SAAS;EACfC,KAAK,EAAE,SAAS;EAChBC,WAAW,EAAE;IACXC,EAAE,EAAE,IAAI;IACRC,MAAM,EAAE;EACV,CAAC;EACDC,YAAY,EAAE;IACZC,aAAa,EAAE,+BAA+B;IAC9CC,WAAW,EAAE;EACf,CAAC;EACDC,SAAS,EAAE;IACTC,gBAAgB,EAAE,2BAA2B;IAC7CC,SAAS,EAAE;MACTC,cAAc,EAAE,oBAAoB;MACpCC,aAAa,EAAE,qBAAqB;MACpCC,QAAQ,EAAE,aAAa;MACvBC,YAAY,EAAE,kCAAkC;MAChDC,kBAAkB,EAAE,kCAAkC;MACtDC,iBAAiB,EAAE;IACrB,CAAC;IACDC,MAAM,EAAE;EACV,CAAC;EACDC,UAAU,EAAE;IACVT,gBAAgB,EAAE,4BAA4B;IAC9CU,eAAe,EAAE,QAAQ;IACzBC,QAAQ,EAAE,gBAAgB;IAC1BC,QAAQ,EAAE,wBAAwB;IAClCC,SAAS,EAAE,cAAc;IACzBC,QAAQ,EAAE,kBAAkB;IAC5BC,QAAQ,EAAE;EACZ,CAAC;EACDC,cAAc,EAAE;IACdC,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAE;IACVC,aAAa,EAAE,eAAe;IAC9BC,KAAK,EAAE;MACLC,KAAK,EAAE,wBAAwB;MAC/BC,MAAM,EAAE;IACV,CAAC;IACDD,KAAK,EAAE,eAAe;IACtBC,MAAM,EAAE,eAAe;IACvBC,KAAK,EAAE;MACLC,WAAW,EAAE;IACf;EACF,CAAC;EACDC,UAAU,EAAE,6BAA6B;EACzCC,QAAQ,EAAE;IACRC,IAAI,EAAE,wBAAwB;IAC9BC,IAAI,EAAE,eAAe;IACrB3B,SAAS,EAAE;MACT4B,SAAS,EAAE;IACb;EACF,CAAC;EACDC,QAAQ,EAAE;IACRC,UAAU,EAAE,aAAa;IACzBC,KAAK,EAAE;EACT,CAAC;EACDT,KAAK,EAAE;IACLU,KAAK,EAAE,aAAa;IACpBC,aAAa,EAAE,gBAAgB;IAC/BC,YAAY,EAAE,cAAc;IAC5BC,GAAG,EAAE;EACP,CAAC;EACDC,SAAS,EAAE;IACTC,OAAO,EAAE,aAAa;IACtBC,WAAW,EAAE;EACf,CAAC;EACDC,UAAU,EAAE;IACVC,EAAE,EAAE,IAAI;IACRC,EAAE,EAAE;EACN,CAAC;EACDC,UAAU,EAAE;IACV1C,SAAS,EAAE;MACT2C,IAAI,EAAE,wBAAwB;MAC9BhB,IAAI,EAAE,gBAAgB;MACtBiB,QAAQ,EAAE,wBAAwB;MAClCC,IAAI,EAAE,oBAAoB;MAC1BC,WAAW,EAAE,+BAA+B;MAC5CC,KAAK,EAAE,cAAc;MACrBC,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE;IACPtB,IAAI,EAAE,OAAO;IACbD,IAAI,EAAE;EACR,CAAC;EACDwB,MAAM,EAAE;IACNlD,SAAS,EAAE;MACTmD,IAAI,EAAE;IACR;EACF,CAAC;EACDC,OAAO,EAAE,cAAc;EACvBC,cAAc,EAAE;IACdC,QAAQ,EAAE,cAAc;IACxBC,KAAK,EAAE;EACT;AACF,CAAC"}
|