@vuetify/nightly 3.7.0-master.2024-08-17 → 3.7.0-master.2024-08-22
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/dist/json/importMap-labs.json +26 -26
- package/dist/json/importMap.json +162 -162
- package/dist/json/web-types.json +12 -1
- package/dist/vuetify-labs.css +3438 -3438
- package/dist/vuetify-labs.d.ts +6 -0
- package/dist/vuetify-labs.esm.js +5 -3
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +5 -3
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +1420 -1420
- package/dist/vuetify.d.ts +67 -61
- package/dist/vuetify.esm.js +5 -3
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDialog/VDialog.mjs +2 -0
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/index.d.mts +6 -0
- package/lib/components/index.d.mts +6 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +61 -61
- package/package.json +1 -1
@@ -33,6 +33,7 @@ export const VDialog = genericComponent()({
|
|
33
33
|
props: makeVDialogProps(),
|
34
34
|
emits: {
|
35
35
|
'update:modelValue': value => true,
|
36
|
+
afterEnter: () => true,
|
36
37
|
afterLeave: () => true
|
37
38
|
},
|
38
39
|
setup(props, _ref) {
|
@@ -74,6 +75,7 @@ export const VDialog = genericComponent()({
|
|
74
75
|
});
|
75
76
|
}
|
76
77
|
function onAfterEnter() {
|
78
|
+
emit('afterEnter');
|
77
79
|
if (overlay.value?.contentEl && !overlay.value.contentEl.contains(document.activeElement)) {
|
78
80
|
overlay.value.contentEl.focus({
|
79
81
|
preventScroll: true
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VDialog.mjs","names":["VDialogTransition","VDefaultsProvider","VOverlay","makeVOverlayProps","forwardRefs","useProxiedModel","useScopeId","mergeProps","nextTick","ref","watch","focusableChildren","genericComponent","IN_BROWSER","propsFactory","useRender","makeVDialogProps","fullscreen","Boolean","retainFocus","type","default","scrollable","origin","scrollStrategy","transition","component","zIndex","VDialog","name","props","emits","value","afterLeave","setup","_ref","emit","slots","isActive","scopeId","overlay","onFocusin","e","before","relatedTarget","after","target","contentEl","globalTop","document","includes","contains","focusable","length","firstElement","lastElement","focus","val","addEventListener","removeEventListener","immediate","onAfterEnter","activeElement","preventScroll","onAfterLeave","activatorEl","overlayProps","filterProps","activatorProps","String","contentProps","tabindex","_createVNode","_mergeProps","class","style","$event","activator","_len","arguments","args","Array","_key"],"sources":["../../../src/components/VDialog/VDialog.tsx"],"sourcesContent":["// Styles\nimport './VDialog.sass'\n\n// Components\nimport { VDialogTransition } from '@/components/transitions'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { VOverlay } from '@/components/VOverlay'\nimport { makeVOverlayProps } from '@/components/VOverlay/VOverlay'\n\n// Composables\nimport { forwardRefs } from '@/composables/forwardRefs'\nimport { useProxiedModel } from '@/composables/proxiedModel'\nimport { useScopeId } from '@/composables/scopeId'\n\n// Utilities\nimport { mergeProps, nextTick, ref, watch } from 'vue'\nimport { focusableChildren, genericComponent, IN_BROWSER, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { Component } from 'vue'\nimport type { OverlaySlots } from '@/components/VOverlay/VOverlay'\n\nexport const makeVDialogProps = propsFactory({\n fullscreen: Boolean,\n retainFocus: {\n type: Boolean,\n default: true,\n },\n scrollable: Boolean,\n\n ...makeVOverlayProps({\n origin: 'center center' as const,\n scrollStrategy: 'block' as const,\n transition: { component: VDialogTransition as Component },\n zIndex: 2400,\n }),\n}, 'VDialog')\n\nexport const VDialog = genericComponent<OverlaySlots>()({\n name: 'VDialog',\n\n props: makeVDialogProps(),\n\n emits: {\n 'update:modelValue': (value: boolean) => true,\n afterLeave: () => true,\n },\n\n setup (props, { emit, slots }) {\n const isActive = useProxiedModel(props, 'modelValue')\n const { scopeId } = useScopeId()\n\n const overlay = ref<VOverlay>()\n function onFocusin (e: FocusEvent) {\n const before = e.relatedTarget as HTMLElement | null\n const after = e.target as HTMLElement | null\n\n if (\n before !== after &&\n overlay.value?.contentEl &&\n // We're the topmost dialog\n overlay.value?.globalTop &&\n // It isn't the document or the dialog body\n ![document, overlay.value.contentEl].includes(after!) &&\n // It isn't inside the dialog body\n !overlay.value.contentEl.contains(after)\n ) {\n const focusable = focusableChildren(overlay.value.contentEl)\n\n if (!focusable.length) return\n\n const firstElement = focusable[0]\n const lastElement = focusable[focusable.length - 1]\n\n if (before === firstElement) {\n lastElement.focus()\n } else {\n firstElement.focus()\n }\n }\n }\n\n if (IN_BROWSER) {\n watch(() => isActive.value && props.retainFocus, val => {\n val\n ? document.addEventListener('focusin', onFocusin)\n : document.removeEventListener('focusin', onFocusin)\n }, { immediate: true })\n }\n\n function onAfterEnter () {\n if (overlay.value?.contentEl && !overlay.value.contentEl.contains(document.activeElement)) {\n overlay.value.contentEl.focus({ preventScroll: true })\n }\n }\n\n function onAfterLeave () {\n emit('afterLeave')\n }\n\n watch(isActive, async val => {\n if (!val) {\n await nextTick()\n overlay.value!.activatorEl?.focus({ preventScroll: true })\n }\n })\n\n useRender(() => {\n const overlayProps = VOverlay.filterProps(props)\n const activatorProps = mergeProps({\n 'aria-haspopup': 'dialog',\n 'aria-expanded': String(isActive.value),\n }, props.activatorProps)\n const contentProps = mergeProps({\n tabindex: -1,\n }, props.contentProps)\n\n return (\n <VOverlay\n ref={ overlay }\n class={[\n 'v-dialog',\n {\n 'v-dialog--fullscreen': props.fullscreen,\n 'v-dialog--scrollable': props.scrollable,\n },\n props.class,\n ]}\n style={ props.style }\n { ...overlayProps }\n v-model={ isActive.value }\n aria-modal=\"true\"\n activatorProps={ activatorProps }\n contentProps={ contentProps }\n role=\"dialog\"\n onAfterEnter={ onAfterEnter }\n onAfterLeave={ onAfterLeave }\n { ...scopeId }\n >\n {{\n activator: slots.activator,\n default: (...args) => (\n <VDefaultsProvider root=\"VDialog\">\n { slots.default?.(...args) }\n </VDefaultsProvider>\n ),\n }}\n </VOverlay>\n )\n })\n\n return forwardRefs({}, overlay)\n },\n})\n\nexport type VDialog = InstanceType<typeof VDialog>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,iBAAiB;AAAA,SACjBC,iBAAiB;AAAA,SACjBC,QAAQ;AAAA,SACRC,iBAAiB,oCAE1B;AAAA,SACSC,WAAW;AAAA,SACXC,eAAe;AAAA,SACfC,UAAU,yCAEnB;AACA,SAASC,UAAU,EAAEC,QAAQ,EAAEC,GAAG,EAAEC,KAAK,QAAQ,KAAK;AAAA,SAC7CC,iBAAiB,EAAEC,gBAAgB,EAAEC,UAAU,EAAEC,YAAY,EAAEC,SAAS,gCAEjF;AAIA,OAAO,MAAMC,gBAAgB,GAAGF,YAAY,CAAC;EAC3CG,UAAU,EAAEC,OAAO;EACnBC,WAAW,EAAE;IACXC,IAAI,EAAEF,OAAO;IACbG,OAAO,EAAE;EACX,CAAC;EACDC,UAAU,EAAEJ,OAAO;EAEnB,GAAGf,iBAAiB,CAAC;IACnBoB,MAAM,EAAE,eAAwB;IAChCC,cAAc,EAAE,OAAgB;IAChCC,UAAU,EAAE;MAAEC,SAAS,EAAE1B;IAA+B,CAAC;IACzD2B,MAAM,EAAE;EACV,CAAC;AACH,CAAC,EAAE,SAAS,CAAC;AAEb,OAAO,MAAMC,OAAO,GAAGhB,gBAAgB,CAAe,CAAC,CAAC;EACtDiB,IAAI,EAAE,SAAS;EAEfC,KAAK,EAAEd,gBAAgB,CAAC,CAAC;EAEzBe,KAAK,EAAE;IACL,mBAAmB,EAAGC,KAAc,IAAK,IAAI;IAC7CC,UAAU,EAAEA,CAAA,KAAM;EACpB,CAAC;EAEDC,KAAKA,
|
1
|
+
{"version":3,"file":"VDialog.mjs","names":["VDialogTransition","VDefaultsProvider","VOverlay","makeVOverlayProps","forwardRefs","useProxiedModel","useScopeId","mergeProps","nextTick","ref","watch","focusableChildren","genericComponent","IN_BROWSER","propsFactory","useRender","makeVDialogProps","fullscreen","Boolean","retainFocus","type","default","scrollable","origin","scrollStrategy","transition","component","zIndex","VDialog","name","props","emits","value","afterEnter","afterLeave","setup","_ref","emit","slots","isActive","scopeId","overlay","onFocusin","e","before","relatedTarget","after","target","contentEl","globalTop","document","includes","contains","focusable","length","firstElement","lastElement","focus","val","addEventListener","removeEventListener","immediate","onAfterEnter","activeElement","preventScroll","onAfterLeave","activatorEl","overlayProps","filterProps","activatorProps","String","contentProps","tabindex","_createVNode","_mergeProps","class","style","$event","activator","_len","arguments","args","Array","_key"],"sources":["../../../src/components/VDialog/VDialog.tsx"],"sourcesContent":["// Styles\nimport './VDialog.sass'\n\n// Components\nimport { VDialogTransition } from '@/components/transitions'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { VOverlay } from '@/components/VOverlay'\nimport { makeVOverlayProps } from '@/components/VOverlay/VOverlay'\n\n// Composables\nimport { forwardRefs } from '@/composables/forwardRefs'\nimport { useProxiedModel } from '@/composables/proxiedModel'\nimport { useScopeId } from '@/composables/scopeId'\n\n// Utilities\nimport { mergeProps, nextTick, ref, watch } from 'vue'\nimport { focusableChildren, genericComponent, IN_BROWSER, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { Component } from 'vue'\nimport type { OverlaySlots } from '@/components/VOverlay/VOverlay'\n\nexport const makeVDialogProps = propsFactory({\n fullscreen: Boolean,\n retainFocus: {\n type: Boolean,\n default: true,\n },\n scrollable: Boolean,\n\n ...makeVOverlayProps({\n origin: 'center center' as const,\n scrollStrategy: 'block' as const,\n transition: { component: VDialogTransition as Component },\n zIndex: 2400,\n }),\n}, 'VDialog')\n\nexport const VDialog = genericComponent<OverlaySlots>()({\n name: 'VDialog',\n\n props: makeVDialogProps(),\n\n emits: {\n 'update:modelValue': (value: boolean) => true,\n afterEnter: () => true,\n afterLeave: () => true,\n },\n\n setup (props, { emit, slots }) {\n const isActive = useProxiedModel(props, 'modelValue')\n const { scopeId } = useScopeId()\n\n const overlay = ref<VOverlay>()\n function onFocusin (e: FocusEvent) {\n const before = e.relatedTarget as HTMLElement | null\n const after = e.target as HTMLElement | null\n\n if (\n before !== after &&\n overlay.value?.contentEl &&\n // We're the topmost dialog\n overlay.value?.globalTop &&\n // It isn't the document or the dialog body\n ![document, overlay.value.contentEl].includes(after!) &&\n // It isn't inside the dialog body\n !overlay.value.contentEl.contains(after)\n ) {\n const focusable = focusableChildren(overlay.value.contentEl)\n\n if (!focusable.length) return\n\n const firstElement = focusable[0]\n const lastElement = focusable[focusable.length - 1]\n\n if (before === firstElement) {\n lastElement.focus()\n } else {\n firstElement.focus()\n }\n }\n }\n\n if (IN_BROWSER) {\n watch(() => isActive.value && props.retainFocus, val => {\n val\n ? document.addEventListener('focusin', onFocusin)\n : document.removeEventListener('focusin', onFocusin)\n }, { immediate: true })\n }\n\n function onAfterEnter () {\n emit('afterEnter')\n if (overlay.value?.contentEl && !overlay.value.contentEl.contains(document.activeElement)) {\n overlay.value.contentEl.focus({ preventScroll: true })\n }\n }\n\n function onAfterLeave () {\n emit('afterLeave')\n }\n\n watch(isActive, async val => {\n if (!val) {\n await nextTick()\n overlay.value!.activatorEl?.focus({ preventScroll: true })\n }\n })\n\n useRender(() => {\n const overlayProps = VOverlay.filterProps(props)\n const activatorProps = mergeProps({\n 'aria-haspopup': 'dialog',\n 'aria-expanded': String(isActive.value),\n }, props.activatorProps)\n const contentProps = mergeProps({\n tabindex: -1,\n }, props.contentProps)\n\n return (\n <VOverlay\n ref={ overlay }\n class={[\n 'v-dialog',\n {\n 'v-dialog--fullscreen': props.fullscreen,\n 'v-dialog--scrollable': props.scrollable,\n },\n props.class,\n ]}\n style={ props.style }\n { ...overlayProps }\n v-model={ isActive.value }\n aria-modal=\"true\"\n activatorProps={ activatorProps }\n contentProps={ contentProps }\n role=\"dialog\"\n onAfterEnter={ onAfterEnter }\n onAfterLeave={ onAfterLeave }\n { ...scopeId }\n >\n {{\n activator: slots.activator,\n default: (...args) => (\n <VDefaultsProvider root=\"VDialog\">\n { slots.default?.(...args) }\n </VDefaultsProvider>\n ),\n }}\n </VOverlay>\n )\n })\n\n return forwardRefs({}, overlay)\n },\n})\n\nexport type VDialog = InstanceType<typeof VDialog>\n"],"mappings":"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","ignoreList":[]}
|
@@ -175,6 +175,7 @@ declare const VDialog: {
|
|
175
175
|
targetRef: TemplateRef;
|
176
176
|
}) => vue.VNodeChild) | undefined;
|
177
177
|
} & {
|
178
|
+
onAfterEnter?: (() => any) | undefined;
|
178
179
|
onAfterLeave?: (() => any) | undefined;
|
179
180
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
180
181
|
}, Omit<Omit<{
|
@@ -633,6 +634,7 @@ declare const VDialog: {
|
|
633
634
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
634
635
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
635
636
|
'update:modelValue': (value: boolean) => true;
|
637
|
+
afterEnter: () => true;
|
636
638
|
afterLeave: () => true;
|
637
639
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
638
640
|
absolute: boolean;
|
@@ -716,6 +718,7 @@ declare const VDialog: {
|
|
716
718
|
targetRef: TemplateRef;
|
717
719
|
}) => vue.VNodeChild) | undefined;
|
718
720
|
} & {
|
721
|
+
onAfterEnter?: (() => any) | undefined;
|
719
722
|
onAfterLeave?: (() => any) | undefined;
|
720
723
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
721
724
|
}, {
|
@@ -847,6 +850,7 @@ declare const VDialog: {
|
|
847
850
|
targetRef: TemplateRef;
|
848
851
|
}) => vue.VNodeChild) | undefined;
|
849
852
|
} & {
|
853
|
+
onAfterEnter?: (() => any) | undefined;
|
850
854
|
onAfterLeave?: (() => any) | undefined;
|
851
855
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
852
856
|
}, Omit<Omit<{
|
@@ -1420,6 +1424,7 @@ declare const VDialog: {
|
|
1420
1424
|
targetRef: TemplateRef;
|
1421
1425
|
}) => vue.VNodeChild) | undefined;
|
1422
1426
|
} & {
|
1427
|
+
onAfterEnter?: (() => any) | undefined;
|
1423
1428
|
onAfterLeave?: (() => any) | undefined;
|
1424
1429
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
1425
1430
|
}, Omit<Omit<{
|
@@ -1878,6 +1883,7 @@ declare const VDialog: {
|
|
1878
1883
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
1879
1884
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
1880
1885
|
'update:modelValue': (value: boolean) => true;
|
1886
|
+
afterEnter: () => true;
|
1881
1887
|
afterLeave: () => true;
|
1882
1888
|
}, string, {
|
1883
1889
|
absolute: boolean;
|
@@ -29292,6 +29292,7 @@ declare const VDialog: {
|
|
29292
29292
|
targetRef: TemplateRef;
|
29293
29293
|
}) => vue.VNodeChild) | undefined;
|
29294
29294
|
} & {
|
29295
|
+
onAfterEnter?: (() => any) | undefined;
|
29295
29296
|
onAfterLeave?: (() => any) | undefined;
|
29296
29297
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29297
29298
|
}, Omit<Omit<{
|
@@ -29750,6 +29751,7 @@ declare const VDialog: {
|
|
29750
29751
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
29751
29752
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
29752
29753
|
'update:modelValue': (value: boolean) => true;
|
29754
|
+
afterEnter: () => true;
|
29753
29755
|
afterLeave: () => true;
|
29754
29756
|
}, vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps & {
|
29755
29757
|
absolute: boolean;
|
@@ -29833,6 +29835,7 @@ declare const VDialog: {
|
|
29833
29835
|
targetRef: TemplateRef;
|
29834
29836
|
}) => vue.VNodeChild) | undefined;
|
29835
29837
|
} & {
|
29838
|
+
onAfterEnter?: (() => any) | undefined;
|
29836
29839
|
onAfterLeave?: (() => any) | undefined;
|
29837
29840
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29838
29841
|
}, {
|
@@ -29964,6 +29967,7 @@ declare const VDialog: {
|
|
29964
29967
|
targetRef: TemplateRef;
|
29965
29968
|
}) => vue.VNodeChild) | undefined;
|
29966
29969
|
} & {
|
29970
|
+
onAfterEnter?: (() => any) | undefined;
|
29967
29971
|
onAfterLeave?: (() => any) | undefined;
|
29968
29972
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
29969
29973
|
}, Omit<Omit<{
|
@@ -30537,6 +30541,7 @@ declare const VDialog: {
|
|
30537
30541
|
targetRef: TemplateRef;
|
30538
30542
|
}) => vue.VNodeChild) | undefined;
|
30539
30543
|
} & {
|
30544
|
+
onAfterEnter?: (() => any) | undefined;
|
30540
30545
|
onAfterLeave?: (() => any) | undefined;
|
30541
30546
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
30542
30547
|
}, Omit<Omit<{
|
@@ -30995,6 +31000,7 @@ declare const VDialog: {
|
|
30995
31000
|
updateLocation: vue.Ref<((e: Event) => void) | undefined>;
|
30996
31001
|
}> & {} & vue.ComponentCustomProperties & {}, "offset" | "key" | "height" | "width" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "target" | "class" | "ref" | "onAfterEnter" | "onAfterLeave" | "$children" | "theme" | "v-slots" | "v-slot:default" | "ref_for" | "ref_key" | "onVnodeBeforeMount" | "onVnodeMounted" | "onVnodeBeforeUpdate" | "onVnodeUpdated" | "onVnodeBeforeUnmount" | "onVnodeUnmounted" | "onUpdate:modelValue" | "contentClass" | "activator" | "v-slot:activator" | "closeDelay" | "openDelay" | "contentProps" | "attach" | "onClick:outside" | ("absolute" | "location" | "origin" | "transition" | "zIndex" | "style" | "eager" | "disabled" | "modelValue" | "locationStrategy" | "scrollStrategy" | "activatorProps" | "openOnClick" | "openOnHover" | "openOnFocus" | "closeOnContentClick" | "closeOnBack" | "contained" | "noClickAnimation" | "persistent" | "scrim" | "_disableGlobalStack")>, `$${any}`>, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {
|
30997
31002
|
'update:modelValue': (value: boolean) => true;
|
31003
|
+
afterEnter: () => true;
|
30998
31004
|
afterLeave: () => true;
|
30999
31005
|
}, string, {
|
31000
31006
|
absolute: boolean;
|
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.7.0-master.2024-08-
|
19
|
+
export const version = "3.7.0-master.2024-08-22";
|
20
20
|
createVuetify.version = version;
|
21
21
|
export { blueprints, components, directives };
|
22
22
|
export * from "./composables/index.mjs";
|
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
@@ -489,35 +489,47 @@ declare module 'vue' {
|
|
489
489
|
VApp: typeof import('vuetify/components')['VApp']
|
490
490
|
VAlert: typeof import('vuetify/components')['VAlert']
|
491
491
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
492
|
-
|
493
|
-
|
492
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
493
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
494
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
494
495
|
VBanner: typeof import('vuetify/components')['VBanner']
|
495
496
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
496
497
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
497
|
-
|
498
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
498
499
|
VBadge: typeof import('vuetify/components')['VBadge']
|
500
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
501
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
502
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
503
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
499
504
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
500
505
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
501
506
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
502
|
-
|
507
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
503
508
|
VCard: typeof import('vuetify/components')['VCard']
|
504
509
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
505
510
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
506
511
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
507
512
|
VCardText: typeof import('vuetify/components')['VCardText']
|
508
513
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
509
|
-
|
510
|
-
VCode: typeof import('vuetify/components')['VCode']
|
514
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
511
515
|
VChip: typeof import('vuetify/components')['VChip']
|
512
516
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
513
517
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
514
|
-
|
518
|
+
VCode: typeof import('vuetify/components')['VCode']
|
519
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
515
520
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
516
521
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
517
|
-
|
518
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
522
|
+
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
519
523
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
520
|
-
|
524
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
525
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
526
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
527
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
528
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
529
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
530
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
531
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
532
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
521
533
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
522
534
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
523
535
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -529,34 +541,24 @@ declare module 'vue' {
|
|
529
541
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
530
542
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
531
543
|
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
532
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
533
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
534
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
535
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
536
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
537
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
538
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
539
|
-
VFab: typeof import('vuetify/components')['VFab']
|
540
544
|
VDivider: typeof import('vuetify/components')['VDivider']
|
541
|
-
|
545
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
546
|
+
VFab: typeof import('vuetify/components')['VFab']
|
542
547
|
VField: typeof import('vuetify/components')['VField']
|
543
548
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
544
|
-
|
545
|
-
|
546
|
-
VItem: typeof import('vuetify/components')['VItem']
|
547
|
-
VInput: typeof import('vuetify/components')['VInput']
|
549
|
+
VImg: typeof import('vuetify/components')['VImg']
|
550
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
548
551
|
VIcon: typeof import('vuetify/components')['VIcon']
|
549
552
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
550
553
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
551
554
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
552
555
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
553
|
-
|
556
|
+
VInput: typeof import('vuetify/components')['VInput']
|
554
557
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
555
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
556
558
|
VLabel: typeof import('vuetify/components')['VLabel']
|
557
|
-
|
558
|
-
|
559
|
-
|
559
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
560
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
561
|
+
VItem: typeof import('vuetify/components')['VItem']
|
560
562
|
VList: typeof import('vuetify/components')['VList']
|
561
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
562
564
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -566,69 +568,69 @@ declare module 'vue' {
|
|
566
568
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
567
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
568
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
569
|
-
|
571
|
+
VMain: typeof import('vuetify/components')['VMain']
|
572
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
573
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
570
574
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
575
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
571
576
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
572
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
573
577
|
VPagination: typeof import('vuetify/components')['VPagination']
|
574
|
-
|
578
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
575
579
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
576
580
|
VRating: typeof import('vuetify/components')['VRating']
|
581
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
577
582
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
578
|
-
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
579
583
|
VSelect: typeof import('vuetify/components')['VSelect']
|
584
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
585
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
586
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
580
587
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
581
588
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
582
|
-
|
583
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
584
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
585
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
586
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
589
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
587
590
|
VStepper: typeof import('vuetify/components')['VStepper']
|
588
591
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
589
592
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
590
593
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
591
594
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
592
595
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
593
|
-
|
594
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
595
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
596
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
596
597
|
VTab: typeof import('vuetify/components')['VTab']
|
597
598
|
VTabs: typeof import('vuetify/components')['VTabs']
|
598
599
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
599
600
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
600
|
-
|
601
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
602
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
601
603
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
602
604
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
603
605
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
606
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
607
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
608
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
604
609
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
605
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
606
610
|
VWindow: typeof import('vuetify/components')['VWindow']
|
607
611
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
608
|
-
VAvatar: typeof import('vuetify/components')['VAvatar']
|
609
612
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
610
613
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
611
614
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
612
615
|
VForm: typeof import('vuetify/components')['VForm']
|
613
|
-
VHover: typeof import('vuetify/components')['VHover']
|
614
616
|
VContainer: typeof import('vuetify/components')['VContainer']
|
615
617
|
VCol: typeof import('vuetify/components')['VCol']
|
616
618
|
VRow: typeof import('vuetify/components')['VRow']
|
617
619
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
620
|
+
VHover: typeof import('vuetify/components')['VHover']
|
621
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
618
622
|
VLayout: typeof import('vuetify/components')['VLayout']
|
619
623
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
620
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
621
624
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
622
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
623
|
-
VRadio: typeof import('vuetify/components')['VRadio']
|
624
625
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
626
|
+
VRadio: typeof import('vuetify/components')['VRadio']
|
625
627
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
626
|
-
VResponsive: typeof import('vuetify/components')['VResponsive']
|
627
628
|
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
629
|
+
VResponsive: typeof import('vuetify/components')['VResponsive']
|
628
630
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
631
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
629
632
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
630
633
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
631
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
632
634
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
633
635
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
634
636
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -645,14 +647,9 @@ declare module 'vue' {
|
|
645
647
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
646
648
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
647
649
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
652
|
-
VSlider: typeof import('vuetify/components')['VSlider']
|
653
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
654
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
655
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
650
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
651
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
652
|
+
VTable: typeof import('vuetify/components')['VTable']
|
656
653
|
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
657
654
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
658
655
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
@@ -660,16 +657,19 @@ declare module 'vue' {
|
|
660
657
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
661
658
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
662
659
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
660
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
661
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
662
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
663
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
664
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
665
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
663
666
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
664
667
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
665
668
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
666
669
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
667
670
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
668
|
-
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
669
|
-
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
670
|
-
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
671
|
-
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
672
671
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
672
|
+
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
673
673
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|
674
674
|
}
|
675
675
|
}
|