vuetify 3.3.3 → 3.3.4
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/_component-variables-labs.sass +2 -0
- package/dist/json/attributes.json +452 -12
- package/dist/json/importMap-labs.json +32 -0
- package/dist/json/importMap.json +20 -20
- package/dist/json/tags.json +150 -0
- package/dist/json/web-types.json +1609 -21
- package/dist/vuetify-labs.css +469 -192
- package/dist/vuetify-labs.d.ts +5178 -217
- package/dist/vuetify-labs.esm.js +1902 -990
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +1902 -990
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +210 -203
- package/dist/vuetify.d.ts +60 -45
- package/dist/vuetify.esm.js +142 -104
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +142 -104
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +159 -160
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/index.d.mts +32 -25
- package/lib/blueprints/md1.d.mts +32 -25
- package/lib/blueprints/md2.d.mts +32 -25
- package/lib/blueprints/md3.d.mts +32 -25
- package/lib/components/VAppBar/VAppBar.mjs +3 -10
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +4 -22
- package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +6 -17
- package/lib/components/VBreadcrumbs/index.d.mts +7 -7
- package/lib/components/VBtn/VBtn.css +11 -11
- package/lib/components/VBtn/VBtn.sass +1 -1
- package/lib/components/VBtn/_mixins.scss +1 -1
- package/lib/components/VChip/VChip.css +67 -67
- package/lib/components/VChip/_variables.scss +1 -1
- package/lib/components/VCombobox/VCombobox.css +4 -22
- package/lib/components/VCombobox/VCombobox.sass +6 -17
- package/lib/components/VCombobox/_variables.scss +3 -3
- package/lib/components/VCounter/index.d.mts +8 -8
- package/lib/components/VField/VField.css +71 -8
- package/lib/components/VField/VField.sass +9 -5
- package/lib/components/VField/_mixins.sass +7 -0
- package/lib/components/VFileInput/VFileInput.css +2 -17
- package/lib/components/VFileInput/VFileInput.mjs +0 -2
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/VFileInput.sass +2 -11
- package/lib/components/VFileInput/_variables.scss +3 -3
- package/lib/components/VInput/VInput.css +14 -1
- package/lib/components/VInput/VInput.sass +6 -0
- package/lib/components/VInput/_variables.scss +5 -1
- package/lib/components/VList/VListItem.mjs +1 -1
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.css +2 -20
- package/lib/components/VSelect/VSelect.mjs +1 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/VSelect.sass +2 -12
- package/lib/components/VSelect/_variables.scss +3 -3
- package/lib/components/VTabs/VTab.mjs +2 -2
- package/lib/components/VTabs/VTab.mjs.map +1 -1
- package/lib/components/VTimePicker/VTimePickerTitle.mjs +1 -1
- package/lib/components/index.d.mts +15 -15
- package/lib/components/index.mjs +1 -2
- package/lib/components/index.mjs.map +1 -1
- package/lib/composables/icons.mjs.map +1 -1
- package/lib/composables/list-items.mjs +5 -2
- package/lib/composables/list-items.mjs.map +1 -1
- package/lib/composables/nested/nested.mjs +1 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa-svg.d.mts +1 -0
- package/lib/iconsets/fa.d.mts +1 -0
- package/lib/iconsets/fa.mjs +2 -1
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.d.mts +1 -0
- package/lib/iconsets/fa4.mjs +2 -1
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.d.mts +1 -0
- package/lib/iconsets/md.mjs +2 -1
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.d.mts +1 -0
- package/lib/iconsets/mdi-svg.mjs +2 -1
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.d.mts +1 -0
- package/lib/iconsets/mdi.mjs +2 -1
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +45 -30
- package/lib/labs/VDataTable/VDataTableVirtual.mjs +16 -12
- package/lib/labs/VDataTable/VDataTableVirtual.mjs.map +1 -1
- package/lib/labs/VDataTable/composables/headers.mjs +2 -5
- package/lib/labs/VDataTable/composables/headers.mjs.map +1 -1
- package/lib/labs/VDateInput/VDateInput.mjs +127 -0
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -0
- package/lib/labs/VDateInput/VDateInput.sass +11 -0
- package/lib/labs/VDateInput/VDateRangeInput.mjs +223 -0
- package/lib/labs/VDateInput/VDateRangeInput.mjs.map +1 -0
- package/lib/labs/VDateInput/VDateRangeInput.sass +10 -0
- package/lib/labs/VDateInput/composables.mjs +59 -0
- package/lib/labs/VDateInput/composables.mjs.map +1 -0
- package/lib/labs/VDateInput/index.d.mts +1352 -0
- package/lib/labs/VDateInput/index.mjs +3 -0
- package/lib/labs/VDateInput/index.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDateCard.css +33 -0
- package/lib/labs/VDatePicker/VDateCard.mjs +112 -0
- package/lib/labs/VDatePicker/VDateCard.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDateCard.sass +32 -0
- package/lib/labs/VDatePicker/VDatePicker.css +23 -0
- package/lib/labs/VDatePicker/VDatePicker.mjs +172 -0
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePicker.sass +23 -0
- package/lib/labs/VDatePicker/VDatePickerControls.css +15 -0
- package/lib/labs/VDatePicker/VDatePickerControls.mjs +80 -0
- package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerControls.sass +15 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.css +54 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.mjs +75 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerHeader.sass +51 -0
- package/lib/labs/VDatePicker/VDatePickerInput.sass +17 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.css +77 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs +286 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerMonth.sass +69 -0
- package/lib/{components → labs}/VDatePicker/VDatePickerTitle.mjs +1 -1
- package/lib/labs/VDatePicker/VDatePickerTitle.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerYears.css +18 -0
- package/lib/labs/VDatePicker/VDatePickerYears.mjs +64 -0
- package/lib/labs/VDatePicker/VDatePickerYears.mjs.map +1 -0
- package/lib/labs/VDatePicker/VDatePickerYears.sass +16 -0
- package/lib/labs/VDatePicker/composables.mjs +33 -0
- package/lib/labs/VDatePicker/composables.mjs.map +1 -0
- package/lib/labs/VDatePicker/index.d.mts +4430 -0
- package/lib/labs/VDatePicker/index.mjs +7 -0
- package/lib/labs/VDatePicker/index.mjs.map +1 -0
- package/lib/labs/VDatePicker/mixins/date-picker-table.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/createNativeLocaleFormatter.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/eventHelpers.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/index.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/isDateAllowed.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/monthChange.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/pad.mjs.map +1 -0
- package/lib/labs/VDatePicker/util/sanitizeDateString.mjs.map +1 -0
- package/lib/labs/VDatePicker/utils.mjs +69 -0
- package/lib/labs/VDatePicker/utils.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs +87 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.sass +33 -0
- package/lib/labs/VDateRangePicker/VDateRangePicker.mjs +131 -0
- package/lib/labs/VDateRangePicker/VDateRangePicker.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangePicker.sass +21 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.mjs +103 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerHeader.sass +39 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerMonth.mjs +61 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerMonth.mjs.map +1 -0
- package/lib/labs/VDateRangePicker/VDateRangePickerMonth.sass +12 -0
- package/lib/labs/VDateRangePicker/index.d.mts +1065 -0
- package/lib/labs/VDateRangePicker/index.mjs +3 -0
- package/lib/labs/VDateRangePicker/index.mjs.map +1 -0
- package/lib/labs/VPicker/VPicker.css +57 -0
- package/lib/labs/VPicker/VPicker.mjs +47 -0
- package/lib/labs/VPicker/VPicker.mjs.map +1 -0
- package/lib/labs/VPicker/VPicker.sass +53 -0
- package/lib/labs/VPicker/VPickerTitle.mjs +4 -0
- package/lib/labs/VPicker/VPickerTitle.mjs.map +1 -0
- package/lib/labs/VPicker/index.d.mts +541 -0
- package/lib/labs/VPicker/index.mjs +3 -0
- package/lib/labs/VPicker/index.mjs.map +1 -0
- package/lib/labs/components.d.mts +5136 -198
- package/lib/labs/components.mjs +2 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/labs/date/DateAdapter.mjs.map +1 -1
- package/lib/labs/date/adapters/vuetify.d.mts +28 -25
- package/lib/labs/date/adapters/vuetify.mjs +65 -75
- package/lib/labs/date/adapters/vuetify.mjs.map +1 -1
- package/lib/labs/date/date.mjs +82 -11
- package/lib/labs/date/date.mjs.map +1 -1
- package/lib/labs/date/index.d.mts +31 -30
- package/lib/locale/af.mjs +14 -5
- package/lib/locale/af.mjs.map +1 -1
- package/lib/locale/ar.mjs +14 -5
- package/lib/locale/ar.mjs.map +1 -1
- package/lib/locale/az.mjs +14 -5
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/bg.mjs +14 -5
- package/lib/locale/bg.mjs.map +1 -1
- package/lib/locale/ca.mjs +14 -5
- package/lib/locale/ca.mjs.map +1 -1
- package/lib/locale/ckb.mjs +14 -5
- package/lib/locale/ckb.mjs.map +1 -1
- package/lib/locale/cs.mjs +14 -5
- package/lib/locale/cs.mjs.map +1 -1
- package/lib/locale/da.mjs +14 -5
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +14 -5
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/el.mjs +14 -5
- package/lib/locale/el.mjs.map +1 -1
- package/lib/locale/en.mjs +14 -5
- package/lib/locale/en.mjs.map +1 -1
- package/lib/locale/es.mjs +14 -5
- package/lib/locale/es.mjs.map +1 -1
- package/lib/locale/et.mjs +14 -5
- package/lib/locale/et.mjs.map +1 -1
- package/lib/locale/fa.mjs +14 -5
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/locale/fi.mjs +14 -5
- package/lib/locale/fi.mjs.map +1 -1
- package/lib/locale/fr.mjs +14 -5
- package/lib/locale/fr.mjs.map +1 -1
- package/lib/locale/he.mjs +14 -5
- package/lib/locale/he.mjs.map +1 -1
- package/lib/locale/hr.mjs +14 -5
- package/lib/locale/hr.mjs.map +1 -1
- package/lib/locale/hu.mjs +14 -5
- package/lib/locale/hu.mjs.map +1 -1
- package/lib/locale/id.mjs +14 -5
- package/lib/locale/id.mjs.map +1 -1
- package/lib/locale/index.d.mts +588 -210
- package/lib/locale/it.mjs +14 -5
- package/lib/locale/it.mjs.map +1 -1
- package/lib/locale/ja.mjs +14 -5
- package/lib/locale/ja.mjs.map +1 -1
- package/lib/locale/ko.mjs +14 -5
- package/lib/locale/ko.mjs.map +1 -1
- package/lib/locale/lt.mjs +14 -5
- package/lib/locale/lt.mjs.map +1 -1
- package/lib/locale/lv.mjs +14 -5
- package/lib/locale/lv.mjs.map +1 -1
- package/lib/locale/nl.mjs +14 -5
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/locale/no.mjs +14 -5
- package/lib/locale/no.mjs.map +1 -1
- package/lib/locale/pl.mjs +14 -5
- package/lib/locale/pl.mjs.map +1 -1
- package/lib/locale/pt.mjs +14 -5
- package/lib/locale/pt.mjs.map +1 -1
- package/lib/locale/ro.mjs +14 -5
- package/lib/locale/ro.mjs.map +1 -1
- package/lib/locale/ru.mjs +14 -5
- package/lib/locale/ru.mjs.map +1 -1
- package/lib/locale/sk.mjs +14 -5
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/locale/sl.mjs +14 -5
- package/lib/locale/sl.mjs.map +1 -1
- package/lib/locale/sr-Cyrl.mjs +14 -5
- package/lib/locale/sr-Cyrl.mjs.map +1 -1
- package/lib/locale/sr-Latn.mjs +14 -5
- package/lib/locale/sr-Latn.mjs.map +1 -1
- package/lib/locale/sv.mjs +14 -5
- package/lib/locale/sv.mjs.map +1 -1
- package/lib/locale/th.mjs +14 -5
- package/lib/locale/th.mjs.map +1 -1
- package/lib/locale/tr.mjs +14 -5
- package/lib/locale/tr.mjs.map +1 -1
- package/lib/locale/uk.mjs +14 -5
- package/lib/locale/uk.mjs.map +1 -1
- package/lib/locale/vi.mjs +14 -5
- package/lib/locale/vi.mjs.map +1 -1
- package/lib/locale/zh-Hans.mjs +14 -5
- package/lib/locale/zh-Hans.mjs.map +1 -1
- package/lib/locale/zh-Hant.mjs +14 -5
- package/lib/locale/zh-Hant.mjs.map +1 -1
- package/lib/util/dateTimeUtils.mjs +68 -0
- package/lib/util/dateTimeUtils.mjs.map +1 -1
- package/package.json +5 -2
- package/lib/components/VDatePicker/VDatePicker.mjs +0 -475
- package/lib/components/VDatePicker/VDatePicker.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerDateTable.mjs +0 -120
- package/lib/components/VDatePicker/VDatePickerDateTable.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerHeader.mjs +0 -136
- package/lib/components/VDatePicker/VDatePickerHeader.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerHeader.sass +0 -46
- package/lib/components/VDatePicker/VDatePickerMonthTable.mjs +0 -48
- package/lib/components/VDatePicker/VDatePickerMonthTable.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerTitle.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerYears.mjs +0 -84
- package/lib/components/VDatePicker/VDatePickerYears.mjs.map +0 -1
- package/lib/components/VDatePicker/VDatePickerYears.sass +0 -30
- package/lib/components/VDatePicker/index.mjs +0 -18
- package/lib/components/VDatePicker/index.mjs.map +0 -1
- package/lib/components/VDatePicker/mixins/date-picker-table.mjs.map +0 -1
- package/lib/components/VDatePicker/util/createNativeLocaleFormatter.mjs.map +0 -1
- package/lib/components/VDatePicker/util/eventHelpers.mjs.map +0 -1
- package/lib/components/VDatePicker/util/index.mjs.map +0 -1
- package/lib/components/VDatePicker/util/isDateAllowed.mjs.map +0 -1
- package/lib/components/VDatePicker/util/monthChange.mjs.map +0 -1
- package/lib/components/VDatePicker/util/pad.mjs.map +0 -1
- package/lib/components/VDatePicker/util/sanitizeDateString.mjs.map +0 -1
- package/lib/components/VPicker/VPicker.mjs +0 -86
- package/lib/components/VPicker/VPicker.mjs.map +0 -1
- package/lib/components/VPicker/VPicker.sass +0 -94
- package/lib/components/VPicker/index.mjs +0 -4
- package/lib/components/VPicker/index.mjs.map +0 -1
- /package/lib/{components → labs}/VDatePicker/VDatePickerTable.sass +0 -0
- /package/lib/{components → labs}/VDatePicker/VDatePickerTitle.sass +0 -0
- /package/lib/{components → labs}/VDatePicker/_variables.scss +0 -0
- /package/lib/{components → labs}/VDatePicker/mixins/date-picker-table.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/createNativeLocaleFormatter.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/eventHelpers.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/index.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/isDateAllowed.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/monthChange.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/pad.mjs +0 -0
- /package/lib/{components → labs}/VDatePicker/util/sanitizeDateString.mjs +0 -0
- /package/lib/{components → labs}/VPicker/_variables.scss +0 -0
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
@forward '../lib/labs/VBottomSheet/_variables.scss'
|
|
2
2
|
@forward '../lib/labs/VDataTable/_variables.scss'
|
|
3
|
+
@forward '../lib/labs/VDatePicker/_variables.scss'
|
|
3
4
|
@forward '../lib/labs/VInfiniteScroll/_variables.scss'
|
|
5
|
+
@forward '../lib/labs/VPicker/_variables.scss'
|
|
4
6
|
@forward '../lib/labs/VSkeletonLoader/_variables.scss'
|
|
@@ -3391,6 +3391,382 @@
|
|
|
3391
3391
|
"type": "string | number\n",
|
|
3392
3392
|
"description": "MISSING DESCRIPTION"
|
|
3393
3393
|
},
|
|
3394
|
+
"v-date-card/model-value": {
|
|
3395
|
+
"type": "any[]\n",
|
|
3396
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
|
|
3397
|
+
},
|
|
3398
|
+
"v-date-card/height": {
|
|
3399
|
+
"type": "string | number\n",
|
|
3400
|
+
"description": "Sets the height for the component"
|
|
3401
|
+
},
|
|
3402
|
+
"v-date-card/color": {
|
|
3403
|
+
"type": "string\n",
|
|
3404
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3405
|
+
},
|
|
3406
|
+
"v-date-card/transition": {
|
|
3407
|
+
"type": " | string\n | {\n component: ComponentPublicInstanceConstructor<\n {\n $: ComponentInternalInstance\n $data: {}\n $props: {\n disabled?: boolean\n origin?: string\n mode?: string\n group?: boolean\n hideOnLeave?: boolean\n leaveAbsolute?: boolean\n style?: unknown\n class?: unknown\n 'v-slot:default'?: false | (() => VNodeChild)\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n key?: string | number | symbol\n ref?: VNodeRef\n ref_for?: boolean\n ref_key?: string\n onVnodeBeforeMount?: VNodeMountHook | VNodeMountHook[]\n onVnodeMounted?: VNodeMountHook | VNodeMountHook[]\n onVnodeBeforeUpdate?: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeUpdated?: VNodeUpdateHook | VNodeUpdateHook[]\n onVnodeBeforeUnmount?: VNodeMountHook | VNodeMountHook[]\n onVnodeUnmounted?: VNodeMountHook | VNodeMountHook[]\n }\n $attrs: Data\n $refs: Data\n $slots: Readonly<{\n default?: () => VNode<\n RendererNode,\n RendererElement,\n { [key: string]: any }\n >[]\n }>\n $root: ComponentPublicInstance<\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n false,\n ComponentOptionsBase<\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n {},\n {},\n string,\n {}\n >,\n {},\n {}\n >\n $parent: ComponentPublicInstance<\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n {},\n false,\n ComponentOptionsBase<\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n any,\n {},\n {},\n string,\n {}\n >,\n {},\n {}\n >\n $emit: (event: string, ...args: any[]) => void\n $el: any\n $options: ComponentOptionsBase<\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n } & {} & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n } & { 'v-slot:default'?: false | (() => VNodeChild) },\n () => VNode<RendererNode, RendererElement, { [key: string]: any }>,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n },\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>\n > &\n MergedComponentOptionsOverride\n $forceUpdate: () => void\n $nextTick: typeof nextTick\n $watch<T extends string | ((...args: any) => any)>(\n source: T,\n cb: T extends (...args: any) => infer R\n ? (args_0: R, args_1: R) => any\n : (...args: any) => any,\n options?: WatchOptions<boolean>,\n ): WatchStopHandle\n } & {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n } & {} & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n } & {\n 'v-slot:default'?: false | (() => VNodeChild)\n } & ShallowUnwrapRef<\n () => VNode<RendererNode, RendererElement, { [key: string]: any }>\n > &\n ExtractComputedReturns<{}> &\n ComponentCustomProperties & {},\n any,\n any,\n any,\n ComputedOptions,\n MethodOptions\n > &\n ComponentOptionsBase<\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n } & {} & {\n $children?:\n | VNodeChild\n | (() => VNodeChild)\n | { default?: () => VNodeChild }\n 'v-slots'?: { default?: false | (() => VNodeChild) }\n } & { 'v-slot:default'?: false | (() => VNodeChild) },\n () => VNode<RendererNode, RendererElement, { [key: string]: any }>,\n unknown,\n {},\n {},\n ComponentOptionsMixin,\n ComponentOptionsMixin,\n Record<string, any>,\n string,\n {\n disabled: boolean\n origin: string\n mode: string\n group: boolean\n hideOnLeave: boolean\n leaveAbsolute: boolean\n },\n {},\n string,\n SlotsType<Partial<MakeSlots<{ default: never }>>>\n > &\n VNodeProps &\n AllowedComponentProps &\n ComponentCustomProps & {\n filterProps: (props: T) => [Partial<Pick<T, U>>, Omit<T, U>]\n }\n leaveAbsolute: boolean\n }\n",
|
|
3408
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
|
|
3409
|
+
},
|
|
3410
|
+
"v-date-card/multiple": {
|
|
3411
|
+
"type": "boolean\n",
|
|
3412
|
+
"description": "MISSING DESCRIPTION"
|
|
3413
|
+
},
|
|
3414
|
+
"v-date-card/max": {
|
|
3415
|
+
"type": "number\n",
|
|
3416
|
+
"description": "MISSING DESCRIPTION"
|
|
3417
|
+
},
|
|
3418
|
+
"v-date-card/next-icon": {
|
|
3419
|
+
"type": "string\n",
|
|
3420
|
+
"description": "MISSING DESCRIPTION"
|
|
3421
|
+
},
|
|
3422
|
+
"v-date-card/prev-icon": {
|
|
3423
|
+
"type": "string\n",
|
|
3424
|
+
"description": "MISSING DESCRIPTION"
|
|
3425
|
+
},
|
|
3426
|
+
"v-date-card/cancel-text": {
|
|
3427
|
+
"type": "string\n",
|
|
3428
|
+
"description": "MISSING DESCRIPTION"
|
|
3429
|
+
},
|
|
3430
|
+
"v-date-card/ok-text": {
|
|
3431
|
+
"type": "string\n",
|
|
3432
|
+
"description": "MISSING DESCRIPTION"
|
|
3433
|
+
},
|
|
3434
|
+
"v-date-card/input-mode": {
|
|
3435
|
+
"type": "'keyboard' | 'calendar'\n",
|
|
3436
|
+
"description": "MISSING DESCRIPTION"
|
|
3437
|
+
},
|
|
3438
|
+
"v-date-card/hide-actions": {
|
|
3439
|
+
"type": "boolean\n",
|
|
3440
|
+
"description": "MISSING DESCRIPTION"
|
|
3441
|
+
},
|
|
3442
|
+
"v-date-card/expand-icon": {
|
|
3443
|
+
"type": "string\n",
|
|
3444
|
+
"description": "MISSING DESCRIPTION"
|
|
3445
|
+
},
|
|
3446
|
+
"v-date-card/collapse-icon": {
|
|
3447
|
+
"type": "string\n",
|
|
3448
|
+
"description": "MISSING DESCRIPTION"
|
|
3449
|
+
},
|
|
3450
|
+
"v-date-card/range": {
|
|
3451
|
+
"type": "boolean | 'end' | 'start'\n",
|
|
3452
|
+
"description": "MISSING DESCRIPTION"
|
|
3453
|
+
},
|
|
3454
|
+
"v-date-card/display-date": {
|
|
3455
|
+
"type": "any\n",
|
|
3456
|
+
"description": "MISSING DESCRIPTION"
|
|
3457
|
+
},
|
|
3458
|
+
"v-date-card/view-mode": {
|
|
3459
|
+
"type": "'month' | 'year'\n",
|
|
3460
|
+
"description": "MISSING DESCRIPTION"
|
|
3461
|
+
},
|
|
3462
|
+
"v-date-card/format": {
|
|
3463
|
+
"type": "string\n",
|
|
3464
|
+
"description": "MISSING DESCRIPTION"
|
|
3465
|
+
},
|
|
3466
|
+
"v-date-card/show-adjacent-months": {
|
|
3467
|
+
"type": "boolean\n",
|
|
3468
|
+
"description": "MISSING DESCRIPTION"
|
|
3469
|
+
},
|
|
3470
|
+
"v-date-card/hide-weekdays": {
|
|
3471
|
+
"type": "boolean\n",
|
|
3472
|
+
"description": "MISSING DESCRIPTION"
|
|
3473
|
+
},
|
|
3474
|
+
"v-date-card/show-week": {
|
|
3475
|
+
"type": "boolean\n",
|
|
3476
|
+
"description": "MISSING DESCRIPTION"
|
|
3477
|
+
},
|
|
3478
|
+
"v-date-card/hover-date": {
|
|
3479
|
+
"type": "any\n",
|
|
3480
|
+
"description": "MISSING DESCRIPTION"
|
|
3481
|
+
},
|
|
3482
|
+
"v-date-card/side": {
|
|
3483
|
+
"type": "string\n",
|
|
3484
|
+
"description": "MISSING DESCRIPTION"
|
|
3485
|
+
},
|
|
3486
|
+
"v-date-card/min": {
|
|
3487
|
+
"type": "number\n",
|
|
3488
|
+
"description": "MISSING DESCRIPTION"
|
|
3489
|
+
},
|
|
3490
|
+
"v-date-picker/title": {
|
|
3491
|
+
"type": "string\n",
|
|
3492
|
+
"description": "Specify a title text for the component."
|
|
3493
|
+
},
|
|
3494
|
+
"v-date-picker/border": {
|
|
3495
|
+
"type": "string | number | boolean\n",
|
|
3496
|
+
"description": "Applies border styles to component."
|
|
3497
|
+
},
|
|
3498
|
+
"v-date-picker/model-value": {
|
|
3499
|
+
"type": "any[]\n",
|
|
3500
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
|
|
3501
|
+
},
|
|
3502
|
+
"v-date-picker/height": {
|
|
3503
|
+
"type": "string | number\n",
|
|
3504
|
+
"description": "Sets the height for the component."
|
|
3505
|
+
},
|
|
3506
|
+
"v-date-picker/max-height": {
|
|
3507
|
+
"type": "string | number\n",
|
|
3508
|
+
"description": "Sets the maximum height for the component."
|
|
3509
|
+
},
|
|
3510
|
+
"v-date-picker/max-width": {
|
|
3511
|
+
"type": "string | number\n",
|
|
3512
|
+
"description": "Sets the maximum width for the component."
|
|
3513
|
+
},
|
|
3514
|
+
"v-date-picker/min-height": {
|
|
3515
|
+
"type": "string | number\n",
|
|
3516
|
+
"description": "Sets the minimum height for the component."
|
|
3517
|
+
},
|
|
3518
|
+
"v-date-picker/min-width": {
|
|
3519
|
+
"type": "string | number\n",
|
|
3520
|
+
"description": "Sets the minimum width for the component."
|
|
3521
|
+
},
|
|
3522
|
+
"v-date-picker/width": {
|
|
3523
|
+
"type": "string | number\n",
|
|
3524
|
+
"description": "Width of the picker"
|
|
3525
|
+
},
|
|
3526
|
+
"v-date-picker/elevation": {
|
|
3527
|
+
"type": "string | number\n",
|
|
3528
|
+
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
|
|
3529
|
+
},
|
|
3530
|
+
"v-date-picker/location": {
|
|
3531
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
|
|
3532
|
+
"description": "Specifies the component's location. Can combine by using a space separated string"
|
|
3533
|
+
},
|
|
3534
|
+
"v-date-picker/position": {
|
|
3535
|
+
"type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
|
|
3536
|
+
"description": "MISSING DESCRIPTION"
|
|
3537
|
+
},
|
|
3538
|
+
"v-date-picker/rounded": {
|
|
3539
|
+
"type": "string | number | boolean\n",
|
|
3540
|
+
"description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)."
|
|
3541
|
+
},
|
|
3542
|
+
"v-date-picker/tag": {
|
|
3543
|
+
"type": "string\n",
|
|
3544
|
+
"description": "Specify a custom tag used on the root element."
|
|
3545
|
+
},
|
|
3546
|
+
"v-date-picker/theme": {
|
|
3547
|
+
"type": "string\n",
|
|
3548
|
+
"description": "Specify a theme for this component and all of its children"
|
|
3549
|
+
},
|
|
3550
|
+
"v-date-picker/color": {
|
|
3551
|
+
"type": "string\n",
|
|
3552
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3553
|
+
},
|
|
3554
|
+
"v-date-picker/header": {
|
|
3555
|
+
"type": "string\n",
|
|
3556
|
+
"description": "Text shown when no **display-date** is set."
|
|
3557
|
+
},
|
|
3558
|
+
"v-date-picker/transition": {
|
|
3559
|
+
"type": "string\n",
|
|
3560
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition."
|
|
3561
|
+
},
|
|
3562
|
+
"v-date-picker/multiple": {
|
|
3563
|
+
"type": "boolean\n",
|
|
3564
|
+
"description": "Allow the selection of multiple dates"
|
|
3565
|
+
},
|
|
3566
|
+
"v-date-picker/max": {
|
|
3567
|
+
"type": "number\n",
|
|
3568
|
+
"description": "Maximum allowed date/month (ISO 8601 format)"
|
|
3569
|
+
},
|
|
3570
|
+
"v-date-picker/next-icon": {
|
|
3571
|
+
"type": "string\n",
|
|
3572
|
+
"description": "Sets the icon for next month/year button"
|
|
3573
|
+
},
|
|
3574
|
+
"v-date-picker/prev-icon": {
|
|
3575
|
+
"type": "string\n",
|
|
3576
|
+
"description": "Sets the icon for previous month/year button"
|
|
3577
|
+
},
|
|
3578
|
+
"v-date-picker/cancel-text": {
|
|
3579
|
+
"type": "string\n",
|
|
3580
|
+
"description": "Text used for the Cancel button."
|
|
3581
|
+
},
|
|
3582
|
+
"v-date-picker/ok-text": {
|
|
3583
|
+
"type": "string\n",
|
|
3584
|
+
"description": "Text used for the Ok button."
|
|
3585
|
+
},
|
|
3586
|
+
"v-date-picker/input-mode": {
|
|
3587
|
+
"type": "'keyboard' | 'calendar'\n",
|
|
3588
|
+
"description": "Toggles between showing dates or inputs."
|
|
3589
|
+
},
|
|
3590
|
+
"v-date-picker/hide-actions": {
|
|
3591
|
+
"type": "boolean\n",
|
|
3592
|
+
"description": "Hide the picker actions"
|
|
3593
|
+
},
|
|
3594
|
+
"v-date-picker/expand-icon": {
|
|
3595
|
+
"type": "string\n",
|
|
3596
|
+
"description": "Icon used for **view-mode** toggle."
|
|
3597
|
+
},
|
|
3598
|
+
"v-date-picker/collapse-icon": {
|
|
3599
|
+
"type": "string\n",
|
|
3600
|
+
"description": "MISSING DESCRIPTION"
|
|
3601
|
+
},
|
|
3602
|
+
"v-date-picker/range": {
|
|
3603
|
+
"type": "boolean | 'end' | 'start'\n",
|
|
3604
|
+
"description": "Allow the selection of date range"
|
|
3605
|
+
},
|
|
3606
|
+
"v-date-picker/display-date": {
|
|
3607
|
+
"type": "any\n",
|
|
3608
|
+
"description": "The date displayed in the picker header."
|
|
3609
|
+
},
|
|
3610
|
+
"v-date-picker/view-mode": {
|
|
3611
|
+
"type": "'month' | 'year'\n",
|
|
3612
|
+
"description": "MISSING DESCRIPTION"
|
|
3613
|
+
},
|
|
3614
|
+
"v-date-picker/format": {
|
|
3615
|
+
"type": "string\n",
|
|
3616
|
+
"description": "Takes a date object and returns it in a specified format."
|
|
3617
|
+
},
|
|
3618
|
+
"v-date-picker/show-adjacent-months": {
|
|
3619
|
+
"type": "boolean\n",
|
|
3620
|
+
"description": "Toggles visibility of days from previous and next months"
|
|
3621
|
+
},
|
|
3622
|
+
"v-date-picker/hide-weekdays": {
|
|
3623
|
+
"type": "boolean\n",
|
|
3624
|
+
"description": "MISSING DESCRIPTION"
|
|
3625
|
+
},
|
|
3626
|
+
"v-date-picker/show-week": {
|
|
3627
|
+
"type": "boolean\n",
|
|
3628
|
+
"description": "Toggles visibility of the week numbers in the body of the calendar"
|
|
3629
|
+
},
|
|
3630
|
+
"v-date-picker/hover-date": {
|
|
3631
|
+
"type": "any\n",
|
|
3632
|
+
"description": "MISSING DESCRIPTION"
|
|
3633
|
+
},
|
|
3634
|
+
"v-date-picker/side": {
|
|
3635
|
+
"type": "string\n",
|
|
3636
|
+
"description": "MISSING DESCRIPTION"
|
|
3637
|
+
},
|
|
3638
|
+
"v-date-picker/min": {
|
|
3639
|
+
"type": "number\n",
|
|
3640
|
+
"description": "Minimum allowed date/month (ISO 8601 format)"
|
|
3641
|
+
},
|
|
3642
|
+
"v-date-picker/calendar-icon": {
|
|
3643
|
+
"type": "string\n",
|
|
3644
|
+
"description": "The icon shown in the header when in 'input' **input-mode**."
|
|
3645
|
+
},
|
|
3646
|
+
"v-date-picker/keyboard-icon": {
|
|
3647
|
+
"type": "string\n",
|
|
3648
|
+
"description": "MISSING DESCRIPTION"
|
|
3649
|
+
},
|
|
3650
|
+
"v-date-picker/input-text": {
|
|
3651
|
+
"type": "string\n",
|
|
3652
|
+
"description": "MISSING DESCRIPTION"
|
|
3653
|
+
},
|
|
3654
|
+
"v-date-picker/landscape": {
|
|
3655
|
+
"type": "boolean\n",
|
|
3656
|
+
"description": "MISSING DESCRIPTION"
|
|
3657
|
+
},
|
|
3658
|
+
"v-date-picker-controls/next-icon": {
|
|
3659
|
+
"type": "string\n",
|
|
3660
|
+
"description": "MISSING DESCRIPTION"
|
|
3661
|
+
},
|
|
3662
|
+
"v-date-picker-controls/prev-icon": {
|
|
3663
|
+
"type": "string\n",
|
|
3664
|
+
"description": "MISSING DESCRIPTION"
|
|
3665
|
+
},
|
|
3666
|
+
"v-date-picker-controls/expand-icon": {
|
|
3667
|
+
"type": "string\n",
|
|
3668
|
+
"description": "MISSING DESCRIPTION"
|
|
3669
|
+
},
|
|
3670
|
+
"v-date-picker-controls/collapse-icon": {
|
|
3671
|
+
"type": "string\n",
|
|
3672
|
+
"description": "MISSING DESCRIPTION"
|
|
3673
|
+
},
|
|
3674
|
+
"v-date-picker-controls/range": {
|
|
3675
|
+
"type": "string | boolean\n",
|
|
3676
|
+
"description": "MISSING DESCRIPTION"
|
|
3677
|
+
},
|
|
3678
|
+
"v-date-picker-controls/display-date": {
|
|
3679
|
+
"type": "any\n",
|
|
3680
|
+
"description": "MISSING DESCRIPTION"
|
|
3681
|
+
},
|
|
3682
|
+
"v-date-picker-controls/view-mode": {
|
|
3683
|
+
"type": "'month' | 'year'\n",
|
|
3684
|
+
"description": "MISSING DESCRIPTION"
|
|
3685
|
+
},
|
|
3686
|
+
"v-date-picker-controls/format": {
|
|
3687
|
+
"type": "string\n",
|
|
3688
|
+
"description": "MISSING DESCRIPTION"
|
|
3689
|
+
},
|
|
3690
|
+
"v-date-picker-header/color": {
|
|
3691
|
+
"type": "string\n",
|
|
3692
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3693
|
+
},
|
|
3694
|
+
"v-date-picker-header/header": {
|
|
3695
|
+
"type": "string\n",
|
|
3696
|
+
"description": "MISSING DESCRIPTION"
|
|
3697
|
+
},
|
|
3698
|
+
"v-date-picker-header/append-icon": {
|
|
3699
|
+
"type": "string\n",
|
|
3700
|
+
"description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot"
|
|
3701
|
+
},
|
|
3702
|
+
"v-date-picker-header/transition": {
|
|
3703
|
+
"type": "string\n",
|
|
3704
|
+
"description": "MISSING DESCRIPTION"
|
|
3705
|
+
},
|
|
3706
|
+
"v-date-picker-month/model-value": {
|
|
3707
|
+
"type": "any[]\n",
|
|
3708
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
|
|
3709
|
+
},
|
|
3710
|
+
"v-date-picker-month/color": {
|
|
3711
|
+
"type": "string\n",
|
|
3712
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3713
|
+
},
|
|
3714
|
+
"v-date-picker-month/multiple": {
|
|
3715
|
+
"type": "boolean\n",
|
|
3716
|
+
"description": "MISSING DESCRIPTION"
|
|
3717
|
+
},
|
|
3718
|
+
"v-date-picker-month/range": {
|
|
3719
|
+
"type": "boolean | 'end' | 'start'\n",
|
|
3720
|
+
"description": "MISSING DESCRIPTION"
|
|
3721
|
+
},
|
|
3722
|
+
"v-date-picker-month/display-date": {
|
|
3723
|
+
"type": "any\n",
|
|
3724
|
+
"description": "MISSING DESCRIPTION"
|
|
3725
|
+
},
|
|
3726
|
+
"v-date-picker-month/format": {
|
|
3727
|
+
"type": "string\n",
|
|
3728
|
+
"description": "MISSING DESCRIPTION"
|
|
3729
|
+
},
|
|
3730
|
+
"v-date-picker-month/show-adjacent-months": {
|
|
3731
|
+
"type": "boolean\n",
|
|
3732
|
+
"description": "MISSING DESCRIPTION"
|
|
3733
|
+
},
|
|
3734
|
+
"v-date-picker-month/hide-weekdays": {
|
|
3735
|
+
"type": "boolean\n",
|
|
3736
|
+
"description": "MISSING DESCRIPTION"
|
|
3737
|
+
},
|
|
3738
|
+
"v-date-picker-month/show-week": {
|
|
3739
|
+
"type": "boolean\n",
|
|
3740
|
+
"description": "MISSING DESCRIPTION"
|
|
3741
|
+
},
|
|
3742
|
+
"v-date-picker-month/hover-date": {
|
|
3743
|
+
"type": "any\n",
|
|
3744
|
+
"description": "MISSING DESCRIPTION"
|
|
3745
|
+
},
|
|
3746
|
+
"v-date-picker-month/side": {
|
|
3747
|
+
"type": "string\n",
|
|
3748
|
+
"description": "MISSING DESCRIPTION"
|
|
3749
|
+
},
|
|
3750
|
+
"v-date-picker-years/height": {
|
|
3751
|
+
"type": "string | number\n",
|
|
3752
|
+
"description": "Sets the height for the component"
|
|
3753
|
+
},
|
|
3754
|
+
"v-date-picker-years/color": {
|
|
3755
|
+
"type": "string\n",
|
|
3756
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3757
|
+
},
|
|
3758
|
+
"v-date-picker-years/max": {
|
|
3759
|
+
"type": "number\n",
|
|
3760
|
+
"description": "MISSING DESCRIPTION"
|
|
3761
|
+
},
|
|
3762
|
+
"v-date-picker-years/display-date": {
|
|
3763
|
+
"type": "any\n",
|
|
3764
|
+
"description": "MISSING DESCRIPTION"
|
|
3765
|
+
},
|
|
3766
|
+
"v-date-picker-years/min": {
|
|
3767
|
+
"type": "number\n",
|
|
3768
|
+
"description": "MISSING DESCRIPTION"
|
|
3769
|
+
},
|
|
3394
3770
|
"v-defaults-provider/disabled": {
|
|
3395
3771
|
"type": "boolean\n",
|
|
3396
3772
|
"description": "Turns off all calcuations of new default values for improved performance in situations where defaults propagation isn't necessary"
|
|
@@ -3703,6 +4079,10 @@
|
|
|
3703
4079
|
"type": "string\n",
|
|
3704
4080
|
"description": "Applies specified color to the control's background. Used on components that also support the **color** prop. - supports utility colors (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors)"
|
|
3705
4081
|
},
|
|
4082
|
+
"v-expansion-panel/hide-actions": {
|
|
4083
|
+
"type": "boolean\n",
|
|
4084
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
4085
|
+
},
|
|
3706
4086
|
"v-expansion-panel/expand-icon": {
|
|
3707
4087
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
3708
4088
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
@@ -3711,10 +4091,6 @@
|
|
|
3711
4091
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
3712
4092
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
3713
4093
|
},
|
|
3714
|
-
"v-expansion-panel/hide-actions": {
|
|
3715
|
-
"type": "boolean\n",
|
|
3716
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
3717
|
-
},
|
|
3718
4094
|
"v-expansion-panel-text/eager": {
|
|
3719
4095
|
"type": "boolean\n",
|
|
3720
4096
|
"description": "Forces the component's content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO."
|
|
@@ -3731,6 +4107,10 @@
|
|
|
3731
4107
|
"type": "boolean\n",
|
|
3732
4108
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
3733
4109
|
},
|
|
4110
|
+
"v-expansion-panel-title/hide-actions": {
|
|
4111
|
+
"type": "boolean\n",
|
|
4112
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
4113
|
+
},
|
|
3734
4114
|
"v-expansion-panel-title/expand-icon": {
|
|
3735
4115
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
3736
4116
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
@@ -3739,10 +4119,6 @@
|
|
|
3739
4119
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n",
|
|
3740
4120
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
3741
4121
|
},
|
|
3742
|
-
"v-expansion-panel-title/hide-actions": {
|
|
3743
|
-
"type": "boolean\n",
|
|
3744
|
-
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))"
|
|
3745
|
-
},
|
|
3746
4122
|
"v-expansion-panels/model-value": {
|
|
3747
4123
|
"type": "any\n",
|
|
3748
4124
|
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array"
|
|
@@ -4693,11 +5069,11 @@
|
|
|
4693
5069
|
},
|
|
4694
5070
|
"v-list/selected": {
|
|
4695
5071
|
"type": "unknown[]\n",
|
|
4696
|
-
"description": "
|
|
5072
|
+
"description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`."
|
|
4697
5073
|
},
|
|
4698
5074
|
"v-list/select-strategy": {
|
|
4699
5075
|
"type": " | 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L5-L12\" target=\"_blank\">SelectStrategyFn</a>\n",
|
|
4700
|
-
"description": "
|
|
5076
|
+
"description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model."
|
|
4701
5077
|
},
|
|
4702
5078
|
"v-list/nav": {
|
|
4703
5079
|
"type": "boolean\n",
|
|
@@ -4705,11 +5081,11 @@
|
|
|
4705
5081
|
},
|
|
4706
5082
|
"v-list/open-strategy": {
|
|
4707
5083
|
"type": " | 'multiple'\n | 'single'\n | 'list'\n | { open: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/openStrategies.ts#L1-L8\" target=\"_blank\">OpenStrategyFn</a>; select: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/openStrategies.ts#L10-L18\" target=\"_blank\">OpenSelectStrategyFn</a> }\n",
|
|
4708
|
-
"description": "
|
|
5084
|
+
"description": "Affects how items with children behave when expanded.\n- **multiple:** Any number of groups can be open at once.\n- **single:** Only one group at each level can be open, opening a group will cause others to close.\n- **list:** Multiple, but all other groups will close when an item is selected."
|
|
4709
5085
|
},
|
|
4710
5086
|
"v-list/opened": {
|
|
4711
5087
|
"type": "unknown[]\n",
|
|
4712
|
-
"description": "
|
|
5088
|
+
"description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`."
|
|
4713
5089
|
},
|
|
4714
5090
|
"v-list/item-type": {
|
|
4715
5091
|
"type": "string\n",
|
|
@@ -5479,6 +5855,70 @@
|
|
|
5479
5855
|
"type": "string | number\n",
|
|
5480
5856
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-parallax.json))"
|
|
5481
5857
|
},
|
|
5858
|
+
"v-picker/title": {
|
|
5859
|
+
"type": "string\n",
|
|
5860
|
+
"description": "Specify a title text for the component."
|
|
5861
|
+
},
|
|
5862
|
+
"v-picker/border": {
|
|
5863
|
+
"type": "string | number | boolean\n",
|
|
5864
|
+
"description": "Applies border styles to component."
|
|
5865
|
+
},
|
|
5866
|
+
"v-picker/height": {
|
|
5867
|
+
"type": "string | number\n",
|
|
5868
|
+
"description": "Sets the height for the component."
|
|
5869
|
+
},
|
|
5870
|
+
"v-picker/max-height": {
|
|
5871
|
+
"type": "string | number\n",
|
|
5872
|
+
"description": "Sets the maximum height for the component."
|
|
5873
|
+
},
|
|
5874
|
+
"v-picker/max-width": {
|
|
5875
|
+
"type": "string | number\n",
|
|
5876
|
+
"description": "Sets the maximum width for the component."
|
|
5877
|
+
},
|
|
5878
|
+
"v-picker/min-height": {
|
|
5879
|
+
"type": "string | number\n",
|
|
5880
|
+
"description": "Sets the minimum height for the component."
|
|
5881
|
+
},
|
|
5882
|
+
"v-picker/min-width": {
|
|
5883
|
+
"type": "string | number\n",
|
|
5884
|
+
"description": "Sets the minimum width for the component."
|
|
5885
|
+
},
|
|
5886
|
+
"v-picker/width": {
|
|
5887
|
+
"type": "string | number\n",
|
|
5888
|
+
"description": "Sets the width for the component."
|
|
5889
|
+
},
|
|
5890
|
+
"v-picker/elevation": {
|
|
5891
|
+
"type": "string | number\n",
|
|
5892
|
+
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation)."
|
|
5893
|
+
},
|
|
5894
|
+
"v-picker/location": {
|
|
5895
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n",
|
|
5896
|
+
"description": "Specifies the component's location. Can combine by using a space separated string"
|
|
5897
|
+
},
|
|
5898
|
+
"v-picker/position": {
|
|
5899
|
+
"type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n",
|
|
5900
|
+
"description": "MISSING DESCRIPTION"
|
|
5901
|
+
},
|
|
5902
|
+
"v-picker/rounded": {
|
|
5903
|
+
"type": "string | number | boolean\n",
|
|
5904
|
+
"description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius)."
|
|
5905
|
+
},
|
|
5906
|
+
"v-picker/tag": {
|
|
5907
|
+
"type": "string\n",
|
|
5908
|
+
"description": "Specify a custom tag used on the root element."
|
|
5909
|
+
},
|
|
5910
|
+
"v-picker/theme": {
|
|
5911
|
+
"type": "string\n",
|
|
5912
|
+
"description": "Specify a theme for this component and all of its children"
|
|
5913
|
+
},
|
|
5914
|
+
"v-picker/landscape": {
|
|
5915
|
+
"type": "boolean\n",
|
|
5916
|
+
"description": "MISSING DESCRIPTION"
|
|
5917
|
+
},
|
|
5918
|
+
"v-picker-title/tag": {
|
|
5919
|
+
"type": "string\n",
|
|
5920
|
+
"description": "Specify a custom tag used on the root element"
|
|
5921
|
+
},
|
|
5482
5922
|
"v-progress-circular/model-value": {
|
|
5483
5923
|
"type": "string | number\n",
|
|
5484
5924
|
"description": "The percentage value for current progress"
|
|
@@ -28,10 +28,42 @@
|
|
|
28
28
|
"from": "labs/VDataTable/index.mjs",
|
|
29
29
|
"styles": []
|
|
30
30
|
},
|
|
31
|
+
"VDateCard": {
|
|
32
|
+
"from": "labs/VDatePicker/index.mjs",
|
|
33
|
+
"styles": []
|
|
34
|
+
},
|
|
35
|
+
"VDatePicker": {
|
|
36
|
+
"from": "labs/VDatePicker/index.mjs",
|
|
37
|
+
"styles": []
|
|
38
|
+
},
|
|
39
|
+
"VDatePickerControls": {
|
|
40
|
+
"from": "labs/VDatePicker/index.mjs",
|
|
41
|
+
"styles": []
|
|
42
|
+
},
|
|
43
|
+
"VDatePickerHeader": {
|
|
44
|
+
"from": "labs/VDatePicker/index.mjs",
|
|
45
|
+
"styles": []
|
|
46
|
+
},
|
|
47
|
+
"VDatePickerMonth": {
|
|
48
|
+
"from": "labs/VDatePicker/index.mjs",
|
|
49
|
+
"styles": []
|
|
50
|
+
},
|
|
51
|
+
"VDatePickerYears": {
|
|
52
|
+
"from": "labs/VDatePicker/index.mjs",
|
|
53
|
+
"styles": []
|
|
54
|
+
},
|
|
31
55
|
"VInfiniteScroll": {
|
|
32
56
|
"from": "labs/VInfiniteScroll/index.mjs",
|
|
33
57
|
"styles": []
|
|
34
58
|
},
|
|
59
|
+
"VPicker": {
|
|
60
|
+
"from": "labs/VPicker/index.mjs",
|
|
61
|
+
"styles": []
|
|
62
|
+
},
|
|
63
|
+
"VPickerTitle": {
|
|
64
|
+
"from": "labs/VPicker/index.mjs",
|
|
65
|
+
"styles": []
|
|
66
|
+
},
|
|
35
67
|
"VSkeletonLoader": {
|
|
36
68
|
"from": "labs/VSkeletonLoader/index.mjs",
|
|
37
69
|
"styles": []
|