vuetify 3.3.13 → 3.3.14
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 +70 -66
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +12 -12
- package/dist/json/tags.json +5 -4
- package/dist/json/web-types.json +180 -140
- package/dist/vuetify-labs.css +363 -304
- package/dist/vuetify-labs.d.ts +384 -236
- package/dist/vuetify-labs.esm.js +410 -297
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +409 -296
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +291 -232
- package/dist/vuetify.d.ts +232 -76
- package/dist/vuetify.esm.js +210 -160
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +209 -159
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +838 -827
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.mjs +12 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBadge/VBadge.css +1 -1
- package/lib/components/VBadge/_variables.scss +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/VCheckboxBtn.mjs +14 -11
- package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerEdit.css +4 -2
- package/lib/components/VColorPicker/VColorPickerPreview.css +11 -6
- package/lib/components/VCombobox/VCombobox.mjs +11 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.css +22 -7
- package/lib/components/VField/VField.sass +8 -1
- package/lib/components/VField/_variables.scss +1 -0
- package/lib/components/VGrid/VGrid.css +153 -142
- package/lib/components/VProgressLinear/VProgressLinear.css +3 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +114 -33
- package/lib/components/VSelect/VSelect.mjs +12 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +2 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.css +8 -4
- package/lib/components/VSlider/VSliderTrack.css +22 -12
- package/lib/components/VSlider/index.d.mts +114 -33
- package/lib/components/VSwitch/VSwitch.mjs +9 -9
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VTimeline/VTimeline.css +19 -10
- package/lib/components/VTimeline/VTimeline.sass +5 -0
- package/lib/components/VToolbar/VToolbar.css +4 -2
- package/lib/components/index.d.mts +228 -72
- package/lib/composables/color.mjs +6 -1
- package/lib/composables/color.mjs.map +1 -1
- package/lib/composables/defaults.mjs +9 -9
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/theme.mjs +2 -5
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +4 -4
- package/lib/labs/VDateInput/index.d.mts +2 -2
- package/lib/labs/VDatePicker/VDateCard.mjs +3 -0
- package/lib/labs/VDatePicker/VDateCard.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePicker.mjs +51 -21
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.css +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.mjs +53 -35
- package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs +37 -28
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerYears.mjs +19 -17
- package/lib/labs/VDatePicker/VDatePickerYears.mjs.map +1 -1
- package/lib/labs/VDatePicker/index.d.mts +148 -156
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs +3 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs.map +1 -1
- package/lib/labs/VDateRangePicker/index.d.mts +59 -52
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
- package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
- package/lib/labs/components.d.mts +156 -164
- package/lib/locale/no.mjs +1 -1
- package/lib/locale/no.mjs.map +1 -1
- package/lib/styles/tools/_rtl.sass +4 -2
- package/lib/util/colorUtils.mjs +6 -0
- package/lib/util/colorUtils.mjs.map +1 -1
- package/lib/util/helpers.mjs +10 -4
- package/lib/util/helpers.mjs.map +1 -1
- package/lib/util/injectSelf.mjs +2 -1
- package/lib/util/injectSelf.mjs.map +1 -1
- 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.3.
|
|
5
|
+
"version": "3.3.14",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -643,7 +643,7 @@
|
|
|
643
643
|
"doc-url": "https://vuetifyjs.com/api/v-app-bar#props",
|
|
644
644
|
"value": {
|
|
645
645
|
"kind": "expression",
|
|
646
|
-
"type": "'hide'
|
|
646
|
+
"type": " | (string & {})\n | 'hide'\n | 'inverted'\n | 'collapse'\n | 'elevate'\n | 'fade-image'\n"
|
|
647
647
|
}
|
|
648
648
|
}
|
|
649
649
|
],
|
|
@@ -1464,7 +1464,7 @@
|
|
|
1464
1464
|
},
|
|
1465
1465
|
{
|
|
1466
1466
|
"name": "menuProps",
|
|
1467
|
-
"description": "
|
|
1467
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended.",
|
|
1468
1468
|
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
|
1469
1469
|
"value": {
|
|
1470
1470
|
"kind": "expression",
|
|
@@ -1785,7 +1785,7 @@
|
|
|
1785
1785
|
},
|
|
1786
1786
|
{
|
|
1787
1787
|
"name": "clearIcon",
|
|
1788
|
-
"description": "The icon used when the **
|
|
1788
|
+
"description": "The icon used when the **clearable** prop is set to true",
|
|
1789
1789
|
"doc-url": "https://vuetifyjs.com/api/v-autocomplete#props",
|
|
1790
1790
|
"default": "'$clear'",
|
|
1791
1791
|
"value": {
|
|
@@ -3073,7 +3073,7 @@
|
|
|
3073
3073
|
},
|
|
3074
3074
|
{
|
|
3075
3075
|
"name": "multiple",
|
|
3076
|
-
"description": "Allows one to select
|
|
3076
|
+
"description": "Allows one to select multiple items.",
|
|
3077
3077
|
"doc-url": "https://vuetifyjs.com/api/v-bottom-navigation#props",
|
|
3078
3078
|
"default": "false",
|
|
3079
3079
|
"value": {
|
|
@@ -4507,7 +4507,7 @@
|
|
|
4507
4507
|
},
|
|
4508
4508
|
{
|
|
4509
4509
|
"name": "multiple",
|
|
4510
|
-
"description": "Allows one to select
|
|
4510
|
+
"description": "Allows one to select multiple items.",
|
|
4511
4511
|
"doc-url": "https://vuetifyjs.com/api/v-btn-toggle#props",
|
|
4512
4512
|
"default": "false",
|
|
4513
4513
|
"value": {
|
|
@@ -7242,7 +7242,7 @@
|
|
|
7242
7242
|
},
|
|
7243
7243
|
{
|
|
7244
7244
|
"name": "multiple",
|
|
7245
|
-
"description": "Allows one to select
|
|
7245
|
+
"description": "Allows one to select multiple items.",
|
|
7246
7246
|
"doc-url": "https://vuetifyjs.com/api/v-chip-group#props",
|
|
7247
7247
|
"default": "false",
|
|
7248
7248
|
"value": {
|
|
@@ -8203,7 +8203,7 @@
|
|
|
8203
8203
|
},
|
|
8204
8204
|
{
|
|
8205
8205
|
"name": "menuProps",
|
|
8206
|
-
"description": "
|
|
8206
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended.",
|
|
8207
8207
|
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
|
8208
8208
|
"value": {
|
|
8209
8209
|
"kind": "expression",
|
|
@@ -8524,7 +8524,7 @@
|
|
|
8524
8524
|
},
|
|
8525
8525
|
{
|
|
8526
8526
|
"name": "clearIcon",
|
|
8527
|
-
"description": "The icon used when the **
|
|
8527
|
+
"description": "The icon used when the **clearable** prop is set to true",
|
|
8528
8528
|
"doc-url": "https://vuetifyjs.com/api/v-combobox#props",
|
|
8529
8529
|
"default": "'$clear'",
|
|
8530
8530
|
"value": {
|
|
@@ -14661,6 +14661,16 @@
|
|
|
14661
14661
|
"type": "string\n"
|
|
14662
14662
|
}
|
|
14663
14663
|
},
|
|
14664
|
+
{
|
|
14665
|
+
"name": "disabled",
|
|
14666
|
+
"description": "Removes the ability to click or target the component",
|
|
14667
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14668
|
+
"default": "false",
|
|
14669
|
+
"value": {
|
|
14670
|
+
"kind": "expression",
|
|
14671
|
+
"type": "boolean | string[]\n"
|
|
14672
|
+
}
|
|
14673
|
+
},
|
|
14664
14674
|
{
|
|
14665
14675
|
"name": "transition",
|
|
14666
14676
|
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
|
|
@@ -14687,7 +14697,7 @@
|
|
|
14687
14697
|
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14688
14698
|
"value": {
|
|
14689
14699
|
"kind": "expression",
|
|
14690
|
-
"type": "number\n"
|
|
14700
|
+
"type": "string | number | Date\n"
|
|
14691
14701
|
}
|
|
14692
14702
|
},
|
|
14693
14703
|
{
|
|
@@ -14751,42 +14761,32 @@
|
|
|
14751
14761
|
}
|
|
14752
14762
|
},
|
|
14753
14763
|
{
|
|
14754
|
-
"name": "
|
|
14764
|
+
"name": "displayDate",
|
|
14755
14765
|
"description": "MISSING DESCRIPTION",
|
|
14756
14766
|
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14757
|
-
"default": "'$expand'",
|
|
14758
14767
|
"value": {
|
|
14759
14768
|
"kind": "expression",
|
|
14760
|
-
"type": "
|
|
14769
|
+
"type": "any\n"
|
|
14761
14770
|
}
|
|
14762
14771
|
},
|
|
14763
14772
|
{
|
|
14764
|
-
"name": "
|
|
14773
|
+
"name": "expandIcon",
|
|
14765
14774
|
"description": "MISSING DESCRIPTION",
|
|
14766
14775
|
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14767
|
-
"default": "'$
|
|
14776
|
+
"default": "'$expand'",
|
|
14768
14777
|
"value": {
|
|
14769
14778
|
"kind": "expression",
|
|
14770
14779
|
"type": "string\n"
|
|
14771
14780
|
}
|
|
14772
14781
|
},
|
|
14773
14782
|
{
|
|
14774
|
-
"name": "
|
|
14775
|
-
"description": "MISSING DESCRIPTION",
|
|
14776
|
-
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14777
|
-
"default": "false",
|
|
14778
|
-
"value": {
|
|
14779
|
-
"kind": "expression",
|
|
14780
|
-
"type": "string | boolean\n"
|
|
14781
|
-
}
|
|
14782
|
-
},
|
|
14783
|
-
{
|
|
14784
|
-
"name": "displayDate",
|
|
14783
|
+
"name": "collapseIcon",
|
|
14785
14784
|
"description": "MISSING DESCRIPTION",
|
|
14786
14785
|
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14786
|
+
"default": "'$collapse'",
|
|
14787
14787
|
"value": {
|
|
14788
14788
|
"kind": "expression",
|
|
14789
|
-
"type": "
|
|
14789
|
+
"type": "string\n"
|
|
14790
14790
|
}
|
|
14791
14791
|
},
|
|
14792
14792
|
{
|
|
@@ -14799,15 +14799,6 @@
|
|
|
14799
14799
|
"type": "'month' | 'year'\n"
|
|
14800
14800
|
}
|
|
14801
14801
|
},
|
|
14802
|
-
{
|
|
14803
|
-
"name": "format",
|
|
14804
|
-
"description": "MISSING DESCRIPTION",
|
|
14805
|
-
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14806
|
-
"value": {
|
|
14807
|
-
"kind": "expression",
|
|
14808
|
-
"type": "string\n"
|
|
14809
|
-
}
|
|
14810
|
-
},
|
|
14811
14802
|
{
|
|
14812
14803
|
"name": "showAdjacentMonths",
|
|
14813
14804
|
"description": "MISSING DESCRIPTION",
|
|
@@ -14862,7 +14853,16 @@
|
|
|
14862
14853
|
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14863
14854
|
"value": {
|
|
14864
14855
|
"kind": "expression",
|
|
14865
|
-
"type": "number\n"
|
|
14856
|
+
"type": "string | number | Date\n"
|
|
14857
|
+
}
|
|
14858
|
+
},
|
|
14859
|
+
{
|
|
14860
|
+
"name": "format",
|
|
14861
|
+
"description": "MISSING DESCRIPTION",
|
|
14862
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-card#props",
|
|
14863
|
+
"value": {
|
|
14864
|
+
"kind": "expression",
|
|
14865
|
+
"type": "string\n"
|
|
14866
14866
|
}
|
|
14867
14867
|
}
|
|
14868
14868
|
],
|
|
@@ -15169,6 +15169,16 @@
|
|
|
15169
15169
|
"type": "string\n"
|
|
15170
15170
|
}
|
|
15171
15171
|
},
|
|
15172
|
+
{
|
|
15173
|
+
"name": "disabled",
|
|
15174
|
+
"description": "Removes the ability to click or target the component",
|
|
15175
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15176
|
+
"default": "false",
|
|
15177
|
+
"value": {
|
|
15178
|
+
"kind": "expression",
|
|
15179
|
+
"type": "boolean | string[]\n"
|
|
15180
|
+
}
|
|
15181
|
+
},
|
|
15172
15182
|
{
|
|
15173
15183
|
"name": "multiple",
|
|
15174
15184
|
"description": "Allow the selection of multiple dates",
|
|
@@ -15185,7 +15195,7 @@
|
|
|
15185
15195
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15186
15196
|
"value": {
|
|
15187
15197
|
"kind": "expression",
|
|
15188
|
-
"type": "number\n"
|
|
15198
|
+
"type": "string | number | Date\n"
|
|
15189
15199
|
}
|
|
15190
15200
|
},
|
|
15191
15201
|
{
|
|
@@ -15248,6 +15258,15 @@
|
|
|
15248
15258
|
"type": "boolean\n"
|
|
15249
15259
|
}
|
|
15250
15260
|
},
|
|
15261
|
+
{
|
|
15262
|
+
"name": "displayDate",
|
|
15263
|
+
"description": "The date displayed in the picker header.",
|
|
15264
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15265
|
+
"value": {
|
|
15266
|
+
"kind": "expression",
|
|
15267
|
+
"type": "any\n"
|
|
15268
|
+
}
|
|
15269
|
+
},
|
|
15251
15270
|
{
|
|
15252
15271
|
"name": "expandIcon",
|
|
15253
15272
|
"description": "Icon used for **view-mode** toggle.",
|
|
@@ -15268,25 +15287,6 @@
|
|
|
15268
15287
|
"type": "string\n"
|
|
15269
15288
|
}
|
|
15270
15289
|
},
|
|
15271
|
-
{
|
|
15272
|
-
"name": "range",
|
|
15273
|
-
"description": "Allow the selection of date range",
|
|
15274
|
-
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15275
|
-
"default": "false",
|
|
15276
|
-
"value": {
|
|
15277
|
-
"kind": "expression",
|
|
15278
|
-
"type": "string | boolean\n"
|
|
15279
|
-
}
|
|
15280
|
-
},
|
|
15281
|
-
{
|
|
15282
|
-
"name": "displayDate",
|
|
15283
|
-
"description": "The date displayed in the picker header.",
|
|
15284
|
-
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15285
|
-
"value": {
|
|
15286
|
-
"kind": "expression",
|
|
15287
|
-
"type": "any\n"
|
|
15288
|
-
}
|
|
15289
|
-
},
|
|
15290
15290
|
{
|
|
15291
15291
|
"name": "viewMode",
|
|
15292
15292
|
"description": "MISSING DESCRIPTION",
|
|
@@ -15297,15 +15297,6 @@
|
|
|
15297
15297
|
"type": "'month' | 'year'\n"
|
|
15298
15298
|
}
|
|
15299
15299
|
},
|
|
15300
|
-
{
|
|
15301
|
-
"name": "format",
|
|
15302
|
-
"description": "Takes a date object and returns it in a specified format.",
|
|
15303
|
-
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15304
|
-
"value": {
|
|
15305
|
-
"kind": "expression",
|
|
15306
|
-
"type": "string\n"
|
|
15307
|
-
}
|
|
15308
|
-
},
|
|
15309
15300
|
{
|
|
15310
15301
|
"name": "showAdjacentMonths",
|
|
15311
15302
|
"description": "Toggles visibility of days from previous and next months",
|
|
@@ -15360,7 +15351,16 @@
|
|
|
15360
15351
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15361
15352
|
"value": {
|
|
15362
15353
|
"kind": "expression",
|
|
15363
|
-
"type": "number\n"
|
|
15354
|
+
"type": "string | number | Date\n"
|
|
15355
|
+
}
|
|
15356
|
+
},
|
|
15357
|
+
{
|
|
15358
|
+
"name": "format",
|
|
15359
|
+
"description": "Takes a date object and returns it in a specified format.",
|
|
15360
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker#props",
|
|
15361
|
+
"value": {
|
|
15362
|
+
"kind": "expression",
|
|
15363
|
+
"type": "string\n"
|
|
15364
15364
|
}
|
|
15365
15365
|
},
|
|
15366
15366
|
{
|
|
@@ -15529,63 +15529,62 @@
|
|
|
15529
15529
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls",
|
|
15530
15530
|
"attributes": [
|
|
15531
15531
|
{
|
|
15532
|
-
"name": "
|
|
15533
|
-
"description": "
|
|
15532
|
+
"name": "disabled",
|
|
15533
|
+
"description": "Removes the ability to click or target the component",
|
|
15534
15534
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15535
|
-
"default": "
|
|
15535
|
+
"default": "false",
|
|
15536
15536
|
"value": {
|
|
15537
15537
|
"kind": "expression",
|
|
15538
|
-
"type": "string\n"
|
|
15538
|
+
"type": "boolean | string[]\n"
|
|
15539
15539
|
}
|
|
15540
15540
|
},
|
|
15541
15541
|
{
|
|
15542
|
-
"name": "
|
|
15542
|
+
"name": "nextIcon",
|
|
15543
15543
|
"description": "MISSING DESCRIPTION",
|
|
15544
15544
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15545
|
-
"default": "'$
|
|
15545
|
+
"default": "'$next'",
|
|
15546
15546
|
"value": {
|
|
15547
15547
|
"kind": "expression",
|
|
15548
15548
|
"type": "string\n"
|
|
15549
15549
|
}
|
|
15550
15550
|
},
|
|
15551
15551
|
{
|
|
15552
|
-
"name": "
|
|
15552
|
+
"name": "prevIcon",
|
|
15553
15553
|
"description": "MISSING DESCRIPTION",
|
|
15554
15554
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15555
|
-
"default": "'$
|
|
15555
|
+
"default": "'$prev'",
|
|
15556
15556
|
"value": {
|
|
15557
15557
|
"kind": "expression",
|
|
15558
15558
|
"type": "string\n"
|
|
15559
15559
|
}
|
|
15560
15560
|
},
|
|
15561
15561
|
{
|
|
15562
|
-
"name": "
|
|
15562
|
+
"name": "displayDate",
|
|
15563
15563
|
"description": "MISSING DESCRIPTION",
|
|
15564
15564
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15565
|
-
"default": "'$collapse'",
|
|
15566
15565
|
"value": {
|
|
15567
15566
|
"kind": "expression",
|
|
15568
15567
|
"type": "string\n"
|
|
15569
15568
|
}
|
|
15570
15569
|
},
|
|
15571
15570
|
{
|
|
15572
|
-
"name": "
|
|
15571
|
+
"name": "expandIcon",
|
|
15573
15572
|
"description": "MISSING DESCRIPTION",
|
|
15574
15573
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15575
|
-
"default": "
|
|
15574
|
+
"default": "'$expand'",
|
|
15576
15575
|
"value": {
|
|
15577
15576
|
"kind": "expression",
|
|
15578
|
-
"type": "string
|
|
15577
|
+
"type": "string\n"
|
|
15579
15578
|
}
|
|
15580
15579
|
},
|
|
15581
15580
|
{
|
|
15582
|
-
"name": "
|
|
15581
|
+
"name": "collapseIcon",
|
|
15583
15582
|
"description": "MISSING DESCRIPTION",
|
|
15584
15583
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15585
|
-
"default": "
|
|
15584
|
+
"default": "'$collapse'",
|
|
15586
15585
|
"value": {
|
|
15587
15586
|
"kind": "expression",
|
|
15588
|
-
"type": "
|
|
15587
|
+
"type": "string\n"
|
|
15589
15588
|
}
|
|
15590
15589
|
},
|
|
15591
15590
|
{
|
|
@@ -15597,48 +15596,39 @@
|
|
|
15597
15596
|
"kind": "expression",
|
|
15598
15597
|
"type": "'month' | 'year'\n"
|
|
15599
15598
|
}
|
|
15600
|
-
},
|
|
15601
|
-
{
|
|
15602
|
-
"name": "format",
|
|
15603
|
-
"description": "MISSING DESCRIPTION",
|
|
15604
|
-
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#props",
|
|
15605
|
-
"value": {
|
|
15606
|
-
"kind": "expression",
|
|
15607
|
-
"type": "string\n"
|
|
15608
|
-
}
|
|
15609
15599
|
}
|
|
15610
15600
|
],
|
|
15611
15601
|
"events": [
|
|
15612
15602
|
{
|
|
15613
|
-
"name": "
|
|
15614
|
-
"description": "
|
|
15603
|
+
"name": "click:mode",
|
|
15604
|
+
"description": "MISSING DESCRIPTION",
|
|
15615
15605
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#events",
|
|
15616
15606
|
"arguments": [
|
|
15617
15607
|
{
|
|
15618
15608
|
"name": "argument",
|
|
15619
|
-
"type": "[
|
|
15609
|
+
"type": "[]\n"
|
|
15620
15610
|
}
|
|
15621
15611
|
]
|
|
15622
15612
|
},
|
|
15623
15613
|
{
|
|
15624
|
-
"name": "
|
|
15614
|
+
"name": "click:prev",
|
|
15625
15615
|
"description": "MISSING DESCRIPTION",
|
|
15626
15616
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#events",
|
|
15627
15617
|
"arguments": [
|
|
15628
15618
|
{
|
|
15629
15619
|
"name": "argument",
|
|
15630
|
-
"type": "[
|
|
15620
|
+
"type": "[]\n"
|
|
15631
15621
|
}
|
|
15632
15622
|
]
|
|
15633
15623
|
},
|
|
15634
15624
|
{
|
|
15635
|
-
"name": "
|
|
15625
|
+
"name": "click:next",
|
|
15636
15626
|
"description": "MISSING DESCRIPTION",
|
|
15637
15627
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-controls#events",
|
|
15638
15628
|
"arguments": [
|
|
15639
15629
|
{
|
|
15640
15630
|
"name": "argument",
|
|
15641
|
-
"type": "[
|
|
15631
|
+
"type": "[]\n"
|
|
15642
15632
|
}
|
|
15643
15633
|
]
|
|
15644
15634
|
}
|
|
@@ -15776,22 +15766,22 @@
|
|
|
15776
15766
|
}
|
|
15777
15767
|
},
|
|
15778
15768
|
{
|
|
15779
|
-
"name": "
|
|
15769
|
+
"name": "max",
|
|
15780
15770
|
"description": "MISSING DESCRIPTION",
|
|
15781
15771
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15782
|
-
"default": "null",
|
|
15783
15772
|
"value": {
|
|
15784
15773
|
"kind": "expression",
|
|
15785
|
-
"type": "
|
|
15774
|
+
"type": "string | number | Date\n"
|
|
15786
15775
|
}
|
|
15787
15776
|
},
|
|
15788
15777
|
{
|
|
15789
|
-
"name": "
|
|
15778
|
+
"name": "displayDate",
|
|
15790
15779
|
"description": "MISSING DESCRIPTION",
|
|
15791
15780
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15781
|
+
"default": "null",
|
|
15792
15782
|
"value": {
|
|
15793
15783
|
"kind": "expression",
|
|
15794
|
-
"type": "
|
|
15784
|
+
"type": "any\n"
|
|
15795
15785
|
}
|
|
15796
15786
|
},
|
|
15797
15787
|
{
|
|
@@ -15841,6 +15831,24 @@
|
|
|
15841
15831
|
"kind": "expression",
|
|
15842
15832
|
"type": "string\n"
|
|
15843
15833
|
}
|
|
15834
|
+
},
|
|
15835
|
+
{
|
|
15836
|
+
"name": "min",
|
|
15837
|
+
"description": "MISSING DESCRIPTION",
|
|
15838
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15839
|
+
"value": {
|
|
15840
|
+
"kind": "expression",
|
|
15841
|
+
"type": "string | number | Date\n"
|
|
15842
|
+
}
|
|
15843
|
+
},
|
|
15844
|
+
{
|
|
15845
|
+
"name": "format",
|
|
15846
|
+
"description": "MISSING DESCRIPTION",
|
|
15847
|
+
"doc-url": "https://vuetifyjs.com/api/v-date-picker-month#props",
|
|
15848
|
+
"value": {
|
|
15849
|
+
"kind": "expression",
|
|
15850
|
+
"type": "string\n"
|
|
15851
|
+
}
|
|
15844
15852
|
}
|
|
15845
15853
|
],
|
|
15846
15854
|
"events": [
|
|
@@ -15934,7 +15942,7 @@
|
|
|
15934
15942
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#props",
|
|
15935
15943
|
"value": {
|
|
15936
15944
|
"kind": "expression",
|
|
15937
|
-
"type": "number\n"
|
|
15945
|
+
"type": "string | number | Date\n"
|
|
15938
15946
|
}
|
|
15939
15947
|
},
|
|
15940
15948
|
{
|
|
@@ -15952,7 +15960,7 @@
|
|
|
15952
15960
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#props",
|
|
15953
15961
|
"value": {
|
|
15954
15962
|
"kind": "expression",
|
|
15955
|
-
"type": "number\n"
|
|
15963
|
+
"type": "string | number | Date\n"
|
|
15956
15964
|
}
|
|
15957
15965
|
}
|
|
15958
15966
|
],
|
|
@@ -15969,13 +15977,13 @@
|
|
|
15969
15977
|
]
|
|
15970
15978
|
},
|
|
15971
15979
|
{
|
|
15972
|
-
"name": "
|
|
15980
|
+
"name": "click:mode",
|
|
15973
15981
|
"description": "MISSING DESCRIPTION",
|
|
15974
15982
|
"doc-url": "https://vuetifyjs.com/api/v-date-picker-years#events",
|
|
15975
15983
|
"arguments": [
|
|
15976
15984
|
{
|
|
15977
15985
|
"name": "argument",
|
|
15978
|
-
"type": "[
|
|
15986
|
+
"type": "[]\n"
|
|
15979
15987
|
}
|
|
15980
15988
|
]
|
|
15981
15989
|
}
|
|
@@ -16003,7 +16011,7 @@
|
|
|
16003
16011
|
"attributes": [
|
|
16004
16012
|
{
|
|
16005
16013
|
"name": "disabled",
|
|
16006
|
-
"description": "Turns off all
|
|
16014
|
+
"description": "Turns off all calculations of new default values for improved performance in situations where defaults propagation isn't necessary",
|
|
16007
16015
|
"doc-url": "https://vuetifyjs.com/api/v-defaults-provider#props",
|
|
16008
16016
|
"default": "false",
|
|
16009
16017
|
"value": {
|
|
@@ -17274,7 +17282,7 @@
|
|
|
17274
17282
|
},
|
|
17275
17283
|
{
|
|
17276
17284
|
"name": "multiple",
|
|
17277
|
-
"description": "Allows one to select
|
|
17285
|
+
"description": "Allows one to select multiple items.",
|
|
17278
17286
|
"doc-url": "https://vuetifyjs.com/api/v-expansion-panels#props",
|
|
17279
17287
|
"default": "false",
|
|
17280
17288
|
"value": {
|
|
@@ -17685,7 +17693,7 @@
|
|
|
17685
17693
|
},
|
|
17686
17694
|
{
|
|
17687
17695
|
"name": "clearIcon",
|
|
17688
|
-
"description": "The icon used when the **
|
|
17696
|
+
"description": "The icon used when the **clearable** prop is set to true",
|
|
17689
17697
|
"doc-url": "https://vuetifyjs.com/api/v-field#props",
|
|
17690
17698
|
"default": "'$clear'",
|
|
17691
17699
|
"value": {
|
|
@@ -18299,7 +18307,7 @@
|
|
|
18299
18307
|
},
|
|
18300
18308
|
{
|
|
18301
18309
|
"name": "clearIcon",
|
|
18302
|
-
"description": "The icon used when the **
|
|
18310
|
+
"description": "The icon used when the **clearable** prop is set to true",
|
|
18303
18311
|
"doc-url": "https://vuetifyjs.com/api/v-file-input#props",
|
|
18304
18312
|
"default": "'$clear'",
|
|
18305
18313
|
"value": {
|
|
@@ -20325,7 +20333,7 @@
|
|
|
20325
20333
|
},
|
|
20326
20334
|
{
|
|
20327
20335
|
"name": "multiple",
|
|
20328
|
-
"description": "Allows one to select
|
|
20336
|
+
"description": "Allows one to select multiple items.",
|
|
20329
20337
|
"doc-url": "https://vuetifyjs.com/api/v-item-group#props",
|
|
20330
20338
|
"default": "false",
|
|
20331
20339
|
"value": {
|
|
@@ -22819,7 +22827,7 @@
|
|
|
22819
22827
|
},
|
|
22820
22828
|
{
|
|
22821
22829
|
"name": "disableResizeWatcher",
|
|
22822
|
-
"description": "
|
|
22830
|
+
"description": "Prevents the automatic opening or closing of the drawer when resized, based on whether the device is mobile or desktop.",
|
|
22823
22831
|
"doc-url": "https://vuetifyjs.com/api/v-navigation-drawer#props",
|
|
22824
22832
|
"default": "false",
|
|
22825
22833
|
"value": {
|
|
@@ -26272,6 +26280,32 @@
|
|
|
26272
26280
|
}
|
|
26273
26281
|
]
|
|
26274
26282
|
},
|
|
26283
|
+
{
|
|
26284
|
+
"name": "thumb-label",
|
|
26285
|
+
"description": "MISSING DESCRIPTION",
|
|
26286
|
+
"doc-url": "https://vuetifyjs.com/api/v-range-slider#slots",
|
|
26287
|
+
"vue-properties": [
|
|
26288
|
+
{
|
|
26289
|
+
"name": "modelValue",
|
|
26290
|
+
"type": "number"
|
|
26291
|
+
}
|
|
26292
|
+
]
|
|
26293
|
+
},
|
|
26294
|
+
{
|
|
26295
|
+
"name": "tick-label",
|
|
26296
|
+
"description": "MISSING DESCRIPTION",
|
|
26297
|
+
"doc-url": "https://vuetifyjs.com/api/v-range-slider#slots",
|
|
26298
|
+
"vue-properties": [
|
|
26299
|
+
{
|
|
26300
|
+
"name": "tick",
|
|
26301
|
+
"type": "{ value: number; position: number; label: string }"
|
|
26302
|
+
},
|
|
26303
|
+
{
|
|
26304
|
+
"name": "index",
|
|
26305
|
+
"type": "number"
|
|
26306
|
+
}
|
|
26307
|
+
]
|
|
26308
|
+
},
|
|
26275
26309
|
{
|
|
26276
26310
|
"name": "label",
|
|
26277
26311
|
"description": "The default slot of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component",
|
|
@@ -26322,16 +26356,6 @@
|
|
|
26322
26356
|
"type": "() => void"
|
|
26323
26357
|
}
|
|
26324
26358
|
]
|
|
26325
|
-
},
|
|
26326
|
-
{
|
|
26327
|
-
"name": "tick-label",
|
|
26328
|
-
"description": "MISSING DESCRIPTION",
|
|
26329
|
-
"doc-url": "https://vuetifyjs.com/api/v-range-slider#slots"
|
|
26330
|
-
},
|
|
26331
|
-
{
|
|
26332
|
-
"name": "thumb-label",
|
|
26333
|
-
"description": "MISSING DESCRIPTION",
|
|
26334
|
-
"doc-url": "https://vuetifyjs.com/api/v-range-slider#slots"
|
|
26335
26359
|
}
|
|
26336
26360
|
],
|
|
26337
26361
|
"vue-model": {
|
|
@@ -27654,7 +27678,7 @@
|
|
|
27654
27678
|
},
|
|
27655
27679
|
{
|
|
27656
27680
|
"name": "menuProps",
|
|
27657
|
-
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [
|
|
27681
|
+
"description": "Pass props through to the `v-menu` component. Accepts an object with anything from [v-menu](/api/v-menu/#props) props, camelCase keys are recommended.",
|
|
27658
27682
|
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
|
27659
27683
|
"value": {
|
|
27660
27684
|
"kind": "expression",
|
|
@@ -27975,7 +27999,7 @@
|
|
|
27975
27999
|
},
|
|
27976
28000
|
{
|
|
27977
28001
|
"name": "clearIcon",
|
|
27978
|
-
"description": "The icon used when the **
|
|
28002
|
+
"description": "The icon used when the **clearable** prop is set to true",
|
|
27979
28003
|
"doc-url": "https://vuetifyjs.com/api/v-select#props",
|
|
27980
28004
|
"default": "'$clear'",
|
|
27981
28005
|
"value": {
|
|
@@ -29099,7 +29123,7 @@
|
|
|
29099
29123
|
"default": "'image'",
|
|
29100
29124
|
"value": {
|
|
29101
29125
|
"kind": "expression",
|
|
29102
|
-
"type": "string | string[]\n"
|
|
29126
|
+
"type": " | 'text'\n | (string & {})\n | 'image'\n | 'button'\n | 'chip'\n | 'actions'\n | 'avatar'\n | 'divider'\n | 'subtitle'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'article'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n | (\n | 'text'\n | (string & {})\n | 'image'\n | 'button'\n | 'chip'\n | 'actions'\n | 'avatar'\n | 'divider'\n | 'subtitle'\n | 'heading'\n | 'sentences'\n | 'paragraph'\n | 'article'\n | 'card'\n | 'card-avatar'\n | 'date-picker'\n | 'date-picker-options'\n | 'date-picker-days'\n | 'list-item'\n | 'list-item-avatar'\n | 'list-item-two-line'\n | 'list-item-avatar-two-line'\n | 'list-item-three-line'\n | 'list-item-avatar-three-line'\n | 'table'\n | 'table-heading'\n | 'table-thead'\n | 'table-tbody'\n | 'table-row-divider'\n | 'table-row'\n | 'table-tfoot'\n )[]\n"
|
|
29103
29127
|
}
|
|
29104
29128
|
},
|
|
29105
29129
|
{
|
|
@@ -29286,7 +29310,7 @@
|
|
|
29286
29310
|
},
|
|
29287
29311
|
{
|
|
29288
29312
|
"name": "multiple",
|
|
29289
|
-
"description": "Allows one to select
|
|
29313
|
+
"description": "Allows one to select multiple items.",
|
|
29290
29314
|
"doc-url": "https://vuetifyjs.com/api/v-slide-group#props",
|
|
29291
29315
|
"default": "false",
|
|
29292
29316
|
"value": {
|
|
@@ -30519,6 +30543,32 @@
|
|
|
30519
30543
|
}
|
|
30520
30544
|
]
|
|
30521
30545
|
},
|
|
30546
|
+
{
|
|
30547
|
+
"name": "thumb-label",
|
|
30548
|
+
"description": "Replaces the content inside the thumb label",
|
|
30549
|
+
"doc-url": "https://vuetifyjs.com/api/v-slider#slots",
|
|
30550
|
+
"vue-properties": [
|
|
30551
|
+
{
|
|
30552
|
+
"name": "modelValue",
|
|
30553
|
+
"type": "number"
|
|
30554
|
+
}
|
|
30555
|
+
]
|
|
30556
|
+
},
|
|
30557
|
+
{
|
|
30558
|
+
"name": "tick-label",
|
|
30559
|
+
"description": "MISSING DESCRIPTION",
|
|
30560
|
+
"doc-url": "https://vuetifyjs.com/api/v-slider#slots",
|
|
30561
|
+
"vue-properties": [
|
|
30562
|
+
{
|
|
30563
|
+
"name": "tick",
|
|
30564
|
+
"type": "{ value: number; position: number; label: string }"
|
|
30565
|
+
},
|
|
30566
|
+
{
|
|
30567
|
+
"name": "index",
|
|
30568
|
+
"type": "number"
|
|
30569
|
+
}
|
|
30570
|
+
]
|
|
30571
|
+
},
|
|
30522
30572
|
{
|
|
30523
30573
|
"name": "label",
|
|
30524
30574
|
"description": "The default slot of the [v-label](/api/v-label/) or [v-field-label](/api/v-field-label/) component",
|
|
@@ -30569,16 +30619,6 @@
|
|
|
30569
30619
|
"type": "() => void"
|
|
30570
30620
|
}
|
|
30571
30621
|
]
|
|
30572
|
-
},
|
|
30573
|
-
{
|
|
30574
|
-
"name": "tick-label",
|
|
30575
|
-
"description": "MISSING DESCRIPTION",
|
|
30576
|
-
"doc-url": "https://vuetifyjs.com/api/v-slider#slots"
|
|
30577
|
-
},
|
|
30578
|
-
{
|
|
30579
|
-
"name": "thumb-label",
|
|
30580
|
-
"description": "Replaces the content inside the thumb label",
|
|
30581
|
-
"doc-url": "https://vuetifyjs.com/api/v-slider#slots"
|
|
30582
30622
|
}
|
|
30583
30623
|
],
|
|
30584
30624
|
"vue-model": {
|
|
@@ -32750,7 +32790,7 @@
|
|
|
32750
32790
|
},
|
|
32751
32791
|
{
|
|
32752
32792
|
"name": "multiple",
|
|
32753
|
-
"description": "Allows one to select
|
|
32793
|
+
"description": "Allows one to select multiple items.",
|
|
32754
32794
|
"doc-url": "https://vuetifyjs.com/api/v-tabs#props",
|
|
32755
32795
|
"default": "false",
|
|
32756
32796
|
"value": {
|
|
@@ -34160,7 +34200,7 @@
|
|
|
34160
34200
|
},
|
|
34161
34201
|
{
|
|
34162
34202
|
"name": "clearIcon",
|
|
34163
|
-
"description": "The icon used when the **
|
|
34203
|
+
"description": "The icon used when the **clearable** prop is set to true",
|
|
34164
34204
|
"doc-url": "https://vuetifyjs.com/api/v-textarea#props",
|
|
34165
34205
|
"default": "'$clear'",
|
|
34166
34206
|
"value": {
|