vuetify 3.8.4 → 3.8.5

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 (57) hide show
  1. package/dist/_component-variables-labs.sass +1 -0
  2. package/dist/json/attributes.json +3194 -2850
  3. package/dist/json/importMap-labs.json +28 -24
  4. package/dist/json/importMap.json +158 -158
  5. package/dist/json/tags.json +91 -0
  6. package/dist/json/web-types.json +6341 -5124
  7. package/dist/vuetify-labs.cjs +277 -18
  8. package/dist/vuetify-labs.css +3763 -3735
  9. package/dist/vuetify-labs.d.ts +1380 -300
  10. package/dist/vuetify-labs.esm.js +277 -18
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +277 -18
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +5 -9
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2976 -2951
  17. package/dist/vuetify.d.ts +67 -64
  18. package/dist/vuetify.esm.js +5 -9
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +5 -9
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +5 -5
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.js +0 -5
  26. package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
  27. package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
  28. package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
  29. package/lib/components/VBtn/VBtn.css +25 -0
  30. package/lib/components/VBtn/VBtn.sass +9 -0
  31. package/lib/components/VBtn/_variables.scss +1 -0
  32. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
  33. package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
  34. package/lib/composables/dateFormat.d.ts +24 -0
  35. package/lib/composables/dateFormat.js +112 -0
  36. package/lib/composables/dateFormat.js.map +1 -0
  37. package/lib/entry-bundler.js +1 -1
  38. package/lib/framework.d.ts +67 -64
  39. package/lib/framework.js +1 -1
  40. package/lib/iconsets/mdi.js +2 -1
  41. package/lib/iconsets/mdi.js.map +1 -1
  42. package/lib/labs/VColorInput/VColorInput.css +4 -0
  43. package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
  44. package/lib/labs/VColorInput/VColorInput.js +129 -0
  45. package/lib/labs/VColorInput/VColorInput.js.map +1 -0
  46. package/lib/labs/VColorInput/VColorInput.sass +7 -0
  47. package/lib/labs/VColorInput/_variables.scss +2 -0
  48. package/lib/labs/VColorInput/index.d.ts +1 -0
  49. package/lib/labs/VColorInput/index.js +2 -0
  50. package/lib/labs/VColorInput/index.js.map +1 -0
  51. package/lib/labs/VDateInput/VDateInput.d.ts +46 -21
  52. package/lib/labs/VDateInput/VDateInput.js +43 -10
  53. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  54. package/lib/labs/components.d.ts +1 -0
  55. package/lib/labs/components.js +1 -0
  56. package/lib/labs/components.js.map +1 -1
  57. package/package.json +2 -3
@@ -2404,7 +2404,9 @@ declare const VSnackbar: {
2404
2404
  }>>;
2405
2405
  type VSnackbar = InstanceType<typeof VSnackbar>;
2406
2406
 
2407
- type SnackbarMessage = string | Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps>;
2407
+ type SnackbarMessage = string | (Omit<VSnackbar['$props'], 'modelValue' | 'onUpdate:modelValue' | 'activator' | 'activatorProps' | 'closeDelay' | 'openDelay' | 'openOnClick' | 'openOnFocus' | 'openOnHover' | 'style' | '$children' | 'v-slots' | `v-slot:${string}` | keyof VNodeProps> & {
2408
+ style?: any;
2409
+ });
2408
2410
 
