@vuetify/nightly 3.9.3-master.2025-07-31 → 3.9.3-master.2025-08-01

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.
@@ -1,7 +1,6 @@
1
1
  export declare const makeVAppProps: <Defaults extends {
2
2
  theme?: unknown;
3
3
  overlaps?: unknown;
4
- fullHeight?: unknown;
5
4
  class?: unknown;
6
5
  style?: unknown;
7
6
  } = {}>(defaults?: Defaults | undefined) => {
@@ -13,16 +12,6 @@ export declare const makeVAppProps: <Defaults extends {
13
12
  type: import("vue").PropType<unknown extends Defaults["overlaps"] ? string[] : string[] | Defaults["overlaps"]>;
14
13
  default: unknown extends Defaults["overlaps"] ? string[] : string[] | Defaults["overlaps"];
15
14
  };
16
- fullHeight: unknown extends Defaults["fullHeight"] ? {
17
- type: import("vue").PropType<boolean>;
18
- default: boolean;
19
- } : Omit<{
20
- type: import("vue").PropType<boolean>;
21
- default: boolean;
22
- }, "type" | "default"> & {
23
- type: import("vue").PropType<unknown extends Defaults["fullHeight"] ? boolean : boolean | Defaults["fullHeight"]>;
24
- default: unknown extends Defaults["fullHeight"] ? boolean : boolean | Defaults["fullHeight"];
25
- };
26
15
  class: unknown extends Defaults["class"] ? import("vue").PropType<any> : {
27
16
  type: import("vue").PropType<unknown extends Defaults["class"] ? any : any>;
28
17
  default: unknown extends Defaults["class"] ? any : any;
@@ -41,7 +30,6 @@ export declare const makeVAppProps: <Defaults extends {
41
30
  export declare const VApp: {
42
31
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<{
43
32
  style: import("vue").StyleValue;
44
- fullHeight: boolean;
45
33
  } & {
46
34
  class?: any;
47
35
  theme?: string | undefined;
@@ -79,7 +67,6 @@ export declare const VApp: {
79
67
  theme: import("../../composables/theme.js").ThemeInstance;
80
68
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, {
81
69
  style: import("vue").StyleValue;
82
- fullHeight: boolean;
83
70
  }, true, {}, import("vue").SlotsType<Partial<{
84
71
  default: () => import("vue").VNode[];
85
72
  }>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
@@ -91,7 +78,6 @@ export declare const VApp: {
91
78
  Defaults: {};
92
79
  }, {
93
80
  style: import("vue").StyleValue;
94
- fullHeight: boolean;
95
81
  } & {
96
82
  class?: any;
97
83
  theme?: string | undefined;
@@ -129,14 +115,12 @@ export declare const VApp: {
129
115
  theme: import("../../composables/theme.js").ThemeInstance;
130
116
  }, {}, {}, {}, {
131
117
  style: import("vue").StyleValue;
132
- fullHeight: boolean;
133
118
  }>;
134
119
  __isFragment?: never;
135
120
  __isTeleport?: never;
136
121
  __isSuspense?: never;
137
122
  } & import("vue").ComponentOptionsBase<{
138
123
  style: import("vue").StyleValue;
139
- fullHeight: boolean;
140
124
  } & {
141
125
  class?: any;
142
126
  theme?: string | undefined;
@@ -174,16 +158,11 @@ export declare const VApp: {
174
158
  theme: import("../../composables/theme.js").ThemeInstance;
175
159
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
176
160
  style: import("vue").StyleValue;
177
- fullHeight: boolean;
178
161
  }, {}, string, import("vue").SlotsType<Partial<{
179
162
  default: () => import("vue").VNode[];
180
163
  }>>, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("../../util/index.js").FilterPropsOptions<{
181
164
  theme: StringConstructor;
182
165
  overlaps: import("vue").Prop<string[]>;
183
- fullHeight: {
184
- type: import("vue").PropType<boolean>;
185
- default: boolean;
186
- };
187
166
  class: import("vue").PropType<import("../../composables/component.js").ClassValue>;
188
167
  style: {
189
168
  type: import("vue").PropType<import("vue").StyleValue>;
@@ -192,10 +171,6 @@ export declare const VApp: {
192
171
  }, import("vue").ExtractPropTypes<{
193
172
  theme: StringConstructor;
194
173
  overlaps: import("vue").Prop<string[]>;
195
- fullHeight: {
196
- type: import("vue").PropType<boolean>;
197
- default: boolean;
198
- };
199
174
  class: import("vue").PropType<import("../../composables/component.js").ClassValue>;
200
175
  style: {
201
176
  type: import("vue").PropType<import("vue").StyleValue>;
@@ -7,12 +7,12 @@ import { makeComponentProps } from "../../composables/component.js";
7
7
  import { createLayout, makeLayoutProps } from "../../composables/layout.js";
8
8
  import { useRtl } from "../../composables/locale.js";
9
9
  import { makeThemeProps, provideTheme } from "../../composables/theme.js"; // Utilities
10
- import { genericComponent, propsFactory, useRender } from "../../util/index.js";
10
+ import { genericComponent, omit, propsFactory, useRender } from "../../util/index.js";
11
11
  export const makeVAppProps = propsFactory({
12
12
  ...makeComponentProps(),
13
- ...makeLayoutProps({
13
+ ...omit(makeLayoutProps({
14
14
  fullHeight: true
15
- }),
15
+ }), ['fullHeight']),
16
16
  ...makeThemeProps()
17
17
  }, 'VApp');
18
18
  export const VApp = genericComponent()({
@@ -1 +1 @@
1
- {"version":3,"file":"VApp.js","names":["makeComponentProps","createLayout","makeLayoutProps","useRtl","makeThemeProps","provideTheme","genericComponent","propsFactory","useRender","makeVAppProps","fullHeight","VApp","name","props","setup","_ref","slots","theme","layoutClasses","getLayoutItem","items","layoutRef","rtlClasses","_createElementVNode","_normalizeClass","themeClasses","value","class","_normalizeStyle","style","default"],"sources":["../../../src/components/VApp/VApp.tsx"],"sourcesContent":["// Styles\nimport './VApp.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { createLayout, makeLayoutProps } from '@/composables/layout'\nimport { useRtl } from '@/composables/locale'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { genericComponent, propsFactory, useRender } from '@/util'\n\nexport const makeVAppProps = propsFactory({\n ...makeComponentProps(),\n ...makeLayoutProps({ fullHeight: true }),\n ...makeThemeProps(),\n}, 'VApp')\n\nexport const VApp = genericComponent()({\n name: 'VApp',\n\n props: makeVAppProps(),\n\n setup (props, { slots }) {\n const theme = provideTheme(props)\n const { layoutClasses, getLayoutItem, items, layoutRef } = createLayout(props)\n const { rtlClasses } = useRtl()\n\n useRender(() => (\n <div\n ref={ layoutRef }\n class={[\n 'v-application',\n theme.themeClasses.value,\n layoutClasses.value,\n rtlClasses.value,\n props.class,\n ]}\n style={[\n props.style,\n ]}\n >\n <div class=\"v-application__wrap\">\n { slots.default?.() }\n </div>\n </div>\n ))\n\n return {\n getLayoutItem,\n items,\n theme,\n }\n },\n})\n\nexport type VApp = InstanceType<typeof VApp>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,YAAY,EAAEC,eAAe;AAAA,SAC7BC,MAAM;AAAA,SACNC,cAAc,EAAEC,YAAY,sCAErC;AAAA,SACSC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS;AAElD,OAAO,MAAMC,aAAa,GAAGF,YAAY,CAAC;EACxC,GAAGP,kBAAkB,CAAC,CAAC;EACvB,GAAGE,eAAe,CAAC;IAAEQ,UAAU,EAAE;EAAK,CAAC,CAAC;EACxC,GAAGN,cAAc,CAAC;AACpB,CAAC,EAAE,MAAM,CAAC;AAEV,OAAO,MAAMO,IAAI,GAAGL,gBAAgB,CAAC,CAAC,CAAC;EACrCM,IAAI,EAAE,MAAM;EAEZC,KAAK,EAAEJ,aAAa,CAAC,CAAC;EAEtBK,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrB,MAAME,KAAK,GAAGZ,YAAY,CAACQ,KAAK,CAAC;IACjC,MAAM;MAAEK,aAAa;MAAEC,aAAa;MAAEC,KAAK;MAAEC;IAAU,CAAC,GAAGpB,YAAY,CAACY,KAAK,CAAC;IAC9E,MAAM;MAAES;IAAW,CAAC,GAAGnB,MAAM,CAAC,CAAC;IAE/BK,SAAS,CAAC,MAAAe,mBAAA;MAAA,OAEAF,SAAS;MAAA,SAAAG,eAAA,CACR,CACL,eAAe,EACfP,KAAK,CAACQ,YAAY,CAACC,KAAK,EACxBR,aAAa,CAACQ,KAAK,EACnBJ,UAAU,CAACI,KAAK,EAChBb,KAAK,CAACc,KAAK,CACZ;MAAA,SAAAC,eAAA,CACM,CACLf,KAAK,CAACgB,KAAK,CACZ;IAAA,IAAAN,mBAAA;MAAA;IAAA,IAGGP,KAAK,CAACc,OAAO,GAAG,CAAC,IAGxB,CAAC;IAEF,OAAO;MACLX,aAAa;MACbC,KAAK;MACLH;IACF,CAAC;EACH;AACF,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"VApp.js","names":["makeComponentProps","createLayout","makeLayoutProps","useRtl","makeThemeProps","provideTheme","genericComponent","omit","propsFactory","useRender","makeVAppProps","fullHeight","VApp","name","props","setup","_ref","slots","theme","layoutClasses","getLayoutItem","items","layoutRef","rtlClasses","_createElementVNode","_normalizeClass","themeClasses","value","class","_normalizeStyle","style","default"],"sources":["../../../src/components/VApp/VApp.tsx"],"sourcesContent":["// Styles\nimport './VApp.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { createLayout, makeLayoutProps } from '@/composables/layout'\nimport { useRtl } from '@/composables/locale'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { genericComponent, omit, propsFactory, useRender } from '@/util'\n\nexport const makeVAppProps = propsFactory({\n ...makeComponentProps(),\n ...omit(makeLayoutProps({ fullHeight: true }), ['fullHeight']),\n ...makeThemeProps(),\n}, 'VApp')\n\nexport const VApp = genericComponent()({\n name: 'VApp',\n\n props: makeVAppProps(),\n\n setup (props, { slots }) {\n const theme = provideTheme(props)\n const { layoutClasses, getLayoutItem, items, layoutRef } = createLayout(props)\n const { rtlClasses } = useRtl()\n\n useRender(() => (\n <div\n ref={ layoutRef }\n class={[\n 'v-application',\n theme.themeClasses.value,\n layoutClasses.value,\n rtlClasses.value,\n props.class,\n ]}\n style={[\n props.style,\n ]}\n >\n <div class=\"v-application__wrap\">\n { slots.default?.() }\n </div>\n </div>\n ))\n\n return {\n getLayoutItem,\n items,\n theme,\n }\n },\n})\n\nexport type VApp = InstanceType<typeof VApp>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,YAAY,EAAEC,eAAe;AAAA,SAC7BC,MAAM;AAAA,SACNC,cAAc,EAAEC,YAAY,sCAErC;AAAA,SACSC,gBAAgB,EAAEC,IAAI,EAAEC,YAAY,EAAEC,SAAS;AAExD,OAAO,MAAMC,aAAa,GAAGF,YAAY,CAAC;EACxC,GAAGR,kBAAkB,CAAC,CAAC;EACvB,GAAGO,IAAI,CAACL,eAAe,CAAC;IAAES,UAAU,EAAE;EAAK,CAAC,CAAC,EAAE,CAAC,YAAY,CAAC,CAAC;EAC9D,GAAGP,cAAc,CAAC;AACpB,CAAC,EAAE,MAAM,CAAC;AAEV,OAAO,MAAMQ,IAAI,GAAGN,gBAAgB,CAAC,CAAC,CAAC;EACrCO,IAAI,EAAE,MAAM;EAEZC,KAAK,EAAEJ,aAAa,CAAC,CAAC;EAEtBK,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrB,MAAME,KAAK,GAAGb,YAAY,CAACS,KAAK,CAAC;IACjC,MAAM;MAAEK,aAAa;MAAEC,aAAa;MAAEC,KAAK;MAAEC;IAAU,CAAC,GAAGrB,YAAY,CAACa,KAAK,CAAC;IAC9E,MAAM;MAAES;IAAW,CAAC,GAAGpB,MAAM,CAAC,CAAC;IAE/BM,SAAS,CAAC,MAAAe,mBAAA;MAAA,OAEAF,SAAS;MAAA,SAAAG,eAAA,CACR,CACL,eAAe,EACfP,KAAK,CAACQ,YAAY,CAACC,KAAK,EACxBR,aAAa,CAACQ,KAAK,EACnBJ,UAAU,CAACI,KAAK,EAChBb,KAAK,CAACc,KAAK,CACZ;MAAA,SAAAC,eAAA,CACM,CACLf,KAAK,CAACgB,KAAK,CACZ;IAAA,IAAAN,mBAAA;MAAA;IAAA,IAGGP,KAAK,CAACc,OAAO,GAAG,CAAC,IAGxB,CAAC;IAEF,OAAO;MACLX,aAAa;MACbC,KAAK;MACLH;IACF,CAAC;EACH;AACF,CAAC,CAAC","ignoreList":[]}
@@ -1,4 +1,4 @@
1
- import { createElementVNode as _createElementVNode, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle, createVNode as _createVNode } from "vue";
1
+ import { createElementVNode as _createElementVNode, createVNode as _createVNode, normalizeClass as _normalizeClass, normalizeStyle as _normalizeStyle } from "vue";
2
2
  // Styles
3
3
  import "./VTable.css";
4
4
 
@@ -8,6 +8,7 @@ import { makeDensityProps, useDensity } from "../../composables/density.js";
8
8
  import { makeTagProps } from "../../composables/tag.js";
9
9
  import { makeThemeProps, provideTheme } from "../../composables/theme.js"; // Utilities
10
10
  import { convertToUnit, genericComponent, propsFactory, useRender } from "../../util/index.js"; // Types
11
+ import { VDefaultsProvider } from "../VDefaultsProvider/index.js";
11
12
  export const makeVTableProps = propsFactory({
12
13
  fixedHeader: Boolean,
13
14
  fixedFooter: Boolean,
@@ -37,26 +38,37 @@ export const VTable = genericComponent()({
37
38
  const {
38
39
  densityClasses
39
40
  } = useDensity(props);
40
- useRender(() => _createVNode(props.tag, {
41
- "class": _normalizeClass(['v-table', {
42
- 'v-table--fixed-height': !!props.height,
43
- 'v-table--fixed-header': props.fixedHeader,
44
- 'v-table--fixed-footer': props.fixedFooter,
45
- 'v-table--has-top': !!slots.top,
46
- 'v-table--has-bottom': !!slots.bottom,
47
- 'v-table--hover': props.hover,
48
- 'v-table--striped-even': props.striped === 'even',
49
- 'v-table--striped-odd': props.striped === 'odd'
50
- }, themeClasses.value, densityClasses.value, props.class]),
51
- "style": _normalizeStyle(props.style)
52
- }, {
53
- default: () => [slots.top?.(), slots.default ? _createElementVNode("div", {
54
- "class": "v-table__wrapper",
55
- "style": {
56
- height: convertToUnit(props.height)
41
+ useRender(() => {
42
+ const tableContentDefaults = {
43
+ VCheckboxBtn: {
44
+ density: props.density
57
45
  }
58
- }, [_createElementVNode("table", null, [slots.default()])]) : slots.wrapper?.(), slots.bottom?.()]
59
- }));
46
+ };
47
+ return _createVNode(props.tag, {
48
+ "class": _normalizeClass(['v-table', {
49
+ 'v-table--fixed-height': !!props.height,
50
+ 'v-table--fixed-header': props.fixedHeader,
51
+ 'v-table--fixed-footer': props.fixedFooter,
52
+ 'v-table--has-top': !!slots.top,
53
+ 'v-table--has-bottom': !!slots.bottom,
54
+ 'v-table--hover': props.hover,
55
+ 'v-table--striped-even': props.striped === 'even',
56
+ 'v-table--striped-odd': props.striped === 'odd'
57
+ }, themeClasses.value, densityClasses.value, props.class]),
58
+ "style": _normalizeStyle(props.style)
59
+ }, {
60
+ default: () => [slots.top?.(), _createVNode(VDefaultsProvider, {
61
+ "defaults": tableContentDefaults
62
+ }, {
63
+ default: () => [slots.default ? _createElementVNode("div", {
64
+ "class": "v-table__wrapper",
65
+ "style": {
66
+ height: convertToUnit(props.height)
67
+ }
68
+ }, [_createElementVNode("table", null, [slots.default()])]) : slots.wrapper?.()]
69
+ }), slots.bottom?.()]
70
+ });
71
+ });
60
72
  return {};
61
73
  }
62
74
  });
@@ -1 +1 @@
1
- {"version":3,"file":"VTable.js","names":["makeComponentProps","makeDensityProps","useDensity","makeTagProps","makeThemeProps","provideTheme","convertToUnit","genericComponent","propsFactory","useRender","makeVTableProps","fixedHeader","Boolean","fixedFooter","height","Number","String","hover","striped","type","default","validator","v","includes","VTable","name","props","setup","_ref","slots","emit","themeClasses","densityClasses","_createVNode","tag","_normalizeClass","top","bottom","value","class","_normalizeStyle","style","_createElementVNode","wrapper"],"sources":["../../../src/components/VTable/VTable.tsx"],"sourcesContent":["// Styles\nimport './VTable.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { convertToUnit, genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\n\nexport type VTableSlots = {\n default: never\n top: never\n bottom: never\n wrapper: never\n}\n\nexport type Striped = null | 'odd' | 'even'\n\nexport const makeVTableProps = propsFactory({\n fixedHeader: Boolean,\n fixedFooter: Boolean,\n height: [Number, String],\n hover: Boolean,\n striped: {\n type: String as PropType<Striped>,\n default: null,\n validator: (v: any) => ['even', 'odd'].includes(v),\n },\n\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n}, 'VTable')\n\nexport const VTable = genericComponent<VTableSlots>()({\n name: 'VTable',\n\n props: makeVTableProps(),\n\n setup (props, { slots, emit }) {\n const { themeClasses } = provideTheme(props)\n const { densityClasses } = useDensity(props)\n\n useRender(() => (\n <props.tag\n class={[\n 'v-table',\n {\n 'v-table--fixed-height': !!props.height,\n 'v-table--fixed-header': props.fixedHeader,\n 'v-table--fixed-footer': props.fixedFooter,\n 'v-table--has-top': !!slots.top,\n 'v-table--has-bottom': !!slots.bottom,\n 'v-table--hover': props.hover,\n 'v-table--striped-even': props.striped === 'even',\n 'v-table--striped-odd': props.striped === 'odd',\n },\n themeClasses.value,\n densityClasses.value,\n props.class,\n ]}\n style={ props.style }\n >\n { slots.top?.() }\n\n { slots.default ? (\n <div\n class=\"v-table__wrapper\"\n style={{ height: convertToUnit(props.height) }}\n >\n <table>\n { slots.default() }\n </table>\n </div>\n ) : slots.wrapper?.()}\n\n { slots.bottom?.() }\n </props.tag>\n ))\n\n return {}\n },\n})\n\nexport type VTable = InstanceType<typeof VTable>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,gBAAgB,EAAEC,UAAU;AAAA,SAC5BC,YAAY;AAAA,SACZC,cAAc,EAAEC,YAAY,sCAErC;AAAA,SACSC,aAAa,EAAEC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS,+BAEjE;AAYA,OAAO,MAAMC,eAAe,GAAGF,YAAY,CAAC;EAC1CG,WAAW,EAAEC,OAAO;EACpBC,WAAW,EAAED,OAAO;EACpBE,MAAM,EAAE,CAACC,MAAM,EAAEC,MAAM,CAAC;EACxBC,KAAK,EAAEL,OAAO;EACdM,OAAO,EAAE;IACPC,IAAI,EAAEH,MAA2B;IACjCI,OAAO,EAAE,IAAI;IACbC,SAAS,EAAGC,CAAM,IAAK,CAAC,MAAM,EAAE,KAAK,CAAC,CAACC,QAAQ,CAACD,CAAC;EACnD,CAAC;EAED,GAAGtB,kBAAkB,CAAC,CAAC;EACvB,GAAGC,gBAAgB,CAAC,CAAC;EACrB,GAAGE,YAAY,CAAC,CAAC;EACjB,GAAGC,cAAc,CAAC;AACpB,CAAC,EAAE,QAAQ,CAAC;AAEZ,OAAO,MAAMoB,MAAM,GAAGjB,gBAAgB,CAAc,CAAC,CAAC;EACpDkB,IAAI,EAAE,QAAQ;EAEdC,KAAK,EAAEhB,eAAe,CAAC,CAAC;EAExBiB,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAmB;IAAA,IAAjB;MAAEC,KAAK;MAAEC;IAAK,CAAC,GAAAF,IAAA;IAC3B,MAAM;MAAEG;IAAa,CAAC,GAAG1B,YAAY,CAACqB,KAAK,CAAC;IAC5C,MAAM;MAAEM;IAAe,CAAC,GAAG9B,UAAU,CAACwB,KAAK,CAAC;IAE5CjB,SAAS,CAAC,MAAAwB,YAAA,CAAAP,KAAA,CAAAQ,GAAA;MAAA,SAAAC,eAAA,CAEC,CACL,SAAS,EACT;QACE,uBAAuB,EAAE,CAAC,CAACT,KAAK,CAACZ,MAAM;QACvC,uBAAuB,EAAEY,KAAK,CAACf,WAAW;QAC1C,uBAAuB,EAAEe,KAAK,CAACb,WAAW;QAC1C,kBAAkB,EAAE,CAAC,CAACgB,KAAK,CAACO,GAAG;QAC/B,qBAAqB,EAAE,CAAC,CAACP,KAAK,CAACQ,MAAM;QACrC,gBAAgB,EAAEX,KAAK,CAACT,KAAK;QAC7B,uBAAuB,EAAES,KAAK,CAACR,OAAO,KAAK,MAAM;QACjD,sBAAsB,EAAEQ,KAAK,CAACR,OAAO,KAAK;MAC5C,CAAC,EACDa,YAAY,CAACO,KAAK,EAClBN,cAAc,CAACM,KAAK,EACpBZ,KAAK,CAACa,KAAK,CACZ;MAAA,SAAAC,eAAA,CACOd,KAAK,CAACe,KAAK;IAAA;MAAArB,OAAA,EAAAA,CAAA,MAEjBS,KAAK,CAACO,GAAG,GAAG,CAAC,EAEbP,KAAK,CAACT,OAAO,GAAAsB,mBAAA;QAAA;QAAA,SAGJ;UAAE5B,MAAM,EAAER,aAAa,CAACoB,KAAK,CAACZ,MAAM;QAAE;MAAC,IAAA4B,mBAAA,iBAG1Cb,KAAK,CAACT,OAAO,CAAC,CAAC,OAGnBS,KAAK,CAACc,OAAO,GAAG,CAAC,EAEnBd,KAAK,CAACQ,MAAM,GAAG,CAAC;IAAA,EAErB,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"VTable.js","names":["makeComponentProps","makeDensityProps","useDensity","makeTagProps","makeThemeProps","provideTheme","convertToUnit","genericComponent","propsFactory","useRender","VDefaultsProvider","makeVTableProps","fixedHeader","Boolean","fixedFooter","height","Number","String","hover","striped","type","default","validator","v","includes","VTable","name","props","setup","_ref","slots","emit","themeClasses","densityClasses","tableContentDefaults","VCheckboxBtn","density","_createVNode","tag","_normalizeClass","top","bottom","value","class","_normalizeStyle","style","_createElementVNode","wrapper"],"sources":["../../../src/components/VTable/VTable.tsx"],"sourcesContent":["// Styles\nimport './VTable.sass'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { makeDensityProps, useDensity } from '@/composables/density'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\n\n// Utilities\nimport { convertToUnit, genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport { VDefaultsProvider } from '../VDefaultsProvider'\n\nexport type VTableSlots = {\n default: never\n top: never\n bottom: never\n wrapper: never\n}\n\nexport type Striped = null | 'odd' | 'even'\n\nexport const makeVTableProps = propsFactory({\n fixedHeader: Boolean,\n fixedFooter: Boolean,\n height: [Number, String],\n hover: Boolean,\n striped: {\n type: String as PropType<Striped>,\n default: null,\n validator: (v: any) => ['even', 'odd'].includes(v),\n },\n\n ...makeComponentProps(),\n ...makeDensityProps(),\n ...makeTagProps(),\n ...makeThemeProps(),\n}, 'VTable')\n\nexport const VTable = genericComponent<VTableSlots>()({\n name: 'VTable',\n\n props: makeVTableProps(),\n\n setup (props, { slots, emit }) {\n const { themeClasses } = provideTheme(props)\n const { densityClasses } = useDensity(props)\n\n useRender(() => {\n const tableContentDefaults = {\n VCheckboxBtn: {\n density: props.density,\n },\n }\n\n return (\n <props.tag\n class={[\n 'v-table',\n {\n 'v-table--fixed-height': !!props.height,\n 'v-table--fixed-header': props.fixedHeader,\n 'v-table--fixed-footer': props.fixedFooter,\n 'v-table--has-top': !!slots.top,\n 'v-table--has-bottom': !!slots.bottom,\n 'v-table--hover': props.hover,\n 'v-table--striped-even': props.striped === 'even',\n 'v-table--striped-odd': props.striped === 'odd',\n },\n themeClasses.value,\n densityClasses.value,\n props.class,\n ]}\n style={ props.style }\n >\n { slots.top?.() }\n <VDefaultsProvider defaults={ tableContentDefaults }>\n { slots.default ? (\n <div\n class=\"v-table__wrapper\"\n style={{ height: convertToUnit(props.height) }}\n >\n <table>\n { slots.default() }\n </table>\n </div>\n ) : slots.wrapper?.()}\n </VDefaultsProvider>\n\n { slots.bottom?.() }\n </props.tag>\n )\n })\n\n return {}\n },\n})\n\nexport type VTable = InstanceType<typeof VTable>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,kBAAkB;AAAA,SAClBC,gBAAgB,EAAEC,UAAU;AAAA,SAC5BC,YAAY;AAAA,SACZC,cAAc,EAAEC,YAAY,sCAErC;AAAA,SACSC,aAAa,EAAEC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS,+BAEjE;AAAA,SAESC,iBAAiB;AAW1B,OAAO,MAAMC,eAAe,GAAGH,YAAY,CAAC;EAC1CI,WAAW,EAAEC,OAAO;EACpBC,WAAW,EAAED,OAAO;EACpBE,MAAM,EAAE,CAACC,MAAM,EAAEC,MAAM,CAAC;EACxBC,KAAK,EAAEL,OAAO;EACdM,OAAO,EAAE;IACPC,IAAI,EAAEH,MAA2B;IACjCI,OAAO,EAAE,IAAI;IACbC,SAAS,EAAGC,CAAM,IAAK,CAAC,MAAM,EAAE,KAAK,CAAC,CAACC,QAAQ,CAACD,CAAC;EACnD,CAAC;EAED,GAAGvB,kBAAkB,CAAC,CAAC;EACvB,GAAGC,gBAAgB,CAAC,CAAC;EACrB,GAAGE,YAAY,CAAC,CAAC;EACjB,GAAGC,cAAc,CAAC;AACpB,CAAC,EAAE,QAAQ,CAAC;AAEZ,OAAO,MAAMqB,MAAM,GAAGlB,gBAAgB,CAAc,CAAC,CAAC;EACpDmB,IAAI,EAAE,QAAQ;EAEdC,KAAK,EAAEhB,eAAe,CAAC,CAAC;EAExBiB,KAAKA,CAAED,KAAK,EAAAE,IAAA,EAAmB;IAAA,IAAjB;MAAEC,KAAK;MAAEC;IAAK,CAAC,GAAAF,IAAA;IAC3B,MAAM;MAAEG;IAAa,CAAC,GAAG3B,YAAY,CAACsB,KAAK,CAAC;IAC5C,MAAM;MAAEM;IAAe,CAAC,GAAG/B,UAAU,CAACyB,KAAK,CAAC;IAE5ClB,SAAS,CAAC,MAAM;MACd,MAAMyB,oBAAoB,GAAG;QAC3BC,YAAY,EAAE;UACZC,OAAO,EAAET,KAAK,CAACS;QACjB;MACF,CAAC;MAED,OAAAC,YAAA,CAAAV,KAAA,CAAAW,GAAA;QAAA,SAAAC,eAAA,CAEW,CACL,SAAS,EACT;UACE,uBAAuB,EAAE,CAAC,CAACZ,KAAK,CAACZ,MAAM;UACvC,uBAAuB,EAAEY,KAAK,CAACf,WAAW;UAC1C,uBAAuB,EAAEe,KAAK,CAACb,WAAW;UAC1C,kBAAkB,EAAE,CAAC,CAACgB,KAAK,CAACU,GAAG;UAC/B,qBAAqB,EAAE,CAAC,CAACV,KAAK,CAACW,MAAM;UACrC,gBAAgB,EAAEd,KAAK,CAACT,KAAK;UAC7B,uBAAuB,EAAES,KAAK,CAACR,OAAO,KAAK,MAAM;UACjD,sBAAsB,EAAEQ,KAAK,CAACR,OAAO,KAAK;QAC5C,CAAC,EACDa,YAAY,CAACU,KAAK,EAClBT,cAAc,CAACS,KAAK,EACpBf,KAAK,CAACgB,KAAK,CACZ;QAAA,SAAAC,eAAA,CACOjB,KAAK,CAACkB,KAAK;MAAA;QAAAxB,OAAA,EAAAA,CAAA,MAEjBS,KAAK,CAACU,GAAG,GAAG,CAAC,EAAAH,YAAA,CAAA3B,iBAAA;UAAA,YACewB;QAAoB;UAAAb,OAAA,EAAAA,CAAA,MAC9CS,KAAK,CAACT,OAAO,GAAAyB,mBAAA;YAAA;YAAA,SAGJ;cAAE/B,MAAM,EAAET,aAAa,CAACqB,KAAK,CAACZ,MAAM;YAAE;UAAC,IAAA+B,mBAAA,iBAG1ChB,KAAK,CAACT,OAAO,CAAC,CAAC,OAGnBS,KAAK,CAACiB,OAAO,GAAG,CAAC;QAAA,IAGrBjB,KAAK,CAACW,MAAM,GAAG,CAAC;MAAA;IAGxB,CAAC,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC","ignoreList":[]}
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.9.3-master.2025-07-31";
19
+ export const version = "3.9.3-master.2025-08-01";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.js";
@@ -2606,78 +2606,77 @@ declare module 'vue' {
2606
2606
  }
2607
2607
  export interface GlobalComponents {
2608
2608
  VApp: typeof import('vuetify/components')['VApp']
2609
- VAlert: typeof import('vuetify/components')['VAlert']
2610
- VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2611
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2609
+ VBanner: typeof import('vuetify/components')['VBanner']
2610
+ VBannerActions: typeof import('vuetify/components')['VBannerActions']
2611
+ VBannerText: typeof import('vuetify/components')['VBannerText']
2612
2612
  VAppBar: typeof import('vuetify/components')['VAppBar']
2613
2613
  VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
2614
2614
  VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
2615
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
2616
+ VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2615
2617
  VAvatar: typeof import('vuetify/components')['VAvatar']
2616
- VBanner: typeof import('vuetify/components')['VBanner']
2617
- VBannerActions: typeof import('vuetify/components')['VBannerActions']
2618
- VBannerText: typeof import('vuetify/components')['VBannerText']
2619
- VBadge: typeof import('vuetify/components')['VBadge']
2618
+ VBtn: typeof import('vuetify/components')['VBtn']
2619
+ VAlert: typeof import('vuetify/components')['VAlert']
2620
+ VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
2621
+ VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2620
2622
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
2623
+ VBadge: typeof import('vuetify/components')['VBadge']
2621
2624
  VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
2622
2625
  VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
2623
2626
  VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
2624
- VBtn: typeof import('vuetify/components')['VBtn']
2625
- VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
2626
- VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2627
- VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
2628
- VCard: typeof import('vuetify/components')['VCard']
2629
- VCardActions: typeof import('vuetify/components')['VCardActions']
2630
- VCardItem: typeof import('vuetify/components')['VCardItem']
2631
- VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2632
- VCardText: typeof import('vuetify/components')['VCardText']
2633
- VCardTitle: typeof import('vuetify/components')['VCardTitle']
2634
- VCarousel: typeof import('vuetify/components')['VCarousel']
2635
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2636
2627
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
2637
2628
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
2638
2629
  VChip: typeof import('vuetify/components')['VChip']
2639
2630
  VChipGroup: typeof import('vuetify/components')['VChipGroup']
2640
- VCode: typeof import('vuetify/components')['VCode']
2631
+ VCombobox: typeof import('vuetify/components')['VCombobox']
2632
+ VColorPicker: typeof import('vuetify/components')['VColorPicker']
2633
+ VDataTable: typeof import('vuetify/components')['VDataTable']
2634
+ VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2635
+ VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
2636
+ VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
2637
+ VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2638
+ VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2639
+ VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2640
+ VCounter: typeof import('vuetify/components')['VCounter']
2641
+ VDialog: typeof import('vuetify/components')['VDialog']
2642
+ VCarousel: typeof import('vuetify/components')['VCarousel']
2643
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
2641
2644
  VDatePicker: typeof import('vuetify/components')['VDatePicker']
2642
2645
  VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
2643
2646
  VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
2644
2647
  VDatePickerMonth: typeof import('vuetify/components')['VDatePickerMonth']
2645
2648
  VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
2646
2649
  VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
2647
- VColorPicker: typeof import('vuetify/components')['VColorPicker']
2648
- VCombobox: typeof import('vuetify/components')['VCombobox']
2649
- VCounter: typeof import('vuetify/components')['VCounter']
2650
2650
  VDivider: typeof import('vuetify/components')['VDivider']
2651
+ VFab: typeof import('vuetify/components')['VFab']
2651
2652
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
2652
2653
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
2653
2654
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
2654
2655
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
2655
- VDialog: typeof import('vuetify/components')['VDialog']
2656
- VDataTable: typeof import('vuetify/components')['VDataTable']
2657
- VDataTableHeaders: typeof import('vuetify/components')['VDataTableHeaders']
2658
- VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
2659
- VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
2660
- VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
2661
- VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
2662
- VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
2663
- VFab: typeof import('vuetify/components')['VFab']
2664
- VEmptyState: typeof import('vuetify/components')['VEmptyState']
2656
+ VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
2657
+ VCard: typeof import('vuetify/components')['VCard']
2658
+ VCardActions: typeof import('vuetify/components')['VCardActions']
2659
+ VCardItem: typeof import('vuetify/components')['VCardItem']
2660
+ VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
2661
+ VCardText: typeof import('vuetify/components')['VCardText']
2662
+ VCardTitle: typeof import('vuetify/components')['VCardTitle']
2665
2663
  VField: typeof import('vuetify/components')['VField']
2666
2664
  VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
2667
- VFooter: typeof import('vuetify/components')['VFooter']
2668
2665
  VFileInput: typeof import('vuetify/components')['VFileInput']
2669
- VImg: typeof import('vuetify/components')['VImg']
2666
+ VCode: typeof import('vuetify/components')['VCode']
2667
+ VFooter: typeof import('vuetify/components')['VFooter']
2670
2668
  VIcon: typeof import('vuetify/components')['VIcon']
2671
2669
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
2672
2670
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
2673
2671
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
2674
2672
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
2675
- VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2676
- VKbd: typeof import('vuetify/components')['VKbd']
2677
- VLabel: typeof import('vuetify/components')['VLabel']
2673
+ VImg: typeof import('vuetify/components')['VImg']
2678
2674
  VInput: typeof import('vuetify/components')['VInput']
2675
+ VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
2679
2676
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
2680
2677
  VItem: typeof import('vuetify/components')['VItem']
2678
+ VLabel: typeof import('vuetify/components')['VLabel']
2679
+ VKbd: typeof import('vuetify/components')['VKbd']
2681
2680
  VList: typeof import('vuetify/components')['VList']
2682
2681
  VListGroup: typeof import('vuetify/components')['VListGroup']
2683
2682
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -2687,79 +2686,78 @@ declare module 'vue' {
2687
2686
  VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
2688
2687
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
2689
2688
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
2689
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2690
2690
  VMain: typeof import('vuetify/components')['VMain']
2691
+ VOtpInput: typeof import('vuetify/components')['VOtpInput']
2692
+ VNumberInput: typeof import('vuetify/components')['VNumberInput']
2693
+ VOverlay: typeof import('vuetify/components')['VOverlay']
2691
2694
  VMessages: typeof import('vuetify/components')['VMessages']
2692
2695
  VMenu: typeof import('vuetify/components')['VMenu']
2693
- VPagination: typeof import('vuetify/components')['VPagination']
2694
- VOverlay: typeof import('vuetify/components')['VOverlay']
2695
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
2696
- VNumberInput: typeof import('vuetify/components')['VNumberInput']
2697
- VOtpInput: typeof import('vuetify/components')['VOtpInput']
2698
- VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2699
2696
  VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
2697
+ VPagination: typeof import('vuetify/components')['VPagination']
2700
2698
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
2701
2699
  VRating: typeof import('vuetify/components')['VRating']
2700
+ VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
2702
2701
  VSelect: typeof import('vuetify/components')['VSelect']
2703
- VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2704
2702
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
2705
2703
  VSheet: typeof import('vuetify/components')['VSheet']
2706
2704
  VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
2705
+ VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
2707
2706
  VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
2708
2707
  VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
2709
2708
  VSlider: typeof import('vuetify/components')['VSlider']
2710
2709
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
2710
+ VSwitch: typeof import('vuetify/components')['VSwitch']
2711
2711
  VStepper: typeof import('vuetify/components')['VStepper']
2712
2712
  VStepperActions: typeof import('vuetify/components')['VStepperActions']
2713
2713
  VStepperHeader: typeof import('vuetify/components')['VStepperHeader']
2714
2714
  VStepperItem: typeof import('vuetify/components')['VStepperItem']
2715
2715
  VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
2716
2716
  VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
2717
- VSwitch: typeof import('vuetify/components')['VSwitch']
2717
+ VTable: typeof import('vuetify/components')['VTable']
2718
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
2718
2719
  VTab: typeof import('vuetify/components')['VTab']
2719
2720
  VTabs: typeof import('vuetify/components')['VTabs']
2720
2721
  VTabsWindow: typeof import('vuetify/components')['VTabsWindow']
2721
2722
  VTabsWindowItem: typeof import('vuetify/components')['VTabsWindowItem']
2722
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
2723
- VTextarea: typeof import('vuetify/components')['VTextarea']
2724
2723
  VTextField: typeof import('vuetify/components')['VTextField']
2725
- VTable: typeof import('vuetify/components')['VTable']
2726
- VTimePicker: typeof import('vuetify/components')['VTimePicker']
2727
- VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2728
- VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2729
2724
  VToolbar: typeof import('vuetify/components')['VToolbar']
2730
2725
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
2731
2726
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
2727
+ VTimePicker: typeof import('vuetify/components')['VTimePicker']
2728
+ VTimePickerClock: typeof import('vuetify/components')['VTimePickerClock']
2729
+ VTimePickerControls: typeof import('vuetify/components')['VTimePickerControls']
2730
+ VTextarea: typeof import('vuetify/components')['VTextarea']
2732
2731
  VTimeline: typeof import('vuetify/components')['VTimeline']
2733
2732
  VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
2734
- VTooltip: typeof import('vuetify/components')['VTooltip']
2733
+ VWindow: typeof import('vuetify/components')['VWindow']
2734
+ VWindowItem: typeof import('vuetify/components')['VWindowItem']
2735
2735
  VTreeview: typeof import('vuetify/components')['VTreeview']
2736
2736
  VTreeviewItem: typeof import('vuetify/components')['VTreeviewItem']
2737
2737
  VTreeviewGroup: typeof import('vuetify/components')['VTreeviewGroup']
2738
- VWindow: typeof import('vuetify/components')['VWindow']
2739
- VWindowItem: typeof import('vuetify/components')['VWindowItem']
2740
- VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2738
+ VTooltip: typeof import('vuetify/components')['VTooltip']
2741
2739
  VDataIterator: typeof import('vuetify/components')['VDataIterator']
2742
- VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2740
+ VConfirmEdit: typeof import('vuetify/components')['VConfirmEdit']
2743
2741
  VForm: typeof import('vuetify/components')['VForm']
2742
+ VEmptyState: typeof import('vuetify/components')['VEmptyState']
2743
+ VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
2744
2744
  VContainer: typeof import('vuetify/components')['VContainer']
2745
2745
  VCol: typeof import('vuetify/components')['VCol']
2746
2746
  VRow: typeof import('vuetify/components')['VRow']
2747
2747
  VSpacer: typeof import('vuetify/components')['VSpacer']
2748
- VHover: typeof import('vuetify/components')['VHover']
2749
- VLazy: typeof import('vuetify/components')['VLazy']
2748
+ VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2750
2749
  VLayout: typeof import('vuetify/components')['VLayout']
2751
2750
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
2752
- VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
2751
+ VLazy: typeof import('vuetify/components')['VLazy']
2753
2752
  VNoSsr: typeof import('vuetify/components')['VNoSsr']
2754
2753
  VParallax: typeof import('vuetify/components')['VParallax']
2755
2754
  VRadio: typeof import('vuetify/components')['VRadio']
2756
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2757
2755
  VResponsive: typeof import('vuetify/components')['VResponsive']
2758
- VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2756
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
2759
2757
  VSparkline: typeof import('vuetify/components')['VSparkline']
2758
+ VSnackbarQueue: typeof import('vuetify/components')['VSnackbarQueue']
2760
2759
  VSpeedDial: typeof import('vuetify/components')['VSpeedDial']
2761
2760
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
2762
- VValidation: typeof import('vuetify/components')['VValidation']
2763
2761
  VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
2764
2762
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
2765
2763
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
@@ -2777,22 +2775,23 @@ declare module 'vue' {
2777
2775
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
2778
2776
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
2779
2777
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
2780
- VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2778
+ VValidation: typeof import('vuetify/components')['VValidation']
2779
+ VHover: typeof import('vuetify/components')['VHover']
2781
2780
  VCalendar: typeof import('vuetify/labs/components')['VCalendar']
2782
2781
  VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
2783
2782
  VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
2784
2783
  VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
2785
2784
  VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
2786
2785
  VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
2786
+ VPicker: typeof import('vuetify/labs/components')['VPicker']
2787
+ VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2788
+ VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2789
+ VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2787
2790
  VIconBtn: typeof import('vuetify/labs/components')['VIconBtn']
2791
+ VHotkey: typeof import('vuetify/labs/components')['VHotkey']
2788
2792
  VPie: typeof import('vuetify/labs/components')['VPie']
2789
2793
  VPieSegment: typeof import('vuetify/labs/components')['VPieSegment']
2790
2794
  VPieTooltip: typeof import('vuetify/labs/components')['VPieTooltip']
2791
- VFileUpload: typeof import('vuetify/labs/components')['VFileUpload']
2792
- VFileUploadItem: typeof import('vuetify/labs/components')['VFileUploadItem']
2793
- VPicker: typeof import('vuetify/labs/components')['VPicker']
2794
- VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
2795
- VHotkey: typeof import('vuetify/labs/components')['VHotkey']
2796
2795
  VStepperVertical: typeof import('vuetify/labs/components')['VStepperVertical']
2797
2796
  VStepperVerticalItem: typeof import('vuetify/labs/components')['VStepperVerticalItem']
2798
2797
  VStepperVerticalActions: typeof import('vuetify/labs/components')['VStepperVerticalActions']
@@ -2802,6 +2801,7 @@ declare module 'vue' {
2802
2801
  VDateInput: typeof import('vuetify/labs/components')['VDateInput']
2803
2802
  VMaskInput: typeof import('vuetify/labs/components')['VMaskInput']
2804
2803
  VPullToRefresh: typeof import('vuetify/labs/components')['VPullToRefresh']
2804
+ VColorInput: typeof import('vuetify/labs/components')['VColorInput']
2805
2805
  }
2806
2806
  export interface GlobalDirectives {
2807
2807
  vClickOutside: typeof import('vuetify/directives')['ClickOutside']
package/lib/framework.js CHANGED
@@ -109,7 +109,7 @@ export function createVuetify() {
109
109
  };
110
110
  });
111
111
  }
112
- export const version = "3.9.3-master.2025-07-31";
112
+ export const version = "3.9.3-master.2025-08-01";
113
113
  createVuetify.version = version;
114
114
 
115
115
  // Vue's inject() can only be used in setup
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.9.3-master.2025-07-31",
4
+ "version": "3.9.3-master.2025-08-01",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"