@vuetify/nightly 3.6.3-master.2024-05-05 → 3.6.3-master.2024-05-07

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.
Files changed (67) hide show
  1. package/CHANGELOG.md +11 -2
  2. package/dist/json/attributes.json +148 -8
  3. package/dist/json/importMap-labs.json +16 -16
  4. package/dist/json/importMap.json +118 -118
  5. package/dist/json/tags.json +36 -1
  6. package/dist/json/web-types.json +436 -26
  7. package/dist/vuetify-labs.css +2038 -1778
  8. package/dist/vuetify-labs.d.ts +631 -317
  9. package/dist/vuetify-labs.esm.js +72 -92
  10. package/dist/vuetify-labs.esm.js.map +1 -1
  11. package/dist/vuetify-labs.js +72 -92
  12. package/dist/vuetify-labs.min.css +3 -3
  13. package/dist/vuetify.css +2396 -2136
  14. package/dist/vuetify.d.ts +276 -318
  15. package/dist/vuetify.esm.js +19 -17
  16. package/dist/vuetify.esm.js.map +1 -1
  17. package/dist/vuetify.js +19 -17
  18. package/dist/vuetify.js.map +1 -1
  19. package/dist/vuetify.min.css +3 -3
  20. package/dist/vuetify.min.js +15 -15
  21. package/dist/vuetify.min.js.map +1 -1
  22. package/lib/components/VAutocomplete/VAutocomplete.mjs +1 -1
  23. package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
  24. package/lib/components/VAutocomplete/index.d.mts +18 -18
  25. package/lib/components/VBottomSheet/index.d.mts +9 -15
  26. package/lib/components/VCarousel/index.d.mts +6 -6
  27. package/lib/components/VCombobox/index.d.mts +18 -18
  28. package/lib/components/VDialog/index.d.mts +27 -33
  29. package/lib/components/VFileInput/VFileInput.mjs +1 -1
  30. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  31. package/lib/components/VFileInput/index.d.mts +9 -9
  32. package/lib/components/VImg/index.d.mts +6 -6
  33. package/lib/components/VList/VListItem.mjs +3 -2
  34. package/lib/components/VList/VListItem.mjs.map +1 -1
  35. package/lib/components/VList/index.d.mts +6 -6
  36. package/lib/components/VMenu/index.d.mts +27 -33
  37. package/lib/components/VOverlay/VOverlay.mjs +2 -5
  38. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  39. package/lib/components/VOverlay/index.d.mts +9 -15
  40. package/lib/components/VResponsive/VResponsive.mjs +1 -1
  41. package/lib/components/VResponsive/VResponsive.mjs.map +1 -1
  42. package/lib/components/VResponsive/index.d.mts +6 -6
  43. package/lib/components/VSelect/index.d.mts +18 -18
  44. package/lib/components/VSlideGroup/VSlideGroup.mjs.map +1 -1
  45. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  46. package/lib/components/VSnackbar/index.d.mts +41 -47
  47. package/lib/components/VSpeedDial/index.d.mts +9 -15
  48. package/lib/components/VTabs/VTabs.mjs +8 -3
  49. package/lib/components/VTabs/VTabs.mjs.map +1 -1
  50. package/lib/components/VToolbar/VToolbar.css +5 -5
  51. package/lib/components/VToolbar/_variables.scss +3 -3
  52. package/lib/components/VTooltip/index.d.mts +27 -33
  53. package/lib/components/index.d.mts +236 -278
  54. package/lib/composables/component.mjs +1 -1
  55. package/lib/composables/component.mjs.map +1 -1
  56. package/lib/entry-bundler.mjs +1 -1
  57. package/lib/framework.mjs +1 -1
  58. package/lib/index.d.mts +40 -40
  59. package/lib/labs/VNumberInput/VNumberInput.mjs +57 -81
  60. package/lib/labs/VNumberInput/VNumberInput.mjs.map +1 -1
  61. package/lib/labs/VNumberInput/index.d.mts +402 -34
  62. package/lib/labs/VSnackbarQueue/index.d.mts +41 -47
  63. package/lib/labs/VTreeview/index.d.mts +6 -6
  64. package/lib/labs/components.d.mts +442 -86
  65. package/lib/styles/generic/_colors.scss +1 -0
  66. package/lib/styles/main.css +260 -0
  67. package/package.json +2 -2
