vuetify 3.5.5 → 3.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/_component-variables-labs.sass +2 -0
- package/dist/json/attributes.json +352 -40
- package/dist/json/importMap-labs.json +16 -8
- package/dist/json/importMap.json +122 -118
- package/dist/json/tags.json +93 -0
- package/dist/json/web-types.json +1084 -52
- package/dist/vuetify-labs.css +2121 -1996
- package/dist/vuetify-labs.d.ts +1336 -128
- package/dist/vuetify-labs.esm.js +332 -81
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +332 -81
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +838 -839
- package/dist/vuetify.d.ts +320 -145
- package/dist/vuetify.esm.js +87 -75
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +87 -75
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +60 -58
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VApp/index.d.mts +8 -6
- package/lib/components/VAutocomplete/VAutocomplete.css +4 -4
- package/lib/components/VAutocomplete/VAutocomplete.mjs +33 -29
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +3 -1
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.css +4 -4
- package/lib/components/VCombobox/VCombobox.mjs +22 -23
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VDataIterator/VDataIterator.mjs.map +1 -1
- package/lib/components/VDataIterator/index.d.mts +50 -94
- package/lib/components/VDataTable/index.d.mts +214 -1
- package/lib/components/VDataTable/index.mjs +1 -0
- package/lib/components/VDataTable/index.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanel.css +4 -7
- package/lib/components/VExpansionPanel/VExpansionPanel.sass +4 -3
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanelTitle.mjs.map +1 -1
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs +2 -0
- package/lib/components/VExpansionPanel/VExpansionPanels.mjs.map +1 -1
- package/lib/components/VExpansionPanel/index.d.mts +27 -0
- package/lib/components/VLayout/index.d.mts +8 -6
- package/lib/components/VSelect/VSelect.mjs +20 -18
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VToolbar/VToolbar.css +3 -1
- package/lib/components/VToolbar/VToolbar.sass +2 -1
- package/lib/components/index.d.mts +279 -106
- package/lib/composables/filter.mjs +1 -1
- package/lib/composables/filter.mjs.map +1 -1
- package/lib/composables/goto.mjs +2 -2
- package/lib/composables/goto.mjs.map +1 -1
- package/lib/composables/layout.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +42 -39
- package/lib/labs/VEmptyState/VEmptyState.css +59 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs +145 -0
- package/lib/labs/VEmptyState/VEmptyState.mjs.map +1 -0
- package/lib/labs/VEmptyState/VEmptyState.sass +53 -0
- package/lib/labs/VEmptyState/_variables.scss +22 -0
- package/lib/labs/VEmptyState/index.d.mts +415 -0
- package/lib/labs/VEmptyState/index.mjs +2 -0
- package/lib/labs/VEmptyState/index.mjs.map +1 -0
- package/lib/labs/VFab/VFab.css +69 -0
- package/lib/labs/VFab/VFab.mjs +114 -0
- package/lib/labs/VFab/VFab.mjs.map +1 -0
- package/lib/labs/VFab/VFab.sass +82 -0
- package/lib/labs/VFab/_mixins.scss +22 -0
- package/lib/labs/VFab/_variables.scss +33 -0
- package/lib/labs/VFab/index.d.mts +656 -0
- package/lib/labs/VFab/index.mjs +2 -0
- package/lib/labs/VFab/index.mjs.map +1 -0
- package/lib/labs/VSparkline/VBarline.mjs +4 -4
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
- package/lib/labs/VSparkline/VTrendline.mjs +6 -2
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/labs/VSparkline/index.d.mts +12 -0
- package/lib/labs/VSparkline/util/line.mjs +2 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -1
- package/lib/labs/components.d.mts +1066 -2
- package/lib/labs/components.mjs +2 -0
- package/lib/labs/components.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.5.
|
|
5
|
+
"version": "3.5.7",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -590,7 +590,7 @@
|
|
|
590
590
|
},
|
|
591
591
|
{
|
|
592
592
|
"name": "tile",
|
|
593
|
-
"description": "
|
|
593
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
594
594
|
"doc-url": "https://vuetifyjs.com/api/VAppBar#props",
|
|
595
595
|
"default": "false",
|
|
596
596
|
"value": {
|
|
@@ -969,7 +969,7 @@
|
|
|
969
969
|
},
|
|
970
970
|
{
|
|
971
971
|
"name": "tile",
|
|
972
|
-
"description": "
|
|
972
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
973
973
|
"doc-url": "https://vuetifyjs.com/api/VAppBarNavIcon#props",
|
|
974
974
|
"default": "false",
|
|
975
975
|
"value": {
|
|
@@ -1481,7 +1481,7 @@
|
|
|
1481
1481
|
},
|
|
1482
1482
|
{
|
|
1483
1483
|
"name": "tile",
|
|
1484
|
-
"description": "
|
|
1484
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
1485
1485
|
"doc-url": "https://vuetifyjs.com/api/VAutocomplete#props",
|
|
1486
1486
|
"default": "false",
|
|
1487
1487
|
"value": {
|
|
@@ -2429,7 +2429,7 @@
|
|
|
2429
2429
|
},
|
|
2430
2430
|
{
|
|
2431
2431
|
"name": "tile",
|
|
2432
|
-
"description": "
|
|
2432
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
2433
2433
|
"doc-url": "https://vuetifyjs.com/api/VAvatar#props",
|
|
2434
2434
|
"default": "false",
|
|
2435
2435
|
"value": {
|
|
@@ -2652,7 +2652,7 @@
|
|
|
2652
2652
|
},
|
|
2653
2653
|
{
|
|
2654
2654
|
"name": "tile",
|
|
2655
|
-
"description": "
|
|
2655
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
2656
2656
|
"doc-url": "https://vuetifyjs.com/api/VBadge#props",
|
|
2657
2657
|
"default": "false",
|
|
2658
2658
|
"value": {
|
|
@@ -2903,7 +2903,7 @@
|
|
|
2903
2903
|
},
|
|
2904
2904
|
{
|
|
2905
2905
|
"name": "tile",
|
|
2906
|
-
"description": "
|
|
2906
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
2907
2907
|
"doc-url": "https://vuetifyjs.com/api/VBanner#props",
|
|
2908
2908
|
"default": "false",
|
|
2909
2909
|
"value": {
|
|
@@ -3148,7 +3148,7 @@
|
|
|
3148
3148
|
},
|
|
3149
3149
|
{
|
|
3150
3150
|
"name": "tile",
|
|
3151
|
-
"description": "
|
|
3151
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
3152
3152
|
"doc-url": "https://vuetifyjs.com/api/VBottomNavigation#props",
|
|
3153
3153
|
"default": "false",
|
|
3154
3154
|
"value": {
|
|
@@ -3834,7 +3834,7 @@
|
|
|
3834
3834
|
},
|
|
3835
3835
|
{
|
|
3836
3836
|
"name": "tile",
|
|
3837
|
-
"description": "
|
|
3837
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
3838
3838
|
"doc-url": "https://vuetifyjs.com/api/VBreadcrumbs#props",
|
|
3839
3839
|
"default": "false",
|
|
3840
3840
|
"value": {
|
|
@@ -4329,7 +4329,7 @@
|
|
|
4329
4329
|
},
|
|
4330
4330
|
{
|
|
4331
4331
|
"name": "tile",
|
|
4332
|
-
"description": "
|
|
4332
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
4333
4333
|
"doc-url": "https://vuetifyjs.com/api/VBtn#props",
|
|
4334
4334
|
"default": "false",
|
|
4335
4335
|
"value": {
|
|
@@ -4533,7 +4533,7 @@
|
|
|
4533
4533
|
},
|
|
4534
4534
|
{
|
|
4535
4535
|
"name": "tile",
|
|
4536
|
-
"description": "
|
|
4536
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
4537
4537
|
"doc-url": "https://vuetifyjs.com/api/VBtnGroup#props",
|
|
4538
4538
|
"default": "false",
|
|
4539
4539
|
"value": {
|
|
@@ -5888,7 +5888,7 @@
|
|
|
5888
5888
|
},
|
|
5889
5889
|
{
|
|
5890
5890
|
"name": "tile",
|
|
5891
|
-
"description": "
|
|
5891
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
5892
5892
|
"doc-url": "https://vuetifyjs.com/api/VCard#props",
|
|
5893
5893
|
"default": "false",
|
|
5894
5894
|
"value": {
|
|
@@ -6788,7 +6788,7 @@
|
|
|
6788
6788
|
},
|
|
6789
6789
|
{
|
|
6790
6790
|
"name": "tile",
|
|
6791
|
-
"description": "
|
|
6791
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
6792
6792
|
"doc-url": "https://vuetifyjs.com/api/VCarouselItem#props",
|
|
6793
6793
|
"default": "false",
|
|
6794
6794
|
"value": {
|
|
@@ -8124,7 +8124,7 @@
|
|
|
8124
8124
|
},
|
|
8125
8125
|
{
|
|
8126
8126
|
"name": "tile",
|
|
8127
|
-
"description": "
|
|
8127
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
8128
8128
|
"doc-url": "https://vuetifyjs.com/api/VChip#props",
|
|
8129
8129
|
"default": "false",
|
|
8130
8130
|
"value": {
|
|
@@ -9056,7 +9056,7 @@
|
|
|
9056
9056
|
},
|
|
9057
9057
|
{
|
|
9058
9058
|
"name": "tile",
|
|
9059
|
-
"description": "
|
|
9059
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
9060
9060
|
"doc-url": "https://vuetifyjs.com/api/VColorPicker#props",
|
|
9061
9061
|
"default": "false",
|
|
9062
9062
|
"value": {
|
|
@@ -9446,7 +9446,7 @@
|
|
|
9446
9446
|
},
|
|
9447
9447
|
{
|
|
9448
9448
|
"name": "tile",
|
|
9449
|
-
"description": "
|
|
9449
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
9450
9450
|
"doc-url": "https://vuetifyjs.com/api/VCombobox#props",
|
|
9451
9451
|
"default": "false",
|
|
9452
9452
|
"value": {
|
|
@@ -10626,7 +10626,7 @@
|
|
|
10626
10626
|
"default": "[]",
|
|
10627
10627
|
"value": {
|
|
10628
10628
|
"kind": "expression",
|
|
10629
|
-
"type": "
|
|
10629
|
+
"type": "unknown[]"
|
|
10630
10630
|
}
|
|
10631
10631
|
},
|
|
10632
10632
|
{
|
|
@@ -10867,6 +10867,17 @@
|
|
|
10867
10867
|
}
|
|
10868
10868
|
]
|
|
10869
10869
|
},
|
|
10870
|
+
{
|
|
10871
|
+
"name": "update:expanded",
|
|
10872
|
+
"description": "The `.sync` event for `expanded` prop.",
|
|
10873
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-iterator#events",
|
|
10874
|
+
"arguments": [
|
|
10875
|
+
{
|
|
10876
|
+
"name": "argument",
|
|
10877
|
+
"type": "[any]\n"
|
|
10878
|
+
}
|
|
10879
|
+
]
|
|
10880
|
+
},
|
|
10870
10881
|
{
|
|
10871
10882
|
"name": "update:groupBy",
|
|
10872
10883
|
"description": "The `.sync` event for `groupBy` prop.",
|
|
@@ -10922,17 +10933,6 @@
|
|
|
10922
10933
|
}
|
|
10923
10934
|
]
|
|
10924
10935
|
},
|
|
10925
|
-
{
|
|
10926
|
-
"name": "update:expanded",
|
|
10927
|
-
"description": "The `.sync` event for `expanded` prop.",
|
|
10928
|
-
"doc-url": "https://vuetifyjs.com/api/v-data-iterator#events",
|
|
10929
|
-
"arguments": [
|
|
10930
|
-
{
|
|
10931
|
-
"name": "argument",
|
|
10932
|
-
"type": "[any]\n"
|
|
10933
|
-
}
|
|
10934
|
-
]
|
|
10935
|
-
},
|
|
10936
10936
|
{
|
|
10937
10937
|
"name": "update:currentItems",
|
|
10938
10938
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataIterator.json))",
|
|
@@ -13079,6 +13079,267 @@
|
|
|
13079
13079
|
"event": "update:modelValue"
|
|
13080
13080
|
}
|
|
13081
13081
|
},
|
|
13082
|
+
{
|
|
13083
|
+
"name": "VDataTableHeaders",
|
|
13084
|
+
"source": {
|
|
13085
|
+
"module": "./src/components/index.ts",
|
|
13086
|
+
"symbol": "VDataTableHeaders"
|
|
13087
|
+
},
|
|
13088
|
+
"description": "",
|
|
13089
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-headers",
|
|
13090
|
+
"attributes": [
|
|
13091
|
+
{
|
|
13092
|
+
"name": "color",
|
|
13093
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
|
|
13094
|
+
"doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
|
|
13095
|
+
"value": {
|
|
13096
|
+
"kind": "expression",
|
|
13097
|
+
"type": "string"
|
|
13098
|
+
}
|
|
13099
|
+
},
|
|
13100
|
+
{
|
|
13101
|
+
"name": "sticky",
|
|
13102
|
+
"description": "Sticks the header to the top of the table.",
|
|
13103
|
+
"doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
|
|
13104
|
+
"default": "false",
|
|
13105
|
+
"value": {
|
|
13106
|
+
"kind": "expression",
|
|
13107
|
+
"type": "boolean"
|
|
13108
|
+
}
|
|
13109
|
+
},
|
|
13110
|
+
{
|
|
13111
|
+
"name": "multiSort",
|
|
13112
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableHeaders.json))",
|
|
13113
|
+
"doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
|
|
13114
|
+
"default": "false",
|
|
13115
|
+
"value": {
|
|
13116
|
+
"kind": "expression",
|
|
13117
|
+
"type": "boolean"
|
|
13118
|
+
}
|
|
13119
|
+
},
|
|
13120
|
+
{
|
|
13121
|
+
"name": "sortAscIcon",
|
|
13122
|
+
"description": "Icon used for ascending sort button.",
|
|
13123
|
+
"doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
|
|
13124
|
+
"default": "'$sortAsc'",
|
|
13125
|
+
"value": {
|
|
13126
|
+
"kind": "expression",
|
|
13127
|
+
"type": "any"
|
|
13128
|
+
}
|
|
13129
|
+
},
|
|
13130
|
+
{
|
|
13131
|
+
"name": "sortDescIcon",
|
|
13132
|
+
"description": "Icon used for descending sort button.",
|
|
13133
|
+
"doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
|
|
13134
|
+
"default": "'$sortDesc'",
|
|
13135
|
+
"value": {
|
|
13136
|
+
"kind": "expression",
|
|
13137
|
+
"type": "any"
|
|
13138
|
+
}
|
|
13139
|
+
},
|
|
13140
|
+
{
|
|
13141
|
+
"name": "headerProps",
|
|
13142
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VDataTableHeaders.json))",
|
|
13143
|
+
"doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
|
|
13144
|
+
"value": {
|
|
13145
|
+
"kind": "expression",
|
|
13146
|
+
"type": "unknown"
|
|
13147
|
+
}
|
|
13148
|
+
},
|
|
13149
|
+
{
|
|
13150
|
+
"name": "loading",
|
|
13151
|
+
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color.",
|
|
13152
|
+
"doc-url": "https://vuetifyjs.com/api/VDataTableHeaders#props",
|
|
13153
|
+
"default": "false",
|
|
13154
|
+
"value": {
|
|
13155
|
+
"kind": "expression",
|
|
13156
|
+
"type": "string | boolean"
|
|
13157
|
+
}
|
|
13158
|
+
}
|
|
13159
|
+
],
|
|
13160
|
+
"events": [],
|
|
13161
|
+
"slots": [
|
|
13162
|
+
{
|
|
13163
|
+
"name": "headers",
|
|
13164
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L25-L35.json))",
|
|
13165
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
|
|
13166
|
+
"vue-properties": [
|
|
13167
|
+
{
|
|
13168
|
+
"name": "headers",
|
|
13169
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>[][]"
|
|
13170
|
+
},
|
|
13171
|
+
{
|
|
13172
|
+
"name": "columns",
|
|
13173
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>[]"
|
|
13174
|
+
},
|
|
13175
|
+
{
|
|
13176
|
+
"name": "sortBy",
|
|
13177
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
|
|
13178
|
+
},
|
|
13179
|
+
{
|
|
13180
|
+
"name": "someSelected",
|
|
13181
|
+
"type": "boolean"
|
|
13182
|
+
},
|
|
13183
|
+
{
|
|
13184
|
+
"name": "allSelected",
|
|
13185
|
+
"type": "boolean"
|
|
13186
|
+
},
|
|
13187
|
+
{
|
|
13188
|
+
"name": "toggleSort",
|
|
13189
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
|
|
13190
|
+
},
|
|
13191
|
+
{
|
|
13192
|
+
"name": "selectAll",
|
|
13193
|
+
"type": "(value: boolean) => void"
|
|
13194
|
+
},
|
|
13195
|
+
{
|
|
13196
|
+
"name": "getSortIcon",
|
|
13197
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
|
|
13198
|
+
},
|
|
13199
|
+
{
|
|
13200
|
+
"name": "isSorted",
|
|
13201
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
|
|
13202
|
+
}
|
|
13203
|
+
]
|
|
13204
|
+
},
|
|
13205
|
+
{
|
|
13206
|
+
"name": "loader",
|
|
13207
|
+
"description": "Slot for custom loader (displayed when [loading](#props-loading) prop is equal to true).",
|
|
13208
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
|
|
13209
|
+
"vue-properties": [
|
|
13210
|
+
{
|
|
13211
|
+
"name": "color",
|
|
13212
|
+
"type": "string"
|
|
13213
|
+
},
|
|
13214
|
+
{
|
|
13215
|
+
"name": "isActive",
|
|
13216
|
+
"type": "boolean"
|
|
13217
|
+
}
|
|
13218
|
+
]
|
|
13219
|
+
},
|
|
13220
|
+
{
|
|
13221
|
+
"name": "header.data-table-select",
|
|
13222
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L37-L46.json))",
|
|
13223
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
|
|
13224
|
+
"vue-properties": [
|
|
13225
|
+
{
|
|
13226
|
+
"name": "column",
|
|
13227
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>"
|
|
13228
|
+
},
|
|
13229
|
+
{
|
|
13230
|
+
"name": "selectAll",
|
|
13231
|
+
"type": "(value: boolean) => void"
|
|
13232
|
+
},
|
|
13233
|
+
{
|
|
13234
|
+
"name": "isSorted",
|
|
13235
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
|
|
13236
|
+
},
|
|
13237
|
+
{
|
|
13238
|
+
"name": "toggleSort",
|
|
13239
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
|
|
13240
|
+
},
|
|
13241
|
+
{
|
|
13242
|
+
"name": "sortBy",
|
|
13243
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
|
|
13244
|
+
},
|
|
13245
|
+
{
|
|
13246
|
+
"name": "someSelected",
|
|
13247
|
+
"type": "boolean"
|
|
13248
|
+
},
|
|
13249
|
+
{
|
|
13250
|
+
"name": "allSelected",
|
|
13251
|
+
"type": "boolean"
|
|
13252
|
+
},
|
|
13253
|
+
{
|
|
13254
|
+
"name": "getSortIcon",
|
|
13255
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
|
|
13256
|
+
}
|
|
13257
|
+
]
|
|
13258
|
+
},
|
|
13259
|
+
{
|
|
13260
|
+
"name": "header.data-table-expand",
|
|
13261
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L37-L46.json))",
|
|
13262
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
|
|
13263
|
+
"vue-properties": [
|
|
13264
|
+
{
|
|
13265
|
+
"name": "column",
|
|
13266
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>"
|
|
13267
|
+
},
|
|
13268
|
+
{
|
|
13269
|
+
"name": "selectAll",
|
|
13270
|
+
"type": "(value: boolean) => void"
|
|
13271
|
+
},
|
|
13272
|
+
{
|
|
13273
|
+
"name": "isSorted",
|
|
13274
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
|
|
13275
|
+
},
|
|
13276
|
+
{
|
|
13277
|
+
"name": "toggleSort",
|
|
13278
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
|
|
13279
|
+
},
|
|
13280
|
+
{
|
|
13281
|
+
"name": "sortBy",
|
|
13282
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
|
|
13283
|
+
},
|
|
13284
|
+
{
|
|
13285
|
+
"name": "someSelected",
|
|
13286
|
+
"type": "boolean"
|
|
13287
|
+
},
|
|
13288
|
+
{
|
|
13289
|
+
"name": "allSelected",
|
|
13290
|
+
"type": "boolean"
|
|
13291
|
+
},
|
|
13292
|
+
{
|
|
13293
|
+
"name": "getSortIcon",
|
|
13294
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
|
|
13295
|
+
}
|
|
13296
|
+
]
|
|
13297
|
+
},
|
|
13298
|
+
{
|
|
13299
|
+
"name": "[`header.${string}`]",
|
|
13300
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/vuetify/src/components/VDataTable/VDataTableHeaders.tsx#L37-L46.json))",
|
|
13301
|
+
"doc-url": "https://vuetifyjs.com/api/v-data-table-headers#slots",
|
|
13302
|
+
"vue-properties": [
|
|
13303
|
+
{
|
|
13304
|
+
"name": "column",
|
|
13305
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>"
|
|
13306
|
+
},
|
|
13307
|
+
{
|
|
13308
|
+
"name": "selectAll",
|
|
13309
|
+
"type": "(value: boolean) => void"
|
|
13310
|
+
},
|
|
13311
|
+
{
|
|
13312
|
+
"name": "isSorted",
|
|
13313
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => boolean"
|
|
13314
|
+
},
|
|
13315
|
+
{
|
|
13316
|
+
"name": "toggleSort",
|
|
13317
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => void"
|
|
13318
|
+
},
|
|
13319
|
+
{
|
|
13320
|
+
"name": "sortBy",
|
|
13321
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/composables/sort.ts#L29-L29\" target=\"_blank\">SortItem</a>[]"
|
|
13322
|
+
},
|
|
13323
|
+
{
|
|
13324
|
+
"name": "someSelected",
|
|
13325
|
+
"type": "boolean"
|
|
13326
|
+
},
|
|
13327
|
+
{
|
|
13328
|
+
"name": "allSelected",
|
|
13329
|
+
"type": "boolean"
|
|
13330
|
+
},
|
|
13331
|
+
{
|
|
13332
|
+
"name": "getSortIcon",
|
|
13333
|
+
"type": "(column: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VDataTable/types.ts#L33-L42\" target=\"_blank\">InternalDataTableHeader</a>) => any"
|
|
13334
|
+
}
|
|
13335
|
+
]
|
|
13336
|
+
}
|
|
13337
|
+
],
|
|
13338
|
+
"vue-model": {
|
|
13339
|
+
"prop": "modelValue",
|
|
13340
|
+
"event": "update:modelValue"
|
|
13341
|
+
}
|
|
13342
|
+
},
|
|
13082
13343
|
{
|
|
13083
13344
|
"name": "VDataTableRow",
|
|
13084
13345
|
"source": {
|
|
@@ -16667,7 +16928,7 @@
|
|
|
16667
16928
|
},
|
|
16668
16929
|
{
|
|
16669
16930
|
"name": "tile",
|
|
16670
|
-
"description": "
|
|
16931
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
16671
16932
|
"doc-url": "https://vuetifyjs.com/api/VDatePicker#props",
|
|
16672
16933
|
"default": "false",
|
|
16673
16934
|
"value": {
|
|
@@ -18163,6 +18424,254 @@
|
|
|
18163
18424
|
"event": "update:modelValue"
|
|
18164
18425
|
}
|
|
18165
18426
|
},
|
|
18427
|
+
{
|
|
18428
|
+
"name": "VEmptyState",
|
|
18429
|
+
"source": {
|
|
18430
|
+
"module": "./src/components/index.ts",
|
|
18431
|
+
"symbol": "VEmptyState"
|
|
18432
|
+
},
|
|
18433
|
+
"description": "",
|
|
18434
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state",
|
|
18435
|
+
"attributes": [
|
|
18436
|
+
{
|
|
18437
|
+
"name": "headline",
|
|
18438
|
+
"description": "A large headline often used for 404 pages.",
|
|
18439
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18440
|
+
"value": {
|
|
18441
|
+
"kind": "expression",
|
|
18442
|
+
"type": "string"
|
|
18443
|
+
}
|
|
18444
|
+
},
|
|
18445
|
+
{
|
|
18446
|
+
"name": "title",
|
|
18447
|
+
"description": "Specify a title text for the component.",
|
|
18448
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18449
|
+
"value": {
|
|
18450
|
+
"kind": "expression",
|
|
18451
|
+
"type": "string"
|
|
18452
|
+
}
|
|
18453
|
+
},
|
|
18454
|
+
{
|
|
18455
|
+
"name": "text",
|
|
18456
|
+
"description": "Specify content text for the component.",
|
|
18457
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18458
|
+
"value": {
|
|
18459
|
+
"kind": "expression",
|
|
18460
|
+
"type": "string"
|
|
18461
|
+
}
|
|
18462
|
+
},
|
|
18463
|
+
{
|
|
18464
|
+
"name": "actionText",
|
|
18465
|
+
"description": "The text used for the action button.",
|
|
18466
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18467
|
+
"value": {
|
|
18468
|
+
"kind": "expression",
|
|
18469
|
+
"type": "string"
|
|
18470
|
+
}
|
|
18471
|
+
},
|
|
18472
|
+
{
|
|
18473
|
+
"name": "bgColor",
|
|
18474
|
+
"description": "Applies specified color to the control's background. Used on components that also support the **color** prop. - supports utility colors (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
|
|
18475
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18476
|
+
"value": {
|
|
18477
|
+
"kind": "expression",
|
|
18478
|
+
"type": "string"
|
|
18479
|
+
}
|
|
18480
|
+
},
|
|
18481
|
+
{
|
|
18482
|
+
"name": "color",
|
|
18483
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
|
|
18484
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18485
|
+
"value": {
|
|
18486
|
+
"kind": "expression",
|
|
18487
|
+
"type": "string"
|
|
18488
|
+
}
|
|
18489
|
+
},
|
|
18490
|
+
{
|
|
18491
|
+
"name": "icon",
|
|
18492
|
+
"description": "Apply a specific icon using the [v-icon](/components/icons/) component.",
|
|
18493
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18494
|
+
"value": {
|
|
18495
|
+
"kind": "expression",
|
|
18496
|
+
"type": "any"
|
|
18497
|
+
}
|
|
18498
|
+
},
|
|
18499
|
+
{
|
|
18500
|
+
"name": "image",
|
|
18501
|
+
"description": "Apply a specific image using [v-img](/components/images/).",
|
|
18502
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18503
|
+
"value": {
|
|
18504
|
+
"kind": "expression",
|
|
18505
|
+
"type": "string"
|
|
18506
|
+
}
|
|
18507
|
+
},
|
|
18508
|
+
{
|
|
18509
|
+
"name": "justify",
|
|
18510
|
+
"description": "Control the justification of the text.",
|
|
18511
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18512
|
+
"default": "'center'",
|
|
18513
|
+
"value": {
|
|
18514
|
+
"kind": "expression",
|
|
18515
|
+
"type": "'start' | 'center' | 'end'"
|
|
18516
|
+
}
|
|
18517
|
+
},
|
|
18518
|
+
{
|
|
18519
|
+
"name": "textWidth",
|
|
18520
|
+
"description": "Sets the width of the text container.",
|
|
18521
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18522
|
+
"default": "500",
|
|
18523
|
+
"value": {
|
|
18524
|
+
"kind": "expression",
|
|
18525
|
+
"type": "string | number"
|
|
18526
|
+
}
|
|
18527
|
+
},
|
|
18528
|
+
{
|
|
18529
|
+
"name": "href",
|
|
18530
|
+
"description": "The URL the action button links to.",
|
|
18531
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18532
|
+
"value": {
|
|
18533
|
+
"kind": "expression",
|
|
18534
|
+
"type": "string"
|
|
18535
|
+
}
|
|
18536
|
+
},
|
|
18537
|
+
{
|
|
18538
|
+
"name": "to",
|
|
18539
|
+
"description": "The URL the action button links to.",
|
|
18540
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18541
|
+
"value": {
|
|
18542
|
+
"kind": "expression",
|
|
18543
|
+
"type": "string"
|
|
18544
|
+
}
|
|
18545
|
+
},
|
|
18546
|
+
{
|
|
18547
|
+
"name": "height",
|
|
18548
|
+
"description": "Sets the height for the component.",
|
|
18549
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18550
|
+
"value": {
|
|
18551
|
+
"kind": "expression",
|
|
18552
|
+
"type": "string | number"
|
|
18553
|
+
}
|
|
18554
|
+
},
|
|
18555
|
+
{
|
|
18556
|
+
"name": "maxHeight",
|
|
18557
|
+
"description": "Sets the maximum height for the component.",
|
|
18558
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18559
|
+
"value": {
|
|
18560
|
+
"kind": "expression",
|
|
18561
|
+
"type": "string | number"
|
|
18562
|
+
}
|
|
18563
|
+
},
|
|
18564
|
+
{
|
|
18565
|
+
"name": "maxWidth",
|
|
18566
|
+
"description": "Sets the maximum width for the component.",
|
|
18567
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18568
|
+
"value": {
|
|
18569
|
+
"kind": "expression",
|
|
18570
|
+
"type": "string | number"
|
|
18571
|
+
}
|
|
18572
|
+
},
|
|
18573
|
+
{
|
|
18574
|
+
"name": "minHeight",
|
|
18575
|
+
"description": "Sets the minimum height for the component.",
|
|
18576
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18577
|
+
"value": {
|
|
18578
|
+
"kind": "expression",
|
|
18579
|
+
"type": "string | number"
|
|
18580
|
+
}
|
|
18581
|
+
},
|
|
18582
|
+
{
|
|
18583
|
+
"name": "minWidth",
|
|
18584
|
+
"description": "Sets the minimum width for the component.",
|
|
18585
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18586
|
+
"value": {
|
|
18587
|
+
"kind": "expression",
|
|
18588
|
+
"type": "string | number"
|
|
18589
|
+
}
|
|
18590
|
+
},
|
|
18591
|
+
{
|
|
18592
|
+
"name": "width",
|
|
18593
|
+
"description": "Sets the width for the component.",
|
|
18594
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18595
|
+
"value": {
|
|
18596
|
+
"kind": "expression",
|
|
18597
|
+
"type": "string | number"
|
|
18598
|
+
}
|
|
18599
|
+
},
|
|
18600
|
+
{
|
|
18601
|
+
"name": "size",
|
|
18602
|
+
"description": "Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: **x-small**, **small**, **default**, **large**, and **x-large**.",
|
|
18603
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18604
|
+
"value": {
|
|
18605
|
+
"kind": "expression",
|
|
18606
|
+
"type": "string | number"
|
|
18607
|
+
}
|
|
18608
|
+
},
|
|
18609
|
+
{
|
|
18610
|
+
"name": "theme",
|
|
18611
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
18612
|
+
"doc-url": "https://vuetifyjs.com/api/VEmptyState#props",
|
|
18613
|
+
"value": {
|
|
18614
|
+
"kind": "expression",
|
|
18615
|
+
"type": "string"
|
|
18616
|
+
}
|
|
18617
|
+
}
|
|
18618
|
+
],
|
|
18619
|
+
"events": [
|
|
18620
|
+
{
|
|
18621
|
+
"name": "click:action",
|
|
18622
|
+
"description": "Event emitted when the action button is clicked.",
|
|
18623
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state#events",
|
|
18624
|
+
"arguments": [
|
|
18625
|
+
{
|
|
18626
|
+
"name": "argument",
|
|
18627
|
+
"type": "[Event]\n"
|
|
18628
|
+
}
|
|
18629
|
+
]
|
|
18630
|
+
}
|
|
18631
|
+
],
|
|
18632
|
+
"slots": [
|
|
18633
|
+
{
|
|
18634
|
+
"name": "actions",
|
|
18635
|
+
"description": "Slot for the action button.",
|
|
18636
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state#slots",
|
|
18637
|
+
"vue-properties": [
|
|
18638
|
+
{
|
|
18639
|
+
"name": "props",
|
|
18640
|
+
"type": "{ onClick: (e: Event) => void }"
|
|
18641
|
+
}
|
|
18642
|
+
]
|
|
18643
|
+
},
|
|
18644
|
+
{
|
|
18645
|
+
"name": "default",
|
|
18646
|
+
"description": "The default Vue slot.",
|
|
18647
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
|
|
18648
|
+
},
|
|
18649
|
+
{
|
|
18650
|
+
"name": "headline",
|
|
18651
|
+
"description": "Slot for the component's headline.",
|
|
18652
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
|
|
18653
|
+
},
|
|
18654
|
+
{
|
|
18655
|
+
"name": "title",
|
|
18656
|
+
"description": "Slot for the component's title content.",
|
|
18657
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
|
|
18658
|
+
},
|
|
18659
|
+
{
|
|
18660
|
+
"name": "media",
|
|
18661
|
+
"description": "Slot for the component's media.",
|
|
18662
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
|
|
18663
|
+
},
|
|
18664
|
+
{
|
|
18665
|
+
"name": "text",
|
|
18666
|
+
"description": "Slot for the component's text content.",
|
|
18667
|
+
"doc-url": "https://vuetifyjs.com/api/v-empty-state#slots"
|
|
18668
|
+
}
|
|
18669
|
+
],
|
|
18670
|
+
"vue-model": {
|
|
18671
|
+
"prop": "modelValue",
|
|
18672
|
+
"event": "update:modelValue"
|
|
18673
|
+
}
|
|
18674
|
+
},
|
|
18166
18675
|
{
|
|
18167
18676
|
"name": "VExpandTransition",
|
|
18168
18677
|
"source": {
|
|
@@ -18343,7 +18852,7 @@
|
|
|
18343
18852
|
},
|
|
18344
18853
|
{
|
|
18345
18854
|
"name": "tile",
|
|
18346
|
-
"description": "
|
|
18855
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
18347
18856
|
"doc-url": "https://vuetifyjs.com/api/VExpansionPanel#props",
|
|
18348
18857
|
"default": "false",
|
|
18349
18858
|
"value": {
|
|
@@ -18400,6 +18909,16 @@
|
|
|
18400
18909
|
"type": "boolean"
|
|
18401
18910
|
}
|
|
18402
18911
|
},
|
|
18912
|
+
{
|
|
18913
|
+
"name": "focusable",
|
|
18914
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
|
|
18915
|
+
"doc-url": "https://vuetifyjs.com/api/VExpansionPanel#props",
|
|
18916
|
+
"default": "false",
|
|
18917
|
+
"value": {
|
|
18918
|
+
"kind": "expression",
|
|
18919
|
+
"type": "boolean"
|
|
18920
|
+
}
|
|
18921
|
+
},
|
|
18403
18922
|
{
|
|
18404
18923
|
"name": "static",
|
|
18405
18924
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
|
|
@@ -18547,6 +19066,16 @@
|
|
|
18547
19066
|
"type": "boolean"
|
|
18548
19067
|
}
|
|
18549
19068
|
},
|
|
19069
|
+
{
|
|
19070
|
+
"name": "focusable",
|
|
19071
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
|
|
19072
|
+
"doc-url": "https://vuetifyjs.com/api/VExpansionPanelTitle#props",
|
|
19073
|
+
"default": "false",
|
|
19074
|
+
"value": {
|
|
19075
|
+
"kind": "expression",
|
|
19076
|
+
"type": "boolean"
|
|
19077
|
+
}
|
|
19078
|
+
},
|
|
18550
19079
|
{
|
|
18551
19080
|
"name": "static",
|
|
18552
19081
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanelTitle.json))",
|
|
@@ -18668,6 +19197,16 @@
|
|
|
18668
19197
|
"type": "string"
|
|
18669
19198
|
}
|
|
18670
19199
|
},
|
|
19200
|
+
{
|
|
19201
|
+
"name": "focusable",
|
|
19202
|
+
"description": "Makes the expansion-panel headers focusable.",
|
|
19203
|
+
"doc-url": "https://vuetifyjs.com/api/VExpansionPanels#props",
|
|
19204
|
+
"default": "false",
|
|
19205
|
+
"value": {
|
|
19206
|
+
"kind": "expression",
|
|
19207
|
+
"type": "boolean"
|
|
19208
|
+
}
|
|
19209
|
+
},
|
|
18671
19210
|
{
|
|
18672
19211
|
"name": "static",
|
|
18673
19212
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VExpansionPanels.json))",
|
|
@@ -18810,6 +19349,481 @@
|
|
|
18810
19349
|
"event": "update:modelValue"
|
|
18811
19350
|
}
|
|
18812
19351
|
},
|
|
19352
|
+
{
|
|
19353
|
+
"name": "VFab",
|
|
19354
|
+
"source": {
|
|
19355
|
+
"module": "./src/components/index.ts",
|
|
19356
|
+
"symbol": "VFab"
|
|
19357
|
+
},
|
|
19358
|
+
"description": "",
|
|
19359
|
+
"doc-url": "https://vuetifyjs.com/api/v-fab",
|
|
19360
|
+
"attributes": [
|
|
19361
|
+
{
|
|
19362
|
+
"name": "symbol",
|
|
19363
|
+
"description": "The [Symbol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Symbol) used to hook into group functionality for components like [v-btn-toggle](/components/btn-toggle) and [v-bottom-navigation](/components/bottom-navigations/).",
|
|
19364
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19365
|
+
"value": {
|
|
19366
|
+
"kind": "expression",
|
|
19367
|
+
"type": "any"
|
|
19368
|
+
}
|
|
19369
|
+
},
|
|
19370
|
+
{
|
|
19371
|
+
"name": "flat",
|
|
19372
|
+
"description": "Removes the button box shadow. This is different than using the 'flat' variant.",
|
|
19373
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19374
|
+
"default": "false",
|
|
19375
|
+
"value": {
|
|
19376
|
+
"kind": "expression",
|
|
19377
|
+
"type": "boolean"
|
|
19378
|
+
}
|
|
19379
|
+
},
|
|
19380
|
+
{
|
|
19381
|
+
"name": "app",
|
|
19382
|
+
"description": "If true, attaches to the closest layout and positions according to the value of **location**.",
|
|
19383
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19384
|
+
"default": "false",
|
|
19385
|
+
"value": {
|
|
19386
|
+
"kind": "expression",
|
|
19387
|
+
"type": "boolean"
|
|
19388
|
+
}
|
|
19389
|
+
},
|
|
19390
|
+
{
|
|
19391
|
+
"name": "appear",
|
|
19392
|
+
"description": "Used to control the animation of the FAB.",
|
|
19393
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19394
|
+
"default": "false",
|
|
19395
|
+
"value": {
|
|
19396
|
+
"kind": "expression",
|
|
19397
|
+
"type": "boolean"
|
|
19398
|
+
}
|
|
19399
|
+
},
|
|
19400
|
+
{
|
|
19401
|
+
"name": "extended",
|
|
19402
|
+
"description": "An alternate style for the FAB that expects text.",
|
|
19403
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19404
|
+
"default": "false",
|
|
19405
|
+
"value": {
|
|
19406
|
+
"kind": "expression",
|
|
19407
|
+
"type": "boolean"
|
|
19408
|
+
}
|
|
19409
|
+
},
|
|
19410
|
+
{
|
|
19411
|
+
"name": "location",
|
|
19412
|
+
"description": "The location of the fab relative to the layout. Only works when using **app**.",
|
|
19413
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19414
|
+
"default": "'bottom end'",
|
|
19415
|
+
"value": {
|
|
19416
|
+
"kind": "expression",
|
|
19417
|
+
"type": "'start' | 'end' | 'left' | 'right' | 'top' | 'bottom'"
|
|
19418
|
+
}
|
|
19419
|
+
},
|
|
19420
|
+
{
|
|
19421
|
+
"name": "offset",
|
|
19422
|
+
"description": "Translates the Fab up or down, depending on if location is set to **top** or **bottom**.",
|
|
19423
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19424
|
+
"default": "false",
|
|
19425
|
+
"value": {
|
|
19426
|
+
"kind": "expression",
|
|
19427
|
+
"type": "boolean"
|
|
19428
|
+
}
|
|
19429
|
+
},
|
|
19430
|
+
{
|
|
19431
|
+
"name": "modelValue",
|
|
19432
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
|
|
19433
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19434
|
+
"default": "true",
|
|
19435
|
+
"value": {
|
|
19436
|
+
"kind": "expression",
|
|
19437
|
+
"type": "boolean"
|
|
19438
|
+
}
|
|
19439
|
+
},
|
|
19440
|
+
{
|
|
19441
|
+
"name": "active",
|
|
19442
|
+
"description": "Controls the **active** state of the item. This is typically used to highlight the component.",
|
|
19443
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19444
|
+
"default": "true",
|
|
19445
|
+
"value": {
|
|
19446
|
+
"kind": "expression",
|
|
19447
|
+
"type": "boolean"
|
|
19448
|
+
}
|
|
19449
|
+
},
|
|
19450
|
+
{
|
|
19451
|
+
"name": "prependIcon",
|
|
19452
|
+
"description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content.",
|
|
19453
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19454
|
+
"value": {
|
|
19455
|
+
"kind": "expression",
|
|
19456
|
+
"type": "any"
|
|
19457
|
+
}
|
|
19458
|
+
},
|
|
19459
|
+
{
|
|
19460
|
+
"name": "appendIcon",
|
|
19461
|
+
"description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot.",
|
|
19462
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19463
|
+
"value": {
|
|
19464
|
+
"kind": "expression",
|
|
19465
|
+
"type": "any"
|
|
19466
|
+
}
|
|
19467
|
+
},
|
|
19468
|
+
{
|
|
19469
|
+
"name": "block",
|
|
19470
|
+
"description": "Expands the button to 100% of available space.",
|
|
19471
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19472
|
+
"default": "false",
|
|
19473
|
+
"value": {
|
|
19474
|
+
"kind": "expression",
|
|
19475
|
+
"type": "boolean"
|
|
19476
|
+
}
|
|
19477
|
+
},
|
|
19478
|
+
{
|
|
19479
|
+
"name": "slim",
|
|
19480
|
+
"description": "Reduces padding to 0 8px.",
|
|
19481
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19482
|
+
"default": "false",
|
|
19483
|
+
"value": {
|
|
19484
|
+
"kind": "expression",
|
|
19485
|
+
"type": "boolean"
|
|
19486
|
+
}
|
|
19487
|
+
},
|
|
19488
|
+
{
|
|
19489
|
+
"name": "stacked",
|
|
19490
|
+
"description": "Displays the button as a flex-column.",
|
|
19491
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19492
|
+
"default": "false",
|
|
19493
|
+
"value": {
|
|
19494
|
+
"kind": "expression",
|
|
19495
|
+
"type": "boolean"
|
|
19496
|
+
}
|
|
19497
|
+
},
|
|
19498
|
+
{
|
|
19499
|
+
"name": "ripple",
|
|
19500
|
+
"description": "Applies the [v-ripple](/directives/ripple) directive.",
|
|
19501
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19502
|
+
"default": "true",
|
|
19503
|
+
"value": {
|
|
19504
|
+
"kind": "expression",
|
|
19505
|
+
"type": "boolean | { class: string }"
|
|
19506
|
+
}
|
|
19507
|
+
},
|
|
19508
|
+
{
|
|
19509
|
+
"name": "value",
|
|
19510
|
+
"description": "The value used when the component is selected in a group. If not provided, a unique ID will be used.",
|
|
19511
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19512
|
+
"value": {
|
|
19513
|
+
"kind": "expression",
|
|
19514
|
+
"type": "any"
|
|
19515
|
+
}
|
|
19516
|
+
},
|
|
19517
|
+
{
|
|
19518
|
+
"name": "text",
|
|
19519
|
+
"description": "Specify content text for the component.",
|
|
19520
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19521
|
+
"value": {
|
|
19522
|
+
"kind": "expression",
|
|
19523
|
+
"type": "string"
|
|
19524
|
+
}
|
|
19525
|
+
},
|
|
19526
|
+
{
|
|
19527
|
+
"name": "border",
|
|
19528
|
+
"description": "Applies border styles to component.",
|
|
19529
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19530
|
+
"default": "false",
|
|
19531
|
+
"value": {
|
|
19532
|
+
"kind": "expression",
|
|
19533
|
+
"type": "string | number | boolean"
|
|
19534
|
+
}
|
|
19535
|
+
},
|
|
19536
|
+
{
|
|
19537
|
+
"name": "density",
|
|
19538
|
+
"description": "Adjusts the vertical height used by the component.",
|
|
19539
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19540
|
+
"default": "'default'",
|
|
19541
|
+
"value": {
|
|
19542
|
+
"kind": "expression",
|
|
19543
|
+
"type": "'default' | 'comfortable' | 'compact'"
|
|
19544
|
+
}
|
|
19545
|
+
},
|
|
19546
|
+
{
|
|
19547
|
+
"name": "height",
|
|
19548
|
+
"description": "Sets the height for the component.",
|
|
19549
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19550
|
+
"value": {
|
|
19551
|
+
"kind": "expression",
|
|
19552
|
+
"type": "string | number"
|
|
19553
|
+
}
|
|
19554
|
+
},
|
|
19555
|
+
{
|
|
19556
|
+
"name": "maxHeight",
|
|
19557
|
+
"description": "Sets the maximum height for the component.",
|
|
19558
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19559
|
+
"value": {
|
|
19560
|
+
"kind": "expression",
|
|
19561
|
+
"type": "string | number"
|
|
19562
|
+
}
|
|
19563
|
+
},
|
|
19564
|
+
{
|
|
19565
|
+
"name": "maxWidth",
|
|
19566
|
+
"description": "Sets the maximum width for the component.",
|
|
19567
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19568
|
+
"value": {
|
|
19569
|
+
"kind": "expression",
|
|
19570
|
+
"type": "string | number"
|
|
19571
|
+
}
|
|
19572
|
+
},
|
|
19573
|
+
{
|
|
19574
|
+
"name": "minHeight",
|
|
19575
|
+
"description": "Sets the minimum height for the component.",
|
|
19576
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19577
|
+
"value": {
|
|
19578
|
+
"kind": "expression",
|
|
19579
|
+
"type": "string | number"
|
|
19580
|
+
}
|
|
19581
|
+
},
|
|
19582
|
+
{
|
|
19583
|
+
"name": "minWidth",
|
|
19584
|
+
"description": "Sets the minimum width for the component.",
|
|
19585
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19586
|
+
"value": {
|
|
19587
|
+
"kind": "expression",
|
|
19588
|
+
"type": "string | number"
|
|
19589
|
+
}
|
|
19590
|
+
},
|
|
19591
|
+
{
|
|
19592
|
+
"name": "width",
|
|
19593
|
+
"description": "Sets the width for the component.",
|
|
19594
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19595
|
+
"value": {
|
|
19596
|
+
"kind": "expression",
|
|
19597
|
+
"type": "string | number"
|
|
19598
|
+
}
|
|
19599
|
+
},
|
|
19600
|
+
{
|
|
19601
|
+
"name": "elevation",
|
|
19602
|
+
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation).",
|
|
19603
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19604
|
+
"value": {
|
|
19605
|
+
"kind": "expression",
|
|
19606
|
+
"type": "string | number"
|
|
19607
|
+
}
|
|
19608
|
+
},
|
|
19609
|
+
{
|
|
19610
|
+
"name": "disabled",
|
|
19611
|
+
"description": "Removes the ability to click or target the component.",
|
|
19612
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19613
|
+
"default": "false",
|
|
19614
|
+
"value": {
|
|
19615
|
+
"kind": "expression",
|
|
19616
|
+
"type": "boolean"
|
|
19617
|
+
}
|
|
19618
|
+
},
|
|
19619
|
+
{
|
|
19620
|
+
"name": "selectedClass",
|
|
19621
|
+
"description": "Configure the active CSS class applied when an item is selected.",
|
|
19622
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19623
|
+
"value": {
|
|
19624
|
+
"kind": "expression",
|
|
19625
|
+
"type": "string"
|
|
19626
|
+
}
|
|
19627
|
+
},
|
|
19628
|
+
{
|
|
19629
|
+
"name": "loading",
|
|
19630
|
+
"description": "Displays linear progress bar. Can either be a String which specifies which color is applied to the progress bar (any material color or theme color - **primary**, **secondary**, **success**, **info**, **warning**, **error**) or a Boolean which uses the component **color** (set by color prop - if it's supported by the component) or the primary color.",
|
|
19631
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19632
|
+
"default": "false",
|
|
19633
|
+
"value": {
|
|
19634
|
+
"kind": "expression",
|
|
19635
|
+
"type": "string | boolean"
|
|
19636
|
+
}
|
|
19637
|
+
},
|
|
19638
|
+
{
|
|
19639
|
+
"name": "position",
|
|
19640
|
+
"description": "Sets the position for the component.",
|
|
19641
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19642
|
+
"value": {
|
|
19643
|
+
"kind": "expression",
|
|
19644
|
+
"type": "'static' | 'relative' | 'fixed' | 'absolute' | 'sticky'"
|
|
19645
|
+
}
|
|
19646
|
+
},
|
|
19647
|
+
{
|
|
19648
|
+
"name": "absolute",
|
|
19649
|
+
"description": "Applies **position: absolute** to the component.",
|
|
19650
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19651
|
+
"default": "false",
|
|
19652
|
+
"value": {
|
|
19653
|
+
"kind": "expression",
|
|
19654
|
+
"type": "boolean"
|
|
19655
|
+
}
|
|
19656
|
+
},
|
|
19657
|
+
{
|
|
19658
|
+
"name": "rounded",
|
|
19659
|
+
"description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius).",
|
|
19660
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19661
|
+
"value": {
|
|
19662
|
+
"kind": "expression",
|
|
19663
|
+
"type": "string | number | boolean"
|
|
19664
|
+
}
|
|
19665
|
+
},
|
|
19666
|
+
{
|
|
19667
|
+
"name": "tile",
|
|
19668
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
19669
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19670
|
+
"default": "false",
|
|
19671
|
+
"value": {
|
|
19672
|
+
"kind": "expression",
|
|
19673
|
+
"type": "boolean"
|
|
19674
|
+
}
|
|
19675
|
+
},
|
|
19676
|
+
{
|
|
19677
|
+
"name": "href",
|
|
19678
|
+
"description": "Designates the component as anchor and applies the **href** attribute.",
|
|
19679
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19680
|
+
"value": {
|
|
19681
|
+
"kind": "expression",
|
|
19682
|
+
"type": "string"
|
|
19683
|
+
}
|
|
19684
|
+
},
|
|
19685
|
+
{
|
|
19686
|
+
"name": "replace",
|
|
19687
|
+
"description": "Setting **replace** prop will call `router.replace()` instead of `router.push()` when clicked, so the navigation will not leave a history record. You can find more information about the [replace](https://router.vuejs.org/api/#replace) prop on the vue-router documentation.",
|
|
19688
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19689
|
+
"default": "false",
|
|
19690
|
+
"value": {
|
|
19691
|
+
"kind": "expression",
|
|
19692
|
+
"type": "boolean"
|
|
19693
|
+
}
|
|
19694
|
+
},
|
|
19695
|
+
{
|
|
19696
|
+
"name": "exact",
|
|
19697
|
+
"description": "Exactly match the link. Without this, '/' will match every route. You can find more information about the [**exact** prop](https://router.vuejs.org/api/#exact) on the vue-router documentation.",
|
|
19698
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19699
|
+
"default": "false",
|
|
19700
|
+
"value": {
|
|
19701
|
+
"kind": "expression",
|
|
19702
|
+
"type": "boolean"
|
|
19703
|
+
}
|
|
19704
|
+
},
|
|
19705
|
+
{
|
|
19706
|
+
"name": "to",
|
|
19707
|
+
"description": "Denotes the target route of the link. You can find more information about the [**to** prop](https://router.vuejs.org/api/#to) on the vue-router documentation.",
|
|
19708
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19709
|
+
"value": {
|
|
19710
|
+
"kind": "expression",
|
|
19711
|
+
"type": "RouteLocationRaw"
|
|
19712
|
+
}
|
|
19713
|
+
},
|
|
19714
|
+
{
|
|
19715
|
+
"name": "size",
|
|
19716
|
+
"description": "Sets the height and width of the component. Default unit is px. Can also use the following predefined sizes: **x-small**, **small**, **default**, **large**, and **x-large**.",
|
|
19717
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19718
|
+
"default": "'default'",
|
|
19719
|
+
"value": {
|
|
19720
|
+
"kind": "expression",
|
|
19721
|
+
"type": "string | number"
|
|
19722
|
+
}
|
|
19723
|
+
},
|
|
19724
|
+
{
|
|
19725
|
+
"name": "tag",
|
|
19726
|
+
"description": "Specify a custom tag used on the root element.",
|
|
19727
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19728
|
+
"default": "'button'",
|
|
19729
|
+
"value": {
|
|
19730
|
+
"kind": "expression",
|
|
19731
|
+
"type": "string"
|
|
19732
|
+
}
|
|
19733
|
+
},
|
|
19734
|
+
{
|
|
19735
|
+
"name": "theme",
|
|
19736
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
19737
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19738
|
+
"value": {
|
|
19739
|
+
"kind": "expression",
|
|
19740
|
+
"type": "string"
|
|
19741
|
+
}
|
|
19742
|
+
},
|
|
19743
|
+
{
|
|
19744
|
+
"name": "color",
|
|
19745
|
+
"description": "Applies specified color to the control - supports utility colors (for example `success` or `purple`) or css color (for example `success` or `purple`) or css color (`#033` or `rgba(255, 0, 0, 0.5)`). Find a list of built-in classes on the [colors page](/styles/colors#material-colors).",
|
|
19746
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19747
|
+
"value": {
|
|
19748
|
+
"kind": "expression",
|
|
19749
|
+
"type": "string"
|
|
19750
|
+
}
|
|
19751
|
+
},
|
|
19752
|
+
{
|
|
19753
|
+
"name": "variant",
|
|
19754
|
+
"description": "Applies a distinct style to the component.",
|
|
19755
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19756
|
+
"default": "'elevated'",
|
|
19757
|
+
"value": {
|
|
19758
|
+
"kind": "expression",
|
|
19759
|
+
"type": "'flat' | 'text' | 'elevated' | 'tonal' | 'outlined' | 'plain'"
|
|
19760
|
+
}
|
|
19761
|
+
},
|
|
19762
|
+
{
|
|
19763
|
+
"name": "icon",
|
|
19764
|
+
"description": "Apply a specific icon using the [v-icon](/components/icons/) component. The button will become _round_.",
|
|
19765
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19766
|
+
"default": "false",
|
|
19767
|
+
"value": {
|
|
19768
|
+
"kind": "expression",
|
|
19769
|
+
"type": "any"
|
|
19770
|
+
}
|
|
19771
|
+
},
|
|
19772
|
+
{
|
|
19773
|
+
"name": "name",
|
|
19774
|
+
"description": "Assign a specific name for layout registration.",
|
|
19775
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19776
|
+
"value": {
|
|
19777
|
+
"kind": "expression",
|
|
19778
|
+
"type": "string"
|
|
19779
|
+
}
|
|
19780
|
+
},
|
|
19781
|
+
{
|
|
19782
|
+
"name": "order",
|
|
19783
|
+
"description": "Adjust the order of the component in relation to its registration order.",
|
|
19784
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19785
|
+
"default": "0",
|
|
19786
|
+
"value": {
|
|
19787
|
+
"kind": "expression",
|
|
19788
|
+
"type": "string | number"
|
|
19789
|
+
}
|
|
19790
|
+
},
|
|
19791
|
+
{
|
|
19792
|
+
"name": "transition",
|
|
19793
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
|
|
19794
|
+
"doc-url": "https://vuetifyjs.com/api/VFab#props",
|
|
19795
|
+
"default": "'fab-transition'",
|
|
19796
|
+
"value": {
|
|
19797
|
+
"kind": "expression",
|
|
19798
|
+
"type": "string | boolean | (TransitionProps & { component: Component })"
|
|
19799
|
+
}
|
|
19800
|
+
}
|
|
19801
|
+
],
|
|
19802
|
+
"events": [
|
|
19803
|
+
{
|
|
19804
|
+
"name": "update:modelValue",
|
|
19805
|
+
"description": "Event that is emitted when the component's model changes.",
|
|
19806
|
+
"doc-url": "https://vuetifyjs.com/api/v-fab#events",
|
|
19807
|
+
"arguments": [
|
|
19808
|
+
{
|
|
19809
|
+
"name": "argument",
|
|
19810
|
+
"type": "[boolean]\n"
|
|
19811
|
+
}
|
|
19812
|
+
]
|
|
19813
|
+
}
|
|
19814
|
+
],
|
|
19815
|
+
"slots": [
|
|
19816
|
+
{
|
|
19817
|
+
"name": "default",
|
|
19818
|
+
"description": "The default Vue slot.",
|
|
19819
|
+
"doc-url": "https://vuetifyjs.com/api/v-fab#slots"
|
|
19820
|
+
}
|
|
19821
|
+
],
|
|
19822
|
+
"vue-model": {
|
|
19823
|
+
"prop": "modelValue",
|
|
19824
|
+
"event": "update:modelValue"
|
|
19825
|
+
}
|
|
19826
|
+
},
|
|
18813
19827
|
{
|
|
18814
19828
|
"name": "VFabTransition",
|
|
18815
19829
|
"source": {
|
|
@@ -19196,7 +20210,7 @@
|
|
|
19196
20210
|
},
|
|
19197
20211
|
{
|
|
19198
20212
|
"name": "tile",
|
|
19199
|
-
"description": "
|
|
20213
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
19200
20214
|
"doc-url": "https://vuetifyjs.com/api/VField#props",
|
|
19201
20215
|
"default": "false",
|
|
19202
20216
|
"value": {
|
|
@@ -19877,7 +20891,7 @@
|
|
|
19877
20891
|
},
|
|
19878
20892
|
{
|
|
19879
20893
|
"name": "tile",
|
|
19880
|
-
"description": "
|
|
20894
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
19881
20895
|
"doc-url": "https://vuetifyjs.com/api/VFileInput#props",
|
|
19882
20896
|
"default": "false",
|
|
19883
20897
|
"value": {
|
|
@@ -20372,7 +21386,7 @@
|
|
|
20372
21386
|
},
|
|
20373
21387
|
{
|
|
20374
21388
|
"name": "tile",
|
|
20375
|
-
"description": "
|
|
21389
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
20376
21390
|
"doc-url": "https://vuetifyjs.com/api/VFooter#props",
|
|
20377
21391
|
"default": "false",
|
|
20378
21392
|
"value": {
|
|
@@ -20933,7 +21947,7 @@
|
|
|
20933
21947
|
},
|
|
20934
21948
|
{
|
|
20935
21949
|
"name": "tile",
|
|
20936
|
-
"description": "
|
|
21950
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
20937
21951
|
"doc-url": "https://vuetifyjs.com/api/VImg#props",
|
|
20938
21952
|
"default": "false",
|
|
20939
21953
|
"value": {
|
|
@@ -22679,7 +23693,7 @@
|
|
|
22679
23693
|
},
|
|
22680
23694
|
{
|
|
22681
23695
|
"name": "tile",
|
|
22682
|
-
"description": "
|
|
23696
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
22683
23697
|
"doc-url": "https://vuetifyjs.com/api/VList#props",
|
|
22684
23698
|
"default": "false",
|
|
22685
23699
|
"value": {
|
|
@@ -23283,7 +24297,7 @@
|
|
|
23283
24297
|
},
|
|
23284
24298
|
{
|
|
23285
24299
|
"name": "tile",
|
|
23286
|
-
"description": "
|
|
24300
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
23287
24301
|
"doc-url": "https://vuetifyjs.com/api/VListItem#props",
|
|
23288
24302
|
"default": "false",
|
|
23289
24303
|
"value": {
|
|
@@ -24547,7 +25561,7 @@
|
|
|
24547
25561
|
},
|
|
24548
25562
|
{
|
|
24549
25563
|
"name": "tile",
|
|
24550
|
-
"description": "
|
|
25564
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
24551
25565
|
"doc-url": "https://vuetifyjs.com/api/VNavigationDrawer#props",
|
|
24552
25566
|
"default": "false",
|
|
24553
25567
|
"value": {
|
|
@@ -25593,7 +26607,7 @@
|
|
|
25593
26607
|
},
|
|
25594
26608
|
{
|
|
25595
26609
|
"name": "tile",
|
|
25596
|
-
"description": "
|
|
26610
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
25597
26611
|
"doc-url": "https://vuetifyjs.com/api/VPagination#props",
|
|
25598
26612
|
"default": "false",
|
|
25599
26613
|
"value": {
|
|
@@ -26051,7 +27065,7 @@
|
|
|
26051
27065
|
},
|
|
26052
27066
|
{
|
|
26053
27067
|
"name": "tile",
|
|
26054
|
-
"description": "
|
|
27068
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
26055
27069
|
"doc-url": "https://vuetifyjs.com/api/VPicker#props",
|
|
26056
27070
|
"default": "false",
|
|
26057
27071
|
"value": {
|
|
@@ -26433,7 +27447,7 @@
|
|
|
26433
27447
|
},
|
|
26434
27448
|
{
|
|
26435
27449
|
"name": "tile",
|
|
26436
|
-
"description": "
|
|
27450
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
26437
27451
|
"doc-url": "https://vuetifyjs.com/api/VProgressLinear#props",
|
|
26438
27452
|
"default": "false",
|
|
26439
27453
|
"value": {
|
|
@@ -27730,7 +28744,7 @@
|
|
|
27730
28744
|
},
|
|
27731
28745
|
{
|
|
27732
28746
|
"name": "tile",
|
|
27733
|
-
"description": "
|
|
28747
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
27734
28748
|
"doc-url": "https://vuetifyjs.com/api/VRangeSlider#props",
|
|
27735
28749
|
"default": "false",
|
|
27736
28750
|
"value": {
|
|
@@ -29422,7 +30436,7 @@
|
|
|
29422
30436
|
},
|
|
29423
30437
|
{
|
|
29424
30438
|
"name": "tile",
|
|
29425
|
-
"description": "
|
|
30439
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
29426
30440
|
"doc-url": "https://vuetifyjs.com/api/VSelect#props",
|
|
29427
30441
|
"default": "false",
|
|
29428
30442
|
"value": {
|
|
@@ -30902,7 +31916,7 @@
|
|
|
30902
31916
|
},
|
|
30903
31917
|
{
|
|
30904
31918
|
"name": "tile",
|
|
30905
|
-
"description": "
|
|
31919
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
30906
31920
|
"doc-url": "https://vuetifyjs.com/api/VSheet#props",
|
|
30907
31921
|
"default": "false",
|
|
30908
31922
|
"value": {
|
|
@@ -31940,7 +32954,7 @@
|
|
|
31940
32954
|
},
|
|
31941
32955
|
{
|
|
31942
32956
|
"name": "tile",
|
|
31943
|
-
"description": "
|
|
32957
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
31944
32958
|
"doc-url": "https://vuetifyjs.com/api/VSlider#props",
|
|
31945
32959
|
"default": "false",
|
|
31946
32960
|
"value": {
|
|
@@ -32606,7 +33620,7 @@
|
|
|
32606
33620
|
},
|
|
32607
33621
|
{
|
|
32608
33622
|
"name": "tile",
|
|
32609
|
-
"description": "
|
|
33623
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
32610
33624
|
"doc-url": "https://vuetifyjs.com/api/VSnackbar#props",
|
|
32611
33625
|
"default": "false",
|
|
32612
33626
|
"value": {
|
|
@@ -33137,6 +34151,24 @@
|
|
|
33137
34151
|
"type": "(number | { value: number })[]"
|
|
33138
34152
|
}
|
|
33139
34153
|
},
|
|
34154
|
+
{
|
|
34155
|
+
"name": "min",
|
|
34156
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))",
|
|
34157
|
+
"doc-url": "https://vuetifyjs.com/api/VSparkline#props",
|
|
34158
|
+
"value": {
|
|
34159
|
+
"kind": "expression",
|
|
34160
|
+
"type": "string | number"
|
|
34161
|
+
}
|
|
34162
|
+
},
|
|
34163
|
+
{
|
|
34164
|
+
"name": "max",
|
|
34165
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))",
|
|
34166
|
+
"doc-url": "https://vuetifyjs.com/api/VSparkline#props",
|
|
34167
|
+
"value": {
|
|
34168
|
+
"kind": "expression",
|
|
34169
|
+
"type": "string | number"
|
|
34170
|
+
}
|
|
34171
|
+
},
|
|
33140
34172
|
{
|
|
33141
34173
|
"name": "padding",
|
|
33142
34174
|
"description": "Low `smooth` or high `line-width` values may result in cropping, increase padding to compensate.",
|
|
@@ -33493,7 +34525,7 @@
|
|
|
33493
34525
|
},
|
|
33494
34526
|
{
|
|
33495
34527
|
"name": "tile",
|
|
33496
|
-
"description": "
|
|
34528
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
33497
34529
|
"doc-url": "https://vuetifyjs.com/api/VStepper#props",
|
|
33498
34530
|
"default": "false",
|
|
33499
34531
|
"value": {
|
|
@@ -35244,7 +36276,7 @@
|
|
|
35244
36276
|
},
|
|
35245
36277
|
{
|
|
35246
36278
|
"name": "tile",
|
|
35247
|
-
"description": "
|
|
36279
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
35248
36280
|
"doc-url": "https://vuetifyjs.com/api/VSystemBar#props",
|
|
35249
36281
|
"default": "false",
|
|
35250
36282
|
"value": {
|
|
@@ -35523,7 +36555,7 @@
|
|
|
35523
36555
|
},
|
|
35524
36556
|
{
|
|
35525
36557
|
"name": "tile",
|
|
35526
|
-
"description": "
|
|
36558
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
35527
36559
|
"doc-url": "https://vuetifyjs.com/api/VTab#props",
|
|
35528
36560
|
"default": "false",
|
|
35529
36561
|
"value": {
|
|
@@ -36510,7 +37542,7 @@
|
|
|
36510
37542
|
},
|
|
36511
37543
|
{
|
|
36512
37544
|
"name": "tile",
|
|
36513
|
-
"description": "
|
|
37545
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
36514
37546
|
"doc-url": "https://vuetifyjs.com/api/VTextField#props",
|
|
36515
37547
|
"default": "false",
|
|
36516
37548
|
"value": {
|
|
@@ -37412,7 +38444,7 @@
|
|
|
37412
38444
|
},
|
|
37413
38445
|
{
|
|
37414
38446
|
"name": "tile",
|
|
37415
|
-
"description": "
|
|
38447
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
37416
38448
|
"doc-url": "https://vuetifyjs.com/api/VTextarea#props",
|
|
37417
38449
|
"default": "false",
|
|
37418
38450
|
"value": {
|
|
@@ -38147,7 +39179,7 @@
|
|
|
38147
39179
|
},
|
|
38148
39180
|
{
|
|
38149
39181
|
"name": "tile",
|
|
38150
|
-
"description": "
|
|
39182
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
38151
39183
|
"doc-url": "https://vuetifyjs.com/api/VTimelineItem#props",
|
|
38152
39184
|
"default": "false",
|
|
38153
39185
|
"value": {
|
|
@@ -38354,7 +39386,7 @@
|
|
|
38354
39386
|
},
|
|
38355
39387
|
{
|
|
38356
39388
|
"name": "tile",
|
|
38357
|
-
"description": "
|
|
39389
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
38358
39390
|
"doc-url": "https://vuetifyjs.com/api/VToolbar#props",
|
|
38359
39391
|
"default": "false",
|
|
38360
39392
|
"value": {
|