@vuetify/nightly 3.8.3-master.2025-04-29 → 3.8.3-master.2025-05-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.
Files changed (60) hide show
  1. package/CHANGELOG.md +24 -3
  2. package/dist/json/attributes.json +1686 -1682
  3. package/dist/json/importMap-labs.json +24 -24
  4. package/dist/json/importMap.json +128 -128
  5. package/dist/json/tags.json +1 -0
  6. package/dist/json/web-types.json +3486 -3476
  7. package/dist/vuetify-labs.cjs +47 -24
  8. package/dist/vuetify-labs.css +3884 -3888
  9. package/dist/vuetify-labs.d.ts +4043 -859
  10. package/dist/vuetify-labs.esm.js +47 -24
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +47 -24
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +20 -17
  15. package/dist/vuetify.cjs.map +1 -1
  16. package/dist/vuetify.css +2938 -2942
  17. package/dist/vuetify.d.ts +4021 -857
  18. package/dist/vuetify.esm.js +20 -17
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +20 -17
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +10 -10
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/components/VAutocomplete/VAutocomplete.d.ts +792 -74
  26. package/lib/components/VBadge/VBadge.d.ts +22 -46
  27. package/lib/components/VBottomSheet/VBottomSheet.d.ts +1434 -80
  28. package/lib/components/VCombobox/VCombobox.d.ts +792 -74
  29. package/lib/components/VCounter/VCounter.d.ts +22 -46
  30. package/lib/components/VDataIterator/VDataIterator.d.ts +22 -46
  31. package/lib/components/VDataTable/composables/select.js +1 -1
  32. package/lib/components/VDataTable/composables/select.js.map +1 -1
  33. package/lib/components/VDialog/VDialog.d.ts +1048 -146
  34. package/lib/components/VDialog/VDialog.js.map +1 -1
  35. package/lib/components/VFab/VFab.d.ts +22 -46
  36. package/lib/components/VImg/VImg.d.ts +22 -49
  37. package/lib/components/VLazy/VLazy.d.ts +22 -46
  38. package/lib/components/VMenu/VMenu.d.ts +1048 -146
  39. package/lib/components/VMenu/VMenu.js.map +1 -1
  40. package/lib/components/VMessages/VMessages.d.ts +22 -46
  41. package/lib/components/VOverlay/VOverlay.d.ts +22 -49
  42. package/lib/components/VSelect/VSelect.d.ts +1232 -90
  43. package/lib/components/VSnackbar/VSnackbar.d.ts +58 -109
  44. package/lib/components/VSnackbarQueue/VSnackbarQueue.d.ts +22 -46
  45. package/lib/components/VSpeedDial/VSpeedDial.d.ts +1434 -80
  46. package/lib/components/VTable/VTable.css +2 -6
  47. package/lib/components/VTable/VTable.sass +4 -22
  48. package/lib/components/VTooltip/VTooltip.d.ts +58 -109
  49. package/lib/components/VTooltip/VTooltip.js +2 -2
  50. package/lib/components/VTooltip/VTooltip.js.map +1 -1
  51. package/lib/composables/transition.d.ts +10 -20
  52. package/lib/composables/transition.js +15 -12
  53. package/lib/composables/transition.js.map +1 -1
  54. package/lib/entry-bundler.js +1 -1
  55. package/lib/framework.d.ts +93 -132
  56. package/lib/framework.js +1 -1
  57. package/lib/labs/VDateInput/VDateInput.d.ts +41 -4
  58. package/lib/labs/VDateInput/VDateInput.js +27 -7
  59. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  60. package/package.json +1 -1