@@ -118,7 +118,7 @@ declare const VSnackbar: {
118
118
  component?: vue.Component | undefined;
119
119
  })>;
120
120
  zIndex: string | number;
121
- modelValue: boolean | null;
121
+ modelValue: boolean;
122
122
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
123
123
  origin: Anchor | "auto" | "overlap";
124
124
  vertical: boolean;
@@ -168,7 +168,7 @@ declare const VSnackbar: {
168
168
  }) => vue.VNodeChild) | undefined;
169
169
  default?: (() => vue.VNodeChild) | undefined;
170
170
  actions?: ((arg: {
171
- isActive: Ref<boolean | null>;
171
+ isActive: Ref<boolean>;
172
172
  }) => vue.VNodeChild) | undefined;
173
173
  text?: (() => vue.VNodeChild) | undefined;
174
174
  };
@@ -179,7 +179,7 @@ declare const VSnackbar: {
179
179
  }) => vue.VNodeChild) | undefined;
180
180
  default?: false | (() => vue.VNodeChild) | undefined;
181
181
  actions?: false | ((arg: {
182
- isActive: Ref<boolean | null>;
182
+ isActive: Ref<boolean>;
183
183
  }) => vue.VNodeChild) | undefined;
184
184
  text?: false | (() => vue.VNodeChild) | undefined;
185
185
  } | undefined;
@@ -190,7 +190,7 @@ declare const VSnackbar: {
190
190
  }) => vue.VNodeChild) | undefined;
191
191
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
192
192
  "v-slot:actions"?: false | ((arg: {
193
- isActive: Ref<boolean | null>;
193
+ isActive: Ref<boolean>;
194
194
  }) => vue.VNodeChild) | undefined;
195
195
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
196
196
  } & {
@@ -206,7 +206,7 @@ declare const VSnackbar: {
206
206
  component?: vue.Component | undefined;
207
207
  });
208
208
  zIndex: string | number;
209
- modelValue: boolean | null;
209
+ modelValue: boolean;
210
210
  origin: Anchor | "auto" | "overlap";
211
211
  eager: boolean;
212
212
  location: Anchor;
@@ -233,7 +233,7 @@ declare const VSnackbar: {
233
233
  component?: vue.Component | undefined;
234
234
  });
235
235
  zIndex: string | number;
236
- modelValue: boolean | null;
236
+ modelValue: boolean;
237
237
  origin: Anchor | "auto" | "overlap";
238
238
  eager: boolean;
239
239
  location: Anchor;
@@ -311,7 +311,7 @@ declare const VSnackbar: {
311
311
  component?: vue.Component | undefined;
312
312
  });
313
313
  zIndex: string | number;
314
- modelValue: boolean | null;
314
+ modelValue: boolean;
315
315
  origin: Anchor | "auto" | "overlap";
316
316
  eager: boolean;
317
317
  location: Anchor;
@@ -418,7 +418,7 @@ declare const VSnackbar: {
418
418
  component?: vue.Component | undefined;
419
419
  });
420
420
  zIndex: string | number;
421
- modelValue: boolean | null;
421
+ modelValue: boolean;
422
422
  origin: Anchor | "auto" | "overlap";
423
423
  eager: boolean;
424
424
  location: Anchor;
@@ -514,7 +514,7 @@ declare const VSnackbar: {
514
514
  component?: vue.Component | undefined;
515
515
  });
516
516
  zIndex: string | number;
517
- modelValue: boolean | null;
517
+ modelValue: boolean;
518
518
  origin: Anchor | "auto" | "overlap";
519
519
  eager: boolean;
520
520
  location: Anchor;
@@ -574,7 +574,7 @@ declare const VSnackbar: {
574
574
  component?: vue.Component | undefined;
575
575
  });
576
576
  zIndex: string | number;
577
- modelValue: boolean | null;
577
+ modelValue: boolean;
578
578
  origin: Anchor | "auto" | "overlap";
