vuetify 3.4.11 → 3.5.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.
Files changed (121) hide show
  1. package/dist/json/attributes.json +306 -214
  2. package/dist/json/importMap.json +122 -122
  3. package/dist/json/tags.json +23 -0
  4. package/dist/json/web-types.json +969 -643
  5. package/dist/vuetify-labs.css +3064 -2986
  6. package/dist/vuetify-labs.d.ts +6203 -970
  7. package/dist/vuetify-labs.esm.js +15387 -15144
  8. package/dist/vuetify-labs.esm.js.map +1 -1
  9. package/dist/vuetify-labs.js +15386 -15142
  10. package/dist/vuetify-labs.min.css +2 -2
  11. package/dist/vuetify.css +599 -523
  12. package/dist/vuetify.d.ts +6239 -1006
  13. package/dist/vuetify.esm.js +15387 -15144
  14. package/dist/vuetify.esm.js.map +1 -1
  15. package/dist/vuetify.js +15386 -15142
  16. package/dist/vuetify.js.map +1 -1
  17. package/dist/vuetify.min.css +2 -2
  18. package/dist/vuetify.min.js +759 -727
  19. package/dist/vuetify.min.js.map +1 -1
  20. package/lib/blueprints/index.d.mts +11 -1
  21. package/lib/blueprints/md1.d.mts +11 -1
  22. package/lib/blueprints/md2.d.mts +11 -1
  23. package/lib/blueprints/md3.d.mts +11 -1
  24. package/lib/components/VAlert/VAlert.css +2 -2
  25. package/lib/components/VAlert/_variables.scss +2 -2
  26. package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
  27. package/lib/components/VAutocomplete/VAutocomplete.mjs +6 -2
  28. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  29. package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
  30. package/lib/components/VAutocomplete/index.d.mts +1698 -0
  31. package/lib/components/VBanner/index.d.mts +4 -4
  32. package/lib/components/VCard/VCard.css +6 -2
  33. package/lib/components/VCard/VCard.sass +5 -0
  34. package/lib/components/VCard/VCardItem.mjs +23 -10
  35. package/lib/components/VCard/VCardItem.mjs.map +1 -1
  36. package/lib/components/VCard/_variables.scss +2 -2
  37. package/lib/components/VCarousel/index.d.mts +30 -9
  38. package/lib/components/VChipGroup/VChipGroup.css +3 -3
  39. package/lib/components/VChipGroup/VChipGroup.mjs +21 -16
  40. package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
  41. package/lib/components/VChipGroup/VChipGroup.sass +4 -3
  42. package/lib/components/VChipGroup/index.d.mts +118 -1
  43. package/lib/components/VCombobox/VCombobox.css +1 -1
  44. package/lib/components/VCombobox/VCombobox.mjs +9 -3
  45. package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
  46. package/lib/components/VCombobox/VCombobox.sass +1 -1
  47. package/lib/components/VCombobox/index.d.mts +1704 -0
  48. package/lib/components/VDataIterator/index.d.mts +1 -0
  49. package/lib/components/VDataTable/VDataTable.css +2 -1
  50. package/lib/components/VDataTable/VDataTable.mjs +2 -1
  51. package/lib/components/VDataTable/VDataTable.mjs.map +1 -1
  52. package/lib/components/VDataTable/VDataTable.sass +2 -1
  53. package/lib/components/VDataTable/VDataTableHeaders.mjs +6 -2
  54. package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
  55. package/lib/components/VDataTable/VDataTableVirtual.mjs +4 -3
  56. package/lib/components/VDataTable/VDataTableVirtual.mjs.map +1 -1
  57. package/lib/components/VDataTable/composables/headers.mjs +16 -12
  58. package/lib/components/VDataTable/composables/headers.mjs.map +1 -1
  59. package/lib/components/VDataTable/composables/sort.mjs +13 -3
  60. package/lib/components/VDataTable/composables/sort.mjs.map +1 -1
  61. package/lib/components/VDataTable/index.d.mts +86 -30
  62. package/lib/components/VDataTable/types.mjs.map +1 -1
  63. package/lib/components/VDatePicker/VDatePickerMonth.mjs +56 -11
  64. package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
  65. package/lib/components/VDatePicker/index.d.mts +34 -19
  66. package/lib/components/VFileInput/VFileInput.mjs +2 -2
  67. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  68. package/lib/components/VImg/VImg.css +3 -0
  69. package/lib/components/VImg/VImg.mjs +14 -3
  70. package/lib/components/VImg/VImg.mjs.map +1 -1
  71. package/lib/components/VImg/VImg.sass +3 -0
  72. package/lib/components/VImg/_variables.scss +3 -0
  73. package/lib/components/VImg/index.d.mts +21 -0
  74. package/lib/components/VList/VList.mjs +5 -1
  75. package/lib/components/VList/VList.mjs.map +1 -1
  76. package/lib/components/VList/index.d.mts +12 -0
  77. package/lib/components/VSelect/VSelect.mjs +5 -2
  78. package/lib/components/VSelect/VSelect.mjs.map +1 -1
  79. package/lib/components/VSelect/index.d.mts +1689 -0
  80. package/lib/components/VSlideGroup/index.d.mts +7 -7
  81. package/lib/components/VSlider/VSliderTrack.css +1 -1
  82. package/lib/components/VSlider/VSliderTrack.sass +1 -1
  83. package/lib/components/VSlider/_variables.scss +1 -0
  84. package/lib/components/VSwitch/VSwitch.css +22 -2
  85. package/lib/components/VSwitch/VSwitch.mjs +26 -3
  86. package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
  87. package/lib/components/VSwitch/VSwitch.sass +20 -2
  88. package/lib/components/VSwitch/index.d.mts +37 -6
  89. package/lib/components/VSystemBar/VSystemBar.css +2 -2
  90. package/lib/components/VSystemBar/_variables.scss +2 -2
  91. package/lib/components/VTabs/index.d.mts +14 -14
  92. package/lib/components/VTimeline/VTimeline.css +1 -1
  93. package/lib/components/VTimeline/_variables.scss +1 -1
  94. package/lib/components/VToolbar/VToolbar.css +2 -2
  95. package/lib/components/VToolbar/_variables.scss +2 -2
  96. package/lib/components/VWindow/index.d.mts +7 -7
  97. package/lib/components/index.d.mts +6196 -985
  98. package/lib/composables/goto.mjs +105 -0
  99. package/lib/composables/goto.mjs.map +1 -0
  100. package/lib/composables/index.mjs +1 -0
  101. package/lib/composables/index.mjs.map +1 -1
  102. package/lib/composables/locale.mjs +1 -0
  103. package/lib/composables/locale.mjs.map +1 -1
  104. package/lib/composables/theme.mjs +2 -0
  105. package/lib/composables/theme.mjs.map +1 -1
  106. package/lib/entry-bundler.mjs +1 -1
  107. package/lib/entry-bundler.mjs.map +1 -1
  108. package/lib/framework.mjs +6 -2
  109. package/lib/framework.mjs.map +1 -1
  110. package/lib/index.d.mts +60 -38
  111. package/lib/labs/VCalendar/VCalendar.css +4 -2
  112. package/lib/labs/VCalendar/VCalendar.sass +4 -2
  113. package/lib/labs/VCalendar/_variables.scss +5 -0
  114. package/lib/locale/index.d.mts +124 -22
  115. package/lib/locale/index.mjs +1 -0
  116. package/lib/locale/index.mjs.map +1 -1
  117. package/lib/locale/km.mjs +101 -0
  118. package/lib/locale/km.mjs.map +1 -0
  119. package/lib/styles/main.css +48 -0
  120. package/lib/styles/settings/_utilities.scss +6 -0
  121. package/package.json +2 -2
