@vuetify/nightly 3.6.9-master.2024-06-12 → 3.6.9-master.2024-06-15
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 +9 -2
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +152 -152
- package/dist/json/web-types.json +2 -2
- package/dist/vuetify-labs.css +2859 -2859
- package/dist/vuetify-labs.esm.js +35 -17
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +35 -17
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +882 -882
- package/dist/vuetify.d.ts +49 -49
- package/dist/vuetify.esm.js +35 -17
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +35 -17
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -6
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs +23 -11
- package/lib/components/VExpansionPanel/VExpansionPanel.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +13 -5
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +49 -49
- package/package.json +1 -1
@@ -1,8 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import { createVNode as _createVNode } from "vue";
|
2
2
|
// Components
|
3
3
|
import { VExpansionPanelSymbol } from "./shared.mjs";
|
4
4
|
import { makeVExpansionPanelTextProps, VExpansionPanelText } from "./VExpansionPanelText.mjs";
|
5
|
-
import { makeVExpansionPanelTitleProps, VExpansionPanelTitle } from "./VExpansionPanelTitle.mjs";
|
5
|
+
import { makeVExpansionPanelTitleProps, VExpansionPanelTitle } from "./VExpansionPanelTitle.mjs";
|
6
|
+
import { VDefaultsProvider } from "../VDefaultsProvider/index.mjs"; // Composables
|
6
7
|
import { useBackgroundColor } from "../../composables/color.mjs";
|
7
8
|
import { makeElevationProps, useElevation } from "../../composables/elevation.mjs";
|
8
9
|
import { makeGroupItemProps, useGroupItem } from "../../composables/group.mjs";
|
@@ -72,15 +73,26 @@ export const VExpansionPanel = genericComponent()({
|
|
72
73
|
}, {
|
73
74
|
default: () => [_createVNode("div", {
|
74
75
|
"class": ['v-expansion-panel__shadow', ...elevationClasses.value]
|
75
|
-
}, null),
|
76
|
-
"
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
76
|
+
}, null), _createVNode(VDefaultsProvider, {
|
77
|
+
"defaults": {
|
78
|
+
VExpansionPanelTitle: {
|
79
|
+
...expansionPanelTitleProps
|
80
|
+
},
|
81
|
+
VExpansionPanelText: {
|
82
|
+
...expansionPanelTextProps
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}, {
|
86
|
+
default: () => [hasTitle && _createVNode(VExpansionPanelTitle, {
|
87
|
+
"key": "title"
|
88
|
+
}, {
|
89
|
+
default: () => [slots.title ? slots.title() : props.title]
|
90
|
+
}), hasText && _createVNode(VExpansionPanelText, {
|
91
|
+
"key": "text"
|
92
|
+
}, {
|
93
|
+
default: () => [slots.text ? slots.text() : props.text]
|
94
|
+
}), slots.default?.()]
|
95
|
+
})]
|
84
96
|
});
|
85
97
|
});
|
86
98
|
return {
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VExpansionPanel.mjs","names":["VExpansionPanelSymbol","makeVExpansionPanelTextProps","VExpansionPanelText","makeVExpansionPanelTitleProps","VExpansionPanelTitle","useBackgroundColor","makeElevationProps","useElevation","makeGroupItemProps","useGroupItem","makeRoundedProps","useRounded","makeTagProps","computed","provide","genericComponent","propsFactory","useRender","makeVExpansionPanelProps","title","String","text","bgColor","VExpansionPanel","name","props","emits","val","setup","_ref","slots","groupItem","backgroundColorClasses","backgroundColorStyles","elevationClasses","roundedClasses","isDisabled","disabled","value","selectedIndices","group","items","reduce","arr","item","index","selected","includes","id","push","isBeforeSelected","findIndex","isSelected","some","selectedIndex","isAfterSelected","hasText","hasTitle","expansionPanelTitleProps","filterProps","expansionPanelTextProps","_createVNode","tag","class","style","default"
|
1
|
+
{"version":3,"file":"VExpansionPanel.mjs","names":["VExpansionPanelSymbol","makeVExpansionPanelTextProps","VExpansionPanelText","makeVExpansionPanelTitleProps","VExpansionPanelTitle","VDefaultsProvider","useBackgroundColor","makeElevationProps","useElevation","makeGroupItemProps","useGroupItem","makeRoundedProps","useRounded","makeTagProps","computed","provide","genericComponent","propsFactory","useRender","makeVExpansionPanelProps","title","String","text","bgColor","VExpansionPanel","name","props","emits","val","setup","_ref","slots","groupItem","backgroundColorClasses","backgroundColorStyles","elevationClasses","roundedClasses","isDisabled","disabled","value","selectedIndices","group","items","reduce","arr","item","index","selected","includes","id","push","isBeforeSelected","findIndex","isSelected","some","selectedIndex","isAfterSelected","hasText","hasTitle","expansionPanelTitleProps","filterProps","expansionPanelTextProps","_createVNode","tag","class","style","default"],"sources":["../../../src/components/VExpansionPanel/VExpansionPanel.tsx"],"sourcesContent":["// Components\nimport { VExpansionPanelSymbol } from './shared'\nimport { makeVExpansionPanelTextProps, VExpansionPanelText } from './VExpansionPanelText'\nimport { makeVExpansionPanelTitleProps, VExpansionPanelTitle } from './VExpansionPanelTitle'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\n\n// Composables\nimport { useBackgroundColor } from '@/composables/color'\nimport { makeElevationProps, useElevation } from '@/composables/elevation'\nimport { makeGroupItemProps, useGroupItem } from '@/composables/group'\nimport { makeRoundedProps, useRounded } from '@/composables/rounded'\nimport { makeTagProps } from '@/composables/tag'\n\n// Utilities\nimport { computed, provide } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVExpansionPanelProps = propsFactory({\n title: String,\n text: String,\n bgColor: String,\n\n ...makeElevationProps(),\n ...makeGroupItemProps(),\n ...makeRoundedProps(),\n ...makeTagProps(),\n ...makeVExpansionPanelTitleProps(),\n ...makeVExpansionPanelTextProps(),\n}, 'VExpansionPanel')\n\nexport type VExpansionPanelSlots = {\n default: never\n title: never\n text: never\n}\n\nexport const VExpansionPanel = genericComponent<VExpansionPanelSlots>()({\n name: 'VExpansionPanel',\n\n props: makeVExpansionPanelProps(),\n\n emits: {\n 'group:selected': (val: { value: boolean }) => true,\n },\n\n setup (props, { slots }) {\n const groupItem = useGroupItem(props, VExpansionPanelSymbol)\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(props, 'bgColor')\n const { elevationClasses } = useElevation(props)\n const { roundedClasses } = useRounded(props)\n const isDisabled = computed(() => groupItem?.disabled.value || props.disabled)\n\n const selectedIndices = computed(() => groupItem.group.items.value.reduce<number[]>((arr, item, index) => {\n if (groupItem.group.selected.value.includes(item.id)) arr.push(index)\n return arr\n }, []))\n\n const isBeforeSelected = computed(() => {\n const index = groupItem.group.items.value.findIndex(item => item.id === groupItem.id)\n return !groupItem.isSelected.value &&\n selectedIndices.value.some(selectedIndex => selectedIndex - index === 1)\n })\n\n const isAfterSelected = computed(() => {\n const index = groupItem.group.items.value.findIndex(item => item.id === groupItem.id)\n return !groupItem.isSelected.value &&\n selectedIndices.value.some(selectedIndex => selectedIndex - index === -1)\n })\n\n provide(VExpansionPanelSymbol, groupItem)\n\n useRender(() => {\n const hasText = !!(slots.text || props.text)\n const hasTitle = !!(slots.title || props.title)\n\n const expansionPanelTitleProps = VExpansionPanelTitle.filterProps(props)\n const expansionPanelTextProps = VExpansionPanelText.filterProps(props)\n\n return (\n <props.tag\n class={[\n 'v-expansion-panel',\n {\n 'v-expansion-panel--active': groupItem.isSelected.value,\n 'v-expansion-panel--before-active': isBeforeSelected.value,\n 'v-expansion-panel--after-active': isAfterSelected.value,\n 'v-expansion-panel--disabled': isDisabled.value,\n },\n roundedClasses.value,\n backgroundColorClasses.value,\n props.class,\n ]}\n style={[\n backgroundColorStyles.value,\n props.style,\n ]}\n >\n <div\n class={[\n 'v-expansion-panel__shadow',\n ...elevationClasses.value,\n ]}\n />\n\n <VDefaultsProvider\n defaults={{\n VExpansionPanelTitle: {\n ...expansionPanelTitleProps,\n },\n VExpansionPanelText: {\n ...expansionPanelTextProps,\n },\n }}\n >\n { hasTitle && (\n <VExpansionPanelTitle key=\"title\">\n { slots.title ? slots.title() : props.title }\n </VExpansionPanelTitle>\n )}\n\n { hasText && (\n <VExpansionPanelText key=\"text\">\n { slots.text ? slots.text() : props.text }\n </VExpansionPanelText>\n )}\n\n { slots.default?.() }\n </VDefaultsProvider>\n </props.tag>\n )\n })\n\n return {\n groupItem,\n }\n },\n})\n\nexport type VExpansionPanel = InstanceType<typeof VExpansionPanel>\n"],"mappings":"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","ignoreList":[]}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { withDirectives as _withDirectives, resolveDirective as _resolveDirective, createVNode as _createVNode } from "vue";
|
2
2
|
// Components
|
3
3
|
import { VExpansionPanelSymbol } from "./shared.mjs";
|
4
|
+
import { VDefaultsProvider } from "../VDefaultsProvider/index.mjs";
|
4
5
|
import { VIcon } from "../VIcon/index.mjs"; // Composables
|
5
6
|
import { useBackgroundColor } from "../../composables/color.mjs";
|
6
7
|
import { makeComponentProps } from "../../composables/component.mjs";
|
@@ -51,6 +52,7 @@ export const VExpansionPanelTitle = genericComponent()({
|
|
51
52
|
expandIcon: props.expandIcon,
|
52
53
|
readonly: props.readonly
|
53
54
|
}));
|
55
|
+
const icon = computed(() => expansionPanel.isSelected.value ? props.collapseIcon : props.expandIcon);
|
54
56
|
useRender(() => _withDirectives(_createVNode("button", {
|
55
57
|
"class": ['v-expansion-panel-title', {
|
56
58
|
'v-expansion-panel-title--active': expansionPanel.isSelected.value,
|
@@ -65,11 +67,17 @@ export const VExpansionPanelTitle = genericComponent()({
|
|
65
67
|
"onClick": !props.readonly ? expansionPanel.toggle : undefined
|
66
68
|
}, [_createVNode("span", {
|
67
69
|
"class": "v-expansion-panel-title__overlay"
|
68
|
-
}, null), slots.default?.(slotProps.value), !props.hideActions && _createVNode(
|
69
|
-
"
|
70
|
-
|
71
|
-
|
72
|
-
|
70
|
+
}, null), slots.default?.(slotProps.value), !props.hideActions && _createVNode(VDefaultsProvider, {
|
71
|
+
"defaults": {
|
72
|
+
VIcon: {
|
73
|
+
icon: icon.value
|
74
|
+
}
|
75
|
+
}
|
76
|
+
}, {
|
77
|
+
default: () => [_createVNode("span", {
|
78
|
+
"class": "v-expansion-panel-title__icon"
|
79
|
+
}, [slots.actions?.(slotProps.value) ?? _createVNode(VIcon, null, null)])]
|
80
|
+
})]), [[_resolveDirective("ripple"), props.ripple]]));
|
73
81
|
return {};
|
74
82
|
}
|
75
83
|
});
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"VExpansionPanelTitle.mjs","names":["VExpansionPanelSymbol","VIcon","useBackgroundColor","makeComponentProps","IconValue","Ripple","computed","inject","genericComponent","propsFactory","useRender","makeVExpansionPanelTitleProps","color","String","expandIcon","type","default","collapseIcon","hideActions","Boolean","focusable","static","ripple","Object","readonly","VExpansionPanelTitle","name","directives","props","setup","_ref","slots","expansionPanel","Error","backgroundColorClasses","backgroundColorStyles","slotProps","disabled","value","expanded","isSelected","_withDirectives","_createVNode","class","style","undefined","toggle","actions","_resolveDirective"],"sources":["../../../src/components/VExpansionPanel/VExpansionPanelTitle.tsx"],"sourcesContent":["// Components\nimport { VExpansionPanelSymbol } from './shared'\nimport { VIcon } from '@/components/VIcon'\n\n// Composables\nimport { useBackgroundColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { IconValue } from '@/composables/icons'\n\n// Directives\nimport { Ripple } from '@/directives/ripple'\n\n// Utilities\nimport { computed, inject } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { RippleDirectiveBinding } from '@/directives/ripple'\n\ninterface ExpansionPanelTitleSlot {\n collapseIcon: IconValue\n disabled: boolean | undefined\n expanded: boolean\n expandIcon: IconValue\n readonly: boolean\n}\n\nexport type VExpansionPanelTitleSlots = {\n default: ExpansionPanelTitleSlot\n actions: ExpansionPanelTitleSlot\n}\n\nexport const makeVExpansionPanelTitleProps = propsFactory({\n color: String,\n expandIcon: {\n type: IconValue,\n default: '$expand',\n },\n collapseIcon: {\n type: IconValue,\n default: '$collapse',\n },\n hideActions: Boolean,\n focusable: Boolean,\n static: Boolean,\n ripple: {\n type: [Boolean, Object] as PropType<RippleDirectiveBinding['value']>,\n default: false,\n },\n readonly: Boolean,\n\n ...makeComponentProps(),\n}, 'VExpansionPanelTitle')\n\nexport const VExpansionPanelTitle = genericComponent<VExpansionPanelTitleSlots>()({\n name: 'VExpansionPanelTitle',\n\n directives: { Ripple },\n\n props: makeVExpansionPanelTitleProps(),\n\n setup (props, { slots }) {\n const expansionPanel = inject(VExpansionPanelSymbol)\n\n if (!expansionPanel) throw new Error('[Vuetify] v-expansion-panel-title needs to be placed inside v-expansion-panel')\n\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(props, 'color')\n\n const slotProps = computed(() => ({\n collapseIcon: props.collapseIcon,\n disabled: expansionPanel.disabled.value,\n expanded: expansionPanel.isSelected.value,\n expandIcon: props.expandIcon,\n readonly: props.readonly,\n }))\n\n useRender(() => (\n <button\n class={[\n 'v-expansion-panel-title',\n {\n 'v-expansion-panel-title--active': expansionPanel.isSelected.value,\n 'v-expansion-panel-title--focusable': props.focusable,\n 'v-expansion-panel-title--static': props.static,\n },\n backgroundColorClasses.value,\n props.class,\n ]}\n style={[\n backgroundColorStyles.value,\n props.style,\n ]}\n type=\"button\"\n tabindex={ expansionPanel.disabled.value ? -1 : undefined }\n disabled={ expansionPanel.disabled.value }\n aria-expanded={ expansionPanel.isSelected.value }\n onClick={ !props.readonly ? expansionPanel.toggle : undefined }\n v-ripple={ props.ripple }\n >\n <span class=\"v-expansion-panel-title__overlay\" />\n\n { slots.default?.(slotProps.value) }\n\n { !props.hideActions && (\n <span class=\"v-expansion-panel-title__icon\">\n
|
1
|
+
{"version":3,"file":"VExpansionPanelTitle.mjs","names":["VExpansionPanelSymbol","VDefaultsProvider","VIcon","useBackgroundColor","makeComponentProps","IconValue","Ripple","computed","inject","genericComponent","propsFactory","useRender","makeVExpansionPanelTitleProps","color","String","expandIcon","type","default","collapseIcon","hideActions","Boolean","focusable","static","ripple","Object","readonly","VExpansionPanelTitle","name","directives","props","setup","_ref","slots","expansionPanel","Error","backgroundColorClasses","backgroundColorStyles","slotProps","disabled","value","expanded","isSelected","icon","_withDirectives","_createVNode","class","style","undefined","toggle","actions","_resolveDirective"],"sources":["../../../src/components/VExpansionPanel/VExpansionPanelTitle.tsx"],"sourcesContent":["// Components\nimport { VExpansionPanelSymbol } from './shared'\nimport { VDefaultsProvider } from '@/components/VDefaultsProvider'\nimport { VIcon } from '@/components/VIcon'\n\n// Composables\nimport { useBackgroundColor } from '@/composables/color'\nimport { makeComponentProps } from '@/composables/component'\nimport { IconValue } from '@/composables/icons'\n\n// Directives\nimport { Ripple } from '@/directives/ripple'\n\n// Utilities\nimport { computed, inject } from 'vue'\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { RippleDirectiveBinding } from '@/directives/ripple'\n\ninterface ExpansionPanelTitleSlot {\n collapseIcon: IconValue\n disabled: boolean | undefined\n expanded: boolean\n expandIcon: IconValue\n readonly: boolean\n}\n\nexport type VExpansionPanelTitleSlots = {\n default: ExpansionPanelTitleSlot\n actions: ExpansionPanelTitleSlot\n}\n\nexport const makeVExpansionPanelTitleProps = propsFactory({\n color: String,\n expandIcon: {\n type: IconValue,\n default: '$expand',\n },\n collapseIcon: {\n type: IconValue,\n default: '$collapse',\n },\n hideActions: Boolean,\n focusable: Boolean,\n static: Boolean,\n ripple: {\n type: [Boolean, Object] as PropType<RippleDirectiveBinding['value']>,\n default: false,\n },\n readonly: Boolean,\n\n ...makeComponentProps(),\n}, 'VExpansionPanelTitle')\n\nexport const VExpansionPanelTitle = genericComponent<VExpansionPanelTitleSlots>()({\n name: 'VExpansionPanelTitle',\n\n directives: { Ripple },\n\n props: makeVExpansionPanelTitleProps(),\n\n setup (props, { slots }) {\n const expansionPanel = inject(VExpansionPanelSymbol)\n\n if (!expansionPanel) throw new Error('[Vuetify] v-expansion-panel-title needs to be placed inside v-expansion-panel')\n\n const { backgroundColorClasses, backgroundColorStyles } = useBackgroundColor(props, 'color')\n\n const slotProps = computed(() => ({\n collapseIcon: props.collapseIcon,\n disabled: expansionPanel.disabled.value,\n expanded: expansionPanel.isSelected.value,\n expandIcon: props.expandIcon,\n readonly: props.readonly,\n }))\n\n const icon = computed(() => expansionPanel.isSelected.value ? props.collapseIcon : props.expandIcon)\n\n useRender(() => (\n <button\n class={[\n 'v-expansion-panel-title',\n {\n 'v-expansion-panel-title--active': expansionPanel.isSelected.value,\n 'v-expansion-panel-title--focusable': props.focusable,\n 'v-expansion-panel-title--static': props.static,\n },\n backgroundColorClasses.value,\n props.class,\n ]}\n style={[\n backgroundColorStyles.value,\n props.style,\n ]}\n type=\"button\"\n tabindex={ expansionPanel.disabled.value ? -1 : undefined }\n disabled={ expansionPanel.disabled.value }\n aria-expanded={ expansionPanel.isSelected.value }\n onClick={ !props.readonly ? expansionPanel.toggle : undefined }\n v-ripple={ props.ripple }\n >\n <span class=\"v-expansion-panel-title__overlay\" />\n\n { slots.default?.(slotProps.value) }\n\n { !props.hideActions && (\n <VDefaultsProvider\n defaults={{\n VIcon: {\n icon: icon.value,\n },\n }}\n >\n <span class=\"v-expansion-panel-title__icon\">\n { slots.actions?.(slotProps.value) ?? <VIcon /> }\n </span>\n </VDefaultsProvider>\n )}\n </button>\n ))\n\n return {}\n },\n})\n\nexport type VExpansionPanelTitle = InstanceType<typeof VExpansionPanelTitle>\n"],"mappings":"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","ignoreList":[]}
|
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.9-master.2024-06-
|
19
|
+
export const version = "3.6.9-master.2024-06-15";
|
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
@@ -493,48 +493,41 @@ declare module '@vue/runtime-core' {
|
|
493
493
|
|
494
494
|
export interface GlobalComponents {
|
495
495
|
VApp: typeof import('vuetify/components')['VApp']
|
496
|
-
VAlert: typeof import('vuetify/components')['VAlert']
|
497
|
-
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
498
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
499
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
500
496
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
501
497
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
502
498
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
503
499
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
500
|
+
VAlert: typeof import('vuetify/components')['VAlert']
|
501
|
+
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
502
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
503
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
504
504
|
VBanner: typeof import('vuetify/components')['VBanner']
|
505
505
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
506
506
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
507
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
507
508
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
508
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
509
509
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
510
510
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
511
511
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
512
|
-
|
512
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
513
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
514
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
513
515
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
514
516
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
517
|
+
VChip: typeof import('vuetify/components')['VChip']
|
515
518
|
VCard: typeof import('vuetify/components')['VCard']
|
516
519
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
517
520
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
518
521
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
519
522
|
VCardText: typeof import('vuetify/components')['VCardText']
|
520
523
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
521
|
-
|
522
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
524
|
+
VCode: typeof import('vuetify/components')['VCode']
|
523
525
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
524
526
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
527
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
525
528
|
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
526
529
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
527
|
-
VChip: typeof import('vuetify/components')['VChip']
|
528
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
529
530
|
VCounter: typeof import('vuetify/components')['VCounter']
|
530
|
-
VCode: typeof import('vuetify/components')['VCode']
|
531
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
532
|
-
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
533
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
534
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
535
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
536
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
537
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
538
531
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
539
532
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
540
533
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
@@ -542,30 +535,37 @@ declare module '@vue/runtime-core' {
|
|
542
535
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
543
536
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
544
537
|
VDialog: typeof import('vuetify/components')['VDialog']
|
538
|
+
VEmptyState: typeof import('vuetify/components')['VEmptyState']
|
539
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
540
|
+
VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
|
541
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
542
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
543
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
544
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
545
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
546
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
547
|
+
VFileInput: typeof import('vuetify/components')['VFileInput']
|
545
548
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
546
549
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
547
550
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
548
551
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
549
|
-
|
550
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
552
|
+
VFab: typeof import('vuetify/components')['VFab']
|
551
553
|
VField: typeof import('vuetify/components')['VField']
|
552
554
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
553
|
-
VFab: typeof import('vuetify/components')['VFab']
|
554
|
-
VFileInput: typeof import('vuetify/components')['VFileInput']
|
555
555
|
VFooter: typeof import('vuetify/components')['VFooter']
|
556
|
-
VImg: typeof import('vuetify/components')['VImg']
|
557
|
-
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
558
556
|
VIcon: typeof import('vuetify/components')['VIcon']
|
559
557
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
560
558
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
561
559
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
562
560
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
561
|
+
VImg: typeof import('vuetify/components')['VImg']
|
562
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
563
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
563
564
|
VInput: typeof import('vuetify/components')['VInput']
|
564
565
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
565
566
|
VItem: typeof import('vuetify/components')['VItem']
|
566
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
567
567
|
VLabel: typeof import('vuetify/components')['VLabel']
|
568
|
-
|
568
|
+
VMain: typeof import('vuetify/components')['VMain']
|
569
569
|
VList: typeof import('vuetify/components')['VList']
|
570
570
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
571
571
|
VListImg: typeof import('vuetify/components')['VListImg']
|
@@ -575,48 +575,48 @@ declare module '@vue/runtime-core' {
|
|
575
575
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
576
576
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
577
577
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
578
|
-
|
579
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
578
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
580
579
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
581
580
|
VMessages: typeof import('vuetify/components')['VMessages']
|
581
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
582
582
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
583
|
-
|
583
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
584
584
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
585
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
585
586
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
586
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
587
|
-
VSelect: typeof import('vuetify/components')['VSelect']
|
588
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
589
587
|
VRating: typeof import('vuetify/components')['VRating']
|
588
|
+
VSelect: typeof import('vuetify/components')['VSelect']
|
590
589
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
591
|
-
|
590
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
591
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
592
592
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
593
593
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
594
|
-
|
594
|
+
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
595
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
596
|
+
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
595
597
|
VStepper: typeof import('vuetify/components')['VStepper']
|
596
598
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
597
599
|
VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
|
598
600
|
VStepperItem: typeof import('vuetify/components')['VStepperItem']
|
599
601
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
600
602
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
601
|
-
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
602
|
-
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
603
|
-
VTable: typeof import('vuetify/components')['VTable']
|
604
|
-
VSwitch: typeof import('vuetify/components')['VSwitch']
|
605
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
606
603
|
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
607
|
-
|
604
|
+
VSwitch: typeof import('vuetify/components')['VSwitch']
|
608
605
|
VTab: typeof import('vuetify/components')['VTab']
|
609
606
|
VTabs: typeof import('vuetify/components')['VTabs']
|
610
607
|
VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
|
611
608
|
VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
|
609
|
+
VTable: typeof import('vuetify/components')['VTable']
|
610
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
611
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
612
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
613
|
+
VTextField: typeof import('vuetify/components')['VTextField']
|
612
614
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
613
615
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
614
616
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
615
617
|
VTooltip: typeof import('vuetify/components')['VTooltip']
|
616
618
|
VWindow: typeof import('vuetify/components')['VWindow']
|
617
619
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
618
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
619
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
620
620
|
VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
|
621
621
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
622
622
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
@@ -626,20 +626,20 @@ declare module '@vue/runtime-core' {
|
|
626
626
|
VRow: typeof import('vuetify/components')['VRow']
|
627
627
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
628
628
|
VHover: typeof import('vuetify/components')['VHover']
|
629
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
630
629
|
VLayout: typeof import('vuetify/components')['VLayout']
|
631
630
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
632
631
|
VLazy: typeof import('vuetify/components')['VLazy']
|
632
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
633
633
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
634
634
|
VParallax: typeof import('vuetify/components')['VParallax']
|
635
635
|
VRadio: typeof import('vuetify/components')['VRadio']
|
636
636
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
637
637
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
638
|
-
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
639
638
|
VSparkline: typeof import('vuetify/components')['VSparkline']
|
639
|
+
VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
|
640
640
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
641
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
642
641
|
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
642
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
643
643
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
644
644
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
645
645
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
@@ -662,18 +662,18 @@ declare module '@vue/runtime-core' {
|
|
662
662
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
663
663
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
664
664
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
665
|
+
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
665
666
|
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
666
667
|
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
667
|
-
VNumberInput: typeof import('vuetify/labs/components')['VNumberInput']
|
668
668
|
VTreeview: typeof import('vuetify/labs/components')['VTreeview']
|
669
669
|
VTreeviewItem: typeof import('vuetify/labs/components')['VTreeviewItem']
|
670
670
|
VTreeviewGroup: typeof import('vuetify/labs/components')['VTreeviewGroup']
|
671
|
-
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
672
|
-
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
673
|
-
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
674
671
|
VTimePicker: typeof import('vuetify/labs/components')['VTimePicker']
|
675
672
|
VTimePickerClock: typeof import('vuetify/labs/components')['VTimePickerClock']
|
676
673
|
VTimePickerControls: typeof import('vuetify/labs/components')['VTimePickerControls']
|
674
|
+
VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
|
675
|
+
VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
|
676
|
+
VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
|
677
677
|
VDateInput: typeof import('vuetify/labs/components')['VDateInput']
|
678
678
|
VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
|
679
679
|
VSnackbarQueue: typeof import('vuetify/labs/components')['VSnackbarQueue']
|