579
579
  eager: boolean;
580
580
  location: Anchor;
@@ -667,7 +667,7 @@ declare const VSnackbar: {
667
667
  component?: vue.Component | undefined;
668
668
  })>;
669
669
  zIndex: string | number;
670
- modelValue: boolean | null;
670
+ modelValue: boolean;
671
671
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
672
672
  origin: Anchor | "auto" | "overlap";
673
673
  vertical: boolean;
@@ -717,7 +717,7 @@ declare const VSnackbar: {
717
717
  }) => vue.VNodeChild) | undefined;
718
718
  default?: (() => vue.VNodeChild) | undefined;
719
719
  actions?: ((arg: {
720
- isActive: Ref<boolean | null>;
720
+ isActive: Ref<boolean>;
721
721
  }) => vue.VNodeChild) | undefined;
722
722
  text?: (() => vue.VNodeChild) | undefined;
723
723
  };
@@ -728,7 +728,7 @@ declare const VSnackbar: {
728
728
  }) => vue.VNodeChild) | undefined;
729
729
  default?: false | (() => vue.VNodeChild) | undefined;
730
730
  actions?: false | ((arg: {
731
- isActive: Ref<boolean | null>;
731
+ isActive: Ref<boolean>;
732
732
  }) => vue.VNodeChild) | undefined;
733
733
  text?: false | (() => vue.VNodeChild) | undefined;
734
734
  } | undefined;
@@ -739,7 +739,7 @@ declare const VSnackbar: {
739
739
  }) => vue.VNodeChild) | undefined;
740
740
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
741
741
  "v-slot:actions"?: false | ((arg: {
742
- isActive: Ref<boolean | null>;
742
+ isActive: Ref<boolean>;
743
743
  }) => vue.VNodeChild) | undefined;
744
744
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
745
745
  } & {
@@ -752,7 +752,7 @@ declare const VSnackbar: {
752
752
  component?: vue.Component | undefined;
753
753
  })>;
754
754
  zIndex: string | number;
755
- modelValue: boolean | null;
755
+ modelValue: boolean;
756
756
  rounded: string | number | boolean;
757
757
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
758
758
  origin: Anchor | "auto" | "overlap";
@@ -783,7 +783,7 @@ declare const VSnackbar: {
783
783
  [key: string]: any;
784
784
  }>[];
785
785
  actions: (arg: {
786
- isActive: Ref<boolean | null>;
786
+ isActive: Ref<boolean>;
787
787
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
788
788
  [key: string]: any;
789
789
  }>[];
@@ -805,7 +805,7 @@ declare const VSnackbar: {
805
805
  component?: vue.Component | undefined;
806
806
  })>;
807
807
  zIndex: string | number;
808
- modelValue: boolean | null;
808
+ modelValue: boolean;
809
809
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
810
810
  origin: Anchor | "auto" | "overlap";
811
811
  vertical: boolean;
@@ -855,7 +855,7 @@ declare const VSnackbar: {
855
855
  }) => vue.VNodeChild) | undefined;
856
856
  default?: (() => vue.VNodeChild) | undefined;
857
857
  actions?: ((arg: {
858
- isActive: Ref<boolean | null>;
858
+ isActive: Ref<boolean>;
859
859
  }) => vue.VNodeChild) | undefined;
860
860
  text?: (() => vue.VNodeChild) | undefined;
861
861
  };
@@ -866,7 +866,7 @@ declare const VSnackbar: {
866
866
  }) => vue.VNodeChild) | undefined;
867
867
  default?: false | (() => vue.VNodeChild) | undefined;
868
868
  actions?: false | ((arg: {
869
- isActive: Ref<boolean | null>;
869
+ isActive: Ref<boolean>;
870
870
  }) => vue.VNodeChild) | undefined;
871
871
  text?: false | (() => vue.VNodeChild) | undefined;
872
872
  } | undefined;
@@ -877,7 +877,7 @@ declare const VSnackbar: {
877
877
  }) => vue.VNodeChild) | undefined;
