@vuetify/nightly 3.7.0-master.2024-08-21 → 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 +22 -22
- package/dist/json/importMap.json +146 -146
- package/dist/json/web-types.json +12 -1
- package/dist/vuetify-labs.css +2660 -2660
- 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 +1332 -1332
- package/dist/vuetify.d.ts +58 -52
- 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 +52 -52
- 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
@@ -486,48 +486,42 @@ declare module 'vue' {
|
|
486
486
|
$children?: VNodeChild
|
487
487
|
}
|
488
488
|
export interface GlobalComponents {
|
489
|
+
VApp: typeof import('vuetify/components')['VApp']
|
490
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
491
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
489
492
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
490
493
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
491
494
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
492
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
493
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
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
|
-
VApp: typeof import('vuetify/components')['VApp']
|
498
498
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
499
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
499
500
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
500
501
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
501
|
-
|
502
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
503
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
502
504
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
503
505
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
504
506
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
505
507
|
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
506
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
507
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
508
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
509
|
-
VChip: typeof import('vuetify/components')['VChip']
|
510
508
|
VCard: typeof import('vuetify/components')['VCard']
|
511
509
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
512
510
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
513
511
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
514
512
|
VCardText: typeof import('vuetify/components')['VCardText']
|
515
513
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
514
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
515
|
+
VChip: typeof import('vuetify/components')['VChip']
|
516
516
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
517
517
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
518
|
+
VCode: typeof import('vuetify/components')['VCode']
|
518
519
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
519
520
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
520
521
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
521
|
-
VCode: typeof import('vuetify/components')['VCode']
|
522
|
-
VCounter: typeof import('vuetify/components')['VCounter']
|
523
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
524
522
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
525
|
-
|
526
|
-
|
527
|
-
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
528
|
-
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
529
|
-
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
530
|
-
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
523
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
524
|
+
VCounter: typeof import('vuetify/components')['VCounter']
|
531
525
|
VDataTable: typeof import('vuetify/components')['VDataTable']
|
532
526
|
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
533
527
|
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
@@ -535,28 +529,36 @@ declare module 'vue' {
|
|
535
529
|
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
536
530
|
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
537
531
|
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
538
|
-
|
539
|
-
|
532
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
533
|
+
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
534
|
+
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
535
|
+
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
536
|
+
VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
|
537
|
+
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
538
|
+
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
540
539
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
541
540
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
542
541
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
543
542
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
544
|
-
|
545
|
-
|
543
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
544
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
545
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
546
|
+
VFab: typeof import('vuetify/components')['VFab']
|
546
547
|
VField: typeof import('vuetify/components')['VField']
|
547
548
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
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
|
-
|
554
|
-
VFab: typeof import('vuetify/components')['VFab']
|
556
|
+
VInput: typeof import('vuetify/components')['VInput']
|
555
557
|
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
558
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
559
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
556
560
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
557
561
|
VItem: typeof import('vuetify/components')['VItem']
|
558
|
-
VInput: typeof import('vuetify/components')['VInput']
|
559
|
-
VImg: typeof import('vuetify/components')['VImg']
|
560
562
|
VList: typeof import('vuetify/components')['VList']
|
561
563
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
562
564
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -567,24 +569,21 @@ declare module 'vue' {
|
|
567
569
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
568
570
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
569
571
|
VMain: typeof import('vuetify/components')['VMain']
|
570
|
-
|
571
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
572
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
572
|
+
VMessages: typeof import('vuetify/components')['VMessages']
|
573
573
|
VMenu: typeof import('vuetify/components')['VMenu']
|
574
|
-
VOverlay: typeof import('vuetify/components')['VOverlay']
|
575
574
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
575
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
576
|
+
VOverlay: typeof import('vuetify/components')['VOverlay']
|
576
577
|
VPagination: typeof import('vuetify/components')['VPagination']
|
577
|
-
VMessages: typeof import('vuetify/components')['VMessages']
|
578
|
-
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
579
578
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
580
|
-
|
579
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
581
580
|
VRating: typeof import('vuetify/components')['VRating']
|
581
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
582
582
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
583
583
|
VSelect: typeof import('vuetify/components')['VSelect']
|
584
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
585
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
586
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
587
584
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
585
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
586
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
588
587
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
589
588
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
590
589
|
VSlider: typeof import('vuetify/components')['VSlider']
|
@@ -594,25 +593,24 @@ declare module 'vue' {
|
|
594
593
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
595
594
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
596
595
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
597
|
-
|
598
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
599
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
600
|
-
VTable: typeof import('vuetify/components')['VTable']
|
601
|
-
VTextField: typeof import('vuetify/components')['VTextField']
|
596
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
602
597
|
VTab: typeof import('vuetify/components')['VTab']
|
603
598
|
VTabs: typeof import('vuetify/components')['VTabs']
|
604
599
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
605
600
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
601
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
602
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
606
603
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
607
604
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
608
605
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
609
|
-
|
606
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
610
607
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
611
608
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
609
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
612
610
|
VWindow: typeof import('vuetify/components')['VWindow']
|
613
611
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
614
|
-
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
615
612
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
613
|
+
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
616
614
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
617
615
|
VForm: typeof import('vuetify/components')['VForm']
|
618
616
|
VContainer: typeof import('vuetify/components')['VContainer']
|
@@ -625,14 +623,13 @@ declare module 'vue' {
|
|
625
623
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
626
624
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
627
625
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
628
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
629
626
|
VRadio: typeof import('vuetify/components')['VRadio']
|
630
627
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
628
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
631
629
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
632
630
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
633
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
634
|
-
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
635
631
|
VValidation: typeof import('vuetify/components')['VValidation']
|
632
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
636
633
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
637
634
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
638
635
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
@@ -650,26 +647,29 @@ declare module 'vue' {
|
|
650
647
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
651
648
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
652
649
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
653
|
-
|
654
|
-
|
650
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
651
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
652
|
+
VTable: typeof import('vuetify/components')['VTable']
|
653
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
655
654
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
656
655
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
657
656
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
658
657
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
659
658
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
660
659
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
661
|
-
|
660
|
+
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
661
|
+
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
662
|
+
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
662
663
|
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
663
664
|
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
664
665
|
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
666
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
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
|
}
|