package/lib/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as vue from 'vue';
2
- import { Ref, DeepReadonly, JSXComponent, PropType, CSSProperties, App } from 'vue';
2
+ import { Ref, DeepReadonly, ComponentPublicInstance, JSXComponent, PropType, CSSProperties, App } from 'vue';
3
3
 
4
4
  interface DateAdapter<T = unknown> {
5
5
  date(value?: any): T | null;
@@ -282,6 +282,23 @@ type DefaultsOptions = Partial<DefaultsInstance>;
282
282
  declare function useDefaults<T extends Record<string, any>>(props: T, name?: string): T;
283
283
  declare function useDefaults(props?: undefined, name?: string): Record<string, any>;
284
284
 
285
+ interface GoToInstance {
286
+ rtl: Ref<boolean>;
287
+ options: GoToOptions;
288
+ }
289
+ interface GoToOptions {
290
+ container: ComponentPublicInstance | HTMLElement | string;
291
+ duration: number;
292
+ layout: boolean;
293
+ offset: number;
294
+ easing: string | ((t: number) => number);
295
+ patterns: Record<string, (t: number) => number>;
296
+ }
297
+ declare function useGoTo(_options?: Partial<GoToOptions>): {
298
+ (target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
299
+ horizontal(target: ComponentPublicInstance | HTMLElement | string | number, options?: Partial<GoToOptions>): Promise<unknown>;
300
+ };
301
+
285
302
  type IconValue = string | (string | [path: string, opacity: number])[] | JSXComponent;
286
303
  declare const IconValue: PropType<IconValue>;
287
304
  interface IconAliases {
@@ -374,6 +391,7 @@ interface VuetifyOptions {
374
391
  directives?: Record<string, any>;
375
392
  defaults?: DefaultsOptions;
376
393
  display?: DisplayOptions;
394
+ goTo?: GoToOptions;
377
395
  theme?: ThemeOptions;
378
396
  icons?: IconOptions;
379
397
  locale?: LocaleOptions & RtlOptions;
@@ -444,13 +462,17 @@ declare function createVuetify(vuetify?: VuetifyOptions): {
444
462
  setMinutes: (date: unknown, minutes: number) => unknown;
445
463
  };
446
464
  };
465
+ goTo: {
466
+ rtl: vue.Ref<boolean>;
467
+ options: Record<string, any>;
468
+ };
447
469
  };
448
470
  declare namespace createVuetify {
449
471
  var version: string;
450
472
  }
451
473
  declare const version: string;
452
474
 
453
- export { type Blueprint, type DateInstance, type DateOptions, type DefaultsInstance, type DisplayBreakpoint, type DisplayInstance, type DisplayThresholds, type IconAliases, type IconOptions, type IconProps, type IconSet, type LocaleInstance, type LocaleMessages, type LocaleOptions, type RtlInstance, type RtlOptions, type SubmitEventPromise, type ThemeDefinition, type ThemeInstance, type VuetifyOptions, createVuetify, useDate, useDefaults, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
475
+ export { type Blueprint, type DateInstance, type DateOptions, type DefaultsInstance, type DisplayBreakpoint, type DisplayInstance, type DisplayThresholds, type GoToInstance, type IconAliases, type IconOptions, type IconProps, type IconSet, type LocaleInstance, type LocaleMessages, type LocaleOptions, type RtlInstance, type RtlOptions, type SubmitEventPromise, type ThemeDefinition, type ThemeInstance, type VuetifyOptions, createVuetify, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
454
476
 
455
477
  /* eslint-disable local-rules/sort-imports */
456
478
 
@@ -496,22 +518,22 @@ declare module '@vue/runtime-core' {
496
518
  VAppBar: typeof import('vuetify/components')['VAppBar']
497
519
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
498
520
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
521
+ VApp: typeof import('vuetify/components')['VApp']
522
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
499
523
  VAlert: typeof import('vuetify/components')['VAlert']
500
524
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
501
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
502
- VApp: typeof import('vuetify/components')['VApp']
525
+ VAvatar: typeof import('vuetify/components')['VAvatar']
526
+ VBadge: typeof import('vuetify/components')['VBadge']
527
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
503
528
  VBanner: typeof import('vuetify/components')['VBanner']
504
529
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
505
530
  VBannerText: typeof import('vuetify/components')['VBannerText']
506
- VAvatar: typeof import('vuetify/components')['VAvatar']
507
- VBadge: typeof import('vuetify/components')['VBadge']
531
+ VBtn: typeof import('vuetify/components')['VBtn']
508
532
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
509
533
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
510
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
511
534
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
512
535
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
513
536
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
514
- VBtn: typeof import('vuetify/components')['VBtn']
515
537
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
516
538
  VCard: typeof import('vuetify/components')['VCard']
517
539
  VCardActions: typeof import('vuetify/components')['VCardActions']
@@ -521,13 +543,19 @@ declare module '@vue/runtime-core' {
521
543
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
522
544
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
523
545
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
546
+ VChip: typeof import('vuetify/components')['VChip']
524
547
  VCarousel: typeof import('vuetify/components')['VCarousel']
525
548
  VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
526
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
527
- VChip: typeof import('vuetify/components')['VChip']
528
549
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
529
550
  VCode: typeof import('vuetify/components')['VCode']
551
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
530
552
  VCombobox: typeof import('vuetify/components')['VCombobox']
553
+ VDataTable: typeof import('vuetify/components')['VDataTable']
554
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
555
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
556
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
557
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
558
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
531
559
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
532
560
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
533
561
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
@@ -535,33 +563,28 @@ declare module '@vue/runtime-core' {
535
563
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
536
564
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
537
565
  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
- VDialog: typeof import('vuetify/components')['VDialog']
545
566
  VDivider: typeof import('vuetify/components')['VDivider']
567
+ VDialog: typeof import('vuetify/components')['VDialog']
546
568
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
547
569
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
548
570
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
549
571
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
550
572
  VField: typeof import('vuetify/components')['VField']
551
573
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
574
+ VFileInput: typeof import('vuetify/components')['VFileInput']
552
575
  VFooter: typeof import('vuetify/components')['VFooter']
553
576
  VImg: typeof import('vuetify/components')['VImg']
554
- VFileInput: typeof import('vuetify/components')['VFileInput']
577
+ VInput: typeof import('vuetify/components')['VInput']
555
578
  VIcon: typeof import('vuetify/components')['VIcon']
556
579
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
557
580
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
558
581
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
559
582
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
560
- VInput: typeof import('vuetify/components')['VInput']
561
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
562
583
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
563
584
  VItem: typeof import('vuetify/components')['VItem']
564
585
  VKbd: typeof import('vuetify/components')['VKbd']
586
+ VLabel: typeof import('vuetify/components')['VLabel']
587
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
565
588
  VList: typeof import('vuetify/components')['VList']
566
589
  VListGroup: typeof import('vuetify/components')['VListGroup']
567
590
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -571,26 +594,25 @@ declare module '@vue/runtime-core' {
571
594
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
572
595
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
573
596
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
574
- VLabel: typeof import('vuetify/components')['VLabel']
575
- VMenu: typeof import('vuetify/components')['VMenu']
576
597
  VMain: typeof import('vuetify/components')['VMain']
577
598
  VMessages: typeof import('vuetify/components')['VMessages']
599
+ VMenu: typeof import('vuetify/components')['VMenu']
578
600
  VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
579
- VOverlay: typeof import('vuetify/components')['VOverlay']
580
601
  VOtpInput: typeof import('vuetify/components')['VOtpInput']
602
+ VOverlay: typeof import('vuetify/components')['VOverlay']
581
603
  VPagination: typeof import('vuetify/components')['VPagination']
582
604
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
583
- VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
584
605
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
606
+ VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
607
+ VSelect: typeof import('vuetify/components')['VSelect']
585
608
  VRating: typeof import('vuetify/components')['VRating']
586
609
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
610
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
611
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
587
612
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
588
- VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
589
- VSelect: typeof import('vuetify/components')['VSelect']
590
613
  VSheet: typeof import('vuetify/components')['VSheet']
614
+ VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
591
615
  VSlider: typeof import('vuetify/components')['VSlider']
592
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
593
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
594
616
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
595
617
  VStepper: typeof import('vuetify/components')['VStepper']
596
618
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
@@ -598,37 +620,37 @@ declare module '@vue/runtime-core' {
598
620
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
599
621
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
600
622
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
601
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
602
- VTable: typeof import('vuetify/components')['VTable']
603
623
  VSwitch: typeof import('vuetify/components')['VSwitch']
604
- VTextarea: typeof import('vuetify/components')['VTextarea']
624
+ VTable: typeof import('vuetify/components')['VTable']
605
625
  VTabs: typeof import('vuetify/components')['VTabs']
606
626
  VTab: typeof import('vuetify/components')['VTab']
607
- VTextField: typeof import('vuetify/components')['VTextField']
608
- VTooltip: typeof import('vuetify/components')['VTooltip']
609
627
  VTimeline: typeof import('vuetify/components')['VTimeline']
610
628
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
611
- VWindow: typeof import('vuetify/components')['VWindow']
612
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
629
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
630
+ VTextarea: typeof import('vuetify/components')['VTextarea']
631
+ VTextField: typeof import('vuetify/components')['VTextField']
632
+ VTooltip: typeof import('vuetify/components')['VTooltip']
613
633
  VToolbar: typeof import('vuetify/components')['VToolbar']
614
634
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
615
635
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
636
+ VWindow: typeof import('vuetify/components')['VWindow']
637
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
616
638
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
617
639
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
618
640
  VForm: typeof import('vuetify/components')['VForm']
619
- VHover: typeof import('vuetify/components')['VHover']
620
641
  VContainer: typeof import('vuetify/components')['VContainer']
621
642
  VCol: typeof import('vuetify/components')['VCol']
622
643
  VRow: typeof import('vuetify/components')['VRow']
623
644
  VSpacer: typeof import('vuetify/components')['VSpacer']
624
- VLazy: typeof import('vuetify/components')['VLazy']
645
+ VHover: typeof import('vuetify/components')['VHover']
625
646
  VLayout: typeof import('vuetify/components')['VLayout']
626
647
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
648
+ VLazy: typeof import('vuetify/components')['VLazy']
627
649
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
628
650
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
629
651
  VParallax: typeof import('vuetify/components')['VParallax']
630
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
631
652
  VRadio: typeof import('vuetify/components')['VRadio']
653
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
632
654
  VResponsive: typeof import('vuetify/components')['VResponsive']
633
655
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
634
656
  VValidation: typeof import('vuetify/components')['VValidation']
@@ -87,7 +87,8 @@
87
87
  }
88
88
 
89
89
  .v-calendar-weekly__head-weeknumber {
90
- background: rgb(var(--v-theme-on-surface-variant));
90
+ background: rgb(var(--v-theme-surface-light));
91
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
91
92
  }
92
93
 
93
94
  .v-calendar-weekly__week {
@@ -99,8 +100,9 @@
99
100
 
100
101
  .v-calendar-month__weeknumber {
101
102
  padding-top: 6px;
102
- background: rgb(var(--v-theme-on-surface-variant));
103
+ background: rgb(var(--v-theme-surface-light));
103
104
  border-bottom: thin solid #e0e0e0;
105
+ color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity));
104
106
  text-align: center;
105
107
  font-size: 12px;
106
108
  font-weight: 500;
@@ -73,7 +73,8 @@
73
73
  font-size: 1.5rem
74
74
 
75
75
  .v-calendar-weekly__head-weeknumber
76
- background: rgb(var(--v-theme-on-surface-variant))
76
+ background: $calendar-weekly-weeknumber-background
77
+ color: $calendar-weekly-weeknumber-color
77
78
 
78
79
  .v-calendar-weekly__week
79
80
  display: flex
@@ -84,8 +85,9 @@
84
85
 
85
86
  .v-calendar-month__weeknumber
86
87
  padding-top: $calendar-weekly-weeknumber-padding-top
87
- background: rgb(var(--v-theme-on-surface-variant))
88
+ background: $calendar-month-weeknumber-background
88
89
  border-bottom: $calendar-line-width solid $calendar-line-color
90
+ color: $calendar-month-weeknumber-color
89
91
  text-align: center
90
92
  font-size: $calendar-weekly-weeknumber-font-size
91
93
  font-weight: $calendar-weekly-weeknumber-font-weight
@@ -29,11 +29,16 @@ $calendar-weekly-day-label-size: 32px !default;
29
29
  $calendar-weekly-day-label-font-size: 12px !default;
30
30
  $calendar-weekly-day-label-margin: 4px 0 0 0 !default;
31
31
  $calendar-weekly-day-month-left: 36px !default;
32
+ $calendar-weekly-weeknumber-background: rgb(var(--v-theme-surface-light)) !default;
33
+ $calendar-weekly-weeknumber-color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity)) !default;
32
34
  $calendar-weekly-weeknumber-flex-basis: 24px !default;
33
35
  $calendar-weekly-weeknumber-padding-top: 6px !default;
34
36
  $calendar-weekly-weeknumber-font-size: 12px !default;
35
37
  $calendar-weekly-weeknumber-font-weight: 500 !default;
36
38
 
39
+ $calendar-month-weeknumber-background: rgb(var(--v-theme-surface-light)) !default;
40
+ $calendar-month-weeknumber-color: rgba(var(--v-theme-on-surface-light), var(--v-high-emphasis-opacity)) !default;
41
+
37
42
  $calendar-event-bottom-space: 1px !default;
38
43
  $calendar-event-border-width: 1px !default;
39
44
  // $calendar-event-border-radius: $border-radius-root !default;
@@ -1,4 +1,4 @@
1
- declare const _default$F: {
1
+ declare const _default$G: {
2
2
  badge: string;
3
3
  open: string;
4
4
  close: string;
@@ -100,7 +100,7 @@ declare const _default$F: {
100
100
  };
101
101
  //# sourceMappingURL=af.d.ts.map
102
102
 
103
- declare const _default$E: {
103
+ declare const _default$F: {
104
104
  badge: string;
105
105
  open: string;
106
106
  close: string;
@@ -202,7 +202,7 @@ declare const _default$E: {
202
202
  };
203
203
  //# sourceMappingURL=ar.d.ts.map
204
204
 
205
- declare const _default$D: {
205
+ declare const _default$E: {
206
206
  badge: string;
207
207
  open: string;
208
208
  close: string;
@@ -304,7 +304,7 @@ declare const _default$D: {
304
304
  };
305
305
  //# sourceMappingURL=bg.d.ts.map
306
306
 
307
- declare const _default$C: {
307
+ declare const _default$D: {
308
308
  badge: string;
309
309
  open: string;
310
310
  close: string;
@@ -406,7 +406,7 @@ declare const _default$C: {
406
406
  };
407
407
  //# sourceMappingURL=ca.d.ts.map
408
408
 
409
- declare const _default$B: {
409
+ declare const _default$C: {
410
410
  badge: string;
411
411
  open: string;
412
412
  close: string;
@@ -508,7 +508,7 @@ declare const _default$B: {
508
508
  };
509
509
  //# sourceMappingURL=ckb.d.ts.map
510
510
 
511
- declare const _default$A: {
511
+ declare const _default$B: {
512
512
  badge: string;
513
513
  open: string;
514
514
  close: string;
@@ -610,7 +610,7 @@ declare const _default$A: {
610
610
  };
611
611
  //# sourceMappingURL=cs.d.ts.map
612
612
 
613
- declare const _default$z: {
613
+ declare const _default$A: {
614
614
  badge: string;
615
615
  open: string;
616
616
  close: string;
@@ -712,7 +712,7 @@ declare const _default$z: {
712
712
  };
713
713
  //# sourceMappingURL=da.d.ts.map
714
714
 
715
- declare const _default$y: {
715
+ declare const _default$z: {
716
716
  badge: string;
717
717
  open: string;
718
718
  close: string;
@@ -814,7 +814,7 @@ declare const _default$y: {
814
814
  };
815
815
  //# sourceMappingURL=de.d.ts.map
816
816
 
817
- declare const _default$x: {
817
+ declare const _default$y: {
818
818
  badge: string;
819
819
  open: string;
820
820
  close: string;
@@ -916,7 +916,7 @@ declare const _default$x: {
916
916
  };
917
917
  //# sourceMappingURL=el.d.ts.map
918
918
 
919
- declare const _default$w: {
919
+ declare const _default$x: {
920
920
  badge: string;
921
921
  open: string;
922
922
  close: string;
@@ -1018,7 +1018,7 @@ declare const _default$w: {
1018
1018
  };
1019
1019
  //# sourceMappingURL=en.d.ts.map
1020
1020
 
1021
- declare const _default$v: {
1021
+ declare const _default$w: {
1022
1022
  badge: string;
1023
1023
  open: string;
1024
1024
  close: string;
@@ -1120,7 +1120,7 @@ declare const _default$v: {
1120
1120
  };
1121
1121
  //# sourceMappingURL=es.d.ts.map
1122
1122
 
1123
- declare const _default$u: {
1123
+ declare const _default$v: {
1124
1124
  badge: string;
1125
1125
  open: string;
1126
1126
  close: string;
@@ -1222,7 +1222,7 @@ declare const _default$u: {
1222
1222
  };
1223
1223
  //# sourceMappingURL=et.d.ts.map
1224
1224
 
1225
- declare const _default$t: {
1225
+ declare const _default$u: {
1226
1226
  badge: string;
1227
1227
  open: string;
1228
1228
  close: string;
@@ -1324,7 +1324,7 @@ declare const _default$t: {
1324
1324
  };
1325
1325
  //# sourceMappingURL=fa.d.ts.map
1326
1326
 
1327
- declare const _default$s: {
1327
+ declare const _default$t: {
1328
1328
  badge: string;
1329
1329
  open: string;
1330
1330
  close: string;
@@ -1426,7 +1426,7 @@ declare const _default$s: {
1426
1426
  };
1427
1427
  //# sourceMappingURL=fi.d.ts.map
1428
1428
 
1429
- declare const _default$r: {
1429
+ declare const _default$s: {
1430
1430
  badge: string;
1431
1431
  open: string;
1432
1432
  close: string;
@@ -1528,7 +1528,7 @@ declare const _default$r: {
1528
1528
  };
1529
1529
  //# sourceMappingURL=fr.d.ts.map
1530
1530
 
1531
- declare const _default$q: {
1531
+ declare const _default$r: {
1532
1532
  badge: string;
1533
1533
  open: string;
1534
1534
  close: string;
@@ -1630,7 +1630,7 @@ declare const _default$q: {
1630
1630
  };
1631
1631
  //# sourceMappingURL=hr.d.ts.map
1632
1632
 
1633
- declare const _default$p: {
1633
+ declare const _default$q: {
1634
1634
  badge: string;
1635
1635
  open: string;
1636
1636
  close: string;
@@ -1732,7 +1732,7 @@ declare const _default$p: {
1732
1732
  };
1733
1733
  //# sourceMappingURL=hu.d.ts.map
1734
1734
 
1735
- declare const _default$o: {
1735
+ declare const _default$p: {
1736
1736
  badge: string;
1737
1737
  open: string;
1738
1738
  close: string;
@@ -1834,7 +1834,7 @@ declare const _default$o: {
1834
1834
  };
1835
1835
  //# sourceMappingURL=he.d.ts.map
1836
1836
 
1837
- declare const _default$n: {
1837
+ declare const _default$o: {
1838
1838
  badge: string;
1839
1839
  open: string;
1840
1840
  close: string;
@@ -1936,7 +1936,7 @@ declare const _default$n: {
1936
1936
  };
1937
1937
  //# sourceMappingURL=id.d.ts.map
1938
1938
 
1939
- declare const _default$m: {
1939
+ declare const _default$n: {
1940
1940
  badge: string;
1941
1941
  open: string;
1942
1942
  close: string;
@@ -2038,7 +2038,7 @@ declare const _default$m: {
2038
2038
  };
2039
2039
  //# sourceMappingURL=it.d.ts.map
2040
2040
 
2041
- declare const _default$l: {
2041
+ declare const _default$m: {
2042
2042
  badge: string;
2043
2043
  open: string;
2044
2044
  close: string;
@@ -2140,6 +2140,108 @@ declare const _default$l: {
2140
2140
  };
2141
2141
  //# sourceMappingURL=ja.d.ts.map
2142
2142
 
2143
+ declare const _default$l: {
2144
+ badge: string;
2145
+ open: string;
2146
+ close: string;
2147
+ confirmEdit: {
2148
+ ok: string;
2149
+ cancel: string;
2150
+ };
2151
+ dataIterator: {
2152
+ noResultsText: string;
2153
+ loadingText: string;
2154
+ };
2155
+ dataTable: {
2156
+ itemsPerPageText: string;
2157
+ ariaLabel: {
2158
+ sortDescending: string;
2159
+ sortAscending: string;
2160
+ sortNone: string;
2161
+ activateNone: string;
2162
+ activateDescending: string;
2163
+ activateAscending: string;
2164
+ };
2165
+ sortBy: string;
2166
+ };
2167
+ dataFooter: {
2168
+ itemsPerPageText: string;
2169
+ itemsPerPageAll: string;
2170
+ nextPage: string;
2171
+ prevPage: string;
2172
+ firstPage: string;
2173
+ lastPage: string;
2174
+ pageText: string;
2175
+ };
2176
+ dateRangeInput: {
2177
+ divider: string;
2178
+ };
2179
+ datePicker: {
2180
+ itemsSelected: string;
2181
+ range: {
2182
+ title: string;
2183
+ header: string;
2184
+ };
2185
+ title: string;
2186
+ header: string;
2187
+ input: {
2188
+ placeholder: string;
2189
+ };
2190
+ };
2191
+ noDataText: string;
2192
+ carousel: {
2193
+ prev: string;
2194
+ next: string;
2195
+ ariaLabel: {
2196
+ delimiter: string;
2197
+ };
2198
+ };
2199
+ calendar: {
2200
+ moreEvents: string;
2201
+ today: string;
2202
+ };
2203
+ input: {
2204
+ clear: string;
2205
+ prependAction: string;
2206
+ appendAction: string;
2207
+ otp: string;
2208
+ };
2209
+ fileInput: {
2210
+ counter: string;
2211
+ counterSize: string;
2212
+ };
2213
+ timePicker: {
2214
+ am: string;
2215
+ pm: string;
2216
+ };
2217
+ pagination: {
2218
+ ariaLabel: {
2219
+ root: string;
2220
+ next: string;
2221
+ previous: string;
2222
+ page: string;
2223
+ currentPage: string;
2224
+ first: string;
2225
+ last: string;
2226
+ };
2227
+ };
2228
+ stepper: {
2229
+ next: string;
2230
+ prev: string;
2231
+ };
2232
+ rating: {
2233
+ ariaLabel: {
2234
+ item: string;
2235
+ };
2236
+ };
2237
+ loading: string;
2238
+ infiniteScroll: {
2239
+ loadMore: string;
2240
+ empty: string;
2241
+ };
2242
+ };
2243
+ //# sourceMappingURL=km.d.ts.map
2244
+
2143
2245
  declare const _default$k: {
2144
2246
  badge: string;
2145
2247
  open: string;
@@ -4282,4 +4384,4 @@ declare const _default: {
4282
4384
  };
4283
4385
  //# sourceMappingURL=zh-Hant.d.ts.map
4284
4386
 
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 };
4387
+ export { _default$G as af, _default$F as ar, _default$4 as az, _default$E as bg, _default$D as ca, _default$C as ckb, _default$B as cs, _default$A as da, _default$z as de, _default$y as el, _default$x as en, _default$w as es, _default$v as et, _default$u as fa, _default$t as fi, _default$s as fr, _default$p as he, _default$r as hr, _default$q as hu, _default$o as id, _default$n as it, _default$m as ja, _default$l as km, _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 };
@@ -19,6 +19,7 @@ export { default as he } from "./he.mjs";
19
19
  export { default as id } from "./id.mjs";
20
20
  export { default as it } from "./it.mjs";
21
21
  export { default as ja } from "./ja.mjs";
22
+ export { default as km } from "./km.mjs";
22
23
  export { default as ko } from "./ko.mjs";
23
24
  export { default as lv } from "./lv.mjs";
24
25
  export { default as lt } from "./lt.mjs";
@@ -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"],"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"}
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","km","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 km } from './km'\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,EAAE;AAAA,SACbjC,OAAO,IAAIkC,MAAM;AAAA,SACjBlC,OAAO,IAAImC,MAAM;AAAA,SACjBnC,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,EAAE;AAAA,SACbzC,OAAO,IAAI0C,MAAM;AAAA,SACjB1C,OAAO,IAAI2C,MAAM"}