878
878
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
879
879
  "v-slot:actions"?: false | ((arg: {
880
- isActive: Ref<boolean | null>;
880
+ isActive: Ref<boolean>;
881
881
  }) => vue.VNodeChild) | undefined;
882
882
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
883
883
  } & {
@@ -893,7 +893,7 @@ declare const VSnackbar: {
893
893
  component?: vue.Component | undefined;
894
894
  });
895
895
  zIndex: string | number;
896
- modelValue: boolean | null;
896
+ modelValue: boolean;
897
897
  origin: Anchor | "auto" | "overlap";
898
898
  eager: boolean;
899
899
  location: Anchor;
@@ -920,7 +920,7 @@ declare const VSnackbar: {
920
920
  component?: vue.Component | undefined;
921
921
  });
922
922
  zIndex: string | number;
923
- modelValue: boolean | null;
923
+ modelValue: boolean;
924
924
  origin: Anchor | "auto" | "overlap";
925
925
  eager: boolean;
926
926
  location: Anchor;
@@ -998,7 +998,7 @@ declare const VSnackbar: {
998
998
  component?: vue.Component | undefined;
999
999
  });
1000
1000
  zIndex: string | number;
1001
- modelValue: boolean | null;
1001
+ modelValue: boolean;
1002
1002
  origin: Anchor | "auto" | "overlap";
1003
1003
  eager: boolean;
1004
1004
  location: Anchor;
@@ -1105,7 +1105,7 @@ declare const VSnackbar: {
1105
1105
  component?: vue.Component | undefined;
1106
1106
  });
1107
1107
  zIndex: string | number;
1108
- modelValue: boolean | null;
1108
+ modelValue: boolean;
1109
1109
  origin: Anchor | "auto" | "overlap";
1110
1110
  eager: boolean;
1111
1111
  location: Anchor;
@@ -1201,7 +1201,7 @@ declare const VSnackbar: {
1201
1201
  component?: vue.Component | undefined;
1202
1202
  });
1203
1203
  zIndex: string | number;
1204
- modelValue: boolean | null;
1204
+ modelValue: boolean;
1205
1205
  origin: Anchor | "auto" | "overlap";
1206
1206
  eager: boolean;
1207
1207
  location: Anchor;
@@ -1261,7 +1261,7 @@ declare const VSnackbar: {
1261
1261
  component?: vue.Component | undefined;
1262
1262
  });
1263
1263
  zIndex: string | number;
1264
- modelValue: boolean | null;
1264
+ modelValue: boolean;
1265
1265
  origin: Anchor | "auto" | "overlap";
1266
1266
  eager: boolean;
1267
1267
  location: Anchor;
@@ -1352,7 +1352,7 @@ declare const VSnackbar: {
1352
1352
  component?: vue.Component | undefined;
1353
1353
  })>;
1354
1354
  zIndex: string | number;
1355
- modelValue: boolean | null;
1355
+ modelValue: boolean;
1356
1356
  rounded: string | number | boolean;
1357
1357
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
1358
1358
  origin: Anchor | "auto" | "overlap";
@@ -1384,7 +1384,7 @@ declare const VSnackbar: {
1384
1384
  component?: vue.Component | undefined;
1385
1385
  })>;
1386
1386
  zIndex: string | number;
1387
- modelValue: boolean | null;
1387
+ modelValue: boolean;
1388
1388
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
1389
1389
  origin: Anchor | "auto" | "overlap";
1390
1390
  vertical: boolean;
@@ -1434,7 +1434,7 @@ declare const VSnackbar: {
1434
1434
  }) => vue.VNodeChild) | undefined;
1435
1435
  default?: (() => vue.VNodeChild) | undefined;
1436
1436
  actions?: ((arg: {
1437
- isActive: Ref<boolean | null>;
1437
+ isActive: Ref<boolean>;
1438
1438
  }) => vue.VNodeChild) | undefined;
1439
1439
  text?: (() => vue.VNodeChild) | undefined;
1440
1440
  };
@@ -1445,7 +1445,7 @@ declare const VSnackbar: {
1445
1445
  }) => vue.VNodeChild) | undefined;
