@vuetify/nightly 3.9.2-master.2025-07-25 → 3.9.2-master.2025-07-27
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 +12 -3
- package/dist/json/attributes.json +3358 -3358
- package/dist/json/importMap-labs.json +30 -30
- package/dist/json/importMap.json +132 -132
- package/dist/json/web-types.json +6344 -6332
- package/dist/vuetify-labs.cjs +14 -7
- package/dist/vuetify-labs.css +4884 -4884
- package/dist/vuetify-labs.d.ts +91 -50
- package/dist/vuetify-labs.esm.js +14 -7
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +14 -7
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +5 -3
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3026 -3026
- package/dist/vuetify.d.ts +50 -50
- package/dist/vuetify.esm.js +5 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.js +2 -0
- package/lib/components/VNumberInput/VNumberInput.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +50 -50
- package/lib/framework.js +1 -1
- package/lib/labs/VPie/VPie.css +1 -1
- package/lib/labs/VPie/VPie.d.ts +50 -0
- package/lib/labs/VPie/VPie.js +9 -4
- package/lib/labs/VPie/VPie.js.map +1 -1
- package/lib/labs/VPie/VPie.sass +1 -1
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -114116,6 +114116,7 @@ declare const VPie: {
|
|
114116
114116
|
tooltip: boolean | {
|
114117
114117
|
titleFormat?: TextTemplate;
|
114118
114118
|
subtitleFormat?: TextTemplate;
|
114119
|
+
avatarSize?: number;
|
114119
114120
|
transition?: string | boolean | TransitionProps;
|
114120
114121
|
offset?: number;
|
114121
114122
|
};
|
@@ -114155,13 +114156,16 @@ declare const VPie: {
|
|
114155
114156
|
isActive: (item: PieItem) => boolean;
|
114156
114157
|
toggle: (item: PieItem) => void;
|
114157
114158
|
items: PieItem[];
|
114159
|
+
total: number;
|
114158
114160
|
}) => vue.VNodeChild) | undefined;
|
114159
114161
|
'legend-text'?: ((arg: {
|
114160
114162
|
item: PieItem;
|
114163
|
+
total: number;
|
114161
114164
|
}) => vue.VNodeChild) | undefined;
|
114162
114165
|
title?: (() => vue.VNodeChild) | undefined;
|
114163
114166
|
tooltip?: ((arg: {
|
114164
114167
|
item: PieItem;
|
114168
|
+
total: number;
|
114165
114169
|
}) => vue.VNodeChild) | undefined;
|
114166
114170
|
};
|
114167
114171
|
'v-slots'?: {
|
@@ -114172,13 +114176,16 @@ declare const VPie: {
|
|
114172
114176
|
isActive: (item: PieItem) => boolean;
|
114173
114177
|
toggle: (item: PieItem) => void;
|
114174
114178
|
items: PieItem[];
|
114179
|
+
total: number;
|
114175
114180
|
}) => vue.VNodeChild) | undefined;
|
114176
114181
|
'legend-text'?: false | ((arg: {
|
114177
114182
|
item: PieItem;
|
114183
|
+
total: number;
|
114178
114184
|
}) => vue.VNodeChild) | undefined;
|
114179
114185
|
title?: false | (() => vue.VNodeChild) | undefined;
|
114180
114186
|
tooltip?: false | ((arg: {
|
114181
114187
|
item: PieItem;
|
114188
|
+
total: number;
|
114182
114189
|
}) => vue.VNodeChild) | undefined;
|
114183
114190
|
} | undefined;
|
114184
114191
|
} & {
|
@@ -114189,13 +114196,16 @@ declare const VPie: {
|
|
114189
114196
|
isActive: (item: PieItem) => boolean;
|
114190
114197
|
toggle: (item: PieItem) => void;
|
114191
114198
|
items: PieItem[];
|
114199
|
+
total: number;
|
114192
114200
|
}) => vue.VNodeChild) | undefined;
|
114193
114201
|
"v-slot:legend-text"?: false | ((arg: {
|
114194
114202
|
item: PieItem;
|
114203
|
+
total: number;
|
114195
114204
|
}) => vue.VNodeChild) | undefined;
|
114196
114205
|
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
114197
114206
|
"v-slot:tooltip"?: false | ((arg: {
|
114198
114207
|
item: PieItem;
|
114208
|
+
total: number;
|
114199
114209
|
}) => vue.VNodeChild) | undefined;
|
114200
114210
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
114201
114211
|
animation: boolean | {
|
@@ -114210,6 +114220,7 @@ declare const VPie: {
|
|
114210
114220
|
tooltip: boolean | {
|
114211
114221
|
titleFormat?: TextTemplate;
|
114212
114222
|
subtitleFormat?: TextTemplate;
|
114223
|
+
avatarSize?: number;
|
114213
114224
|
transition?: string | boolean | TransitionProps;
|
114214
114225
|
offset?: number;
|
114215
114226
|
};
|
@@ -114238,13 +114249,16 @@ declare const VPie: {
|
|
114238
114249
|
isActive: (item: PieItem) => boolean;
|
114239
114250
|
toggle: (item: PieItem) => void;
|
114240
114251
|
items: PieItem[];
|
114252
|
+
total: number;
|
114241
114253
|
}) => vue.VNode[];
|
114242
114254
|
'legend-text': (arg: {
|
114243
114255
|
item: PieItem;
|
114256
|
+
total: number;
|
114244
114257
|
}) => vue.VNode[];
|
114245
114258
|
title: () => vue.VNode[];
|
114246
114259
|
tooltip: (arg: {
|
114247
114260
|
item: PieItem;
|
114261
|
+
total: number;
|
114248
114262
|
}) => vue.VNode[];
|
114249
114263
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
114250
114264
|
P: {};
|
@@ -114266,6 +114280,7 @@ declare const VPie: {
|
|
114266
114280
|
tooltip: boolean | {
|
114267
114281
|
titleFormat?: TextTemplate;
|
114268
114282
|
subtitleFormat?: TextTemplate;
|
114283
|
+
avatarSize?: number;
|
114269
114284
|
transition?: string | boolean | TransitionProps;
|
114270
114285
|
offset?: number;
|
114271
114286
|
};
|
@@ -114305,13 +114320,16 @@ declare const VPie: {
|
|
114305
114320
|
isActive: (item: PieItem) => boolean;
|
114306
114321
|
toggle: (item: PieItem) => void;
|
114307
114322
|
items: PieItem[];
|
114323
|
+
total: number;
|
114308
114324
|
}) => vue.VNodeChild) | undefined;
|
114309
114325
|
'legend-text'?: ((arg: {
|
114310
114326
|
item: PieItem;
|
114327
|
+
total: number;
|
114311
114328
|
}) => vue.VNodeChild) | undefined;
|
114312
114329
|
title?: (() => vue.VNodeChild) | undefined;
|
114313
114330
|
tooltip?: ((arg: {
|
114314
114331
|
item: PieItem;
|
114332
|
+
total: number;
|
114315
114333
|
}) => vue.VNodeChild) | undefined;
|
114316
114334
|
};
|
114317
114335
|
'v-slots'?: {
|
@@ -114322,13 +114340,16 @@ declare const VPie: {
|
|
114322
114340
|
isActive: (item: PieItem) => boolean;
|
114323
114341
|
toggle: (item: PieItem) => void;
|
114324
114342
|
items: PieItem[];
|
114343
|
+
total: number;
|
114325
114344
|
}) => vue.VNodeChild) | undefined;
|
114326
114345
|
'legend-text'?: false | ((arg: {
|
114327
114346
|
item: PieItem;
|
114347
|
+
total: number;
|
114328
114348
|
}) => vue.VNodeChild) | undefined;
|
114329
114349
|
title?: false | (() => vue.VNodeChild) | undefined;
|
114330
114350
|
tooltip?: false | ((arg: {
|
114331
114351
|
item: PieItem;
|
114352
|
+
total: number;
|
114332
114353
|
}) => vue.VNodeChild) | undefined;
|
114333
114354
|
} | undefined;
|
114334
114355
|
} & {
|
@@ -114339,13 +114360,16 @@ declare const VPie: {
|
|
114339
114360
|
isActive: (item: PieItem) => boolean;
|
114340
114361
|
toggle: (item: PieItem) => void;
|
114341
114362
|
items: PieItem[];
|
114363
|
+
total: number;
|
114342
114364
|
}) => vue.VNodeChild) | undefined;
|
114343
114365
|
"v-slot:legend-text"?: false | ((arg: {
|
114344
114366
|
item: PieItem;
|
114367
|
+
total: number;
|
114345
114368
|
}) => vue.VNodeChild) | undefined;
|
114346
114369
|
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
114347
114370
|
"v-slot:tooltip"?: false | ((arg: {
|
114348
114371
|
item: PieItem;
|
114372
|
+
total: number;
|
114349
114373
|
}) => vue.VNodeChild) | undefined;
|
114350
114374
|
}, () => JSX.Element, {}, {}, {}, {
|
114351
114375
|
animation: boolean | {
|
@@ -114360,6 +114384,7 @@ declare const VPie: {
|
|
114360
114384
|
tooltip: boolean | {
|
114361
114385
|
titleFormat?: TextTemplate;
|
114362
114386
|
subtitleFormat?: TextTemplate;
|
114387
|
+
avatarSize?: number;
|
114363
114388
|
transition?: string | boolean | TransitionProps;
|
114364
114389
|
offset?: number;
|
114365
114390
|
};
|
@@ -114397,6 +114422,7 @@ declare const VPie: {
|
|
114397
114422
|
tooltip: boolean | {
|
114398
114423
|
titleFormat?: TextTemplate;
|
114399
114424
|
subtitleFormat?: TextTemplate;
|
114425
|
+
avatarSize?: number;
|
114400
114426
|
transition?: string | boolean | TransitionProps;
|
114401
114427
|
offset?: number;
|
114402
114428
|
};
|
@@ -114436,13 +114462,16 @@ declare const VPie: {
|
|
114436
114462
|
isActive: (item: PieItem) => boolean;
|
114437
114463
|
toggle: (item: PieItem) => void;
|
114438
114464
|
items: PieItem[];
|
114465
|
+
total: number;
|
114439
114466
|
}) => vue.VNodeChild) | undefined;
|
114440
114467
|
'legend-text'?: ((arg: {
|
114441
114468
|
item: PieItem;
|
114469
|
+
total: number;
|
114442
114470
|
}) => vue.VNodeChild) | undefined;
|
114443
114471
|
title?: (() => vue.VNodeChild) | undefined;
|
114444
114472
|
tooltip?: ((arg: {
|
114445
114473
|
item: PieItem;
|
114474
|
+
total: number;
|
114446
114475
|
}) => vue.VNodeChild) | undefined;
|
114447
114476
|
};
|
114448
114477
|
'v-slots'?: {
|
@@ -114453,13 +114482,16 @@ declare const VPie: {
|
|
114453
114482
|
isActive: (item: PieItem) => boolean;
|
114454
114483
|
toggle: (item: PieItem) => void;
|
114455
114484
|
items: PieItem[];
|
114485
|
+
total: number;
|
114456
114486
|
}) => vue.VNodeChild) | undefined;
|
114457
114487
|
'legend-text'?: false | ((arg: {
|
114458
114488
|
item: PieItem;
|
114489
|
+
total: number;
|
114459
114490
|
}) => vue.VNodeChild) | undefined;
|
114460
114491
|
title?: false | (() => vue.VNodeChild) | undefined;
|
114461
114492
|
tooltip?: false | ((arg: {
|
114462
114493
|
item: PieItem;
|
114494
|
+
total: number;
|
114463
114495
|
}) => vue.VNodeChild) | undefined;
|
114464
114496
|
} | undefined;
|
114465
114497
|
} & {
|
@@ -114470,13 +114502,16 @@ declare const VPie: {
|
|
114470
114502
|
isActive: (item: PieItem) => boolean;
|
114471
114503
|
toggle: (item: PieItem) => void;
|
114472
114504
|
items: PieItem[];
|
114505
|
+
total: number;
|
114473
114506
|
}) => vue.VNodeChild) | undefined;
|
114474
114507
|
"v-slot:legend-text"?: false | ((arg: {
|
114475
114508
|
item: PieItem;
|
114509
|
+
total: number;
|
114476
114510
|
}) => vue.VNodeChild) | undefined;
|
114477
114511
|
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
114478
114512
|
"v-slot:tooltip"?: false | ((arg: {
|
114479
114513
|
item: PieItem;
|
114514
|
+
total: number;
|
114480
114515
|
}) => vue.VNodeChild) | undefined;
|
114481
114516
|
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
114482
114517
|
animation: boolean | {
|
@@ -114491,6 +114526,7 @@ declare const VPie: {
|
|
114491
114526
|
tooltip: boolean | {
|
114492
114527
|
titleFormat?: TextTemplate;
|
114493
114528
|
subtitleFormat?: TextTemplate;
|
114529
|
+
avatarSize?: number;
|
114494
114530
|
transition?: string | boolean | TransitionProps;
|
114495
114531
|
offset?: number;
|
114496
114532
|
};
|
@@ -114519,13 +114555,16 @@ declare const VPie: {
|
|
114519
114555
|
isActive: (item: PieItem) => boolean;
|
114520
114556
|
toggle: (item: PieItem) => void;
|
114521
114557
|
items: PieItem[];
|
114558
|
+
total: number;
|
114522
114559
|
}) => vue.VNode[];
|
114523
114560
|
'legend-text': (arg: {
|
114524
114561
|
item: PieItem;
|
114562
|
+
total: number;
|
114525
114563
|
}) => vue.VNode[];
|
114526
114564
|
title: () => vue.VNode[];
|
114527
114565
|
tooltip: (arg: {
|
114528
114566
|
item: PieItem;
|
114567
|
+
total: number;
|
114529
114568
|
}) => vue.VNode[];
|
114530
114569
|
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
114531
114570
|
animation: {
|
@@ -114599,6 +114638,7 @@ declare const VPie: {
|
|
114599
114638
|
type: PropType<boolean | {
|
114600
114639
|
titleFormat?: TextTemplate;
|
114601
114640
|
subtitleFormat?: TextTemplate;
|
114641
|
+
avatarSize?: number;
|
114602
114642
|
transition?: string | boolean | TransitionProps;
|
114603
114643
|
offset?: number;
|
114604
114644
|
}>;
|
@@ -114676,6 +114716,7 @@ declare const VPie: {
|
|
114676
114716
|
type: PropType<boolean | {
|
114677
114717
|
titleFormat?: TextTemplate;
|
114678
114718
|
subtitleFormat?: TextTemplate;
|
114719
|
+
avatarSize?: number;
|
114679
114720
|
transition?: string | boolean | TransitionProps;
|
114680
114721
|
offset?: number;
|
114681
114722
|
}>;
|
@@ -122766,24 +122807,26 @@ declare module 'vue' {
|
|
122766
122807
|
}
|
122767
122808
|
export interface GlobalComponents {
|
122768
122809
|
VApp: VApp
|
122810
|
+
VAlert: VAlert
|
122811
|
+
VAlertTitle: VAlertTitle
|
122769
122812
|
VAppBar: VAppBar
|
122770
122813
|
VAppBarNavIcon: VAppBarNavIcon
|
122771
122814
|
VAppBarTitle: VAppBarTitle
|
122772
|
-
VAvatar: VAvatar
|
122773
122815
|
VAutocomplete: VAutocomplete
|
122774
|
-
|
122775
|
-
|
122816
|
+
VAvatar: VAvatar
|
122817
|
+
VBreadcrumbs: VBreadcrumbs
|
122818
|
+
VBreadcrumbsItem: VBreadcrumbsItem
|
122819
|
+
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122776
122820
|
VBadge: VBadge
|
122821
|
+
VBottomNavigation: VBottomNavigation
|
122822
|
+
VBottomSheet: VBottomSheet
|
122777
122823
|
VBanner: VBanner
|
122778
122824
|
VBannerActions: VBannerActions
|
122779
122825
|
VBannerText: VBannerText
|
122780
|
-
VBottomSheet: VBottomSheet
|
122781
|
-
VBottomNavigation: VBottomNavigation
|
122782
|
-
VBreadcrumbs: VBreadcrumbs
|
122783
|
-
VBreadcrumbsItem: VBreadcrumbsItem
|
122784
|
-
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122785
|
-
VBtn: VBtn
|
122786
122826
|
VBtnGroup: VBtnGroup
|
122827
|
+
VBtn: VBtn
|
122828
|
+
VCarousel: VCarousel
|
122829
|
+
VCarouselItem: VCarouselItem
|
122787
122830
|
VBtnToggle: VBtnToggle
|
122788
122831
|
VCard: VCard
|
122789
122832
|
VCardActions: VCardActions
|
@@ -122791,14 +122834,12 @@ declare module 'vue' {
|
|
122791
122834
|
VCardSubtitle: VCardSubtitle
|
122792
122835
|
VCardText: VCardText
|
122793
122836
|
VCardTitle: VCardTitle
|
122837
|
+
VCode: VCode
|
122838
|
+
VChip: VChip
|
122839
|
+
VChipGroup: VChipGroup
|
122794
122840
|
VCheckbox: VCheckbox
|
122795
122841
|
VCheckboxBtn: VCheckboxBtn
|
122796
|
-
VCarousel: VCarousel
|
122797
|
-
VCarouselItem: VCarouselItem
|
122798
|
-
VChip: VChip
|
122799
122842
|
VColorPicker: VColorPicker
|
122800
|
-
VCode: VCode
|
122801
|
-
VChipGroup: VChipGroup
|
122802
122843
|
VCounter: VCounter
|
122803
122844
|
VDataTable: VDataTable
|
122804
122845
|
VDataTableHeaders: VDataTableHeaders
|
@@ -122807,26 +122848,25 @@ declare module 'vue' {
|
|
122807
122848
|
VDataTableRow: VDataTableRow
|
122808
122849
|
VDataTableVirtual: VDataTableVirtual
|
122809
122850
|
VDataTableServer: VDataTableServer
|
122810
|
-
VCombobox: VCombobox
|
122811
122851
|
VDatePicker: VDatePicker
|
122812
122852
|
VDatePickerControls: VDatePickerControls
|
122813
122853
|
VDatePickerHeader: VDatePickerHeader
|
122814
122854
|
VDatePickerMonth: VDatePickerMonth
|
122815
122855
|
VDatePickerMonths: VDatePickerMonths
|
122816
122856
|
VDatePickerYears: VDatePickerYears
|
122857
|
+
VCombobox: VCombobox
|
122817
122858
|
VDialog: VDialog
|
122859
|
+
VDivider: VDivider
|
122818
122860
|
VExpansionPanels: VExpansionPanels
|
122819
122861
|
VExpansionPanel: VExpansionPanel
|
122820
122862
|
VExpansionPanelText: VExpansionPanelText
|
122821
122863
|
VExpansionPanelTitle: VExpansionPanelTitle
|
122864
|
+
VEmptyState: VEmptyState
|
122865
|
+
VFileInput: VFileInput
|
122822
122866
|
VField: VField
|
122823
122867
|
VFieldLabel: VFieldLabel
|
122824
|
-
VFab: VFab
|
122825
|
-
VDivider: VDivider
|
122826
|
-
VFileInput: VFileInput
|
122827
122868
|
VFooter: VFooter
|
122828
|
-
|
122829
|
-
VEmptyState: VEmptyState
|
122869
|
+
VFab: VFab
|
122830
122870
|
VImg: VImg
|
122831
122871
|
VIcon: VIcon
|
122832
122872
|
VComponentIcon: VComponentIcon
|
@@ -122834,10 +122874,10 @@ declare module 'vue' {
|
|
122834
122874
|
VLigatureIcon: VLigatureIcon
|
122835
122875
|
VClassIcon: VClassIcon
|
122836
122876
|
VInput: VInput
|
122837
|
-
|
122838
|
-
VKbd: VKbd
|
122877
|
+
VInfiniteScroll: VInfiniteScroll
|
122839
122878
|
VItemGroup: VItemGroup
|
122840
122879
|
VItem: VItem
|
122880
|
+
VLabel: VLabel
|
122841
122881
|
VList: VList
|
122842
122882
|
VListGroup: VListGroup
|
122843
122883
|
VListImg: VListImg
|
@@ -122847,76 +122887,80 @@ declare module 'vue' {
|
|
122847
122887
|
VListItemSubtitle: VListItemSubtitle
|
122848
122888
|
VListItemTitle: VListItemTitle
|
122849
122889
|
VListSubheader: VListSubheader
|
122850
|
-
|
122890
|
+
VKbd: VKbd
|
122891
|
+
VNavigationDrawer: VNavigationDrawer
|
122851
122892
|
VMenu: VMenu
|
122893
|
+
VMain: VMain
|
122852
122894
|
VMessages: VMessages
|
122853
|
-
VOverlay: VOverlay
|
122854
122895
|
VOtpInput: VOtpInput
|
122896
|
+
VNumberInput: VNumberInput
|
122855
122897
|
VPagination: VPagination
|
122856
122898
|
VProgressCircular: VProgressCircular
|
122857
|
-
|
122858
|
-
VNavigationDrawer: VNavigationDrawer
|
122899
|
+
VOverlay: VOverlay
|
122859
122900
|
VRadioGroup: VRadioGroup
|
122860
|
-
|
122901
|
+
VProgressLinear: VProgressLinear
|
122861
122902
|
VSelect: VSelect
|
122903
|
+
VRating: VRating
|
122862
122904
|
VSelectionControl: VSelectionControl
|
122863
|
-
VSheet: VSheet
|
122864
122905
|
VSelectionControlGroup: VSelectionControlGroup
|
122865
122906
|
VSkeletonLoader: VSkeletonLoader
|
122866
|
-
|
122907
|
+
VSheet: VSheet
|
122867
122908
|
VSlider: VSlider
|
122909
|
+
VSnackbar: VSnackbar
|
122868
122910
|
VStepper: VStepper
|
122869
122911
|
VStepperActions: VStepperActions
|
122870
122912
|
VStepperHeader: VStepperHeader
|
122871
122913
|
VStepperItem: VStepperItem
|
122872
122914
|
VStepperWindow: VStepperWindow
|
122873
122915
|
VStepperWindowItem: VStepperWindowItem
|
122916
|
+
VSwitch: VSwitch
|
122874
122917
|
VSlideGroup: VSlideGroup
|
122875
122918
|
VSlideGroupItem: VSlideGroupItem
|
122876
122919
|
VTab: VTab
|
122877
122920
|
VTabs: VTabs
|
122878
122921
|
VTabsWindow: VTabsWindow
|
122879
122922
|
VTabsWindowItem: VTabsWindowItem
|
122880
|
-
|
122881
|
-
VTextarea: VTextarea
|
122923
|
+
VSystemBar: VSystemBar
|
122882
122924
|
VTimeline: VTimeline
|
122883
122925
|
VTimelineItem: VTimelineItem
|
122884
122926
|
VTextField: VTextField
|
122885
|
-
VSystemBar: VSystemBar
|
122886
122927
|
VTimePicker: VTimePicker
|
122887
122928
|
VTimePickerClock: VTimePickerClock
|
122888
122929
|
VTimePickerControls: VTimePickerControls
|
122889
122930
|
VToolbar: VToolbar
|
122890
122931
|
VToolbarTitle: VToolbarTitle
|
122891
122932
|
VToolbarItems: VToolbarItems
|
122892
|
-
|
122933
|
+
VTextarea: VTextarea
|
122893
122934
|
VTreeview: VTreeview
|
122894
122935
|
VTreeviewItem: VTreeviewItem
|
122895
122936
|
VTreeviewGroup: VTreeviewGroup
|
122896
122937
|
VTable: VTable
|
122897
122938
|
VWindow: VWindow
|
122898
122939
|
VWindowItem: VWindowItem
|
122940
|
+
VTooltip: VTooltip
|
122899
122941
|
VConfirmEdit: VConfirmEdit
|
122942
|
+
VDataIterator: VDataIterator
|
122900
122943
|
VDefaultsProvider: VDefaultsProvider
|
122901
122944
|
VContainer: VContainer
|
122902
122945
|
VCol: VCol
|
122903
122946
|
VRow: VRow
|
122904
122947
|
VSpacer: VSpacer
|
122948
|
+
VForm: VForm
|
122905
122949
|
VHover: VHover
|
122950
|
+
VLazy: VLazy
|
122906
122951
|
VLayout: VLayout
|
122907
122952
|
VLayoutItem: VLayoutItem
|
122908
|
-
VLazy: VLazy
|
122909
122953
|
VLocaleProvider: VLocaleProvider
|
122910
122954
|
VNoSsr: VNoSsr
|
122911
122955
|
VParallax: VParallax
|
122912
|
-
VRangeSlider: VRangeSlider
|
122913
122956
|
VRadio: VRadio
|
122957
|
+
VRangeSlider: VRangeSlider
|
122958
|
+
VSparkline: VSparkline
|
122914
122959
|
VResponsive: VResponsive
|
122915
122960
|
VSnackbarQueue: VSnackbarQueue
|
122916
|
-
VSparkline: VSparkline
|
122917
122961
|
VSpeedDial: VSpeedDial
|
122918
|
-
VVirtualScroll: VVirtualScroll
|
122919
122962
|
VThemeProvider: VThemeProvider
|
122963
|
+
VValidation: VValidation
|
122920
122964
|
VFabTransition: VFabTransition
|
122921
122965
|
VDialogBottomTransition: VDialogBottomTransition
|
122922
122966
|
VDialogTopTransition: VDialogTopTransition
|
@@ -122933,35 +122977,32 @@ declare module 'vue' {
|
|
122933
122977
|
VExpandTransition: VExpandTransition
|
122934
122978
|
VExpandXTransition: VExpandXTransition
|
122935
122979
|
VDialogTransition: VDialogTransition
|
122936
|
-
|
122937
|
-
VProgressLinear: VProgressLinear
|
122938
|
-
VDataIterator: VDataIterator
|
122939
|
-
VForm: VForm
|
122980
|
+
VVirtualScroll: VVirtualScroll
|
122940
122981
|
VCalendar: VCalendar
|
122941
122982
|
VCalendarDay: VCalendarDay
|
122942
122983
|
VCalendarHeader: VCalendarHeader
|
122943
122984
|
VCalendarInterval: VCalendarInterval
|
122944
122985
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
122945
122986
|
VCalendarMonthDay: VCalendarMonthDay
|
122987
|
+
VFileUpload: VFileUpload
|
122988
|
+
VFileUploadItem: VFileUploadItem
|
122946
122989
|
VPie: VPie
|
122947
122990
|
VPieSegment: VPieSegment
|
122948
122991
|
VPieTooltip: VPieTooltip
|
122992
|
+
VColorInput: VColorInput
|
122993
|
+
VIconBtn: VIconBtn
|
122994
|
+
VHotkey: VHotkey
|
122949
122995
|
VPicker: VPicker
|
122950
122996
|
VPickerTitle: VPickerTitle
|
122951
|
-
VStepperVertical: VStepperVertical
|
122952
|
-
VStepperVerticalItem: VStepperVerticalItem
|
122953
|
-
VStepperVerticalActions: VStepperVerticalActions
|
122954
|
-
VHotkey: VHotkey
|
122955
|
-
VFileUpload: VFileUpload
|
122956
|
-
VFileUploadItem: VFileUploadItem
|
122957
122997
|
VVideo: VVideo
|
122958
122998
|
VVideoControls: VVideoControls
|
122959
122999
|
VVideoVolume: VVideoVolume
|
123000
|
+
VStepperVertical: VStepperVertical
|
123001
|
+
VStepperVerticalItem: VStepperVerticalItem
|
123002
|
+
VStepperVerticalActions: VStepperVerticalActions
|
122960
123003
|
VDateInput: VDateInput
|
122961
|
-
VPullToRefresh: VPullToRefresh
|
122962
123004
|
VMaskInput: VMaskInput
|
122963
|
-
|
122964
|
-
VIconBtn: VIconBtn
|
123005
|
+
VPullToRefresh: VPullToRefresh
|
122965
123006
|
}
|
122966
123007
|
export interface GlobalDirectives {
|
122967
123008
|
vClickOutside: typeof import('vuetify/directives')['ClickOutside']
|
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.9.2-master.2025-07-
|
2
|
+
* Vuetify v3.9.2-master.2025-07-27
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -25961,6 +25961,8 @@ const VNumberInput = genericComponent()({
|
|
25961
25961
|
if (potentialNewInputVal.split(decimalSeparator.value)[1]?.length > props.precision) {
|
25962
25962
|
e.preventDefault();
|
25963
25963
|
inputElement.value = potentialNewNumber;
|
25964
|
+
const cursorPosition = (selectionStart ?? 0) + e.data.length;
|
25965
|
+
inputElement.setSelectionRange(cursorPosition, cursorPosition);
|
25964
25966
|
}
|
25965
25967
|
// Ignore decimal separator when precision = 0
|
25966
25968
|
if (props.precision === 0 && potentialNewInputVal.includes(decimalSeparator.value)) {
|
@@ -33011,7 +33013,7 @@ const VPie = genericComponent()({
|
|
33011
33013
|
};
|
33012
33014
|
const tooltipDefaults = {
|
33013
33015
|
VAvatar: {
|
33014
|
-
size: 28
|
33016
|
+
size: typeof props.tooltip === 'object' ? props.tooltip.avatarSize : 28
|
33015
33017
|
}
|
33016
33018
|
};
|
33017
33019
|
const avatarSlot = _ref2 => {
|
@@ -33077,7 +33079,8 @@ const VPie = genericComponent()({
|
|
33077
33079
|
}, [slots.legend?.({
|
33078
33080
|
isActive,
|
33079
33081
|
toggle,
|
33080
|
-
items: arcs.value
|
33082
|
+
items: arcs.value,
|
33083
|
+
total: total.value
|
33081
33084
|
}) ?? createVNode(VChipGroup, {
|
33082
33085
|
"column": true,
|
33083
33086
|
"multiple": true,
|
@@ -33093,7 +33096,8 @@ const VPie = genericComponent()({
|
|
33093
33096
|
default: () => createElementVNode("div", {
|
33094
33097
|
"class": "v-pie__legend__text"
|
33095
33098
|
}, [slots['legend-text']?.({
|
33096
|
-
item
|
33099
|
+
item,
|
33100
|
+
total: total.value
|
33097
33101
|
}) ?? legendTextFormatFunction.value(item)])
|
33098
33102
|
}))]
|
33099
33103
|
})])]
|
@@ -33101,7 +33105,10 @@ const VPie = genericComponent()({
|
|
33101
33105
|
"defaults": tooltipDefaults
|
33102
33106
|
}, {
|
33103
33107
|
default: () => [createVNode(VPieTooltip, tooltipProps, {
|
33104
|
-
default: slots.tooltip
|
33108
|
+
default: slots.tooltip ? slotProps => slots.tooltip?.({
|
33109
|
+
...slotProps,
|
33110
|
+
total: total.value
|
33111
|
+
}) : undefined,
|
33105
33112
|
prepend: avatarSlot
|
33106
33113
|
})]
|
33107
33114
|
})]);
|
@@ -35093,7 +35100,7 @@ function createVuetify$1() {
|
|
35093
35100
|
};
|
35094
35101
|
});
|
35095
35102
|
}
|
35096
|
-
const version$1 = "3.9.2-master.2025-07-
|
35103
|
+
const version$1 = "3.9.2-master.2025-07-27";
|
35097
35104
|
createVuetify$1.version = version$1;
|
35098
35105
|
|
35099
35106
|
// Vue's inject() can only be used in setup
|
@@ -35391,7 +35398,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
35391
35398
|
|
35392
35399
|
/* eslint-disable local-rules/sort-imports */
|
35393
35400
|
|
35394
|
-
const version = "3.9.2-master.2025-07-
|
35401
|
+
const version = "3.9.2-master.2025-07-27";
|
35395
35402
|
|
35396
35403
|
/* eslint-disable local-rules/sort-imports */
|
35397
35404
|
|