@vuetify/nightly 3.6.8-master.2024-06-11 → 3.6.9-master.2024-06-12
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 +2 -10
- package/dist/json/attributes.json +4 -4
- package/dist/json/importMap-labs.json +24 -24
- package/dist/json/importMap.json +132 -132
- package/dist/json/web-types.json +12 -13
- package/dist/vuetify-labs.css +2088 -2088
- package/dist/vuetify-labs.d.ts +44 -45
- package/dist/vuetify-labs.esm.js +32 -19
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +32 -19
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +489 -489
- package/dist/vuetify.d.ts +84 -91
- package/dist/vuetify.esm.js +20 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +20 -13
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +31 -28
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VFab/VFab.mjs +4 -7
- package/lib/components/VFab/VFab.mjs.map +1 -1
- package/lib/components/VFab/index.d.mts +46 -49
- package/lib/components/VList/VList.mjs +1 -0
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +2 -0
- package/lib/components/VMenu/VMenu.mjs +1 -1
- package/lib/components/VMenu/VMenu.mjs.map +1 -1
- package/lib/components/VOverlay/VOverlay.mjs +4 -3
- package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
- package/lib/components/index.d.mts +38 -45
- package/lib/composables/scroll.mjs +6 -0
- package/lib/composables/scroll.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +46 -46
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +3 -1
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +7 -2
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/VTreeview/VTreeview.mjs +3 -4
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -1
- package/lib/labs/VTreeview/index.d.mts +6 -0
- package/lib/labs/components.d.mts +6 -0
- package/package.json +1 -1
@@ -9798,6 +9798,7 @@ declare const VTreeview: {
|
|
9798
9798
|
activeClass?: string | undefined;
|
9799
9799
|
opened?: any;
|
9800
9800
|
activeStrategy?: ActiveStrategyProp | undefined;
|
9801
|
+
'onUpdate:opened'?: (() => void) | undefined;
|
9801
9802
|
activeColor?: string | undefined;
|
9802
9803
|
customFilter?: FilterFunction | undefined;
|
9803
9804
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
@@ -9891,6 +9892,7 @@ declare const VTreeview: {
|
|
9891
9892
|
activeClass?: string | undefined;
|
9892
9893
|
opened?: any;
|
9893
9894
|
activeStrategy?: ActiveStrategyProp | undefined;
|
9895
|
+
'onUpdate:opened'?: (() => void) | undefined;
|
9894
9896
|
activeColor?: string | undefined;
|
9895
9897
|
customFilter?: FilterFunction | undefined;
|
9896
9898
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
@@ -10064,6 +10066,7 @@ declare const VTreeview: {
|
|
10064
10066
|
activeClass?: string | undefined;
|
10065
10067
|
opened?: any;
|
10066
10068
|
activeStrategy?: ActiveStrategyProp | undefined;
|
10069
|
+
'onUpdate:opened'?: (() => void) | undefined;
|
10067
10070
|
activeColor?: string | undefined;
|
10068
10071
|
customFilter?: FilterFunction | undefined;
|
10069
10072
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
@@ -10176,6 +10179,7 @@ declare const VTreeview: {
|
|
10176
10179
|
activeClass?: string | undefined;
|
10177
10180
|
opened?: any;
|
10178
10181
|
activeStrategy?: ActiveStrategyProp | undefined;
|
10182
|
+
'onUpdate:opened'?: (() => void) | undefined;
|
10179
10183
|
activeColor?: string | undefined;
|
10180
10184
|
customFilter?: FilterFunction | undefined;
|
10181
10185
|
customKeyFilter?: FilterKeyFunctions | undefined;
|
@@ -10391,6 +10395,7 @@ declare const VTreeview: {
|
|
10391
10395
|
type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
|
10392
10396
|
default: NonNullable<NonNullable<OpenStrategyProp>>;
|
10393
10397
|
};
|
10398
|
+
'onUpdate:opened': vue.PropType<() => void>;
|
10394
10399
|
activeColor: StringConstructor;
|
10395
10400
|
collapseIcon: {
|
10396
10401
|
type: vue.PropType<string>;
|
@@ -10531,6 +10536,7 @@ declare const VTreeview: {
|
|
10531
10536
|
type: vue.PropType<NonNullable<NonNullable<OpenStrategyProp>>>;
|
10532
10537
|
default: NonNullable<NonNullable<OpenStrategyProp>>;
|
10533
10538
|
};
|
10539
|
+
'onUpdate:opened': vue.PropType<() => void>;
|
10534
10540
|
activeColor: StringConstructor;
|
10535
10541
|
collapseIcon: {
|
10536
10542
|
type: vue.PropType<string>;
|