@@ -1,34 +1,24 @@
1
- import type { Component, FunctionalComponent, PropType, TransitionProps } from 'vue';
1
+ import type { Component, FunctionalComponent, Prop, TransitionProps } from 'vue';
2
2
  export declare const makeTransitionProps: <Defaults extends {
3
3
  transition?: unknown;
4
4
  } = {}>(defaults?: Defaults | undefined) => {
5
- transition: unknown extends Defaults["transition"] ? {
6
- type: PropType<string | boolean | (TransitionProps & {
5
+ transition: unknown extends Defaults["transition"] ? Prop<string | boolean | (TransitionProps & {
6
+ component?: Component;
7
+ }) | null> : {
8
+ type: import("vue").PropType<unknown extends Defaults["transition"] ? string | boolean | (TransitionProps & {
7
9
  component?: Component;
8
- })>;
9
- default: string;
10
- validator: (val: unknown) => boolean;
11
- } : Omit<{
12
- type: PropType<string | boolean | (TransitionProps & {
10
+ }) | null : string | boolean | (TransitionProps & {
13
11
  component?: Component;
14
- })>;
15
- default: string;
16
- validator: (val: unknown) => boolean;
17
- }, "type" | "default"> & {
18
- type: PropType<unknown extends Defaults["transition"] ? string | boolean | (TransitionProps & {
19
- component?: Component;
20
- }) : string | boolean | (TransitionProps & {
21
- component?: Component;
22
- }) | Defaults["transition"]>;
12
+ }) | Defaults["transition"] | null>;
23
13
  default: unknown extends Defaults["transition"] ? string | boolean | (TransitionProps & {
24
14
  component?: Component;
25
- }) : NonNullable<string | boolean | (TransitionProps & {
15
+ }) | null : NonNullable<string | boolean | (TransitionProps & {
26
16
  component?: Component;
27
- })> | Defaults["transition"];
17
+ }) | null> | Defaults["transition"];
28
18
  };
29
19
  };
