@vuetify/nightly 3.8.5-dev.2025-05-17 → 3.8.5-dev.2025-05-20
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 +6 -3
- package/dist/json/attributes.json +2855 -2851
- package/dist/json/importMap-labs.json +18 -18
- package/dist/json/importMap.json +154 -154
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +5580 -5480
- package/dist/vuetify-labs.cjs +136 -69
- package/dist/vuetify-labs.css +5215 -5215
- package/dist/vuetify-labs.d.ts +151 -65
- package/dist/vuetify-labs.esm.js +136 -69
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +136 -69
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +136 -69
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +5450 -5450
- package/dist/vuetify.d.ts +148 -62
- package/dist/vuetify.esm.js +136 -69
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +136 -69
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +73 -71
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.d.ts +26 -2
- package/lib/components/VAutocomplete/VAutocomplete.js +18 -1
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.d.ts +26 -2
- package/lib/components/VCombobox/VCombobox.js +19 -1
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VList/VListChildren.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +14 -0
- package/lib/components/VNumberInput/VNumberInput.js +19 -4
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/components/VSelect/VSelect.d.ts +26 -2
- package/lib/components/VSelect/VSelect.js +18 -1
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/composables/filter.js +3 -0
- package/lib/composables/filter.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +56 -56
- package/lib/framework.js +1 -1
- package/lib/labs/VFileUpload/VFileUpload.d.ts +3 -3
- package/package.json +1 -1
package/lib/framework.d.ts
CHANGED
@@ -2544,38 +2544,41 @@ declare module 'vue' {
|
|
2544
2544
|
$children?: VNodeChild
|
2545
2545
|
}
|
2546
2546
|
export interface GlobalComponents {
|
2547
|
-
VApp: typeof import('vuetify/components')['VApp']
|
2548
2547
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
2549
2548
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
2550
2549
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
2550
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
2551
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2551
2552
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
2553
|
+
VApp: typeof import('vuetify/components')['VApp']
|
2552
2554
|
VBadge: typeof import('vuetify/components')['VBadge']
|
2555
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2556
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2557
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2558
|
+
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
2559
|
+
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2560
|
+
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2561
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2562
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2563
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
2553
2564
|
VBanner: typeof import('vuetify/components')['VBanner']
|
2554
2565
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
2555
2566
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
2556
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
2557
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
2558
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
2559
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
2560
2567
|
VCard: typeof import('vuetify/components')['VCard']
|
2561
2568
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
2562
2569
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
2563
2570
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
2564
2571
|
VCardText: typeof import('vuetify/components')['VCardText']
|
2565
2572
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
2566
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
2567
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
2568
|
-
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2569
|
-
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2570
2573
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
2571
2574
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
2572
|
-
|
2573
|
-
|
2574
|
-
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
2575
|
-
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
2576
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2577
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
2575
|
+
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
2576
|
+
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
2578
2577
|
VChip: typeof import('vuetify/components')['VChip']
|
2578
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
2579
|
+
VCode: typeof import('vuetify/components')['VCode']
|
2580
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2581
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2579
2582
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
2580
2583
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
2581
2584
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -2583,38 +2586,37 @@ declare module 'vue' {
|
|
2583
2586
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
2584
2587
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
2585
2588
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
2586
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
2587
|
-
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
2588
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
2589
2589
|
VCounter: typeof import('vuetify/components')['VCounter']
|
2590
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
2591
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
2590
2592
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
2591
2593
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
2592
2594
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
2593
2595
|
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
2594
2596
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
2595
2597
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
2598
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2596
2599
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
2597
2600
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
2598
2601
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
2599
2602
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
2600
|
-
|
2601
|
-
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
2602
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
2603
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2603
2604
|
VFab: typeof import('vuetify/components')['VFab']
|
2605
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
2604
2606
|
VField: typeof import('vuetify/components')['VField']
|
2605
2607
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
2606
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
2607
2608
|
VIcon: typeof import('vuetify/components')['VIcon']
|
2608
2609
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
2609
2610
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
2610
2611
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
2611
2612
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
2612
|
-
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2613
|
-
VItem: typeof import('vuetify/components')['VItem']
|
2614
2613
|
VImg: typeof import('vuetify/components')['VImg']
|
2615
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2616
2614
|
VInput: typeof import('vuetify/components')['VInput']
|
2615
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
2617
2616
|
VKbd: typeof import('vuetify/components')['VKbd']
|
2617
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
2618
|
+
VItem: typeof import('vuetify/components')['VItem']
|
2619
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
2618
2620
|
VList: typeof import('vuetify/components')['VList']
|
2619
2621
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
2620
2622
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -2626,26 +2628,21 @@ declare module 'vue' {
|
|
2626
2628
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
2627
2629
|
VMessages: typeof import('vuetify/components')['VMessages']
|
2628
2630
|
VMain: typeof import('vuetify/components')['VMain']
|
2629
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
2630
2631
|
VMenu: typeof import('vuetify/components')['VMenu']
|
2631
2632
|
VNumberInput: typeof import('vuetify/components')['VNumberInput']
|
2632
2633
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
2633
|
-
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2634
2634
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
2635
|
+
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
2635
2636
|
VPagination: typeof import('vuetify/components')['VPagination']
|
2636
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2637
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
2638
2637
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
2639
|
-
VRating: typeof import('vuetify/components')['VRating']
|
2640
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
2641
2638
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
2642
|
-
|
2643
|
-
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2644
|
-
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2639
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
2645
2640
|
VSheet: typeof import('vuetify/components')['VSheet']
|
2646
2641
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
2647
|
-
|
2642
|
+
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
2643
|
+
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
2648
2644
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
2645
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
2649
2646
|
VSlider: typeof import('vuetify/components')['VSlider']
|
2650
2647
|
VStepper: typeof import('vuetify/components')['VStepper']
|
2651
2648
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
@@ -2653,46 +2650,46 @@ declare module 'vue' {
|
|
2653
2650
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
2654
2651
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
2655
2652
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
2653
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
2654
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
2656
2655
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
2657
|
-
|
2658
|
-
|
2659
|
-
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2660
|
-
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2656
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
2657
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
2661
2658
|
VTable: typeof import('vuetify/components')['VTable']
|
2662
|
-
|
2659
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
2663
2660
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
2664
2661
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
2662
|
+
VWindow: typeof import('vuetify/components')['VWindow']
|
2663
|
+
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
2665
2664
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
2666
2665
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
2667
2666
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
2668
2667
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
2669
|
-
|
2670
|
-
|
2671
|
-
|
2672
|
-
|
2673
|
-
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2668
|
+
VTab: typeof import('vuetify/components')['VTab']
|
2669
|
+
VTabs: typeof import('vuetify/components')['VTabs']
|
2670
|
+
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
2671
|
+
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
2674
2672
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
2675
2673
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
2676
|
-
VForm: typeof import('vuetify/components')['VForm']
|
2677
2674
|
VContainer: typeof import('vuetify/components')['VContainer']
|
2678
2675
|
VCol: typeof import('vuetify/components')['VCol']
|
2679
2676
|
VRow: typeof import('vuetify/components')['VRow']
|
2680
2677
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
2681
2678
|
VHover: typeof import('vuetify/components')['VHover']
|
2679
|
+
VForm: typeof import('vuetify/components')['VForm']
|
2682
2680
|
VLayout: typeof import('vuetify/components')['VLayout']
|
2683
2681
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
2684
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2685
2682
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
2686
|
-
|
2683
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
2687
2684
|
VRadio: typeof import('vuetify/components')['VRadio']
|
2685
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
2688
2686
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
2689
2687
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
2688
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2690
2689
|
VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
|
2691
2690
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
2692
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
2693
2691
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
2694
2692
|
VValidation: typeof import('vuetify/components')['VValidation']
|
2695
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2696
2693
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
2697
2694
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
2698
2695
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -2709,19 +2706,21 @@ declare module 'vue' {
|
|
2709
2706
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
2710
2707
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
2711
2708
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
2712
|
-
|
2709
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
2710
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
2711
|
+
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
2712
|
+
VRating: typeof import('vuetify/components')['VRating']
|
2713
|
+
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2714
|
+
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2715
|
+
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2713
2716
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
2714
2717
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
2715
2718
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
2716
2719
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
2717
2720
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
2718
2721
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
2719
|
-
VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
|
2720
|
-
VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
|
2721
2722
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
2722
2723
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
2723
|
-
VColorInput: typeof import('vuetify/labs/components')['VColorInput']
|
2724
|
-
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2725
2724
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
2726
2725
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
2727
2726
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
@@ -2731,7 +2730,8 @@ declare module 'vue' {
|
|
2731
2730
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
2732
2731
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
2733
2732
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
2734
|
-
|
2733
|
+
VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
|
2735
2734
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
2735
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
2736
2736
|
}
|
2737
2737
|
}
|
package/lib/framework.js
CHANGED
@@ -322,8 +322,8 @@ export declare const VFileUpload: {
|
|
322
322
|
rounded?: string | number | boolean | undefined;
|
323
323
|
closeDelay?: string | number | undefined;
|
324
324
|
openDelay?: string | number | undefined;
|
325
|
-
subtitle?: string | undefined;
|
326
325
|
thickness?: string | number | undefined;
|
326
|
+
subtitle?: string | undefined;
|
327
327
|
} & {
|
328
328
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
329
329
|
browse?: ((arg: {
|
@@ -468,8 +468,8 @@ export declare const VFileUpload: {
|
|
468
468
|
rounded?: string | number | boolean | undefined;
|
469
469
|
closeDelay?: string | number | undefined;
|
470
470
|
openDelay?: string | number | undefined;
|
471
|
-
subtitle?: string | undefined;
|
472
471
|
thickness?: string | number | undefined;
|
472
|
+
subtitle?: string | undefined;
|
473
473
|
} & {
|
474
474
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
475
475
|
browse?: ((arg: {
|
@@ -590,8 +590,8 @@ export declare const VFileUpload: {
|
|
590
590
|
rounded?: string | number | boolean | undefined;
|
591
591
|
closeDelay?: string | number | undefined;
|
592
592
|
openDelay?: string | number | undefined;
|
593
|
-
subtitle?: string | undefined;
|
594
593
|
thickness?: string | number | undefined;
|
594
|
+
subtitle?: string | undefined;
|
595
595
|
} & {
|
596
596
|
$children?: import("vue").VNodeChild | (() => import("vue").VNodeChild) | {
|
597
597
|
browse?: ((arg: {
|