@vuetify/nightly 3.0.2-next-20221120.0 → 3.0.2

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 (37) hide show
  1. package/CHANGELOG.md +2 -10
  2. package/dist/json/importMap.json +110 -110
  3. package/dist/vuetify.css +3970 -3968
  4. package/dist/vuetify.d.ts +45 -45
  5. package/dist/vuetify.esm.js +42 -37
  6. package/dist/vuetify.esm.js.map +1 -1
  7. package/dist/vuetify.js +41 -36
  8. package/dist/vuetify.js.map +1 -1
  9. package/dist/vuetify.min.css +2 -2
  10. package/dist/vuetify.min.js +328 -325
  11. package/dist/vuetify.min.js.map +1 -1
  12. package/lib/components/VCard/VCardItem.mjs +1 -2
  13. package/lib/components/VCard/VCardItem.mjs.map +1 -1
  14. package/lib/components/VDefaultsProvider/VDefaultsProvider.mjs +1 -1
  15. package/lib/components/VDefaultsProvider/VDefaultsProvider.mjs.map +1 -1
  16. package/lib/components/VOverlay/scrollStrategies.mjs +4 -0
  17. package/lib/components/VOverlay/scrollStrategies.mjs.map +1 -1
  18. package/lib/components/VOverlay/useActivator.mjs +4 -0
  19. package/lib/components/VOverlay/useActivator.mjs.map +1 -1
  20. package/lib/components/VRating/VRating.mjs +7 -6
  21. package/lib/components/VRating/VRating.mjs.map +1 -1
  22. package/lib/components/VRating/index.d.ts +14 -14
  23. package/lib/components/VSlideGroup/VSlideGroup.css +1 -0
  24. package/lib/components/VSlideGroup/VSlideGroup.sass +1 -0
  25. package/lib/components/VToolbar/VToolbar.css +1 -0
  26. package/lib/components/VToolbar/VToolbar.sass +1 -0
  27. package/lib/components/index.d.ts +14 -14
  28. package/lib/composables/toggleScope.mjs +6 -2
  29. package/lib/composables/toggleScope.mjs.map +1 -1
  30. package/lib/entry-bundler.mjs +1 -1
  31. package/lib/entry-bundler.mjs.map +1 -1
  32. package/lib/framework.mjs +1 -1
  33. package/lib/framework.mjs.map +1 -1
  34. package/lib/index.d.ts +31 -31
  35. package/lib/util/defineComponent.mjs +8 -13
  36. package/lib/util/defineComponent.mjs.map +1 -1
  37. package/package.json +1 -1
@@ -15026,7 +15026,7 @@ declare const VRating: {
15026
15026
  readonly: boolean;
15027
15027
  tag: string;
15028
15028
  density: Density;
15029
- modelValue: number;
15029
+ modelValue: string | number;
15030
15030
  ripple: boolean;
15031
15031
  clearable: boolean;
15032
15032
  hover: boolean;
@@ -15075,7 +15075,7 @@ declare const VRating: {
15075
15075
  };
15076
15076
  readonly: BooleanConstructor;
15077
15077
  modelValue: {
15078
- type: NumberConstructor;
15078
+ type: (StringConstructor | NumberConstructor)[];
15079
15079
  default: number;
15080
15080
  };
15081
15081
  itemLabels: Prop<string[], string[]>;
@@ -15086,7 +15086,7 @@ declare const VRating: {
15086
15086
  };
15087
15087
  ripple: BooleanConstructor;
15088
15088
  }, "$children" | "v-slots" | "v-slot:item" | "v-slot:item-label">>> & {
15089
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
15089
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
15090
15090
  } & vue.VNodeProps & vue.AllowedComponentProps & vue.ComponentCustomProps, "length" | "disabled" | "size" | "readonly" | "tag" | "density" | "modelValue" | "ripple" | "clearable" | "hover" | "halfIncrements" | "itemAriaLabel" | "emptyIcon" | "fullIcon" | "itemLabelPosition">;
15091
15091
  $attrs: {
15092
15092
  [x: string]: unknown;
@@ -15099,7 +15099,7 @@ declare const VRating: {
15099
15099
  }>;
15100
15100
  $root: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
15101
15101
  $parent: vue.ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, vue.ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
15102
- $emit: (event: "update:modelValue", value: number) => void;
15102
+ $emit: (event: "update:modelValue", value: string | number) => void;
15103
15103
  $el: any;
15104
15104
  $options: vue.ComponentOptionsBase<Readonly<vue.ExtractPropTypes<Omit<{
15105
15105
  theme: StringConstructor;
@@ -15141,7 +15141,7 @@ declare const VRating: {
15141
15141
  };
15142
15142
  readonly: BooleanConstructor;
15143
15143
  modelValue: {
15144
- type: NumberConstructor;
15144
+ type: (StringConstructor | NumberConstructor)[];
15145
15145
  default: number;
15146
15146
  };
15147
15147
  itemLabels: Prop<string[], string[]>;
@@ -15152,9 +15152,9 @@ declare const VRating: {
15152
15152
  };
15153
15153
  ripple: BooleanConstructor;
15154
15154
  }, "$children" | "v-slots" | "v-slot:item" | "v-slot:item-label">>> & {
15155
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
15155
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
15156
15156
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
15157
- 'update:modelValue': (value: number) => boolean;
15157
+ 'update:modelValue': (value: number | string) => boolean;
15158
15158
  }, "$children" | "v-slots" | "v-slot:item" | "v-slot:item-label">, string, {
15159
15159
  length: string | number;
15160
15160
  disabled: boolean;
@@ -15162,7 +15162,7 @@ declare const VRating: {
15162
15162
  readonly: boolean;
15163
15163
  tag: string;
15164
15164
  density: Density;
15165
- modelValue: number;
15165
+ modelValue: string | number;
15166
15166
  ripple: boolean;
15167
15167
  clearable: boolean;
15168
15168
  hover: boolean;
@@ -15231,7 +15231,7 @@ declare const VRating: {
15231
15231
  };
15232
15232
  readonly: BooleanConstructor;
15233
15233
  modelValue: {
15234
- type: NumberConstructor;
15234
+ type: (StringConstructor | NumberConstructor)[];
15235
15235
  default: number;
15236
15236
  };
15237
15237
  itemLabels: Prop<string[], string[]>;
@@ -15242,7 +15242,7 @@ declare const VRating: {
15242
15242
  };
15243
15243
  ripple: BooleanConstructor;
15244
15244
  }, "$children" | "v-slots" | "v-slot:item" | "v-slot:item-label">>> & {
15245
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
15245
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
15246
15246
  } & vue.ShallowUnwrapRef<{}> & {} & vue.ComponentCustomProperties;
15247
15247
  __isFragment?: undefined;
15248
15248
  __isTeleport?: undefined;
@@ -15287,7 +15287,7 @@ declare const VRating: {
15287
15287
  };
15288
15288
  readonly: BooleanConstructor;
15289
15289
  modelValue: {
15290
- type: NumberConstructor;
15290
+ type: (StringConstructor | NumberConstructor)[];
15291
15291
  default: number;
15292
15292
  };
15293
15293
  itemLabels: Prop<string[], string[]>;
@@ -15298,9 +15298,9 @@ declare const VRating: {
15298
15298
  };
15299
15299
  ripple: BooleanConstructor;
15300
15300
  }, "$children" | "v-slots" | "v-slot:item" | "v-slot:item-label">>> & {
15301
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
15301
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
15302
15302
  }, {}, unknown, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, Omit<{
15303
- 'update:modelValue': (value: number) => boolean;
15303
+ 'update:modelValue': (value: number | string) => boolean;
15304
15304
  }, "$children" | "v-slots" | "v-slot:item" | "v-slot:item-label">, string, {
15305
15305
  length: string | number;
15306
15306
  disabled: boolean;
@@ -15308,7 +15308,7 @@ declare const VRating: {
15308
15308
  readonly: boolean;
15309
15309
  tag: string;
15310
15310
  density: Density;
15311
- modelValue: number;
15311
+ modelValue: string | number;
15312
15312
  ripple: boolean;
15313
15313
  clearable: boolean;
15314
15314
  hover: boolean;
@@ -1,11 +1,11 @@
1
- import { effectScope, watch } from 'vue';
1
+ import { effectScope, onScopeDispose, watch } from 'vue';
2
2
  export function useToggleScope(source, cb) {
3
3
  let scope;
4
4
  watch(source, active => {
5
5
  if (active && !scope) {
6
6
  scope = effectScope();
7
7
  scope.run(cb);
8
- } else {
8
+ } else if (!active) {
9
9
  var _scope;
10
10
  (_scope = scope) == null ? void 0 : _scope.stop();
11
11
  scope = undefined;
@@ -13,5 +13,9 @@ export function useToggleScope(source, cb) {
13
13
  }, {
14
14
  immediate: true
15
15
  });
16
+ onScopeDispose(() => {
17
+ var _scope2;
18
+ (_scope2 = scope) == null ? void 0 : _scope2.stop();
19
+ });
16
20
  }
17
21
  //# sourceMappingURL=toggleScope.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"toggleScope.mjs","names":["effectScope","watch","useToggleScope","source","cb","scope","active","run","stop","undefined","immediate"],"sources":["../../src/composables/toggleScope.ts"],"sourcesContent":["import { effectScope, watch } from 'vue'\nimport type { EffectScope, WatchSource } from 'vue'\n\nexport function useToggleScope (source: WatchSource<boolean>, cb: () => void) {\n let scope: EffectScope | undefined\n watch(source, active => {\n if (active && !scope) {\n scope = effectScope()\n scope.run(cb)\n } else {\n scope?.stop()\n scope = undefined\n }\n }, { immediate: true })\n}\n"],"mappings":"AAAA,SAASA,WAAW,EAAEC,KAAK,QAAQ,KAAK;AAGxC,OAAO,SAASC,cAAc,CAAEC,MAA4B,EAAEC,EAAc,EAAE;EAC5E,IAAIC,KAA8B;EAClCJ,KAAK,CAACE,MAAM,EAAEG,MAAM,IAAI;IACtB,IAAIA,MAAM,IAAI,CAACD,KAAK,EAAE;MACpBA,KAAK,GAAGL,WAAW,EAAE;MACrBK,KAAK,CAACE,GAAG,CAACH,EAAE,CAAC;IACf,CAAC,MAAM;MAAA;MACL,UAAAC,KAAK,qBAAL,OAAOG,IAAI,EAAE;MACbH,KAAK,GAAGI,SAAS;IACnB;EACF,CAAC,EAAE;IAAEC,SAAS,EAAE;EAAK,CAAC,CAAC;AACzB"}
1
+ {"version":3,"file":"toggleScope.mjs","names":["effectScope","onScopeDispose","watch","useToggleScope","source","cb","scope","active","run","stop","undefined","immediate"],"sources":["../../src/composables/toggleScope.ts"],"sourcesContent":["import { effectScope, onScopeDispose, watch } from 'vue'\nimport type { EffectScope, WatchSource } from 'vue'\n\nexport function useToggleScope (source: WatchSource<boolean>, cb: () => void) {\n let scope: EffectScope | undefined\n watch(source, active => {\n if (active && !scope) {\n scope = effectScope()\n scope.run(cb)\n } else if (!active) {\n scope?.stop()\n scope = undefined\n }\n }, { immediate: true })\n\n onScopeDispose(() => {\n scope?.stop()\n })\n}\n"],"mappings":"AAAA,SAASA,WAAW,EAAEC,cAAc,EAAEC,KAAK,QAAQ,KAAK;AAGxD,OAAO,SAASC,cAAc,CAAEC,MAA4B,EAAEC,EAAc,EAAE;EAC5E,IAAIC,KAA8B;EAClCJ,KAAK,CAACE,MAAM,EAAEG,MAAM,IAAI;IACtB,IAAIA,MAAM,IAAI,CAACD,KAAK,EAAE;MACpBA,KAAK,GAAGN,WAAW,EAAE;MACrBM,KAAK,CAACE,GAAG,CAACH,EAAE,CAAC;IACf,CAAC,MAAM,IAAI,CAACE,MAAM,EAAE;MAAA;MAClB,UAAAD,KAAK,qBAAL,OAAOG,IAAI,EAAE;MACbH,KAAK,GAAGI,SAAS;IACnB;EACF,CAAC,EAAE;IAAEC,SAAS,EAAE;EAAK,CAAC,CAAC;EAEvBV,cAAc,CAAC,MAAM;IAAA;IACnB,WAAAK,KAAK,qBAAL,QAAOG,IAAI,EAAE;EACf,CAAC,CAAC;AACJ"}
@@ -10,7 +10,7 @@ export const createVuetify = function () {
10
10
  ...options
11
11
  });
12
12
  };
13
- export const version = "3.0.2-next-20221120.0";
13
+ export const version = "3.0.2";
14
14
  createVuetify.version = version;
15
15
  export { components, directives };
16
16
  export * from "./composables/index.mjs";
@@ -1 +1 @@
1
- {"version":3,"file":"entry-bundler.mjs","names":["components","directives","createVuetify","_createVuetify","options","version"],"sources":["../src/entry-bundler.ts"],"sourcesContent":["import './styles/main.sass'\nimport * as components from './components'\nimport * as directives from './directives'\nimport { createVuetify as _createVuetify } from './framework'\nimport type { VuetifyOptions } from './framework'\n\nexport const createVuetify = (options: VuetifyOptions = {}) => {\n return _createVuetify({ components, directives, ...options })\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\nexport {\n components,\n directives,\n}\nexport * from './composables'\n"],"mappings":"AAAA;AAA2B,OACpB,KAAKA,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,SACbC,aAAa,IAAIC,cAAc;AAGxC,OAAO,MAAMD,aAAa,GAAG,YAAkC;EAAA,IAAjCE,OAAuB,uEAAG,CAAC,CAAC;EACxD,OAAOD,cAAc,CAAC;IAAEH,UAAU;IAAEC,UAAU;IAAE,GAAGG;EAAQ,CAAC,CAAC;AAC/D,CAAC;AAED,OAAO,MAAMC,OAAO,0BAAsB;AAC1CH,aAAa,CAACG,OAAO,GAAGA,OAAO;AAE/B,SACEL,UAAU,EACVC,UAAU;AACX"}
1
+ {"version":3,"file":"entry-bundler.mjs","names":["components","directives","createVuetify","_createVuetify","options","version"],"sources":["../src/entry-bundler.ts"],"sourcesContent":["import './styles/main.sass'\nimport * as components from './components'\nimport * as directives from './directives'\nimport { createVuetify as _createVuetify } from './framework'\nimport type { VuetifyOptions } from './framework'\n\nexport const createVuetify = (options: VuetifyOptions = {}) => {\n return _createVuetify({ components, directives, ...options })\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\nexport {\n components,\n directives,\n}\nexport * from './composables'\n"],"mappings":"AAAA;AAA2B,OACpB,KAAKA,UAAU;AAAA,OACf,KAAKC,UAAU;AAAA,SACbC,aAAa,IAAIC,cAAc;AAGxC,OAAO,MAAMD,aAAa,GAAG,YAAkC;EAAA,IAAjCE,OAAuB,uEAAG,CAAC,CAAC;EACxD,OAAOD,cAAc,CAAC;IAAEH,UAAU;IAAEC,UAAU;IAAE,GAAGG;EAAQ,CAAC,CAAC;AAC/D,CAAC;AAED,OAAO,MAAMC,OAAO,UAAsB;AAC1CH,aAAa,CAACG,OAAO,GAAGA,OAAO;AAE/B,SACEL,UAAU,EACVC,UAAU;AACX"}
package/lib/framework.mjs CHANGED
@@ -87,7 +87,7 @@ export function createVuetify() {
87
87
  locale
88
88
  };
89
89
  }
90
- export const version = "3.0.2-next-20221120.0";
90
+ export const version = "3.0.2";
91
91
  createVuetify.version = version;
92
92
 
93
93
  // Vue's inject() can only be used in setup
@@ -1 +1 @@
1
- {"version":3,"file":"framework.mjs","names":["createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","defineComponent","getUid","IN_BROWSER","mergeDeep","nextTick","reactive","createVuetify","vuetify","blueprint","rest","options","aliases","components","directives","defaults","display","ssr","theme","icons","locale","install","app","key","directive","component","name","aliasName","provide","$nuxt","hook","update","mount","vm","reset","mixin","computed","$vuetify","inject","call","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { defineComponent, getUid, IN_BROWSER, mergeDeep } from '@/util'\nimport { nextTick, reactive } from 'vue'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions } from '@/composables/display'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\nexport * from './composables'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: boolean\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n\n const install = (app: App) => {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n theme.install(app)\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n getUid.reset()\n\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n })\n },\n },\n })\n }\n\n return {\n install,\n defaults,\n display,\n theme,\n icons,\n locale,\n }\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"framework.mjs","names":["createDefaults","DefaultsSymbol","createDisplay","DisplaySymbol","createIcons","IconSymbol","createLocale","LocaleSymbol","createTheme","ThemeSymbol","defineComponent","getUid","IN_BROWSER","mergeDeep","nextTick","reactive","createVuetify","vuetify","blueprint","rest","options","aliases","components","directives","defaults","display","ssr","theme","icons","locale","install","app","key","directive","component","name","aliasName","provide","$nuxt","hook","update","mount","vm","reset","mixin","computed","$vuetify","inject","call","version","$","provides","parent","vnode","appContext"],"sources":["../src/framework.ts"],"sourcesContent":["// Composables\nimport { createDefaults, DefaultsSymbol } from '@/composables/defaults'\nimport { createDisplay, DisplaySymbol } from '@/composables/display'\nimport { createIcons, IconSymbol } from '@/composables/icons'\nimport { createLocale, LocaleSymbol } from '@/composables/locale'\nimport { createTheme, ThemeSymbol } from '@/composables/theme'\n\n// Utilities\nimport { defineComponent, getUid, IN_BROWSER, mergeDeep } from '@/util'\nimport { nextTick, reactive } from 'vue'\n\n// Types\nimport type { App, ComponentPublicInstance, InjectionKey } from 'vue'\nimport type { DefaultsOptions } from '@/composables/defaults'\nimport type { DisplayOptions } from '@/composables/display'\nimport type { IconOptions } from '@/composables/icons'\nimport type { LocaleOptions, RtlOptions } from '@/composables/locale'\nimport type { ThemeOptions } from '@/composables/theme'\n\nexport * from './composables'\n\nexport interface VuetifyOptions {\n aliases?: Record<string, any>\n blueprint?: Blueprint\n components?: Record<string, any>\n directives?: Record<string, any>\n defaults?: DefaultsOptions\n display?: DisplayOptions\n theme?: ThemeOptions\n icons?: IconOptions\n locale?: LocaleOptions & RtlOptions\n ssr?: boolean\n}\n\nexport interface Blueprint extends Omit<VuetifyOptions, 'blueprint'> {}\n\nexport function createVuetify (vuetify: VuetifyOptions = {}) {\n const { blueprint, ...rest } = vuetify\n const options = mergeDeep(blueprint, rest)\n const {\n aliases = {},\n components = {},\n directives = {},\n } = options\n\n const defaults = createDefaults(options.defaults)\n const display = createDisplay(options.display, options.ssr)\n const theme = createTheme(options.theme)\n const icons = createIcons(options.icons)\n const locale = createLocale(options.locale)\n\n const install = (app: App) => {\n for (const key in directives) {\n app.directive(key, directives[key])\n }\n\n for (const key in components) {\n app.component(key, components[key])\n }\n\n for (const key in aliases) {\n app.component(key, defineComponent({\n ...aliases[key],\n name: key,\n aliasName: aliases[key].name,\n }))\n }\n\n theme.install(app)\n\n app.provide(DefaultsSymbol, defaults)\n app.provide(DisplaySymbol, display)\n app.provide(ThemeSymbol, theme)\n app.provide(IconSymbol, icons)\n app.provide(LocaleSymbol, locale)\n\n if (IN_BROWSER && options.ssr) {\n if (app.$nuxt) {\n app.$nuxt.hook('app:suspense:resolve', () => {\n display.update()\n })\n } else {\n const { mount } = app\n app.mount = (...args) => {\n const vm = mount(...args)\n nextTick(() => display.update())\n app.mount = mount\n return vm\n }\n }\n }\n\n getUid.reset()\n\n app.mixin({\n computed: {\n $vuetify () {\n return reactive({\n defaults: inject.call(this, DefaultsSymbol),\n display: inject.call(this, DisplaySymbol),\n theme: inject.call(this, ThemeSymbol),\n icons: inject.call(this, IconSymbol),\n locale: inject.call(this, LocaleSymbol),\n })\n },\n },\n })\n }\n\n return {\n install,\n defaults,\n display,\n theme,\n icons,\n locale,\n }\n}\n\nexport const version = __VUETIFY_VERSION__\ncreateVuetify.version = version\n\n// Vue's inject() can only be used in setup\nfunction inject (this: ComponentPublicInstance, key: InjectionKey<any> | string) {\n const vm = this.$\n\n const provides = vm.parent?.provides ?? vm.vnode.appContext?.provides\n\n if (provides && (key as any) in provides) {\n return provides[(key as string)]\n }\n}\n"],"mappings":"AAAA;AAAA,SACSA,cAAc,EAAEC,cAAc;AAAA,SAC9BC,aAAa,EAAEC,aAAa;AAAA,SAC5BC,WAAW,EAAEC,UAAU;AAAA,SACvBC,YAAY,EAAEC,YAAY;AAAA,SAC1BC,WAAW,EAAEC,WAAW,mCAEjC;AAAA,SACSC,eAAe,EAAEC,MAAM,EAAEC,UAAU,EAAEC,SAAS;AACvD,SAASC,QAAQ,EAAEC,QAAQ,QAAQ,KAAK;;AAExC;AAAA;AAyBA,OAAO,SAASC,aAAa,GAAgC;EAAA,IAA9BC,OAAuB,uEAAG,CAAC,CAAC;EACzD,MAAM;IAAEC,SAAS;IAAE,GAAGC;EAAK,CAAC,GAAGF,OAAO;EACtC,MAAMG,OAAO,GAAGP,SAAS,CAACK,SAAS,EAAEC,IAAI,CAAC;EAC1C,MAAM;IACJE,OAAO,GAAG,CAAC,CAAC;IACZC,UAAU,GAAG,CAAC,CAAC;IACfC,UAAU,GAAG,CAAC;EAChB,CAAC,GAAGH,OAAO;EAEX,MAAMI,QAAQ,GAAGxB,cAAc,CAACoB,OAAO,CAACI,QAAQ,CAAC;EACjD,MAAMC,OAAO,GAAGvB,aAAa,CAACkB,OAAO,CAACK,OAAO,EAAEL,OAAO,CAACM,GAAG,CAAC;EAC3D,MAAMC,KAAK,GAAGnB,WAAW,CAACY,OAAO,CAACO,KAAK,CAAC;EACxC,MAAMC,KAAK,GAAGxB,WAAW,CAACgB,OAAO,CAACQ,KAAK,CAAC;EACxC,MAAMC,MAAM,GAAGvB,YAAY,CAACc,OAAO,CAACS,MAAM,CAAC;EAE3C,MAAMC,OAAO,GAAIC,GAAQ,IAAK;IAC5B,KAAK,MAAMC,GAAG,IAAIT,UAAU,EAAE;MAC5BQ,GAAG,CAACE,SAAS,CAACD,GAAG,EAAET,UAAU,CAACS,GAAG,CAAC,CAAC;IACrC;IAEA,KAAK,MAAMA,GAAG,IAAIV,UAAU,EAAE;MAC5BS,GAAG,CAACG,SAAS,CAACF,GAAG,EAAEV,UAAU,CAACU,GAAG,CAAC,CAAC;IACrC;IAEA,KAAK,MAAMA,GAAG,IAAIX,OAAO,EAAE;MACzBU,GAAG,CAACG,SAAS,CAACF,GAAG,EAAEtB,eAAe,CAAC;QACjC,GAAGW,OAAO,CAACW,GAAG,CAAC;QACfG,IAAI,EAAEH,GAAG;QACTI,SAAS,EAAEf,OAAO,CAACW,GAAG,CAAC,CAACG;MAC1B,CAAC,CAAC,CAAC;IACL;IAEAR,KAAK,CAACG,OAAO,CAACC,GAAG,CAAC;IAElBA,GAAG,CAACM,OAAO,CAACpC,cAAc,EAAEuB,QAAQ,CAAC;IACrCO,GAAG,CAACM,OAAO,CAAClC,aAAa,EAAEsB,OAAO,CAAC;IACnCM,GAAG,CAACM,OAAO,CAAC5B,WAAW,EAAEkB,KAAK,CAAC;IAC/BI,GAAG,CAACM,OAAO,CAAChC,UAAU,EAAEuB,KAAK,CAAC;IAC9BG,GAAG,CAACM,OAAO,CAAC9B,YAAY,EAAEsB,MAAM,CAAC;IAEjC,IAAIjB,UAAU,IAAIQ,OAAO,CAACM,GAAG,EAAE;MAC7B,IAAIK,GAAG,CAACO,KAAK,EAAE;QACbP,GAAG,CAACO,KAAK,CAACC,IAAI,CAAC,sBAAsB,EAAE,MAAM;UAC3Cd,OAAO,CAACe,MAAM,EAAE;QAClB,CAAC,CAAC;MACJ,CAAC,MAAM;QACL,MAAM;UAAEC;QAAM,CAAC,GAAGV,GAAG;QACrBA,GAAG,CAACU,KAAK,GAAG,YAAa;UACvB,MAAMC,EAAE,GAAGD,KAAK,CAAC,YAAO,CAAC;UACzB3B,QAAQ,CAAC,MAAMW,OAAO,CAACe,MAAM,EAAE,CAAC;UAChCT,GAAG,CAACU,KAAK,GAAGA,KAAK;UACjB,OAAOC,EAAE;QACX,CAAC;MACH;IACF;IAEA/B,MAAM,CAACgC,KAAK,EAAE;IAEdZ,GAAG,CAACa,KAAK,CAAC;MACRC,QAAQ,EAAE;QACRC,QAAQ,GAAI;UACV,OAAO/B,QAAQ,CAAC;YACdS,QAAQ,EAAEuB,MAAM,CAACC,IAAI,CAAC,IAAI,EAAE/C,cAAc,CAAC;YAC3CwB,OAAO,EAAEsB,MAAM,CAACC,IAAI,CAAC,IAAI,EAAE7C,aAAa,CAAC;YACzCwB,KAAK,EAAEoB,MAAM,CAACC,IAAI,CAAC,IAAI,EAAEvC,WAAW,CAAC;YACrCmB,KAAK,EAAEmB,MAAM,CAACC,IAAI,CAAC,IAAI,EAAE3C,UAAU,CAAC;YACpCwB,MAAM,EAAEkB,MAAM,CAACC,IAAI,CAAC,IAAI,EAAEzC,YAAY;UACxC,CAAC,CAAC;QACJ;MACF;IACF,CAAC,CAAC;EACJ,CAAC;EAED,OAAO;IACLuB,OAAO;IACPN,QAAQ;IACRC,OAAO;IACPE,KAAK;IACLC,KAAK;IACLC;EACF,CAAC;AACH;AAEA,OAAO,MAAMoB,OAAO,UAAsB;AAC1CjC,aAAa,CAACiC,OAAO,GAAGA,OAAO;;AAE/B;AACA,SAASF,MAAM,CAAiCf,GAA+B,EAAE;EAAA;EAC/E,MAAMU,EAAE,GAAG,IAAI,CAACQ,CAAC;EAEjB,MAAMC,QAAQ,GAAG,eAAAT,EAAE,CAACU,MAAM,qBAAT,WAAWD,QAAQ,8BAAIT,EAAE,CAACW,KAAK,CAACC,UAAU,qBAAnB,qBAAqBH,QAAQ;EAErE,IAAIA,QAAQ,IAAKnB,GAAG,IAAYmB,QAAQ,EAAE;IACxC,OAAOA,QAAQ,CAAEnB,GAAG,CAAY;EAClC;AACF"}
package/lib/index.d.ts CHANGED
@@ -321,15 +321,19 @@ declare module '@vue/runtime-core' {
321
321
  VSpacer: typeof import('vuetify/components')['VSpacer']
322
322
  VHover: typeof import('vuetify/components')['VHover']
323
323
  VForm: typeof import('vuetify/components')['VForm']
324
- VLazy: typeof import('vuetify/components')['VLazy']
325
324
  VLayout: typeof import('vuetify/components')['VLayout']
326
325
  VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
326
+ VLazy: typeof import('vuetify/components')['VLazy']
327
327
  VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
328
- VNoSsr: typeof import('vuetify/components')['VNoSsr']
329
328
  VParallax: typeof import('vuetify/components')['VParallax']
329
+ VNoSsr: typeof import('vuetify/components')['VNoSsr']
330
330
  VRadio: typeof import('vuetify/components')['VRadio']
331
+ VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
331
332
  VResponsive: typeof import('vuetify/components')['VResponsive']
332
333
  VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
334
+ VAppBar: typeof import('vuetify/components')['VAppBar']
335
+ VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
336
+ VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
333
337
  VFabTransition: typeof import('vuetify/components')['VFabTransition']
334
338
  VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
335
339
  VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
@@ -346,24 +350,17 @@ declare module '@vue/runtime-core' {
346
350
  VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
347
351
  VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
348
352
  VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
349
- VValidation: typeof import('vuetify/components')['VValidation']
350
- VAppBar: typeof import('vuetify/components')['VAppBar']
351
- VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
352
- VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
353
353
  VAlert: typeof import('vuetify/components')['VAlert']
354
354
  VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
355
- VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
356
355
  VAvatar: typeof import('vuetify/components')['VAvatar']
357
356
  VBadge: typeof import('vuetify/components')['VBadge']
357
+ VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
358
358
  VBanner: typeof import('vuetify/components')['VBanner']
359
359
  VBannerActions: typeof import('vuetify/components')['VBannerActions']
360
360
  VBannerText: typeof import('vuetify/components')['VBannerText']
361
361
  VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
362
- VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
363
- VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
364
- VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
365
- VBtn: typeof import('vuetify/components')['VBtn']
366
362
  VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
363
+ VBtn: typeof import('vuetify/components')['VBtn']
367
364
  VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
368
365
  VCard: typeof import('vuetify/components')['VCard']
369
366
  VCardActions: typeof import('vuetify/components')['VCardActions']
@@ -371,36 +368,38 @@ declare module '@vue/runtime-core' {
371
368
  VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
372
369
  VCardText: typeof import('vuetify/components')['VCardText']
373
370
  VCardTitle: typeof import('vuetify/components')['VCardTitle']
374
- VCarousel: typeof import('vuetify/components')['VCarousel']
375
- VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
376
371
  VCheckbox: typeof import('vuetify/components')['VCheckbox']
377
372
  VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
373
+ VCarousel: typeof import('vuetify/components')['VCarousel']
374
+ VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
378
375
  VChip: typeof import('vuetify/components')['VChip']
379
- VChipGroup: typeof import('vuetify/components')['VChipGroup']
380
376
  VCode: typeof import('vuetify/components')['VCode']
377
+ VChipGroup: typeof import('vuetify/components')['VChipGroup']
378
+ VValidation: typeof import('vuetify/components')['VValidation']
381
379
  VColorPicker: typeof import('vuetify/components')['VColorPicker']
382
380
  VCombobox: typeof import('vuetify/components')['VCombobox']
383
381
  VCounter: typeof import('vuetify/components')['VCounter']
384
382
  VDialog: typeof import('vuetify/components')['VDialog']
385
- VDivider: typeof import('vuetify/components')['VDivider']
386
- VField: typeof import('vuetify/components')['VField']
387
- VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
388
- VFileInput: typeof import('vuetify/components')['VFileInput']
389
- VFooter: typeof import('vuetify/components')['VFooter']
390
383
  VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
391
384
  VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
392
385
  VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
393
386
  VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
394
- VImg: typeof import('vuetify/components')['VImg']
387
+ VField: typeof import('vuetify/components')['VField']
388
+ VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
389
+ VFileInput: typeof import('vuetify/components')['VFileInput']
390
+ VFooter: typeof import('vuetify/components')['VFooter']
395
391
  VIcon: typeof import('vuetify/components')['VIcon']
396
392
  VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
397
393
  VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
398
394
  VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
399
395
  VClassIcon: typeof import('vuetify/components')['VClassIcon']
400
- VInput: typeof import('vuetify/components')['VInput']
396
+ VImg: typeof import('vuetify/components')['VImg']
401
397
  VItemGroup: typeof import('vuetify/components')['VItemGroup']
402
398
  VItem: typeof import('vuetify/components')['VItem']
399
+ VInput: typeof import('vuetify/components')['VInput']
403
400
  VKbd: typeof import('vuetify/components')['VKbd']
401
+ VLabel: typeof import('vuetify/components')['VLabel']
402
+ VDivider: typeof import('vuetify/components')['VDivider']
404
403
  VList: typeof import('vuetify/components')['VList']
405
404
  VListGroup: typeof import('vuetify/components')['VListGroup']
406
405
  VListImg: typeof import('vuetify/components')['VListImg']
@@ -411,10 +410,9 @@ declare module '@vue/runtime-core' {
411
410
  VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
412
411
  VListSubheader: typeof import('vuetify/components')['VListSubheader']
413
412
  VMain: typeof import('vuetify/components')['VMain']
414
- VLabel: typeof import('vuetify/components')['VLabel']
415
- VMessages: typeof import('vuetify/components')['VMessages']
416
- VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
417
413
  VMenu: typeof import('vuetify/components')['VMenu']
414
+ VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
415
+ VMessages: typeof import('vuetify/components')['VMessages']
418
416
  VOverlay: typeof import('vuetify/components')['VOverlay']
419
417
  VPagination: typeof import('vuetify/components')['VPagination']
420
418
  VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
@@ -422,28 +420,30 @@ declare module '@vue/runtime-core' {
422
420
  VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
423
421
  VRating: typeof import('vuetify/components')['VRating']
424
422
  VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
425
- VSelect: typeof import('vuetify/components')['VSelect']
426
423
  VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
424
+ VSelect: typeof import('vuetify/components')['VSelect']
427
425
  VSheet: typeof import('vuetify/components')['VSheet']
428
- VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
429
- VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
430
426
  VSlider: typeof import('vuetify/components')['VSlider']
431
427
  VSnackbar: typeof import('vuetify/components')['VSnackbar']
432
428
  VSwitch: typeof import('vuetify/components')['VSwitch']
433
- VSystemBar: typeof import('vuetify/components')['VSystemBar']
434
429
  VTabs: typeof import('vuetify/components')['VTabs']
435
430
  VTab: typeof import('vuetify/components')['VTab']
431
+ VSystemBar: typeof import('vuetify/components')['VSystemBar']
436
432
  VTable: typeof import('vuetify/components')['VTable']
433
+ VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
434
+ VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
437
435
  VTextarea: typeof import('vuetify/components')['VTextarea']
438
436
  VTextField: typeof import('vuetify/components')['VTextField']
439
- VTimeline: typeof import('vuetify/components')['VTimeline']
440
- VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
441
437
  VToolbar: typeof import('vuetify/components')['VToolbar']
442
438
  VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
443
439
  VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
440
+ VTimeline: typeof import('vuetify/components')['VTimeline']
441
+ VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
444
442
  VTooltip: typeof import('vuetify/components')['VTooltip']
445
443
  VWindow: typeof import('vuetify/components')['VWindow']
446
444
  VWindowItem: typeof import('vuetify/components')['VWindowItem']
447
- VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
445
+ VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
446
+ VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
447
+ VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
448
448
  }
449
449
  }
@@ -1,9 +1,12 @@
1
1
  // Utils
2
- import { defineComponent as _defineComponent, effectScope, getCurrentInstance, shallowReactive, shallowRef, toRaw, watch, watchEffect } from 'vue';
2
+ import { defineComponent as _defineComponent,
3
+ // eslint-disable-line no-restricted-imports
4
+ getCurrentInstance, shallowReactive, shallowRef, toRaw, watchEffect } from 'vue';
3
5
  import { consoleWarn } from "./console.mjs";
4
6
  import { mergeDeep, toKebabCase } from "./helpers.mjs";
5
7
  import { injectSelf } from "./injectSelf.mjs";
6
- import { DefaultsSymbol, provideDefaults, useDefaults } from "../composables/defaults.mjs"; // Types
8
+ import { DefaultsSymbol, provideDefaults, useDefaults } from "../composables/defaults.mjs";
9
+ import { useToggleScope } from "../composables/toggleScope.mjs"; // Types
7
10
  import { propsFactory } from "./propsFactory.mjs";
8
11
  function propIsDefined(vnode, prop) {
9
12
  var _vnode$props, _vnode$props2;
@@ -47,17 +50,9 @@ export const defineComponent = function defineComponent(options) {
47
50
  }
48
51
  });
49
52
  const setupBindings = options._setup(_props, ctx);
50
- let scope;
51
- watch(_subcomponentDefaults, (val, oldVal) => {
52
- if (!val && scope) scope.stop();else if (val && !oldVal) {
53
- scope = effectScope();
54
- scope.run(() => {
55
- var _injectSelf;
56
- provideDefaults(mergeDeep(((_injectSelf = injectSelf(DefaultsSymbol)) == null ? void 0 : _injectSelf.value) ?? {}, val));
57
- });
58
- }
59
- }, {
60
- immediate: true
53
+ useToggleScope(_subcomponentDefaults, () => {
54
+ var _injectSelf;
55
+ provideDefaults(mergeDeep(((_injectSelf = injectSelf(DefaultsSymbol)) == null ? void 0 : _injectSelf.value) ?? {}, _subcomponentDefaults.value));
61
56
  });
62
57
  return setupBindings;
63
58
  };
@@ -1 +1 @@
1
- {"version":3,"file":"defineComponent.mjs","names":["defineComponent","_defineComponent","effectScope","getCurrentInstance","shallowReactive","shallowRef","toRaw","watch","watchEffect","consoleWarn","mergeDeep","toKebabCase","injectSelf","DefaultsSymbol","provideDefaults","useDefaults","propsFactory","propIsDefined","vnode","prop","props","hasOwnProperty","options","_setup","setup","name","_as","String","ctx","vm","defaults","_subcomponentDefaults","_props","globalDefaults","value","global","componentDefaults","subComponents","Object","entries","filter","key","startsWith","toUpperCase","length","fromEntries","keys","newVal","setupBindings","scope","val","oldVal","stop","run","immediate","genericComponent","exposeDefaults"],"sources":["../../src/util/defineComponent.tsx"],"sourcesContent":["// Utils\nimport {\n defineComponent as _defineComponent,\n effectScope,\n getCurrentInstance,\n shallowReactive,\n shallowRef,\n toRaw,\n watch,\n watchEffect,\n} from 'vue'\nimport { consoleWarn } from '@/util/console'\nimport { mergeDeep, toKebabCase } from '@/util/helpers'\nimport { injectSelf } from '@/util/injectSelf'\nimport { DefaultsSymbol, provideDefaults, useDefaults } from '@/composables/defaults'\n\n// Types\nimport type {\n ComponentOptions,\n ComponentOptionsMixin,\n ComponentOptionsWithObjectProps,\n ComponentPropsOptions,\n ComputedOptions,\n DefineComponent,\n EffectScope,\n EmitsOptions,\n MethodOptions,\n VNode,\n VNodeChild,\n} from 'vue'\nimport { propsFactory } from '@/util/propsFactory'\n\nfunction propIsDefined (vnode: VNode, prop: string) {\n return vnode.props?.hasOwnProperty(prop) ||\n vnode.props?.hasOwnProperty(toKebabCase(prop))\n}\n\nexport const defineComponent = (function defineComponent (options: ComponentOptions) {\n options._setup = options._setup ?? options.setup\n\n if (!options.name) {\n consoleWarn('The component is missing an explicit name, unable to generate default prop value')\n\n return options\n }\n\n if (options._setup) {\n options.props = options.props ?? {}\n\n options.props = propsFactory(options.props, toKebabCase(options.name))()\n\n options.props._as = String\n options.setup = function setup (props: Record<string, any>, ctx) {\n const vm = getCurrentInstance()!\n const defaults = useDefaults()\n\n const _subcomponentDefaults = shallowRef()\n const _props = shallowReactive({ ...toRaw(props) })\n watchEffect(() => {\n const globalDefaults = defaults.value.global\n const componentDefaults = defaults.value[props._as ?? options.name!]\n\n if (componentDefaults) {\n const subComponents = Object.entries(componentDefaults).filter(([key]) => key.startsWith(key[0].toUpperCase()))\n if (subComponents.length) _subcomponentDefaults.value = Object.fromEntries(subComponents)\n }\n\n for (const prop of Object.keys(props)) {\n let newVal = props[prop]\n if (!propIsDefined(vm.vnode, prop)) {\n newVal = componentDefaults?.[prop] ?? globalDefaults?.[prop] ?? props[prop]\n }\n if (_props[prop] !== newVal) {\n _props[prop] = newVal\n }\n }\n })\n\n const setupBindings = options._setup(_props, ctx)\n\n let scope: EffectScope\n watch(_subcomponentDefaults, (val, oldVal) => {\n if (!val && scope) scope.stop()\n else if (val && !oldVal) {\n scope = effectScope()\n scope.run(() => {\n provideDefaults(mergeDeep(injectSelf(DefaultsSymbol)?.value ?? {}, val))\n })\n }\n }, { immediate: true })\n\n return setupBindings\n }\n }\n\n return options\n}) as unknown as typeof _defineComponent\n\ntype ToListeners<T extends string | number | symbol> = { [K in T]: K extends `on${infer U}` ? Uncapitalize<U> : K }[T]\n\nexport type SlotsToProps<T extends Record<string, any>> = T extends Record<string, Slot> ? ({\n $children?: (\n | VNodeChild\n | (keyof T extends 'default' ? T['default'] : {})\n | { [K in keyof T]?: T[K] }\n )\n 'v-slots'?: { [K in keyof T]?: T[K] | false }\n} & {\n [K in keyof T as `v-slot:${K & string}`]?: T[K] | false\n}) : T extends Record<string, any[]> ? SlotsToProps<MakeSlots<T>> : never\n\ntype Slot<T extends any[] = any[]> = (...args: T) => VNodeChild\nexport type MakeSlots<T extends Record<string, any[]>> = {\n [K in keyof T]?: Slot<T[K]>\n}\n\nexport function genericComponent<T extends (new () => {\n $props?: Record<string, any>\n})> (exposeDefaults = true): <\n PropsOptions extends Readonly<ComponentPropsOptions>,\n RawBindings,\n D,\n C extends ComputedOptions = {},\n M extends MethodOptions = {},\n Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,\n Extends extends ComponentOptionsMixin = ComponentOptionsMixin,\n E extends EmitsOptions = Record<string, any>,\n EE extends string = string,\n I = InstanceType<T>,\n Base = DefineComponent<\n I extends Record<'$props', any>\n ? Omit<PropsOptions, keyof I['$props']>\n : PropsOptions,\n RawBindings,\n D,\n C,\n M,\n Mixin,\n Extends,\n E extends any[] ? E : I extends Record<'$props', any> ? Omit<E, ToListeners<keyof I['$props']>> : E,\n EE\n >\n>(options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE>) => Base & T {\n return options => (exposeDefaults ? defineComponent : _defineComponent)(options) as any\n}\n"],"mappings":"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"}
1
+ {"version":3,"file":"defineComponent.mjs","names":["defineComponent","_defineComponent","getCurrentInstance","shallowReactive","shallowRef","toRaw","watchEffect","consoleWarn","mergeDeep","toKebabCase","injectSelf","DefaultsSymbol","provideDefaults","useDefaults","useToggleScope","propsFactory","propIsDefined","vnode","prop","props","hasOwnProperty","options","_setup","setup","name","_as","String","ctx","vm","defaults","_subcomponentDefaults","_props","globalDefaults","value","global","componentDefaults","subComponents","Object","entries","filter","key","startsWith","toUpperCase","length","fromEntries","keys","newVal","setupBindings","genericComponent","exposeDefaults"],"sources":["../../src/util/defineComponent.tsx"],"sourcesContent":["// Utils\nimport {\n defineComponent as _defineComponent, // eslint-disable-line no-restricted-imports\n getCurrentInstance,\n shallowReactive,\n shallowRef,\n toRaw,\n watchEffect,\n} from 'vue'\nimport { consoleWarn } from '@/util/console'\nimport { mergeDeep, toKebabCase } from '@/util/helpers'\nimport { injectSelf } from '@/util/injectSelf'\nimport { DefaultsSymbol, provideDefaults, useDefaults } from '@/composables/defaults'\nimport { useToggleScope } from '@/composables/toggleScope'\n\n// Types\nimport type {\n ComponentOptions,\n ComponentOptionsMixin,\n ComponentOptionsWithObjectProps,\n ComponentPropsOptions,\n ComputedOptions,\n DefineComponent,\n EmitsOptions,\n MethodOptions,\n VNode,\n VNodeChild,\n} from 'vue'\nimport { propsFactory } from '@/util/propsFactory'\n\nfunction propIsDefined (vnode: VNode, prop: string) {\n return vnode.props?.hasOwnProperty(prop) ||\n vnode.props?.hasOwnProperty(toKebabCase(prop))\n}\n\nexport const defineComponent = (function defineComponent (options: ComponentOptions) {\n options._setup = options._setup ?? options.setup\n\n if (!options.name) {\n consoleWarn('The component is missing an explicit name, unable to generate default prop value')\n\n return options\n }\n\n if (options._setup) {\n options.props = options.props ?? {}\n\n options.props = propsFactory(options.props, toKebabCase(options.name))()\n\n options.props._as = String\n options.setup = function setup (props: Record<string, any>, ctx) {\n const vm = getCurrentInstance()!\n const defaults = useDefaults()\n\n const _subcomponentDefaults = shallowRef()\n const _props = shallowReactive({ ...toRaw(props) })\n watchEffect(() => {\n const globalDefaults = defaults.value.global\n const componentDefaults = defaults.value[props._as ?? options.name!]\n\n if (componentDefaults) {\n const subComponents = Object.entries(componentDefaults).filter(([key]) => key.startsWith(key[0].toUpperCase()))\n if (subComponents.length) _subcomponentDefaults.value = Object.fromEntries(subComponents)\n }\n\n for (const prop of Object.keys(props)) {\n let newVal = props[prop]\n if (!propIsDefined(vm.vnode, prop)) {\n newVal = componentDefaults?.[prop] ?? globalDefaults?.[prop] ?? props[prop]\n }\n if (_props[prop] !== newVal) {\n _props[prop] = newVal\n }\n }\n })\n\n const setupBindings = options._setup(_props, ctx)\n\n useToggleScope(_subcomponentDefaults, () => {\n provideDefaults(mergeDeep(injectSelf(DefaultsSymbol)?.value ?? {}, _subcomponentDefaults.value))\n })\n\n return setupBindings\n }\n }\n\n return options\n}) as unknown as typeof _defineComponent\n\ntype ToListeners<T extends string | number | symbol> = { [K in T]: K extends `on${infer U}` ? Uncapitalize<U> : K }[T]\n\nexport type SlotsToProps<T extends Record<string, any>> = T extends Record<string, Slot> ? ({\n $children?: (\n | VNodeChild\n | (keyof T extends 'default' ? T['default'] : {})\n | { [K in keyof T]?: T[K] }\n )\n 'v-slots'?: { [K in keyof T]?: T[K] | false }\n} & {\n [K in keyof T as `v-slot:${K & string}`]?: T[K] | false\n}) : T extends Record<string, any[]> ? SlotsToProps<MakeSlots<T>> : never\n\ntype Slot<T extends any[] = any[]> = (...args: T) => VNodeChild\nexport type MakeSlots<T extends Record<string, any[]>> = {\n [K in keyof T]?: Slot<T[K]>\n}\n\nexport function genericComponent<T extends (new () => {\n $props?: Record<string, any>\n})> (exposeDefaults = true): <\n PropsOptions extends Readonly<ComponentPropsOptions>,\n RawBindings,\n D,\n C extends ComputedOptions = {},\n M extends MethodOptions = {},\n Mixin extends ComponentOptionsMixin = ComponentOptionsMixin,\n Extends extends ComponentOptionsMixin = ComponentOptionsMixin,\n E extends EmitsOptions = Record<string, any>,\n EE extends string = string,\n I = InstanceType<T>,\n Base = DefineComponent<\n I extends Record<'$props', any>\n ? Omit<PropsOptions, keyof I['$props']>\n : PropsOptions,\n RawBindings,\n D,\n C,\n M,\n Mixin,\n Extends,\n E extends any[] ? E : I extends Record<'$props', any> ? Omit<E, ToListeners<keyof I['$props']>> : E,\n EE\n >\n>(options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE>) => Base & T {\n return options => (exposeDefaults ? defineComponent : _defineComponent)(options) as any\n}\n"],"mappings":"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"}
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.0.2-next-20221120.0",
4
+ "version": "3.0.2",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"