30
20
  interface MaybeTransitionProps extends TransitionProps {
31
- transition?: string | boolean | TransitionProps & {
21
+ transition?: null | string | boolean | TransitionProps & {
32
22
  component?: any;
33
23
  };
34
24
  disabled?: boolean;
@@ -1,9 +1,9 @@
1
1
  // Utilities
2
2
  import { h, mergeProps, Transition, TransitionGroup } from 'vue';
3
- import { propsFactory } from "../util/index.js"; // Types
3
+ import { isObject, propsFactory } from "../util/index.js"; // Types
4
4
  export const makeTransitionProps = propsFactory({
5
5
  transition: {
6
- type: [Boolean, String, Object],
6
+ type: null,
7
7
  default: 'fade-transition',
8
8
  validator: val => val !== true
9
9
  }
@@ -21,15 +21,18 @@ export const MaybeTransition = (props, _ref) => {
21
21
  const {
22
22
  component = group ? TransitionGroup : Transition,
23
23
  ...customProps
24
- } = typeof transition === 'object' ? transition : {};
25
- return h(component, mergeProps(typeof transition === 'string' ? {
26
- name: disabled ? '' : transition
27
- } : customProps, typeof transition === 'string' ? {} : Object.fromEntries(Object.entries({
28
- disabled,
29
- group
30
- }).filter(_ref2 => {
31
- let [_, v] = _ref2;
32
- return v !== undefined;
33
- })), rest), slots);
24
+ } = isObject(transition) ? transition : {};
25
+ let transitionProps;
26
+ if (isObject(transition)) {
27
+ transitionProps = mergeProps(customProps, JSON.parse(JSON.stringify({
28
+ disabled,
29
+ group
30
+ })), rest);
31
+ } else {
32
+ transitionProps = mergeProps({
33
+ name: disabled || !transition ? '' : transition
34
+ }, rest);
35
+ }
36
+ return h(component, transitionProps, slots);
34
37
  };
35
38
  //# sourceMappingURL=transition.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"transition.js","names":["h","mergeProps","Transition","TransitionGroup","propsFactory","makeTransitionProps","transition","type","Boolean","String","Object","default","validator","val","MaybeTransition","props","_ref","slots","disabled","group","rest","component","customProps","name","fromEntries","entries","filter","_ref2","_","v","undefined"],"sources":["../../src/composables/transition.ts"],"sourcesContent":["// Utilities\nimport { h, mergeProps, Transition, TransitionGroup } from 'vue'\nimport { propsFactory } from '@/util'\n\n// Types\nimport type { Component, FunctionalComponent, PropType, TransitionProps } from 'vue'\n\nexport const makeTransitionProps = propsFactory({\n transition: {\n type: [Boolean, String, Object] as PropType<string | boolean | TransitionProps & { component?: Component }>,\n default: 'fade-transition',\n validator: val => val !== true,\n },\n}, 'transition')\n\ninterface MaybeTransitionProps extends TransitionProps {\n transition?: string | boolean | TransitionProps & { component?: any }\n disabled?: boolean\n group?: boolean\n}\n\nexport const MaybeTransition: FunctionalComponent<MaybeTransitionProps> = (props, { slots }) => {\n const { transition, disabled, group, ...rest } = props\n\n const {\n component = group ? TransitionGroup : Transition,\n ...customProps\n } = typeof transition === 'object' ? transition : {}\n\n return h(\n component,\n mergeProps(\n typeof transition === 'string'\n ? { name: disabled ? '' : transition }\n : customProps as any,\n typeof transition === 'string'\n ? {}\n : Object.fromEntries(Object.entries({ disabled, group }).filter(([_, v]) => v !== undefined)),\n rest as any,\n ),\n slots\n )\n}\n"],"mappings":"AAAA;AACA,SAASA,CAAC,EAAEC,UAAU,EAAEC,UAAU,EAAEC,eAAe,QAAQ,KAAK;AAAA,SACvDC,YAAY,4BAErB;AAGA,OAAO,MAAMC,mBAAmB,GAAGD,YAAY,CAAC;EAC9CE,UAAU,EAAE;IACVC,IAAI,EAAE,CAACC,OAAO,EAAEC,MAAM,EAAEC,MAAM,CAA6E;IAC3GC,OAAO,EAAE,iBAAiB;IAC1BC,SAAS,EAAEC,GAAG,IAAIA,GAAG,KAAK;EAC5B;AACF,CAAC,EAAE,YAAY,CAAC;AAQhB,OAAO,MAAMC,eAA0D,GAAGA,CAACC,KAAK,EAAAC,IAAA,KAAgB;EAAA,IAAd;IAAEC;EAAM,CAAC,GAAAD,IAAA;EACzF,MAAM;IAAEV,UAAU;IAAEY,QAAQ;IAAEC,KAAK;IAAE,GAAGC;EAAK,CAAC,GAAGL,KAAK;EAEtD,MAAM;IACJM,SAAS,GAAGF,KAAK,GAAGhB,eAAe,GAAGD,UAAU;IAChD,GAAGoB;EACL,CAAC,GAAG,OAAOhB,UAAU,KAAK,QAAQ,GAAGA,UAAU,GAAG,CAAC,CAAC;EAEpD,OAAON,CAAC,CACNqB,SAAS,EACTpB,UAAU,CACR,OAAOK,UAAU,KAAK,QAAQ,GAC1B;IAAEiB,IAAI,EAAEL,QAAQ,GAAG,EAAE,GAAGZ;EAAW,CAAC,GACpCgB,WAAkB,EACtB,OAAOhB,UAAU,KAAK,QAAQ,GAC1B,CAAC,CAAC,GACFI,MAAM,CAACc,WAAW,CAACd,MAAM,CAACe,OAAO,CAAC;IAAEP,QAAQ;IAAEC;EAAM,CAAC,CAAC,CAACO,MAAM,CAACC,KAAA;IAAA,IAAC,CAACC,CAAC,EAAEC,CAAC,CAAC,GAAAF,KAAA;IAAA,OAAKE,CAAC,KAAKC,SAAS;EAAA,EAAC,CAAC,EAC/FV,IACF,CAAC,EACDH,KACF,CAAC;AACH,CAAC","ignoreList":[]}
1
+ {"version":3,"file":"transition.js","names":["h","mergeProps","Transition","TransitionGroup","isObject","propsFactory","makeTransitionProps","transition","type","default","validator","val","MaybeTransition","props","_ref","slots","disabled","group","rest","component","customProps","transitionProps","JSON","parse","stringify","name"],"sources":["../../src/composables/transition.ts"],"sourcesContent":["// Utilities\nimport { h, mergeProps, Transition, TransitionGroup } from 'vue'\nimport { isObject, propsFactory } from '@/util'\n\n// Types\nimport type { Component, FunctionalComponent, Prop, TransitionProps } from 'vue'\n\nexport const makeTransitionProps = propsFactory({\n transition: {\n type: null,\n default: 'fade-transition',\n validator: val => val !== true,\n } as Prop<null | string | boolean | TransitionProps & { component?: Component }>,\n}, 'transition')\n\ninterface MaybeTransitionProps extends TransitionProps {\n transition?: null | string | boolean | TransitionProps & { component?: any }\n disabled?: boolean\n group?: boolean\n}\n\nexport const MaybeTransition: FunctionalComponent<MaybeTransitionProps> = (props, { slots }) => {\n const { transition, disabled, group, ...rest } = props\n\n const {\n component = group ? TransitionGroup : Transition,\n ...customProps\n } = isObject(transition) ? transition : {}\n\n let transitionProps\n if (isObject(transition)) {\n transitionProps = mergeProps(\n customProps,\n JSON.parse(JSON.stringify({ disabled, group })),\n rest,\n )\n } else {\n transitionProps = mergeProps(\n { name: disabled || !transition ? '' : transition },\n rest,\n )\n }\n\n return h(\n component,\n transitionProps,\n slots\n )\n}\n"],"mappings":"AAAA;AACA,SAASA,CAAC,EAAEC,UAAU,EAAEC,UAAU,EAAEC,eAAe,QAAQ,KAAK;AAAA,SACvDC,QAAQ,EAAEC,YAAY,4BAE/B;AAGA,OAAO,MAAMC,mBAAmB,GAAGD,YAAY,CAAC;EAC9CE,UAAU,EAAE;IACVC,IAAI,EAAE,IAAI;IACVC,OAAO,EAAE,iBAAiB;IAC1BC,SAAS,EAAEC,GAAG,IAAIA,GAAG,KAAK;EAC5B;AACF,CAAC,EAAE,YAAY,CAAC;AAQhB,OAAO,MAAMC,eAA0D,GAAGA,CAACC,KAAK,EAAAC,IAAA,KAAgB;EAAA,IAAd;IAAEC;EAAM,CAAC,GAAAD,IAAA;EACzF,MAAM;IAAEP,UAAU;IAAES,QAAQ;IAAEC,KAAK;IAAE,GAAGC;EAAK,CAAC,GAAGL,KAAK;EAEtD,MAAM;IACJM,SAAS,GAAGF,KAAK,GAAGd,eAAe,GAAGD,UAAU;IAChD,GAAGkB;EACL,CAAC,GAAGhB,QAAQ,CAACG,UAAU,CAAC,GAAGA,UAAU,GAAG,CAAC,CAAC;EAE1C,IAAIc,eAAe;EACnB,IAAIjB,QAAQ,CAACG,UAAU,CAAC,EAAE;IACxBc,eAAe,GAAGpB,UAAU,CAC1BmB,WAAW,EACXE,IAAI,CAACC,KAAK,CAACD,IAAI,CAACE,SAAS,CAAC;MAAER,QAAQ;MAAEC;IAAM,CAAC,CAAC,CAAC,EAC/CC,IACF,CAAC;EACH,CAAC,MAAM;IACLG,eAAe,GAAGpB,UAAU,CAC1B;MAAEwB,IAAI,EAAET,QAAQ,IAAI,CAACT,UAAU,GAAG,EAAE,GAAGA;IAAW,CAAC,EACnDW,IACF,CAAC;EACH;EAEA,OAAOlB,CAAC,CACNmB,SAAS,EACTE,eAAe,EACfN,KACF,CAAC;AACH,CAAC","ignoreList":[]}
@@ -16,7 +16,7 @@ export const createVuetify = function () {
16
16
  ...options
17
17
  });
18
18
  };
19
- export const version = "3.8.3-master.2025-04-29";
19
+ export const version = "3.8.3-master.2025-05-01";
20
20
  createVuetify.version = version;
21
21
  export { blueprints, components, directives };
22
22
  export * from "./composables/index.js";