@vuetify/nightly 3.8.4-master.2025-05-13 → 3.8.5-dev.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 +17 -21
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3625 -3273
- package/dist/json/importMap-labs.json +32 -28
- package/dist/json/importMap.json +180 -180
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +7373 -6147
- package/dist/vuetify-labs.cjs +424 -130
- package/dist/vuetify-labs.css +4754 -4698
- package/dist/vuetify-labs.d.ts +2285 -1171
- package/dist/vuetify-labs.esm.js +425 -131
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +424 -130
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +151 -41
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +2697 -2644
- package/dist/vuetify.d.ts +568 -511
- package/dist/vuetify.esm.js +152 -42
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +151 -41
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +1181 -1173
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAlert/VAlert.css +6 -1
- package/lib/components/VAlert/VAlert.d.ts +35 -0
- package/lib/components/VAlert/VAlert.js +14 -9
- package/lib/components/VAlert/VAlert.js.map +1 -1
- package/lib/components/VAlert/VAlert.sass +7 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +94 -94
- package/lib/components/VBottomSheet/VBottomSheet.css +1 -1
- package/lib/components/VBottomSheet/VBottomSheet.sass +1 -1
- package/lib/components/VBtn/VBtn.css +25 -0
- package/lib/components/VBtn/VBtn.sass +9 -0
- package/lib/components/VBtn/_variables.scss +1 -0
- package/lib/components/VBtnGroup/VBtnGroup.css +30 -7
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +58 -32
- package/lib/components/VBtnGroup/VBtnGroup.js +7 -3
- package/lib/components/VBtnGroup/VBtnGroup.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.sass +44 -17
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +25 -0
- 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/VSnackbarQueue/VSnackbarQueue.d.ts +3 -1
- package/lib/components/VSnackbarQueue/VSnackbarQueue.js.map +1 -1
- 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 +1 -0
- package/lib/composables/calendar.js.map +1 -1
- package/lib/composables/dateFormat.d.ts +24 -0
- package/lib/composables/dateFormat.js +112 -0
- package/lib/composables/dateFormat.js.map +1 -0
- package/lib/composables/iconSizes.d.ts +28 -0
- package/lib/composables/iconSizes.js +23 -0
- package/lib/composables/iconSizes.js.map +1 -0
- package/lib/composables/theme.d.ts +6 -1
- package/lib/composables/theme.js +94 -26
- package/lib/composables/theme.js.map +1 -1
- package/lib/composables/virtual.js +6 -1
- 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 +75 -67
- package/lib/framework.js +1 -1
- package/lib/framework.js.map +1 -1
- package/lib/iconsets/mdi.js +2 -1
- package/lib/iconsets/mdi.js.map +1 -1
- package/lib/labs/VColorInput/VColorInput.css +4 -0
- package/lib/labs/VColorInput/VColorInput.d.ts +1767 -0
- package/lib/labs/VColorInput/VColorInput.js +129 -0
- package/lib/labs/VColorInput/VColorInput.js.map +1 -0
- package/lib/labs/VColorInput/VColorInput.sass +7 -0
- package/lib/labs/VColorInput/_variables.scss +2 -0
- package/lib/labs/VColorInput/index.d.ts +1 -0
- package/lib/labs/VColorInput/index.js +2 -0
- package/lib/labs/VColorInput/index.js.map +1 -0
- package/lib/labs/VDateInput/VDateInput.d.ts +115 -118
- package/lib/labs/VDateInput/VDateInput.js +38 -79
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VIconBtn/VIconBtn.d.ts +29 -29
- package/lib/labs/VIconBtn/VIconBtn.js +7 -11
- package/lib/labs/VIconBtn/VIconBtn.js.map +1 -1
- package/lib/labs/components.d.ts +1 -0
- package/lib/labs/components.js +1 -0
- package/lib/labs/components.js.map +1 -1
- package/lib/util/globals.d.ts +1 -0
- package/lib/util/globals.js +1 -0
- package/lib/util/globals.js.map +1 -1
- package/package.json +2 -1
package/lib/framework.d.ts
CHANGED
@@ -147,11 +147,12 @@ type DeepPartial<T> = T extends object ? {
|
|
147
147
|
} : T;
|
148
148
|
type ThemeOptions = false | {
|
149
149
|
cspNonce?: string;
|
150
|
-
defaultTheme?: string;
|
150
|
+
defaultTheme?: 'light' | 'dark' | 'system' | string;
|
151
151
|
variations?: false | VariationsOptions;
|
152
152
|
themes?: Record<string, ThemeDefinition>;
|
153
153
|
stylesheetId?: string;
|
154
154
|
scope?: string;
|
155
|
+
unimportant?: boolean;
|
155
156
|
};
|
156
157
|
type ThemeDefinition = DeepPartial<InternalThemeDefinition>;
|
157
158
|
interface VariationsOptions {
|
@@ -188,11 +189,15 @@ interface OnColors {
|
|
188
189
|
'on-info': string;
|
189
190
|
}
|
190
191
|
interface ThemeInstance {
|
192
|
+
change: (themeName: string) => void;
|
193
|
+
cycle: (themeArray?: string[]) => void;
|
194
|
+
toggle: (themeArray?: [string, string]) => void;
|
191
195
|
readonly isDisabled: boolean;
|
192
196
|
readonly themes: Ref<Record<string, InternalThemeDefinition>>;
|
193
197
|
readonly name: Readonly<Ref<string>>;
|
194
198
|
readonly current: DeepReadonly<Ref<InternalThemeDefinition>>;
|
195
199
|
readonly computedThemes: DeepReadonly<Ref<Record<string, InternalThemeDefinition>>>;
|
200
|
+
readonly prefix: string;
|
196
201
|
readonly themeClasses: Readonly<Ref<string | undefined>>;
|
197
202
|
readonly styles: Readonly<Ref<string>>;
|
198
203
|
readonly global: {
|
@@ -2404,7 +2409,9 @@ declare const VSnackbar: {
|
|
2404
2409
|
}>>;
|
2405
2410
|
type VSnackbar = InstanceType<typeof VSnackbar>;
|
2406
2411
|
|
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
|
2412
|
+
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> & {
|
2413
|
+
style?: any;
|
2414
|
+
});
|
2408
2415
|
|
2409
2416
|
interface VuetifyOptions {
|
2410
2417
|
aliases?: Record<string, any>;
|
@@ -2537,41 +2544,40 @@ declare module 'vue' {
|
|
2537
2544
|
$children?: VNodeChild
|
2538
2545
|
}
|
2539
2546
|
export interface GlobalComponents {
|
2540
|
-
VApp: typeof import('vuetify/components')['VApp']
|
2541
2547
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2542
2548
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2543
2549
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2544
|
-
|
2550
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2551
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2552
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2545
2553
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2546
2554
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2547
2555
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2548
2556
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2549
|
-
|
2550
|
-
|
2557
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2558
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2551
2559
|
VBadge: typeof import('vuetify/components')['VBadge']
|
2560
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2561
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2552
2562
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2553
2563
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2554
2564
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2555
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2556
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2557
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2558
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2559
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2560
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2561
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2562
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2563
2565
|
VCard: typeof import('vuetify/components')['VCard']
|
2564
2566
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2565
2567
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2566
2568
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2567
2569
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2568
2570
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2571
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2572
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2573
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2574
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2575
|
+
VChip: typeof import('vuetify/components')['VChip']
|
2576
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2569
2577
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2578
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
2570
2579
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2571
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2572
2580
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2573
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
2574
|
-
VChip: typeof import('vuetify/components')['VChip']
|
2575
2581
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2576
2582
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2577
2583
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2579,37 +2585,34 @@ declare module 'vue' {
|
|
2579
2585
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2580
2586
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2581
2587
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2582
|
-
VCode: typeof import('vuetify/components')['VCode']
|
2583
2588
|
VDialog: typeof import('vuetify/components')['VDialog']
|
2584
|
-
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2585
|
-
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2586
|
-
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2587
|
-
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2588
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2589
2589
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2590
2590
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2591
2591
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2592
2592
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2593
2593
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2594
2594
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2595
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2595
2596
|
VDivider: typeof import('vuetify/components')['VDivider']
|
2597
|
+
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2598
|
+
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2599
|
+
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2600
|
+
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2601
|
+
VFab: typeof import('vuetify/components')['VFab']
|
2596
2602
|
VField: typeof import('vuetify/components')['VField']
|
2597
2603
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2598
|
-
|
2604
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2599
2605
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2600
2606
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2601
2607
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2602
2608
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2603
2609
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2604
2610
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2605
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
2606
|
-
VImg: typeof import('vuetify/components')['VImg']
|
2607
2611
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2608
|
-
VInput: typeof import('vuetify/components')['VInput']
|
2609
2612
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2610
2613
|
VItem: typeof import('vuetify/components')['VItem']
|
2611
|
-
|
2612
|
-
|
2614
|
+
VImg: typeof import('vuetify/components')['VImg']
|
2615
|
+
VInput: typeof import('vuetify/components')['VInput']
|
2613
2616
|
VList: typeof import('vuetify/components')['VList']
|
2614
2617
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2615
2618
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2619,71 +2622,76 @@ declare module 'vue' {
|
|
2619
2622
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
2620
2623
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
2621
2624
|
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']
|
2622
2628
|
VMain: typeof import('vuetify/components')['VMain']
|
2623
2629
|
VMenu: typeof import('vuetify/components')['VMenu']
|
2624
|
-
|
2630
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
2625
2631
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2632
|
+
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2633
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2626
2634
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2627
|
-
|
2635
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
2628
2636
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2629
2637
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2630
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2631
|
-
VRating: typeof import('vuetify/components')['VRating']
|
2632
2638
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2633
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
2634
2639
|
VSelect: typeof import('vuetify/components')['VSelect']
|
2635
|
-
|
2636
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2640
|
+
VRating: typeof import('vuetify/components')['VRating']
|
2637
2641
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2642
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2643
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2638
2644
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2639
2645
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2640
|
-
|
2646
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
2641
2647
|
VSlider: typeof import('vuetify/components')['VSlider']
|
2648
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2649
|
+
VStepper: typeof import('vuetify/components')['VStepper']
|
2650
|
+
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2651
|
+
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2652
|
+
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2653
|
+
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2654
|
+
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2655
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2642
2656
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2643
|
-
VTable: typeof import('vuetify/components')['VTable']
|
2644
2657
|
VTab: typeof import('vuetify/components')['VTab']
|
2645
2658
|
VTabs: typeof import('vuetify/components')['VTabs']
|
2646
2659
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2647
2660
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2648
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2649
2661
|
VTextField: typeof import('vuetify/components')['VTextField']
|
2662
|
+
VTable: typeof import('vuetify/components')['VTable']
|
2663
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2650
2664
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2651
2665
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2666
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2667
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2652
2668
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2653
2669
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2654
2670
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2655
2671
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2656
|
-
VWindow: typeof import('vuetify/components')['VWindow']
|
2657
|
-
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2658
2672
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2659
2673
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2660
2674
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2661
|
-
|
2662
|
-
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
2663
|
-
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
2664
|
-
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2665
|
-
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2666
|
-
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2675
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2667
2676
|
VHover: typeof import('vuetify/components')['VHover']
|
2668
|
-
|
2677
|
+
VContainer: typeof import('vuetify/components')['VContainer']
|
2678
|
+
VCol: typeof import('vuetify/components')['VCol']
|
2679
|
+
VRow: typeof import('vuetify/components')['VRow']
|
2680
|
+
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2681
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2669
2682
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2670
2683
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2671
2684
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2672
|
-
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2673
2685
|
VParallax: typeof import('vuetify/components')['VParallax']
|
2674
2686
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2675
2687
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2676
2688
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2677
|
-
|
2678
|
-
VCol: typeof import('vuetify/components')['VCol']
|
2679
|
-
VRow: typeof import('vuetify/components')['VRow']
|
2680
|
-
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2689
|
+
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2681
2690
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2682
2691
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2683
2692
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2684
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
2685
2693
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2686
|
-
|
2694
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
2687
2695
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2688
2696
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2689
2697
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2700,29 +2708,29 @@ declare module 'vue' {
|
|
2700
2708
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2701
2709
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2702
2710
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2703
|
-
|
2704
|
-
|
2705
|
-
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2706
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2707
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2708
|
-
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2709
|
-
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2710
|
-
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2711
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2712
|
+
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2711
2713
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2712
2714
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2713
2715
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2714
2716
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2715
2717
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2716
2718
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2717
|
-
|
2718
|
-
|
2719
|
-
|
2719
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2720
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2721
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2722
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2720
2723
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2721
2724
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2722
2725
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
2723
2726
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2724
2727
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2725
|
-
|
2728
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2729
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2730
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2731
|
+
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
2732
|
+
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
2733
|
+
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
2726
2734
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2727
2735
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2728
2736
|
}
|
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":[]}
|
package/lib/iconsets/mdi.js
CHANGED
@@ -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 (?)
|
package/lib/iconsets/mdi.js.map
CHANGED
@@ -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;
|
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":[]}
|