vuetify 3.5.7 → 3.5.9
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 +568 -8
- package/dist/json/importMap-labs.json +20 -4
- package/dist/json/importMap.json +156 -156
- package/dist/json/tags.json +160 -0
- package/dist/json/web-types.json +1695 -9
- package/dist/vuetify-labs.css +1849 -1820
- package/dist/vuetify-labs.d.ts +3601 -694
- package/dist/vuetify-labs.esm.js +891 -237
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +891 -237
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +911 -906
- package/dist/vuetify.d.ts +576 -72
- package/dist/vuetify.esm.js +273 -35
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +273 -35
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +541 -510
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.mjs +5 -3
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +1 -1
- package/lib/components/VAutocomplete/index.d.mts +138 -6
- package/lib/components/VColorPicker/VColorPickerPreview.css +1 -0
- package/lib/components/VColorPicker/VColorPickerPreview.sass +1 -0
- package/lib/components/VColorPicker/_variables.scss +1 -0
- package/lib/components/VCombobox/VCombobox.css +1 -1
- package/lib/components/VCombobox/VCombobox.mjs +28 -10
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +1 -1
- package/lib/components/VCombobox/index.d.mts +138 -6
- package/lib/components/VDatePicker/VDatePickerControls.mjs +1 -0
- package/lib/components/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VList/VList.mjs +8 -2
- package/lib/components/VList/VList.mjs.map +1 -1
- package/lib/components/VList/VListGroup.mjs +3 -1
- package/lib/components/VList/VListGroup.mjs.map +1 -1
- package/lib/components/VList/VListItem.mjs +17 -4
- package/lib/components/VList/VListItem.mjs.map +1 -1
- package/lib/components/VList/index.d.mts +108 -6
- package/lib/components/VSelect/VSelect.mjs +5 -3
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelect/index.d.mts +138 -6
- package/lib/components/VSwitch/VSwitch.css +9 -5
- package/lib/components/VSwitch/VSwitch.mjs +2 -0
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VSwitch/VSwitch.sass +10 -7
- package/lib/components/VSwitch/_variables.scss +2 -0
- package/lib/components/index.d.mts +522 -24
- package/lib/composables/date/adapters/vuetify.mjs +21 -3
- package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
- package/lib/composables/nested/activeStrategies.mjs +121 -0
- package/lib/composables/nested/activeStrategies.mjs.map +1 -0
- package/lib/composables/nested/nested.mjs +50 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/composables/nested/selectStrategies.mjs +4 -2
- package/lib/composables/nested/selectStrategies.mjs.map +1 -1
- package/lib/composables/transition.mjs +7 -5
- package/lib/composables/transition.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/iconsets/fa.mjs +2 -0
- package/lib/iconsets/fa.mjs.map +1 -1
- package/lib/iconsets/fa4.mjs +2 -0
- package/lib/iconsets/fa4.mjs.map +1 -1
- package/lib/iconsets/md.mjs +2 -0
- package/lib/iconsets/md.mjs.map +1 -1
- package/lib/iconsets/mdi-svg.mjs +2 -0
- package/lib/iconsets/mdi-svg.mjs.map +1 -1
- package/lib/iconsets/mdi.mjs +2 -0
- package/lib/iconsets/mdi.mjs.map +1 -1
- package/lib/index.d.mts +54 -48
- package/lib/labs/VCalendar/VCalendarInterval.css +1 -0
- package/lib/labs/VCalendar/VCalendarInterval.sass +1 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.css +6 -0
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs +5 -2
- package/lib/labs/VCalendar/VCalendarIntervalEvent.mjs.map +1 -1
- package/lib/labs/VCalendar/VCalendarIntervalEvent.sass +6 -0
- package/lib/labs/VFab/VFab.css +1 -1
- package/lib/labs/VFab/VFab.sass +1 -1
- package/lib/labs/VSparkline/VBarline.mjs +4 -3
- package/lib/labs/VSparkline/VBarline.mjs.map +1 -1
- package/lib/labs/VSparkline/VTrendline.mjs +9 -5
- package/lib/labs/VSparkline/VTrendline.mjs.map +1 -1
- package/lib/labs/VSparkline/index.d.mts +15 -0
- package/lib/labs/VSparkline/util/line.mjs +4 -0
- package/lib/labs/VSparkline/util/line.mjs.map +1 -1
- package/lib/labs/VSpeedDial/VSpeedDial.css +3 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs +56 -0
- package/lib/labs/VSpeedDial/VSpeedDial.mjs.map +1 -0
- package/lib/labs/VSpeedDial/VSpeedDial.sass +2 -0
- package/lib/labs/VSpeedDial/index.d.mts +649 -0
- package/lib/labs/VSpeedDial/index.mjs +2 -0
- package/lib/labs/VSpeedDial/index.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeview.mjs +154 -0
- package/lib/labs/VTreeview/VTreeview.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewChildren.mjs +98 -0
- package/lib/labs/VTreeview/VTreeviewChildren.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewGroup.mjs +48 -0
- package/lib/labs/VTreeview/VTreeviewGroup.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewItem.css +17 -0
- package/lib/labs/VTreeview/VTreeviewItem.mjs +86 -0
- package/lib/labs/VTreeview/VTreeviewItem.mjs.map +1 -0
- package/lib/labs/VTreeview/VTreeviewItem.sass +19 -0
- package/lib/labs/VTreeview/index.d.mts +1975 -0
- package/lib/labs/VTreeview/index.mjs +4 -0
- package/lib/labs/VTreeview/index.mjs.map +1 -0
- package/lib/labs/VTreeview/shared.mjs +4 -0
- package/lib/labs/VTreeview/shared.mjs.map +1 -0
- package/lib/labs/VTreeview/variables.scss +8 -0
- package/lib/labs/components.d.mts +3877 -1292
- package/lib/labs/components.mjs +4 -2
- 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.9",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -23380,7 +23380,7 @@
|
|
|
23380
23380
|
"attributes": [
|
|
23381
23381
|
{
|
|
23382
23382
|
"name": "baseColor",
|
|
23383
|
-
"description": "
|
|
23383
|
+
"description": "Sets the color of component when not focused.",
|
|
23384
23384
|
"doc-url": "https://vuetifyjs.com/api/VList#props",
|
|
23385
23385
|
"value": {
|
|
23386
23386
|
"kind": "expression",
|
|
@@ -23472,6 +23472,26 @@
|
|
|
23472
23472
|
"type": "boolean"
|
|
23473
23473
|
}
|
|
23474
23474
|
},
|
|
23475
|
+
{
|
|
23476
|
+
"name": "activatable",
|
|
23477
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/nested.json))",
|
|
23478
|
+
"doc-url": "https://vuetifyjs.com/api/VList#props",
|
|
23479
|
+
"default": "false",
|
|
23480
|
+
"value": {
|
|
23481
|
+
"kind": "expression",
|
|
23482
|
+
"type": "boolean"
|
|
23483
|
+
}
|
|
23484
|
+
},
|
|
23485
|
+
{
|
|
23486
|
+
"name": "selectable",
|
|
23487
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/nested.json))",
|
|
23488
|
+
"doc-url": "https://vuetifyjs.com/api/VList#props",
|
|
23489
|
+
"default": "false",
|
|
23490
|
+
"value": {
|
|
23491
|
+
"kind": "expression",
|
|
23492
|
+
"type": "boolean"
|
|
23493
|
+
}
|
|
23494
|
+
},
|
|
23475
23495
|
{
|
|
23476
23496
|
"name": "mandatory",
|
|
23477
23497
|
"description": "Forces at least one item to always be selected (if available).",
|
|
@@ -23482,6 +23502,15 @@
|
|
|
23482
23502
|
"type": "boolean"
|
|
23483
23503
|
}
|
|
23484
23504
|
},
|
|
23505
|
+
{
|
|
23506
|
+
"name": "activeStrategy",
|
|
23507
|
+
"description": "Affects how items with children behave when activated.\n- **leaf:** Only leaf nodes (items without children) can be activated.\n- **independent:** All nodes can be activated whether they have children or not.\n- **classic:** Activating a parent node will cause all children to be activated.",
|
|
23508
|
+
"doc-url": "https://vuetifyjs.com/api/VList#props",
|
|
23509
|
+
"value": {
|
|
23510
|
+
"kind": "expression",
|
|
23511
|
+
"type": "| 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L5-L12\" target=\"_blank\">SelectStrategyFn</a>"
|
|
23512
|
+
}
|
|
23513
|
+
},
|
|
23485
23514
|
{
|
|
23486
23515
|
"name": "selectStrategy",
|
|
23487
23516
|
"description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model.",
|
|
@@ -23511,6 +23540,15 @@
|
|
|
23511
23540
|
"type": "unknown[]"
|
|
23512
23541
|
}
|
|
23513
23542
|
},
|
|
23543
|
+
{
|
|
23544
|
+
"name": "activated",
|
|
23545
|
+
"description": "Array of ids of activated nodes.",
|
|
23546
|
+
"doc-url": "https://vuetifyjs.com/api/VList#props",
|
|
23547
|
+
"value": {
|
|
23548
|
+
"kind": "expression",
|
|
23549
|
+
"type": "unknown[]"
|
|
23550
|
+
}
|
|
23551
|
+
},
|
|
23514
23552
|
{
|
|
23515
23553
|
"name": "selected",
|
|
23516
23554
|
"description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`.",
|
|
@@ -23605,7 +23643,7 @@
|
|
|
23605
23643
|
},
|
|
23606
23644
|
{
|
|
23607
23645
|
"name": "itemType",
|
|
23608
|
-
"description": "
|
|
23646
|
+
"description": "Designates the key on the supplied items that is used for determining the nodes type.",
|
|
23609
23647
|
"doc-url": "https://vuetifyjs.com/api/VList#props",
|
|
23610
23648
|
"default": "'type'",
|
|
23611
23649
|
"value": {
|
|
@@ -23763,6 +23801,17 @@
|
|
|
23763
23801
|
}
|
|
23764
23802
|
]
|
|
23765
23803
|
},
|
|
23804
|
+
{
|
|
23805
|
+
"name": "update:activated",
|
|
23806
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VList.json))",
|
|
23807
|
+
"doc-url": "https://vuetifyjs.com/api/v-list#events",
|
|
23808
|
+
"arguments": [
|
|
23809
|
+
{
|
|
23810
|
+
"name": "argument",
|
|
23811
|
+
"type": "[unknown[]]\n"
|
|
23812
|
+
}
|
|
23813
|
+
]
|
|
23814
|
+
},
|
|
23766
23815
|
{
|
|
23767
23816
|
"name": "click:open",
|
|
23768
23817
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VList.json))",
|
|
@@ -23774,6 +23823,17 @@
|
|
|
23774
23823
|
}
|
|
23775
23824
|
]
|
|
23776
23825
|
},
|
|
23826
|
+
{
|
|
23827
|
+
"name": "click:activate",
|
|
23828
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VList.json))",
|
|
23829
|
+
"doc-url": "https://vuetifyjs.com/api/v-list#events",
|
|
23830
|
+
"arguments": [
|
|
23831
|
+
{
|
|
23832
|
+
"name": "argument",
|
|
23833
|
+
"type": "[{ id: unknown; value: boolean; path: unknown[] }]\n"
|
|
23834
|
+
}
|
|
23835
|
+
]
|
|
23836
|
+
},
|
|
23777
23837
|
{
|
|
23778
23838
|
"name": "click:select",
|
|
23779
23839
|
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VList.json))",
|
|
@@ -23882,7 +23942,7 @@
|
|
|
23882
23942
|
},
|
|
23883
23943
|
{
|
|
23884
23944
|
"name": "baseColor",
|
|
23885
|
-
"description": "
|
|
23945
|
+
"description": "Sets the color of component when not focused.",
|
|
23886
23946
|
"doc-url": "https://vuetifyjs.com/api/VListGroup#props",
|
|
23887
23947
|
"value": {
|
|
23888
23948
|
"kind": "expression",
|
|
@@ -23900,7 +23960,7 @@
|
|
|
23900
23960
|
},
|
|
23901
23961
|
{
|
|
23902
23962
|
"name": "collapseIcon",
|
|
23903
|
-
"description": "
|
|
23963
|
+
"description": "Icon to display when the list item is expanded.",
|
|
23904
23964
|
"doc-url": "https://vuetifyjs.com/api/VListGroup#props",
|
|
23905
23965
|
"default": "'$collapse'",
|
|
23906
23966
|
"value": {
|
|
@@ -23910,7 +23970,7 @@
|
|
|
23910
23970
|
},
|
|
23911
23971
|
{
|
|
23912
23972
|
"name": "expandIcon",
|
|
23913
|
-
"description": "
|
|
23973
|
+
"description": "Icon to display when the list item is collapsed.",
|
|
23914
23974
|
"doc-url": "https://vuetifyjs.com/api/VListGroup#props",
|
|
23915
23975
|
"default": "'$expand'",
|
|
23916
23976
|
"value": {
|
|
@@ -23948,7 +24008,7 @@
|
|
|
23948
24008
|
},
|
|
23949
24009
|
{
|
|
23950
24010
|
"name": "subgroup",
|
|
23951
|
-
"description": "
|
|
24011
|
+
"description": "Designate the component as nested list group.",
|
|
23952
24012
|
"doc-url": "https://vuetifyjs.com/api/VListGroup#props",
|
|
23953
24013
|
"default": "false",
|
|
23954
24014
|
"value": {
|
|
@@ -24120,7 +24180,7 @@
|
|
|
24120
24180
|
},
|
|
24121
24181
|
{
|
|
24122
24182
|
"name": "baseColor",
|
|
24123
|
-
"description": "
|
|
24183
|
+
"description": "Sets the color of component when not focused.",
|
|
24124
24184
|
"doc-url": "https://vuetifyjs.com/api/VListItem#props",
|
|
24125
24185
|
"value": {
|
|
24126
24186
|
"kind": "expression",
|
|
@@ -24878,7 +24938,7 @@
|
|
|
24878
24938
|
},
|
|
24879
24939
|
{
|
|
24880
24940
|
"name": "id",
|
|
24881
|
-
"description": "
|
|
24941
|
+
"description": "The unique identifier of the component.",
|
|
24882
24942
|
"doc-url": "https://vuetifyjs.com/api/VMenu#props",
|
|
24883
24943
|
"value": {
|
|
24884
24944
|
"kind": "expression",
|
|
@@ -34141,6 +34201,16 @@
|
|
|
34141
34201
|
"type": "string"
|
|
34142
34202
|
}
|
|
34143
34203
|
},
|
|
34204
|
+
{
|
|
34205
|
+
"name": "itemValue",
|
|
34206
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/Line.json))",
|
|
34207
|
+
"doc-url": "https://vuetifyjs.com/api/VSparkline#props",
|
|
34208
|
+
"default": "'value'",
|
|
34209
|
+
"value": {
|
|
34210
|
+
"kind": "expression",
|
|
34211
|
+
"type": "string"
|
|
34212
|
+
}
|
|
34213
|
+
},
|
|
34144
34214
|
{
|
|
34145
34215
|
"name": "modelValue",
|
|
34146
34216
|
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
|
|
@@ -34248,6 +34318,375 @@
|
|
|
34248
34318
|
"event": "update:modelValue"
|
|
34249
34319
|
}
|
|
34250
34320
|
},
|
|
34321
|
+
{
|
|
34322
|
+
"name": "VSpeedDial",
|
|
34323
|
+
"source": {
|
|
34324
|
+
"module": "./src/components/index.ts",
|
|
34325
|
+
"symbol": "VSpeedDial"
|
|
34326
|
+
},
|
|
34327
|
+
"description": "",
|
|
34328
|
+
"doc-url": "https://vuetifyjs.com/api/v-speed-dial",
|
|
34329
|
+
"attributes": [
|
|
34330
|
+
{
|
|
34331
|
+
"name": "id",
|
|
34332
|
+
"description": "The unique identifier of the component.",
|
|
34333
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34334
|
+
"value": {
|
|
34335
|
+
"kind": "expression",
|
|
34336
|
+
"type": "string"
|
|
34337
|
+
}
|
|
34338
|
+
},
|
|
34339
|
+
{
|
|
34340
|
+
"name": "closeOnBack",
|
|
34341
|
+
"description": "Closes the overlay content when the browser's back button is pressed or `$router.back()` is called, cancelling the original navigation. `persistent` overlays will cancel navigation and animate as if they were clicked outside instead of closing.",
|
|
34342
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34343
|
+
"default": "true",
|
|
34344
|
+
"value": {
|
|
34345
|
+
"kind": "expression",
|
|
34346
|
+
"type": "boolean"
|
|
34347
|
+
}
|
|
34348
|
+
},
|
|
34349
|
+
{
|
|
34350
|
+
"name": "contained",
|
|
34351
|
+
"description": "Limits the size of the component and scrim to its offset parent. Implies `absolute` and `attach`. (Note: The parent element must have position: relative.).",
|
|
34352
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34353
|
+
"default": "false",
|
|
34354
|
+
"value": {
|
|
34355
|
+
"kind": "expression",
|
|
34356
|
+
"type": "boolean"
|
|
34357
|
+
}
|
|
34358
|
+
},
|
|
34359
|
+
{
|
|
34360
|
+
"name": "contentClass",
|
|
34361
|
+
"description": "Applies a custom class to the detached element. This is useful because the content is moved to the beginning of the `v-app` component (unless the **attach** prop is provided) and is not targetable by classes passed directly on the component.",
|
|
34362
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34363
|
+
"value": {
|
|
34364
|
+
"kind": "expression",
|
|
34365
|
+
"type": "any"
|
|
34366
|
+
}
|
|
34367
|
+
},
|
|
34368
|
+
{
|
|
34369
|
+
"name": "contentProps",
|
|
34370
|
+
"description": "Apply custom properties to the content.",
|
|
34371
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34372
|
+
"value": {
|
|
34373
|
+
"kind": "expression",
|
|
34374
|
+
"type": "any"
|
|
34375
|
+
}
|
|
34376
|
+
},
|
|
34377
|
+
{
|
|
34378
|
+
"name": "disabled",
|
|
34379
|
+
"description": "Removes the ability to click or target the component.",
|
|
34380
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34381
|
+
"default": "false",
|
|
34382
|
+
"value": {
|
|
34383
|
+
"kind": "expression",
|
|
34384
|
+
"type": "boolean"
|
|
34385
|
+
}
|
|
34386
|
+
},
|
|
34387
|
+
{
|
|
34388
|
+
"name": "opacity",
|
|
34389
|
+
"description": "Sets the overlay opacity.",
|
|
34390
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34391
|
+
"value": {
|
|
34392
|
+
"kind": "expression",
|
|
34393
|
+
"type": "string | number"
|
|
34394
|
+
}
|
|
34395
|
+
},
|
|
34396
|
+
{
|
|
34397
|
+
"name": "noClickAnimation",
|
|
34398
|
+
"description": "Disables the bounce effect when clicking outside of the content element when using the persistent prop.",
|
|
34399
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34400
|
+
"default": "false",
|
|
34401
|
+
"value": {
|
|
34402
|
+
"kind": "expression",
|
|
34403
|
+
"type": "boolean"
|
|
34404
|
+
}
|
|
34405
|
+
},
|
|
34406
|
+
{
|
|
34407
|
+
"name": "modelValue",
|
|
34408
|
+
"description": "The v-model value of the component. If component supports the **multiple** prop, this defaults to an empty array.",
|
|
34409
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34410
|
+
"default": "false",
|
|
34411
|
+
"value": {
|
|
34412
|
+
"kind": "expression",
|
|
34413
|
+
"type": "boolean"
|
|
34414
|
+
}
|
|
34415
|
+
},
|
|
34416
|
+
{
|
|
34417
|
+
"name": "persistent",
|
|
34418
|
+
"description": "Clicking outside of the element or pressing esc key will not deactivate it.",
|
|
34419
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34420
|
+
"default": "false",
|
|
34421
|
+
"value": {
|
|
34422
|
+
"kind": "expression",
|
|
34423
|
+
"type": "boolean"
|
|
34424
|
+
}
|
|
34425
|
+
},
|
|
34426
|
+
{
|
|
34427
|
+
"name": "scrim",
|
|
34428
|
+
"description": "Accepts true/false to enable background, and string to define color.",
|
|
34429
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34430
|
+
"default": "false",
|
|
34431
|
+
"value": {
|
|
34432
|
+
"kind": "expression",
|
|
34433
|
+
"type": "string | boolean"
|
|
34434
|
+
}
|
|
34435
|
+
},
|
|
34436
|
+
{
|
|
34437
|
+
"name": "zIndex",
|
|
34438
|
+
"description": "The z-index used for the component.",
|
|
34439
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34440
|
+
"default": "2000",
|
|
34441
|
+
"value": {
|
|
34442
|
+
"kind": "expression",
|
|
34443
|
+
"type": "string | number"
|
|
34444
|
+
}
|
|
34445
|
+
},
|
|
34446
|
+
{
|
|
34447
|
+
"name": "target",
|
|
34448
|
+
"description": "For locationStrategy=\"connected\", specify an element or array of x,y coordinates that the overlay should position itself relative to. This will be the activator element by default.",
|
|
34449
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34450
|
+
"value": {
|
|
34451
|
+
"kind": "expression",
|
|
34452
|
+
"type": "| (string & {})\n | Element\n | 'parent'\n | 'cursor'\n | ComponentPublicInstance\n | [number, number]"
|
|
34453
|
+
}
|
|
34454
|
+
},
|
|
34455
|
+
{
|
|
34456
|
+
"name": "activator",
|
|
34457
|
+
"description": "Explicitly sets the overlay's activator.",
|
|
34458
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34459
|
+
"value": {
|
|
34460
|
+
"kind": "expression",
|
|
34461
|
+
"type": "(string & {}) | Element | 'parent' | ComponentPublicInstance"
|
|
34462
|
+
}
|
|
34463
|
+
},
|
|
34464
|
+
{
|
|
34465
|
+
"name": "activatorProps",
|
|
34466
|
+
"description": "Apply custom properties to the activator.",
|
|
34467
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34468
|
+
"default": "{}",
|
|
34469
|
+
"value": {
|
|
34470
|
+
"kind": "expression",
|
|
34471
|
+
"type": "unknown"
|
|
34472
|
+
}
|
|
34473
|
+
},
|
|
34474
|
+
{
|
|
34475
|
+
"name": "openOnClick",
|
|
34476
|
+
"description": "Designates whether menu should open on activator click.",
|
|
34477
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34478
|
+
"value": {
|
|
34479
|
+
"kind": "expression",
|
|
34480
|
+
"type": "boolean"
|
|
34481
|
+
}
|
|
34482
|
+
},
|
|
34483
|
+
{
|
|
34484
|
+
"name": "openOnHover",
|
|
34485
|
+
"description": "Opens speed-dial on hover.",
|
|
34486
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34487
|
+
"default": "false",
|
|
34488
|
+
"value": {
|
|
34489
|
+
"kind": "expression",
|
|
34490
|
+
"type": "boolean"
|
|
34491
|
+
}
|
|
34492
|
+
},
|
|
34493
|
+
{
|
|
34494
|
+
"name": "openOnFocus",
|
|
34495
|
+
"description": "Activate the component when the activator is focused.",
|
|
34496
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34497
|
+
"value": {
|
|
34498
|
+
"kind": "expression",
|
|
34499
|
+
"type": "boolean"
|
|
34500
|
+
}
|
|
34501
|
+
},
|
|
34502
|
+
{
|
|
34503
|
+
"name": "closeOnContentClick",
|
|
34504
|
+
"description": "Designates if menu should close when its content is clicked.",
|
|
34505
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34506
|
+
"default": "true",
|
|
34507
|
+
"value": {
|
|
34508
|
+
"kind": "expression",
|
|
34509
|
+
"type": "boolean"
|
|
34510
|
+
}
|
|
34511
|
+
},
|
|
34512
|
+
{
|
|
34513
|
+
"name": "closeDelay",
|
|
34514
|
+
"description": "Milliseconds to wait before closing component. Only works with the **open-on-hover** prop.",
|
|
34515
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34516
|
+
"default": "250",
|
|
34517
|
+
"value": {
|
|
34518
|
+
"kind": "expression",
|
|
34519
|
+
"type": "string | number"
|
|
34520
|
+
}
|
|
34521
|
+
},
|
|
34522
|
+
{
|
|
34523
|
+
"name": "openDelay",
|
|
34524
|
+
"description": "Milliseconds to wait before opening component. Only works with the **open-on-hover** prop.",
|
|
34525
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34526
|
+
"default": "300",
|
|
34527
|
+
"value": {
|
|
34528
|
+
"kind": "expression",
|
|
34529
|
+
"type": "string | number"
|
|
34530
|
+
}
|
|
34531
|
+
},
|
|
34532
|
+
{
|
|
34533
|
+
"name": "height",
|
|
34534
|
+
"description": "Sets the height for the component.",
|
|
34535
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34536
|
+
"value": {
|
|
34537
|
+
"kind": "expression",
|
|
34538
|
+
"type": "string | number"
|
|
34539
|
+
}
|
|
34540
|
+
},
|
|
34541
|
+
{
|
|
34542
|
+
"name": "maxHeight",
|
|
34543
|
+
"description": "Sets the maximum height for the component.",
|
|
34544
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34545
|
+
"value": {
|
|
34546
|
+
"kind": "expression",
|
|
34547
|
+
"type": "string | number"
|
|
34548
|
+
}
|
|
34549
|
+
},
|
|
34550
|
+
{
|
|
34551
|
+
"name": "maxWidth",
|
|
34552
|
+
"description": "Sets the maximum width for the component.",
|
|
34553
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34554
|
+
"value": {
|
|
34555
|
+
"kind": "expression",
|
|
34556
|
+
"type": "string | number"
|
|
34557
|
+
}
|
|
34558
|
+
},
|
|
34559
|
+
{
|
|
34560
|
+
"name": "minHeight",
|
|
34561
|
+
"description": "Sets the minimum height for the component.",
|
|
34562
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34563
|
+
"value": {
|
|
34564
|
+
"kind": "expression",
|
|
34565
|
+
"type": "string | number"
|
|
34566
|
+
}
|
|
34567
|
+
},
|
|
34568
|
+
{
|
|
34569
|
+
"name": "minWidth",
|
|
34570
|
+
"description": "Sets the minimum width for the component. Use `auto` to use the activator width.",
|
|
34571
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34572
|
+
"default": "0",
|
|
34573
|
+
"value": {
|
|
34574
|
+
"kind": "expression",
|
|
34575
|
+
"type": "string | number"
|
|
34576
|
+
}
|
|
34577
|
+
},
|
|
34578
|
+
{
|
|
34579
|
+
"name": "width",
|
|
34580
|
+
"description": "Sets the width for the component.",
|
|
34581
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34582
|
+
"value": {
|
|
34583
|
+
"kind": "expression",
|
|
34584
|
+
"type": "string | number"
|
|
34585
|
+
}
|
|
34586
|
+
},
|
|
34587
|
+
{
|
|
34588
|
+
"name": "eager",
|
|
34589
|
+
"description": "Forces the component's content to render when it mounts. This is useful if you have content that will not be rendered in the DOM that you want crawled for SEO.",
|
|
34590
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34591
|
+
"default": "false",
|
|
34592
|
+
"value": {
|
|
34593
|
+
"kind": "expression",
|
|
34594
|
+
"type": "boolean"
|
|
34595
|
+
}
|
|
34596
|
+
},
|
|
34597
|
+
{
|
|
34598
|
+
"name": "locationStrategy",
|
|
34599
|
+
"description": "A function used to specifies how the component should position relative to its activator.",
|
|
34600
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34601
|
+
"default": "'connected'",
|
|
34602
|
+
"value": {
|
|
34603
|
+
"kind": "expression",
|
|
34604
|
+
"type": "'static' | 'connected' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/locationStrategies.ts#L36-L40\" target=\"_blank\">LocationStrategyFn</a>"
|
|
34605
|
+
}
|
|
34606
|
+
},
|
|
34607
|
+
{
|
|
34608
|
+
"name": "location",
|
|
34609
|
+
"description": "Specifies the anchor point for positioning the component, using directional cues to align it either horizontally, vertically, or both..",
|
|
34610
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34611
|
+
"default": "'top center'",
|
|
34612
|
+
"value": {
|
|
34613
|
+
"kind": "expression",
|
|
34614
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a>"
|
|
34615
|
+
}
|
|
34616
|
+
},
|
|
34617
|
+
{
|
|
34618
|
+
"name": "origin",
|
|
34619
|
+
"description": "Sets the transition origin on the element. You can find more information on the MDN documentation [for transition origin](https://developer.mozilla.org/en-US/docs/Web/CSS/transform-origin).",
|
|
34620
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34621
|
+
"default": "'auto'",
|
|
34622
|
+
"value": {
|
|
34623
|
+
"kind": "expression",
|
|
34624
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/anchor.ts#L8-L14\" target=\"_blank\">Anchor</a> | 'auto' | 'overlap'"
|
|
34625
|
+
}
|
|
34626
|
+
},
|
|
34627
|
+
{
|
|
34628
|
+
"name": "offset",
|
|
34629
|
+
"description": "A single value that offsets content away from the target based upon what side it is on.",
|
|
34630
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34631
|
+
"default": "8",
|
|
34632
|
+
"value": {
|
|
34633
|
+
"kind": "expression",
|
|
34634
|
+
"type": "string | number | number[]"
|
|
34635
|
+
}
|
|
34636
|
+
},
|
|
34637
|
+
{
|
|
34638
|
+
"name": "scrollStrategy",
|
|
34639
|
+
"description": "Strategy used when the component is activate and user scrolls.",
|
|
34640
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34641
|
+
"default": "'reposition'",
|
|
34642
|
+
"value": {
|
|
34643
|
+
"kind": "expression",
|
|
34644
|
+
"type": "'none' | 'close' | 'block' | 'reposition' | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/components/VOverlay/scrollStrategies.ts#L17-L17\" target=\"_blank\">ScrollStrategyFn</a>"
|
|
34645
|
+
}
|
|
34646
|
+
},
|
|
34647
|
+
{
|
|
34648
|
+
"name": "theme",
|
|
34649
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
34650
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34651
|
+
"value": {
|
|
34652
|
+
"kind": "expression",
|
|
34653
|
+
"type": "string"
|
|
34654
|
+
}
|
|
34655
|
+
},
|
|
34656
|
+
{
|
|
34657
|
+
"name": "transition",
|
|
34658
|
+
"description": "Sets the component transition. Can be one of the [built in](/styles/transitions/) or custom transition.",
|
|
34659
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34660
|
+
"default": "'fade-transition'",
|
|
34661
|
+
"value": {
|
|
34662
|
+
"kind": "expression",
|
|
34663
|
+
"type": "string | boolean | (TransitionProps & { component: Component })"
|
|
34664
|
+
}
|
|
34665
|
+
},
|
|
34666
|
+
{
|
|
34667
|
+
"name": "attach",
|
|
34668
|
+
"description": "Specifies which DOM element the overlay content should teleport to. Can be a direct element reference, querySelector string, or `true` to disable teleporting. Uses `body` by default. Generally not recommended except as a last resort: the default positioning algorithm should handle most scenarios better than is possible without teleporting, and you may have unexpected behavior if the menu ends up as child of its activator.",
|
|
34669
|
+
"doc-url": "https://vuetifyjs.com/api/VSpeedDial#props",
|
|
34670
|
+
"default": "false",
|
|
34671
|
+
"value": {
|
|
34672
|
+
"kind": "expression",
|
|
34673
|
+
"type": "string | boolean | Element"
|
|
34674
|
+
}
|
|
34675
|
+
}
|
|
34676
|
+
],
|
|
34677
|
+
"events": [],
|
|
34678
|
+
"slots": [
|
|
34679
|
+
{
|
|
34680
|
+
"name": "default",
|
|
34681
|
+
"description": "The default Vue slot.",
|
|
34682
|
+
"doc-url": "https://vuetifyjs.com/api/v-speed-dial#slots"
|
|
34683
|
+
}
|
|
34684
|
+
],
|
|
34685
|
+
"vue-model": {
|
|
34686
|
+
"prop": "modelValue",
|
|
34687
|
+
"event": "update:modelValue"
|
|
34688
|
+
}
|
|
34689
|
+
},
|
|
34251
34690
|
{
|
|
34252
34691
|
"name": "VStepper",
|
|
34253
34692
|
"source": {
|
|
@@ -39941,6 +40380,1253 @@
|
|
|
39941
40380
|
"event": "update:modelValue"
|
|
39942
40381
|
}
|
|
39943
40382
|
},
|
|
40383
|
+
{
|
|
40384
|
+
"name": "VTreeview",
|
|
40385
|
+
"source": {
|
|
40386
|
+
"module": "./src/components/index.ts",
|
|
40387
|
+
"symbol": "VTreeview"
|
|
40388
|
+
},
|
|
40389
|
+
"description": "",
|
|
40390
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview",
|
|
40391
|
+
"attributes": [
|
|
40392
|
+
{
|
|
40393
|
+
"name": "openAll",
|
|
40394
|
+
"description": "When `true` will cause all branch nodes to be opened when component is mounted.",
|
|
40395
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40396
|
+
"default": "false",
|
|
40397
|
+
"value": {
|
|
40398
|
+
"kind": "expression",
|
|
40399
|
+
"type": "boolean"
|
|
40400
|
+
}
|
|
40401
|
+
},
|
|
40402
|
+
{
|
|
40403
|
+
"name": "search",
|
|
40404
|
+
"description": "The search model for filtering results.",
|
|
40405
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40406
|
+
"value": {
|
|
40407
|
+
"kind": "expression",
|
|
40408
|
+
"type": "string"
|
|
40409
|
+
}
|
|
40410
|
+
},
|
|
40411
|
+
{
|
|
40412
|
+
"name": "filterMode",
|
|
40413
|
+
"description": "Controls how the results of `customFilter` and `customKeyFilter` are combined. All modes only apply `customFilter` to columns not specified in `customKeyFilter`.\n\n- **some**: There is at least one match from either the custom filter or the custom key filter.\n- **every**: All columns match either the custom filter or the custom key filter.\n- **union**: There is at least one match from the custom filter, or all columns match the custom key filters.\n- **intersection**: There is at least one match from the custom filter, and all columns match the custom key filters.",
|
|
40414
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40415
|
+
"default": "'intersection'",
|
|
40416
|
+
"value": {
|
|
40417
|
+
"kind": "expression",
|
|
40418
|
+
"type": "'some' | 'every' | 'union' | 'intersection'"
|
|
40419
|
+
}
|
|
40420
|
+
},
|
|
40421
|
+
{
|
|
40422
|
+
"name": "noFilter",
|
|
40423
|
+
"description": "Disables all item filtering.",
|
|
40424
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40425
|
+
"default": "false",
|
|
40426
|
+
"value": {
|
|
40427
|
+
"kind": "expression",
|
|
40428
|
+
"type": "boolean"
|
|
40429
|
+
}
|
|
40430
|
+
},
|
|
40431
|
+
{
|
|
40432
|
+
"name": "customFilter",
|
|
40433
|
+
"description": "Function used to filter items, called for each filterable key on each item in the list. The first argument is the filterable value from the item, the second is the search term, and the third is the internal item object. The function should return true if the item should be included in the filtered list, or the index of the match in the value if it should be included with the result highlighted.",
|
|
40434
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40435
|
+
"value": {
|
|
40436
|
+
"kind": "expression",
|
|
40437
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/filter.ts#L19-L19\" target=\"_blank\">FilterFunction</a>"
|
|
40438
|
+
}
|
|
40439
|
+
},
|
|
40440
|
+
{
|
|
40441
|
+
"name": "customKeyFilter",
|
|
40442
|
+
"description": "Function used on specific keys within the item object. `customFilter` is skipped for columns with `customKeyFilter` specified.",
|
|
40443
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40444
|
+
"value": {
|
|
40445
|
+
"kind": "expression",
|
|
40446
|
+
"type": "unknown"
|
|
40447
|
+
}
|
|
40448
|
+
},
|
|
40449
|
+
{
|
|
40450
|
+
"name": "filterKeys",
|
|
40451
|
+
"description": "Array of specific keys to filter on the item.",
|
|
40452
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40453
|
+
"default": "['title']",
|
|
40454
|
+
"value": {
|
|
40455
|
+
"kind": "expression",
|
|
40456
|
+
"type": "string | string[]"
|
|
40457
|
+
}
|
|
40458
|
+
},
|
|
40459
|
+
{
|
|
40460
|
+
"name": "loadingIcon",
|
|
40461
|
+
"description": "Icon used when node is in a loading state.",
|
|
40462
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40463
|
+
"default": "'$loading'",
|
|
40464
|
+
"value": {
|
|
40465
|
+
"kind": "expression",
|
|
40466
|
+
"type": "string"
|
|
40467
|
+
}
|
|
40468
|
+
},
|
|
40469
|
+
{
|
|
40470
|
+
"name": "selectable",
|
|
40471
|
+
"description": "Will render a checkbox next to each node allowing them to be selected.",
|
|
40472
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40473
|
+
"default": "false",
|
|
40474
|
+
"value": {
|
|
40475
|
+
"kind": "expression",
|
|
40476
|
+
"type": "boolean"
|
|
40477
|
+
}
|
|
40478
|
+
},
|
|
40479
|
+
{
|
|
40480
|
+
"name": "loadChildren",
|
|
40481
|
+
"description": "A function used when dynamically loading children. If this prop is set, then the supplied function will be run if expanding an item that has a `item-children` property that is an empty array. Supports returning a Promise.",
|
|
40482
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40483
|
+
"value": {
|
|
40484
|
+
"kind": "expression",
|
|
40485
|
+
"type": "(item: unknown) => Promise<void>"
|
|
40486
|
+
}
|
|
40487
|
+
},
|
|
40488
|
+
{
|
|
40489
|
+
"name": "items",
|
|
40490
|
+
"description": "An array of items used to build the treeview.",
|
|
40491
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40492
|
+
"default": "[]",
|
|
40493
|
+
"value": {
|
|
40494
|
+
"kind": "expression",
|
|
40495
|
+
"type": "unknown[]"
|
|
40496
|
+
}
|
|
40497
|
+
},
|
|
40498
|
+
{
|
|
40499
|
+
"name": "baseColor",
|
|
40500
|
+
"description": "Sets the color of component when not focused.",
|
|
40501
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40502
|
+
"value": {
|
|
40503
|
+
"kind": "expression",
|
|
40504
|
+
"type": "string"
|
|
40505
|
+
}
|
|
40506
|
+
},
|
|
40507
|
+
{
|
|
40508
|
+
"name": "activeColor",
|
|
40509
|
+
"description": "The applied color when the component is in an active state.",
|
|
40510
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40511
|
+
"value": {
|
|
40512
|
+
"kind": "expression",
|
|
40513
|
+
"type": "string"
|
|
40514
|
+
}
|
|
40515
|
+
},
|
|
40516
|
+
{
|
|
40517
|
+
"name": "activeClass",
|
|
40518
|
+
"description": "The class applied to the component when it is in an active state.",
|
|
40519
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40520
|
+
"value": {
|
|
40521
|
+
"kind": "expression",
|
|
40522
|
+
"type": "string"
|
|
40523
|
+
}
|
|
40524
|
+
},
|
|
40525
|
+
{
|
|
40526
|
+
"name": "bgColor",
|
|
40527
|
+
"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).",
|
|
40528
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40529
|
+
"value": {
|
|
40530
|
+
"kind": "expression",
|
|
40531
|
+
"type": "string"
|
|
40532
|
+
}
|
|
40533
|
+
},
|
|
40534
|
+
{
|
|
40535
|
+
"name": "disabled",
|
|
40536
|
+
"description": "Disables selection for all nodes.",
|
|
40537
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40538
|
+
"default": "false",
|
|
40539
|
+
"value": {
|
|
40540
|
+
"kind": "expression",
|
|
40541
|
+
"type": "boolean"
|
|
40542
|
+
}
|
|
40543
|
+
},
|
|
40544
|
+
{
|
|
40545
|
+
"name": "expandIcon",
|
|
40546
|
+
"description": "Icon used to indicate that a node can be expanded.",
|
|
40547
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40548
|
+
"default": "'$treeviewExpand'",
|
|
40549
|
+
"value": {
|
|
40550
|
+
"kind": "expression",
|
|
40551
|
+
"type": "string"
|
|
40552
|
+
}
|
|
40553
|
+
},
|
|
40554
|
+
{
|
|
40555
|
+
"name": "collapseIcon",
|
|
40556
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VList.json))",
|
|
40557
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40558
|
+
"default": "'$treeviewCollapse'",
|
|
40559
|
+
"value": {
|
|
40560
|
+
"kind": "expression",
|
|
40561
|
+
"type": "string"
|
|
40562
|
+
}
|
|
40563
|
+
},
|
|
40564
|
+
{
|
|
40565
|
+
"name": "lines",
|
|
40566
|
+
"description": "Designates a **minimum-height** for all children `v-list-item` components. This prop uses [line-clamp](https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-line-clamp) and is not supported in all browsers.",
|
|
40567
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40568
|
+
"default": "'one'",
|
|
40569
|
+
"value": {
|
|
40570
|
+
"kind": "expression",
|
|
40571
|
+
"type": "false | 'one' | 'two' | 'three'"
|
|
40572
|
+
}
|
|
40573
|
+
},
|
|
40574
|
+
{
|
|
40575
|
+
"name": "slim",
|
|
40576
|
+
"description": "Reduces horizontal spacing for badges, icons, tooltips, and avatars within slim list items to create a more compact visual representation.",
|
|
40577
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40578
|
+
"default": "true",
|
|
40579
|
+
"value": {
|
|
40580
|
+
"kind": "expression",
|
|
40581
|
+
"type": "boolean"
|
|
40582
|
+
}
|
|
40583
|
+
},
|
|
40584
|
+
{
|
|
40585
|
+
"name": "activatable",
|
|
40586
|
+
"description": "Allows user to mark a node as active by clicking on it.",
|
|
40587
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40588
|
+
"default": "false",
|
|
40589
|
+
"value": {
|
|
40590
|
+
"kind": "expression",
|
|
40591
|
+
"type": "boolean"
|
|
40592
|
+
}
|
|
40593
|
+
},
|
|
40594
|
+
{
|
|
40595
|
+
"name": "mandatory",
|
|
40596
|
+
"description": "Forces at least one item to always be selected (if available).",
|
|
40597
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40598
|
+
"default": "false",
|
|
40599
|
+
"value": {
|
|
40600
|
+
"kind": "expression",
|
|
40601
|
+
"type": "boolean"
|
|
40602
|
+
}
|
|
40603
|
+
},
|
|
40604
|
+
{
|
|
40605
|
+
"name": "activeStrategy",
|
|
40606
|
+
"description": "Affects how items with children behave when activated.\n- **leaf:** Only leaf nodes (items without children) can be activated.\n- **independent:** All nodes can be activated whether they have children or not.\n- **classic:** Activating a parent node will cause all children to be activated.",
|
|
40607
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40608
|
+
"value": {
|
|
40609
|
+
"kind": "expression",
|
|
40610
|
+
"type": "| 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L5-L12\" target=\"_blank\">SelectStrategyFn</a>"
|
|
40611
|
+
}
|
|
40612
|
+
},
|
|
40613
|
+
{
|
|
40614
|
+
"name": "selectStrategy",
|
|
40615
|
+
"description": "Affects how items with children behave when selected.\n- **leaf:** Only leaf nodes (items without children) can be selected.\n- **independent:** All nodes can be selected whether they have children or not.\n- **classic:** Selecting a parent node will cause all children to be selected, parent nodes will be displayed as selected if all their descendants are selected. Only leaf nodes will be added to the model.",
|
|
40616
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40617
|
+
"default": "'independent'",
|
|
40618
|
+
"value": {
|
|
40619
|
+
"kind": "expression",
|
|
40620
|
+
"type": "| 'single-leaf'\n | 'leaf'\n | 'independent'\n | 'single-independent'\n | 'classic'\n | <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/selectStrategies.ts#L5-L12\" target=\"_blank\">SelectStrategyFn</a>"
|
|
40621
|
+
}
|
|
40622
|
+
},
|
|
40623
|
+
{
|
|
40624
|
+
"name": "openStrategy",
|
|
40625
|
+
"description": "Affects how items with children behave when expanded.\n- **multiple:** Any number of groups can be open at once.\n- **single:** Only one group at each level can be open, opening a group will cause others to close.\n- **list:** Multiple, but all other groups will close when an item is selected.",
|
|
40626
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40627
|
+
"default": "'multiple'",
|
|
40628
|
+
"value": {
|
|
40629
|
+
"kind": "expression",
|
|
40630
|
+
"type": "| 'single'\n | 'multiple'\n | 'list'\n | { open: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/openStrategies.ts#L1-L8\" target=\"_blank\">OpenStrategyFn</a>; select: <a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/composables/nested/openStrategies.ts#L10-L18\" target=\"_blank\">OpenSelectStrategyFn</a> }"
|
|
40631
|
+
}
|
|
40632
|
+
},
|
|
40633
|
+
{
|
|
40634
|
+
"name": "opened",
|
|
40635
|
+
"description": "An array containing the values of currently opened groups. Can be two-way bound with `v-model:opened`.",
|
|
40636
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40637
|
+
"value": {
|
|
40638
|
+
"kind": "expression",
|
|
40639
|
+
"type": "unknown[]"
|
|
40640
|
+
}
|
|
40641
|
+
},
|
|
40642
|
+
{
|
|
40643
|
+
"name": "activated",
|
|
40644
|
+
"description": "Array of ids of activated nodes.",
|
|
40645
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40646
|
+
"value": {
|
|
40647
|
+
"kind": "expression",
|
|
40648
|
+
"type": "unknown[]"
|
|
40649
|
+
}
|
|
40650
|
+
},
|
|
40651
|
+
{
|
|
40652
|
+
"name": "selected",
|
|
40653
|
+
"description": "An array containing the values of currently selected items. Can be two-way bound with `v-model:selected`.",
|
|
40654
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40655
|
+
"value": {
|
|
40656
|
+
"kind": "expression",
|
|
40657
|
+
"type": "unknown[]"
|
|
40658
|
+
}
|
|
40659
|
+
},
|
|
40660
|
+
{
|
|
40661
|
+
"name": "border",
|
|
40662
|
+
"description": "Applies border styles to component.",
|
|
40663
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40664
|
+
"default": "false",
|
|
40665
|
+
"value": {
|
|
40666
|
+
"kind": "expression",
|
|
40667
|
+
"type": "string | number | boolean"
|
|
40668
|
+
}
|
|
40669
|
+
},
|
|
40670
|
+
{
|
|
40671
|
+
"name": "density",
|
|
40672
|
+
"description": "Adjusts the vertical height used by the component.",
|
|
40673
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40674
|
+
"default": "'default'",
|
|
40675
|
+
"value": {
|
|
40676
|
+
"kind": "expression",
|
|
40677
|
+
"type": "'default' | 'comfortable' | 'compact'"
|
|
40678
|
+
}
|
|
40679
|
+
},
|
|
40680
|
+
{
|
|
40681
|
+
"name": "height",
|
|
40682
|
+
"description": "Sets the height for the component.",
|
|
40683
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40684
|
+
"value": {
|
|
40685
|
+
"kind": "expression",
|
|
40686
|
+
"type": "string | number"
|
|
40687
|
+
}
|
|
40688
|
+
},
|
|
40689
|
+
{
|
|
40690
|
+
"name": "maxHeight",
|
|
40691
|
+
"description": "Sets the maximum height for the component.",
|
|
40692
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40693
|
+
"value": {
|
|
40694
|
+
"kind": "expression",
|
|
40695
|
+
"type": "string | number"
|
|
40696
|
+
}
|
|
40697
|
+
},
|
|
40698
|
+
{
|
|
40699
|
+
"name": "maxWidth",
|
|
40700
|
+
"description": "Sets the maximum width for the component.",
|
|
40701
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40702
|
+
"value": {
|
|
40703
|
+
"kind": "expression",
|
|
40704
|
+
"type": "string | number"
|
|
40705
|
+
}
|
|
40706
|
+
},
|
|
40707
|
+
{
|
|
40708
|
+
"name": "minHeight",
|
|
40709
|
+
"description": "Sets the minimum height for the component.",
|
|
40710
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40711
|
+
"value": {
|
|
40712
|
+
"kind": "expression",
|
|
40713
|
+
"type": "string | number"
|
|
40714
|
+
}
|
|
40715
|
+
},
|
|
40716
|
+
{
|
|
40717
|
+
"name": "minWidth",
|
|
40718
|
+
"description": "Sets the minimum width for the component.",
|
|
40719
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40720
|
+
"value": {
|
|
40721
|
+
"kind": "expression",
|
|
40722
|
+
"type": "string | number"
|
|
40723
|
+
}
|
|
40724
|
+
},
|
|
40725
|
+
{
|
|
40726
|
+
"name": "width",
|
|
40727
|
+
"description": "Sets the width for the component.",
|
|
40728
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40729
|
+
"value": {
|
|
40730
|
+
"kind": "expression",
|
|
40731
|
+
"type": "string | number"
|
|
40732
|
+
}
|
|
40733
|
+
},
|
|
40734
|
+
{
|
|
40735
|
+
"name": "elevation",
|
|
40736
|
+
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation).",
|
|
40737
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40738
|
+
"value": {
|
|
40739
|
+
"kind": "expression",
|
|
40740
|
+
"type": "string | number"
|
|
40741
|
+
}
|
|
40742
|
+
},
|
|
40743
|
+
{
|
|
40744
|
+
"name": "itemType",
|
|
40745
|
+
"description": "Designates the key on the supplied items that is used for determining the nodes type.",
|
|
40746
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40747
|
+
"default": "'type'",
|
|
40748
|
+
"value": {
|
|
40749
|
+
"kind": "expression",
|
|
40750
|
+
"type": "string"
|
|
40751
|
+
}
|
|
40752
|
+
},
|
|
40753
|
+
{
|
|
40754
|
+
"name": "itemTitle",
|
|
40755
|
+
"description": "Property on supplied `items` that contains its title.",
|
|
40756
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40757
|
+
"default": "'title'",
|
|
40758
|
+
"value": {
|
|
40759
|
+
"kind": "expression",
|
|
40760
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L72-L76\" target=\"_blank\">SelectItemKey</a>"
|
|
40761
|
+
}
|
|
40762
|
+
},
|
|
40763
|
+
{
|
|
40764
|
+
"name": "itemValue",
|
|
40765
|
+
"description": "Property on supplied `items` that contains its value.",
|
|
40766
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40767
|
+
"default": "'value'",
|
|
40768
|
+
"value": {
|
|
40769
|
+
"kind": "expression",
|
|
40770
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L72-L76\" target=\"_blank\">SelectItemKey</a>"
|
|
40771
|
+
}
|
|
40772
|
+
},
|
|
40773
|
+
{
|
|
40774
|
+
"name": "itemChildren",
|
|
40775
|
+
"description": "Property on supplied `items` that contains its children.",
|
|
40776
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40777
|
+
"default": "'children'",
|
|
40778
|
+
"value": {
|
|
40779
|
+
"kind": "expression",
|
|
40780
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L72-L76\" target=\"_blank\">SelectItemKey</a>"
|
|
40781
|
+
}
|
|
40782
|
+
},
|
|
40783
|
+
{
|
|
40784
|
+
"name": "itemProps",
|
|
40785
|
+
"description": "Props object that will be applied to each item component. `true` will treat the original object as raw props and pass it directly to the component.",
|
|
40786
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40787
|
+
"default": "'props'",
|
|
40788
|
+
"value": {
|
|
40789
|
+
"kind": "expression",
|
|
40790
|
+
"type": "<a href=\"https://github.com/vuetifyjs/vuetify/blob/master/packages/vuetify/src/util/helpers.ts#L72-L76\" target=\"_blank\">SelectItemKey</a>"
|
|
40791
|
+
}
|
|
40792
|
+
},
|
|
40793
|
+
{
|
|
40794
|
+
"name": "returnObject",
|
|
40795
|
+
"description": "When `true` will make `v-model`, `active.sync` and `open.sync` return the complete object instead of just the key.",
|
|
40796
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40797
|
+
"default": "false",
|
|
40798
|
+
"value": {
|
|
40799
|
+
"kind": "expression",
|
|
40800
|
+
"type": "boolean"
|
|
40801
|
+
}
|
|
40802
|
+
},
|
|
40803
|
+
{
|
|
40804
|
+
"name": "valueComparator",
|
|
40805
|
+
"description": "Apply a custom comparison algorithm to compare **model-value** and values contains in the **items** prop.",
|
|
40806
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40807
|
+
"value": {
|
|
40808
|
+
"kind": "expression",
|
|
40809
|
+
"type": "(a: any, b: any) => boolean"
|
|
40810
|
+
}
|
|
40811
|
+
},
|
|
40812
|
+
{
|
|
40813
|
+
"name": "rounded",
|
|
40814
|
+
"description": "Provides an alternative active style for `v-treeview` node. Only visible when `activatable` is `true` and should not be used in conjunction with the `shaped` prop.",
|
|
40815
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40816
|
+
"value": {
|
|
40817
|
+
"kind": "expression",
|
|
40818
|
+
"type": "string | number | boolean"
|
|
40819
|
+
}
|
|
40820
|
+
},
|
|
40821
|
+
{
|
|
40822
|
+
"name": "tile",
|
|
40823
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
40824
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40825
|
+
"default": "false",
|
|
40826
|
+
"value": {
|
|
40827
|
+
"kind": "expression",
|
|
40828
|
+
"type": "boolean"
|
|
40829
|
+
}
|
|
40830
|
+
},
|
|
40831
|
+
{
|
|
40832
|
+
"name": "tag",
|
|
40833
|
+
"description": "Specify a custom tag used on the root element.",
|
|
40834
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40835
|
+
"default": "'div'",
|
|
40836
|
+
"value": {
|
|
40837
|
+
"kind": "expression",
|
|
40838
|
+
"type": "string"
|
|
40839
|
+
}
|
|
40840
|
+
},
|
|
40841
|
+
{
|
|
40842
|
+
"name": "theme",
|
|
40843
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
40844
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40845
|
+
"value": {
|
|
40846
|
+
"kind": "expression",
|
|
40847
|
+
"type": "string"
|
|
40848
|
+
}
|
|
40849
|
+
},
|
|
40850
|
+
{
|
|
40851
|
+
"name": "color",
|
|
40852
|
+
"description": "Applies specified color to the active node - 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).",
|
|
40853
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40854
|
+
"value": {
|
|
40855
|
+
"kind": "expression",
|
|
40856
|
+
"type": "string"
|
|
40857
|
+
}
|
|
40858
|
+
},
|
|
40859
|
+
{
|
|
40860
|
+
"name": "variant",
|
|
40861
|
+
"description": "Applies a distinct style to the component.",
|
|
40862
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeview#props",
|
|
40863
|
+
"default": "'text'",
|
|
40864
|
+
"value": {
|
|
40865
|
+
"kind": "expression",
|
|
40866
|
+
"type": "'flat' | 'elevated' | 'tonal' | 'outlined' | 'text' | 'plain'"
|
|
40867
|
+
}
|
|
40868
|
+
}
|
|
40869
|
+
],
|
|
40870
|
+
"events": [
|
|
40871
|
+
{
|
|
40872
|
+
"name": "update:opened",
|
|
40873
|
+
"description": "Emits the array of open items when this value changes.",
|
|
40874
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#events",
|
|
40875
|
+
"arguments": [
|
|
40876
|
+
{
|
|
40877
|
+
"name": "argument",
|
|
40878
|
+
"type": "[unknown[]]\n"
|
|
40879
|
+
}
|
|
40880
|
+
]
|
|
40881
|
+
},
|
|
40882
|
+
{
|
|
40883
|
+
"name": "update:activated",
|
|
40884
|
+
"description": "Emits the array of active items when this value changes.",
|
|
40885
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#events",
|
|
40886
|
+
"arguments": [
|
|
40887
|
+
{
|
|
40888
|
+
"name": "argument",
|
|
40889
|
+
"type": "[unknown[]]\n"
|
|
40890
|
+
}
|
|
40891
|
+
]
|
|
40892
|
+
},
|
|
40893
|
+
{
|
|
40894
|
+
"name": "update:selected",
|
|
40895
|
+
"description": "Emits the array of selected items when this value changes.",
|
|
40896
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#events",
|
|
40897
|
+
"arguments": [
|
|
40898
|
+
{
|
|
40899
|
+
"name": "argument",
|
|
40900
|
+
"type": "[unknown[]]\n"
|
|
40901
|
+
}
|
|
40902
|
+
]
|
|
40903
|
+
},
|
|
40904
|
+
{
|
|
40905
|
+
"name": "click:open",
|
|
40906
|
+
"description": "Emits the item when it is clicked to open.",
|
|
40907
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#events",
|
|
40908
|
+
"arguments": [
|
|
40909
|
+
{
|
|
40910
|
+
"name": "argument",
|
|
40911
|
+
"type": "[{ id: unknown; value: boolean; path: unknown[] }]\n"
|
|
40912
|
+
}
|
|
40913
|
+
]
|
|
40914
|
+
},
|
|
40915
|
+
{
|
|
40916
|
+
"name": "click:select",
|
|
40917
|
+
"description": "Emits the item when it is clicked to select.",
|
|
40918
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#events",
|
|
40919
|
+
"arguments": [
|
|
40920
|
+
{
|
|
40921
|
+
"name": "argument",
|
|
40922
|
+
"type": "[{ id: unknown; value: boolean; path: unknown[] }]\n"
|
|
40923
|
+
}
|
|
40924
|
+
]
|
|
40925
|
+
}
|
|
40926
|
+
],
|
|
40927
|
+
"slots": [
|
|
40928
|
+
{
|
|
40929
|
+
"name": "prepend",
|
|
40930
|
+
"description": "Prepends content before label.",
|
|
40931
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots"
|
|
40932
|
+
},
|
|
40933
|
+
{
|
|
40934
|
+
"name": "append",
|
|
40935
|
+
"description": "Appends content after label.",
|
|
40936
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots"
|
|
40937
|
+
},
|
|
40938
|
+
{
|
|
40939
|
+
"name": "title",
|
|
40940
|
+
"description": "Slot for the component's title content.",
|
|
40941
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots"
|
|
40942
|
+
},
|
|
40943
|
+
{
|
|
40944
|
+
"name": "subtitle",
|
|
40945
|
+
"description": "Slot for the component's subtitle content.",
|
|
40946
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots"
|
|
40947
|
+
},
|
|
40948
|
+
{
|
|
40949
|
+
"name": "default",
|
|
40950
|
+
"description": "The default Vue slot.",
|
|
40951
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots"
|
|
40952
|
+
},
|
|
40953
|
+
{
|
|
40954
|
+
"name": "item",
|
|
40955
|
+
"description": "Define a custom item appearance.",
|
|
40956
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots",
|
|
40957
|
+
"vue-properties": [
|
|
40958
|
+
{
|
|
40959
|
+
"name": "props",
|
|
40960
|
+
"type": "{ title: string; value: any; [string]: any }"
|
|
40961
|
+
}
|
|
40962
|
+
]
|
|
40963
|
+
},
|
|
40964
|
+
{
|
|
40965
|
+
"name": "divider",
|
|
40966
|
+
"description": "Slot for custom divider.",
|
|
40967
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots",
|
|
40968
|
+
"vue-properties": [
|
|
40969
|
+
{
|
|
40970
|
+
"name": "props",
|
|
40971
|
+
"type": "{ title: string; value: any; [string]: any }"
|
|
40972
|
+
}
|
|
40973
|
+
]
|
|
40974
|
+
},
|
|
40975
|
+
{
|
|
40976
|
+
"name": "subheader",
|
|
40977
|
+
"description": "Slot for custom subheader.",
|
|
40978
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots",
|
|
40979
|
+
"vue-properties": [
|
|
40980
|
+
{
|
|
40981
|
+
"name": "props",
|
|
40982
|
+
"type": "{ title: string; value: any; [string]: any }"
|
|
40983
|
+
}
|
|
40984
|
+
]
|
|
40985
|
+
},
|
|
40986
|
+
{
|
|
40987
|
+
"name": "header",
|
|
40988
|
+
"description": "Slot for custom header.",
|
|
40989
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview#slots",
|
|
40990
|
+
"vue-properties": [
|
|
40991
|
+
{
|
|
40992
|
+
"name": "props",
|
|
40993
|
+
"type": "{ title: string; value: any; [string]: any }"
|
|
40994
|
+
}
|
|
40995
|
+
]
|
|
40996
|
+
}
|
|
40997
|
+
],
|
|
40998
|
+
"vue-model": {
|
|
40999
|
+
"prop": "modelValue",
|
|
41000
|
+
"event": "update:modelValue"
|
|
41001
|
+
}
|
|
41002
|
+
},
|
|
41003
|
+
{
|
|
41004
|
+
"name": "VTreeviewGroup",
|
|
41005
|
+
"source": {
|
|
41006
|
+
"module": "./src/components/index.ts",
|
|
41007
|
+
"symbol": "VTreeviewGroup"
|
|
41008
|
+
},
|
|
41009
|
+
"description": "",
|
|
41010
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-group",
|
|
41011
|
+
"attributes": [
|
|
41012
|
+
{
|
|
41013
|
+
"name": "activeColor",
|
|
41014
|
+
"description": "The applied color when the component is in an active state.",
|
|
41015
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41016
|
+
"value": {
|
|
41017
|
+
"kind": "expression",
|
|
41018
|
+
"type": "string"
|
|
41019
|
+
}
|
|
41020
|
+
},
|
|
41021
|
+
{
|
|
41022
|
+
"name": "baseColor",
|
|
41023
|
+
"description": "Sets the color of component when not focused.",
|
|
41024
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41025
|
+
"value": {
|
|
41026
|
+
"kind": "expression",
|
|
41027
|
+
"type": "string"
|
|
41028
|
+
}
|
|
41029
|
+
},
|
|
41030
|
+
{
|
|
41031
|
+
"name": "color",
|
|
41032
|
+
"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).",
|
|
41033
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41034
|
+
"value": {
|
|
41035
|
+
"kind": "expression",
|
|
41036
|
+
"type": "string"
|
|
41037
|
+
}
|
|
41038
|
+
},
|
|
41039
|
+
{
|
|
41040
|
+
"name": "collapseIcon",
|
|
41041
|
+
"description": "Icon to display when the list item is expanded.",
|
|
41042
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41043
|
+
"default": "'$treeviewCollapse'",
|
|
41044
|
+
"value": {
|
|
41045
|
+
"kind": "expression",
|
|
41046
|
+
"type": "any"
|
|
41047
|
+
}
|
|
41048
|
+
},
|
|
41049
|
+
{
|
|
41050
|
+
"name": "expandIcon",
|
|
41051
|
+
"description": "Icon to display when the list item is collapsed.",
|
|
41052
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41053
|
+
"default": "'$treeviewExpand'",
|
|
41054
|
+
"value": {
|
|
41055
|
+
"kind": "expression",
|
|
41056
|
+
"type": "any"
|
|
41057
|
+
}
|
|
41058
|
+
},
|
|
41059
|
+
{
|
|
41060
|
+
"name": "prependIcon",
|
|
41061
|
+
"description": "Prepends an icon to the component, uses the same syntax as `v-icon`.",
|
|
41062
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41063
|
+
"value": {
|
|
41064
|
+
"kind": "expression",
|
|
41065
|
+
"type": "any"
|
|
41066
|
+
}
|
|
41067
|
+
},
|
|
41068
|
+
{
|
|
41069
|
+
"name": "appendIcon",
|
|
41070
|
+
"description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot.",
|
|
41071
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41072
|
+
"value": {
|
|
41073
|
+
"kind": "expression",
|
|
41074
|
+
"type": "any"
|
|
41075
|
+
}
|
|
41076
|
+
},
|
|
41077
|
+
{
|
|
41078
|
+
"name": "fluid",
|
|
41079
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VListGroup.json))",
|
|
41080
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41081
|
+
"default": "false",
|
|
41082
|
+
"value": {
|
|
41083
|
+
"kind": "expression",
|
|
41084
|
+
"type": "boolean"
|
|
41085
|
+
}
|
|
41086
|
+
},
|
|
41087
|
+
{
|
|
41088
|
+
"name": "title",
|
|
41089
|
+
"description": "Specify a title text for the component.",
|
|
41090
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41091
|
+
"value": {
|
|
41092
|
+
"kind": "expression",
|
|
41093
|
+
"type": "string"
|
|
41094
|
+
}
|
|
41095
|
+
},
|
|
41096
|
+
{
|
|
41097
|
+
"name": "value",
|
|
41098
|
+
"description": "Expands / Collapse the list-group.",
|
|
41099
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41100
|
+
"value": {
|
|
41101
|
+
"kind": "expression",
|
|
41102
|
+
"type": "any"
|
|
41103
|
+
}
|
|
41104
|
+
},
|
|
41105
|
+
{
|
|
41106
|
+
"name": "tag",
|
|
41107
|
+
"description": "Specify a custom tag used on the root element.",
|
|
41108
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewGroup#props",
|
|
41109
|
+
"default": "'div'",
|
|
41110
|
+
"value": {
|
|
41111
|
+
"kind": "expression",
|
|
41112
|
+
"type": "string"
|
|
41113
|
+
}
|
|
41114
|
+
}
|
|
41115
|
+
],
|
|
41116
|
+
"events": [],
|
|
41117
|
+
"slots": [
|
|
41118
|
+
{
|
|
41119
|
+
"name": "default",
|
|
41120
|
+
"description": "The default Vue slot.",
|
|
41121
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-group#slots"
|
|
41122
|
+
},
|
|
41123
|
+
{
|
|
41124
|
+
"name": "activator",
|
|
41125
|
+
"description": "When used, will activate the component when clicked (or hover for specific components). This manually stops the event propagation. Without this slot, if you open the component through its model, you will need to manually stop the event propagation.",
|
|
41126
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-group#slots",
|
|
41127
|
+
"vue-properties": [
|
|
41128
|
+
{
|
|
41129
|
+
"name": "isOpen",
|
|
41130
|
+
"type": "boolean"
|
|
41131
|
+
},
|
|
41132
|
+
{
|
|
41133
|
+
"name": "props",
|
|
41134
|
+
"type": "Record<string, unknown>"
|
|
41135
|
+
}
|
|
41136
|
+
]
|
|
41137
|
+
}
|
|
41138
|
+
],
|
|
41139
|
+
"vue-model": {
|
|
41140
|
+
"prop": "modelValue",
|
|
41141
|
+
"event": "update:modelValue"
|
|
41142
|
+
}
|
|
41143
|
+
},
|
|
41144
|
+
{
|
|
41145
|
+
"name": "VTreeviewItem",
|
|
41146
|
+
"source": {
|
|
41147
|
+
"module": "./src/components/index.ts",
|
|
41148
|
+
"symbol": "VTreeviewItem"
|
|
41149
|
+
},
|
|
41150
|
+
"description": "",
|
|
41151
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item",
|
|
41152
|
+
"attributes": [
|
|
41153
|
+
{
|
|
41154
|
+
"name": "title",
|
|
41155
|
+
"description": "Generates a `v-list-item-title` component with the supplied value. Note that this overrides the native [`title`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) attribute, that must be set with `v-bind:title.attr` instead.",
|
|
41156
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41157
|
+
"value": {
|
|
41158
|
+
"kind": "expression",
|
|
41159
|
+
"type": "string | number"
|
|
41160
|
+
}
|
|
41161
|
+
},
|
|
41162
|
+
{
|
|
41163
|
+
"name": "subtitle",
|
|
41164
|
+
"description": "Specify a subtitle text for the component.",
|
|
41165
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41166
|
+
"value": {
|
|
41167
|
+
"kind": "expression",
|
|
41168
|
+
"type": "string | number"
|
|
41169
|
+
}
|
|
41170
|
+
},
|
|
41171
|
+
{
|
|
41172
|
+
"name": "loading",
|
|
41173
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VTreeviewItem.json))",
|
|
41174
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41175
|
+
"default": "false",
|
|
41176
|
+
"value": {
|
|
41177
|
+
"kind": "expression",
|
|
41178
|
+
"type": "boolean"
|
|
41179
|
+
}
|
|
41180
|
+
},
|
|
41181
|
+
{
|
|
41182
|
+
"name": "toggleIcon",
|
|
41183
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VTreeviewItem.json))",
|
|
41184
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41185
|
+
"value": {
|
|
41186
|
+
"kind": "expression",
|
|
41187
|
+
"type": "any"
|
|
41188
|
+
}
|
|
41189
|
+
},
|
|
41190
|
+
{
|
|
41191
|
+
"name": "active",
|
|
41192
|
+
"description": "Controls the **active** state of the item. This is typically used to highlight the component.",
|
|
41193
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41194
|
+
"value": {
|
|
41195
|
+
"kind": "expression",
|
|
41196
|
+
"type": "boolean"
|
|
41197
|
+
}
|
|
41198
|
+
},
|
|
41199
|
+
{
|
|
41200
|
+
"name": "activeClass",
|
|
41201
|
+
"description": "The class applied to the component when it matches the current route. Find more information about the [active-class prop](https://router.vuejs.org/api/#active-class) on the [vue-router](https://router.vuejs.org/) documentation.",
|
|
41202
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41203
|
+
"value": {
|
|
41204
|
+
"kind": "expression",
|
|
41205
|
+
"type": "string"
|
|
41206
|
+
}
|
|
41207
|
+
},
|
|
41208
|
+
{
|
|
41209
|
+
"name": "activeColor",
|
|
41210
|
+
"description": "The applied color when the component is in an active state.",
|
|
41211
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41212
|
+
"value": {
|
|
41213
|
+
"kind": "expression",
|
|
41214
|
+
"type": "string"
|
|
41215
|
+
}
|
|
41216
|
+
},
|
|
41217
|
+
{
|
|
41218
|
+
"name": "appendAvatar",
|
|
41219
|
+
"description": "Appends a [v-avatar](/components/avatars/) component after default content in the **append** slot.",
|
|
41220
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41221
|
+
"value": {
|
|
41222
|
+
"kind": "expression",
|
|
41223
|
+
"type": "string"
|
|
41224
|
+
}
|
|
41225
|
+
},
|
|
41226
|
+
{
|
|
41227
|
+
"name": "appendIcon",
|
|
41228
|
+
"description": "Creates a [v-icon](/api/v-icon/) component after default content in the **append** slot.",
|
|
41229
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41230
|
+
"value": {
|
|
41231
|
+
"kind": "expression",
|
|
41232
|
+
"type": "any"
|
|
41233
|
+
}
|
|
41234
|
+
},
|
|
41235
|
+
{
|
|
41236
|
+
"name": "baseColor",
|
|
41237
|
+
"description": "Sets the color of component when not focused.",
|
|
41238
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41239
|
+
"value": {
|
|
41240
|
+
"kind": "expression",
|
|
41241
|
+
"type": "string"
|
|
41242
|
+
}
|
|
41243
|
+
},
|
|
41244
|
+
{
|
|
41245
|
+
"name": "disabled",
|
|
41246
|
+
"description": "Removes the ability to click or target the component.",
|
|
41247
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41248
|
+
"default": "false",
|
|
41249
|
+
"value": {
|
|
41250
|
+
"kind": "expression",
|
|
41251
|
+
"type": "boolean"
|
|
41252
|
+
}
|
|
41253
|
+
},
|
|
41254
|
+
{
|
|
41255
|
+
"name": "link",
|
|
41256
|
+
"description": "Designates that the component is a link. This is automatic when using the href or to prop.",
|
|
41257
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41258
|
+
"value": {
|
|
41259
|
+
"kind": "expression",
|
|
41260
|
+
"type": "boolean"
|
|
41261
|
+
}
|
|
41262
|
+
},
|
|
41263
|
+
{
|
|
41264
|
+
"name": "nav",
|
|
41265
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VListItem.json))",
|
|
41266
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41267
|
+
"default": "false",
|
|
41268
|
+
"value": {
|
|
41269
|
+
"kind": "expression",
|
|
41270
|
+
"type": "boolean"
|
|
41271
|
+
}
|
|
41272
|
+
},
|
|
41273
|
+
{
|
|
41274
|
+
"name": "prependAvatar",
|
|
41275
|
+
"description": "Prepends a [v-avatar](/components/avatars/) component in the **prepend** slot before default content.",
|
|
41276
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41277
|
+
"value": {
|
|
41278
|
+
"kind": "expression",
|
|
41279
|
+
"type": "string"
|
|
41280
|
+
}
|
|
41281
|
+
},
|
|
41282
|
+
{
|
|
41283
|
+
"name": "prependIcon",
|
|
41284
|
+
"description": "Creates a [v-icon](/api/v-icon/) component in the **prepend** slot before default content.",
|
|
41285
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41286
|
+
"value": {
|
|
41287
|
+
"kind": "expression",
|
|
41288
|
+
"type": "any"
|
|
41289
|
+
}
|
|
41290
|
+
},
|
|
41291
|
+
{
|
|
41292
|
+
"name": "ripple",
|
|
41293
|
+
"description": "Applies the [v-ripple](/directives/ripple) directive.",
|
|
41294
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41295
|
+
"default": "true",
|
|
41296
|
+
"value": {
|
|
41297
|
+
"kind": "expression",
|
|
41298
|
+
"type": "boolean | { class: string }"
|
|
41299
|
+
}
|
|
41300
|
+
},
|
|
41301
|
+
{
|
|
41302
|
+
"name": "value",
|
|
41303
|
+
"description": "The value used for selection.",
|
|
41304
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41305
|
+
"value": {
|
|
41306
|
+
"kind": "expression",
|
|
41307
|
+
"type": "any"
|
|
41308
|
+
}
|
|
41309
|
+
},
|
|
41310
|
+
{
|
|
41311
|
+
"name": "slim",
|
|
41312
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VListItem.json))",
|
|
41313
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41314
|
+
"default": "true",
|
|
41315
|
+
"value": {
|
|
41316
|
+
"kind": "expression",
|
|
41317
|
+
"type": "boolean"
|
|
41318
|
+
}
|
|
41319
|
+
},
|
|
41320
|
+
{
|
|
41321
|
+
"name": "border",
|
|
41322
|
+
"description": "Applies border styles to component.",
|
|
41323
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41324
|
+
"default": "false",
|
|
41325
|
+
"value": {
|
|
41326
|
+
"kind": "expression",
|
|
41327
|
+
"type": "string | number | boolean"
|
|
41328
|
+
}
|
|
41329
|
+
},
|
|
41330
|
+
{
|
|
41331
|
+
"name": "density",
|
|
41332
|
+
"description": "Adjusts the vertical height used by the component.",
|
|
41333
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41334
|
+
"default": "'default'",
|
|
41335
|
+
"value": {
|
|
41336
|
+
"kind": "expression",
|
|
41337
|
+
"type": "'default' | 'comfortable' | 'compact'"
|
|
41338
|
+
}
|
|
41339
|
+
},
|
|
41340
|
+
{
|
|
41341
|
+
"name": "height",
|
|
41342
|
+
"description": "Sets the height for the component.",
|
|
41343
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41344
|
+
"value": {
|
|
41345
|
+
"kind": "expression",
|
|
41346
|
+
"type": "string | number"
|
|
41347
|
+
}
|
|
41348
|
+
},
|
|
41349
|
+
{
|
|
41350
|
+
"name": "maxHeight",
|
|
41351
|
+
"description": "Sets the maximum height for the component.",
|
|
41352
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41353
|
+
"value": {
|
|
41354
|
+
"kind": "expression",
|
|
41355
|
+
"type": "string | number"
|
|
41356
|
+
}
|
|
41357
|
+
},
|
|
41358
|
+
{
|
|
41359
|
+
"name": "maxWidth",
|
|
41360
|
+
"description": "Sets the maximum width for the component.",
|
|
41361
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41362
|
+
"value": {
|
|
41363
|
+
"kind": "expression",
|
|
41364
|
+
"type": "string | number"
|
|
41365
|
+
}
|
|
41366
|
+
},
|
|
41367
|
+
{
|
|
41368
|
+
"name": "minHeight",
|
|
41369
|
+
"description": "Sets the minimum height for the component.",
|
|
41370
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41371
|
+
"value": {
|
|
41372
|
+
"kind": "expression",
|
|
41373
|
+
"type": "string | number"
|
|
41374
|
+
}
|
|
41375
|
+
},
|
|
41376
|
+
{
|
|
41377
|
+
"name": "minWidth",
|
|
41378
|
+
"description": "Sets the minimum width for the component.",
|
|
41379
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41380
|
+
"value": {
|
|
41381
|
+
"kind": "expression",
|
|
41382
|
+
"type": "string | number"
|
|
41383
|
+
}
|
|
41384
|
+
},
|
|
41385
|
+
{
|
|
41386
|
+
"name": "width",
|
|
41387
|
+
"description": "Sets the width for the component.",
|
|
41388
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41389
|
+
"value": {
|
|
41390
|
+
"kind": "expression",
|
|
41391
|
+
"type": "string | number"
|
|
41392
|
+
}
|
|
41393
|
+
},
|
|
41394
|
+
{
|
|
41395
|
+
"name": "elevation",
|
|
41396
|
+
"description": "Designates an elevation applied to the component between 0 and 24. You can find more information on the [elevation page](/styles/elevation).",
|
|
41397
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41398
|
+
"value": {
|
|
41399
|
+
"kind": "expression",
|
|
41400
|
+
"type": "string | number"
|
|
41401
|
+
}
|
|
41402
|
+
},
|
|
41403
|
+
{
|
|
41404
|
+
"name": "rounded",
|
|
41405
|
+
"description": "Designates the **border-radius** applied to the component. You can find more information on the [Border Radius page](/styles/border-radius).",
|
|
41406
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41407
|
+
"value": {
|
|
41408
|
+
"kind": "expression",
|
|
41409
|
+
"type": "string | number | boolean"
|
|
41410
|
+
}
|
|
41411
|
+
},
|
|
41412
|
+
{
|
|
41413
|
+
"name": "tile",
|
|
41414
|
+
"description": "Removes any applied **border-radius** from the component.",
|
|
41415
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41416
|
+
"default": "false",
|
|
41417
|
+
"value": {
|
|
41418
|
+
"kind": "expression",
|
|
41419
|
+
"type": "boolean"
|
|
41420
|
+
}
|
|
41421
|
+
},
|
|
41422
|
+
{
|
|
41423
|
+
"name": "href",
|
|
41424
|
+
"description": "Designates the component as anchor and applies the **href** attribute.",
|
|
41425
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41426
|
+
"value": {
|
|
41427
|
+
"kind": "expression",
|
|
41428
|
+
"type": "string"
|
|
41429
|
+
}
|
|
41430
|
+
},
|
|
41431
|
+
{
|
|
41432
|
+
"name": "replace",
|
|
41433
|
+
"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.",
|
|
41434
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41435
|
+
"default": "false",
|
|
41436
|
+
"value": {
|
|
41437
|
+
"kind": "expression",
|
|
41438
|
+
"type": "boolean"
|
|
41439
|
+
}
|
|
41440
|
+
},
|
|
41441
|
+
{
|
|
41442
|
+
"name": "exact",
|
|
41443
|
+
"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.",
|
|
41444
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41445
|
+
"default": "false",
|
|
41446
|
+
"value": {
|
|
41447
|
+
"kind": "expression",
|
|
41448
|
+
"type": "boolean"
|
|
41449
|
+
}
|
|
41450
|
+
},
|
|
41451
|
+
{
|
|
41452
|
+
"name": "to",
|
|
41453
|
+
"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.",
|
|
41454
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41455
|
+
"value": {
|
|
41456
|
+
"kind": "expression",
|
|
41457
|
+
"type": "RouteLocationRaw"
|
|
41458
|
+
}
|
|
41459
|
+
},
|
|
41460
|
+
{
|
|
41461
|
+
"name": "tag",
|
|
41462
|
+
"description": "Specify a custom tag used on the root element.",
|
|
41463
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41464
|
+
"default": "'div'",
|
|
41465
|
+
"value": {
|
|
41466
|
+
"kind": "expression",
|
|
41467
|
+
"type": "string"
|
|
41468
|
+
}
|
|
41469
|
+
},
|
|
41470
|
+
{
|
|
41471
|
+
"name": "theme",
|
|
41472
|
+
"description": "Specify a theme for this component and all of its children.",
|
|
41473
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41474
|
+
"value": {
|
|
41475
|
+
"kind": "expression",
|
|
41476
|
+
"type": "string"
|
|
41477
|
+
}
|
|
41478
|
+
},
|
|
41479
|
+
{
|
|
41480
|
+
"name": "color",
|
|
41481
|
+
"description": "Applies specified color to the control when in an **active** state or **input-value** is **true** - 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),",
|
|
41482
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41483
|
+
"value": {
|
|
41484
|
+
"kind": "expression",
|
|
41485
|
+
"type": "string"
|
|
41486
|
+
}
|
|
41487
|
+
},
|
|
41488
|
+
{
|
|
41489
|
+
"name": "variant",
|
|
41490
|
+
"description": "Applies a distinct style to the component.",
|
|
41491
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41492
|
+
"default": "'text'",
|
|
41493
|
+
"value": {
|
|
41494
|
+
"kind": "expression",
|
|
41495
|
+
"type": "'flat' | 'elevated' | 'tonal' | 'outlined' | 'text' | 'plain'"
|
|
41496
|
+
}
|
|
41497
|
+
},
|
|
41498
|
+
{
|
|
41499
|
+
"name": "lines",
|
|
41500
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VListItem.json))",
|
|
41501
|
+
"doc-url": "https://vuetifyjs.com/api/VTreeviewItem#props",
|
|
41502
|
+
"value": {
|
|
41503
|
+
"kind": "expression",
|
|
41504
|
+
"type": "'one' | 'two' | 'three'"
|
|
41505
|
+
}
|
|
41506
|
+
}
|
|
41507
|
+
],
|
|
41508
|
+
"events": [
|
|
41509
|
+
{
|
|
41510
|
+
"name": "click",
|
|
41511
|
+
"description": "Event that is emitted when the component is clicked.",
|
|
41512
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item#events",
|
|
41513
|
+
"arguments": [
|
|
41514
|
+
{
|
|
41515
|
+
"name": "argument",
|
|
41516
|
+
"type": "[MouseEvent]\n"
|
|
41517
|
+
}
|
|
41518
|
+
]
|
|
41519
|
+
},
|
|
41520
|
+
{
|
|
41521
|
+
"name": "clickOnce",
|
|
41522
|
+
"description": "MISSING DESCRIPTION ([edit in github](https://github.com/vuetifyjs/vuetify/tree//packages/api-generator/src/locale/en/VTreeviewItem.json))",
|
|
41523
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item#events",
|
|
41524
|
+
"arguments": [
|
|
41525
|
+
{
|
|
41526
|
+
"name": "argument",
|
|
41527
|
+
"type": "[MouseEvent]\n"
|
|
41528
|
+
}
|
|
41529
|
+
]
|
|
41530
|
+
}
|
|
41531
|
+
],
|
|
41532
|
+
"slots": [
|
|
41533
|
+
{
|
|
41534
|
+
"name": "prepend",
|
|
41535
|
+
"description": "Adds an item outside the input and before input content.",
|
|
41536
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item#slots",
|
|
41537
|
+
"vue-properties": [
|
|
41538
|
+
{
|
|
41539
|
+
"name": "isActive",
|
|
41540
|
+
"type": "boolean"
|
|
41541
|
+
},
|
|
41542
|
+
{
|
|
41543
|
+
"name": "isSelected",
|
|
41544
|
+
"type": "boolean"
|
|
41545
|
+
},
|
|
41546
|
+
{
|
|
41547
|
+
"name": "isIndeterminate",
|
|
41548
|
+
"type": "boolean"
|
|
41549
|
+
},
|
|
41550
|
+
{
|
|
41551
|
+
"name": "select",
|
|
41552
|
+
"type": "(value: boolean) => void"
|
|
41553
|
+
}
|
|
41554
|
+
]
|
|
41555
|
+
},
|
|
41556
|
+
{
|
|
41557
|
+
"name": "append",
|
|
41558
|
+
"description": "Adds an item inside the input and after input content.",
|
|
41559
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item#slots",
|
|
41560
|
+
"vue-properties": [
|
|
41561
|
+
{
|
|
41562
|
+
"name": "isActive",
|
|
41563
|
+
"type": "boolean"
|
|
41564
|
+
},
|
|
41565
|
+
{
|
|
41566
|
+
"name": "isSelected",
|
|
41567
|
+
"type": "boolean"
|
|
41568
|
+
},
|
|
41569
|
+
{
|
|
41570
|
+
"name": "isIndeterminate",
|
|
41571
|
+
"type": "boolean"
|
|
41572
|
+
},
|
|
41573
|
+
{
|
|
41574
|
+
"name": "select",
|
|
41575
|
+
"type": "(value: boolean) => void"
|
|
41576
|
+
}
|
|
41577
|
+
]
|
|
41578
|
+
},
|
|
41579
|
+
{
|
|
41580
|
+
"name": "default",
|
|
41581
|
+
"description": "The default Vue slot.",
|
|
41582
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item#slots",
|
|
41583
|
+
"vue-properties": [
|
|
41584
|
+
{
|
|
41585
|
+
"name": "isActive",
|
|
41586
|
+
"type": "boolean"
|
|
41587
|
+
},
|
|
41588
|
+
{
|
|
41589
|
+
"name": "isSelected",
|
|
41590
|
+
"type": "boolean"
|
|
41591
|
+
},
|
|
41592
|
+
{
|
|
41593
|
+
"name": "isIndeterminate",
|
|
41594
|
+
"type": "boolean"
|
|
41595
|
+
},
|
|
41596
|
+
{
|
|
41597
|
+
"name": "select",
|
|
41598
|
+
"type": "(value: boolean) => void"
|
|
41599
|
+
}
|
|
41600
|
+
]
|
|
41601
|
+
},
|
|
41602
|
+
{
|
|
41603
|
+
"name": "title",
|
|
41604
|
+
"description": "Slot for the component's title content.",
|
|
41605
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item#slots",
|
|
41606
|
+
"vue-properties": [
|
|
41607
|
+
{
|
|
41608
|
+
"name": "title",
|
|
41609
|
+
"type": "string | number"
|
|
41610
|
+
}
|
|
41611
|
+
]
|
|
41612
|
+
},
|
|
41613
|
+
{
|
|
41614
|
+
"name": "subtitle",
|
|
41615
|
+
"description": "Slot for the component's subtitle content.",
|
|
41616
|
+
"doc-url": "https://vuetifyjs.com/api/v-treeview-item#slots",
|
|
41617
|
+
"vue-properties": [
|
|
41618
|
+
{
|
|
41619
|
+
"name": "subtitle",
|
|
41620
|
+
"type": "string | number"
|
|
41621
|
+
}
|
|
41622
|
+
]
|
|
41623
|
+
}
|
|
41624
|
+
],
|
|
41625
|
+
"vue-model": {
|
|
41626
|
+
"prop": "modelValue",
|
|
41627
|
+
"event": "update:modelValue"
|
|
41628
|
+
}
|
|
41629
|
+
},
|
|
39944
41630
|
{
|
|
39945
41631
|
"name": "VValidation",
|
|
39946
41632
|
"source": {
|