vuetify 3.5.16 → 3.5.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/json/attributes.json +226 -30
- package/dist/json/importMap-labs.json +8 -4
- package/dist/json/importMap.json +126 -126
- package/dist/json/tags.json +54 -0
- package/dist/json/web-types.json +607 -84
- package/dist/vuetify-labs.css +2606 -2579
- package/dist/vuetify-labs.d.ts +742 -64
- package/dist/vuetify-labs.esm.js +356 -127
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +355 -126
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +2393 -2367
- package/dist/vuetify.d.ts +127 -62
- package/dist/vuetify.esm.js +169 -101
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +168 -100
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +181 -178
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/index.d.mts +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.mjs +8 -10
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBanner/VBanner.css +1 -1
- package/lib/components/VBreadcrumbs/VBreadcrumbs.css +1 -1
- package/lib/components/VBtn/index.d.mts +1 -0
- package/lib/components/VBtnToggle/index.d.mts +1 -0
- package/lib/components/VCard/VCard.css +3 -3
- package/lib/components/VCarousel/VCarouselItem.mjs +1 -1
- package/lib/components/VCarousel/VCarouselItem.mjs.map +1 -1
- package/lib/components/VCarousel/index.d.mts +1 -0
- package/lib/components/VChip/VChip.css +1 -1
- package/lib/components/VChip/VChip.sass +1 -0
- package/lib/components/VChipGroup/index.d.mts +1 -0
- package/lib/components/VCombobox/VCombobox.mjs +8 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.mjs +10 -0
- package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/components/VDialog/VDialog.mjs +6 -2
- package/lib/components/VDialog/VDialog.mjs.map +1 -1
- package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs +39 -0
- package/lib/components/VDialog/__test__/VDialog.spec.cy.mjs.map +1 -0
- package/lib/components/VDialog/index.d.mts +4 -10
- package/lib/components/VFileInput/VFileInput.mjs +1 -1
- package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
- package/lib/components/VFileInput/index.d.mts +17 -5
- package/lib/components/VInput/VInput.mjs +6 -1
- package/lib/components/VInput/VInput.mjs.map +1 -1
- package/lib/components/VInput/index.d.mts +6 -0
- package/lib/components/VList/VList.mjs +2 -1
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListItem.css +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs +3 -3
- package/lib/components/VNavigationDrawer/VNavigationDrawer.mjs.map +1 -1
- package/lib/components/VNavigationDrawer/touch.mjs +16 -2
- package/lib/components/VNavigationDrawer/touch.mjs.map +1 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs +11 -1
- package/lib/components/VProgressLinear/VProgressLinear.mjs.map +1 -1
- package/lib/components/VProgressLinear/index.d.mts +21 -0
- package/lib/components/VRangeSlider/index.d.mts +6 -0
- package/lib/components/VSelect/VSelect.mjs +5 -1
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSlideGroup/index.d.mts +1 -0
- package/lib/components/VSlider/index.d.mts +6 -0
- package/lib/components/VSnackbar/VSnackbar.css +18 -4
- package/lib/components/VSnackbar/VSnackbar.mjs +26 -8
- package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
- package/lib/components/VSnackbar/VSnackbar.sass +19 -3
- package/lib/components/VSwitch/VSwitch.css +14 -2
- package/lib/components/VSwitch/VSwitch.sass +8 -2
- package/lib/components/VSystemBar/VSystemBar.css +1 -1
- package/lib/components/VTabs/index.d.mts +1 -0
- package/lib/components/VTextField/index.d.mts +15 -3
- package/lib/components/VTextarea/index.d.mts +15 -3
- package/lib/components/VWindow/index.d.mts +1 -0
- package/lib/components/index.d.mts +85 -21
- package/lib/composables/group.mjs +10 -1
- package/lib/composables/group.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -41
- package/lib/labs/VEmptyState/VEmptyState.css +3 -3
- package/lib/labs/VFab/VFab.css +1 -0
- package/lib/labs/VFab/VFab.mjs +3 -2
- package/lib/labs/VFab/VFab.mjs.map +1 -1
- package/lib/labs/VFab/VFab.sass +1 -0
- package/lib/labs/VFab/index.d.mts +10 -0
- package/lib/labs/VNumberInput/VNumberInput.mjs +79 -24
- package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
- package/lib/labs/VNumberInput/index.d.mts +56 -29
- package/lib/labs/VSnackbarQueue/VSnackbarQueue.mjs +112 -0
- package/lib/labs/VSnackbarQueue/VSnackbarQueue.mjs.map +1 -0
- package/lib/labs/VSnackbarQueue/index.d.mts +2693 -0
- package/lib/labs/VSnackbarQueue/index.mjs +2 -0
- package/lib/labs/VSnackbarQueue/index.mjs.map +1 -0
- package/lib/labs/VTimePicker/VTimePickerClock.mjs +1 -3
- package/lib/labs/VTimePicker/VTimePickerClock.mjs.map +1 -1
- package/lib/labs/VTimePicker/index.d.mts +6 -13
- package/lib/labs/components.d.mts +2893 -282
- package/lib/labs/components.mjs +1 -0
- package/lib/labs/components.mjs.map +1 -1
- package/lib/locale/af.mjs +1 -0
- package/lib/locale/af.mjs.map +1 -1
- package/lib/locale/ar.mjs +1 -0
- package/lib/locale/ar.mjs.map +1 -1
- package/lib/locale/az.mjs +1 -0
- package/lib/locale/az.mjs.map +1 -1
- package/lib/locale/bg.mjs +1 -0
- package/lib/locale/bg.mjs.map +1 -1
- package/lib/locale/ca.mjs +1 -0
- package/lib/locale/ca.mjs.map +1 -1
- package/lib/locale/ckb.mjs +1 -0
- package/lib/locale/ckb.mjs.map +1 -1
- package/lib/locale/cs.mjs +1 -0
- package/lib/locale/cs.mjs.map +1 -1
- package/lib/locale/da.mjs +1 -0
- package/lib/locale/da.mjs.map +1 -1
- package/lib/locale/de.mjs +1 -0
- package/lib/locale/de.mjs.map +1 -1
- package/lib/locale/el.mjs +1 -0
- package/lib/locale/el.mjs.map +1 -1
- package/lib/locale/en.mjs +1 -0
- package/lib/locale/en.mjs.map +1 -1
- package/lib/locale/es.mjs +1 -0
- package/lib/locale/es.mjs.map +1 -1
- package/lib/locale/et.mjs +1 -0
- package/lib/locale/et.mjs.map +1 -1
- package/lib/locale/fa.mjs +1 -0
- package/lib/locale/fa.mjs.map +1 -1
- package/lib/locale/fi.mjs +1 -0
- package/lib/locale/fi.mjs.map +1 -1
- package/lib/locale/fr.mjs +1 -0
- package/lib/locale/fr.mjs.map +1 -1
- package/lib/locale/he.mjs +1 -0
- package/lib/locale/he.mjs.map +1 -1
- package/lib/locale/hr.mjs +1 -0
- package/lib/locale/hr.mjs.map +1 -1
- package/lib/locale/hu.mjs +1 -0
- package/lib/locale/hu.mjs.map +1 -1
- package/lib/locale/id.mjs +1 -0
- package/lib/locale/id.mjs.map +1 -1
- package/lib/locale/index.d.mts +43 -0
- package/lib/locale/it.mjs +1 -0
- package/lib/locale/it.mjs.map +1 -1
- package/lib/locale/ja.mjs +1 -0
- package/lib/locale/ja.mjs.map +1 -1
- package/lib/locale/km.mjs +1 -0
- package/lib/locale/km.mjs.map +1 -1
- package/lib/locale/ko.mjs +1 -0
- package/lib/locale/ko.mjs.map +1 -1
- package/lib/locale/lt.mjs +1 -0
- package/lib/locale/lt.mjs.map +1 -1
- package/lib/locale/lv.mjs +1 -0
- package/lib/locale/lv.mjs.map +1 -1
- package/lib/locale/nl.mjs +1 -0
- package/lib/locale/nl.mjs.map +1 -1
- package/lib/locale/no.mjs +1 -0
- package/lib/locale/no.mjs.map +1 -1
- package/lib/locale/pl.mjs +1 -0
- package/lib/locale/pl.mjs.map +1 -1
- package/lib/locale/pt.mjs +1 -0
- package/lib/locale/pt.mjs.map +1 -1
- package/lib/locale/ro.mjs +1 -0
- package/lib/locale/ro.mjs.map +1 -1
- package/lib/locale/ru.mjs +1 -0
- package/lib/locale/ru.mjs.map +1 -1
- package/lib/locale/sk.mjs +1 -0
- package/lib/locale/sk.mjs.map +1 -1
- package/lib/locale/sl.mjs +1 -0
- package/lib/locale/sl.mjs.map +1 -1
- package/lib/locale/sr-Cyrl.mjs +1 -0
- package/lib/locale/sr-Cyrl.mjs.map +1 -1
- package/lib/locale/sr-Latn.mjs +1 -0
- package/lib/locale/sr-Latn.mjs.map +1 -1
- package/lib/locale/sv.mjs +1 -0
- package/lib/locale/sv.mjs.map +1 -1
- package/lib/locale/th.mjs +1 -0
- package/lib/locale/th.mjs.map +1 -1
- package/lib/locale/tr.mjs +1 -0
- package/lib/locale/tr.mjs.map +1 -1
- package/lib/locale/uk.mjs +1 -0
- package/lib/locale/uk.mjs.map +1 -1
- package/lib/locale/vi.mjs +1 -0
- package/lib/locale/vi.mjs.map +1 -1
- package/lib/locale/zh-Hans.mjs +1 -0
- package/lib/locale/zh-Hans.mjs.map +1 -1
- package/lib/locale/zh-Hant.mjs +1 -0
- package/lib/locale/zh-Hant.mjs.map +1 -1
- package/lib/styles/main.css +78 -78
- package/lib/styles/settings/_variables.scss +21 -14
- package/package.json +2 -2
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.5.
|
|
5
|
+
"version": "3.5.17",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -6554,7 +6554,7 @@
|
|
|
6554
6554
|
"vue-properties": [
|
|
6555
6555
|
{
|
|
6556
6556
|
"name": "group",
|
|
6557
|
-
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined
|
|
6557
|
+
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined>; useIndexAsValue: boolean }, cmp: ComponentInternalInstance) => void; unregister: (id: number) => void; select: (id: number, value: boolean) => void; selected: Ref<readonly number[]>; isSelected: (id: number) => boolean; prev: () => void; next: () => void; selectedClass: Ref<string | undefined>; items: ComputedRef<{ id: number; value: unknown; disabled: boolean | undefined; }[]>; disabled: Ref<boolean | undefined>; getItemIndex: (value: unknown) => number }"
|
|
6558
6558
|
}
|
|
6559
6559
|
]
|
|
6560
6560
|
},
|
|
@@ -6565,7 +6565,7 @@
|
|
|
6565
6565
|
"vue-properties": [
|
|
6566
6566
|
{
|
|
6567
6567
|
"name": "group",
|
|
6568
|
-
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined
|
|
6568
|
+
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined>; useIndexAsValue: boolean }, cmp: ComponentInternalInstance) => void; unregister: (id: number) => void; select: (id: number, value: boolean) => void; selected: Ref<readonly number[]>; isSelected: (id: number) => boolean; prev: () => void; next: () => void; selectedClass: Ref<string | undefined>; items: ComputedRef<{ id: number; value: unknown; disabled: boolean | undefined; }[]>; disabled: Ref<boolean | undefined>; getItemIndex: (value: unknown) => number }"
|
|
6569
6569
|
}
|
|
6570
6570
|
]
|
|
6571
6571
|
},
|
|
@@ -7050,6 +7050,15 @@
|
|
|
7050
7050
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
7051
7051
|
}
|
|
7052
7052
|
},
|
|
7053
|
+
{
|
|
7054
|
+
"name": "theme",
|
|
7055
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
7056
|
+
"doc-url": "https://vuetifyjs.com/api/VCheckbox#props",
|
|
7057
|
+
"value": {
|
|
7058
|
+
"kind": "expression",
|
|
7059
|
+
"type": "string"
|
|
7060
|
+
}
|
|
7061
|
+
},
|
|
7053
7062
|
{
|
|
7054
7063
|
"name": "disabled",
|
|
7055
7064
|
"description": "Removes the ability to click or target the component.",
|
|
@@ -7288,15 +7297,6 @@
|
|
|
7288
7297
|
"kind": "expression",
|
|
7289
7298
|
"type": "(a: any, b: any) => boolean"
|
|
7290
7299
|
}
|
|
7291
|
-
},
|
|
7292
|
-
{
|
|
7293
|
-
"name": "theme",
|
|
7294
|
-
"description": "Specify a theme for this component and all of its children.",
|
|
7295
|
-
"doc-url": "https://vuetifyjs.com/api/VCheckbox#props",
|
|
7296
|
-
"value": {
|
|
7297
|
-
"kind": "expression",
|
|
7298
|
-
"type": "string"
|
|
7299
|
-
}
|
|
7300
7300
|
}
|
|
7301
7301
|
],
|
|
7302
7302
|
"events": [
|
|
@@ -18144,17 +18144,6 @@
|
|
|
18144
18144
|
}
|
|
18145
18145
|
],
|
|
18146
18146
|
"events": [
|
|
18147
|
-
{
|
|
18148
|
-
"name": "click:outside",
|
|
18149
|
-
"description": "Event that fires when clicking outside an active dialog.",
|
|
18150
|
-
"doc-url": "https://vuetifyjs.com/api/v-dialog#events",
|
|
18151
|
-
"arguments": [
|
|
18152
|
-
{
|
|
18153
|
-
"name": "argument",
|
|
18154
|
-
"type": "[MouseEvent]\n"
|
|
18155
|
-
}
|
|
18156
|
-
]
|
|
18157
|
-
},
|
|
18158
18147
|
{
|
|
18159
18148
|
"name": "update:modelValue",
|
|
18160
18149
|
"description": "Event that is emitted when the component's model changes.",
|
|
@@ -19467,6 +19456,16 @@
|
|
|
19467
19456
|
"type": "boolean"
|
|
19468
19457
|
}
|
|
19469
19458
|
},
|
|
19459
|
+
{
|
|
19460
|
+
"name": "layout",
|
|
19461
|
+
"description": "If true, will effect layout dimensions based on size and position.",
|
|
19462
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19463
|
+
"default": "false",
|
|
19464
|
+
"value": {
|
|
19465
|
+
"kind": "expression",
|
|
19466
|
+
"type": "boolean"
|
|
19467
|
+
}
|
|
19468
|
+
},
|
|
19470
19469
|
{
|
|
19471
19470
|
"name": "location",
|
|
19472
19471
|
"description": "The location of the fab relative to the layout. Only works when using **app**.",
|
|
@@ -20698,6 +20697,15 @@
|
|
|
20698
20697
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
20699
20698
|
}
|
|
20700
20699
|
},
|
|
20700
|
+
{
|
|
20701
|
+
"name": "theme",
|
|
20702
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
20703
|
+
"doc-url": "https://vuetifyjs.com/api/VFileInput#props",
|
|
20704
|
+
"value": {
|
|
20705
|
+
"kind": "expression",
|
|
20706
|
+
"type": "string"
|
|
20707
|
+
}
|
|
20708
|
+
},
|
|
20701
20709
|
{
|
|
20702
20710
|
"name": "disabled",
|
|
20703
20711
|
"description": "Removes the ability to click or target the input.",
|
|
@@ -20771,7 +20779,7 @@
|
|
|
20771
20779
|
"name": "modelValue",
|
|
20772
20780
|
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
|
|
20773
20781
|
"doc-url": "https://vuetifyjs.com/api/VFileInput#props",
|
|
20774
|
-
"default": "
|
|
20782
|
+
"default": "null",
|
|
20775
20783
|
"value": {
|
|
20776
20784
|
"kind": "expression",
|
|
20777
20785
|
"type": "File | File[]"
|
|
@@ -20958,15 +20966,6 @@
|
|
|
20958
20966
|
"kind": "expression",
|
|
20959
20967
|
"type": "boolean"
|
|
20960
20968
|
}
|
|
20961
|
-
},
|
|
20962
|
-
{
|
|
20963
|
-
"name": "theme",
|
|
20964
|
-
"description": "Specify a theme for this component and all of its children.",
|
|
20965
|
-
"doc-url": "https://vuetifyjs.com/api/VFileInput#props",
|
|
20966
|
-
"value": {
|
|
20967
|
-
"kind": "expression",
|
|
20968
|
-
"type": "string"
|
|
20969
|
-
}
|
|
20970
20969
|
}
|
|
20971
20970
|
],
|
|
20972
20971
|
"events": [
|
|
@@ -22448,6 +22447,15 @@
|
|
|
22448
22447
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
22449
22448
|
}
|
|
22450
22449
|
},
|
|
22450
|
+
{
|
|
22451
|
+
"name": "theme",
|
|
22452
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
22453
|
+
"doc-url": "https://vuetifyjs.com/api/VInput#props",
|
|
22454
|
+
"value": {
|
|
22455
|
+
"kind": "expression",
|
|
22456
|
+
"type": "string"
|
|
22457
|
+
}
|
|
22458
|
+
},
|
|
22451
22459
|
{
|
|
22452
22460
|
"name": "disabled",
|
|
22453
22461
|
"description": "Removes the ability to click or target the component.",
|
|
@@ -25844,6 +25852,7 @@
|
|
|
25844
25852
|
"name": "min",
|
|
25845
25853
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VNumberInput.json))",
|
|
25846
25854
|
"doc-url": "https://vuetifyjs.com/api/VNumberInput#props",
|
|
25855
|
+
"default": "null",
|
|
25847
25856
|
"value": {
|
|
25848
25857
|
"kind": "expression",
|
|
25849
25858
|
"type": "number"
|
|
@@ -25853,6 +25862,7 @@
|
|
|
25853
25862
|
"name": "max",
|
|
25854
25863
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VNumberInput.json))",
|
|
25855
25864
|
"doc-url": "https://vuetifyjs.com/api/VNumberInput#props",
|
|
25865
|
+
"default": "null",
|
|
25856
25866
|
"value": {
|
|
25857
25867
|
"kind": "expression",
|
|
25858
25868
|
"type": "number"
|
|
@@ -25862,6 +25872,7 @@
|
|
|
25862
25872
|
"name": "step",
|
|
25863
25873
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VNumberInput.json))",
|
|
25864
25874
|
"doc-url": "https://vuetifyjs.com/api/VNumberInput#props",
|
|
25875
|
+
"default": "1",
|
|
25865
25876
|
"value": {
|
|
25866
25877
|
"kind": "expression",
|
|
25867
25878
|
"type": "number"
|
|
@@ -25906,6 +25917,15 @@
|
|
|
25906
25917
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
25907
25918
|
}
|
|
25908
25919
|
},
|
|
25920
|
+
{
|
|
25921
|
+
"name": "theme",
|
|
25922
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
25923
|
+
"doc-url": "https://vuetifyjs.com/api/VNumberInput#props",
|
|
25924
|
+
"value": {
|
|
25925
|
+
"kind": "expression",
|
|
25926
|
+
"type": "string"
|
|
25927
|
+
}
|
|
25928
|
+
},
|
|
25909
25929
|
{
|
|
25910
25930
|
"name": "disabled",
|
|
25911
25931
|
"description": "Removes the ability to click or target the input.",
|
|
@@ -25940,10 +25960,9 @@
|
|
|
25940
25960
|
"name": "modelValue",
|
|
25941
25961
|
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
|
|
25942
25962
|
"doc-url": "https://vuetifyjs.com/api/VNumberInput#props",
|
|
25943
|
-
"default": "0",
|
|
25944
25963
|
"value": {
|
|
25945
25964
|
"kind": "expression",
|
|
25946
|
-
"type": "
|
|
25965
|
+
"type": "number"
|
|
25947
25966
|
}
|
|
25948
25967
|
},
|
|
25949
25968
|
{
|
|
@@ -26021,15 +26040,6 @@
|
|
|
26021
26040
|
"kind": "expression",
|
|
26022
26041
|
"type": "string | number | boolean"
|
|
26023
26042
|
}
|
|
26024
|
-
},
|
|
26025
|
-
{
|
|
26026
|
-
"name": "theme",
|
|
26027
|
-
"description": "Specify a theme for this component and all of its children.",
|
|
26028
|
-
"doc-url": "https://vuetifyjs.com/api/VNumberInput#props",
|
|
26029
|
-
"value": {
|
|
26030
|
-
"kind": "expression",
|
|
26031
|
-
"type": "string"
|
|
26032
|
-
}
|
|
26033
26043
|
}
|
|
26034
26044
|
],
|
|
26035
26045
|
"events": [
|
|
@@ -28103,6 +28113,16 @@
|
|
|
28103
28113
|
"type": "boolean"
|
|
28104
28114
|
}
|
|
28105
28115
|
},
|
|
28116
|
+
{
|
|
28117
|
+
"name": "location",
|
|
28118
|
+
"description": "Specifies the component's location. Can combine by using a space separated string.",
|
|
28119
|
+
"doc-url": "https://vuetifyjs.com/api/VProgressLinear#props",
|
|
28120
|
+
"default": "'top'",
|
|
28121
|
+
"value": {
|
|
28122
|
+
"kind": "expression",
|
|
28123
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>"
|
|
28124
|
+
}
|
|
28125
|
+
},
|
|
28106
28126
|
{
|
|
28107
28127
|
"name": "rounded",
|
|
28108
28128
|
"description": "Designates the **border-radius** applied to the component. This can be **0**, **xs**, **sm**, true, **lg**, **xl**, **pill**, **circle**, and **shaped**. Find more information on available border radius classes on the [Border Radius page](/styles/border-radius).",
|
|
@@ -28605,6 +28625,15 @@
|
|
|
28605
28625
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
28606
28626
|
}
|
|
28607
28627
|
},
|
|
28628
|
+
{
|
|
28629
|
+
"name": "theme",
|
|
28630
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
28631
|
+
"doc-url": "https://vuetifyjs.com/api/VRadioGroup#props",
|
|
28632
|
+
"value": {
|
|
28633
|
+
"kind": "expression",
|
|
28634
|
+
"type": "string"
|
|
28635
|
+
}
|
|
28636
|
+
},
|
|
28608
28637
|
{
|
|
28609
28638
|
"name": "disabled",
|
|
28610
28639
|
"description": "Removes the ability to click or target the component.",
|
|
@@ -28787,15 +28816,6 @@
|
|
|
28787
28816
|
"kind": "expression",
|
|
28788
28817
|
"type": "(a: any, b: any) => boolean"
|
|
28789
28818
|
}
|
|
28790
|
-
},
|
|
28791
|
-
{
|
|
28792
|
-
"name": "theme",
|
|
28793
|
-
"description": "Specify a theme for this component and all of its children.",
|
|
28794
|
-
"doc-url": "https://vuetifyjs.com/api/VRadioGroup#props",
|
|
28795
|
-
"value": {
|
|
28796
|
-
"kind": "expression",
|
|
28797
|
-
"type": "string"
|
|
28798
|
-
}
|
|
28799
28819
|
}
|
|
28800
28820
|
],
|
|
28801
28821
|
"events": [
|
|
@@ -29169,6 +29189,15 @@
|
|
|
29169
29189
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
29170
29190
|
}
|
|
29171
29191
|
},
|
|
29192
|
+
{
|
|
29193
|
+
"name": "theme",
|
|
29194
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
29195
|
+
"doc-url": "https://vuetifyjs.com/api/VRangeSlider#props",
|
|
29196
|
+
"value": {
|
|
29197
|
+
"kind": "expression",
|
|
29198
|
+
"type": "string"
|
|
29199
|
+
}
|
|
29200
|
+
},
|
|
29172
29201
|
{
|
|
29173
29202
|
"name": "disabled",
|
|
29174
29203
|
"description": "Removes the ability to click or target the component.",
|
|
@@ -33735,6 +33764,15 @@
|
|
|
33735
33764
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
33736
33765
|
}
|
|
33737
33766
|
},
|
|
33767
|
+
{
|
|
33768
|
+
"name": "theme",
|
|
33769
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
33770
|
+
"doc-url": "https://vuetifyjs.com/api/VSlider#props",
|
|
33771
|
+
"value": {
|
|
33772
|
+
"kind": "expression",
|
|
33773
|
+
"type": "string"
|
|
33774
|
+
}
|
|
33775
|
+
},
|
|
33738
33776
|
{
|
|
33739
33777
|
"name": "errorMessages",
|
|
33740
33778
|
"description": "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the **rules** prop. This field will not trigger validation.",
|
|
@@ -34639,6 +34677,492 @@
|
|
|
34639
34677
|
"event": "update:modelValue"
|
|
34640
34678
|
}
|
|
34641
34679
|
},
|
|
34680
|
+
{
|
|
34681
|
+
"name": "VSnackbarQueue",
|
|
34682
|
+
"source": {
|
|
34683
|
+
"module": "./src/components/index.ts",
|
|
34684
|
+
"symbol": "VSnackbarQueue"
|
|
34685
|
+
},
|
|
34686
|
+
"description": "",
|
|
34687
|
+
"doc-url": "https://vuetifyjs.com/api/v-snackbar-queue",
|
|
34688
|
+
"attributes": [
|
|
34689
|
+
{
|
|
34690
|
+
"name": "activator",
|
|
34691
|
+
"description": "Explicitly sets the overlay's activator.",
|
|
34692
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34693
|
+
"value": {
|
|
34694
|
+
"kind": "expression",
|
|
34695
|
+
"type": "Element | 'parent' | (string & {}) | ComponentPublicInstance"
|
|
34696
|
+
}
|
|
34697
|
+
},
|
|
34698
|
+
{
|
|
34699
|
+
"name": "text",
|
|
34700
|
+
"description": "Specify content text for the component.",
|
|
34701
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34702
|
+
"value": {
|
|
34703
|
+
"kind": "expression",
|
|
34704
|
+
"type": "string"
|
|
34705
|
+
}
|
|
34706
|
+
},
|
|
34707
|
+
{
|
|
34708
|
+
"name": "multiLine",
|
|
34709
|
+
"description": "Gives the snackbar a larger minimum height.",
|
|
34710
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34711
|
+
"default": "false",
|
|
34712
|
+
"value": {
|
|
34713
|
+
"kind": "expression",
|
|
34714
|
+
"type": "boolean"
|
|
34715
|
+
}
|
|
34716
|
+
},
|
|
34717
|
+
{
|
|
34718
|
+
"name": "timer",
|
|
34719
|
+
"description": "Display a progress bar that counts down until the snackbar closes. Pass a string to set a custom color, otherwise uses `info`.",
|
|
34720
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34721
|
+
"default": "false",
|
|
34722
|
+
"value": {
|
|
34723
|
+
"kind": "expression",
|
|
34724
|
+
"type": "string | boolean"
|
|
34725
|
+
}
|
|
34726
|
+
},
|
|
34727
|
+
{
|
|
34728
|
+
"name": "timeout",
|
|
34729
|
+
"description": "Time (in milliseconds) to wait until snackbar is automatically hidden. Use `-1` to keep open indefinitely (`0` in version < 2.3 ). It is recommended for this number to be between `4000` and `10000`. Changes to this property will reset the timeout.",
|
|
34730
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34731
|
+
"default": "5000",
|
|
34732
|
+
"value": {
|
|
34733
|
+
"kind": "expression",
|
|
34734
|
+
"type": "string | number"
|
|
34735
|
+
}
|
|
34736
|
+
},
|
|
34737
|
+
{
|
|
34738
|
+
"name": "vertical",
|
|
34739
|
+
"description": "Stacks snackbar content on top of the actions (button).",
|
|
34740
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34741
|
+
"default": "false",
|
|
34742
|
+
"value": {
|
|
34743
|
+
"kind": "expression",
|
|
34744
|
+
"type": "boolean"
|
|
34745
|
+
}
|
|
34746
|
+
},
|
|
34747
|
+
{
|
|
34748
|
+
"name": "location",
|
|
34749
|
+
"description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both..",
|
|
34750
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34751
|
+
"default": "'bottom'",
|
|
34752
|
+
"value": {
|
|
34753
|
+
"kind": "expression",
|
|
34754
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>"
|
|
34755
|
+
}
|
|
34756
|
+
},
|
|
34757
|
+
{
|
|
34758
|
+
"name": "position",
|
|
34759
|
+
"description": "Sets the position for the component.",
|
|
34760
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34761
|
+
"value": {
|
|
34762
|
+
"kind": "expression",
|
|
34763
|
+
"type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'"
|
|
34764
|
+
}
|
|
34765
|
+
},
|
|
34766
|
+
{
|
|
34767
|
+
"name": "absolute",
|
|
34768
|
+
"description": "Applies **position: absolute** to the content element.",
|
|
34769
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34770
|
+
"default": "false",
|
|
34771
|
+
"value": {
|
|
34772
|
+
"kind": "expression",
|
|
34773
|
+
"type": "boolean"
|
|
34774
|
+
}
|
|
34775
|
+
},
|
|
34776
|
+
{
|
|
34777
|
+
"name": "rounded",
|
|
34778
|
+
"description": "Designates the **border-radius** applied to the component. This can be **0**, **xs**, **sm**, true, **lg**, **xl**, **pill**, **circle**, and **shaped**. Find more information on available border radius classes on the [Border Radius page](/styles/border-radius).",
|
|
34779
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34780
|
+
"value": {
|
|
34781
|
+
"kind": "expression",
|
|
34782
|
+
"type": "string | number | boolean"
|
|
34783
|
+
}
|
|
34784
|
+
},
|
|
34785
|
+
{
|
|
34786
|
+
"name": "tile",
|
|
34787
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
34788
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34789
|
+
"default": "false",
|
|
34790
|
+
"value": {
|
|
34791
|
+
"kind": "expression",
|
|
34792
|
+
"type": "boolean"
|
|
34793
|
+
}
|
|
34794
|
+
},
|
|
34795
|
+
{
|
|
34796
|
+
"name": "color",
|
|
34797
|
+
"description": "Applies specified color to the control - 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).",
|
|
34798
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34799
|
+
"value": {
|
|
34800
|
+
"kind": "expression",
|
|
34801
|
+
"type": "string"
|
|
34802
|
+
}
|
|
34803
|
+
},
|
|
34804
|
+
{
|
|
34805
|
+
"name": "variant",
|
|
34806
|
+
"description": "Applies a distinct style to the component.",
|
|
34807
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34808
|
+
"default": "'elevated'",
|
|
34809
|
+
"value": {
|
|
34810
|
+
"kind": "expression",
|
|
34811
|
+
"type": "'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'"
|
|
34812
|
+
}
|
|
34813
|
+
},
|
|
34814
|
+
{
|
|
34815
|
+
"name": "theme",
|
|
34816
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
34817
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34818
|
+
"value": {
|
|
34819
|
+
"kind": "expression",
|
|
34820
|
+
"type": "string"
|
|
34821
|
+
}
|
|
34822
|
+
},
|
|
34823
|
+
{
|
|
34824
|
+
"name": "closeOnBack",
|
|
34825
|
+
"description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing.",
|
|
34826
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34827
|
+
"default": "true",
|
|
34828
|
+
"value": {
|
|
34829
|
+
"kind": "expression",
|
|
34830
|
+
"type": "boolean"
|
|
34831
|
+
}
|
|
34832
|
+
},
|
|
34833
|
+
{
|
|
34834
|
+
"name": "contained",
|
|
34835
|
+
"description": "Limits the size of the component and scrim to its offset parent. Implies `absolute` and `attach`. (Note: The parent element must have position: relative.).",
|
|
34836
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34837
|
+
"default": "false",
|
|
34838
|
+
"value": {
|
|
34839
|
+
"kind": "expression",
|
|
34840
|
+
"type": "boolean"
|
|
34841
|
+
}
|
|
34842
|
+
},
|
|
34843
|
+
{
|
|
34844
|
+
"name": "contentClass",
|
|
34845
|
+
"description": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component.",
|
|
34846
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34847
|
+
"value": {
|
|
34848
|
+
"kind": "expression",
|
|
34849
|
+
"type": "any"
|
|
34850
|
+
}
|
|
34851
|
+
},
|
|
34852
|
+
{
|
|
34853
|
+
"name": "contentProps",
|
|
34854
|
+
"description": "Apply custom properties to the content.",
|
|
34855
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34856
|
+
"value": {
|
|
34857
|
+
"kind": "expression",
|
|
34858
|
+
"type": "any"
|
|
34859
|
+
}
|
|
34860
|
+
},
|
|
34861
|
+
{
|
|
34862
|
+
"name": "disabled",
|
|
34863
|
+
"description": "Removes the ability to click or target the component.",
|
|
34864
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34865
|
+
"default": "false",
|
|
34866
|
+
"value": {
|
|
34867
|
+
"kind": "expression",
|
|
34868
|
+
"type": "boolean"
|
|
34869
|
+
}
|
|
34870
|
+
},
|
|
34871
|
+
{
|
|
34872
|
+
"name": "opacity",
|
|
34873
|
+
"description": "Sets the overlay opacity.",
|
|
34874
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34875
|
+
"value": {
|
|
34876
|
+
"kind": "expression",
|
|
34877
|
+
"type": "string | number"
|
|
34878
|
+
}
|
|
34879
|
+
},
|
|
34880
|
+
{
|
|
34881
|
+
"name": "modelValue",
|
|
34882
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
|
|
34883
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34884
|
+
"default": "[]",
|
|
34885
|
+
"value": {
|
|
34886
|
+
"kind": "expression",
|
|
34887
|
+
"type": "(\n | string\n | {\n text: string\n multiLine: boolean\n timer: string | boolean\n timeout: string | number\n vertical: boolean\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n position: 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n absolute: boolean\n rounded: string | number | boolean\n tile: boolean\n color: string\n variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n theme: string\n closeOnBack: boolean\n contained: boolean\n contentClass: any\n contentProps: any\n disabled: boolean\n opacity: string | number\n zIndex: string | number\n target:\n | Element\n | 'parent'\n | 'cursor'\n | (string & {})\n | ComponentPublicInstance\n | [number, number]\n closeOnContentClick: boolean\n style: StyleValue\n class: any\n height: string | number\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n width: string | number\n eager: boolean\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n offset: string | number | number[]\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n attach: string | boolean | Element\n 'v-slots': {\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n }) => VNodeChild)\n default: false | (() => VNodeChild)\n actions: false | (() => VNodeChild)\n text: false | (() => VNodeChild)\n }\n 'v-slot:default': false | (() => VNodeChild)\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n }) => 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 'v-slot:actions': false | (() => VNodeChild)\n 'v-slot:text': false | (() => VNodeChild)\n }\n)[]"
|
|
34888
|
+
}
|
|
34889
|
+
},
|
|
34890
|
+
{
|
|
34891
|
+
"name": "zIndex",
|
|
34892
|
+
"description": "The z-index used for the component.",
|
|
34893
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34894
|
+
"default": "2000",
|
|
34895
|
+
"value": {
|
|
34896
|
+
"kind": "expression",
|
|
34897
|
+
"type": "string | number"
|
|
34898
|
+
}
|
|
34899
|
+
},
|
|
34900
|
+
{
|
|
34901
|
+
"name": "target",
|
|
34902
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
34903
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34904
|
+
"value": {
|
|
34905
|
+
"kind": "expression",
|
|
34906
|
+
"type": "| Element\n | 'parent'\n | 'cursor'\n | (string & {})\n | ComponentPublicInstance\n | [number, number]"
|
|
34907
|
+
}
|
|
34908
|
+
},
|
|
34909
|
+
{
|
|
34910
|
+
"name": "activatorProps",
|
|
34911
|
+
"description": "Apply custom properties to the activator.",
|
|
34912
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34913
|
+
"default": "{}",
|
|
34914
|
+
"value": {
|
|
34915
|
+
"kind": "expression",
|
|
34916
|
+
"type": "unknown"
|
|
34917
|
+
}
|
|
34918
|
+
},
|
|
34919
|
+
{
|
|
34920
|
+
"name": "openOnClick",
|
|
34921
|
+
"description": "Activate the component when the activator is clicked.",
|
|
34922
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34923
|
+
"value": {
|
|
34924
|
+
"kind": "expression",
|
|
34925
|
+
"type": "boolean"
|
|
34926
|
+
}
|
|
34927
|
+
},
|
|
34928
|
+
{
|
|
34929
|
+
"name": "openOnHover",
|
|
34930
|
+
"description": "Activate the component when the activator is hovered.",
|
|
34931
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34932
|
+
"default": "false",
|
|
34933
|
+
"value": {
|
|
34934
|
+
"kind": "expression",
|
|
34935
|
+
"type": "boolean"
|
|
34936
|
+
}
|
|
34937
|
+
},
|
|
34938
|
+
{
|
|
34939
|
+
"name": "openOnFocus",
|
|
34940
|
+
"description": "Activate the component when the activator is focused.",
|
|
34941
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34942
|
+
"value": {
|
|
34943
|
+
"kind": "expression",
|
|
34944
|
+
"type": "boolean"
|
|
34945
|
+
}
|
|
34946
|
+
},
|
|
34947
|
+
{
|
|
34948
|
+
"name": "closeOnContentClick",
|
|
34949
|
+
"description": "Closes component when you click on its content.",
|
|
34950
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34951
|
+
"default": "false",
|
|
34952
|
+
"value": {
|
|
34953
|
+
"kind": "expression",
|
|
34954
|
+
"type": "boolean"
|
|
34955
|
+
}
|
|
34956
|
+
},
|
|
34957
|
+
{
|
|
34958
|
+
"name": "closeDelay",
|
|
34959
|
+
"description": "Milliseconds to wait before closing component. Only applies to hover and focus events.",
|
|
34960
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34961
|
+
"value": {
|
|
34962
|
+
"kind": "expression",
|
|
34963
|
+
"type": "string | number"
|
|
34964
|
+
}
|
|
34965
|
+
},
|
|
34966
|
+
{
|
|
34967
|
+
"name": "openDelay",
|
|
34968
|
+
"description": "Milliseconds to wait before opening component. Only applies to hover and focus events.",
|
|
34969
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34970
|
+
"value": {
|
|
34971
|
+
"kind": "expression",
|
|
34972
|
+
"type": "string | number"
|
|
34973
|
+
}
|
|
34974
|
+
},
|
|
34975
|
+
{
|
|
34976
|
+
"name": "height",
|
|
34977
|
+
"description": "Sets the height for the component.",
|
|
34978
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34979
|
+
"value": {
|
|
34980
|
+
"kind": "expression",
|
|
34981
|
+
"type": "string | number"
|
|
34982
|
+
}
|
|
34983
|
+
},
|
|
34984
|
+
{
|
|
34985
|
+
"name": "maxHeight",
|
|
34986
|
+
"description": "Sets the maximum height for the component.",
|
|
34987
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34988
|
+
"value": {
|
|
34989
|
+
"kind": "expression",
|
|
34990
|
+
"type": "string | number"
|
|
34991
|
+
}
|
|
34992
|
+
},
|
|
34993
|
+
{
|
|
34994
|
+
"name": "maxWidth",
|
|
34995
|
+
"description": "Sets the maximum width for the component.",
|
|
34996
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
34997
|
+
"value": {
|
|
34998
|
+
"kind": "expression",
|
|
34999
|
+
"type": "string | number"
|
|
35000
|
+
}
|
|
35001
|
+
},
|
|
35002
|
+
{
|
|
35003
|
+
"name": "minHeight",
|
|
35004
|
+
"description": "Sets the minimum height for the component.",
|
|
35005
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35006
|
+
"value": {
|
|
35007
|
+
"kind": "expression",
|
|
35008
|
+
"type": "string | number"
|
|
35009
|
+
}
|
|
35010
|
+
},
|
|
35011
|
+
{
|
|
35012
|
+
"name": "minWidth",
|
|
35013
|
+
"description": "Sets the minimum width for the component.",
|
|
35014
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35015
|
+
"value": {
|
|
35016
|
+
"kind": "expression",
|
|
35017
|
+
"type": "string | number"
|
|
35018
|
+
}
|
|
35019
|
+
},
|
|
35020
|
+
{
|
|
35021
|
+
"name": "width",
|
|
35022
|
+
"description": "Sets the width for the component.",
|
|
35023
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35024
|
+
"value": {
|
|
35025
|
+
"kind": "expression",
|
|
35026
|
+
"type": "string | number"
|
|
35027
|
+
}
|
|
35028
|
+
},
|
|
35029
|
+
{
|
|
35030
|
+
"name": "eager",
|
|
35031
|
+
"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.",
|
|
35032
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35033
|
+
"default": "false",
|
|
35034
|
+
"value": {
|
|
35035
|
+
"kind": "expression",
|
|
35036
|
+
"type": "boolean"
|
|
35037
|
+
}
|
|
35038
|
+
},
|
|
35039
|
+
{
|
|
35040
|
+
"name": "locationStrategy",
|
|
35041
|
+
"description": "A function used to specifies how the component should position relative to its activator.",
|
|
35042
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35043
|
+
"default": "'static'",
|
|
35044
|
+
"value": {
|
|
35045
|
+
"kind": "expression",
|
|
35046
|
+
"type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>"
|
|
35047
|
+
}
|
|
35048
|
+
},
|
|
35049
|
+
{
|
|
35050
|
+
"name": "origin",
|
|
35051
|
+
"description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin).",
|
|
35052
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35053
|
+
"default": "'auto'",
|
|
35054
|
+
"value": {
|
|
35055
|
+
"kind": "expression",
|
|
35056
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'"
|
|
35057
|
+
}
|
|
35058
|
+
},
|
|
35059
|
+
{
|
|
35060
|
+
"name": "offset",
|
|
35061
|
+
"description": "A single value that offsets content away from the target based upon what side it is on.",
|
|
35062
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35063
|
+
"value": {
|
|
35064
|
+
"kind": "expression",
|
|
35065
|
+
"type": "string | number | number[]"
|
|
35066
|
+
}
|
|
35067
|
+
},
|
|
35068
|
+
{
|
|
35069
|
+
"name": "transition",
|
|
35070
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
|
|
35071
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35072
|
+
"default": "'v-snackbar-transition'",
|
|
35073
|
+
"value": {
|
|
35074
|
+
"kind": "expression",
|
|
35075
|
+
"type": "string | boolean | (TransitionProps & { component: Component })"
|
|
35076
|
+
}
|
|
35077
|
+
},
|
|
35078
|
+
{
|
|
35079
|
+
"name": "attach",
|
|
35080
|
+
"description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default.",
|
|
35081
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35082
|
+
"default": "false",
|
|
35083
|
+
"value": {
|
|
35084
|
+
"kind": "expression",
|
|
35085
|
+
"type": "string | boolean | Element"
|
|
35086
|
+
}
|
|
35087
|
+
},
|
|
35088
|
+
{
|
|
35089
|
+
"name": "closable",
|
|
35090
|
+
"description": "Adds a dismiss button that closes the active snackbar.",
|
|
35091
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35092
|
+
"default": "false",
|
|
35093
|
+
"value": {
|
|
35094
|
+
"kind": "expression",
|
|
35095
|
+
"type": "string | boolean"
|
|
35096
|
+
}
|
|
35097
|
+
},
|
|
35098
|
+
{
|
|
35099
|
+
"name": "closeText",
|
|
35100
|
+
"description": "The text used in the close button when using the **closable** prop.",
|
|
35101
|
+
"doc-url": "https://vuetifyjs.com/api/VSnackbarQueue#props",
|
|
35102
|
+
"default": "'$vuetify.dismiss'",
|
|
35103
|
+
"value": {
|
|
35104
|
+
"kind": "expression",
|
|
35105
|
+
"type": "string"
|
|
35106
|
+
}
|
|
35107
|
+
}
|
|
35108
|
+
],
|
|
35109
|
+
"events": [
|
|
35110
|
+
{
|
|
35111
|
+
"name": "update:modelValue",
|
|
35112
|
+
"description": "Event that is emitted when the component's model changes.",
|
|
35113
|
+
"doc-url": "https://vuetifyjs.com/api/v-snackbar-queue#events",
|
|
35114
|
+
"arguments": [
|
|
35115
|
+
{
|
|
35116
|
+
"name": "argument",
|
|
35117
|
+
"type": "[\n (\n | string\n | {\n text: string\n multiLine: boolean\n timer: string | boolean\n timeout: string | number\n vertical: boolean\n location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>\n position: 'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'\n absolute: boolean\n rounded: string | number | boolean\n tile: boolean\n color: string\n variant: 'text' | 'flat' | 'elevated' | 'tonal' | 'outlined' | 'plain'\n theme: string\n closeOnBack: boolean\n contained: boolean\n contentClass: any\n contentProps: any\n disabled: boolean\n opacity: string | number\n zIndex: string | number\n target:\n | Element\n | 'parent'\n | 'cursor'\n | (string & {})\n | ComponentPublicInstance\n | [number, number]\n closeOnContentClick: boolean\n style: StyleValue\n class: any\n height: string | number\n maxHeight: string | number\n maxWidth: string | number\n minHeight: string | number\n minWidth: string | number\n width: string | number\n eager: boolean\n locationStrategy: 'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>\n origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'\n offset: string | number | number[]\n transition:\n | string\n | boolean\n | (TransitionProps & { component: Component })\n attach: string | boolean | Element\n 'v-slots': {\n activator:\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n }) => VNodeChild)\n default: false | (() => VNodeChild)\n actions: false | (() => VNodeChild)\n text: false | (() => VNodeChild)\n }\n 'v-slot:default': false | (() => VNodeChild)\n 'v-slot:activator':\n | false\n | ((arg: {\n isActive: boolean\n props: Record<string, any>\n }) => 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 'v-slot:actions': false | (() => VNodeChild)\n 'v-slot:text': false | (() => VNodeChild)\n }\n )[],\n]\n"
|
|
35118
|
+
}
|
|
35119
|
+
]
|
|
35120
|
+
}
|
|
35121
|
+
],
|
|
35122
|
+
"slots": [
|
|
35123
|
+
{
|
|
35124
|
+
"name": "default",
|
|
35125
|
+
"description": "The default Vue slot.",
|
|
35126
|
+
"doc-url": "https://vuetifyjs.com/api/v-snackbar-queue#slots",
|
|
35127
|
+
"vue-properties": [
|
|
35128
|
+
{
|
|
35129
|
+
"name": "item",
|
|
35130
|
+
"type": "string | { text: string; multiLine: boolean; timer: string | boolean; timeout: string | number; vertical: boolean; location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>; position: \"static\" | \"relative\" | \"fixed\" | \"absolute\" | \"sticky\"; absolute: boolean; rounded: string | number | boolean; tile: boolean; color: string; variant: \"text\" | \"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"plain\"; theme: string; closeOnBack: boolean; contained: boolean; contentClass: any; contentProps: any; disabled: boolean; opacity: string | number; zIndex: string | number; target: Element | \"parent\" | \"cursor\" | string & { } | ComponentPublicInstance | [number, number]; closeOnContentClick: boolean; style: StyleValue; class: any; height: string | number; maxHeight: string | number; maxWidth: string | number; minHeight: string | number; minWidth: string | number; width: string | number; eager: boolean; locationStrategy: \"static\" | \"connected\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>; origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | \"auto\" | \"overlap\"; offset: string | number | number[]; transition: string | boolean | TransitionProps & { component: Component }; attach: string | boolean | Element; 'v-slots': { activator: false | ((arg: { isActive: boolean; props: Record<string, any> }) => VNodeChild); default: false | (() => VNodeChild); actions: false | (() => VNodeChild); text: false | (() => VNodeChild) }; 'v-slot:default': false | (() => VNodeChild); 'v-slot:activator': false | ((arg: { isActive: boolean; props: Record<string, any> }) => VNodeChild); key: string | number | symbol; ref: VNodeRef; ref_for: boolean; ref_key: string; onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]; onVnodeMounted: VNodeMountHook | VNodeMountHook[]; onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]; onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]; onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]; onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]; 'v-slot:actions': false | (() => VNodeChild); 'v-slot:text': false | (() => VNodeChild) }"
|
|
35131
|
+
}
|
|
35132
|
+
]
|
|
35133
|
+
},
|
|
35134
|
+
{
|
|
35135
|
+
"name": "text",
|
|
35136
|
+
"description": "Slot for the component's text content.",
|
|
35137
|
+
"doc-url": "https://vuetifyjs.com/api/v-snackbar-queue#slots",
|
|
35138
|
+
"vue-properties": [
|
|
35139
|
+
{
|
|
35140
|
+
"name": "item",
|
|
35141
|
+
"type": "string | { text: string; multiLine: boolean; timer: string | boolean; timeout: string | number; vertical: boolean; location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>; position: \"static\" | \"relative\" | \"fixed\" | \"absolute\" | \"sticky\"; absolute: boolean; rounded: string | number | boolean; tile: boolean; color: string; variant: \"text\" | \"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"plain\"; theme: string; closeOnBack: boolean; contained: boolean; contentClass: any; contentProps: any; disabled: boolean; opacity: string | number; zIndex: string | number; target: Element | \"parent\" | \"cursor\" | string & { } | ComponentPublicInstance | [number, number]; closeOnContentClick: boolean; style: StyleValue; class: any; height: string | number; maxHeight: string | number; maxWidth: string | number; minHeight: string | number; minWidth: string | number; width: string | number; eager: boolean; locationStrategy: \"static\" | \"connected\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>; origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | \"auto\" | \"overlap\"; offset: string | number | number[]; transition: string | boolean | TransitionProps & { component: Component }; attach: string | boolean | Element; 'v-slots': { activator: false | ((arg: { isActive: boolean; props: Record<string, any> }) => VNodeChild); default: false | (() => VNodeChild); actions: false | (() => VNodeChild); text: false | (() => VNodeChild) }; 'v-slot:default': false | (() => VNodeChild); 'v-slot:activator': false | ((arg: { isActive: boolean; props: Record<string, any> }) => VNodeChild); key: string | number | symbol; ref: VNodeRef; ref_for: boolean; ref_key: string; onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]; onVnodeMounted: VNodeMountHook | VNodeMountHook[]; onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]; onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]; onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]; onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]; 'v-slot:actions': false | (() => VNodeChild); 'v-slot:text': false | (() => VNodeChild) }"
|
|
35142
|
+
}
|
|
35143
|
+
]
|
|
35144
|
+
},
|
|
35145
|
+
{
|
|
35146
|
+
"name": "actions",
|
|
35147
|
+
"description": "Used to bind styles to [v-btn](/components/buttons) to match MD2 specification.",
|
|
35148
|
+
"doc-url": "https://vuetifyjs.com/api/v-snackbar-queue#slots",
|
|
35149
|
+
"vue-properties": [
|
|
35150
|
+
{
|
|
35151
|
+
"name": "item",
|
|
35152
|
+
"type": "string | { text: string; multiLine: boolean; timer: string | boolean; timeout: string | number; vertical: boolean; location: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>; position: \"static\" | \"relative\" | \"fixed\" | \"absolute\" | \"sticky\"; absolute: boolean; rounded: string | number | boolean; tile: boolean; color: string; variant: \"text\" | \"flat\" | \"elevated\" | \"tonal\" | \"outlined\" | \"plain\"; theme: string; closeOnBack: boolean; contained: boolean; contentClass: any; contentProps: any; disabled: boolean; opacity: string | number; zIndex: string | number; target: Element | \"parent\" | \"cursor\" | string & { } | ComponentPublicInstance | [number, number]; closeOnContentClick: boolean; style: StyleValue; class: any; height: string | number; maxHeight: string | number; maxWidth: string | number; minHeight: string | number; minWidth: string | number; width: string | number; eager: boolean; locationStrategy: \"static\" | \"connected\" | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>; origin: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | \"auto\" | \"overlap\"; offset: string | number | number[]; transition: string | boolean | TransitionProps & { component: Component }; attach: string | boolean | Element; 'v-slots': { activator: false | ((arg: { isActive: boolean; props: Record<string, any> }) => VNodeChild); default: false | (() => VNodeChild); actions: false | (() => VNodeChild); text: false | (() => VNodeChild) }; 'v-slot:default': false | (() => VNodeChild); 'v-slot:activator': false | ((arg: { isActive: boolean; props: Record<string, any> }) => VNodeChild); key: string | number | symbol; ref: VNodeRef; ref_for: boolean; ref_key: string; onVnodeBeforeMount: VNodeMountHook | VNodeMountHook[]; onVnodeMounted: VNodeMountHook | VNodeMountHook[]; onVnodeBeforeUpdate: VNodeUpdateHook | VNodeUpdateHook[]; onVnodeUpdated: VNodeUpdateHook | VNodeUpdateHook[]; onVnodeBeforeUnmount: VNodeMountHook | VNodeMountHook[]; onVnodeUnmounted: VNodeMountHook | VNodeMountHook[]; 'v-slot:actions': false | (() => VNodeChild); 'v-slot:text': false | (() => VNodeChild) }"
|
|
35153
|
+
},
|
|
35154
|
+
{
|
|
35155
|
+
"name": "props",
|
|
35156
|
+
"type": "{ onClick: () => void }"
|
|
35157
|
+
}
|
|
35158
|
+
]
|
|
35159
|
+
}
|
|
35160
|
+
],
|
|
35161
|
+
"vue-model": {
|
|
35162
|
+
"prop": "modelValue",
|
|
35163
|
+
"event": "update:modelValue"
|
|
35164
|
+
}
|
|
35165
|
+
},
|
|
34642
35166
|
{
|
|
34643
35167
|
"name": "VSpacer",
|
|
34644
35168
|
"source": {
|
|
@@ -36683,6 +37207,15 @@
|
|
|
36683
37207
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
36684
37208
|
}
|
|
36685
37209
|
},
|
|
37210
|
+
{
|
|
37211
|
+
"name": "theme",
|
|
37212
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
37213
|
+
"doc-url": "https://vuetifyjs.com/api/VSwitch#props",
|
|
37214
|
+
"value": {
|
|
37215
|
+
"kind": "expression",
|
|
37216
|
+
"type": "string"
|
|
37217
|
+
}
|
|
37218
|
+
},
|
|
36686
37219
|
{
|
|
36687
37220
|
"name": "disabled",
|
|
36688
37221
|
"description": "Removes the ability to click or target the component.",
|
|
@@ -36909,15 +37442,6 @@
|
|
|
36909
37442
|
"kind": "expression",
|
|
36910
37443
|
"type": "(a: any, b: any) => boolean"
|
|
36911
37444
|
}
|
|
36912
|
-
},
|
|
36913
|
-
{
|
|
36914
|
-
"name": "theme",
|
|
36915
|
-
"description": "Specify a theme for this component and all of its children.",
|
|
36916
|
-
"doc-url": "https://vuetifyjs.com/api/VSwitch#props",
|
|
36917
|
-
"value": {
|
|
36918
|
-
"kind": "expression",
|
|
36919
|
-
"type": "string"
|
|
36920
|
-
}
|
|
36921
37445
|
}
|
|
36922
37446
|
],
|
|
36923
37447
|
"events": [
|
|
@@ -38357,6 +38881,15 @@
|
|
|
38357
38881
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
38358
38882
|
}
|
|
38359
38883
|
},
|
|
38884
|
+
{
|
|
38885
|
+
"name": "theme",
|
|
38886
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
38887
|
+
"doc-url": "https://vuetifyjs.com/api/VTextField#props",
|
|
38888
|
+
"value": {
|
|
38889
|
+
"kind": "expression",
|
|
38890
|
+
"type": "string"
|
|
38891
|
+
}
|
|
38892
|
+
},
|
|
38360
38893
|
{
|
|
38361
38894
|
"name": "disabled",
|
|
38362
38895
|
"description": "Removes the ability to click or target the input.",
|
|
@@ -38617,15 +39150,6 @@
|
|
|
38617
39150
|
"type": "boolean"
|
|
38618
39151
|
}
|
|
38619
39152
|
},
|
|
38620
|
-
{
|
|
38621
|
-
"name": "theme",
|
|
38622
|
-
"description": "Specify a theme for this component and all of its children.",
|
|
38623
|
-
"doc-url": "https://vuetifyjs.com/api/VTextField#props",
|
|
38624
|
-
"value": {
|
|
38625
|
-
"kind": "expression",
|
|
38626
|
-
"type": "string"
|
|
38627
|
-
}
|
|
38628
|
-
},
|
|
38629
39153
|
{
|
|
38630
39154
|
"name": "counterValue",
|
|
38631
39155
|
"description": "Function returns the counter display text.",
|
|
@@ -39259,6 +39783,15 @@
|
|
|
39259
39783
|
"type": "'default' | 'comfortable' | 'compact'"
|
|
39260
39784
|
}
|
|
39261
39785
|
},
|
|
39786
|
+
{
|
|
39787
|
+
"name": "theme",
|
|
39788
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
39789
|
+
"doc-url": "https://vuetifyjs.com/api/VTextarea#props",
|
|
39790
|
+
"value": {
|
|
39791
|
+
"kind": "expression",
|
|
39792
|
+
"type": "string"
|
|
39793
|
+
}
|
|
39794
|
+
},
|
|
39262
39795
|
{
|
|
39263
39796
|
"name": "disabled",
|
|
39264
39797
|
"description": "Removes the ability to click or target the input.",
|
|
@@ -39519,15 +40052,6 @@
|
|
|
39519
40052
|
"type": "boolean"
|
|
39520
40053
|
}
|
|
39521
40054
|
},
|
|
39522
|
-
{
|
|
39523
|
-
"name": "theme",
|
|
39524
|
-
"description": "Specify a theme for this component and all of its children.",
|
|
39525
|
-
"doc-url": "https://vuetifyjs.com/api/VTextarea#props",
|
|
39526
|
-
"value": {
|
|
39527
|
-
"kind": "expression",
|
|
39528
|
-
"type": "string"
|
|
39529
|
-
}
|
|
39530
|
-
},
|
|
39531
40055
|
{
|
|
39532
40056
|
"name": "counterValue",
|
|
39533
40057
|
"description": "Display the input length but do not provide any validation.",
|
|
@@ -40381,10 +40905,9 @@
|
|
|
40381
40905
|
"name": "displayedValue",
|
|
40382
40906
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VTimePickerClock.json))",
|
|
40383
40907
|
"doc-url": "https://vuetifyjs.com/api/VTimePickerClock#props",
|
|
40384
|
-
"default": "null",
|
|
40385
40908
|
"value": {
|
|
40386
40909
|
"kind": "expression",
|
|
40387
|
-
"type": ""
|
|
40910
|
+
"type": "any"
|
|
40388
40911
|
}
|
|
40389
40912
|
},
|
|
40390
40913
|
{
|
|
@@ -43436,7 +43959,7 @@
|
|
|
43436
43959
|
"vue-properties": [
|
|
43437
43960
|
{
|
|
43438
43961
|
"name": "group",
|
|
43439
|
-
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined
|
|
43962
|
+
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined>; useIndexAsValue: boolean }, cmp: ComponentInternalInstance) => void; unregister: (id: number) => void; select: (id: number, value: boolean) => void; selected: Ref<readonly number[]>; isSelected: (id: number) => boolean; prev: () => void; next: () => void; selectedClass: Ref<string | undefined>; items: ComputedRef<{ id: number; value: unknown; disabled: boolean | undefined; }[]>; disabled: Ref<boolean | undefined>; getItemIndex: (value: unknown) => number }"
|
|
43440
43963
|
}
|
|
43441
43964
|
]
|
|
43442
43965
|
},
|
|
@@ -43447,7 +43970,7 @@
|
|
|
43447
43970
|
"vue-properties": [
|
|
43448
43971
|
{
|
|
43449
43972
|
"name": "group",
|
|
43450
|
-
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined
|
|
43973
|
+
"type": "{ register: (item: { id: number; value: Ref<unknown>; disabled: Ref<boolean | undefined>; useIndexAsValue: boolean }, cmp: ComponentInternalInstance) => void; unregister: (id: number) => void; select: (id: number, value: boolean) => void; selected: Ref<readonly number[]>; isSelected: (id: number) => boolean; prev: () => void; next: () => void; selectedClass: Ref<string | undefined>; items: ComputedRef<{ id: number; value: unknown; disabled: boolean | undefined; }[]>; disabled: Ref<boolean | undefined>; getItemIndex: (value: unknown) => number }"
|
|
43451
43974
|
}
|
|
43452
43975
|
]
|
|
43453
43976
|
},
|