@vuetify/nightly 3.8.5-dev.2025-05-14 → 3.8.5-master.2025-05-14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -23
- package/dist/json/attributes.json +3505 -3521
- package/dist/json/importMap-labs.json +12 -12
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +0 -4
- package/dist/json/web-types.json +6607 -6646
- package/dist/vuetify-labs.cjs +51 -155
- package/dist/vuetify-labs.css +3358 -3386
- package/dist/vuetify-labs.d.ts +934 -986
- package/dist/vuetify-labs.esm.js +52 -156
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +51 -155
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +40 -149
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4193 -4221
- package/dist/vuetify.d.ts +490 -544
- package/dist/vuetify.esm.js +41 -150
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +40 -149
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1173 -1181
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +1 -6
- package/lib/components/VAlert/VAlert.d.ts +0 -35
- package/lib/components/VAlert/VAlert.js +9 -14
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +1 -7
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBtnGroup/VBtnGroup.css +7 -30
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +32 -58
- package/lib/components/VBtnGroup/VBtnGroup.js +3 -7
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +17 -44
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +0 -25
- package/lib/components/VCheckbox/VCheckbox.d.ts +3 -3
- package/lib/components/VCombobox/VCombobox.d.ts +94 -94
- package/lib/components/VField/VField.d.ts +3 -3
- package/lib/components/VFileInput/VFileInput.d.ts +15 -15
- package/lib/components/VInput/VInput.d.ts +4 -4
- package/lib/components/VNumberInput/VNumberInput.d.ts +89 -89
- package/lib/components/VOverlay/VOverlay.css +1 -1
- package/lib/components/VOverlay/_variables.scss +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.d.ts +3 -3
- package/lib/components/VRangeSlider/VRangeSlider.d.ts +3 -3
- package/lib/components/VSelect/VSelect.d.ts +94 -94
- package/lib/components/VSlider/VSlider.d.ts +3 -3
- package/lib/components/VSwitch/VSwitch.d.ts +3 -3
- package/lib/components/VTextField/VTextField.d.ts +27 -27
- package/lib/components/VTextarea/VTextarea.d.ts +15 -15
- package/lib/composables/calendar.d.ts +0 -1
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/theme.d.ts +1 -6
- package/lib/composables/theme.js +26 -94
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +1 -6
- package/lib/composables/virtual.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/entry-bundler.js.map +1 -1
- package/lib/framework.d.ts +46 -51
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.d.ts +3 -3
- package/lib/labs/VDateInput/VDateInput.d.ts +87 -87
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +11 -7
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/util/globals.d.ts +0 -1
- package/lib/util/globals.js +0 -1
- package/lib/util/globals.js.map +1 -1
- package/package.json +1 -2
- package/lib/composables/iconSizes.d.ts +0 -28
- package/lib/composables/iconSizes.js +0 -23
- package/lib/composables/iconSizes.js.map +0 -1
package/lib/framework.d.ts
CHANGED
@@ -147,12 +147,11 @@ type DeepPartial<T> = T extends object ? {
|
|
147
147
|
} : T;
|
148
148
|
type ThemeOptions = false | {
|
149
149
|
cspNonce?: string;
|
150
|
-
defaultTheme?:
|
150
|
+
defaultTheme?: string;
|
151
151
|
variations?: false | VariationsOptions;
|
152
152
|
themes?: Record<string, ThemeDefinition>;
|
153
153
|
stylesheetId?: string;
|
154
154
|
scope?: string;
|
155
|
-
unimportant?: boolean;
|
156
155
|
};
|
157
156
|
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
158
157
|
interface VariationsOptions {
|
@@ -189,15 +188,11 @@ interface OnColors {
|
|
189
188
|
'on-info': string;
|
190
189
|
}
|
191
190
|
interface ThemeInstance {
|
192
|
-
change: (themeName: string) => void;
|
193
|
-
cycle: (themeArray?: string[]) => void;
|
194
|
-
toggle: (themeArray?: [string, string]) => void;
|
195
191
|
readonly isDisabled: boolean;
|
196
192
|
readonly themes: Ref<Record<string, InternalThemeDefinition>>;
|
197
193
|
readonly name: Readonly<Ref<string>>;
|
198
194
|
readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
|
199
195
|
readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
|
200
|
-
readonly prefix: string;
|
201
196
|
readonly themeClasses: Readonly<Ref<string | undefined>>;
|
202
197
|
readonly styles: Readonly<Ref<string>>;
|
203
198
|
readonly global: {
|
@@ -2544,24 +2539,24 @@ declare module 'vue' {
|
|
2544
2539
|
$children?: VNodeChild
|
2545
2540
|
}
|
2546
2541
|
export interface GlobalComponents {
|
2542
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2547
2543
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2548
2544
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2549
2545
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2550
2546
|
VApp: typeof import('vuetify/components')['VApp']
|
2551
2547
|
VAlert: typeof import('vuetify/components')['VAlert']
|
2552
2548
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2553
|
-
|
2549
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
2550
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2554
2551
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2555
2552
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2556
2553
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2557
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2558
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2559
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
2560
2554
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2561
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2562
2555
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2563
2556
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2564
2557
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2558
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2559
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2565
2560
|
VCard: typeof import('vuetify/components')['VCard']
|
2566
2561
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2567
2562
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
@@ -2570,14 +2565,16 @@ declare module 'vue' {
|
|
2570
2565
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2571
2566
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2572
2567
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2568
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2569
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2570
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2571
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2573
2572
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2574
2573
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2575
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2576
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2577
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2578
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2579
2574
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2575
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2580
2576
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2577
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2581
2578
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2582
2579
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2583
2580
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2585,34 +2582,36 @@ declare module 'vue' {
|
|
2585
2582
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2586
2583
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2587
2584
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2588
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
2589
2585
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2590
2586
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2591
2587
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2592
2588
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2593
2589
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2594
2590
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2595
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2596
2591
|
VDivider: typeof import('vuetify/components')['VDivider']
|
2592
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2593
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2594
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2595
|
+
VField: typeof import('vuetify/components')['VField']
|
2596
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2597
2597
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2598
2598
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2599
2599
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2600
2600
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2601
|
-
VFab: typeof import('vuetify/components')['VFab']
|
2602
|
-
VField: typeof import('vuetify/components')['VField']
|
2603
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2604
2601
|
VFooter: typeof import('vuetify/components')['VFooter']
|
2605
2602
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2603
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2606
2604
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2607
2605
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2608
2606
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2609
2607
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2610
2608
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2611
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2612
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2613
|
-
VItem: typeof import('vuetify/components')['VItem']
|
2614
2609
|
VImg: typeof import('vuetify/components')['VImg']
|
2610
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
2615
2611
|
VInput: typeof import('vuetify/components')['VInput']
|
2612
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2613
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2614
|
+
VItem: typeof import('vuetify/components')['VItem']
|
2616
2615
|
VList: typeof import('vuetify/components')['VList']
|
2617
2616
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2618
2617
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2622,53 +2621,50 @@ declare module 'vue' {
|
|
2622
2621
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2623
2622
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2624
2623
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2625
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
2626
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2627
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2628
2624
|
VMain: typeof import('vuetify/components')['VMain']
|
2629
|
-
VMenu: typeof import('vuetify/components')['VMenu']
|
2630
2625
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2626
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
2631
2627
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2632
2628
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2633
2629
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2634
2630
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2635
2631
|
VPagination: typeof import('vuetify/components')['VPagination']
|
2632
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2636
2633
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2637
2634
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2638
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2639
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
2640
2635
|
VRating: typeof import('vuetify/components')['VRating']
|
2641
|
-
|
2636
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
2642
2637
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2638
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2639
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
2640
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2641
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2643
2642
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2644
2643
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2645
2644
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2646
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
2647
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
2648
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2649
2645
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2650
2646
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2651
2647
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2652
2648
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2653
2649
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2654
2650
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2655
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2656
2651
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2657
|
-
|
2658
|
-
VTabs: typeof import('vuetify/components')['VTabs']
|
2659
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2660
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2652
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2661
2653
|
VTextField: typeof import('vuetify/components')['VTextField']
|
2662
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2663
2654
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2655
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2664
2656
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2665
2657
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2666
|
-
|
2667
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2658
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2668
2659
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2669
2660
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2670
2661
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2671
|
-
|
2662
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2663
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2664
|
+
VTab: typeof import('vuetify/components')['VTab']
|
2665
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
2666
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2667
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2672
2668
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2673
2669
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2674
2670
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -2678,20 +2674,20 @@ declare module 'vue' {
|
|
2678
2674
|
VCol: typeof import('vuetify/components')['VCol']
|
2679
2675
|
VRow: typeof import('vuetify/components')['VRow']
|
2680
2676
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2681
|
-
|
2677
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2682
2678
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2683
2679
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2684
2680
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2681
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2685
2682
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2686
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
2687
2683
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2688
2684
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2689
|
-
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2690
2685
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2686
|
+
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2691
2687
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2692
2688
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2693
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2694
2689
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2690
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2695
2691
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2696
2692
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2697
2693
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2708,23 +2704,22 @@ declare module 'vue' {
|
|
2708
2704
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2709
2705
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2710
2706
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2711
|
-
|
2712
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2707
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
2713
2708
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2714
2709
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2715
2710
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2716
2711
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2717
2712
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2718
2713
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2714
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2715
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2716
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2719
2717
|
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2720
2718
|
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2721
2719
|
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2722
|
-
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2723
2720
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2724
2721
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2725
2722
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2726
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2727
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2728
2723
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2729
2724
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2730
2725
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
package/lib/framework.js
CHANGED
package/lib/framework.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"framework.js","names":["createDate","DateAdapterSymbol","DateOptionsSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createGoTo","GoToSymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","effectScope","nextTick","reactive","defineComponent","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","scope","run","defaults","display","ssr","theme","icons","locale","date","goTo","install","app","key","directive","component","name","aliasName","appScope","onUnmount","stop","provide","instance","$nuxt","hook","update","mount","vm","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","unmount","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol, DateOptionsSymbol } from '@/composables/date/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createGoTo, GoToSymbol } from '@/composables/goto'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { effectScope, nextTick, reactive } from 'vue'\nimport { defineComponent, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { GoToOptions } from '@/composables/goto'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\n// Exports\nexport * from './composables'\nexport * from './types'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n goTo?: GoToOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const scope = effectScope()\n return scope.run(() => {\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n const goTo = createGoTo(options.goTo, locale)\n\n function install (app: App) {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n const appScope = effectScope()\n appScope.run(() => {\n theme.install(app)\n })\n app.onUnmount(() => appScope.stop())\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateOptionsSymbol, date.options)\n app.provide(DateAdapterSymbol, date.instance)\n app.provide(GoToSymbol, goTo)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n function unmount () {\n scope.stop()\n }\n\n return {\n install,\n unmount,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n goTo,\n }\n })!\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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
|
1
|
+
{"version":3,"file":"framework.js","names":["createDate","DateAdapterSymbol","DateOptionsSymbol","createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createGoTo","GoToSymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","effectScope","nextTick","reactive","defineComponent","IN_BROWSER","mergeDeep","createVuetify","vuetify","arguments","length","undefined","blueprint","rest","options","aliases","components","directives","scope","run","defaults","display","ssr","theme","icons","locale","date","goTo","install","app","key","directive","component","name","aliasName","appScope","onUnmount","stop","provide","instance","$nuxt","hook","update","mount","vm","__VUE_OPTIONS_API__","mixin","computed","$vuetify","inject","call","unmount","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDate, DateAdapterSymbol, DateOptionsSymbol } from '@/composables/date/date'\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createGoTo, GoToSymbol } from '@/composables/goto'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { effectScope, nextTick, reactive } from 'vue'\nimport { defineComponent, IN_BROWSER, mergeDeep } from '@/util'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DateOptions } from '@/composables/date'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions, SSROptions } from '@/composables/display'\nimport type { GoToOptions } from '@/composables/goto'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\n// Exports\nexport * from './composables'\nexport * from './types'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n date?: DateOptions\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n goTo?: GoToOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: SSROptions\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options: VuetifyOptions = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const scope = effectScope()\n return scope.run(() => {\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n const date = createDate(options.date, locale)\n const goTo = createGoTo(options.goTo, locale)\n\n function install (app: App) {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n const appScope = effectScope()\n appScope.run(() => {\n theme.install(app)\n })\n app.onUnmount(() => appScope.stop())\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n app.provide(DateOptionsSymbol, date.options)\n app.provide(DateAdapterSymbol, date.instance)\n app.provide(GoToSymbol, goTo)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n date: inject.call(this, DateAdapterSymbol),\n })\n },\n },\n })\n }\n }\n\n function unmount () {\n scope.stop()\n }\n\n return {\n install,\n unmount,\n defaults,\n display,\n theme,\n icons,\n locale,\n date,\n goTo,\n }\n })!\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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","ignoreList":[]}
|
@@ -790,7 +790,6 @@ export declare const VColorInput: {
|
|
790
790
|
bgColor?: string | undefined;
|
791
791
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
792
792
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
793
|
-
iconColor?: string | boolean | undefined;
|
794
793
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
795
794
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
796
795
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -799,6 +798,7 @@ export declare const VColorInput: {
|
|
799
798
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
800
799
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
801
800
|
centerAffix?: boolean | undefined;
|
801
|
+
iconColor?: string | boolean | undefined;
|
802
802
|
hint?: string | undefined;
|
803
803
|
hideDetails?: boolean | "auto" | undefined;
|
804
804
|
suffix?: string | undefined;
|
@@ -1034,7 +1034,6 @@ export declare const VColorInput: {
|
|
1034
1034
|
bgColor?: string | undefined;
|
1035
1035
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1036
1036
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1037
|
-
iconColor?: string | boolean | undefined;
|
1038
1037
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1039
1038
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1040
1039
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1043,6 +1042,7 @@ export declare const VColorInput: {
|
|
1043
1042
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1044
1043
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1045
1044
|
centerAffix?: boolean | undefined;
|
1045
|
+
iconColor?: string | boolean | undefined;
|
1046
1046
|
hint?: string | undefined;
|
1047
1047
|
hideDetails?: boolean | "auto" | undefined;
|
1048
1048
|
suffix?: string | undefined;
|
@@ -1255,7 +1255,6 @@ export declare const VColorInput: {
|
|
1255
1255
|
bgColor?: string | undefined;
|
1256
1256
|
prependIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1257
1257
|
appendIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1258
|
-
iconColor?: string | boolean | undefined;
|
1259
1258
|
appendInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1260
1259
|
prependInnerIcon?: import("../../composables/icons.js").IconValue | undefined;
|
1261
1260
|
'onClick:clear'?: ((args_0: MouseEvent) => void) | undefined;
|
@@ -1264,6 +1263,7 @@ export declare const VColorInput: {
|
|
1264
1263
|
'onClick:appendInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1265
1264
|
'onClick:prependInner'?: ((args_0: MouseEvent) => void) | undefined;
|
1266
1265
|
centerAffix?: boolean | undefined;
|
1266
|
+
iconColor?: string | boolean | undefined;
|
1267
1267
|
hint?: string | undefined;
|
1268
1268
|
hideDetails?: boolean | "auto" | undefined;
|
1269
1269
|
suffix?: string | undefined;
|