2409
2411
  interface VuetifyOptions {
2410
2412
  aliases?: Record<string, any>;
@@ -2537,22 +2539,24 @@ declare module 'vue' {
2537
2539
  $children?: VNodeChild
2538
2540
  }
2539
2541
  export interface GlobalComponents {
2540
- VApp: typeof import('vuetify/components')['VApp']
2541
2542
  VAppBar: typeof import('vuetify/components')['VAppBar']
2542
2543
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2543
2544
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2544
- VBadge: typeof import('vuetify/components')['VBadge']
2545
2545
  VAlert: typeof import('vuetify/components')['VAlert']
2546
2546
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2547
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2547
2548
  VAvatar: typeof import('vuetify/components')['VAvatar']
2549
+ VBadge: typeof import('vuetify/components')['VBadge']
2548
2550
  VBanner: typeof import('vuetify/components')['VBanner']
2549
2551
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
2550
2552
  VBannerText: typeof import('vuetify/components')['VBannerText']
2551
- VBtn: typeof import('vuetify/components')['VBtn']
2552
2553
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2554
+ VBtn: typeof import('vuetify/components')['VBtn']
2555
+ VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2553
2556
  VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2554
- VCarousel: typeof import('vuetify/components')['VCarousel']
2555
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2557
+ VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2558
+ VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2559
+ VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2556
2560
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2557
2561
  VCard: typeof import('vuetify/components')['VCard']
2558
2562
  VCardActions: typeof import('vuetify/components')['VCardActions']
@@ -2560,16 +2564,15 @@ declare module 'vue' {
2560
2564
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2561
2565
  VCardText: typeof import('vuetify/components')['VCardText']
2562
2566
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
2563
- VChip: typeof import('vuetify/components')['VChip']
2564
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2565
- VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2566
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
2567
- VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2568
- VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2569
- VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2570
2567
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
2571
2568
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2569
+ VChip: typeof import('vuetify/components')['VChip']
2570
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
2572
2571
  VCode: typeof import('vuetify/components')['VCode']
2572
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
2573
+ VCarousel: typeof import('vuetify/components')['VCarousel']
2574
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2575
+ VCombobox: typeof import('vuetify/components')['VCombobox']
2573
2576
  VDataTable: typeof import('vuetify/components')['VDataTable']
2574
2577
  VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2575
2578
  VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
@@ -2577,38 +2580,37 @@ declare module 'vue' {
2577
2580
  VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2578
2581
  VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2579
2582
  VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2580
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
2583
+ VCounter: typeof import('vuetify/components')['VCounter']
2581
2584
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
2582
2585
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2583
2586
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2584
2587
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2585
2588
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2586
2589
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2587
- VCombobox: typeof import('vuetify/components')['VCombobox']
2590
+ VDialog: typeof import('vuetify/components')['VDialog']
2588
2591
  VDivider: typeof import('vuetify/components')['VDivider']
2589
- VCounter: typeof import('vuetify/components')['VCounter']
2590
2592
  VEmptyState: typeof import('vuetify/components')['VEmptyState']
2591
2593
  VFab: typeof import('vuetify/components')['VFab']
2594
+ VField: typeof import('vuetify/components')['VField']
2595
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2592
2596
  VFileInput: typeof import('vuetify/components')['VFileInput']
2597
+ VFooter: typeof import('vuetify/components')['VFooter']
2593
2598
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2594
2599
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2595
2600
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2596
2601
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2597
- VFooter: typeof import('vuetify/components')['VFooter']
2598
- VField: typeof import('vuetify/components')['VField']
2599
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2602
+ VImg: typeof import('vuetify/components')['VImg']
2600
2603
  VIcon: typeof import('vuetify/components')['VIcon']
2601
2604
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2602
2605
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2603
2606
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2604
2607
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2605
- VImg: typeof import('vuetify/components')['VImg']
2606
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2607
- VKbd: typeof import('vuetify/components')['VKbd']
2608
2608
  VInput: typeof import('vuetify/components')['VInput']
2609
- VLabel: typeof import('vuetify/components')['VLabel']
2610
2609
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
2611
2610
  VItem: typeof import('vuetify/components')['VItem']
2611
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2612
+ VKbd: typeof import('vuetify/components')['VKbd']
2613
+ VLabel: typeof import('vuetify/components')['VLabel']
2612
2614
  VList: typeof import('vuetify/components')['VList']
2613
2615
  VListGroup: typeof import('vuetify/components')['VListGroup']
2614
2616
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2618,70 +2620,69 @@ declare module 'vue' {
2618
2620
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2619
2621
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2620
2622
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2621
- VMain: typeof import('vuetify/components')['VMain']
2622
2623
  VMenu: typeof import('vuetify/components')['VMenu']
2623
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2624
+ VMain: typeof import('vuetify/components')['VMain']
2624
2625
  VMessages: typeof import('vuetify/components')['VMessages']
2625
- VNumberInput: typeof import('vuetify/components')['VNumberInput']
2626
- VOverlay: typeof import('vuetify/components')['VOverlay']
2627
- VDialog: typeof import('vuetify/components')['VDialog']
2628
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2629
2626
  VPagination: typeof import('vuetify/components')['VPagination']
2627
+ VOverlay: typeof import('vuetify/components')['VOverlay']
2630
2628
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2629
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2630
+ VNumberInput: typeof import('vuetify/components')['VNumberInput']
2631
2631
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2632
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2632
2633
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2633
2634
  VRating: typeof import('vuetify/components')['VRating']
2634
- VSelect: typeof import('vuetify/components')['VSelect']
2635
2635
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2636
2636
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2637
2637
  VSheet: typeof import('vuetify/components')['VSheet']
2638
2638
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2639
+ VSnackbar: typeof import('vuetify/components')['VSnackbar']
2640
+ VSelect: typeof import('vuetify/components')['VSelect']
2641
+ VSlider: typeof import('vuetify/components')['VSlider']
2642
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2643
+ VTable: typeof import('vuetify/components')['VTable']
2639
2644
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2640
2645
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2641
- VSnackbar: typeof import('vuetify/components')['VSnackbar']
2642
- VSwitch: typeof import('vuetify/components')['VSwitch']
2646
+ VTab: typeof import('vuetify/components')['VTab']
2647
+ VTabs: typeof import('vuetify/components')['VTabs']
2648
+ VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2649
+ VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2643
2650
  VStepper: typeof import('vuetify/components')['VStepper']
2644
2651
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2645
2652
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2646
2653
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2647
2654
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2648
2655
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2649
- VTab: typeof import('vuetify/components')['VTab']
2650
- VTabs: typeof import('vuetify/components')['VTabs']
2651
- VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2652
- VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2653
- VTable: typeof import('vuetify/components')['VTable']
2654
- VTextarea: typeof import('vuetify/components')['VTextarea']
2655
- VTextField: typeof import('vuetify/components')['VTextField']
2656
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2657
- VTimeline: typeof import('vuetify/components')['VTimeline']
2658
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2656
+ VToolbar: typeof import('vuetify/components')['VToolbar']
2657
+ VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2658
+ VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2659
2659
  VTooltip: typeof import('vuetify/components')['VTooltip']
2660
- VWindow: typeof import('vuetify/components')['VWindow']
2661
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
2662
- VSlider: typeof import('vuetify/components')['VSlider']
2660
+ VTextarea: typeof import('vuetify/components')['VTextarea']
2661
+ VApp: typeof import('vuetify/components')['VApp']
2663
2662
  VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2664
2663
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
2664
+ VWindow: typeof import('vuetify/components')['VWindow']
2665
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
2665
2666
  VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2667
+ VContainer: typeof import('vuetify/components')['VContainer']
2668
+ VCol: typeof import('vuetify/components')['VCol']
2669
+ VRow: typeof import('vuetify/components')['VRow']
2670
+ VSpacer: typeof import('vuetify/components')['VSpacer']
2666
2671
  VForm: typeof import('vuetify/components')['VForm']
2667
2672
  VHover: typeof import('vuetify/components')['VHover']
2668
- VToolbar: typeof import('vuetify/components')['VToolbar']
2669
- VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2670
- VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2673
+ VLazy: typeof import('vuetify/components')['VLazy']
2671
2674
  VLayout: typeof import('vuetify/components')['VLayout']
2672
2675
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2673
- VLazy: typeof import('vuetify/components')['VLazy']
2674
2676
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2675
- VNoSsr: typeof import('vuetify/components')['VNoSsr']
2676
2677
  VParallax: typeof import('vuetify/components')['VParallax']
2677
2678
  VRadio: typeof import('vuetify/components')['VRadio']
2678
2679
  VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2679
- VResponsive: typeof import('vuetify/components')['VResponsive']
2680
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2680
2681
  VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2682
+ VNoSsr: typeof import('vuetify/components')['VNoSsr']
2681
2683
  VSparkline: typeof import('vuetify/components')['VSparkline']
2682
2684
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2683
2685
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2684
- VValidation: typeof import('vuetify/components')['VValidation']
2685
2686
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2686
2687
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
2687
2688
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -2699,30 +2700,32 @@ declare module 'vue' {
2699
2700
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2700
2701
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2701
2702
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2702
- VContainer: typeof import('vuetify/components')['VContainer']
2703
- VCol: typeof import('vuetify/components')['VCol']
2704
- VRow: typeof import('vuetify/components')['VRow']
2705
- VSpacer: typeof import('vuetify/components')['VSpacer']
2706
- VPicker: typeof import('vuetify/labs/components')['VPicker']
2707
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2703
+ VValidation: typeof import('vuetify/components')['VValidation']
2704
+ VTimeline: typeof import('vuetify/components')['VTimeline']
2705
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2706
+ VTextField: typeof import('vuetify/components')['VTextField']
2707
+ VResponsive: typeof import('vuetify/components')['VResponsive']
2708
2708
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2709
2709
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2710
2710
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2711
2711
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2712
2712
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2713
2713
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2714
- VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2715
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2716
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2714
+ VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2717
2715
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2718
2716
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2719
2717
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
2720
- VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2721
- VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2722
- VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2718
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
2719
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2720
+ VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2721
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2722
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2723
2723
  VTreeview: typeof import('vuetify/labs/components')['VTreeview']
2724
2724
  VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
2725
2725
  VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
2726
+ VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
2727
+ VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
2728
+ VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
2726
2729
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2727
2730
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2728
2731
  }
package/lib/framework.js CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
109
109
  };
110
110
  });
111
111
  }
112
- export const version = "3.8.4";
112
+ export const version = "3.8.5";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup
@@ -46,7 +46,8 @@ const aliases = {
46
46
  treeviewCollapse: 'mdi-menu-down',
47
47
  treeviewExpand: 'mdi-menu-right',
48
48
  eyeDropper: 'mdi-eyedropper',
49
- upload: 'mdi-cloud-upload'
49
+ upload: 'mdi-cloud-upload',
50
+ color: 'mdi-palette'
50
51
  };
51
52
  const mdi = {
52
53
  // Not using mergeProps here, functional components merge props by default (?)
@@ -1 +1 @@
1
- {"version":3,"file":"mdi.js","names":["VClassIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","mdi","component","props","class"],"sources":["../../src/iconsets/mdi.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'mdi-chevron-up',\n complete: 'mdi-check',\n cancel: 'mdi-close-circle',\n close: 'mdi-close',\n delete: 'mdi-close-circle', // delete (e.g. v-chip close)\n clear: 'mdi-close-circle',\n success: 'mdi-check-circle',\n info: 'mdi-information',\n warning: 'mdi-alert-circle',\n error: 'mdi-close-circle',\n prev: 'mdi-chevron-left',\n next: 'mdi-chevron-right',\n checkboxOn: 'mdi-checkbox-marked',\n checkboxOff: 'mdi-checkbox-blank-outline',\n checkboxIndeterminate: 'mdi-minus-box',\n delimiter: 'mdi-circle', // for carousel\n sortAsc: 'mdi-arrow-up',\n sortDesc: 'mdi-arrow-down',\n expand: 'mdi-chevron-down',\n menu: 'mdi-menu',\n subgroup: 'mdi-menu-down',\n dropdown: 'mdi-menu-down',\n radioOn: 'mdi-radiobox-marked',\n radioOff: 'mdi-radiobox-blank',\n edit: 'mdi-pencil',\n ratingEmpty: 'mdi-star-outline',\n ratingFull: 'mdi-star',\n ratingHalf: 'mdi-star-half-full',\n loading: 'mdi-cached',\n first: 'mdi-page-first',\n last: 'mdi-page-last',\n unfold: 'mdi-unfold-more-horizontal',\n file: 'mdi-paperclip',\n plus: 'mdi-plus',\n minus: 'mdi-minus',\n calendar: 'mdi-calendar',\n treeviewCollapse: 'mdi-menu-down',\n treeviewExpand: 'mdi-menu-right',\n eyeDropper: 'mdi-eyedropper',\n upload: 'mdi-cloud-upload',\n}\n\nconst mdi: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: (props: any) => h(VClassIcon, { ...props, class: 'mdi' }),\n}\n\nexport { aliases, mdi }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,mCAEnB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,gBAAgB;EAC1BC,QAAQ,EAAE,WAAW;EACrBC,MAAM,EAAE,kBAAkB;EAC1BC,KAAK,EAAE,WAAW;EAClBC,MAAM,EAAE,kBAAkB;EAAE;EAC5BC,KAAK,EAAE,kBAAkB;EACzBC,OAAO,EAAE,kBAAkB;EAC3BC,IAAI,EAAE,iBAAiB;EACvBC,OAAO,EAAE,kBAAkB;EAC3BC,KAAK,EAAE,kBAAkB;EACzBC,IAAI,EAAE,kBAAkB;EACxBC,IAAI,EAAE,mBAAmB;EACzBC,UAAU,EAAE,qBAAqB;EACjCC,WAAW,EAAE,4BAA4B;EACzCC,qBAAqB,EAAE,eAAe;EACtCC,SAAS,EAAE,YAAY;EAAE;EACzBC,OAAO,EAAE,cAAc;EACvBC,QAAQ,EAAE,gBAAgB;EAC1BC,MAAM,EAAE,kBAAkB;EAC1BC,IAAI,EAAE,UAAU;EAChBC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,eAAe;EACzBC,OAAO,EAAE,qBAAqB;EAC9BC,QAAQ,EAAE,oBAAoB;EAC9BC,IAAI,EAAE,YAAY;EAClBC,WAAW,EAAE,kBAAkB;EAC/BC,UAAU,EAAE,UAAU;EACtBC,UAAU,EAAE,oBAAoB;EAChCC,OAAO,EAAE,YAAY;EACrBC,KAAK,EAAE,gBAAgB;EACvBC,IAAI,EAAE,eAAe;EACrBC,MAAM,EAAE,4BAA4B;EACpCC,IAAI,EAAE,eAAe;EACrBC,IAAI,EAAE,UAAU;EAChBC,KAAK,EAAE,WAAW;EAClBC,QAAQ,EAAE,cAAc;EACxBC,gBAAgB,EAAE,eAAe;EACjCC,cAAc,EAAE,gBAAgB;EAChCC,UAAU,EAAE,gBAAgB;EAC5BC,MAAM,EAAE;AACV,CAAC;AAED,MAAMC,GAAY,GAAG;EACnB;EACAC,SAAS,EAAGC,KAAU,IAAK5C,CAAC,CAACD,UAAU,EAAE;IAAE,GAAG6C,KAAK;IAAEC,KAAK,EAAE;EAAM,CAAC;AACrE,CAAC;AAED,SAAS5C,OAAO,EAAEyC,GAAG","ignoreList":[]}
1
+ {"version":3,"file":"mdi.js","names":["VClassIcon","h","aliases","collapse","complete","cancel","close","delete","clear","success","info","warning","error","prev","next","checkboxOn","checkboxOff","checkboxIndeterminate","delimiter","sortAsc","sortDesc","expand","menu","subgroup","dropdown","radioOn","radioOff","edit","ratingEmpty","ratingFull","ratingHalf","loading","first","last","unfold","file","plus","minus","calendar","treeviewCollapse","treeviewExpand","eyeDropper","upload","color","mdi","component","props","class"],"sources":["../../src/iconsets/mdi.ts"],"sourcesContent":["// Composables\nimport { VClassIcon } from '@/composables/icons'\n\n// Utilities\nimport { h } from 'vue'\n\n// Types\nimport type { IconAliases, IconSet } from '@/composables/icons'\n\nconst aliases: IconAliases = {\n collapse: 'mdi-chevron-up',\n complete: 'mdi-check',\n cancel: 'mdi-close-circle',\n close: 'mdi-close',\n delete: 'mdi-close-circle', // delete (e.g. v-chip close)\n clear: 'mdi-close-circle',\n success: 'mdi-check-circle',\n info: 'mdi-information',\n warning: 'mdi-alert-circle',\n error: 'mdi-close-circle',\n prev: 'mdi-chevron-left',\n next: 'mdi-chevron-right',\n checkboxOn: 'mdi-checkbox-marked',\n checkboxOff: 'mdi-checkbox-blank-outline',\n checkboxIndeterminate: 'mdi-minus-box',\n delimiter: 'mdi-circle', // for carousel\n sortAsc: 'mdi-arrow-up',\n sortDesc: 'mdi-arrow-down',\n expand: 'mdi-chevron-down',\n menu: 'mdi-menu',\n subgroup: 'mdi-menu-down',\n dropdown: 'mdi-menu-down',\n radioOn: 'mdi-radiobox-marked',\n radioOff: 'mdi-radiobox-blank',\n edit: 'mdi-pencil',\n ratingEmpty: 'mdi-star-outline',\n ratingFull: 'mdi-star',\n ratingHalf: 'mdi-star-half-full',\n loading: 'mdi-cached',\n first: 'mdi-page-first',\n last: 'mdi-page-last',\n unfold: 'mdi-unfold-more-horizontal',\n file: 'mdi-paperclip',\n plus: 'mdi-plus',\n minus: 'mdi-minus',\n calendar: 'mdi-calendar',\n treeviewCollapse: 'mdi-menu-down',\n treeviewExpand: 'mdi-menu-right',\n eyeDropper: 'mdi-eyedropper',\n upload: 'mdi-cloud-upload',\n color: 'mdi-palette',\n}\n\nconst mdi: IconSet = {\n // Not using mergeProps here, functional components merge props by default (?)\n component: (props: any) => h(VClassIcon, { ...props, class: 'mdi' }),\n}\n\nexport { aliases, mdi }\n"],"mappings":"AAAA;AAAA,SACSA,UAAU,mCAEnB;AACA,SAASC,CAAC,QAAQ,KAAK;;AAEvB;;AAGA,MAAMC,OAAoB,GAAG;EAC3BC,QAAQ,EAAE,gBAAgB;EAC1BC,QAAQ,EAAE,WAAW;EACrBC,MAAM,EAAE,kBAAkB;EAC1BC,KAAK,EAAE,WAAW;EAClBC,MAAM,EAAE,kBAAkB;EAAE;EAC5BC,KAAK,EAAE,kBAAkB;EACzBC,OAAO,EAAE,kBAAkB;EAC3BC,IAAI,EAAE,iBAAiB;EACvBC,OAAO,EAAE,kBAAkB;EAC3BC,KAAK,EAAE,kBAAkB;EACzBC,IAAI,EAAE,kBAAkB;EACxBC,IAAI,EAAE,mBAAmB;EACzBC,UAAU,EAAE,qBAAqB;EACjCC,WAAW,EAAE,4BAA4B;EACzCC,qBAAqB,EAAE,eAAe;EACtCC,SAAS,EAAE,YAAY;EAAE;EACzBC,OAAO,EAAE,cAAc;EACvBC,QAAQ,EAAE,gBAAgB;EAC1BC,MAAM,EAAE,kBAAkB;EAC1BC,IAAI,EAAE,UAAU;EAChBC,QAAQ,EAAE,eAAe;EACzBC,QAAQ,EAAE,eAAe;EACzBC,OAAO,EAAE,qBAAqB;EAC9BC,QAAQ,EAAE,oBAAoB;EAC9BC,IAAI,EAAE,YAAY;EAClBC,WAAW,EAAE,kBAAkB;EAC/BC,UAAU,EAAE,UAAU;EACtBC,UAAU,EAAE,oBAAoB;EAChCC,OAAO,EAAE,YAAY;EACrBC,KAAK,EAAE,gBAAgB;EACvBC,IAAI,EAAE,eAAe;EACrBC,MAAM,EAAE,4BAA4B;EACpCC,IAAI,EAAE,eAAe;EACrBC,IAAI,EAAE,UAAU;EAChBC,KAAK,EAAE,WAAW;EAClBC,QAAQ,EAAE,cAAc;EACxBC,gBAAgB,EAAE,eAAe;EACjCC,cAAc,EAAE,gBAAgB;EAChCC,UAAU,EAAE,gBAAgB;EAC5BC,MAAM,EAAE,kBAAkB;EAC1BC,KAAK,EAAE;AACT,CAAC;AAED,MAAMC,GAAY,GAAG;EACnB;EACAC,SAAS,EAAGC,KAAU,IAAK7C,CAAC,CAACD,UAAU,EAAE;IAAE,GAAG8C,KAAK;IAAEC,KAAK,EAAE;EAAM,CAAC;AACrE,CAAC;AAED,SAAS7C,OAAO,EAAE0C,GAAG","ignoreList":[]}
@@ -0,0 +1,4 @@
1
+ /* region INPUT */
2
+ .v-color-input {
3
+ padding: 0;
4
+ }