@vuetify/nightly 3.6.11-master.2024-07-06 → 3.6.11-master.2024-07-08
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -2
- package/dist/json/attributes.json +1 -25
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +108 -108
- package/dist/json/tags.json +0 -6
- package/dist/json/web-types.json +2 -56
- package/dist/vuetify-labs.css +1773 -1773
- package/dist/vuetify-labs.d.ts +48 -84
- package/dist/vuetify-labs.esm.js +6 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3449 -3449
- package/dist/vuetify.d.ts +87 -105
- package/dist/vuetify.esm.js +6 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +6 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +6 -2
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +48 -66
- package/lib/components/index.d.mts +48 -66
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +39 -39
- package/lib/labs/VStepperVertical/index.d.mts +0 -18
- package/lib/labs/components.d.mts +0 -18
- package/package.json +1 -1
@@ -5,17 +5,21 @@ import "./VExpansionPanel.css";
|
|
5
5
|
// Components
|
6
6
|
import { VExpansionPanelSymbol } from "./shared.mjs";
|
7
7
|
import { makeVExpansionPanelProps } from "./VExpansionPanel.mjs"; // Composables
|
8
|
+
import { makeComponentProps } from "../../composables/component.mjs";
|
8
9
|
import { provideDefaults } from "../../composables/defaults.mjs";
|
9
10
|
import { makeGroupProps, useGroup } from "../../composables/group.mjs";
|
11
|
+
import { makeTagProps } from "../../composables/tag.mjs";
|
10
12
|
import { makeThemeProps, provideTheme } from "../../composables/theme.mjs"; // Utilities
|
11
13
|
import { computed, toRef } from 'vue';
|
12
|
-
import { genericComponent, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
14
|
+
import { genericComponent, pick, propsFactory, useRender } from "../../util/index.mjs"; // Types
|
13
15
|
const allowedVariants = ['default', 'accordion', 'inset', 'popout'];
|
14
16
|
export const makeVExpansionPanelsProps = propsFactory({
|
15
17
|
flat: Boolean,
|
16
18
|
...makeGroupProps(),
|
17
|
-
...makeVExpansionPanelProps(),
|
19
|
+
...pick(makeVExpansionPanelProps(), ['bgColor', 'collapseIcon', 'color', 'eager', 'elevation', 'expandIcon', 'focusable', 'hideActions', 'readonly', 'ripple', 'rounded', 'tile', 'static']),
|
18
20
|
...makeThemeProps(),
|
21
|
+
...makeComponentProps(),
|
22
|
+
...makeTagProps(),
|
19
23
|
variant: {
|
20
24
|
type: String,
|
21
25
|
default: 'default',
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VExpansionPanels.mjs","names":["VExpansionPanelSymbol","makeVExpansionPanelProps","provideDefaults","makeGroupProps","useGroup","makeThemeProps","provideTheme","computed","toRef","genericComponent","propsFactory","useRender","allowedVariants","makeVExpansionPanelsProps","flat","Boolean","variant","type","String","default","validator","v","includes","VExpansionPanels","name","props","emits","val","setup","_ref","slots","next","prev","themeClasses","variantClass","VExpansionPanel","bgColor","collapseIcon","color","eager","elevation","expandIcon","focusable","hideActions","readonly","ripple","rounded","static","_createVNode","tag","tile","value","class","style"],"sources":["../../../src/components/VExpansionPanel/VExpansionPanels.tsx"],"sourcesContent":["// Styles\nimport './VExpansionPanel.sass'\n\n// Components\nimport { VExpansionPanelSymbol } from './shared'\nimport { makeVExpansionPanelProps } from './VExpansionPanel'\n\n// Composables\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeGroupProps, useGroup } from '@/composables/group'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { computed, toRef } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\n\nconst allowedVariants = ['default', 'accordion', 'inset', 'popout'] as const\n\ntype Variant = typeof allowedVariants[number]\n\nexport type VExpansionPanelSlot = {\n prev: () => void\n next: () => void\n}\n\nexport type VExpansionPanelSlots = {\n default: VExpansionPanelSlot\n}\n\nexport const makeVExpansionPanelsProps = propsFactory({\n flat: Boolean,\n\n ...makeGroupProps(),\n ...makeVExpansionPanelProps(),\n ...makeThemeProps(),\n\n variant: {\n type: String as PropType<Variant>,\n default: 'default',\n validator: (v: any) => allowedVariants.includes(v),\n },\n}, 'VExpansionPanels')\n\nexport const VExpansionPanels = genericComponent<VExpansionPanelSlots>()({\n name: 'VExpansionPanels',\n\n props: makeVExpansionPanelsProps(),\n\n emits: {\n 'update:modelValue': (val: unknown) => true,\n },\n\n setup (props, { slots }) {\n const { next, prev } = useGroup(props, VExpansionPanelSymbol)\n\n const { themeClasses } = provideTheme(props)\n\n const variantClass = computed(() => props.variant && `v-expansion-panels--variant-${props.variant}`)\n\n provideDefaults({\n VExpansionPanel: {\n bgColor: toRef(props, 'bgColor'),\n collapseIcon: toRef(props, 'collapseIcon'),\n color: toRef(props, 'color'),\n eager: toRef(props, 'eager'),\n elevation: toRef(props, 'elevation'),\n expandIcon: toRef(props, 'expandIcon'),\n focusable: toRef(props, 'focusable'),\n hideActions: toRef(props, 'hideActions'),\n readonly: toRef(props, 'readonly'),\n ripple: toRef(props, 'ripple'),\n rounded: toRef(props, 'rounded'),\n static: toRef(props, 'static'),\n },\n })\n\n useRender(() => (\n <props.tag\n class={[\n 'v-expansion-panels',\n {\n 'v-expansion-panels--flat': props.flat,\n 'v-expansion-panels--tile': props.tile,\n },\n themeClasses.value,\n variantClass.value,\n props.class,\n ]}\n style={ props.style }\n >\n { slots.default?.({ prev, next }) }\n </props.tag>\n ))\n\n return {\n next,\n prev,\n }\n },\n})\n\nexport type VExpansionPanels = InstanceType<typeof VExpansionPanels>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,qBAAqB;AAAA,SACrBC,wBAAwB,iCAEjC;AAAA,SACSC,eAAe;AAAA,SACfC,cAAc,EAAEC,QAAQ;AAAA,SACxBC,cAAc,EAAEC,YAAY,uCAErC;AACA,SAASC,QAAQ,EAAEC,KAAK,QAAQ,KAAK;AAAA,SAC5BC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS,
|
1
|
+
{"version":3,"file":"VExpansionPanels.mjs","names":["VExpansionPanelSymbol","makeVExpansionPanelProps","makeComponentProps","provideDefaults","makeGroupProps","useGroup","makeTagProps","makeThemeProps","provideTheme","computed","toRef","genericComponent","pick","propsFactory","useRender","allowedVariants","makeVExpansionPanelsProps","flat","Boolean","variant","type","String","default","validator","v","includes","VExpansionPanels","name","props","emits","val","setup","_ref","slots","next","prev","themeClasses","variantClass","VExpansionPanel","bgColor","collapseIcon","color","eager","elevation","expandIcon","focusable","hideActions","readonly","ripple","rounded","static","_createVNode","tag","tile","value","class","style"],"sources":["../../../src/components/VExpansionPanel/VExpansionPanels.tsx"],"sourcesContent":["// Styles\nimport './VExpansionPanel.sass'\n\n// Components\nimport { VExpansionPanelSymbol } from './shared'\nimport { makeVExpansionPanelProps } from './VExpansionPanel'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeGroupProps, useGroup } from '@/composables/group'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { computed, toRef } from 'vue'\nimport { genericComponent, pick, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\n\nconst allowedVariants = ['default', 'accordion', 'inset', 'popout'] as const\n\ntype Variant = typeof allowedVariants[number]\n\nexport type VExpansionPanelSlot = {\n prev: () => void\n next: () => void\n}\n\nexport type VExpansionPanelSlots = {\n default: VExpansionPanelSlot\n}\n\nexport const makeVExpansionPanelsProps = propsFactory({\n flat: Boolean,\n\n ...makeGroupProps(),\n ...pick(makeVExpansionPanelProps(), [\n 'bgColor',\n 'collapseIcon',\n 'color',\n 'eager',\n 'elevation',\n 'expandIcon',\n 'focusable',\n 'hideActions',\n 'readonly',\n 'ripple',\n 'rounded',\n 'tile',\n 'static',\n ]),\n ...makeThemeProps(),\n ...makeComponentProps(),\n ...makeTagProps(),\n\n variant: {\n type: String as PropType<Variant>,\n default: 'default',\n validator: (v: any) => allowedVariants.includes(v),\n },\n}, 'VExpansionPanels')\n\nexport const VExpansionPanels = genericComponent<VExpansionPanelSlots>()({\n name: 'VExpansionPanels',\n\n props: makeVExpansionPanelsProps(),\n\n emits: {\n 'update:modelValue': (val: unknown) => true,\n },\n\n setup (props, { slots }) {\n const { next, prev } = useGroup(props, VExpansionPanelSymbol)\n\n const { themeClasses } = provideTheme(props)\n\n const variantClass = computed(() => props.variant && `v-expansion-panels--variant-${props.variant}`)\n\n provideDefaults({\n VExpansionPanel: {\n bgColor: toRef(props, 'bgColor'),\n collapseIcon: toRef(props, 'collapseIcon'),\n color: toRef(props, 'color'),\n eager: toRef(props, 'eager'),\n elevation: toRef(props, 'elevation'),\n expandIcon: toRef(props, 'expandIcon'),\n focusable: toRef(props, 'focusable'),\n hideActions: toRef(props, 'hideActions'),\n readonly: toRef(props, 'readonly'),\n ripple: toRef(props, 'ripple'),\n rounded: toRef(props, 'rounded'),\n static: toRef(props, 'static'),\n },\n })\n\n useRender(() => (\n <props.tag\n class={[\n 'v-expansion-panels',\n {\n 'v-expansion-panels--flat': props.flat,\n 'v-expansion-panels--tile': props.tile,\n },\n themeClasses.value,\n variantClass.value,\n props.class,\n ]}\n style={ props.style }\n >\n { slots.default?.({ prev, next }) }\n </props.tag>\n ))\n\n return {\n next,\n prev,\n }\n },\n})\n\nexport type VExpansionPanels = InstanceType<typeof VExpansionPanels>\n"],"mappings":"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","ignoreList":[]}
|
@@ -33,9 +33,6 @@ declare const VExpansionPanels: {
|
|
33
33
|
focusable: boolean;
|
34
34
|
} & {
|
35
35
|
class?: any;
|
36
|
-
title?: string | undefined;
|
37
|
-
text?: string | undefined;
|
38
|
-
value?: any;
|
39
36
|
theme?: string | undefined;
|
40
37
|
color?: string | undefined;
|
41
38
|
modelValue?: any;
|
@@ -81,9 +78,6 @@ declare const VExpansionPanels: {
|
|
81
78
|
focusable: boolean;
|
82
79
|
} & {
|
83
80
|
class?: any;
|
84
|
-
title?: string | undefined;
|
85
|
-
text?: string | undefined;
|
86
|
-
value?: any;
|
87
81
|
theme?: string | undefined;
|
88
82
|
color?: string | undefined;
|
89
83
|
modelValue?: any;
|
@@ -155,9 +149,6 @@ declare const VExpansionPanels: {
|
|
155
149
|
focusable: boolean;
|
156
150
|
} & {
|
157
151
|
class?: any;
|
158
|
-
title?: string | undefined;
|
159
|
-
text?: string | undefined;
|
160
|
-
value?: any;
|
161
152
|
theme?: string | undefined;
|
162
153
|
color?: string | undefined;
|
163
154
|
modelValue?: any;
|
@@ -225,9 +216,6 @@ declare const VExpansionPanels: {
|
|
225
216
|
focusable: boolean;
|
226
217
|
} & {
|
227
218
|
class?: any;
|
228
|
-
title?: string | undefined;
|
229
|
-
text?: string | undefined;
|
230
|
-
value?: any;
|
231
219
|
theme?: string | undefined;
|
232
220
|
color?: string | undefined;
|
233
221
|
modelValue?: any;
|
@@ -283,51 +271,46 @@ declare const VExpansionPanels: {
|
|
283
271
|
default: string;
|
284
272
|
validator: (v: any) => boolean;
|
285
273
|
};
|
286
|
-
|
287
|
-
|
274
|
+
tag: {
|
275
|
+
type: StringConstructor;
|
276
|
+
default: string;
|
277
|
+
};
|
288
278
|
class: PropType<any>;
|
289
279
|
style: {
|
290
280
|
type: PropType<vue.StyleValue>;
|
291
281
|
default: null;
|
292
282
|
};
|
283
|
+
theme: StringConstructor;
|
293
284
|
color: StringConstructor;
|
294
|
-
expandIcon: {
|
295
|
-
type: PropType<IconValue>;
|
296
|
-
default: string;
|
297
|
-
};
|
298
|
-
collapseIcon: {
|
299
|
-
type: PropType<IconValue>;
|
300
|
-
default: string;
|
301
|
-
};
|
302
|
-
hideActions: BooleanConstructor;
|
303
|
-
focusable: BooleanConstructor;
|
304
285
|
static: BooleanConstructor;
|
305
|
-
ripple: {
|
306
|
-
type: PropType<boolean | {
|
307
|
-
class: string;
|
308
|
-
} | undefined>;
|
309
|
-
default: boolean;
|
310
|
-
};
|
311
286
|
readonly: BooleanConstructor;
|
312
|
-
tag: {
|
313
|
-
type: StringConstructor;
|
314
|
-
default: string;
|
315
|
-
};
|
316
287
|
rounded: {
|
317
288
|
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
318
289
|
default: undefined;
|
319
290
|
};
|
320
291
|
tile: BooleanConstructor;
|
321
|
-
|
322
|
-
disabled: BooleanConstructor;
|
323
|
-
selectedClass: StringConstructor;
|
292
|
+
eager: BooleanConstructor;
|
324
293
|
elevation: {
|
325
294
|
type: (StringConstructor | NumberConstructor)[];
|
326
295
|
validator(v: any): boolean;
|
327
296
|
};
|
328
|
-
title: StringConstructor;
|
329
|
-
text: StringConstructor;
|
330
297
|
bgColor: StringConstructor;
|
298
|
+
ripple: {
|
299
|
+
type: PropType<boolean | {
|
300
|
+
class: string;
|
301
|
+
} | undefined>;
|
302
|
+
default: boolean;
|
303
|
+
};
|
304
|
+
collapseIcon: {
|
305
|
+
type: PropType<IconValue>;
|
306
|
+
default: string;
|
307
|
+
};
|
308
|
+
expandIcon: {
|
309
|
+
type: PropType<IconValue>;
|
310
|
+
default: string;
|
311
|
+
};
|
312
|
+
hideActions: BooleanConstructor;
|
313
|
+
focusable: BooleanConstructor;
|
331
314
|
modelValue: {
|
332
315
|
type: null;
|
333
316
|
default: undefined;
|
@@ -335,6 +318,8 @@ declare const VExpansionPanels: {
|
|
335
318
|
multiple: BooleanConstructor;
|
336
319
|
mandatory: PropType<boolean | "force">;
|
337
320
|
max: NumberConstructor;
|
321
|
+
selectedClass: StringConstructor;
|
322
|
+
disabled: BooleanConstructor;
|
338
323
|
flat: BooleanConstructor;
|
339
324
|
}, vue.ExtractPropTypes<{
|
340
325
|
variant: {
|
@@ -342,51 +327,46 @@ declare const VExpansionPanels: {
|
|
342
327
|
default: string;
|
343
328
|
validator: (v: any) => boolean;
|
344
329
|
};
|
345
|
-
|
346
|
-
|
330
|
+
tag: {
|
331
|
+
type: StringConstructor;
|
332
|
+
default: string;
|
333
|
+
};
|
347
334
|
class: PropType<any>;
|
348
335
|
style: {
|
349
336
|
type: PropType<vue.StyleValue>;
|
350
337
|
default: null;
|
351
338
|
};
|
339
|
+
theme: StringConstructor;
|
352
340
|
color: StringConstructor;
|
353
|
-
expandIcon: {
|
354
|
-
type: PropType<IconValue>;
|
355
|
-
default: string;
|
356
|
-
};
|
357
|
-
collapseIcon: {
|
358
|
-
type: PropType<IconValue>;
|
359
|
-
default: string;
|
360
|
-
};
|
361
|
-
hideActions: BooleanConstructor;
|
362
|
-
focusable: BooleanConstructor;
|
363
341
|
static: BooleanConstructor;
|
364
|
-
ripple: {
|
365
|
-
type: PropType<boolean | {
|
366
|
-
class: string;
|
367
|
-
} | undefined>;
|
368
|
-
default: boolean;
|
369
|
-
};
|
370
342
|
readonly: BooleanConstructor;
|
371
|
-
tag: {
|
372
|
-
type: StringConstructor;
|
373
|
-
default: string;
|
374
|
-
};
|
375
343
|
rounded: {
|
376
344
|
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
377
345
|
default: undefined;
|
378
346
|
};
|
379
347
|
tile: BooleanConstructor;
|
380
|
-
|
381
|
-
disabled: BooleanConstructor;
|
382
|
-
selectedClass: StringConstructor;
|
348
|
+
eager: BooleanConstructor;
|
383
349
|
elevation: {
|
384
350
|
type: (StringConstructor | NumberConstructor)[];
|
385
351
|
validator(v: any): boolean;
|
386
352
|
};
|
387
|
-
title: StringConstructor;
|
388
|
-
text: StringConstructor;
|
389
353
|
bgColor: StringConstructor;
|
354
|
+
ripple: {
|
355
|
+
type: PropType<boolean | {
|
356
|
+
class: string;
|
357
|
+
} | undefined>;
|
358
|
+
default: boolean;
|
359
|
+
};
|
360
|
+
collapseIcon: {
|
361
|
+
type: PropType<IconValue>;
|
362
|
+
default: string;
|
363
|
+
};
|
364
|
+
expandIcon: {
|
365
|
+
type: PropType<IconValue>;
|
366
|
+
default: string;
|
367
|
+
};
|
368
|
+
hideActions: BooleanConstructor;
|
369
|
+
focusable: BooleanConstructor;
|
390
370
|
modelValue: {
|
391
371
|
type: null;
|
392
372
|
default: undefined;
|
@@ -394,6 +374,8 @@ declare const VExpansionPanels: {
|
|
394
374
|
multiple: BooleanConstructor;
|
395
375
|
mandatory: PropType<boolean | "force">;
|
396
376
|
max: NumberConstructor;
|
377
|
+
selectedClass: StringConstructor;
|
378
|
+
disabled: BooleanConstructor;
|
397
379
|
flat: BooleanConstructor;
|
398
380
|
}>>;
|
399
381
|
type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
|
@@ -31905,9 +31905,6 @@ declare const VExpansionPanels: {
|
|
31905
31905
|
focusable: boolean;
|
31906
31906
|
} & {
|
31907
31907
|
class?: any;
|
31908
|
-
title?: string | undefined;
|
31909
|
-
text?: string | undefined;
|
31910
|
-
value?: any;
|
31911
31908
|
theme?: string | undefined;
|
31912
31909
|
color?: string | undefined;
|
31913
31910
|
modelValue?: any;
|
@@ -31953,9 +31950,6 @@ declare const VExpansionPanels: {
|
|
31953
31950
|
focusable: boolean;
|
31954
31951
|
} & {
|
31955
31952
|
class?: any;
|
31956
|
-
title?: string | undefined;
|
31957
|
-
text?: string | undefined;
|
31958
|
-
value?: any;
|
31959
31953
|
theme?: string | undefined;
|
31960
31954
|
color?: string | undefined;
|
31961
31955
|
modelValue?: any;
|
@@ -32027,9 +32021,6 @@ declare const VExpansionPanels: {
|
|
32027
32021
|
focusable: boolean;
|
32028
32022
|
} & {
|
32029
32023
|
class?: any;
|
32030
|
-
title?: string | undefined;
|
32031
|
-
text?: string | undefined;
|
32032
|
-
value?: any;
|
32033
32024
|
theme?: string | undefined;
|
32034
32025
|
color?: string | undefined;
|
32035
32026
|
modelValue?: any;
|
@@ -32097,9 +32088,6 @@ declare const VExpansionPanels: {
|
|
32097
32088
|
focusable: boolean;
|
32098
32089
|
} & {
|
32099
32090
|
class?: any;
|
32100
|
-
title?: string | undefined;
|
32101
|
-
text?: string | undefined;
|
32102
|
-
value?: any;
|
32103
32091
|
theme?: string | undefined;
|
32104
32092
|
color?: string | undefined;
|
32105
32093
|
modelValue?: any;
|
@@ -32155,51 +32143,46 @@ declare const VExpansionPanels: {
|
|
32155
32143
|
default: string;
|
32156
32144
|
validator: (v: any) => boolean;
|
32157
32145
|
};
|
32158
|
-
|
32159
|
-
|
32146
|
+
tag: {
|
32147
|
+
type: StringConstructor;
|
32148
|
+
default: string;
|
32149
|
+
};
|
32160
32150
|
class: PropType<any>;
|
32161
32151
|
style: {
|
32162
32152
|
type: PropType<vue.StyleValue>;
|
32163
32153
|
default: null;
|
32164
32154
|
};
|
32155
|
+
theme: StringConstructor;
|
32165
32156
|
color: StringConstructor;
|
32166
|
-
expandIcon: {
|
32167
|
-
type: PropType<IconValue>;
|
32168
|
-
default: string;
|
32169
|
-
};
|
32170
|
-
collapseIcon: {
|
32171
|
-
type: PropType<IconValue>;
|
32172
|
-
default: string;
|
32173
|
-
};
|
32174
|
-
hideActions: BooleanConstructor;
|
32175
|
-
focusable: BooleanConstructor;
|
32176
32157
|
static: BooleanConstructor;
|
32177
|
-
ripple: {
|
32178
|
-
type: PropType<boolean | {
|
32179
|
-
class: string;
|
32180
|
-
} | undefined>;
|
32181
|
-
default: boolean;
|
32182
|
-
};
|
32183
32158
|
readonly: BooleanConstructor;
|
32184
|
-
tag: {
|
32185
|
-
type: StringConstructor;
|
32186
|
-
default: string;
|
32187
|
-
};
|
32188
32159
|
rounded: {
|
32189
32160
|
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
32190
32161
|
default: undefined;
|
32191
32162
|
};
|
32192
32163
|
tile: BooleanConstructor;
|
32193
|
-
|
32194
|
-
disabled: BooleanConstructor;
|
32195
|
-
selectedClass: StringConstructor;
|
32164
|
+
eager: BooleanConstructor;
|
32196
32165
|
elevation: {
|
32197
32166
|
type: (StringConstructor | NumberConstructor)[];
|
32198
32167
|
validator(v: any): boolean;
|
32199
32168
|
};
|
32200
|
-
title: StringConstructor;
|
32201
|
-
text: StringConstructor;
|
32202
32169
|
bgColor: StringConstructor;
|
32170
|
+
ripple: {
|
32171
|
+
type: PropType<boolean | {
|
32172
|
+
class: string;
|
32173
|
+
} | undefined>;
|
32174
|
+
default: boolean;
|
32175
|
+
};
|
32176
|
+
collapseIcon: {
|
32177
|
+
type: PropType<IconValue>;
|
32178
|
+
default: string;
|
32179
|
+
};
|
32180
|
+
expandIcon: {
|
32181
|
+
type: PropType<IconValue>;
|
32182
|
+
default: string;
|
32183
|
+
};
|
32184
|
+
hideActions: BooleanConstructor;
|
32185
|
+
focusable: BooleanConstructor;
|
32203
32186
|
modelValue: {
|
32204
32187
|
type: null;
|
32205
32188
|
default: undefined;
|
@@ -32207,6 +32190,8 @@ declare const VExpansionPanels: {
|
|
32207
32190
|
multiple: BooleanConstructor;
|
32208
32191
|
mandatory: PropType<boolean | "force">;
|
32209
32192
|
max: NumberConstructor;
|
32193
|
+
selectedClass: StringConstructor;
|
32194
|
+
disabled: BooleanConstructor;
|
32210
32195
|
flat: BooleanConstructor;
|
32211
32196
|
}, vue.ExtractPropTypes<{
|
32212
32197
|
variant: {
|
@@ -32214,51 +32199,46 @@ declare const VExpansionPanels: {
|
|
32214
32199
|
default: string;
|
32215
32200
|
validator: (v: any) => boolean;
|
32216
32201
|
};
|
32217
|
-
|
32218
|
-
|
32202
|
+
tag: {
|
32203
|
+
type: StringConstructor;
|
32204
|
+
default: string;
|
32205
|
+
};
|
32219
32206
|
class: PropType<any>;
|
32220
32207
|
style: {
|
32221
32208
|
type: PropType<vue.StyleValue>;
|
32222
32209
|
default: null;
|
32223
32210
|
};
|
32211
|
+
theme: StringConstructor;
|
32224
32212
|
color: StringConstructor;
|
32225
|
-
expandIcon: {
|
32226
|
-
type: PropType<IconValue>;
|
32227
|
-
default: string;
|
32228
|
-
};
|
32229
|
-
collapseIcon: {
|
32230
|
-
type: PropType<IconValue>;
|
32231
|
-
default: string;
|
32232
|
-
};
|
32233
|
-
hideActions: BooleanConstructor;
|
32234
|
-
focusable: BooleanConstructor;
|
32235
32213
|
static: BooleanConstructor;
|
32236
|
-
ripple: {
|
32237
|
-
type: PropType<boolean | {
|
32238
|
-
class: string;
|
32239
|
-
} | undefined>;
|
32240
|
-
default: boolean;
|
32241
|
-
};
|
32242
32214
|
readonly: BooleanConstructor;
|
32243
|
-
tag: {
|
32244
|
-
type: StringConstructor;
|
32245
|
-
default: string;
|
32246
|
-
};
|
32247
32215
|
rounded: {
|
32248
32216
|
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
32249
32217
|
default: undefined;
|
32250
32218
|
};
|
32251
32219
|
tile: BooleanConstructor;
|
32252
|
-
|
32253
|
-
disabled: BooleanConstructor;
|
32254
|
-
selectedClass: StringConstructor;
|
32220
|
+
eager: BooleanConstructor;
|
32255
32221
|
elevation: {
|
32256
32222
|
type: (StringConstructor | NumberConstructor)[];
|
32257
32223
|
validator(v: any): boolean;
|
32258
32224
|
};
|
32259
|
-
title: StringConstructor;
|
32260
|
-
text: StringConstructor;
|
32261
32225
|
bgColor: StringConstructor;
|
32226
|
+
ripple: {
|
32227
|
+
type: PropType<boolean | {
|
32228
|
+
class: string;
|
32229
|
+
} | undefined>;
|
32230
|
+
default: boolean;
|
32231
|
+
};
|
32232
|
+
collapseIcon: {
|
32233
|
+
type: PropType<IconValue>;
|
32234
|
+
default: string;
|
32235
|
+
};
|
32236
|
+
expandIcon: {
|
32237
|
+
type: PropType<IconValue>;
|
32238
|
+
default: string;
|
32239
|
+
};
|
32240
|
+
hideActions: BooleanConstructor;
|
32241
|
+
focusable: BooleanConstructor;
|
32262
32242
|
modelValue: {
|
32263
32243
|
type: null;
|
32264
32244
|
default: undefined;
|
@@ -32266,6 +32246,8 @@ declare const VExpansionPanels: {
|
|
32266
32246
|
multiple: BooleanConstructor;
|
32267
32247
|
mandatory: PropType<boolean | "force">;
|
32268
32248
|
max: NumberConstructor;
|
32249
|
+
selectedClass: StringConstructor;
|
32250
|
+
disabled: BooleanConstructor;
|
32269
32251
|
flat: BooleanConstructor;
|
32270
32252
|
}>>;
|
32271
32253
|
type VExpansionPanels = InstanceType<typeof VExpansionPanels>;
|
package/lib/entry-bundler.mjs
CHANGED
@@ -16,7 +16,7 @@ export const createVuetify = function () {
|
|
16
16
|
...options
|
17
17
|
});
|
18
18
|
};
|
19
|
-
export const version = "3.6.11-master.2024-07-
|
19
|
+
export const version = "3.6.11-master.2024-07-08";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED