vuetify 3.0.6 → 3.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +8 -8
- package/dist/json/importMap.json +80 -80
- package/dist/json/web-types.json +9 -9
- package/dist/vuetify.css +3 -1
- package/dist/vuetify.d.ts +24 -24
- package/dist/vuetify.esm.js +52 -28
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +52 -28
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +197 -195
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VColorPicker/VColorPicker.mjs +0 -1
- package/lib/components/VColorPicker/VColorPicker.mjs.map +1 -1
- package/lib/components/VPagination/VPagination.mjs +12 -5
- package/lib/components/VPagination/VPagination.mjs.map +1 -1
- package/lib/components/VRadioGroup/VRadioGroup.mjs +3 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +11 -2
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSelectionControl/index.d.ts +2 -2
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs +12 -3
- package/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.css +2 -0
- package/lib/components/VSlider/VSliderThumb.sass +2 -0
- package/lib/components/index.d.ts +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +15 -13
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +23 -23
- package/package.json +2 -2
package/lib/framework.mjs.map
CHANGED
|
@@ -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
|
|
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","__VUE_OPTIONS_API__","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 if (typeof __VUE_OPTIONS_API__ !== 'boolean' || __VUE_OPTIONS_API__) {\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\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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"}
|
package/lib/index.d.ts
CHANGED
|
@@ -314,22 +314,21 @@ declare module '@vue/runtime-core' {
|
|
|
314
314
|
|
|
315
315
|
export interface GlobalComponents {
|
|
316
316
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
317
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
318
317
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
319
318
|
VCol: typeof import('vuetify/components')['VCol']
|
|
320
319
|
VRow: typeof import('vuetify/components')['VRow']
|
|
321
320
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
322
321
|
VHover: typeof import('vuetify/components')['VHover']
|
|
322
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
323
323
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
324
324
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
325
|
-
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
326
325
|
VLazy: typeof import('vuetify/components')['VLazy']
|
|
326
|
+
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
|
327
327
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
|
328
328
|
VParallax: typeof import('vuetify/components')['VParallax']
|
|
329
329
|
VRadio: typeof import('vuetify/components')['VRadio']
|
|
330
330
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
331
331
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
332
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
333
332
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
334
333
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
335
334
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -346,16 +345,14 @@ declare module '@vue/runtime-core' {
|
|
|
346
345
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
347
346
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
348
347
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
349
|
-
|
|
350
|
-
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
351
|
-
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
352
|
-
VValidation: typeof import('vuetify/components')['VValidation']
|
|
348
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
353
349
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
354
350
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
351
|
+
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
355
352
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
356
|
-
VBadge: typeof import('vuetify/components')['VBadge']
|
|
357
353
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
358
|
-
|
|
354
|
+
VValidation: typeof import('vuetify/components')['VValidation']
|
|
355
|
+
VBadge: typeof import('vuetify/components')['VBadge']
|
|
359
356
|
VBanner: typeof import('vuetify/components')['VBanner']
|
|
360
357
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
361
358
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
@@ -364,8 +361,8 @@ declare module '@vue/runtime-core' {
|
|
|
364
361
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
365
362
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
366
363
|
VBtn: typeof import('vuetify/components')['VBtn']
|
|
367
|
-
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
368
364
|
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
365
|
+
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
369
366
|
VCard: typeof import('vuetify/components')['VCard']
|
|
370
367
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
371
368
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
@@ -376,32 +373,33 @@ declare module '@vue/runtime-core' {
|
|
|
376
373
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
377
374
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
378
375
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
376
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
379
377
|
VChip: typeof import('vuetify/components')['VChip']
|
|
380
378
|
VCode: typeof import('vuetify/components')['VCode']
|
|
381
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
382
379
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
383
380
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
384
381
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
385
382
|
VDialog: typeof import('vuetify/components')['VDialog']
|
|
383
|
+
VDivider: typeof import('vuetify/components')['VDivider']
|
|
384
|
+
VField: typeof import('vuetify/components')['VField']
|
|
385
|
+
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
386
386
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
387
387
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
388
388
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
389
389
|
VExpansionPanelTitle: typeof import('vuetify/components')['VExpansionPanelTitle']
|
|
390
|
-
VDivider: typeof import('vuetify/components')['VDivider']
|
|
391
|
-
VField: typeof import('vuetify/components')['VField']
|
|
392
|
-
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
393
390
|
VFooter: typeof import('vuetify/components')['VFooter']
|
|
394
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
395
391
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
396
392
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
397
393
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
398
394
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
399
395
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
400
396
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
401
|
-
|
|
402
|
-
|
|
397
|
+
VImg: typeof import('vuetify/components')['VImg']
|
|
398
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
403
399
|
VKbd: typeof import('vuetify/components')['VKbd']
|
|
404
400
|
VLabel: typeof import('vuetify/components')['VLabel']
|
|
401
|
+
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
402
|
+
VItem: typeof import('vuetify/components')['VItem']
|
|
405
403
|
VList: typeof import('vuetify/components')['VList']
|
|
406
404
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
407
405
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -414,12 +412,12 @@ declare module '@vue/runtime-core' {
|
|
|
414
412
|
VMain: typeof import('vuetify/components')['VMain']
|
|
415
413
|
VMenu: typeof import('vuetify/components')['VMenu']
|
|
416
414
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
415
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
417
416
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
418
417
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
419
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
420
418
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
421
|
-
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
422
419
|
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
420
|
+
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
423
421
|
VRating: typeof import('vuetify/components')['VRating']
|
|
424
422
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
425
423
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
@@ -430,20 +428,22 @@ declare module '@vue/runtime-core' {
|
|
|
430
428
|
VSlider: typeof import('vuetify/components')['VSlider']
|
|
431
429
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
432
430
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
431
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
433
432
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
434
433
|
VTab: typeof import('vuetify/components')['VTab']
|
|
435
|
-
|
|
434
|
+
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
436
435
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
437
436
|
VTable: typeof import('vuetify/components')['VTable']
|
|
438
|
-
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
439
437
|
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
440
438
|
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
441
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
442
439
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
443
440
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
444
441
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
442
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
445
443
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
446
444
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
447
|
-
|
|
445
|
+
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
446
|
+
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
447
|
+
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
448
448
|
}
|
|
449
449
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify",
|
|
3
3
|
"description": "Vue Material Component Framework",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.7",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "John Leider",
|
|
7
7
|
"email": "john@vuetifyjs.com"
|
|
@@ -180,5 +180,5 @@
|
|
|
180
180
|
"attributes": "dist/json/attributes.json"
|
|
181
181
|
},
|
|
182
182
|
"web-types": "dist/json/web-types.json",
|
|
183
|
-
"gitHead": "
|
|
183
|
+
"gitHead": "a03dbaa72767533cd781d3fdb0038d3520174e62"
|
|
184
184
|
}
|