1446
1446
  default?: false | (() => vue.VNodeChild) | undefined;
1447
1447
  actions?: false | ((arg: {
1448
- isActive: Ref<boolean | null>;
1448
+ isActive: Ref<boolean>;
1449
1449
  }) => vue.VNodeChild) | undefined;
1450
1450
  text?: false | (() => vue.VNodeChild) | undefined;
1451
1451
  } | undefined;
@@ -1456,7 +1456,7 @@ declare const VSnackbar: {
1456
1456
  }) => vue.VNodeChild) | undefined;
1457
1457
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
1458
1458
  "v-slot:actions"?: false | ((arg: {
1459
- isActive: Ref<boolean | null>;
1459
+ isActive: Ref<boolean>;
1460
1460
  }) => vue.VNodeChild) | undefined;
1461
1461
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
1462
1462
  } & {
@@ -1472,7 +1472,7 @@ declare const VSnackbar: {
1472
1472
  component?: vue.Component | undefined;
1473
1473
  });
1474
1474
  zIndex: string | number;
1475
- modelValue: boolean | null;
1475
+ modelValue: boolean;
1476
1476
  origin: Anchor | "auto" | "overlap";
1477
1477
  eager: boolean;
1478
1478
  location: Anchor;
@@ -1499,7 +1499,7 @@ declare const VSnackbar: {
1499
1499
  component?: vue.Component | undefined;
1500
1500
  });
1501
1501
  zIndex: string | number;
1502
- modelValue: boolean | null;
1502
+ modelValue: boolean;
1503
1503
  origin: Anchor | "auto" | "overlap";
1504
1504
  eager: boolean;
1505
1505
  location: Anchor;
@@ -1577,7 +1577,7 @@ declare const VSnackbar: {
1577
1577
  component?: vue.Component | undefined;
1578
1578
  });
1579
1579
  zIndex: string | number;
1580
- modelValue: boolean | null;
1580
+ modelValue: boolean;
1581
1581
  origin: Anchor | "auto" | "overlap";
1582
1582
  eager: boolean;
1583
1583
  location: Anchor;
@@ -1684,7 +1684,7 @@ declare const VSnackbar: {
1684
1684
  component?: vue.Component | undefined;
1685
1685
  });
1686
1686
  zIndex: string | number;
1687
- modelValue: boolean | null;
1687
+ modelValue: boolean;
1688
1688
  origin: Anchor | "auto" | "overlap";
1689
1689
  eager: boolean;
1690
1690
  location: Anchor;
@@ -1780,7 +1780,7 @@ declare const VSnackbar: {
1780
1780
  component?: vue.Component | undefined;
1781
1781
  });
1782
1782
  zIndex: string | number;
1783
- modelValue: boolean | null;
1783
+ modelValue: boolean;
1784
1784
  origin: Anchor | "auto" | "overlap";
1785
1785
  eager: boolean;
1786
1786
  location: Anchor;
@@ -1840,7 +1840,7 @@ declare const VSnackbar: {
1840
1840
  component?: vue.Component | undefined;
1841
1841
  });
1842
1842
  zIndex: string | number;
1843
- modelValue: boolean | null;
1843
+ modelValue: boolean;
1844
1844
  origin: Anchor | "auto" | "overlap";
1845
1845
  eager: boolean;
1846
1846
  location: Anchor;
@@ -1933,7 +1933,7 @@ declare const VSnackbar: {
1933
1933
  component?: vue.Component | undefined;
1934
1934
  })>;
1935
1935
  zIndex: string | number;
1936
- modelValue: boolean | null;
1936
+ modelValue: boolean;
1937
1937
  rounded: string | number | boolean;
1938
1938
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
1939
1939
  origin: Anchor | "auto" | "overlap";
@@ -1964,7 +1964,7 @@ declare const VSnackbar: {
1964
1964
  [key: string]: any;
1965
1965
  }>[];
1966
1966
  actions: (arg: {
1967
- isActive: Ref<boolean | null>;
1967
+ isActive: Ref<boolean>;
1968
1968
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
1969
1969
  [key: string]: any;
1970
1970
  }>[];
@@ -2002,10 +2002,7 @@ declare const VSnackbar: {
2002
2002
  type: (StringConstructor | NumberConstructor)[];
2003
2003
  default: number;
2004
2004
  };
2005
- modelValue: {
2006
- type: vue.PropType<boolean | null>;
2007
- default: null;
2008
- };
2005
+ modelValue: BooleanConstructor;
2009
2006
  contentClass: null;
2010
2007
  origin: {
2011
2008
  type: vue.PropType<Anchor | "auto" | "overlap">;
@@ -2106,10 +2103,7 @@ declare const VSnackbar: {
2106
2103
  type: (StringConstructor | NumberConstructor)[];
2107
2104
  default: number;
2108
2105
  };
2109
- modelValue: {
2110
- type: vue.PropType<boolean | null>;
2111
- default: null;
2112
- };
2106
+ modelValue: BooleanConstructor;
2113
2107
  contentClass: null;
2114
2108
  origin: {
2115
2109
  type: vue.PropType<Anchor | "auto" | "overlap">;
@@ -997,7 +997,7 @@ declare const VTreeviewItem: {
997
997
  prependAvatar?: string | undefined;
998
998
  activeColor?: string | undefined;
999
999
  subtitle?: string | number | undefined;
1000
- lines?: "one" | "two" | "three" | undefined;
1000
+ lines?: false | "one" | "two" | "three" | undefined;
1001
1001
  toggleIcon?: IconValue | undefined;
1002
1002
  } & {
1003
1003
  $children?: vue.VNodeChild | {
@@ -1114,7 +1114,7 @@ declare const VTreeviewItem: {
1114
1114
  prependAvatar?: string | undefined;
1115
1115
  activeColor?: string | undefined;
1116
1116
  subtitle?: string | number | undefined;
1117
- lines?: "one" | "two" | "three" | undefined;
1117
+ lines?: false | "one" | "two" | "three" | undefined;
1118
1118
  toggleIcon?: IconValue | undefined;
1119
1119
  } & {
1120
1120
  $children?: vue.VNodeChild | {
@@ -1287,7 +1287,7 @@ declare const VTreeviewItem: {
1287
1287
  prependAvatar?: string | undefined;
1288
1288
  activeColor?: string | undefined;
1289
1289
  subtitle?: string | number | undefined;
1290
- lines?: "one" | "two" | "three" | undefined;
1290
+ lines?: false | "one" | "two" | "three" | undefined;
1291
1291
  toggleIcon?: IconValue | undefined;
1292
1292
  } & {
1293
1293
  $children?: vue.VNodeChild | {
@@ -1426,7 +1426,7 @@ declare const VTreeviewItem: {
1426
1426
  prependAvatar?: string | undefined;
1427
1427
  activeColor?: string | undefined;
1428
1428
  subtitle?: string | number | undefined;
1429
- lines?: "one" | "two" | "three" | undefined;
1429
+ lines?: false | "one" | "two" | "three" | undefined;
1430
1430
  toggleIcon?: IconValue | undefined;
1431
1431
  } & {
1432
1432
  $children?: vue.VNodeChild | {
@@ -1603,7 +1603,7 @@ declare const VTreeviewItem: {
1603
1603
  appendIcon: vue.PropType<IconValue>;
1604
1604
  baseColor: StringConstructor;
1605
1605
  disabled: BooleanConstructor;
1606
- lines: vue.PropType<"one" | "two" | "three">;
1606
+ lines: vue.PropType<false | "one" | "two" | "three">;
1607
1607
  link: {
1608
1608
  type: BooleanConstructor;
1609
1609
  default: undefined;
@@ -1683,7 +1683,7 @@ declare const VTreeviewItem: {
1683
1683
  appendIcon: vue.PropType<IconValue>;
1684
1684
  baseColor: StringConstructor;
1685
1685
  disabled: BooleanConstructor;
1686
- lines: vue.PropType<"one" | "two" | "three">;
1686
+ lines: vue.PropType<false | "one" | "two" | "three">;
1687
1687
  link: {
1688
1688
  type: BooleanConstructor;
1689
1689
  default: undefined;