vuetify 3.5.0 → 3.5.1
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/importMap-labs.json +8 -8
- package/dist/json/importMap.json +132 -132
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +2353 -2353
- package/dist/vuetify-labs.esm.js +4 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +4 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +827 -827
- package/dist/vuetify.d.ts +44 -44
- package/dist/vuetify.esm.js +4 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +4 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +4 -4
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VChipGroup/VChipGroup.mjs +1 -2
- package/lib/components/VChipGroup/VChipGroup.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +44 -44
- package/package.json +2 -2
|
@@ -60,8 +60,7 @@ export const VChipGroup = genericComponent()({
|
|
|
60
60
|
}
|
|
61
61
|
});
|
|
62
62
|
useRender(() => {
|
|
63
|
-
|
|
64
|
-
const [slideGroupProps] = VSlideGroup.filterProps(props);
|
|
63
|
+
const slideGroupProps = VSlideGroup.filterProps(props);
|
|
65
64
|
return _createVNode(VSlideGroup, _mergeProps(slideGroupProps, {
|
|
66
65
|
"class": ['v-chip-group', {
|
|
67
66
|
'v-chip-group--column': props.column
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VChipGroup.mjs","names":["makeVSlideGroupProps","VSlideGroup","makeComponentProps","provideDefaults","makeGroupProps","useGroup","makeTagProps","makeThemeProps","provideTheme","makeVariantProps","toRef","deepEqual","genericComponent","propsFactory","useRender","VChipGroupSymbol","Symbol","for","makeVChipGroupProps","column","Boolean","filter","valueComparator","type","Function","default","selectedClass","variant","VChipGroup","name","props","emits","value","setup","_ref","slots","themeClasses","isSelected","select","next","prev","selected","VChip","color","disabled","slideGroupProps","filterProps","_createVNode","_mergeProps","class","style"],"sources":["../../../src/components/VChipGroup/VChipGroup.tsx"],"sourcesContent":["// Styles\nimport './VChipGroup.sass'\n\n// Components\nimport { makeVSlideGroupProps, VSlideGroup } from '@/components/VSlideGroup/VSlideGroup'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeGroupProps, useGroup } from '@/composables/group'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\nimport { makeVariantProps } from '@/composables/variant'\n\n// Utilities\nimport { toRef } from 'vue'\nimport { deepEqual, genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { GenericProps } from '@/util'\n\nexport const VChipGroupSymbol = Symbol.for('vuetify:v-chip-group')\n\nexport const makeVChipGroupProps = propsFactory({\n column: Boolean,\n filter: Boolean,\n valueComparator: {\n type: Function as PropType<typeof deepEqual>,\n default: deepEqual,\n },\n\n ...makeVSlideGroupProps(),\n ...makeComponentProps(),\n ...makeGroupProps({ selectedClass: 'v-chip--selected' }),\n ...makeTagProps(),\n ...makeThemeProps(),\n ...makeVariantProps({ variant: 'tonal' } as const),\n}, 'VChipGroup')\n\ntype VChipGroupSlots = {\n default: {\n isSelected: (id: number) => boolean\n select: (id: number, value: boolean) => void\n next: () => void\n prev: () => void\n selected: readonly number[]\n }\n}\n\nexport const VChipGroup = genericComponent<new <T>(\n props: {\n modelValue?: T\n 'onUpdate:modelValue'?: (value: T) => void\n },\n slots: VChipGroupSlots,\n) => GenericProps<typeof props, typeof slots>>()({\n name: 'VChipGroup',\n\n props: makeVChipGroupProps(),\n\n emits: {\n 'update:modelValue': (value: any) => true,\n },\n\n setup (props, { slots }) {\n const { themeClasses } = provideTheme(props)\n const { isSelected, select, next, prev, selected } = useGroup(props, VChipGroupSymbol)\n\n provideDefaults({\n VChip: {\n color: toRef(props, 'color'),\n disabled: toRef(props, 'disabled'),\n filter: toRef(props, 'filter'),\n variant: toRef(props, 'variant'),\n },\n })\n\n useRender(() => {\n
|
|
1
|
+
{"version":3,"file":"VChipGroup.mjs","names":["makeVSlideGroupProps","VSlideGroup","makeComponentProps","provideDefaults","makeGroupProps","useGroup","makeTagProps","makeThemeProps","provideTheme","makeVariantProps","toRef","deepEqual","genericComponent","propsFactory","useRender","VChipGroupSymbol","Symbol","for","makeVChipGroupProps","column","Boolean","filter","valueComparator","type","Function","default","selectedClass","variant","VChipGroup","name","props","emits","value","setup","_ref","slots","themeClasses","isSelected","select","next","prev","selected","VChip","color","disabled","slideGroupProps","filterProps","_createVNode","_mergeProps","class","style"],"sources":["../../../src/components/VChipGroup/VChipGroup.tsx"],"sourcesContent":["// Styles\nimport './VChipGroup.sass'\n\n// Components\nimport { makeVSlideGroupProps, VSlideGroup } from '@/components/VSlideGroup/VSlideGroup'\n\n// Composables\nimport { makeComponentProps } from '@/composables/component'\nimport { provideDefaults } from '@/composables/defaults'\nimport { makeGroupProps, useGroup } from '@/composables/group'\nimport { makeTagProps } from '@/composables/tag'\nimport { makeThemeProps, provideTheme } from '@/composables/theme'\nimport { makeVariantProps } from '@/composables/variant'\n\n// Utilities\nimport { toRef } from 'vue'\nimport { deepEqual, genericComponent, propsFactory, useRender } from '@/util'\n\n// Types\nimport type { PropType } from 'vue'\nimport type { GenericProps } from '@/util'\n\nexport const VChipGroupSymbol = Symbol.for('vuetify:v-chip-group')\n\nexport const makeVChipGroupProps = propsFactory({\n column: Boolean,\n filter: Boolean,\n valueComparator: {\n type: Function as PropType<typeof deepEqual>,\n default: deepEqual,\n },\n\n ...makeVSlideGroupProps(),\n ...makeComponentProps(),\n ...makeGroupProps({ selectedClass: 'v-chip--selected' }),\n ...makeTagProps(),\n ...makeThemeProps(),\n ...makeVariantProps({ variant: 'tonal' } as const),\n}, 'VChipGroup')\n\ntype VChipGroupSlots = {\n default: {\n isSelected: (id: number) => boolean\n select: (id: number, value: boolean) => void\n next: () => void\n prev: () => void\n selected: readonly number[]\n }\n}\n\nexport const VChipGroup = genericComponent<new <T>(\n props: {\n modelValue?: T\n 'onUpdate:modelValue'?: (value: T) => void\n },\n slots: VChipGroupSlots,\n) => GenericProps<typeof props, typeof slots>>()({\n name: 'VChipGroup',\n\n props: makeVChipGroupProps(),\n\n emits: {\n 'update:modelValue': (value: any) => true,\n },\n\n setup (props, { slots }) {\n const { themeClasses } = provideTheme(props)\n const { isSelected, select, next, prev, selected } = useGroup(props, VChipGroupSymbol)\n\n provideDefaults({\n VChip: {\n color: toRef(props, 'color'),\n disabled: toRef(props, 'disabled'),\n filter: toRef(props, 'filter'),\n variant: toRef(props, 'variant'),\n },\n })\n\n useRender(() => {\n const slideGroupProps = VSlideGroup.filterProps(props)\n\n return (\n <VSlideGroup\n { ...slideGroupProps }\n class={[\n 'v-chip-group',\n {\n 'v-chip-group--column': props.column,\n },\n themeClasses.value,\n props.class,\n ]}\n style={ props.style }\n >\n { slots.default?.({\n isSelected,\n select,\n next,\n prev,\n selected: selected.value,\n })}\n </VSlideGroup>\n )\n })\n\n return {}\n },\n})\n\nexport type VChipGroup = InstanceType<typeof VChipGroup>\n"],"mappings":";AAAA;AACA;;AAEA;AAAA,SACSA,oBAAoB,EAAEC,WAAW,0CAE1C;AAAA,SACSC,kBAAkB;AAAA,SAClBC,eAAe;AAAA,SACfC,cAAc,EAAEC,QAAQ;AAAA,SACxBC,YAAY;AAAA,SACZC,cAAc,EAAEC,YAAY;AAAA,SAC5BC,gBAAgB,yCAEzB;AACA,SAASC,KAAK,QAAQ,KAAK;AAAA,SAClBC,SAAS,EAAEC,gBAAgB,EAAEC,YAAY,EAAEC,SAAS,gCAE7D;AAIA,OAAO,MAAMC,gBAAgB,GAAGC,MAAM,CAACC,GAAG,CAAC,sBAAsB,CAAC;AAElE,OAAO,MAAMC,mBAAmB,GAAGL,YAAY,CAAC;EAC9CM,MAAM,EAAEC,OAAO;EACfC,MAAM,EAAED,OAAO;EACfE,eAAe,EAAE;IACfC,IAAI,EAAEC,QAAsC;IAC5CC,OAAO,EAAEd;EACX,CAAC;EAED,GAAGX,oBAAoB,CAAC,CAAC;EACzB,GAAGE,kBAAkB,CAAC,CAAC;EACvB,GAAGE,cAAc,CAAC;IAAEsB,aAAa,EAAE;EAAmB,CAAC,CAAC;EACxD,GAAGpB,YAAY,CAAC,CAAC;EACjB,GAAGC,cAAc,CAAC,CAAC;EACnB,GAAGE,gBAAgB,CAAC;IAAEkB,OAAO,EAAE;EAAQ,CAAU;AACnD,CAAC,EAAE,YAAY,CAAC;AAYhB,OAAO,MAAMC,UAAU,GAAGhB,gBAAgB,CAMK,CAAC,CAAC;EAC/CiB,IAAI,EAAE,YAAY;EAElBC,KAAK,EAAEZ,mBAAmB,CAAC,CAAC;EAE5Ba,KAAK,EAAE;IACL,mBAAmB,EAAGC,KAAU,IAAK;EACvC,CAAC;EAEDC,KAAKA,CAAEH,KAAK,EAAAI,IAAA,EAAa;IAAA,IAAX;MAAEC;IAAM,CAAC,GAAAD,IAAA;IACrB,MAAM;MAAEE;IAAa,CAAC,GAAG5B,YAAY,CAACsB,KAAK,CAAC;IAC5C,MAAM;MAAEO,UAAU;MAAEC,MAAM;MAAEC,IAAI;MAAEC,IAAI;MAAEC;IAAS,CAAC,GAAGpC,QAAQ,CAACyB,KAAK,EAAEf,gBAAgB,CAAC;IAEtFZ,eAAe,CAAC;MACduC,KAAK,EAAE;QACLC,KAAK,EAAEjC,KAAK,CAACoB,KAAK,EAAE,OAAO,CAAC;QAC5Bc,QAAQ,EAAElC,KAAK,CAACoB,KAAK,EAAE,UAAU,CAAC;QAClCT,MAAM,EAAEX,KAAK,CAACoB,KAAK,EAAE,QAAQ,CAAC;QAC9BH,OAAO,EAAEjB,KAAK,CAACoB,KAAK,EAAE,SAAS;MACjC;IACF,CAAC,CAAC;IAEFhB,SAAS,CAAC,MAAM;MACd,MAAM+B,eAAe,GAAG5C,WAAW,CAAC6C,WAAW,CAAChB,KAAK,CAAC;MAEtD,OAAAiB,YAAA,CAAA9C,WAAA,EAAA+C,WAAA,CAESH,eAAe;QAAA,SACb,CACL,cAAc,EACd;UACE,sBAAsB,EAAEf,KAAK,CAACX;QAChC,CAAC,EACDiB,YAAY,CAACJ,KAAK,EAClBF,KAAK,CAACmB,KAAK,CACZ;QAAA,SACOnB,KAAK,CAACoB;MAAK;QAAAzB,OAAA,EAAAA,CAAA,MAEjBU,KAAK,CAACV,OAAO,GAAG;UAChBY,UAAU;UACVC,MAAM;UACNC,IAAI;UACJC,IAAI;UACJC,QAAQ,EAAEA,QAAQ,CAACT;QACrB,CAAC,CAAC;MAAA;IAGR,CAAC,CAAC;IAEF,OAAO,CAAC,CAAC;EACX;AACF,CAAC,CAAC"}
|
package/lib/entry-bundler.mjs
CHANGED
package/lib/framework.mjs
CHANGED
package/lib/index.d.mts
CHANGED
|
@@ -515,40 +515,47 @@ declare module '@vue/runtime-core' {
|
|
|
515
515
|
}
|
|
516
516
|
|
|
517
517
|
export interface GlobalComponents {
|
|
518
|
-
VApp: typeof import('vuetify/components')['VApp']
|
|
519
518
|
VAppBar: typeof import('vuetify/components')['VAppBar']
|
|
520
519
|
VAppBarNavIcon: typeof import('vuetify/components')['VAppBarNavIcon']
|
|
521
520
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
|
522
|
-
|
|
521
|
+
VApp: typeof import('vuetify/components')['VApp']
|
|
523
522
|
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
|
524
|
-
VBanner: typeof import('vuetify/components')['VBanner']
|
|
525
|
-
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
526
|
-
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
527
|
-
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
528
523
|
VAlert: typeof import('vuetify/components')['VAlert']
|
|
529
524
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
|
525
|
+
VAvatar: typeof import('vuetify/components')['VAvatar']
|
|
530
526
|
VBadge: typeof import('vuetify/components')['VBadge']
|
|
527
|
+
VBottomSheet: typeof import('vuetify/components')['VBottomSheet']
|
|
528
|
+
VBanner: typeof import('vuetify/components')['VBanner']
|
|
529
|
+
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
|
530
|
+
VBannerText: typeof import('vuetify/components')['VBannerText']
|
|
531
|
+
VBtn: typeof import('vuetify/components')['VBtn']
|
|
531
532
|
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
|
533
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
532
534
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
|
533
535
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
|
534
536
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
|
535
537
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
|
536
|
-
VBtn: typeof import('vuetify/components')['VBtn']
|
|
537
538
|
VCard: typeof import('vuetify/components')['VCard']
|
|
538
539
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
|
539
540
|
VCardItem: typeof import('vuetify/components')['VCardItem']
|
|
540
541
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
|
541
542
|
VCardText: typeof import('vuetify/components')['VCardText']
|
|
542
543
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
|
543
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
|
544
|
-
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
545
|
-
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
546
544
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
|
547
545
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
|
548
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
549
546
|
VChip: typeof import('vuetify/components')['VChip']
|
|
550
|
-
|
|
547
|
+
VCarousel: typeof import('vuetify/components')['VCarousel']
|
|
548
|
+
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
|
551
549
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
|
550
|
+
VCode: typeof import('vuetify/components')['VCode']
|
|
551
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
|
552
|
+
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
553
|
+
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
554
|
+
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
555
|
+
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
556
|
+
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
557
|
+
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
558
|
+
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
552
559
|
VDatePicker: typeof import('vuetify/components')['VDatePicker']
|
|
553
560
|
VDatePickerControls: typeof import('vuetify/components')['VDatePickerControls']
|
|
554
561
|
VDatePickerHeader: typeof import('vuetify/components')['VDatePickerHeader']
|
|
@@ -556,16 +563,8 @@ declare module '@vue/runtime-core' {
|
|
|
556
563
|
VDatePickerMonths: typeof import('vuetify/components')['VDatePickerMonths']
|
|
557
564
|
VDatePickerYears: typeof import('vuetify/components')['VDatePickerYears']
|
|
558
565
|
VCounter: typeof import('vuetify/components')['VCounter']
|
|
559
|
-
VDataTable: typeof import('vuetify/components')['VDataTable']
|
|
560
|
-
VDataTableFooter: typeof import('vuetify/components')['VDataTableFooter']
|
|
561
|
-
VDataTableRows: typeof import('vuetify/components')['VDataTableRows']
|
|
562
|
-
VDataTableRow: typeof import('vuetify/components')['VDataTableRow']
|
|
563
|
-
VDataTableVirtual: typeof import('vuetify/components')['VDataTableVirtual']
|
|
564
|
-
VDataTableServer: typeof import('vuetify/components')['VDataTableServer']
|
|
565
|
-
VCombobox: typeof import('vuetify/components')['VCombobox']
|
|
566
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
|
567
|
-
VFooter: typeof import('vuetify/components')['VFooter']
|
|
568
566
|
VDivider: typeof import('vuetify/components')['VDivider']
|
|
567
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
|
569
568
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
|
570
569
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
|
571
570
|
VExpansionPanelText: typeof import('vuetify/components')['VExpansionPanelText']
|
|
@@ -573,18 +572,19 @@ declare module '@vue/runtime-core' {
|
|
|
573
572
|
VField: typeof import('vuetify/components')['VField']
|
|
574
573
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
|
575
574
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
|
575
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
|
576
576
|
VImg: typeof import('vuetify/components')['VImg']
|
|
577
|
-
|
|
577
|
+
VInput: typeof import('vuetify/components')['VInput']
|
|
578
578
|
VIcon: typeof import('vuetify/components')['VIcon']
|
|
579
579
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
|
580
580
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
|
581
581
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
|
582
582
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
|
583
|
-
VInput: typeof import('vuetify/components')['VInput']
|
|
584
|
-
VKbd: typeof import('vuetify/components')['VKbd']
|
|
585
583
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
|
586
584
|
VItem: typeof import('vuetify/components')['VItem']
|
|
587
|
-
|
|
585
|
+
VKbd: typeof import('vuetify/components')['VKbd']
|
|
586
|
+
VLabel: typeof import('vuetify/components')['VLabel']
|
|
587
|
+
VInfiniteScroll: typeof import('vuetify/components')['VInfiniteScroll']
|
|
588
588
|
VList: typeof import('vuetify/components')['VList']
|
|
589
589
|
VListGroup: typeof import('vuetify/components')['VListGroup']
|
|
590
590
|
VListImg: typeof import('vuetify/components')['VListImg']
|
|
@@ -594,25 +594,25 @@ declare module '@vue/runtime-core' {
|
|
|
594
594
|
VListItemSubtitle: typeof import('vuetify/components')['VListItemSubtitle']
|
|
595
595
|
VListItemTitle: typeof import('vuetify/components')['VListItemTitle']
|
|
596
596
|
VListSubheader: typeof import('vuetify/components')['VListSubheader']
|
|
597
|
-
|
|
598
|
-
VLabel: typeof import('vuetify/components')['VLabel']
|
|
597
|
+
VMain: typeof import('vuetify/components')['VMain']
|
|
599
598
|
VMessages: typeof import('vuetify/components')['VMessages']
|
|
599
|
+
VMenu: typeof import('vuetify/components')['VMenu']
|
|
600
|
+
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
600
601
|
VOtpInput: typeof import('vuetify/components')['VOtpInput']
|
|
601
602
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
|
602
|
-
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
603
|
-
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
|
604
603
|
VPagination: typeof import('vuetify/components')['VPagination']
|
|
605
|
-
|
|
606
|
-
VRating: typeof import('vuetify/components')['VRating']
|
|
604
|
+
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
|
607
605
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
|
606
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
|
608
607
|
VSelect: typeof import('vuetify/components')['VSelect']
|
|
609
|
-
|
|
610
|
-
|
|
608
|
+
VRating: typeof import('vuetify/components')['VRating']
|
|
609
|
+
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
|
611
610
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
|
612
611
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
|
613
|
-
|
|
614
|
-
|
|
612
|
+
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
|
613
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
|
615
614
|
VSkeletonLoader: typeof import('vuetify/components')['VSkeletonLoader']
|
|
615
|
+
VSlider: typeof import('vuetify/components')['VSlider']
|
|
616
616
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
|
617
617
|
VStepper: typeof import('vuetify/components')['VStepper']
|
|
618
618
|
VStepperActions: typeof import('vuetify/components')['VStepperActions']
|
|
@@ -621,27 +621,27 @@ declare module '@vue/runtime-core' {
|
|
|
621
621
|
VStepperWindow: typeof import('vuetify/components')['VStepperWindow']
|
|
622
622
|
VStepperWindowItem: typeof import('vuetify/components')['VStepperWindowItem']
|
|
623
623
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
|
624
|
-
|
|
624
|
+
VTable: typeof import('vuetify/components')['VTable']
|
|
625
625
|
VTabs: typeof import('vuetify/components')['VTabs']
|
|
626
626
|
VTab: typeof import('vuetify/components')['VTab']
|
|
627
|
+
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
628
|
+
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
629
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
|
627
630
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
|
628
631
|
VTextField: typeof import('vuetify/components')['VTextField']
|
|
629
|
-
|
|
632
|
+
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
630
633
|
VToolbar: typeof import('vuetify/components')['VToolbar']
|
|
631
634
|
VToolbarTitle: typeof import('vuetify/components')['VToolbarTitle']
|
|
632
635
|
VToolbarItems: typeof import('vuetify/components')['VToolbarItems']
|
|
633
|
-
VTimeline: typeof import('vuetify/components')['VTimeline']
|
|
634
|
-
VTimelineItem: typeof import('vuetify/components')['VTimelineItem']
|
|
635
|
-
VTooltip: typeof import('vuetify/components')['VTooltip']
|
|
636
636
|
VWindow: typeof import('vuetify/components')['VWindow']
|
|
637
637
|
VWindowItem: typeof import('vuetify/components')['VWindowItem']
|
|
638
638
|
VDataIterator: typeof import('vuetify/components')['VDataIterator']
|
|
639
639
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
|
640
|
+
VForm: typeof import('vuetify/components')['VForm']
|
|
640
641
|
VContainer: typeof import('vuetify/components')['VContainer']
|
|
641
642
|
VCol: typeof import('vuetify/components')['VCol']
|
|
642
643
|
VRow: typeof import('vuetify/components')['VRow']
|
|
643
644
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
|
644
|
-
VForm: typeof import('vuetify/components')['VForm']
|
|
645
645
|
VHover: typeof import('vuetify/components')['VHover']
|
|
646
646
|
VLayout: typeof import('vuetify/components')['VLayout']
|
|
647
647
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
|
@@ -653,8 +653,8 @@ declare module '@vue/runtime-core' {
|
|
|
653
653
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
|
654
654
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
|
655
655
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
|
656
|
-
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
657
656
|
VValidation: typeof import('vuetify/components')['VValidation']
|
|
657
|
+
VVirtualScroll: typeof import('vuetify/components')['VVirtualScroll']
|
|
658
658
|
VFabTransition: typeof import('vuetify/components')['VFabTransition']
|
|
659
659
|
VDialogBottomTransition: typeof import('vuetify/components')['VDialogBottomTransition']
|
|
660
660
|
VDialogTopTransition: typeof import('vuetify/components')['VDialogTopTransition']
|
|
@@ -671,14 +671,14 @@ declare module '@vue/runtime-core' {
|
|
|
671
671
|
VExpandTransition: typeof import('vuetify/components')['VExpandTransition']
|
|
672
672
|
VExpandXTransition: typeof import('vuetify/components')['VExpandXTransition']
|
|
673
673
|
VDialogTransition: typeof import('vuetify/components')['VDialogTransition']
|
|
674
|
-
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
675
|
-
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
676
674
|
VCalendar: typeof import('vuetify/labs/components')['VCalendar']
|
|
677
675
|
VCalendarDay: typeof import('vuetify/labs/components')['VCalendarDay']
|
|
678
676
|
VCalendarHeader: typeof import('vuetify/labs/components')['VCalendarHeader']
|
|
679
677
|
VCalendarInterval: typeof import('vuetify/labs/components')['VCalendarInterval']
|
|
680
678
|
VCalendarIntervalEvent: typeof import('vuetify/labs/components')['VCalendarIntervalEvent']
|
|
681
679
|
VCalendarMonthDay: typeof import('vuetify/labs/components')['VCalendarMonthDay']
|
|
680
|
+
VPicker: typeof import('vuetify/labs/components')['VPicker']
|
|
681
|
+
VPickerTitle: typeof import('vuetify/labs/components')['VPickerTitle']
|
|
682
682
|
VConfirmEdit: typeof import('vuetify/labs/components')['VConfirmEdit']
|
|
683
683
|
}
|
|
684
684
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vuetify",
|
|
3
3
|
"description": "Vue Material Component Framework",
|
|
4
|
-
"version": "3.5.
|
|
4
|
+
"version": "3.5.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "John Leider",
|
|
7
7
|
"email": "john@vuetifyjs.com"
|
|
@@ -200,5 +200,5 @@
|
|
|
200
200
|
"attributes": "dist/json/attributes.json"
|
|
201
201
|
},
|
|
202
202
|
"web-types": "dist/json/web-types.json",
|
|
203
|
-
"gitHead": "
|
|
203
|
+
"gitHead": "7afd453ddcbf9c2a19c00ea110015f5584d31cde"
|
|
204
204
|
}
|