@vuetify/nightly 3.9.2-master.2025-07-24 → 3.9.2-master.2025-07-26
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 +10 -3
- package/dist/_component-variables-labs.sass +1 -0
- package/dist/json/attributes.json +3153 -3005
- package/dist/json/importMap-labs.json +30 -18
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +52 -0
- package/dist/json/web-types.json +6315 -5820
- package/dist/vuetify-labs.cjs +781 -118
- package/dist/vuetify-labs.css +3870 -3763
- package/dist/vuetify-labs.d.ts +1078 -63
- package/dist/vuetify-labs.esm.js +782 -119
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +781 -118
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +40 -28
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +4830 -4830
- package/dist/vuetify.d.ts +67 -62
- package/dist/vuetify.esm.js +40 -28
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +40 -28
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +936 -938
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VOverlay/locationStrategies.js +16 -10
- package/lib/components/VOverlay/locationStrategies.js.map +1 -1
- package/lib/components/index.js +1 -1
- package/lib/components/index.js.map +1 -1
- package/lib/composables/goto.d.ts +3 -2
- package/lib/composables/goto.js +2 -16
- package/lib/composables/goto.js.map +1 -1
- package/lib/composables/reveal.d.ts +36 -0
- package/lib/composables/reveal.js +30 -0
- package/lib/composables/reveal.js.map +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +151 -146
- package/lib/framework.js +1 -1
- package/lib/labs/VPie/VPie.css +105 -0
- package/lib/labs/VPie/VPie.d.ts +891 -0
- package/lib/labs/VPie/VPie.js +291 -0
- package/lib/labs/VPie/VPie.js.map +1 -0
- package/lib/labs/VPie/VPie.sass +109 -0
- package/lib/labs/VPie/VPieSegment.d.ts +310 -0
- package/lib/labs/VPie/VPieSegment.js +103 -0
- package/lib/labs/VPie/VPieSegment.js.map +1 -0
- package/lib/labs/VPie/VPieTooltip.d.ts +279 -0
- package/lib/labs/VPie/VPieTooltip.js +84 -0
- package/lib/labs/VPie/VPieTooltip.js.map +1 -0
- package/lib/labs/VPie/_variables.scss +11 -0
- package/lib/labs/VPie/index.d.ts +3 -0
- package/lib/labs/VPie/index.js +4 -0
- package/lib/labs/VPie/index.js.map +1 -0
- package/lib/labs/VPie/types.d.ts +16 -0
- package/lib/labs/VPie/types.js +2 -0
- package/lib/labs/VPie/types.js.map +1 -0
- package/lib/labs/VPie/utils.d.ts +23 -0
- package/lib/labs/VPie/utils.js +49 -0
- package/lib/labs/VPie/utils.js.map +1 -0
- package/lib/labs/VVideo/VVideo.css +3 -0
- package/lib/labs/VVideo/VVideo.sass +3 -0
- package/lib/labs/VVideo/VVideoControls.js +9 -5
- package/lib/labs/VVideo/VVideoControls.js.map +1 -1
- package/lib/labs/VVideo/VVideoVolume.js +7 -3
- package/lib/labs/VVideo/VVideoVolume.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/easing.d.ts +22 -0
- package/lib/util/easing.js +53 -0
- package/lib/util/easing.js.map +1 -1
- package/lib/util/svg-arc-corners.d.ts +4 -0
- package/lib/util/svg-arc-corners.js +73 -0
- package/lib/util/svg-arc-corners.js.map +1 -0
- package/package.json +1 -1
package/dist/vuetify-labs.d.ts
CHANGED
@@ -251,6 +251,23 @@ type JSXComponent<Props = any> = {
|
|
251
251
|
|
252
252
|
type ClassValue = any;
|
253
253
|
|
254
|
+
type EasingFunction = (n: number) => number;
|
255
|
+
declare const easingPatterns: {
|
256
|
+
readonly linear: (t: number) => number;
|
257
|
+
readonly easeInQuad: (t: number) => number;
|
258
|
+
readonly easeOutQuad: (t: number) => number;
|
259
|
+
readonly easeInOutQuad: (t: number) => number;
|
260
|
+
readonly easeInCubic: (t: number) => number;
|
261
|
+
readonly easeOutCubic: (t: number) => number;
|
262
|
+
readonly easeInOutCubic: (t: number) => number;
|
263
|
+
readonly easeInQuart: (t: number) => number;
|
264
|
+
readonly easeOutQuart: (t: number) => number;
|
265
|
+
readonly easeInOutQuart: (t: number) => number;
|
266
|
+
readonly easeInQuint: (t: number) => number;
|
267
|
+
readonly easeOutQuint: (t: number) => number;
|
268
|
+
readonly easeInOutQuint: (t: number) => number;
|
269
|
+
};
|
270
|
+
|
254
271
|
declare function deepEqual(a: any, b: any): boolean;
|
255
272
|
type SelectItemKey<T = Record<string, any>> = boolean | null | undefined | string | readonly (string | number)[] | ((item: T, fallback?: any) => any);
|
256
273
|
type MaybeRef<T> = T | Ref<T>;
|
@@ -588,8 +605,8 @@ interface InternalGoToOptions {
|
|
588
605
|
duration: number;
|
589
606
|
layout: boolean;
|
590
607
|
offset: number;
|
591
|
-
easing: string |
|
592
|
-
patterns: Record<string,
|
608
|
+
easing: string | EasingFunction;
|
609
|
+
patterns: Record<string, EasingFunction>;
|
593
610
|
}
|
594
611
|
type GoToOptions = Partial<InternalGoToOptions>;
|
595
612
|
declare function useGoTo(_options?: GoToOptions): {
|
@@ -114075,6 +114092,998 @@ declare const VPickerTitle: {
|
|
114075
114092
|
}>>;
|
114076
114093
|
type VPickerTitle = InstanceType<typeof VPickerTitle>;
|
114077
114094
|
|
114095
|
+
interface PieItem {
|
114096
|
+
key: string | number | symbol;
|
114097
|
+
color: string;
|
114098
|
+
value: number;
|
114099
|
+
title: string;
|
114100
|
+
pattern?: string;
|
114101
|
+
raw?: Record<string, any>;
|
114102
|
+
}
|
114103
|
+
type TextTemplate = string | ((v: PieItem) => string);
|
114104
|
+
|
114105
|
+
declare const VPie: {
|
114106
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
114107
|
+
animation: boolean | {
|
114108
|
+
duration?: number;
|
114109
|
+
easing?: keyof typeof easingPatterns;
|
114110
|
+
};
|
114111
|
+
legend: boolean | {
|
114112
|
+
position?: "left" | "top" | "right" | "bottom";
|
114113
|
+
textFormat?: TextTemplate;
|
114114
|
+
};
|
114115
|
+
size: string | number;
|
114116
|
+
tooltip: boolean | {
|
114117
|
+
titleFormat?: TextTemplate;
|
114118
|
+
subtitleFormat?: TextTemplate;
|
114119
|
+
transition?: string | boolean | TransitionProps;
|
114120
|
+
offset?: number;
|
114121
|
+
};
|
114122
|
+
items: Record<string, any> | {
|
114123
|
+
color?: string;
|
114124
|
+
pattern?: string;
|
114125
|
+
}[];
|
114126
|
+
itemValue: string;
|
114127
|
+
density: Density;
|
114128
|
+
itemTitle: string;
|
114129
|
+
itemKey: string;
|
114130
|
+
reveal: boolean | {
|
114131
|
+
duration?: number;
|
114132
|
+
};
|
114133
|
+
palette: (string | {
|
114134
|
+
color?: string;
|
114135
|
+
pattern?: string;
|
114136
|
+
})[];
|
114137
|
+
hoverScale: string | number;
|
114138
|
+
hideSlice: boolean;
|
114139
|
+
} & {
|
114140
|
+
gap?: string | number | undefined;
|
114141
|
+
rotate?: string | number | undefined;
|
114142
|
+
title?: string | undefined;
|
114143
|
+
rounded?: string | number | undefined;
|
114144
|
+
bgColor?: string | undefined;
|
114145
|
+
innerCut?: string | number | undefined;
|
114146
|
+
gaugeCut?: string | number | undefined;
|
114147
|
+
} & {
|
114148
|
+
$children?: {} | vue.VNodeChild | {
|
114149
|
+
$stable?: boolean;
|
114150
|
+
} | {
|
114151
|
+
center?: ((arg: {
|
114152
|
+
total: number;
|
114153
|
+
}) => vue.VNodeChild) | undefined;
|
114154
|
+
legend?: ((arg: {
|
114155
|
+
isActive: (item: PieItem) => boolean;
|
114156
|
+
toggle: (item: PieItem) => void;
|
114157
|
+
items: PieItem[];
|
114158
|
+
}) => vue.VNodeChild) | undefined;
|
114159
|
+
'legend-text'?: ((arg: {
|
114160
|
+
item: PieItem;
|
114161
|
+
}) => vue.VNodeChild) | undefined;
|
114162
|
+
title?: (() => vue.VNodeChild) | undefined;
|
114163
|
+
tooltip?: ((arg: {
|
114164
|
+
item: PieItem;
|
114165
|
+
}) => vue.VNodeChild) | undefined;
|
114166
|
+
};
|
114167
|
+
'v-slots'?: {
|
114168
|
+
center?: false | ((arg: {
|
114169
|
+
total: number;
|
114170
|
+
}) => vue.VNodeChild) | undefined;
|
114171
|
+
legend?: false | ((arg: {
|
114172
|
+
isActive: (item: PieItem) => boolean;
|
114173
|
+
toggle: (item: PieItem) => void;
|
114174
|
+
items: PieItem[];
|
114175
|
+
}) => vue.VNodeChild) | undefined;
|
114176
|
+
'legend-text'?: false | ((arg: {
|
114177
|
+
item: PieItem;
|
114178
|
+
}) => vue.VNodeChild) | undefined;
|
114179
|
+
title?: false | (() => vue.VNodeChild) | undefined;
|
114180
|
+
tooltip?: false | ((arg: {
|
114181
|
+
item: PieItem;
|
114182
|
+
}) => vue.VNodeChild) | undefined;
|
114183
|
+
} | undefined;
|
114184
|
+
} & {
|
114185
|
+
"v-slot:center"?: false | ((arg: {
|
114186
|
+
total: number;
|
114187
|
+
}) => vue.VNodeChild) | undefined;
|
114188
|
+
"v-slot:legend"?: false | ((arg: {
|
114189
|
+
isActive: (item: PieItem) => boolean;
|
114190
|
+
toggle: (item: PieItem) => void;
|
114191
|
+
items: PieItem[];
|
114192
|
+
}) => vue.VNodeChild) | undefined;
|
114193
|
+
"v-slot:legend-text"?: false | ((arg: {
|
114194
|
+
item: PieItem;
|
114195
|
+
}) => vue.VNodeChild) | undefined;
|
114196
|
+
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
114197
|
+
"v-slot:tooltip"?: false | ((arg: {
|
114198
|
+
item: PieItem;
|
114199
|
+
}) => vue.VNodeChild) | undefined;
|
114200
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
114201
|
+
animation: boolean | {
|
114202
|
+
duration?: number;
|
114203
|
+
easing?: keyof typeof easingPatterns;
|
114204
|
+
};
|
114205
|
+
legend: boolean | {
|
114206
|
+
position?: "left" | "top" | "right" | "bottom";
|
114207
|
+
textFormat?: TextTemplate;
|
114208
|
+
};
|
114209
|
+
size: string | number;
|
114210
|
+
tooltip: boolean | {
|
114211
|
+
titleFormat?: TextTemplate;
|
114212
|
+
subtitleFormat?: TextTemplate;
|
114213
|
+
transition?: string | boolean | TransitionProps;
|
114214
|
+
offset?: number;
|
114215
|
+
};
|
114216
|
+
items: Record<string, any> | {
|
114217
|
+
color?: string;
|
114218
|
+
pattern?: string;
|
114219
|
+
}[];
|
114220
|
+
itemValue: string;
|
114221
|
+
density: Density;
|
114222
|
+
itemTitle: string;
|
114223
|
+
itemKey: string;
|
114224
|
+
reveal: boolean | {
|
114225
|
+
duration?: number;
|
114226
|
+
};
|
114227
|
+
palette: (string | {
|
114228
|
+
color?: string;
|
114229
|
+
pattern?: string;
|
114230
|
+
})[];
|
114231
|
+
hoverScale: string | number;
|
114232
|
+
hideSlice: boolean;
|
114233
|
+
}, true, {}, vue.SlotsType<Partial<{
|
114234
|
+
center: (arg: {
|
114235
|
+
total: number;
|
114236
|
+
}) => vue.VNode[];
|
114237
|
+
legend: (arg: {
|
114238
|
+
isActive: (item: PieItem) => boolean;
|
114239
|
+
toggle: (item: PieItem) => void;
|
114240
|
+
items: PieItem[];
|
114241
|
+
}) => vue.VNode[];
|
114242
|
+
'legend-text': (arg: {
|
114243
|
+
item: PieItem;
|
114244
|
+
}) => vue.VNode[];
|
114245
|
+
title: () => vue.VNode[];
|
114246
|
+
tooltip: (arg: {
|
114247
|
+
item: PieItem;
|
114248
|
+
}) => vue.VNode[];
|
114249
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
114250
|
+
P: {};
|
114251
|
+
B: {};
|
114252
|
+
D: {};
|
114253
|
+
C: {};
|
114254
|
+
M: {};
|
114255
|
+
Defaults: {};
|
114256
|
+
}, {
|
114257
|
+
animation: boolean | {
|
114258
|
+
duration?: number;
|
114259
|
+
easing?: keyof typeof easingPatterns;
|
114260
|
+
};
|
114261
|
+
legend: boolean | {
|
114262
|
+
position?: "left" | "top" | "right" | "bottom";
|
114263
|
+
textFormat?: TextTemplate;
|
114264
|
+
};
|
114265
|
+
size: string | number;
|
114266
|
+
tooltip: boolean | {
|
114267
|
+
titleFormat?: TextTemplate;
|
114268
|
+
subtitleFormat?: TextTemplate;
|
114269
|
+
transition?: string | boolean | TransitionProps;
|
114270
|
+
offset?: number;
|
114271
|
+
};
|
114272
|
+
items: Record<string, any> | {
|
114273
|
+
color?: string;
|
114274
|
+
pattern?: string;
|
114275
|
+
}[];
|
114276
|
+
itemValue: string;
|
114277
|
+
density: Density;
|
114278
|
+
itemTitle: string;
|
114279
|
+
itemKey: string;
|
114280
|
+
reveal: boolean | {
|
114281
|
+
duration?: number;
|
114282
|
+
};
|
114283
|
+
palette: (string | {
|
114284
|
+
color?: string;
|
114285
|
+
pattern?: string;
|
114286
|
+
})[];
|
114287
|
+
hoverScale: string | number;
|
114288
|
+
hideSlice: boolean;
|
114289
|
+
} & {
|
114290
|
+
gap?: string | number | undefined;
|
114291
|
+
rotate?: string | number | undefined;
|
114292
|
+
title?: string | undefined;
|
114293
|
+
rounded?: string | number | undefined;
|
114294
|
+
bgColor?: string | undefined;
|
114295
|
+
innerCut?: string | number | undefined;
|
114296
|
+
gaugeCut?: string | number | undefined;
|
114297
|
+
} & {
|
114298
|
+
$children?: {} | vue.VNodeChild | {
|
114299
|
+
$stable?: boolean;
|
114300
|
+
} | {
|
114301
|
+
center?: ((arg: {
|
114302
|
+
total: number;
|
114303
|
+
}) => vue.VNodeChild) | undefined;
|
114304
|
+
legend?: ((arg: {
|
114305
|
+
isActive: (item: PieItem) => boolean;
|
114306
|
+
toggle: (item: PieItem) => void;
|
114307
|
+
items: PieItem[];
|
114308
|
+
}) => vue.VNodeChild) | undefined;
|
114309
|
+
'legend-text'?: ((arg: {
|
114310
|
+
item: PieItem;
|
114311
|
+
}) => vue.VNodeChild) | undefined;
|
114312
|
+
title?: (() => vue.VNodeChild) | undefined;
|
114313
|
+
tooltip?: ((arg: {
|
114314
|
+
item: PieItem;
|
114315
|
+
}) => vue.VNodeChild) | undefined;
|
114316
|
+
};
|
114317
|
+
'v-slots'?: {
|
114318
|
+
center?: false | ((arg: {
|
114319
|
+
total: number;
|
114320
|
+
}) => vue.VNodeChild) | undefined;
|
114321
|
+
legend?: false | ((arg: {
|
114322
|
+
isActive: (item: PieItem) => boolean;
|
114323
|
+
toggle: (item: PieItem) => void;
|
114324
|
+
items: PieItem[];
|
114325
|
+
}) => vue.VNodeChild) | undefined;
|
114326
|
+
'legend-text'?: false | ((arg: {
|
114327
|
+
item: PieItem;
|
114328
|
+
}) => vue.VNodeChild) | undefined;
|
114329
|
+
title?: false | (() => vue.VNodeChild) | undefined;
|
114330
|
+
tooltip?: false | ((arg: {
|
114331
|
+
item: PieItem;
|
114332
|
+
}) => vue.VNodeChild) | undefined;
|
114333
|
+
} | undefined;
|
114334
|
+
} & {
|
114335
|
+
"v-slot:center"?: false | ((arg: {
|
114336
|
+
total: number;
|
114337
|
+
}) => vue.VNodeChild) | undefined;
|
114338
|
+
"v-slot:legend"?: false | ((arg: {
|
114339
|
+
isActive: (item: PieItem) => boolean;
|
114340
|
+
toggle: (item: PieItem) => void;
|
114341
|
+
items: PieItem[];
|
114342
|
+
}) => vue.VNodeChild) | undefined;
|
114343
|
+
"v-slot:legend-text"?: false | ((arg: {
|
114344
|
+
item: PieItem;
|
114345
|
+
}) => vue.VNodeChild) | undefined;
|
114346
|
+
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
114347
|
+
"v-slot:tooltip"?: false | ((arg: {
|
114348
|
+
item: PieItem;
|
114349
|
+
}) => vue.VNodeChild) | undefined;
|
114350
|
+
}, () => JSX.Element, {}, {}, {}, {
|
114351
|
+
animation: boolean | {
|
114352
|
+
duration?: number;
|
114353
|
+
easing?: keyof typeof easingPatterns;
|
114354
|
+
};
|
114355
|
+
legend: boolean | {
|
114356
|
+
position?: "left" | "top" | "right" | "bottom";
|
114357
|
+
textFormat?: TextTemplate;
|
114358
|
+
};
|
114359
|
+
size: string | number;
|
114360
|
+
tooltip: boolean | {
|
114361
|
+
titleFormat?: TextTemplate;
|
114362
|
+
subtitleFormat?: TextTemplate;
|
114363
|
+
transition?: string | boolean | TransitionProps;
|
114364
|
+
offset?: number;
|
114365
|
+
};
|
114366
|
+
items: Record<string, any> | {
|
114367
|
+
color?: string;
|
114368
|
+
pattern?: string;
|
114369
|
+
}[];
|
114370
|
+
itemValue: string;
|
114371
|
+
density: Density;
|
114372
|
+
itemTitle: string;
|
114373
|
+
itemKey: string;
|
114374
|
+
reveal: boolean | {
|
114375
|
+
duration?: number;
|
114376
|
+
};
|
114377
|
+
palette: (string | {
|
114378
|
+
color?: string;
|
114379
|
+
pattern?: string;
|
114380
|
+
})[];
|
114381
|
+
hoverScale: string | number;
|
114382
|
+
hideSlice: boolean;
|
114383
|
+
}>;
|
114384
|
+
__isFragment?: never;
|
114385
|
+
__isTeleport?: never;
|
114386
|
+
__isSuspense?: never;
|
114387
|
+
} & vue.ComponentOptionsBase<{
|
114388
|
+
animation: boolean | {
|
114389
|
+
duration?: number;
|
114390
|
+
easing?: keyof typeof easingPatterns;
|
114391
|
+
};
|
114392
|
+
legend: boolean | {
|
114393
|
+
position?: "left" | "top" | "right" | "bottom";
|
114394
|
+
textFormat?: TextTemplate;
|
114395
|
+
};
|
114396
|
+
size: string | number;
|
114397
|
+
tooltip: boolean | {
|
114398
|
+
titleFormat?: TextTemplate;
|
114399
|
+
subtitleFormat?: TextTemplate;
|
114400
|
+
transition?: string | boolean | TransitionProps;
|
114401
|
+
offset?: number;
|
114402
|
+
};
|
114403
|
+
items: Record<string, any> | {
|
114404
|
+
color?: string;
|
114405
|
+
pattern?: string;
|
114406
|
+
}[];
|
114407
|
+
itemValue: string;
|
114408
|
+
density: Density;
|
114409
|
+
itemTitle: string;
|
114410
|
+
itemKey: string;
|
114411
|
+
reveal: boolean | {
|
114412
|
+
duration?: number;
|
114413
|
+
};
|
114414
|
+
palette: (string | {
|
114415
|
+
color?: string;
|
114416
|
+
pattern?: string;
|
114417
|
+
})[];
|
114418
|
+
hoverScale: string | number;
|
114419
|
+
hideSlice: boolean;
|
114420
|
+
} & {
|
114421
|
+
gap?: string | number | undefined;
|
114422
|
+
rotate?: string | number | undefined;
|
114423
|
+
title?: string | undefined;
|
114424
|
+
rounded?: string | number | undefined;
|
114425
|
+
bgColor?: string | undefined;
|
114426
|
+
innerCut?: string | number | undefined;
|
114427
|
+
gaugeCut?: string | number | undefined;
|
114428
|
+
} & {
|
114429
|
+
$children?: {} | vue.VNodeChild | {
|
114430
|
+
$stable?: boolean;
|
114431
|
+
} | {
|
114432
|
+
center?: ((arg: {
|
114433
|
+
total: number;
|
114434
|
+
}) => vue.VNodeChild) | undefined;
|
114435
|
+
legend?: ((arg: {
|
114436
|
+
isActive: (item: PieItem) => boolean;
|
114437
|
+
toggle: (item: PieItem) => void;
|
114438
|
+
items: PieItem[];
|
114439
|
+
}) => vue.VNodeChild) | undefined;
|
114440
|
+
'legend-text'?: ((arg: {
|
114441
|
+
item: PieItem;
|
114442
|
+
}) => vue.VNodeChild) | undefined;
|
114443
|
+
title?: (() => vue.VNodeChild) | undefined;
|
114444
|
+
tooltip?: ((arg: {
|
114445
|
+
item: PieItem;
|
114446
|
+
}) => vue.VNodeChild) | undefined;
|
114447
|
+
};
|
114448
|
+
'v-slots'?: {
|
114449
|
+
center?: false | ((arg: {
|
114450
|
+
total: number;
|
114451
|
+
}) => vue.VNodeChild) | undefined;
|
114452
|
+
legend?: false | ((arg: {
|
114453
|
+
isActive: (item: PieItem) => boolean;
|
114454
|
+
toggle: (item: PieItem) => void;
|
114455
|
+
items: PieItem[];
|
114456
|
+
}) => vue.VNodeChild) | undefined;
|
114457
|
+
'legend-text'?: false | ((arg: {
|
114458
|
+
item: PieItem;
|
114459
|
+
}) => vue.VNodeChild) | undefined;
|
114460
|
+
title?: false | (() => vue.VNodeChild) | undefined;
|
114461
|
+
tooltip?: false | ((arg: {
|
114462
|
+
item: PieItem;
|
114463
|
+
}) => vue.VNodeChild) | undefined;
|
114464
|
+
} | undefined;
|
114465
|
+
} & {
|
114466
|
+
"v-slot:center"?: false | ((arg: {
|
114467
|
+
total: number;
|
114468
|
+
}) => vue.VNodeChild) | undefined;
|
114469
|
+
"v-slot:legend"?: false | ((arg: {
|
114470
|
+
isActive: (item: PieItem) => boolean;
|
114471
|
+
toggle: (item: PieItem) => void;
|
114472
|
+
items: PieItem[];
|
114473
|
+
}) => vue.VNodeChild) | undefined;
|
114474
|
+
"v-slot:legend-text"?: false | ((arg: {
|
114475
|
+
item: PieItem;
|
114476
|
+
}) => vue.VNodeChild) | undefined;
|
114477
|
+
"v-slot:title"?: false | (() => vue.VNodeChild) | undefined;
|
114478
|
+
"v-slot:tooltip"?: false | ((arg: {
|
114479
|
+
item: PieItem;
|
114480
|
+
}) => vue.VNodeChild) | undefined;
|
114481
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
114482
|
+
animation: boolean | {
|
114483
|
+
duration?: number;
|
114484
|
+
easing?: keyof typeof easingPatterns;
|
114485
|
+
};
|
114486
|
+
legend: boolean | {
|
114487
|
+
position?: "left" | "top" | "right" | "bottom";
|
114488
|
+
textFormat?: TextTemplate;
|
114489
|
+
};
|
114490
|
+
size: string | number;
|
114491
|
+
tooltip: boolean | {
|
114492
|
+
titleFormat?: TextTemplate;
|
114493
|
+
subtitleFormat?: TextTemplate;
|
114494
|
+
transition?: string | boolean | TransitionProps;
|
114495
|
+
offset?: number;
|
114496
|
+
};
|
114497
|
+
items: Record<string, any> | {
|
114498
|
+
color?: string;
|
114499
|
+
pattern?: string;
|
114500
|
+
}[];
|
114501
|
+
itemValue: string;
|
114502
|
+
density: Density;
|
114503
|
+
itemTitle: string;
|
114504
|
+
itemKey: string;
|
114505
|
+
reveal: boolean | {
|
114506
|
+
duration?: number;
|
114507
|
+
};
|
114508
|
+
palette: (string | {
|
114509
|
+
color?: string;
|
114510
|
+
pattern?: string;
|
114511
|
+
})[];
|
114512
|
+
hoverScale: string | number;
|
114513
|
+
hideSlice: boolean;
|
114514
|
+
}, {}, string, vue.SlotsType<Partial<{
|
114515
|
+
center: (arg: {
|
114516
|
+
total: number;
|
114517
|
+
}) => vue.VNode[];
|
114518
|
+
legend: (arg: {
|
114519
|
+
isActive: (item: PieItem) => boolean;
|
114520
|
+
toggle: (item: PieItem) => void;
|
114521
|
+
items: PieItem[];
|
114522
|
+
}) => vue.VNode[];
|
114523
|
+
'legend-text': (arg: {
|
114524
|
+
item: PieItem;
|
114525
|
+
}) => vue.VNode[];
|
114526
|
+
title: () => vue.VNode[];
|
114527
|
+
tooltip: (arg: {
|
114528
|
+
item: PieItem;
|
114529
|
+
}) => vue.VNode[];
|
114530
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
114531
|
+
animation: {
|
114532
|
+
type: PropType<boolean | {
|
114533
|
+
duration?: number;
|
114534
|
+
easing?: keyof typeof easingPatterns;
|
114535
|
+
}>;
|
114536
|
+
default: boolean;
|
114537
|
+
};
|
114538
|
+
gap: (StringConstructor | NumberConstructor)[];
|
114539
|
+
rounded: (StringConstructor | NumberConstructor)[];
|
114540
|
+
reveal: {
|
114541
|
+
type: PropType<boolean | {
|
114542
|
+
duration?: number;
|
114543
|
+
}>;
|
114544
|
+
default: boolean;
|
114545
|
+
};
|
114546
|
+
innerCut: (StringConstructor | NumberConstructor)[];
|
114547
|
+
hoverScale: {
|
114548
|
+
type: (StringConstructor | NumberConstructor)[];
|
114549
|
+
default: number;
|
114550
|
+
};
|
114551
|
+
hideSlice: BooleanConstructor;
|
114552
|
+
density: {
|
114553
|
+
type: PropType<Density>;
|
114554
|
+
default: string;
|
114555
|
+
validator: (v: any) => boolean;
|
114556
|
+
};
|
114557
|
+
title: StringConstructor;
|
114558
|
+
bgColor: StringConstructor;
|
114559
|
+
items: {
|
114560
|
+
type: PropType<Record<string, any> | {
|
114561
|
+
color?: string;
|
114562
|
+
pattern?: string;
|
114563
|
+
}[]>;
|
114564
|
+
default: () => never[];
|
114565
|
+
};
|
114566
|
+
palette: {
|
114567
|
+
type: PropType<({
|
114568
|
+
color?: string;
|
114569
|
+
pattern?: string;
|
114570
|
+
} | string)[]>;
|
114571
|
+
default: () => never[];
|
114572
|
+
};
|
114573
|
+
itemKey: {
|
114574
|
+
type: StringConstructor;
|
114575
|
+
default: string;
|
114576
|
+
};
|
114577
|
+
itemValue: {
|
114578
|
+
type: StringConstructor;
|
114579
|
+
default: string;
|
114580
|
+
};
|
114581
|
+
itemTitle: {
|
114582
|
+
type: StringConstructor;
|
114583
|
+
default: string;
|
114584
|
+
};
|
114585
|
+
size: {
|
114586
|
+
type: (StringConstructor | NumberConstructor)[];
|
114587
|
+
default: number;
|
114588
|
+
};
|
114589
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
114590
|
+
gaugeCut: (StringConstructor | NumberConstructor)[];
|
114591
|
+
legend: {
|
114592
|
+
type: PropType<boolean | {
|
114593
|
+
position?: "left" | "top" | "right" | "bottom";
|
114594
|
+
textFormat?: TextTemplate;
|
114595
|
+
}>;
|
114596
|
+
default: boolean;
|
114597
|
+
};
|
114598
|
+
tooltip: {
|
114599
|
+
type: PropType<boolean | {
|
114600
|
+
titleFormat?: TextTemplate;
|
114601
|
+
subtitleFormat?: TextTemplate;
|
114602
|
+
transition?: string | boolean | TransitionProps;
|
114603
|
+
offset?: number;
|
114604
|
+
}>;
|
114605
|
+
default: boolean;
|
114606
|
+
};
|
114607
|
+
}, vue.ExtractPropTypes<{
|
114608
|
+
animation: {
|
114609
|
+
type: PropType<boolean | {
|
114610
|
+
duration?: number;
|
114611
|
+
easing?: keyof typeof easingPatterns;
|
114612
|
+
}>;
|
114613
|
+
default: boolean;
|
114614
|
+
};
|
114615
|
+
gap: (StringConstructor | NumberConstructor)[];
|
114616
|
+
rounded: (StringConstructor | NumberConstructor)[];
|
114617
|
+
reveal: {
|
114618
|
+
type: PropType<boolean | {
|
114619
|
+
duration?: number;
|
114620
|
+
}>;
|
114621
|
+
default: boolean;
|
114622
|
+
};
|
114623
|
+
innerCut: (StringConstructor | NumberConstructor)[];
|
114624
|
+
hoverScale: {
|
114625
|
+
type: (StringConstructor | NumberConstructor)[];
|
114626
|
+
default: number;
|
114627
|
+
};
|
114628
|
+
hideSlice: BooleanConstructor;
|
114629
|
+
density: {
|
114630
|
+
type: PropType<Density>;
|
114631
|
+
default: string;
|
114632
|
+
validator: (v: any) => boolean;
|
114633
|
+
};
|
114634
|
+
title: StringConstructor;
|
114635
|
+
bgColor: StringConstructor;
|
114636
|
+
items: {
|
114637
|
+
type: PropType<Record<string, any> | {
|
114638
|
+
color?: string;
|
114639
|
+
pattern?: string;
|
114640
|
+
}[]>;
|
114641
|
+
default: () => never[];
|
114642
|
+
};
|
114643
|
+
palette: {
|
114644
|
+
type: PropType<({
|
114645
|
+
color?: string;
|
114646
|
+
pattern?: string;
|
114647
|
+
} | string)[]>;
|
114648
|
+
default: () => never[];
|
114649
|
+
};
|
114650
|
+
itemKey: {
|
114651
|
+
type: StringConstructor;
|
114652
|
+
default: string;
|
114653
|
+
};
|
114654
|
+
itemValue: {
|
114655
|
+
type: StringConstructor;
|
114656
|
+
default: string;
|
114657
|
+
};
|
114658
|
+
itemTitle: {
|
114659
|
+
type: StringConstructor;
|
114660
|
+
default: string;
|
114661
|
+
};
|
114662
|
+
size: {
|
114663
|
+
type: (StringConstructor | NumberConstructor)[];
|
114664
|
+
default: number;
|
114665
|
+
};
|
114666
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
114667
|
+
gaugeCut: (StringConstructor | NumberConstructor)[];
|
114668
|
+
legend: {
|
114669
|
+
type: PropType<boolean | {
|
114670
|
+
position?: "left" | "top" | "right" | "bottom";
|
114671
|
+
textFormat?: TextTemplate;
|
114672
|
+
}>;
|
114673
|
+
default: boolean;
|
114674
|
+
};
|
114675
|
+
tooltip: {
|
114676
|
+
type: PropType<boolean | {
|
114677
|
+
titleFormat?: TextTemplate;
|
114678
|
+
subtitleFormat?: TextTemplate;
|
114679
|
+
transition?: string | boolean | TransitionProps;
|
114680
|
+
offset?: number;
|
114681
|
+
}>;
|
114682
|
+
default: boolean;
|
114683
|
+
};
|
114684
|
+
}>>;
|
114685
|
+
type VPie = InstanceType<typeof VPie>;
|
114686
|
+
|
114687
|
+
declare const VPieSegment: {
|
114688
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
114689
|
+
animation: boolean | {
|
114690
|
+
duration?: number;
|
114691
|
+
easing?: keyof typeof easingPatterns;
|
114692
|
+
};
|
114693
|
+
value: number;
|
114694
|
+
reveal: boolean | {
|
114695
|
+
duration?: number;
|
114696
|
+
};
|
114697
|
+
hoverScale: string | number;
|
114698
|
+
hideSlice: boolean;
|
114699
|
+
} & {
|
114700
|
+
color?: string | undefined;
|
114701
|
+
gap?: string | number | undefined;
|
114702
|
+
rotate?: string | number | undefined;
|
114703
|
+
pattern?: string | undefined;
|
114704
|
+
rounded?: string | number | undefined;
|
114705
|
+
innerCut?: string | number | undefined;
|
114706
|
+
} & {
|
114707
|
+
$children?: vue.VNodeChild | {
|
114708
|
+
$stable?: boolean;
|
114709
|
+
} | {
|
114710
|
+
default?: (() => vue.VNodeChild) | undefined;
|
114711
|
+
} | (() => vue.VNodeChild);
|
114712
|
+
'v-slots'?: {
|
114713
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
114714
|
+
} | undefined;
|
114715
|
+
} & {
|
114716
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
114717
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
114718
|
+
animation: boolean | {
|
114719
|
+
duration?: number;
|
114720
|
+
easing?: keyof typeof easingPatterns;
|
114721
|
+
};
|
114722
|
+
value: number;
|
114723
|
+
reveal: boolean | {
|
114724
|
+
duration?: number;
|
114725
|
+
};
|
114726
|
+
hoverScale: string | number;
|
114727
|
+
hideSlice: boolean;
|
114728
|
+
}, true, {}, vue.SlotsType<Partial<{
|
114729
|
+
default: () => vue.VNode[];
|
114730
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
114731
|
+
P: {};
|
114732
|
+
B: {};
|
114733
|
+
D: {};
|
114734
|
+
C: {};
|
114735
|
+
M: {};
|
114736
|
+
Defaults: {};
|
114737
|
+
}, {
|
114738
|
+
animation: boolean | {
|
114739
|
+
duration?: number;
|
114740
|
+
easing?: keyof typeof easingPatterns;
|
114741
|
+
};
|
114742
|
+
value: number;
|
114743
|
+
reveal: boolean | {
|
114744
|
+
duration?: number;
|
114745
|
+
};
|
114746
|
+
hoverScale: string | number;
|
114747
|
+
hideSlice: boolean;
|
114748
|
+
} & {
|
114749
|
+
color?: string | undefined;
|
114750
|
+
gap?: string | number | undefined;
|
114751
|
+
rotate?: string | number | undefined;
|
114752
|
+
pattern?: string | undefined;
|
114753
|
+
rounded?: string | number | undefined;
|
114754
|
+
innerCut?: string | number | undefined;
|
114755
|
+
} & {
|
114756
|
+
$children?: vue.VNodeChild | {
|
114757
|
+
$stable?: boolean;
|
114758
|
+
} | {
|
114759
|
+
default?: (() => vue.VNodeChild) | undefined;
|
114760
|
+
} | (() => vue.VNodeChild);
|
114761
|
+
'v-slots'?: {
|
114762
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
114763
|
+
} | undefined;
|
114764
|
+
} & {
|
114765
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
114766
|
+
}, () => JSX.Element, {}, {}, {}, {
|
114767
|
+
animation: boolean | {
|
114768
|
+
duration?: number;
|
114769
|
+
easing?: keyof typeof easingPatterns;
|
114770
|
+
};
|
114771
|
+
value: number;
|
114772
|
+
reveal: boolean | {
|
114773
|
+
duration?: number;
|
114774
|
+
};
|
114775
|
+
hoverScale: string | number;
|
114776
|
+
hideSlice: boolean;
|
114777
|
+
}>;
|
114778
|
+
__isFragment?: never;
|
114779
|
+
__isTeleport?: never;
|
114780
|
+
__isSuspense?: never;
|
114781
|
+
} & vue.ComponentOptionsBase<{
|
114782
|
+
animation: boolean | {
|
114783
|
+
duration?: number;
|
114784
|
+
easing?: keyof typeof easingPatterns;
|
114785
|
+
};
|
114786
|
+
value: number;
|
114787
|
+
reveal: boolean | {
|
114788
|
+
duration?: number;
|
114789
|
+
};
|
114790
|
+
hoverScale: string | number;
|
114791
|
+
hideSlice: boolean;
|
114792
|
+
} & {
|
114793
|
+
color?: string | undefined;
|
114794
|
+
gap?: string | number | undefined;
|
114795
|
+
rotate?: string | number | undefined;
|
114796
|
+
pattern?: string | undefined;
|
114797
|
+
rounded?: string | number | undefined;
|
114798
|
+
innerCut?: string | number | undefined;
|
114799
|
+
} & {
|
114800
|
+
$children?: vue.VNodeChild | {
|
114801
|
+
$stable?: boolean;
|
114802
|
+
} | {
|
114803
|
+
default?: (() => vue.VNodeChild) | undefined;
|
114804
|
+
} | (() => vue.VNodeChild);
|
114805
|
+
'v-slots'?: {
|
114806
|
+
default?: false | (() => vue.VNodeChild) | undefined;
|
114807
|
+
} | undefined;
|
114808
|
+
} & {
|
114809
|
+
"v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
|
114810
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
114811
|
+
animation: boolean | {
|
114812
|
+
duration?: number;
|
114813
|
+
easing?: keyof typeof easingPatterns;
|
114814
|
+
};
|
114815
|
+
value: number;
|
114816
|
+
reveal: boolean | {
|
114817
|
+
duration?: number;
|
114818
|
+
};
|
114819
|
+
hoverScale: string | number;
|
114820
|
+
hideSlice: boolean;
|
114821
|
+
}, {}, string, vue.SlotsType<Partial<{
|
114822
|
+
default: () => vue.VNode[];
|
114823
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
114824
|
+
reveal: {
|
114825
|
+
type: PropType<boolean | {
|
114826
|
+
duration?: number;
|
114827
|
+
}>;
|
114828
|
+
default: boolean;
|
114829
|
+
};
|
114830
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
114831
|
+
value: {
|
114832
|
+
type: NumberConstructor;
|
114833
|
+
default: number;
|
114834
|
+
};
|
114835
|
+
color: StringConstructor;
|
114836
|
+
innerCut: (StringConstructor | NumberConstructor)[];
|
114837
|
+
hoverScale: {
|
114838
|
+
type: (StringConstructor | NumberConstructor)[];
|
114839
|
+
default: number;
|
114840
|
+
};
|
114841
|
+
gap: (StringConstructor | NumberConstructor)[];
|
114842
|
+
rounded: (StringConstructor | NumberConstructor)[];
|
114843
|
+
animation: {
|
114844
|
+
type: PropType<boolean | {
|
114845
|
+
duration?: number;
|
114846
|
+
easing?: keyof typeof easingPatterns;
|
114847
|
+
}>;
|
114848
|
+
default: boolean;
|
114849
|
+
};
|
114850
|
+
pattern: StringConstructor;
|
114851
|
+
hideSlice: BooleanConstructor;
|
114852
|
+
}, vue.ExtractPropTypes<{
|
114853
|
+
reveal: {
|
114854
|
+
type: PropType<boolean | {
|
114855
|
+
duration?: number;
|
114856
|
+
}>;
|
114857
|
+
default: boolean;
|
114858
|
+
};
|
114859
|
+
rotate: (StringConstructor | NumberConstructor)[];
|
114860
|
+
value: {
|
114861
|
+
type: NumberConstructor;
|
114862
|
+
default: number;
|
114863
|
+
};
|
114864
|
+
color: StringConstructor;
|
114865
|
+
innerCut: (StringConstructor | NumberConstructor)[];
|
114866
|
+
hoverScale: {
|
114867
|
+
type: (StringConstructor | NumberConstructor)[];
|
114868
|
+
default: number;
|
114869
|
+
};
|
114870
|
+
gap: (StringConstructor | NumberConstructor)[];
|
114871
|
+
rounded: (StringConstructor | NumberConstructor)[];
|
114872
|
+
animation: {
|
114873
|
+
type: PropType<boolean | {
|
114874
|
+
duration?: number;
|
114875
|
+
easing?: keyof typeof easingPatterns;
|
114876
|
+
}>;
|
114877
|
+
default: boolean;
|
114878
|
+
};
|
114879
|
+
pattern: StringConstructor;
|
114880
|
+
hideSlice: BooleanConstructor;
|
114881
|
+
}>>;
|
114882
|
+
type VPieSegment = InstanceType<typeof VPieSegment>;
|
114883
|
+
|
114884
|
+
declare const VPieTooltip: {
|
114885
|
+
new (...args: any[]): vue.CreateComponentPublicInstanceWithMixins<{
|
114886
|
+
offset: string | number | number[] | undefined;
|
114887
|
+
item: PieItem | null;
|
114888
|
+
modelValue: boolean;
|
114889
|
+
titleFormat: TextTemplate;
|
114890
|
+
subtitleFormat: TextTemplate;
|
114891
|
+
} & {
|
114892
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
114893
|
+
component?: vue.Component;
|
114894
|
+
}) | null | undefined;
|
114895
|
+
} & {
|
114896
|
+
$children?: vue.VNodeChild | {
|
114897
|
+
$stable?: boolean;
|
114898
|
+
} | ((arg: {
|
114899
|
+
item: PieItem;
|
114900
|
+
}) => vue.VNodeChild) | {
|
114901
|
+
default?: ((arg: {
|
114902
|
+
item: PieItem;
|
114903
|
+
}) => vue.VNodeChild) | undefined;
|
114904
|
+
prepend?: ((arg: {
|
114905
|
+
item: PieItem;
|
114906
|
+
}) => vue.VNodeChild) | undefined;
|
114907
|
+
};
|
114908
|
+
'v-slots'?: {
|
114909
|
+
default?: false | ((arg: {
|
114910
|
+
item: PieItem;
|
114911
|
+
}) => vue.VNodeChild) | undefined;
|
114912
|
+
prepend?: false | ((arg: {
|
114913
|
+
item: PieItem;
|
114914
|
+
}) => vue.VNodeChild) | undefined;
|
114915
|
+
} | undefined;
|
114916
|
+
} & {
|
114917
|
+
"v-slot:default"?: false | ((arg: {
|
114918
|
+
item: PieItem;
|
114919
|
+
}) => vue.VNodeChild) | undefined;
|
114920
|
+
"v-slot:prepend"?: false | ((arg: {
|
114921
|
+
item: PieItem;
|
114922
|
+
}) => vue.VNodeChild) | undefined;
|
114923
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, {
|
114924
|
+
offset: string | number | number[] | undefined;
|
114925
|
+
item: PieItem | null;
|
114926
|
+
modelValue: boolean;
|
114927
|
+
titleFormat: TextTemplate;
|
114928
|
+
subtitleFormat: TextTemplate;
|
114929
|
+
}, true, {}, vue.SlotsType<Partial<{
|
114930
|
+
default: (arg: {
|
114931
|
+
item: PieItem;
|
114932
|
+
}) => vue.VNode[];
|
114933
|
+
prepend: (arg: {
|
114934
|
+
item: PieItem;
|
114935
|
+
}) => vue.VNode[];
|
114936
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, {}, any, vue.ComponentProvideOptions, {
|
114937
|
+
P: {};
|
114938
|
+
B: {};
|
114939
|
+
D: {};
|
114940
|
+
C: {};
|
114941
|
+
M: {};
|
114942
|
+
Defaults: {};
|
114943
|
+
}, {
|
114944
|
+
offset: string | number | number[] | undefined;
|
114945
|
+
item: PieItem | null;
|
114946
|
+
modelValue: boolean;
|
114947
|
+
titleFormat: TextTemplate;
|
114948
|
+
subtitleFormat: TextTemplate;
|
114949
|
+
} & {
|
114950
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
114951
|
+
component?: vue.Component;
|
114952
|
+
}) | null | undefined;
|
114953
|
+
} & {
|
114954
|
+
$children?: vue.VNodeChild | {
|
114955
|
+
$stable?: boolean;
|
114956
|
+
} | ((arg: {
|
114957
|
+
item: PieItem;
|
114958
|
+
}) => vue.VNodeChild) | {
|
114959
|
+
default?: ((arg: {
|
114960
|
+
item: PieItem;
|
114961
|
+
}) => vue.VNodeChild) | undefined;
|
114962
|
+
prepend?: ((arg: {
|
114963
|
+
item: PieItem;
|
114964
|
+
}) => vue.VNodeChild) | undefined;
|
114965
|
+
};
|
114966
|
+
'v-slots'?: {
|
114967
|
+
default?: false | ((arg: {
|
114968
|
+
item: PieItem;
|
114969
|
+
}) => vue.VNodeChild) | undefined;
|
114970
|
+
prepend?: false | ((arg: {
|
114971
|
+
item: PieItem;
|
114972
|
+
}) => vue.VNodeChild) | undefined;
|
114973
|
+
} | undefined;
|
114974
|
+
} & {
|
114975
|
+
"v-slot:default"?: false | ((arg: {
|
114976
|
+
item: PieItem;
|
114977
|
+
}) => vue.VNodeChild) | undefined;
|
114978
|
+
"v-slot:prepend"?: false | ((arg: {
|
114979
|
+
item: PieItem;
|
114980
|
+
}) => vue.VNodeChild) | undefined;
|
114981
|
+
}, () => JSX.Element, {}, {}, {}, {
|
114982
|
+
offset: string | number | number[] | undefined;
|
114983
|
+
item: PieItem | null;
|
114984
|
+
modelValue: boolean;
|
114985
|
+
titleFormat: TextTemplate;
|
114986
|
+
subtitleFormat: TextTemplate;
|
114987
|
+
}>;
|
114988
|
+
__isFragment?: never;
|
114989
|
+
__isTeleport?: never;
|
114990
|
+
__isSuspense?: never;
|
114991
|
+
} & vue.ComponentOptionsBase<{
|
114992
|
+
offset: string | number | number[] | undefined;
|
114993
|
+
item: PieItem | null;
|
114994
|
+
modelValue: boolean;
|
114995
|
+
titleFormat: TextTemplate;
|
114996
|
+
subtitleFormat: TextTemplate;
|
114997
|
+
} & {
|
114998
|
+
transition?: string | boolean | (vue.TransitionProps & {
|
114999
|
+
component?: vue.Component;
|
115000
|
+
}) | null | undefined;
|
115001
|
+
} & {
|
115002
|
+
$children?: vue.VNodeChild | {
|
115003
|
+
$stable?: boolean;
|
115004
|
+
} | ((arg: {
|
115005
|
+
item: PieItem;
|
115006
|
+
}) => vue.VNodeChild) | {
|
115007
|
+
default?: ((arg: {
|
115008
|
+
item: PieItem;
|
115009
|
+
}) => vue.VNodeChild) | undefined;
|
115010
|
+
prepend?: ((arg: {
|
115011
|
+
item: PieItem;
|
115012
|
+
}) => vue.VNodeChild) | undefined;
|
115013
|
+
};
|
115014
|
+
'v-slots'?: {
|
115015
|
+
default?: false | ((arg: {
|
115016
|
+
item: PieItem;
|
115017
|
+
}) => vue.VNodeChild) | undefined;
|
115018
|
+
prepend?: false | ((arg: {
|
115019
|
+
item: PieItem;
|
115020
|
+
}) => vue.VNodeChild) | undefined;
|
115021
|
+
} | undefined;
|
115022
|
+
} & {
|
115023
|
+
"v-slot:default"?: false | ((arg: {
|
115024
|
+
item: PieItem;
|
115025
|
+
}) => vue.VNodeChild) | undefined;
|
115026
|
+
"v-slot:prepend"?: false | ((arg: {
|
115027
|
+
item: PieItem;
|
115028
|
+
}) => vue.VNodeChild) | undefined;
|
115029
|
+
}, () => JSX.Element, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Record<string, any>, string, {
|
115030
|
+
offset: string | number | number[] | undefined;
|
115031
|
+
item: PieItem | null;
|
115032
|
+
modelValue: boolean;
|
115033
|
+
titleFormat: TextTemplate;
|
115034
|
+
subtitleFormat: TextTemplate;
|
115035
|
+
}, {}, string, vue.SlotsType<Partial<{
|
115036
|
+
default: (arg: {
|
115037
|
+
item: PieItem;
|
115038
|
+
}) => vue.VNode[];
|
115039
|
+
prepend: (arg: {
|
115040
|
+
item: PieItem;
|
115041
|
+
}) => vue.VNode[];
|
115042
|
+
}>>, vue.GlobalComponents, vue.GlobalDirectives, string, vue.ComponentProvideOptions> & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & FilterPropsOptions<{
|
115043
|
+
offset: {
|
115044
|
+
type: PropType<string | number | number[] | undefined>;
|
115045
|
+
default: NonNullable<string | number | number[] | undefined>;
|
115046
|
+
};
|
115047
|
+
transition: vue.Prop<null | string | boolean | (vue.TransitionProps & {
|
115048
|
+
component?: vue.Component;
|
115049
|
+
})>;
|
115050
|
+
modelValue: BooleanConstructor;
|
115051
|
+
item: {
|
115052
|
+
type: PropType<PieItem | null>;
|
115053
|
+
default: null;
|
115054
|
+
};
|
115055
|
+
titleFormat: {
|
115056
|
+
type: PropType<TextTemplate>;
|
115057
|
+
default: string;
|
115058
|
+
};
|
115059
|
+
subtitleFormat: {
|
115060
|
+
type: PropType<TextTemplate>;
|
115061
|
+
default: string;
|
115062
|
+
};
|
115063
|
+
}, vue.ExtractPropTypes<{
|
115064
|
+
offset: {
|
115065
|
+
type: PropType<string | number | number[] | undefined>;
|
115066
|
+
default: NonNullable<string | number | number[] | undefined>;
|
115067
|
+
};
|
115068
|
+
transition: vue.Prop<null | string | boolean | (vue.TransitionProps & {
|
115069
|
+
component?: vue.Component;
|
115070
|
+
})>;
|
115071
|
+
modelValue: BooleanConstructor;
|
115072
|
+
item: {
|
115073
|
+
type: PropType<PieItem | null>;
|
115074
|
+
default: null;
|
115075
|
+
};
|
115076
|
+
titleFormat: {
|
115077
|
+
type: PropType<TextTemplate>;
|
115078
|
+
default: string;
|
115079
|
+
};
|
115080
|
+
subtitleFormat: {
|
115081
|
+
type: PropType<TextTemplate>;
|
115082
|
+
default: string;
|
115083
|
+
};
|
115084
|
+
}>>;
|
115085
|
+
type VPieTooltip = InstanceType<typeof VPieTooltip>;
|
115086
|
+
|
114078
115087
|
type StepperVerticalItemActionSlot<T = any> = StepperItemSlot<T> & {
|
114079
115088
|
next: () => void;
|
114080
115089
|
prev: () => void;
|
@@ -121419,6 +122428,9 @@ declare const allComponents_d_VPagination: typeof VPagination;
|
|
121419
122428
|
declare const allComponents_d_VParallax: typeof VParallax;
|
121420
122429
|
declare const allComponents_d_VPicker: typeof VPicker;
|
121421
122430
|
declare const allComponents_d_VPickerTitle: typeof VPickerTitle;
|
122431
|
+
declare const allComponents_d_VPie: typeof VPie;
|
122432
|
+
declare const allComponents_d_VPieSegment: typeof VPieSegment;
|
122433
|
+
declare const allComponents_d_VPieTooltip: typeof VPieTooltip;
|
121422
122434
|
declare const allComponents_d_VProgressCircular: typeof VProgressCircular;
|
121423
122435
|
declare const allComponents_d_VProgressLinear: typeof VProgressLinear;
|
121424
122436
|
declare const allComponents_d_VPullToRefresh: typeof VPullToRefresh;
|
@@ -121490,7 +122502,7 @@ declare const allComponents_d_VVirtualScroll: typeof VVirtualScroll;
|
|
121490
122502
|
declare const allComponents_d_VWindow: typeof VWindow;
|
121491
122503
|
declare const allComponents_d_VWindowItem: typeof VWindowItem;
|
121492
122504
|
declare namespace allComponents_d {
|
121493
|
-
export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCalendarDay as VCalendarDay, allComponents_d_VCalendarHeader as VCalendarHeader, allComponents_d_VCalendarInterval as VCalendarInterval, allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, allComponents_d_VCalendarMonthDay as VCalendarMonthDay, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorInput as VColorInput, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHotkey as VHotkey, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VIconBtn as VIconBtn, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMaskInput as VMaskInput, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVideo as VVideo, allComponents_d_VVideoControls as VVideoControls, allComponents_d_VVideoVolume as VVideoVolume, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
|
122505
|
+
export type { allComponents_d_VAlert as VAlert, allComponents_d_VAlertTitle as VAlertTitle, allComponents_d_VApp as VApp, allComponents_d_VAppBar as VAppBar, allComponents_d_VAppBarNavIcon as VAppBarNavIcon, allComponents_d_VAppBarTitle as VAppBarTitle, allComponents_d_VAutocomplete as VAutocomplete, allComponents_d_VAvatar as VAvatar, allComponents_d_VBadge as VBadge, allComponents_d_VBanner as VBanner, allComponents_d_VBannerActions as VBannerActions, allComponents_d_VBannerText as VBannerText, allComponents_d_VBottomNavigation as VBottomNavigation, allComponents_d_VBottomSheet as VBottomSheet, allComponents_d_VBreadcrumbs as VBreadcrumbs, allComponents_d_VBreadcrumbsDivider as VBreadcrumbsDivider, allComponents_d_VBreadcrumbsItem as VBreadcrumbsItem, allComponents_d_VBtn as VBtn, allComponents_d_VBtnGroup as VBtnGroup, allComponents_d_VBtnToggle as VBtnToggle, allComponents_d_VCalendar as VCalendar, allComponents_d_VCalendarDay as VCalendarDay, allComponents_d_VCalendarHeader as VCalendarHeader, allComponents_d_VCalendarInterval as VCalendarInterval, allComponents_d_VCalendarIntervalEvent as VCalendarIntervalEvent, allComponents_d_VCalendarMonthDay as VCalendarMonthDay, allComponents_d_VCard as VCard, allComponents_d_VCardActions as VCardActions, allComponents_d_VCardItem as VCardItem, allComponents_d_VCardSubtitle as VCardSubtitle, allComponents_d_VCardText as VCardText, allComponents_d_VCardTitle as VCardTitle, allComponents_d_VCarousel as VCarousel, allComponents_d_VCarouselItem as VCarouselItem, allComponents_d_VCheckbox as VCheckbox, allComponents_d_VCheckboxBtn as VCheckboxBtn, allComponents_d_VChip as VChip, allComponents_d_VChipGroup as VChipGroup, allComponents_d_VClassIcon as VClassIcon, allComponents_d_VCode as VCode, allComponents_d_VCol as VCol, allComponents_d_VColorInput as VColorInput, allComponents_d_VColorPicker as VColorPicker, allComponents_d_VCombobox as VCombobox, allComponents_d_VComponentIcon as VComponentIcon, allComponents_d_VConfirmEdit as VConfirmEdit, allComponents_d_VContainer as VContainer, allComponents_d_VCounter as VCounter, allComponents_d_VDataIterator as VDataIterator, allComponents_d_VDataTable as VDataTable, allComponents_d_VDataTableFooter as VDataTableFooter, allComponents_d_VDataTableHeaders as VDataTableHeaders, allComponents_d_VDataTableRow as VDataTableRow, allComponents_d_VDataTableRows as VDataTableRows, allComponents_d_VDataTableServer as VDataTableServer, allComponents_d_VDataTableVirtual as VDataTableVirtual, allComponents_d_VDateInput as VDateInput, allComponents_d_VDatePicker as VDatePicker, allComponents_d_VDatePickerControls as VDatePickerControls, allComponents_d_VDatePickerHeader as VDatePickerHeader, allComponents_d_VDatePickerMonth as VDatePickerMonth, allComponents_d_VDatePickerMonths as VDatePickerMonths, allComponents_d_VDatePickerYears as VDatePickerYears, allComponents_d_VDefaultsProvider as VDefaultsProvider, allComponents_d_VDialog as VDialog, allComponents_d_VDialogBottomTransition as VDialogBottomTransition, allComponents_d_VDialogTopTransition as VDialogTopTransition, allComponents_d_VDialogTransition as VDialogTransition, allComponents_d_VDivider as VDivider, allComponents_d_VEmptyState as VEmptyState, allComponents_d_VExpandTransition as VExpandTransition, allComponents_d_VExpandXTransition as VExpandXTransition, allComponents_d_VExpansionPanel as VExpansionPanel, allComponents_d_VExpansionPanelText as VExpansionPanelText, allComponents_d_VExpansionPanelTitle as VExpansionPanelTitle, allComponents_d_VExpansionPanels as VExpansionPanels, allComponents_d_VFab as VFab, allComponents_d_VFabTransition as VFabTransition, allComponents_d_VFadeTransition as VFadeTransition, allComponents_d_VField as VField, allComponents_d_VFieldLabel as VFieldLabel, allComponents_d_VFileInput as VFileInput, allComponents_d_VFileUpload as VFileUpload, allComponents_d_VFileUploadItem as VFileUploadItem, allComponents_d_VFooter as VFooter, allComponents_d_VForm as VForm, allComponents_d_VHotkey as VHotkey, allComponents_d_VHover as VHover, allComponents_d_VIcon as VIcon, allComponents_d_VIconBtn as VIconBtn, allComponents_d_VImg as VImg, allComponents_d_VInfiniteScroll as VInfiniteScroll, allComponents_d_VInput as VInput, allComponents_d_VItem as VItem, allComponents_d_VItemGroup as VItemGroup, allComponents_d_VKbd as VKbd, allComponents_d_VLabel as VLabel, allComponents_d_VLayout as VLayout, allComponents_d_VLayoutItem as VLayoutItem, allComponents_d_VLazy as VLazy, allComponents_d_VLigatureIcon as VLigatureIcon, allComponents_d_VList as VList, allComponents_d_VListGroup as VListGroup, allComponents_d_VListImg as VListImg, allComponents_d_VListItem as VListItem, allComponents_d_VListItemAction as VListItemAction, allComponents_d_VListItemMedia as VListItemMedia, allComponents_d_VListItemSubtitle as VListItemSubtitle, allComponents_d_VListItemTitle as VListItemTitle, allComponents_d_VListSubheader as VListSubheader, allComponents_d_VLocaleProvider as VLocaleProvider, allComponents_d_VMain as VMain, allComponents_d_VMaskInput as VMaskInput, allComponents_d_VMenu as VMenu, allComponents_d_VMessages as VMessages, allComponents_d_VNavigationDrawer as VNavigationDrawer, allComponents_d_VNoSsr as VNoSsr, allComponents_d_VNumberInput as VNumberInput, allComponents_d_VOtpInput as VOtpInput, allComponents_d_VOverlay as VOverlay, allComponents_d_VPagination as VPagination, allComponents_d_VParallax as VParallax, allComponents_d_VPicker as VPicker, allComponents_d_VPickerTitle as VPickerTitle, allComponents_d_VPie as VPie, allComponents_d_VPieSegment as VPieSegment, allComponents_d_VPieTooltip as VPieTooltip, allComponents_d_VProgressCircular as VProgressCircular, allComponents_d_VProgressLinear as VProgressLinear, allComponents_d_VPullToRefresh as VPullToRefresh, allComponents_d_VRadio as VRadio, allComponents_d_VRadioGroup as VRadioGroup, allComponents_d_VRangeSlider as VRangeSlider, allComponents_d_VRating as VRating, allComponents_d_VResponsive as VResponsive, allComponents_d_VRow as VRow, allComponents_d_VScaleTransition as VScaleTransition, allComponents_d_VScrollXReverseTransition as VScrollXReverseTransition, allComponents_d_VScrollXTransition as VScrollXTransition, allComponents_d_VScrollYReverseTransition as VScrollYReverseTransition, allComponents_d_VScrollYTransition as VScrollYTransition, allComponents_d_VSelect as VSelect, allComponents_d_VSelectionControl as VSelectionControl, allComponents_d_VSelectionControlGroup as VSelectionControlGroup, allComponents_d_VSheet as VSheet, allComponents_d_VSkeletonLoader as VSkeletonLoader, allComponents_d_VSlideGroup as VSlideGroup, allComponents_d_VSlideGroupItem as VSlideGroupItem, allComponents_d_VSlideXReverseTransition as VSlideXReverseTransition, allComponents_d_VSlideXTransition as VSlideXTransition, allComponents_d_VSlideYReverseTransition as VSlideYReverseTransition, allComponents_d_VSlideYTransition as VSlideYTransition, allComponents_d_VSlider as VSlider, allComponents_d_VSnackbar as VSnackbar, allComponents_d_VSnackbarQueue as VSnackbarQueue, allComponents_d_VSpacer as VSpacer, allComponents_d_VSparkline as VSparkline, allComponents_d_VSpeedDial as VSpeedDial, allComponents_d_VStepper as VStepper, allComponents_d_VStepperActions as VStepperActions, allComponents_d_VStepperHeader as VStepperHeader, allComponents_d_VStepperItem as VStepperItem, allComponents_d_VStepperVertical as VStepperVertical, allComponents_d_VStepperVerticalActions as VStepperVerticalActions, allComponents_d_VStepperVerticalItem as VStepperVerticalItem, allComponents_d_VStepperWindow as VStepperWindow, allComponents_d_VStepperWindowItem as VStepperWindowItem, allComponents_d_VSvgIcon as VSvgIcon, allComponents_d_VSwitch as VSwitch, allComponents_d_VSystemBar as VSystemBar, allComponents_d_VTab as VTab, allComponents_d_VTable as VTable, allComponents_d_VTabs as VTabs, allComponents_d_VTabsWindow as VTabsWindow, allComponents_d_VTabsWindowItem as VTabsWindowItem, allComponents_d_VTextField as VTextField, allComponents_d_VTextarea as VTextarea, allComponents_d_VThemeProvider as VThemeProvider, allComponents_d_VTimePicker as VTimePicker, allComponents_d_VTimePickerClock as VTimePickerClock, allComponents_d_VTimePickerControls as VTimePickerControls, allComponents_d_VTimeline as VTimeline, allComponents_d_VTimelineItem as VTimelineItem, allComponents_d_VToolbar as VToolbar, allComponents_d_VToolbarItems as VToolbarItems, allComponents_d_VToolbarTitle as VToolbarTitle, allComponents_d_VTooltip as VTooltip, allComponents_d_VTreeview as VTreeview, allComponents_d_VTreeviewGroup as VTreeviewGroup, allComponents_d_VTreeviewItem as VTreeviewItem, allComponents_d_VValidation as VValidation, allComponents_d_VVideo as VVideo, allComponents_d_VVideoControls as VVideoControls, allComponents_d_VVideoVolume as VVideoVolume, allComponents_d_VVirtualScroll as VVirtualScroll, allComponents_d_VWindow as VWindow, allComponents_d_VWindowItem as VWindowItem };
|
121494
122506
|
}
|
121495
122507
|
|
121496
122508
|
declare const md1: Blueprint;
|
@@ -121753,47 +122765,42 @@ declare module 'vue' {
|
|
121753
122765
|
$children?: VNodeChild
|
121754
122766
|
}
|
121755
122767
|
export interface GlobalComponents {
|
121756
|
-
VApp: VApp
|
121757
122768
|
VAppBar: VAppBar
|
121758
122769
|
VAppBarNavIcon: VAppBarNavIcon
|
121759
122770
|
VAppBarTitle: VAppBarTitle
|
121760
|
-
|
121761
|
-
VBadge: VBadge
|
122771
|
+
VApp: VApp
|
121762
122772
|
VAlert: VAlert
|
121763
122773
|
VAlertTitle: VAlertTitle
|
122774
|
+
VAutocomplete: VAutocomplete
|
121764
122775
|
VBanner: VBanner
|
121765
122776
|
VBannerActions: VBannerActions
|
121766
122777
|
VBannerText: VBannerText
|
122778
|
+
VBadge: VBadge
|
121767
122779
|
VAvatar: VAvatar
|
121768
|
-
VBottomNavigation: VBottomNavigation
|
121769
122780
|
VBreadcrumbs: VBreadcrumbs
|
121770
122781
|
VBreadcrumbsItem: VBreadcrumbsItem
|
121771
122782
|
VBreadcrumbsDivider: VBreadcrumbsDivider
|
122783
|
+
VBtn: VBtn
|
122784
|
+
VBottomSheet: VBottomSheet
|
122785
|
+
VBtnToggle: VBtnToggle
|
122786
|
+
VBtnGroup: VBtnGroup
|
121772
122787
|
VCard: VCard
|
121773
122788
|
VCardActions: VCardActions
|
121774
122789
|
VCardItem: VCardItem
|
121775
122790
|
VCardSubtitle: VCardSubtitle
|
121776
122791
|
VCardText: VCardText
|
121777
122792
|
VCardTitle: VCardTitle
|
121778
|
-
|
121779
|
-
|
121780
|
-
|
121781
|
-
|
121782
|
-
VBtn: VBtn
|
121783
|
-
VBtnToggle: VBtnToggle
|
121784
|
-
VColorPicker: VColorPicker
|
121785
|
-
VChip: VChip
|
122793
|
+
VCheckbox: VCheckbox
|
122794
|
+
VCheckboxBtn: VCheckboxBtn
|
122795
|
+
VBottomNavigation: VBottomNavigation
|
122796
|
+
VCode: VCode
|
121786
122797
|
VChipGroup: VChipGroup
|
121787
|
-
|
122798
|
+
VChip: VChip
|
122799
|
+
VColorPicker: VColorPicker
|
121788
122800
|
VCombobox: VCombobox
|
121789
|
-
|
121790
|
-
|
121791
|
-
|
121792
|
-
VDatePickerHeader: VDatePickerHeader
|
121793
|
-
VDatePickerMonth: VDatePickerMonth
|
121794
|
-
VDatePickerMonths: VDatePickerMonths
|
121795
|
-
VDatePickerYears: VDatePickerYears
|
121796
|
-
VCode: VCode
|
122801
|
+
VCounter: VCounter
|
122802
|
+
VCarousel: VCarousel
|
122803
|
+
VCarouselItem: VCarouselItem
|
121797
122804
|
VDataTable: VDataTable
|
121798
122805
|
VDataTableHeaders: VDataTableHeaders
|
121799
122806
|
VDataTableFooter: VDataTableFooter
|
@@ -121801,31 +122808,36 @@ declare module 'vue' {
|
|
121801
122808
|
VDataTableRow: VDataTableRow
|
121802
122809
|
VDataTableVirtual: VDataTableVirtual
|
121803
122810
|
VDataTableServer: VDataTableServer
|
122811
|
+
VDialog: VDialog
|
121804
122812
|
VDivider: VDivider
|
121805
122813
|
VEmptyState: VEmptyState
|
121806
|
-
|
121807
|
-
|
122814
|
+
VDatePicker: VDatePicker
|
122815
|
+
VDatePickerControls: VDatePickerControls
|
122816
|
+
VDatePickerHeader: VDatePickerHeader
|
122817
|
+
VDatePickerMonth: VDatePickerMonth
|
122818
|
+
VDatePickerMonths: VDatePickerMonths
|
122819
|
+
VDatePickerYears: VDatePickerYears
|
121808
122820
|
VExpansionPanels: VExpansionPanels
|
121809
122821
|
VExpansionPanel: VExpansionPanel
|
121810
122822
|
VExpansionPanelText: VExpansionPanelText
|
121811
122823
|
VExpansionPanelTitle: VExpansionPanelTitle
|
122824
|
+
VFileInput: VFileInput
|
121812
122825
|
VField: VField
|
121813
122826
|
VFieldLabel: VFieldLabel
|
121814
|
-
VFab: VFab
|
121815
|
-
VFileInput: VFileInput
|
121816
122827
|
VFooter: VFooter
|
122828
|
+
VFab: VFab
|
122829
|
+
VInput: VInput
|
121817
122830
|
VIcon: VIcon
|
121818
122831
|
VComponentIcon: VComponentIcon
|
121819
122832
|
VSvgIcon: VSvgIcon
|
121820
122833
|
VLigatureIcon: VLigatureIcon
|
121821
122834
|
VClassIcon: VClassIcon
|
121822
|
-
VImg: VImg
|
121823
|
-
VInput: VInput
|
121824
122835
|
VInfiniteScroll: VInfiniteScroll
|
121825
|
-
|
122836
|
+
VImg: VImg
|
121826
122837
|
VItemGroup: VItemGroup
|
121827
122838
|
VItem: VItem
|
121828
122839
|
VLabel: VLabel
|
122840
|
+
VKbd: VKbd
|
121829
122841
|
VList: VList
|
121830
122842
|
VListGroup: VListGroup
|
121831
122843
|
VListImg: VListImg
|
@@ -121835,26 +122847,28 @@ declare module 'vue' {
|
|
121835
122847
|
VListItemSubtitle: VListItemSubtitle
|
121836
122848
|
VListItemTitle: VListItemTitle
|
121837
122849
|
VListSubheader: VListSubheader
|
121838
|
-
VMenu: VMenu
|
121839
122850
|
VMain: VMain
|
121840
122851
|
VMessages: VMessages
|
122852
|
+
VMenu: VMenu
|
121841
122853
|
VNavigationDrawer: VNavigationDrawer
|
121842
|
-
VOtpInput: VOtpInput
|
121843
|
-
VNumberInput: VNumberInput
|
121844
122854
|
VOverlay: VOverlay
|
122855
|
+
VPagination: VPagination
|
122856
|
+
VNumberInput: VNumberInput
|
122857
|
+
VRadioGroup: VRadioGroup
|
121845
122858
|
VProgressCircular: VProgressCircular
|
121846
|
-
|
121847
|
-
VRating: VRating
|
122859
|
+
VSelectionControl: VSelectionControl
|
121848
122860
|
VSelect: VSelect
|
122861
|
+
VRating: VRating
|
122862
|
+
VSlider: VSlider
|
121849
122863
|
VSelectionControlGroup: VSelectionControlGroup
|
121850
122864
|
VSheet: VSheet
|
121851
|
-
VSelectionControl: VSelectionControl
|
121852
122865
|
VSkeletonLoader: VSkeletonLoader
|
121853
|
-
VRadioGroup: VRadioGroup
|
121854
|
-
VPagination: VPagination
|
121855
|
-
VSlider: VSlider
|
121856
122866
|
VSlideGroup: VSlideGroup
|
121857
122867
|
VSlideGroupItem: VSlideGroupItem
|
122868
|
+
VProgressLinear: VProgressLinear
|
122869
|
+
VOtpInput: VOtpInput
|
122870
|
+
VSnackbar: VSnackbar
|
122871
|
+
VSwitch: VSwitch
|
121858
122872
|
VStepper: VStepper
|
121859
122873
|
VStepperActions: VStepperActions
|
121860
122874
|
VStepperHeader: VStepperHeader
|
@@ -121862,51 +122876,47 @@ declare module 'vue' {
|
|
121862
122876
|
VStepperWindow: VStepperWindow
|
121863
122877
|
VStepperWindowItem: VStepperWindowItem
|
121864
122878
|
VSystemBar: VSystemBar
|
121865
|
-
VSwitch: VSwitch
|
121866
|
-
VSnackbar: VSnackbar
|
121867
122879
|
VTable: VTable
|
121868
|
-
VTimeline: VTimeline
|
121869
|
-
VTimelineItem: VTimelineItem
|
121870
122880
|
VTextarea: VTextarea
|
122881
|
+
VTextField: VTextField
|
121871
122882
|
VTab: VTab
|
121872
122883
|
VTabs: VTabs
|
121873
122884
|
VTabsWindow: VTabsWindow
|
121874
122885
|
VTabsWindowItem: VTabsWindowItem
|
121875
|
-
|
121876
|
-
|
121877
|
-
VToolbarItems: VToolbarItems
|
121878
|
-
VTooltip: VTooltip
|
122886
|
+
VTimeline: VTimeline
|
122887
|
+
VTimelineItem: VTimelineItem
|
121879
122888
|
VTimePicker: VTimePicker
|
121880
122889
|
VTimePickerClock: VTimePickerClock
|
121881
122890
|
VTimePickerControls: VTimePickerControls
|
122891
|
+
VToolbar: VToolbar
|
122892
|
+
VToolbarTitle: VToolbarTitle
|
122893
|
+
VToolbarItems: VToolbarItems
|
121882
122894
|
VTreeview: VTreeview
|
121883
122895
|
VTreeviewItem: VTreeviewItem
|
121884
122896
|
VTreeviewGroup: VTreeviewGroup
|
121885
|
-
|
121886
|
-
|
122897
|
+
VTooltip: VTooltip
|
122898
|
+
VConfirmEdit: VConfirmEdit
|
121887
122899
|
VDataIterator: VDataIterator
|
121888
122900
|
VDefaultsProvider: VDefaultsProvider
|
121889
122901
|
VForm: VForm
|
122902
|
+
VHover: VHover
|
121890
122903
|
VContainer: VContainer
|
121891
122904
|
VCol: VCol
|
121892
122905
|
VRow: VRow
|
121893
122906
|
VSpacer: VSpacer
|
121894
|
-
VHover: VHover
|
121895
122907
|
VLazy: VLazy
|
121896
|
-
VLayout: VLayout
|
121897
|
-
VLayoutItem: VLayoutItem
|
121898
|
-
VNoSsr: VNoSsr
|
121899
122908
|
VLocaleProvider: VLocaleProvider
|
122909
|
+
VNoSsr: VNoSsr
|
121900
122910
|
VParallax: VParallax
|
121901
122911
|
VRadio: VRadio
|
121902
122912
|
VRangeSlider: VRangeSlider
|
122913
|
+
VResponsive: VResponsive
|
121903
122914
|
VSnackbarQueue: VSnackbarQueue
|
121904
122915
|
VSparkline: VSparkline
|
121905
122916
|
VSpeedDial: VSpeedDial
|
121906
122917
|
VThemeProvider: VThemeProvider
|
121907
|
-
VResponsive: VResponsive
|
121908
|
-
VVirtualScroll: VVirtualScroll
|
121909
122918
|
VValidation: VValidation
|
122919
|
+
VVirtualScroll: VVirtualScroll
|
121910
122920
|
VFabTransition: VFabTransition
|
121911
122921
|
VDialogBottomTransition: VDialogBottomTransition
|
121912
122922
|
VDialogTopTransition: VDialogTopTransition
|
@@ -121923,24 +122933,29 @@ declare module 'vue' {
|
|
121923
122933
|
VExpandTransition: VExpandTransition
|
121924
122934
|
VExpandXTransition: VExpandXTransition
|
121925
122935
|
VDialogTransition: VDialogTransition
|
121926
|
-
|
121927
|
-
|
121928
|
-
|
121929
|
-
|
122936
|
+
VWindow: VWindow
|
122937
|
+
VWindowItem: VWindowItem
|
122938
|
+
VLayout: VLayout
|
122939
|
+
VLayoutItem: VLayoutItem
|
121930
122940
|
VCalendar: VCalendar
|
121931
122941
|
VCalendarDay: VCalendarDay
|
121932
122942
|
VCalendarHeader: VCalendarHeader
|
121933
122943
|
VCalendarInterval: VCalendarInterval
|
121934
122944
|
VCalendarIntervalEvent: VCalendarIntervalEvent
|
121935
122945
|
VCalendarMonthDay: VCalendarMonthDay
|
121936
|
-
VColorInput: VColorInput
|
121937
|
-
VIconBtn: VIconBtn
|
121938
122946
|
VPicker: VPicker
|
121939
122947
|
VPickerTitle: VPickerTitle
|
121940
|
-
|
122948
|
+
VFileUpload: VFileUpload
|
122949
|
+
VFileUploadItem: VFileUploadItem
|
122950
|
+
VIconBtn: VIconBtn
|
121941
122951
|
VStepperVertical: VStepperVertical
|
121942
122952
|
VStepperVerticalItem: VStepperVerticalItem
|
121943
122953
|
VStepperVerticalActions: VStepperVerticalActions
|
122954
|
+
VPie: VPie
|
122955
|
+
VPieSegment: VPieSegment
|
122956
|
+
VPieTooltip: VPieTooltip
|
122957
|
+
VHotkey: VHotkey
|
122958
|
+
VColorInput: VColorInput
|
121944
122959
|
VVideo: VVideo
|
121945
122960
|
VVideoControls: VVideoControls
|
121946
122961
|
VVideoVolume: VVideoVolume
|