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
package/dist/json/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "vuetify",
|
|
5
|
-
"version": "3.3.
|
|
5
|
+
"version": "3.3.4",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -14529,6 +14529,1384 @@
|
|
|
14529
14529
|
"event": "update:modelValue"
|
|
14530
14530
|
}
|
|
14531
14531
|
},
|
|
14532
|
+
{
|
|
14533
|
+
"name": "VDateCard",
|
|
14534
|
+
"source": {
|
|
14535
|
+
"module": "./src/components/index.ts",
|
|
14536
|
+
"symbol": "VDateCard"
|
|
14537
|
+
},
|
|
14538
|
+
"description": "",
|
|
14539
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card",
|
|
14540
|
+
"attributes": [
|
|
14541
|
+
{
|
|
14542
|
+
"name": "modelValue",
|
|
14543
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array",
|
|
14544
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14545
|
+
"default": "[]",
|
|
14546
|
+
"value": {
|
|
14547
|
+
"kind": "expression",
|
|
14548
|
+
"type": "any[]\n"
|
|
14549
|
+
}
|
|
14550
|
+
},
|
|
14551
|
+
{
|
|
14552
|
+
"name": "height",
|
|
14553
|
+
"description": "Sets the height for the component",
|
|
14554
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14555
|
+
"value": {
|
|
14556
|
+
"kind": "expression",
|
|
14557
|
+
"type": "string | number\n"
|
|
14558
|
+
}
|
|
14559
|
+
},
|
|
14560
|
+
{
|
|
14561
|
+
"name": "color",
|
|
14562
|
+
"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)",
|
|
14563
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14564
|
+
"value": {
|
|
14565
|
+
"kind": "expression",
|
|
14566
|
+
"type": "string\n"
|
|
14567
|
+
}
|
|
14568
|
+
},
|
|
14569
|
+
{
|
|
14570
|
+
"name": "transition",
|
|
14571
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
|
|
14572
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14573
|
+
"default": "{component: {name: 'fade-transition'}, leaveAbsolute: true}",
|
|
14574
|
+
"value": {
|
|
14575
|
+
"kind": "expression",
|
|
14576
|
+
"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"
|
|
14577
|
+
}
|
|
14578
|
+
},
|
|
14579
|
+
{
|
|
14580
|
+
"name": "multiple",
|
|
14581
|
+
"description": "MISSING DESCRIPTION",
|
|
14582
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14583
|
+
"default": "false",
|
|
14584
|
+
"value": {
|
|
14585
|
+
"kind": "expression",
|
|
14586
|
+
"type": "boolean\n"
|
|
14587
|
+
}
|
|
14588
|
+
},
|
|
14589
|
+
{
|
|
14590
|
+
"name": "max",
|
|
14591
|
+
"description": "MISSING DESCRIPTION",
|
|
14592
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14593
|
+
"value": {
|
|
14594
|
+
"kind": "expression",
|
|
14595
|
+
"type": "number\n"
|
|
14596
|
+
}
|
|
14597
|
+
},
|
|
14598
|
+
{
|
|
14599
|
+
"name": "nextIcon",
|
|
14600
|
+
"description": "MISSING DESCRIPTION",
|
|
14601
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14602
|
+
"default": "'$next'",
|
|
14603
|
+
"value": {
|
|
14604
|
+
"kind": "expression",
|
|
14605
|
+
"type": "string\n"
|
|
14606
|
+
}
|
|
14607
|
+
},
|
|
14608
|
+
{
|
|
14609
|
+
"name": "prevIcon",
|
|
14610
|
+
"description": "MISSING DESCRIPTION",
|
|
14611
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14612
|
+
"default": "'$prev'",
|
|
14613
|
+
"value": {
|
|
14614
|
+
"kind": "expression",
|
|
14615
|
+
"type": "string\n"
|
|
14616
|
+
}
|
|
14617
|
+
},
|
|
14618
|
+
{
|
|
14619
|
+
"name": "cancelText",
|
|
14620
|
+
"description": "MISSING DESCRIPTION",
|
|
14621
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14622
|
+
"default": "'$vuetify.datePicker.cancel'",
|
|
14623
|
+
"value": {
|
|
14624
|
+
"kind": "expression",
|
|
14625
|
+
"type": "string\n"
|
|
14626
|
+
}
|
|
14627
|
+
},
|
|
14628
|
+
{
|
|
14629
|
+
"name": "okText",
|
|
14630
|
+
"description": "MISSING DESCRIPTION",
|
|
14631
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14632
|
+
"default": "'$vuetify.datePicker.ok'",
|
|
14633
|
+
"value": {
|
|
14634
|
+
"kind": "expression",
|
|
14635
|
+
"type": "string\n"
|
|
14636
|
+
}
|
|
14637
|
+
},
|
|
14638
|
+
{
|
|
14639
|
+
"name": "inputMode",
|
|
14640
|
+
"description": "MISSING DESCRIPTION",
|
|
14641
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14642
|
+
"default": "'calendar'",
|
|
14643
|
+
"value": {
|
|
14644
|
+
"kind": "expression",
|
|
14645
|
+
"type": "'keyboard' | 'calendar'\n"
|
|
14646
|
+
}
|
|
14647
|
+
},
|
|
14648
|
+
{
|
|
14649
|
+
"name": "hideActions",
|
|
14650
|
+
"description": "MISSING DESCRIPTION",
|
|
14651
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14652
|
+
"default": "false",
|
|
14653
|
+
"value": {
|
|
14654
|
+
"kind": "expression",
|
|
14655
|
+
"type": "boolean\n"
|
|
14656
|
+
}
|
|
14657
|
+
},
|
|
14658
|
+
{
|
|
14659
|
+
"name": "expandIcon",
|
|
14660
|
+
"description": "MISSING DESCRIPTION",
|
|
14661
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14662
|
+
"default": "'$expand'",
|
|
14663
|
+
"value": {
|
|
14664
|
+
"kind": "expression",
|
|
14665
|
+
"type": "string\n"
|
|
14666
|
+
}
|
|
14667
|
+
},
|
|
14668
|
+
{
|
|
14669
|
+
"name": "collapseIcon",
|
|
14670
|
+
"description": "MISSING DESCRIPTION",
|
|
14671
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14672
|
+
"default": "'$collapse'",
|
|
14673
|
+
"value": {
|
|
14674
|
+
"kind": "expression",
|
|
14675
|
+
"type": "string\n"
|
|
14676
|
+
}
|
|
14677
|
+
},
|
|
14678
|
+
{
|
|
14679
|
+
"name": "range",
|
|
14680
|
+
"description": "MISSING DESCRIPTION",
|
|
14681
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14682
|
+
"default": "false",
|
|
14683
|
+
"value": {
|
|
14684
|
+
"kind": "expression",
|
|
14685
|
+
"type": "boolean | 'end' | 'start'\n"
|
|
14686
|
+
}
|
|
14687
|
+
},
|
|
14688
|
+
{
|
|
14689
|
+
"name": "displayDate",
|
|
14690
|
+
"description": "MISSING DESCRIPTION",
|
|
14691
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14692
|
+
"value": {
|
|
14693
|
+
"kind": "expression",
|
|
14694
|
+
"type": "any\n"
|
|
14695
|
+
}
|
|
14696
|
+
},
|
|
14697
|
+
{
|
|
14698
|
+
"name": "viewMode",
|
|
14699
|
+
"description": "MISSING DESCRIPTION",
|
|
14700
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14701
|
+
"default": "'month'",
|
|
14702
|
+
"value": {
|
|
14703
|
+
"kind": "expression",
|
|
14704
|
+
"type": "'month' | 'year'\n"
|
|
14705
|
+
}
|
|
14706
|
+
},
|
|
14707
|
+
{
|
|
14708
|
+
"name": "format",
|
|
14709
|
+
"description": "MISSING DESCRIPTION",
|
|
14710
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14711
|
+
"value": {
|
|
14712
|
+
"kind": "expression",
|
|
14713
|
+
"type": "string\n"
|
|
14714
|
+
}
|
|
14715
|
+
},
|
|
14716
|
+
{
|
|
14717
|
+
"name": "showAdjacentMonths",
|
|
14718
|
+
"description": "MISSING DESCRIPTION",
|
|
14719
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14720
|
+
"default": "false",
|
|
14721
|
+
"value": {
|
|
14722
|
+
"kind": "expression",
|
|
14723
|
+
"type": "boolean\n"
|
|
14724
|
+
}
|
|
14725
|
+
},
|
|
14726
|
+
{
|
|
14727
|
+
"name": "hideWeekdays",
|
|
14728
|
+
"description": "MISSING DESCRIPTION",
|
|
14729
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14730
|
+
"default": "false",
|
|
14731
|
+
"value": {
|
|
14732
|
+
"kind": "expression",
|
|
14733
|
+
"type": "boolean\n"
|
|
14734
|
+
}
|
|
14735
|
+
},
|
|
14736
|
+
{
|
|
14737
|
+
"name": "showWeek",
|
|
14738
|
+
"description": "MISSING DESCRIPTION",
|
|
14739
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14740
|
+
"default": "false",
|
|
14741
|
+
"value": {
|
|
14742
|
+
"kind": "expression",
|
|
14743
|
+
"type": "boolean\n"
|
|
14744
|
+
}
|
|
14745
|
+
},
|
|
14746
|
+
{
|
|
14747
|
+
"name": "hoverDate",
|
|
14748
|
+
"description": "MISSING DESCRIPTION",
|
|
14749
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14750
|
+
"value": {
|
|
14751
|
+
"kind": "expression",
|
|
14752
|
+
"type": "any\n"
|
|
14753
|
+
}
|
|
14754
|
+
},
|
|
14755
|
+
{
|
|
14756
|
+
"name": "side",
|
|
14757
|
+
"description": "MISSING DESCRIPTION",
|
|
14758
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14759
|
+
"value": {
|
|
14760
|
+
"kind": "expression",
|
|
14761
|
+
"type": "string\n"
|
|
14762
|
+
}
|
|
14763
|
+
},
|
|
14764
|
+
{
|
|
14765
|
+
"name": "min",
|
|
14766
|
+
"description": "MISSING DESCRIPTION",
|
|
14767
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14768
|
+
"value": {
|
|
14769
|
+
"kind": "expression",
|
|
14770
|
+
"type": "number\n"
|
|
14771
|
+
}
|
|
14772
|
+
}
|
|
14773
|
+
],
|
|
14774
|
+
"events": [
|
|
14775
|
+
{
|
|
14776
|
+
"name": "update:modelValue",
|
|
14777
|
+
"description": "Event that is emitted when the component's model changes",
|
|
14778
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#events",
|
|
14779
|
+
"arguments": [
|
|
14780
|
+
{
|
|
14781
|
+
"name": "argument",
|
|
14782
|
+
"type": "[any]\n"
|
|
14783
|
+
}
|
|
14784
|
+
]
|
|
14785
|
+
},
|
|
14786
|
+
{
|
|
14787
|
+
"name": "save",
|
|
14788
|
+
"description": "MISSING DESCRIPTION",
|
|
14789
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#events",
|
|
14790
|
+
"arguments": [
|
|
14791
|
+
{
|
|
14792
|
+
"name": "argument",
|
|
14793
|
+
"type": "[]\n"
|
|
14794
|
+
}
|
|
14795
|
+
]
|
|
14796
|
+
},
|
|
14797
|
+
{
|
|
14798
|
+
"name": "cancel",
|
|
14799
|
+
"description": "MISSING DESCRIPTION",
|
|
14800
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#events",
|
|
14801
|
+
"arguments": [
|
|
14802
|
+
{
|
|
14803
|
+
"name": "argument",
|
|
14804
|
+
"type": "[]\n"
|
|
14805
|
+
}
|
|
14806
|
+
]
|
|
14807
|
+
},
|
|
14808
|
+
{
|
|
14809
|
+
"name": "update:displayDate",
|
|
14810
|
+
"description": "MISSING DESCRIPTION",
|
|
14811
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#events",
|
|
14812
|
+
"arguments": [
|
|
14813
|
+
{
|
|
14814
|
+
"name": "argument",
|
|
14815
|
+
"type": "[any]\n"
|
|
14816
|
+
}
|
|
14817
|
+
]
|
|
14818
|
+
},
|
|
14819
|
+
{
|
|
14820
|
+
"name": "update:inputMode",
|
|
14821
|
+
"description": "MISSING DESCRIPTION",
|
|
14822
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#events",
|
|
14823
|
+
"arguments": [
|
|
14824
|
+
{
|
|
14825
|
+
"name": "argument",
|
|
14826
|
+
"type": "[any]\n"
|
|
14827
|
+
}
|
|
14828
|
+
]
|
|
14829
|
+
},
|
|
14830
|
+
{
|
|
14831
|
+
"name": "update:viewMode",
|
|
14832
|
+
"description": "MISSING DESCRIPTION",
|
|
14833
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#events",
|
|
14834
|
+
"arguments": [
|
|
14835
|
+
{
|
|
14836
|
+
"name": "argument",
|
|
14837
|
+
"type": "['month' | 'year']\n"
|
|
14838
|
+
}
|
|
14839
|
+
]
|
|
14840
|
+
}
|
|
14841
|
+
],
|
|
14842
|
+
"slots": [
|
|
14843
|
+
{
|
|
14844
|
+
"name": "default",
|
|
14845
|
+
"description": "The default Vue slot.",
|
|
14846
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14847
|
+
},
|
|
14848
|
+
{
|
|
14849
|
+
"name": "prepend",
|
|
14850
|
+
"description": "Adds an item outside the input and before input content",
|
|
14851
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14852
|
+
},
|
|
14853
|
+
{
|
|
14854
|
+
"name": "append",
|
|
14855
|
+
"description": "Adds an item inside the input and after input content",
|
|
14856
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14857
|
+
},
|
|
14858
|
+
{
|
|
14859
|
+
"name": "title",
|
|
14860
|
+
"description": "Slot for the component's title content",
|
|
14861
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14862
|
+
},
|
|
14863
|
+
{
|
|
14864
|
+
"name": "subtitle",
|
|
14865
|
+
"description": "Slot for the component's subtitle content",
|
|
14866
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14867
|
+
},
|
|
14868
|
+
{
|
|
14869
|
+
"name": "actions",
|
|
14870
|
+
"description": "MISSING DESCRIPTION",
|
|
14871
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14872
|
+
},
|
|
14873
|
+
{
|
|
14874
|
+
"name": "text",
|
|
14875
|
+
"description": "Slot for the component's text content",
|
|
14876
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14877
|
+
},
|
|
14878
|
+
{
|
|
14879
|
+
"name": "loader",
|
|
14880
|
+
"description": "Slot for custom loader (displayed when [loading](#props-loading) prop is equal to true)",
|
|
14881
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots",
|
|
14882
|
+
"vue-properties": [
|
|
14883
|
+
{
|
|
14884
|
+
"name": "color",
|
|
14885
|
+
"type": "string"
|
|
14886
|
+
},
|
|
14887
|
+
{
|
|
14888
|
+
"name": "isActive",
|
|
14889
|
+
"type": "boolean"
|
|
14890
|
+
}
|
|
14891
|
+
]
|
|
14892
|
+
},
|
|
14893
|
+
{
|
|
14894
|
+
"name": "image",
|
|
14895
|
+
"description": "MISSING DESCRIPTION",
|
|
14896
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14897
|
+
},
|
|
14898
|
+
{
|
|
14899
|
+
"name": "item",
|
|
14900
|
+
"description": "Define a custom item appearance",
|
|
14901
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#slots"
|
|
14902
|
+
}
|
|
14903
|
+
],
|
|
14904
|
+
"vue-model": {
|
|
14905
|
+
"prop": "modelValue",
|
|
14906
|
+
"event": "update:modelValue"
|
|
14907
|
+
}
|
|
14908
|
+
},
|
|
14909
|
+
{
|
|
14910
|
+
"name": "VDatePicker",
|
|
14911
|
+
"source": {
|
|
14912
|
+
"module": "./src/components/index.ts",
|
|
14913
|
+
"symbol": "VDatePicker"
|
|
14914
|
+
},
|
|
14915
|
+
"description": "",
|
|
14916
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker",
|
|
14917
|
+
"attributes": [
|
|
14918
|
+
{
|
|
14919
|
+
"name": "title",
|
|
14920
|
+
"description": "Specify a title text for the component.",
|
|
14921
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14922
|
+
"default": "'$vuetify.datePicker.title'",
|
|
14923
|
+
"value": {
|
|
14924
|
+
"kind": "expression",
|
|
14925
|
+
"type": "string\n"
|
|
14926
|
+
}
|
|
14927
|
+
},
|
|
14928
|
+
{
|
|
14929
|
+
"name": "border",
|
|
14930
|
+
"description": "Applies border styles to component.",
|
|
14931
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14932
|
+
"default": "false",
|
|
14933
|
+
"value": {
|
|
14934
|
+
"kind": "expression",
|
|
14935
|
+
"type": "string | number | boolean\n"
|
|
14936
|
+
}
|
|
14937
|
+
},
|
|
14938
|
+
{
|
|
14939
|
+
"name": "modelValue",
|
|
14940
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array",
|
|
14941
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14942
|
+
"default": "[]",
|
|
14943
|
+
"value": {
|
|
14944
|
+
"kind": "expression",
|
|
14945
|
+
"type": "any[]\n"
|
|
14946
|
+
}
|
|
14947
|
+
},
|
|
14948
|
+
{
|
|
14949
|
+
"name": "height",
|
|
14950
|
+
"description": "Sets the height for the component.",
|
|
14951
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14952
|
+
"value": {
|
|
14953
|
+
"kind": "expression",
|
|
14954
|
+
"type": "string | number\n"
|
|
14955
|
+
}
|
|
14956
|
+
},
|
|
14957
|
+
{
|
|
14958
|
+
"name": "maxHeight",
|
|
14959
|
+
"description": "Sets the maximum height for the component.",
|
|
14960
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14961
|
+
"value": {
|
|
14962
|
+
"kind": "expression",
|
|
14963
|
+
"type": "string | number\n"
|
|
14964
|
+
}
|
|
14965
|
+
},
|
|
14966
|
+
{
|
|
14967
|
+
"name": "maxWidth",
|
|
14968
|
+
"description": "Sets the maximum width for the component.",
|
|
14969
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14970
|
+
"value": {
|
|
14971
|
+
"kind": "expression",
|
|
14972
|
+
"type": "string | number\n"
|
|
14973
|
+
}
|
|
14974
|
+
},
|
|
14975
|
+
{
|
|
14976
|
+
"name": "minHeight",
|
|
14977
|
+
"description": "Sets the minimum height for the component.",
|
|
14978
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14979
|
+
"value": {
|
|
14980
|
+
"kind": "expression",
|
|
14981
|
+
"type": "string | number\n"
|
|
14982
|
+
}
|
|
14983
|
+
},
|
|
14984
|
+
{
|
|
14985
|
+
"name": "minWidth",
|
|
14986
|
+
"description": "Sets the minimum width for the component.",
|
|
14987
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14988
|
+
"value": {
|
|
14989
|
+
"kind": "expression",
|
|
14990
|
+
"type": "string | number\n"
|
|
14991
|
+
}
|
|
14992
|
+
},
|
|
14993
|
+
{
|
|
14994
|
+
"name": "width",
|
|
14995
|
+
"description": "Width of the picker",
|
|
14996
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
14997
|
+
"value": {
|
|
14998
|
+
"kind": "expression",
|
|
14999
|
+
"type": "string | number\n"
|
|
15000
|
+
}
|
|
15001
|
+
},
|
|
15002
|
+
{
|
|
15003
|
+
"name": "elevation",
|
|
15004
|
+
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation).",
|
|
15005
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15006
|
+
"value": {
|
|
15007
|
+
"kind": "expression",
|
|
15008
|
+
"type": "string | number\n"
|
|
15009
|
+
}
|
|
15010
|
+
},
|
|
15011
|
+
{
|
|
15012
|
+
"name": "location",
|
|
15013
|
+
"description": "Specifies the component's location. Can combine by using a space separated string",
|
|
15014
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15015
|
+
"value": {
|
|
15016
|
+
"kind": "expression",
|
|
15017
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n"
|
|
15018
|
+
}
|
|
15019
|
+
},
|
|
15020
|
+
{
|
|
15021
|
+
"name": "position",
|
|
15022
|
+
"description": "MISSING DESCRIPTION",
|
|
15023
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15024
|
+
"value": {
|
|
15025
|
+
"kind": "expression",
|
|
15026
|
+
"type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n"
|
|
15027
|
+
}
|
|
15028
|
+
},
|
|
15029
|
+
{
|
|
15030
|
+
"name": "rounded",
|
|
15031
|
+
"description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius).",
|
|
15032
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15033
|
+
"default": "false",
|
|
15034
|
+
"value": {
|
|
15035
|
+
"kind": "expression",
|
|
15036
|
+
"type": "string | number | boolean\n"
|
|
15037
|
+
}
|
|
15038
|
+
},
|
|
15039
|
+
{
|
|
15040
|
+
"name": "tag",
|
|
15041
|
+
"description": "Specify a custom tag used on the root element.",
|
|
15042
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15043
|
+
"default": "'div'",
|
|
15044
|
+
"value": {
|
|
15045
|
+
"kind": "expression",
|
|
15046
|
+
"type": "string\n"
|
|
15047
|
+
}
|
|
15048
|
+
},
|
|
15049
|
+
{
|
|
15050
|
+
"name": "theme",
|
|
15051
|
+
"description": "Specify a theme for this component and all of its children",
|
|
15052
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15053
|
+
"value": {
|
|
15054
|
+
"kind": "expression",
|
|
15055
|
+
"type": "string\n"
|
|
15056
|
+
}
|
|
15057
|
+
},
|
|
15058
|
+
{
|
|
15059
|
+
"name": "color",
|
|
15060
|
+
"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)",
|
|
15061
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15062
|
+
"value": {
|
|
15063
|
+
"kind": "expression",
|
|
15064
|
+
"type": "string\n"
|
|
15065
|
+
}
|
|
15066
|
+
},
|
|
15067
|
+
{
|
|
15068
|
+
"name": "header",
|
|
15069
|
+
"description": "Text shown when no **display-date** is set.",
|
|
15070
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15071
|
+
"default": "'$vuetify.datePicker.header'",
|
|
15072
|
+
"value": {
|
|
15073
|
+
"kind": "expression",
|
|
15074
|
+
"type": "string\n"
|
|
15075
|
+
}
|
|
15076
|
+
},
|
|
15077
|
+
{
|
|
15078
|
+
"name": "transition",
|
|
15079
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
|
|
15080
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15081
|
+
"default": "'fade'",
|
|
15082
|
+
"value": {
|
|
15083
|
+
"kind": "expression",
|
|
15084
|
+
"type": "string\n"
|
|
15085
|
+
}
|
|
15086
|
+
},
|
|
15087
|
+
{
|
|
15088
|
+
"name": "multiple",
|
|
15089
|
+
"description": "Allow the selection of multiple dates",
|
|
15090
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15091
|
+
"default": "false",
|
|
15092
|
+
"value": {
|
|
15093
|
+
"kind": "expression",
|
|
15094
|
+
"type": "boolean\n"
|
|
15095
|
+
}
|
|
15096
|
+
},
|
|
15097
|
+
{
|
|
15098
|
+
"name": "max",
|
|
15099
|
+
"description": "Maximum allowed date/month (ISO 8601 format)",
|
|
15100
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15101
|
+
"value": {
|
|
15102
|
+
"kind": "expression",
|
|
15103
|
+
"type": "number\n"
|
|
15104
|
+
}
|
|
15105
|
+
},
|
|
15106
|
+
{
|
|
15107
|
+
"name": "nextIcon",
|
|
15108
|
+
"description": "Sets the icon for next month/year button",
|
|
15109
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15110
|
+
"default": "'$next'",
|
|
15111
|
+
"value": {
|
|
15112
|
+
"kind": "expression",
|
|
15113
|
+
"type": "string\n"
|
|
15114
|
+
}
|
|
15115
|
+
},
|
|
15116
|
+
{
|
|
15117
|
+
"name": "prevIcon",
|
|
15118
|
+
"description": "Sets the icon for previous month/year button",
|
|
15119
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15120
|
+
"default": "'$prev'",
|
|
15121
|
+
"value": {
|
|
15122
|
+
"kind": "expression",
|
|
15123
|
+
"type": "string\n"
|
|
15124
|
+
}
|
|
15125
|
+
},
|
|
15126
|
+
{
|
|
15127
|
+
"name": "cancelText",
|
|
15128
|
+
"description": "Text used for the Cancel button.",
|
|
15129
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15130
|
+
"default": "'$vuetify.datePicker.cancel'",
|
|
15131
|
+
"value": {
|
|
15132
|
+
"kind": "expression",
|
|
15133
|
+
"type": "string\n"
|
|
15134
|
+
}
|
|
15135
|
+
},
|
|
15136
|
+
{
|
|
15137
|
+
"name": "okText",
|
|
15138
|
+
"description": "Text used for the Ok button.",
|
|
15139
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15140
|
+
"default": "'$vuetify.datePicker.ok'",
|
|
15141
|
+
"value": {
|
|
15142
|
+
"kind": "expression",
|
|
15143
|
+
"type": "string\n"
|
|
15144
|
+
}
|
|
15145
|
+
},
|
|
15146
|
+
{
|
|
15147
|
+
"name": "inputMode",
|
|
15148
|
+
"description": "Toggles between showing dates or inputs.",
|
|
15149
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15150
|
+
"default": "'calendar'",
|
|
15151
|
+
"value": {
|
|
15152
|
+
"kind": "expression",
|
|
15153
|
+
"type": "'keyboard' | 'calendar'\n"
|
|
15154
|
+
}
|
|
15155
|
+
},
|
|
15156
|
+
{
|
|
15157
|
+
"name": "hideActions",
|
|
15158
|
+
"description": "Hide the picker actions",
|
|
15159
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15160
|
+
"default": "false",
|
|
15161
|
+
"value": {
|
|
15162
|
+
"kind": "expression",
|
|
15163
|
+
"type": "boolean\n"
|
|
15164
|
+
}
|
|
15165
|
+
},
|
|
15166
|
+
{
|
|
15167
|
+
"name": "expandIcon",
|
|
15168
|
+
"description": "Icon used for **view-mode** toggle.",
|
|
15169
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15170
|
+
"default": "'$expand'",
|
|
15171
|
+
"value": {
|
|
15172
|
+
"kind": "expression",
|
|
15173
|
+
"type": "string\n"
|
|
15174
|
+
}
|
|
15175
|
+
},
|
|
15176
|
+
{
|
|
15177
|
+
"name": "collapseIcon",
|
|
15178
|
+
"description": "MISSING DESCRIPTION",
|
|
15179
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15180
|
+
"default": "'$collapse'",
|
|
15181
|
+
"value": {
|
|
15182
|
+
"kind": "expression",
|
|
15183
|
+
"type": "string\n"
|
|
15184
|
+
}
|
|
15185
|
+
},
|
|
15186
|
+
{
|
|
15187
|
+
"name": "range",
|
|
15188
|
+
"description": "Allow the selection of date range",
|
|
15189
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15190
|
+
"default": "false",
|
|
15191
|
+
"value": {
|
|
15192
|
+
"kind": "expression",
|
|
15193
|
+
"type": "boolean | 'end' | 'start'\n"
|
|
15194
|
+
}
|
|
15195
|
+
},
|
|
15196
|
+
{
|
|
15197
|
+
"name": "displayDate",
|
|
15198
|
+
"description": "The date displayed in the picker header.",
|
|
15199
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15200
|
+
"value": {
|
|
15201
|
+
"kind": "expression",
|
|
15202
|
+
"type": "any\n"
|
|
15203
|
+
}
|
|
15204
|
+
},
|
|
15205
|
+
{
|
|
15206
|
+
"name": "viewMode",
|
|
15207
|
+
"description": "MISSING DESCRIPTION",
|
|
15208
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15209
|
+
"default": "'month'",
|
|
15210
|
+
"value": {
|
|
15211
|
+
"kind": "expression",
|
|
15212
|
+
"type": "'month' | 'year'\n"
|
|
15213
|
+
}
|
|
15214
|
+
},
|
|
15215
|
+
{
|
|
15216
|
+
"name": "format",
|
|
15217
|
+
"description": "Takes a date object and returns it in a specified format.",
|
|
15218
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15219
|
+
"value": {
|
|
15220
|
+
"kind": "expression",
|
|
15221
|
+
"type": "string\n"
|
|
15222
|
+
}
|
|
15223
|
+
},
|
|
15224
|
+
{
|
|
15225
|
+
"name": "showAdjacentMonths",
|
|
15226
|
+
"description": "Toggles visibility of days from previous and next months",
|
|
15227
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15228
|
+
"default": "false",
|
|
15229
|
+
"value": {
|
|
15230
|
+
"kind": "expression",
|
|
15231
|
+
"type": "boolean\n"
|
|
15232
|
+
}
|
|
15233
|
+
},
|
|
15234
|
+
{
|
|
15235
|
+
"name": "hideWeekdays",
|
|
15236
|
+
"description": "MISSING DESCRIPTION",
|
|
15237
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15238
|
+
"default": "false",
|
|
15239
|
+
"value": {
|
|
15240
|
+
"kind": "expression",
|
|
15241
|
+
"type": "boolean\n"
|
|
15242
|
+
}
|
|
15243
|
+
},
|
|
15244
|
+
{
|
|
15245
|
+
"name": "showWeek",
|
|
15246
|
+
"description": "Toggles visibility of the week numbers in the body of the calendar",
|
|
15247
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15248
|
+
"default": "false",
|
|
15249
|
+
"value": {
|
|
15250
|
+
"kind": "expression",
|
|
15251
|
+
"type": "boolean\n"
|
|
15252
|
+
}
|
|
15253
|
+
},
|
|
15254
|
+
{
|
|
15255
|
+
"name": "hoverDate",
|
|
15256
|
+
"description": "MISSING DESCRIPTION",
|
|
15257
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15258
|
+
"value": {
|
|
15259
|
+
"kind": "expression",
|
|
15260
|
+
"type": "any\n"
|
|
15261
|
+
}
|
|
15262
|
+
},
|
|
15263
|
+
{
|
|
15264
|
+
"name": "side",
|
|
15265
|
+
"description": "MISSING DESCRIPTION",
|
|
15266
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15267
|
+
"value": {
|
|
15268
|
+
"kind": "expression",
|
|
15269
|
+
"type": "string\n"
|
|
15270
|
+
}
|
|
15271
|
+
},
|
|
15272
|
+
{
|
|
15273
|
+
"name": "min",
|
|
15274
|
+
"description": "Minimum allowed date/month (ISO 8601 format)",
|
|
15275
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15276
|
+
"value": {
|
|
15277
|
+
"kind": "expression",
|
|
15278
|
+
"type": "number\n"
|
|
15279
|
+
}
|
|
15280
|
+
},
|
|
15281
|
+
{
|
|
15282
|
+
"name": "calendarIcon",
|
|
15283
|
+
"description": "The icon shown in the header when in 'input' **input-mode**.",
|
|
15284
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15285
|
+
"default": "'$calendar'",
|
|
15286
|
+
"value": {
|
|
15287
|
+
"kind": "expression",
|
|
15288
|
+
"type": "string\n"
|
|
15289
|
+
}
|
|
15290
|
+
},
|
|
15291
|
+
{
|
|
15292
|
+
"name": "keyboardIcon",
|
|
15293
|
+
"description": "MISSING DESCRIPTION",
|
|
15294
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15295
|
+
"default": "'$edit'",
|
|
15296
|
+
"value": {
|
|
15297
|
+
"kind": "expression",
|
|
15298
|
+
"type": "string\n"
|
|
15299
|
+
}
|
|
15300
|
+
},
|
|
15301
|
+
{
|
|
15302
|
+
"name": "inputText",
|
|
15303
|
+
"description": "MISSING DESCRIPTION",
|
|
15304
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15305
|
+
"default": "'$vuetify.datePicker.input.placeholder'",
|
|
15306
|
+
"value": {
|
|
15307
|
+
"kind": "expression",
|
|
15308
|
+
"type": "string\n"
|
|
15309
|
+
}
|
|
15310
|
+
},
|
|
15311
|
+
{
|
|
15312
|
+
"name": "landscape",
|
|
15313
|
+
"description": "MISSING DESCRIPTION",
|
|
15314
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15315
|
+
"default": "false",
|
|
15316
|
+
"value": {
|
|
15317
|
+
"kind": "expression",
|
|
15318
|
+
"type": "boolean\n"
|
|
15319
|
+
}
|
|
15320
|
+
}
|
|
15321
|
+
],
|
|
15322
|
+
"events": [
|
|
15323
|
+
{
|
|
15324
|
+
"name": "update:modelValue",
|
|
15325
|
+
"description": "Event that is emitted when the component's model changes",
|
|
15326
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#events",
|
|
15327
|
+
"arguments": [
|
|
15328
|
+
{
|
|
15329
|
+
"name": "argument",
|
|
15330
|
+
"type": "[any[]]\n"
|
|
15331
|
+
}
|
|
15332
|
+
]
|
|
15333
|
+
},
|
|
15334
|
+
{
|
|
15335
|
+
"name": "update:focused",
|
|
15336
|
+
"description": "Event that is emitted when the component's focus state changes",
|
|
15337
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#events",
|
|
15338
|
+
"arguments": [
|
|
15339
|
+
{
|
|
15340
|
+
"name": "argument",
|
|
15341
|
+
"type": "[boolean]\n"
|
|
15342
|
+
}
|
|
15343
|
+
]
|
|
15344
|
+
},
|
|
15345
|
+
{
|
|
15346
|
+
"name": "update:displayDate",
|
|
15347
|
+
"description": "MISSING DESCRIPTION",
|
|
15348
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#events",
|
|
15349
|
+
"arguments": [
|
|
15350
|
+
{
|
|
15351
|
+
"name": "argument",
|
|
15352
|
+
"type": "[any]\n"
|
|
15353
|
+
}
|
|
15354
|
+
]
|
|
15355
|
+
},
|
|
15356
|
+
{
|
|
15357
|
+
"name": "update:inputMode",
|
|
15358
|
+
"description": "MISSING DESCRIPTION",
|
|
15359
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#events",
|
|
15360
|
+
"arguments": [
|
|
15361
|
+
{
|
|
15362
|
+
"name": "argument",
|
|
15363
|
+
"type": "['keyboard' | 'calendar']\n"
|
|
15364
|
+
}
|
|
15365
|
+
]
|
|
15366
|
+
},
|
|
15367
|
+
{
|
|
15368
|
+
"name": "update:viewMode",
|
|
15369
|
+
"description": "MISSING DESCRIPTION",
|
|
15370
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#events",
|
|
15371
|
+
"arguments": [
|
|
15372
|
+
{
|
|
15373
|
+
"name": "argument",
|
|
15374
|
+
"type": "['month' | 'year']\n"
|
|
15375
|
+
}
|
|
15376
|
+
]
|
|
15377
|
+
},
|
|
15378
|
+
{
|
|
15379
|
+
"name": "click:cancel",
|
|
15380
|
+
"description": "MISSING DESCRIPTION",
|
|
15381
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#events",
|
|
15382
|
+
"arguments": [
|
|
15383
|
+
{
|
|
15384
|
+
"name": "argument",
|
|
15385
|
+
"type": "[]\n"
|
|
15386
|
+
}
|
|
15387
|
+
]
|
|
15388
|
+
},
|
|
15389
|
+
{
|
|
15390
|
+
"name": "click:save",
|
|
15391
|
+
"description": "MISSING DESCRIPTION",
|
|
15392
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#events",
|
|
15393
|
+
"arguments": [
|
|
15394
|
+
{
|
|
15395
|
+
"name": "argument",
|
|
15396
|
+
"type": "[]\n"
|
|
15397
|
+
}
|
|
15398
|
+
]
|
|
15399
|
+
}
|
|
15400
|
+
],
|
|
15401
|
+
"slots": [
|
|
15402
|
+
{
|
|
15403
|
+
"name": "header",
|
|
15404
|
+
"description": "MISSING DESCRIPTION",
|
|
15405
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#slots",
|
|
15406
|
+
"vue-properties": [
|
|
15407
|
+
{
|
|
15408
|
+
"name": "header",
|
|
15409
|
+
"type": "string"
|
|
15410
|
+
},
|
|
15411
|
+
{
|
|
15412
|
+
"name": "appendIcon",
|
|
15413
|
+
"type": "string"
|
|
15414
|
+
},
|
|
15415
|
+
{
|
|
15416
|
+
"name": "onClick:append",
|
|
15417
|
+
"type": "() => void"
|
|
15418
|
+
}
|
|
15419
|
+
]
|
|
15420
|
+
}
|
|
15421
|
+
],
|
|
15422
|
+
"vue-model": {
|
|
15423
|
+
"prop": "modelValue",
|
|
15424
|
+
"event": "update:modelValue"
|
|
15425
|
+
}
|
|
15426
|
+
},
|
|
15427
|
+
{
|
|
15428
|
+
"name": "VDatePickerControls",
|
|
15429
|
+
"source": {
|
|
15430
|
+
"module": "./src/components/index.ts",
|
|
15431
|
+
"symbol": "VDatePickerControls"
|
|
15432
|
+
},
|
|
15433
|
+
"description": "",
|
|
15434
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls",
|
|
15435
|
+
"attributes": [
|
|
15436
|
+
{
|
|
15437
|
+
"name": "nextIcon",
|
|
15438
|
+
"description": "MISSING DESCRIPTION",
|
|
15439
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15440
|
+
"default": "'$next'",
|
|
15441
|
+
"value": {
|
|
15442
|
+
"kind": "expression",
|
|
15443
|
+
"type": "string\n"
|
|
15444
|
+
}
|
|
15445
|
+
},
|
|
15446
|
+
{
|
|
15447
|
+
"name": "prevIcon",
|
|
15448
|
+
"description": "MISSING DESCRIPTION",
|
|
15449
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15450
|
+
"default": "'$prev'",
|
|
15451
|
+
"value": {
|
|
15452
|
+
"kind": "expression",
|
|
15453
|
+
"type": "string\n"
|
|
15454
|
+
}
|
|
15455
|
+
},
|
|
15456
|
+
{
|
|
15457
|
+
"name": "expandIcon",
|
|
15458
|
+
"description": "MISSING DESCRIPTION",
|
|
15459
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15460
|
+
"default": "'$expand'",
|
|
15461
|
+
"value": {
|
|
15462
|
+
"kind": "expression",
|
|
15463
|
+
"type": "string\n"
|
|
15464
|
+
}
|
|
15465
|
+
},
|
|
15466
|
+
{
|
|
15467
|
+
"name": "collapseIcon",
|
|
15468
|
+
"description": "MISSING DESCRIPTION",
|
|
15469
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15470
|
+
"default": "'$collapse'",
|
|
15471
|
+
"value": {
|
|
15472
|
+
"kind": "expression",
|
|
15473
|
+
"type": "string\n"
|
|
15474
|
+
}
|
|
15475
|
+
},
|
|
15476
|
+
{
|
|
15477
|
+
"name": "range",
|
|
15478
|
+
"description": "MISSING DESCRIPTION",
|
|
15479
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15480
|
+
"default": "false",
|
|
15481
|
+
"value": {
|
|
15482
|
+
"kind": "expression",
|
|
15483
|
+
"type": "string | boolean\n"
|
|
15484
|
+
}
|
|
15485
|
+
},
|
|
15486
|
+
{
|
|
15487
|
+
"name": "displayDate",
|
|
15488
|
+
"description": "MISSING DESCRIPTION",
|
|
15489
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15490
|
+
"default": "new Date('2023-06-13T20:04:56.103Z')",
|
|
15491
|
+
"value": {
|
|
15492
|
+
"kind": "expression",
|
|
15493
|
+
"type": "any\n"
|
|
15494
|
+
}
|
|
15495
|
+
},
|
|
15496
|
+
{
|
|
15497
|
+
"name": "viewMode",
|
|
15498
|
+
"description": "MISSING DESCRIPTION",
|
|
15499
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15500
|
+
"default": "'month'",
|
|
15501
|
+
"value": {
|
|
15502
|
+
"kind": "expression",
|
|
15503
|
+
"type": "'month' | 'year'\n"
|
|
15504
|
+
}
|
|
15505
|
+
},
|
|
15506
|
+
{
|
|
15507
|
+
"name": "format",
|
|
15508
|
+
"description": "MISSING DESCRIPTION",
|
|
15509
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15510
|
+
"value": {
|
|
15511
|
+
"kind": "expression",
|
|
15512
|
+
"type": "string\n"
|
|
15513
|
+
}
|
|
15514
|
+
}
|
|
15515
|
+
],
|
|
15516
|
+
"events": [
|
|
15517
|
+
{
|
|
15518
|
+
"name": "update:focused",
|
|
15519
|
+
"description": "Event that is emitted when the component's focus state changes",
|
|
15520
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#events",
|
|
15521
|
+
"arguments": [
|
|
15522
|
+
{
|
|
15523
|
+
"name": "argument",
|
|
15524
|
+
"type": "[boolean]\n"
|
|
15525
|
+
}
|
|
15526
|
+
]
|
|
15527
|
+
},
|
|
15528
|
+
{
|
|
15529
|
+
"name": "update:displayDate",
|
|
15530
|
+
"description": "MISSING DESCRIPTION",
|
|
15531
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#events",
|
|
15532
|
+
"arguments": [
|
|
15533
|
+
{
|
|
15534
|
+
"name": "argument",
|
|
15535
|
+
"type": "[any]\n"
|
|
15536
|
+
}
|
|
15537
|
+
]
|
|
15538
|
+
},
|
|
15539
|
+
{
|
|
15540
|
+
"name": "update:viewMode",
|
|
15541
|
+
"description": "MISSING DESCRIPTION",
|
|
15542
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#events",
|
|
15543
|
+
"arguments": [
|
|
15544
|
+
{
|
|
15545
|
+
"name": "argument",
|
|
15546
|
+
"type": "['month' | 'year']\n"
|
|
15547
|
+
}
|
|
15548
|
+
]
|
|
15549
|
+
}
|
|
15550
|
+
],
|
|
15551
|
+
"slots": [
|
|
15552
|
+
{
|
|
15553
|
+
"name": "default",
|
|
15554
|
+
"description": "The default Vue slot.",
|
|
15555
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#slots"
|
|
15556
|
+
}
|
|
15557
|
+
],
|
|
15558
|
+
"vue-model": {
|
|
15559
|
+
"prop": "modelValue",
|
|
15560
|
+
"event": "update:modelValue"
|
|
15561
|
+
}
|
|
15562
|
+
},
|
|
15563
|
+
{
|
|
15564
|
+
"name": "VDatePickerHeader",
|
|
15565
|
+
"source": {
|
|
15566
|
+
"module": "./src/components/index.ts",
|
|
15567
|
+
"symbol": "VDatePickerHeader"
|
|
15568
|
+
},
|
|
15569
|
+
"description": "",
|
|
15570
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header",
|
|
15571
|
+
"attributes": [
|
|
15572
|
+
{
|
|
15573
|
+
"name": "color",
|
|
15574
|
+
"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)",
|
|
15575
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#props",
|
|
15576
|
+
"value": {
|
|
15577
|
+
"kind": "expression",
|
|
15578
|
+
"type": "string\n"
|
|
15579
|
+
}
|
|
15580
|
+
},
|
|
15581
|
+
{
|
|
15582
|
+
"name": "header",
|
|
15583
|
+
"description": "MISSING DESCRIPTION",
|
|
15584
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#props",
|
|
15585
|
+
"value": {
|
|
15586
|
+
"kind": "expression",
|
|
15587
|
+
"type": "string\n"
|
|
15588
|
+
}
|
|
15589
|
+
},
|
|
15590
|
+
{
|
|
15591
|
+
"name": "appendIcon",
|
|
15592
|
+
"description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot",
|
|
15593
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#props",
|
|
15594
|
+
"value": {
|
|
15595
|
+
"kind": "expression",
|
|
15596
|
+
"type": "string\n"
|
|
15597
|
+
}
|
|
15598
|
+
},
|
|
15599
|
+
{
|
|
15600
|
+
"name": "transition",
|
|
15601
|
+
"description": "MISSING DESCRIPTION",
|
|
15602
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#props",
|
|
15603
|
+
"value": {
|
|
15604
|
+
"kind": "expression",
|
|
15605
|
+
"type": "string\n"
|
|
15606
|
+
}
|
|
15607
|
+
}
|
|
15608
|
+
],
|
|
15609
|
+
"events": [
|
|
15610
|
+
{
|
|
15611
|
+
"name": "click:append",
|
|
15612
|
+
"description": "Emitted when appended icon is clicked",
|
|
15613
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#events",
|
|
15614
|
+
"arguments": [
|
|
15615
|
+
{
|
|
15616
|
+
"name": "argument",
|
|
15617
|
+
"type": "[]\n"
|
|
15618
|
+
}
|
|
15619
|
+
]
|
|
15620
|
+
}
|
|
15621
|
+
],
|
|
15622
|
+
"slots": [
|
|
15623
|
+
{
|
|
15624
|
+
"name": "prepend",
|
|
15625
|
+
"description": "Adds an item outside the input and before input content",
|
|
15626
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#slots"
|
|
15627
|
+
},
|
|
15628
|
+
{
|
|
15629
|
+
"name": "default",
|
|
15630
|
+
"description": "The default Vue slot.",
|
|
15631
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#slots"
|
|
15632
|
+
},
|
|
15633
|
+
{
|
|
15634
|
+
"name": "append",
|
|
15635
|
+
"description": "Adds an item inside the input and after input content",
|
|
15636
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-header#slots"
|
|
15637
|
+
}
|
|
15638
|
+
],
|
|
15639
|
+
"vue-model": {
|
|
15640
|
+
"prop": "modelValue",
|
|
15641
|
+
"event": "update:modelValue"
|
|
15642
|
+
}
|
|
15643
|
+
},
|
|
15644
|
+
{
|
|
15645
|
+
"name": "VDatePickerMonth",
|
|
15646
|
+
"source": {
|
|
15647
|
+
"module": "./src/components/index.ts",
|
|
15648
|
+
"symbol": "VDatePickerMonth"
|
|
15649
|
+
},
|
|
15650
|
+
"description": "",
|
|
15651
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month",
|
|
15652
|
+
"attributes": [
|
|
15653
|
+
{
|
|
15654
|
+
"name": "modelValue",
|
|
15655
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array",
|
|
15656
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15657
|
+
"default": "[]",
|
|
15658
|
+
"value": {
|
|
15659
|
+
"kind": "expression",
|
|
15660
|
+
"type": "any[]\n"
|
|
15661
|
+
}
|
|
15662
|
+
},
|
|
15663
|
+
{
|
|
15664
|
+
"name": "color",
|
|
15665
|
+
"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)",
|
|
15666
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15667
|
+
"default": "'surface-variant'",
|
|
15668
|
+
"value": {
|
|
15669
|
+
"kind": "expression",
|
|
15670
|
+
"type": "string\n"
|
|
15671
|
+
}
|
|
15672
|
+
},
|
|
15673
|
+
{
|
|
15674
|
+
"name": "multiple",
|
|
15675
|
+
"description": "MISSING DESCRIPTION",
|
|
15676
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15677
|
+
"default": "false",
|
|
15678
|
+
"value": {
|
|
15679
|
+
"kind": "expression",
|
|
15680
|
+
"type": "boolean\n"
|
|
15681
|
+
}
|
|
15682
|
+
},
|
|
15683
|
+
{
|
|
15684
|
+
"name": "range",
|
|
15685
|
+
"description": "MISSING DESCRIPTION",
|
|
15686
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15687
|
+
"default": "false",
|
|
15688
|
+
"value": {
|
|
15689
|
+
"kind": "expression",
|
|
15690
|
+
"type": "boolean | 'end' | 'start'\n"
|
|
15691
|
+
}
|
|
15692
|
+
},
|
|
15693
|
+
{
|
|
15694
|
+
"name": "displayDate",
|
|
15695
|
+
"description": "MISSING DESCRIPTION",
|
|
15696
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15697
|
+
"default": "new Date('2023-06-13T20:04:56.103Z')",
|
|
15698
|
+
"value": {
|
|
15699
|
+
"kind": "expression",
|
|
15700
|
+
"type": "any\n"
|
|
15701
|
+
}
|
|
15702
|
+
},
|
|
15703
|
+
{
|
|
15704
|
+
"name": "format",
|
|
15705
|
+
"description": "MISSING DESCRIPTION",
|
|
15706
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15707
|
+
"value": {
|
|
15708
|
+
"kind": "expression",
|
|
15709
|
+
"type": "string\n"
|
|
15710
|
+
}
|
|
15711
|
+
},
|
|
15712
|
+
{
|
|
15713
|
+
"name": "showAdjacentMonths",
|
|
15714
|
+
"description": "MISSING DESCRIPTION",
|
|
15715
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15716
|
+
"default": "false",
|
|
15717
|
+
"value": {
|
|
15718
|
+
"kind": "expression",
|
|
15719
|
+
"type": "boolean\n"
|
|
15720
|
+
}
|
|
15721
|
+
},
|
|
15722
|
+
{
|
|
15723
|
+
"name": "hideWeekdays",
|
|
15724
|
+
"description": "MISSING DESCRIPTION",
|
|
15725
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15726
|
+
"default": "false",
|
|
15727
|
+
"value": {
|
|
15728
|
+
"kind": "expression",
|
|
15729
|
+
"type": "boolean\n"
|
|
15730
|
+
}
|
|
15731
|
+
},
|
|
15732
|
+
{
|
|
15733
|
+
"name": "showWeek",
|
|
15734
|
+
"description": "MISSING DESCRIPTION",
|
|
15735
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15736
|
+
"default": "false",
|
|
15737
|
+
"value": {
|
|
15738
|
+
"kind": "expression",
|
|
15739
|
+
"type": "boolean\n"
|
|
15740
|
+
}
|
|
15741
|
+
},
|
|
15742
|
+
{
|
|
15743
|
+
"name": "hoverDate",
|
|
15744
|
+
"description": "MISSING DESCRIPTION",
|
|
15745
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15746
|
+
"value": {
|
|
15747
|
+
"kind": "expression",
|
|
15748
|
+
"type": "any\n"
|
|
15749
|
+
}
|
|
15750
|
+
},
|
|
15751
|
+
{
|
|
15752
|
+
"name": "side",
|
|
15753
|
+
"description": "MISSING DESCRIPTION",
|
|
15754
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15755
|
+
"value": {
|
|
15756
|
+
"kind": "expression",
|
|
15757
|
+
"type": "string\n"
|
|
15758
|
+
}
|
|
15759
|
+
}
|
|
15760
|
+
],
|
|
15761
|
+
"events": [
|
|
15762
|
+
{
|
|
15763
|
+
"name": "update:modelValue",
|
|
15764
|
+
"description": "Event that is emitted when the component's model changes",
|
|
15765
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#events",
|
|
15766
|
+
"arguments": [
|
|
15767
|
+
{
|
|
15768
|
+
"name": "argument",
|
|
15769
|
+
"type": "[any[]]\n"
|
|
15770
|
+
}
|
|
15771
|
+
]
|
|
15772
|
+
},
|
|
15773
|
+
{
|
|
15774
|
+
"name": "update:focused",
|
|
15775
|
+
"description": "Event that is emitted when the component's focus state changes",
|
|
15776
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#events",
|
|
15777
|
+
"arguments": [
|
|
15778
|
+
{
|
|
15779
|
+
"name": "argument",
|
|
15780
|
+
"type": "[boolean]\n"
|
|
15781
|
+
}
|
|
15782
|
+
]
|
|
15783
|
+
},
|
|
15784
|
+
{
|
|
15785
|
+
"name": "update:displayDate",
|
|
15786
|
+
"description": "MISSING DESCRIPTION",
|
|
15787
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#events",
|
|
15788
|
+
"arguments": [
|
|
15789
|
+
{
|
|
15790
|
+
"name": "argument",
|
|
15791
|
+
"type": "[any]\n"
|
|
15792
|
+
}
|
|
15793
|
+
]
|
|
15794
|
+
},
|
|
15795
|
+
{
|
|
15796
|
+
"name": "update:hoverDate",
|
|
15797
|
+
"description": "MISSING DESCRIPTION",
|
|
15798
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#events",
|
|
15799
|
+
"arguments": [
|
|
15800
|
+
{
|
|
15801
|
+
"name": "argument",
|
|
15802
|
+
"type": "[any]\n"
|
|
15803
|
+
}
|
|
15804
|
+
]
|
|
15805
|
+
}
|
|
15806
|
+
],
|
|
15807
|
+
"slots": [
|
|
15808
|
+
{
|
|
15809
|
+
"name": "default",
|
|
15810
|
+
"description": "The default Vue slot.",
|
|
15811
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#slots"
|
|
15812
|
+
}
|
|
15813
|
+
],
|
|
15814
|
+
"vue-model": {
|
|
15815
|
+
"prop": "modelValue",
|
|
15816
|
+
"event": "update:modelValue"
|
|
15817
|
+
}
|
|
15818
|
+
},
|
|
15819
|
+
{
|
|
15820
|
+
"name": "VDatePickerYears",
|
|
15821
|
+
"source": {
|
|
15822
|
+
"module": "./src/components/index.ts",
|
|
15823
|
+
"symbol": "VDatePickerYears"
|
|
15824
|
+
},
|
|
15825
|
+
"description": "",
|
|
15826
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years",
|
|
15827
|
+
"attributes": [
|
|
15828
|
+
{
|
|
15829
|
+
"name": "height",
|
|
15830
|
+
"description": "Sets the height for the component",
|
|
15831
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#props",
|
|
15832
|
+
"value": {
|
|
15833
|
+
"kind": "expression",
|
|
15834
|
+
"type": "string | number\n"
|
|
15835
|
+
}
|
|
15836
|
+
},
|
|
15837
|
+
{
|
|
15838
|
+
"name": "color",
|
|
15839
|
+
"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)",
|
|
15840
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#props",
|
|
15841
|
+
"value": {
|
|
15842
|
+
"kind": "expression",
|
|
15843
|
+
"type": "string\n"
|
|
15844
|
+
}
|
|
15845
|
+
},
|
|
15846
|
+
{
|
|
15847
|
+
"name": "max",
|
|
15848
|
+
"description": "MISSING DESCRIPTION",
|
|
15849
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#props",
|
|
15850
|
+
"value": {
|
|
15851
|
+
"kind": "expression",
|
|
15852
|
+
"type": "number\n"
|
|
15853
|
+
}
|
|
15854
|
+
},
|
|
15855
|
+
{
|
|
15856
|
+
"name": "displayDate",
|
|
15857
|
+
"description": "MISSING DESCRIPTION",
|
|
15858
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#props",
|
|
15859
|
+
"value": {
|
|
15860
|
+
"kind": "expression",
|
|
15861
|
+
"type": "any\n"
|
|
15862
|
+
}
|
|
15863
|
+
},
|
|
15864
|
+
{
|
|
15865
|
+
"name": "min",
|
|
15866
|
+
"description": "MISSING DESCRIPTION",
|
|
15867
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#props",
|
|
15868
|
+
"value": {
|
|
15869
|
+
"kind": "expression",
|
|
15870
|
+
"type": "number\n"
|
|
15871
|
+
}
|
|
15872
|
+
}
|
|
15873
|
+
],
|
|
15874
|
+
"events": [
|
|
15875
|
+
{
|
|
15876
|
+
"name": "update:displayDate",
|
|
15877
|
+
"description": "MISSING DESCRIPTION",
|
|
15878
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#events",
|
|
15879
|
+
"arguments": [
|
|
15880
|
+
{
|
|
15881
|
+
"name": "argument",
|
|
15882
|
+
"type": "[any]\n"
|
|
15883
|
+
}
|
|
15884
|
+
]
|
|
15885
|
+
},
|
|
15886
|
+
{
|
|
15887
|
+
"name": "update:viewMode",
|
|
15888
|
+
"description": "MISSING DESCRIPTION",
|
|
15889
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#events",
|
|
15890
|
+
"arguments": [
|
|
15891
|
+
{
|
|
15892
|
+
"name": "argument",
|
|
15893
|
+
"type": "[any]\n"
|
|
15894
|
+
}
|
|
15895
|
+
]
|
|
15896
|
+
}
|
|
15897
|
+
],
|
|
15898
|
+
"slots": [
|
|
15899
|
+
{
|
|
15900
|
+
"name": "default",
|
|
15901
|
+
"description": "The default Vue slot.",
|
|
15902
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#slots"
|
|
15903
|
+
}
|
|
15904
|
+
],
|
|
15905
|
+
"vue-model": {
|
|
15906
|
+
"prop": "modelValue",
|
|
15907
|
+
"event": "update:modelValue"
|
|
15908
|
+
}
|
|
15909
|
+
},
|
|
14532
15910
|
{
|
|
14533
15911
|
"name": "VDefaultsProvider",
|
|
14534
15912
|
"source": {
|
|
@@ -15505,33 +16883,33 @@
|
|
|
15505
16883
|
}
|
|
15506
16884
|
},
|
|
15507
16885
|
{
|
|
15508
|
-
"name": "
|
|
16886
|
+
"name": "hideActions",
|
|
15509
16887
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))",
|
|
15510
16888
|
"doc-url": "https://vuetifyjs.com/api/v-expansion-panel#props",
|
|
15511
|
-
"default": "
|
|
16889
|
+
"default": "false",
|
|
15512
16890
|
"value": {
|
|
15513
16891
|
"kind": "expression",
|
|
15514
|
-
"type": "
|
|
16892
|
+
"type": "boolean\n"
|
|
15515
16893
|
}
|
|
15516
16894
|
},
|
|
15517
16895
|
{
|
|
15518
|
-
"name": "
|
|
16896
|
+
"name": "expandIcon",
|
|
15519
16897
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))",
|
|
15520
16898
|
"doc-url": "https://vuetifyjs.com/api/v-expansion-panel#props",
|
|
15521
|
-
"default": "'$
|
|
16899
|
+
"default": "'$expand'",
|
|
15522
16900
|
"value": {
|
|
15523
16901
|
"kind": "expression",
|
|
15524
16902
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
|
|
15525
16903
|
}
|
|
15526
16904
|
},
|
|
15527
16905
|
{
|
|
15528
|
-
"name": "
|
|
16906
|
+
"name": "collapseIcon",
|
|
15529
16907
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))",
|
|
15530
16908
|
"doc-url": "https://vuetifyjs.com/api/v-expansion-panel#props",
|
|
15531
|
-
"default": "
|
|
16909
|
+
"default": "'$collapse'",
|
|
15532
16910
|
"value": {
|
|
15533
16911
|
"kind": "expression",
|
|
15534
|
-
"type": "
|
|
16912
|
+
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
|
|
15535
16913
|
}
|
|
15536
16914
|
}
|
|
15537
16915
|
],
|
|
@@ -15642,33 +17020,33 @@
|
|
|
15642
17020
|
}
|
|
15643
17021
|
},
|
|
15644
17022
|
{
|
|
15645
|
-
"name": "
|
|
17023
|
+
"name": "hideActions",
|
|
15646
17024
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))",
|
|
15647
17025
|
"doc-url": "https://vuetifyjs.com/api/v-expansion-panel-title#props",
|
|
15648
|
-
"default": "
|
|
17026
|
+
"default": "false",
|
|
15649
17027
|
"value": {
|
|
15650
17028
|
"kind": "expression",
|
|
15651
|
-
"type": "
|
|
17029
|
+
"type": "boolean\n"
|
|
15652
17030
|
}
|
|
15653
17031
|
},
|
|
15654
17032
|
{
|
|
15655
|
-
"name": "
|
|
17033
|
+
"name": "expandIcon",
|
|
15656
17034
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))",
|
|
15657
17035
|
"doc-url": "https://vuetifyjs.com/api/v-expansion-panel-title#props",
|
|
15658
|
-
"default": "'$
|
|
17036
|
+
"default": "'$expand'",
|
|
15659
17037
|
"value": {
|
|
15660
17038
|
"kind": "expression",
|
|
15661
17039
|
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
|
|
15662
17040
|
}
|
|
15663
17041
|
},
|
|
15664
17042
|
{
|
|
15665
|
-
"name": "
|
|
17043
|
+
"name": "collapseIcon",
|
|
15666
17044
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree/master/packages/api-generator/src/locale/en/v-expansion-panel-title.json))",
|
|
15667
17045
|
"doc-url": "https://vuetifyjs.com/api/v-expansion-panel-title#props",
|
|
15668
|
-
"default": "
|
|
17046
|
+
"default": "'$collapse'",
|
|
15669
17047
|
"value": {
|
|
15670
17048
|
"kind": "expression",
|
|
15671
|
-
"type": "
|
|
17049
|
+
"type": " | string\n | (string | [string, number])[]\n | (new () => any)\n | FunctionalComponent\n"
|
|
15672
17050
|
}
|
|
15673
17051
|
}
|
|
15674
17052
|
],
|
|
@@ -19577,7 +20955,7 @@
|
|
|
19577
20955
|
},
|
|
19578
20956
|
{
|
|
19579
20957
|
"name": "selected",
|
|
19580
|
-
"description": "
|
|
20958
|
+
"description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`.",
|
|
19581
20959
|
"doc-url": "https://vuetifyjs.com/api/v-list#props",
|
|
19582
20960
|
"value": {
|
|
19583
20961
|
"kind": "expression",
|
|
@@ -19586,7 +20964,7 @@
|
|
|
19586
20964
|
},
|
|
19587
20965
|
{
|
|
19588
20966
|
"name": "selectStrategy",
|
|
19589
|
-
"description": "
|
|
20967
|
+
"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.",
|
|
19590
20968
|
"doc-url": "https://vuetifyjs.com/api/v-list#props",
|
|
19591
20969
|
"default": "'single-leaf'",
|
|
19592
20970
|
"value": {
|
|
@@ -19606,7 +20984,7 @@
|
|
|
19606
20984
|
},
|
|
19607
20985
|
{
|
|
19608
20986
|
"name": "openStrategy",
|
|
19609
|
-
"description": "
|
|
20987
|
+
"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.",
|
|
19610
20988
|
"doc-url": "https://vuetifyjs.com/api/v-list#props",
|
|
19611
20989
|
"default": "'list'",
|
|
19612
20990
|
"value": {
|
|
@@ -19616,7 +20994,7 @@
|
|
|
19616
20994
|
},
|
|
19617
20995
|
{
|
|
19618
20996
|
"name": "opened",
|
|
19619
|
-
"description": "
|
|
20997
|
+
"description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`.",
|
|
19620
20998
|
"doc-url": "https://vuetifyjs.com/api/v-list#props",
|
|
19621
20999
|
"value": {
|
|
19622
21000
|
"kind": "expression",
|
|
@@ -22440,6 +23818,216 @@
|
|
|
22440
23818
|
"event": "update:modelValue"
|
|
22441
23819
|
}
|
|
22442
23820
|
},
|
|
23821
|
+
{
|
|
23822
|
+
"name": "VPicker",
|
|
23823
|
+
"source": {
|
|
23824
|
+
"module": "./src/components/index.ts",
|
|
23825
|
+
"symbol": "VPicker"
|
|
23826
|
+
},
|
|
23827
|
+
"description": "",
|
|
23828
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker",
|
|
23829
|
+
"attributes": [
|
|
23830
|
+
{
|
|
23831
|
+
"name": "title",
|
|
23832
|
+
"description": "Specify a title text for the component.",
|
|
23833
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23834
|
+
"value": {
|
|
23835
|
+
"kind": "expression",
|
|
23836
|
+
"type": "string\n"
|
|
23837
|
+
}
|
|
23838
|
+
},
|
|
23839
|
+
{
|
|
23840
|
+
"name": "border",
|
|
23841
|
+
"description": "Applies border styles to component.",
|
|
23842
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23843
|
+
"default": "false",
|
|
23844
|
+
"value": {
|
|
23845
|
+
"kind": "expression",
|
|
23846
|
+
"type": "string | number | boolean\n"
|
|
23847
|
+
}
|
|
23848
|
+
},
|
|
23849
|
+
{
|
|
23850
|
+
"name": "height",
|
|
23851
|
+
"description": "Sets the height for the component.",
|
|
23852
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23853
|
+
"value": {
|
|
23854
|
+
"kind": "expression",
|
|
23855
|
+
"type": "string | number\n"
|
|
23856
|
+
}
|
|
23857
|
+
},
|
|
23858
|
+
{
|
|
23859
|
+
"name": "maxHeight",
|
|
23860
|
+
"description": "Sets the maximum height for the component.",
|
|
23861
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23862
|
+
"value": {
|
|
23863
|
+
"kind": "expression",
|
|
23864
|
+
"type": "string | number\n"
|
|
23865
|
+
}
|
|
23866
|
+
},
|
|
23867
|
+
{
|
|
23868
|
+
"name": "maxWidth",
|
|
23869
|
+
"description": "Sets the maximum width for the component.",
|
|
23870
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23871
|
+
"value": {
|
|
23872
|
+
"kind": "expression",
|
|
23873
|
+
"type": "string | number\n"
|
|
23874
|
+
}
|
|
23875
|
+
},
|
|
23876
|
+
{
|
|
23877
|
+
"name": "minHeight",
|
|
23878
|
+
"description": "Sets the minimum height for the component.",
|
|
23879
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23880
|
+
"value": {
|
|
23881
|
+
"kind": "expression",
|
|
23882
|
+
"type": "string | number\n"
|
|
23883
|
+
}
|
|
23884
|
+
},
|
|
23885
|
+
{
|
|
23886
|
+
"name": "minWidth",
|
|
23887
|
+
"description": "Sets the minimum width for the component.",
|
|
23888
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23889
|
+
"value": {
|
|
23890
|
+
"kind": "expression",
|
|
23891
|
+
"type": "string | number\n"
|
|
23892
|
+
}
|
|
23893
|
+
},
|
|
23894
|
+
{
|
|
23895
|
+
"name": "width",
|
|
23896
|
+
"description": "Sets the width for the component.",
|
|
23897
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23898
|
+
"value": {
|
|
23899
|
+
"kind": "expression",
|
|
23900
|
+
"type": "string | number\n"
|
|
23901
|
+
}
|
|
23902
|
+
},
|
|
23903
|
+
{
|
|
23904
|
+
"name": "elevation",
|
|
23905
|
+
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation).",
|
|
23906
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23907
|
+
"value": {
|
|
23908
|
+
"kind": "expression",
|
|
23909
|
+
"type": "string | number\n"
|
|
23910
|
+
}
|
|
23911
|
+
},
|
|
23912
|
+
{
|
|
23913
|
+
"name": "location",
|
|
23914
|
+
"description": "Specifies the component's location. Can combine by using a space separated string",
|
|
23915
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23916
|
+
"value": {
|
|
23917
|
+
"kind": "expression",
|
|
23918
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n"
|
|
23919
|
+
}
|
|
23920
|
+
},
|
|
23921
|
+
{
|
|
23922
|
+
"name": "position",
|
|
23923
|
+
"description": "MISSING DESCRIPTION",
|
|
23924
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23925
|
+
"value": {
|
|
23926
|
+
"kind": "expression",
|
|
23927
|
+
"type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n"
|
|
23928
|
+
}
|
|
23929
|
+
},
|
|
23930
|
+
{
|
|
23931
|
+
"name": "rounded",
|
|
23932
|
+
"description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius).",
|
|
23933
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23934
|
+
"default": "false",
|
|
23935
|
+
"value": {
|
|
23936
|
+
"kind": "expression",
|
|
23937
|
+
"type": "string | number | boolean\n"
|
|
23938
|
+
}
|
|
23939
|
+
},
|
|
23940
|
+
{
|
|
23941
|
+
"name": "tag",
|
|
23942
|
+
"description": "Specify a custom tag used on the root element.",
|
|
23943
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23944
|
+
"default": "'div'",
|
|
23945
|
+
"value": {
|
|
23946
|
+
"kind": "expression",
|
|
23947
|
+
"type": "string\n"
|
|
23948
|
+
}
|
|
23949
|
+
},
|
|
23950
|
+
{
|
|
23951
|
+
"name": "theme",
|
|
23952
|
+
"description": "Specify a theme for this component and all of its children",
|
|
23953
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23954
|
+
"value": {
|
|
23955
|
+
"kind": "expression",
|
|
23956
|
+
"type": "string\n"
|
|
23957
|
+
}
|
|
23958
|
+
},
|
|
23959
|
+
{
|
|
23960
|
+
"name": "landscape",
|
|
23961
|
+
"description": "MISSING DESCRIPTION",
|
|
23962
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#props",
|
|
23963
|
+
"default": "false",
|
|
23964
|
+
"value": {
|
|
23965
|
+
"kind": "expression",
|
|
23966
|
+
"type": "boolean\n"
|
|
23967
|
+
}
|
|
23968
|
+
}
|
|
23969
|
+
],
|
|
23970
|
+
"events": [],
|
|
23971
|
+
"slots": [
|
|
23972
|
+
{
|
|
23973
|
+
"name": "header",
|
|
23974
|
+
"description": "MISSING DESCRIPTION",
|
|
23975
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#slots"
|
|
23976
|
+
},
|
|
23977
|
+
{
|
|
23978
|
+
"name": "default",
|
|
23979
|
+
"description": "The default Vue slot.",
|
|
23980
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#slots"
|
|
23981
|
+
},
|
|
23982
|
+
{
|
|
23983
|
+
"name": "actions",
|
|
23984
|
+
"description": "MISSING DESCRIPTION",
|
|
23985
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#slots"
|
|
23986
|
+
},
|
|
23987
|
+
{
|
|
23988
|
+
"name": "title",
|
|
23989
|
+
"description": "Slot for the component's title content",
|
|
23990
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker#slots"
|
|
23991
|
+
}
|
|
23992
|
+
],
|
|
23993
|
+
"vue-model": {
|
|
23994
|
+
"prop": "modelValue",
|
|
23995
|
+
"event": "update:modelValue"
|
|
23996
|
+
}
|
|
23997
|
+
},
|
|
23998
|
+
{
|
|
23999
|
+
"name": "VPickerTitle",
|
|
24000
|
+
"source": {
|
|
24001
|
+
"module": "./src/components/index.ts",
|
|
24002
|
+
"symbol": "VPickerTitle"
|
|
24003
|
+
},
|
|
24004
|
+
"description": "",
|
|
24005
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker-title",
|
|
24006
|
+
"attributes": [
|
|
24007
|
+
{
|
|
24008
|
+
"name": "tag",
|
|
24009
|
+
"description": "Specify a custom tag used on the root element",
|
|
24010
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker-title#props",
|
|
24011
|
+
"default": "'div'",
|
|
24012
|
+
"value": {
|
|
24013
|
+
"kind": "expression",
|
|
24014
|
+
"type": "string\n"
|
|
24015
|
+
}
|
|
24016
|
+
}
|
|
24017
|
+
],
|
|
24018
|
+
"events": [],
|
|
24019
|
+
"slots": [
|
|
24020
|
+
{
|
|
24021
|
+
"name": "default",
|
|
24022
|
+
"description": "The default Vue slot.",
|
|
24023
|
+
"doc-url": "https://vuetifyjs.com/api/v-picker-title#slots"
|
|
24024
|
+
}
|
|
24025
|
+
],
|
|
24026
|
+
"vue-model": {
|
|
24027
|
+
"prop": "modelValue",
|
|
24028
|
+
"event": "update:modelValue"
|
|
24029
|
+
}
|
|
24030
|
+
},
|
|
22443
24031
|
{
|
|
22444
24032
|
"name": "VProgressCircular",
|
|
22445
24033
|
"source": {
|