@vuetify/nightly 3.6.1-dev.2024-05-01 → 3.6.3-dev.2024-05-03

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 (61) hide show
  1. package/CHANGELOG.md +7 -2
  2. package/dist/json/attributes.json +3 -3
  3. package/dist/json/importMap-labs.json +30 -30
  4. package/dist/json/importMap.json +162 -162
  5. package/dist/json/web-types.json +18 -17
  6. package/dist/vuetify-labs.css +2024 -2010
  7. package/dist/vuetify-labs.d.ts +275 -233
  8. package/dist/vuetify-labs.esm.js +20 -15
  9. package/dist/vuetify-labs.esm.js.map +1 -1
  10. package/dist/vuetify-labs.js +20 -15
  11. package/dist/vuetify-labs.min.css +2 -2
  12. package/dist/vuetify.css +882 -868
  13. package/dist/vuetify.d.ts +335 -293
  14. package/dist/vuetify.esm.js +20 -15
  15. package/dist/vuetify.esm.js.map +1 -1
  16. package/dist/vuetify.js +20 -15
  17. package/dist/vuetify.js.map +1 -1
  18. package/dist/vuetify.min.css +2 -2
  19. package/dist/vuetify.min.js +20 -21
  20. package/dist/vuetify.min.js.map +1 -1
  21. package/lib/components/VAlert/VAlert.css +3 -1
  22. package/lib/components/VAutocomplete/index.d.mts +18 -18
  23. package/lib/components/VAvatar/VAvatar.css +3 -1
  24. package/lib/components/VBottomSheet/index.d.mts +15 -9
  25. package/lib/components/VBtn/VBtn.css +3 -1
  26. package/lib/components/VCard/VCard.css +3 -1
  27. package/lib/components/VChip/VChip.css +3 -1
  28. package/lib/components/VCombobox/index.d.mts +18 -18
  29. package/lib/components/VDataTable/VDataTableHeaders.mjs +2 -0
  30. package/lib/components/VDataTable/VDataTableHeaders.mjs.map +1 -1
  31. package/lib/components/VDataTable/composables/select.mjs +7 -8
  32. package/lib/components/VDataTable/composables/select.mjs.map +1 -1
  33. package/lib/components/VDatePicker/VDatePicker.mjs +2 -2
  34. package/lib/components/VDatePicker/VDatePicker.mjs.map +1 -1
  35. package/lib/components/VDialog/index.d.mts +33 -27
  36. package/lib/components/VFileInput/VFileInput.mjs.map +1 -1
  37. package/lib/components/VFileInput/index.d.mts +6 -6
  38. package/lib/components/VHover/VHover.mjs +1 -1
  39. package/lib/components/VHover/VHover.mjs.map +1 -1
  40. package/lib/components/VHover/index.d.mts +24 -24
  41. package/lib/components/VList/VListItem.css +3 -1
  42. package/lib/components/VMenu/index.d.mts +33 -27
  43. package/lib/components/VOverlay/VOverlay.mjs +5 -2
  44. package/lib/components/VOverlay/VOverlay.mjs.map +1 -1
  45. package/lib/components/VOverlay/index.d.mts +15 -9
  46. package/lib/components/VSelect/index.d.mts +18 -18
  47. package/lib/components/VSnackbar/VSnackbar.css +3 -1
  48. package/lib/components/VSnackbar/VSnackbar.mjs.map +1 -1
  49. package/lib/components/VSnackbar/index.d.mts +47 -41
  50. package/lib/components/VSpeedDial/index.d.mts +15 -9
  51. package/lib/components/VTooltip/index.d.mts +33 -27
  52. package/lib/components/index.d.mts +275 -233
  53. package/lib/composables/date/adapters/vuetify.mjs +1 -0
  54. package/lib/composables/date/adapters/vuetify.mjs.map +1 -1
  55. package/lib/entry-bundler.mjs +1 -1
  56. package/lib/framework.mjs +1 -1
  57. package/lib/index.d.mts +60 -60
  58. package/lib/labs/VSnackbarQueue/index.d.mts +47 -41
  59. package/lib/labs/components.d.mts +47 -41
  60. package/lib/styles/tools/_variant.sass +3 -1
  61. package/package.json +1 -1
@@ -4171,7 +4171,7 @@ declare const VSnackbar: {
4171
4171
  component?: vue.Component | undefined;
4172
4172
  })>;
4173
4173
  zIndex: string | number;
4174
- modelValue: boolean;
4174
+ modelValue: boolean | null;
4175
4175
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4176
4176
  origin: Anchor | "auto" | "overlap";
4177
4177
  vertical: boolean;
@@ -4221,7 +4221,7 @@ declare const VSnackbar: {
4221
4221
  }) => vue.VNodeChild) | undefined;
4222
4222
  default?: (() => vue.VNodeChild) | undefined;
4223
4223
  actions?: ((arg: {
4224
- isActive: Ref<boolean>;
4224
+ isActive: Ref<boolean | null>;
4225
4225
  }) => vue.VNodeChild) | undefined;
4226
4226
  text?: (() => vue.VNodeChild) | undefined;
4227
4227
  };
@@ -4232,7 +4232,7 @@ declare const VSnackbar: {
4232
4232
  }) => vue.VNodeChild) | undefined;
4233
4233
  default?: false | (() => vue.VNodeChild) | undefined;
4234
4234
  actions?: false | ((arg: {
4235
- isActive: Ref<boolean>;
4235
+ isActive: Ref<boolean | null>;
4236
4236
  }) => vue.VNodeChild) | undefined;
4237
4237
  text?: false | (() => vue.VNodeChild) | undefined;
4238
4238
  } | undefined;
@@ -4243,7 +4243,7 @@ declare const VSnackbar: {
4243
4243
  }) => vue.VNodeChild) | undefined;
4244
4244
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
4245
4245
  "v-slot:actions"?: false | ((arg: {
4246
- isActive: Ref<boolean>;
4246
+ isActive: Ref<boolean | null>;
4247
4247
  }) => vue.VNodeChild) | undefined;
4248
4248
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
4249
4249
  } & {
@@ -4259,7 +4259,7 @@ declare const VSnackbar: {
4259
4259
  component?: vue.Component | undefined;
4260
4260
  });
4261
4261
  zIndex: string | number;
4262
- modelValue: boolean;
4262
+ modelValue: boolean | null;
4263
4263
  origin: Anchor | "auto" | "overlap";
4264
4264
  eager: boolean;
4265
4265
  location: Anchor;
@@ -4286,7 +4286,7 @@ declare const VSnackbar: {
4286
4286
  component?: vue.Component | undefined;
4287
4287
  });
4288
4288
  zIndex: string | number;
4289
- modelValue: boolean;
4289
+ modelValue: boolean | null;
4290
4290
  origin: Anchor | "auto" | "overlap";
4291
4291
  eager: boolean;
4292
4292
  location: Anchor;
@@ -4364,7 +4364,7 @@ declare const VSnackbar: {
4364
4364
  component?: vue.Component | undefined;
4365
4365
  });
4366
4366
  zIndex: string | number;
4367
- modelValue: boolean;
4367
+ modelValue: boolean | null;
4368
4368
  origin: Anchor | "auto" | "overlap";
4369
4369
  eager: boolean;
4370
4370
  location: Anchor;
@@ -4471,7 +4471,7 @@ declare const VSnackbar: {
4471
4471
  component?: vue.Component | undefined;
4472
4472
  });
4473
4473
  zIndex: string | number;
4474
- modelValue: boolean;
4474
+ modelValue: boolean | null;
4475
4475
  origin: Anchor | "auto" | "overlap";
4476
4476
  eager: boolean;
4477
4477
  location: Anchor;
@@ -4567,7 +4567,7 @@ declare const VSnackbar: {
4567
4567
  component?: vue.Component | undefined;
4568
4568
  });
4569
4569
  zIndex: string | number;
4570
- modelValue: boolean;
4570
+ modelValue: boolean | null;
4571
4571
  origin: Anchor | "auto" | "overlap";
4572
4572
  eager: boolean;
4573
4573
  location: Anchor;
@@ -4627,7 +4627,7 @@ declare const VSnackbar: {
4627
4627
  component?: vue.Component | undefined;
4628
4628
  });
4629
4629
  zIndex: string | number;
4630
- modelValue: boolean;
4630
+ modelValue: boolean | null;
4631
4631
  origin: Anchor | "auto" | "overlap";
4632
4632
  eager: boolean;
4633
4633
  location: Anchor;
@@ -4720,7 +4720,7 @@ declare const VSnackbar: {
4720
4720
  component?: vue.Component | undefined;
4721
4721
  })>;
4722
4722
  zIndex: string | number;
4723
- modelValue: boolean;
4723
+ modelValue: boolean | null;
4724
4724
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4725
4725
  origin: Anchor | "auto" | "overlap";
4726
4726
  vertical: boolean;
@@ -4770,7 +4770,7 @@ declare const VSnackbar: {
4770
4770
  }) => vue.VNodeChild) | undefined;
4771
4771
  default?: (() => vue.VNodeChild) | undefined;
4772
4772
  actions?: ((arg: {
4773
- isActive: Ref<boolean>;
4773
+ isActive: Ref<boolean | null>;
4774
4774
  }) => vue.VNodeChild) | undefined;
4775
4775
  text?: (() => vue.VNodeChild) | undefined;
4776
4776
  };
@@ -4781,7 +4781,7 @@ declare const VSnackbar: {
4781
4781
  }) => vue.VNodeChild) | undefined;
4782
4782
  default?: false | (() => vue.VNodeChild) | undefined;
4783
4783
  actions?: false | ((arg: {
4784
- isActive: Ref<boolean>;
4784
+ isActive: Ref<boolean | null>;
4785
4785
  }) => vue.VNodeChild) | undefined;
4786
4786
  text?: false | (() => vue.VNodeChild) | undefined;
4787
4787
  } | undefined;
@@ -4792,7 +4792,7 @@ declare const VSnackbar: {
4792
4792
  }) => vue.VNodeChild) | undefined;
4793
4793
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
4794
4794
  "v-slot:actions"?: false | ((arg: {
4795
- isActive: Ref<boolean>;
4795
+ isActive: Ref<boolean | null>;
4796
4796
  }) => vue.VNodeChild) | undefined;
4797
4797
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
4798
4798
  } & {
@@ -4805,7 +4805,7 @@ declare const VSnackbar: {
4805
4805
  component?: vue.Component | undefined;
4806
4806
  })>;
4807
4807
  zIndex: string | number;
4808
- modelValue: boolean;
4808
+ modelValue: boolean | null;
4809
4809
  rounded: string | number | boolean;
4810
4810
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4811
4811
  origin: Anchor | "auto" | "overlap";
@@ -4836,7 +4836,7 @@ declare const VSnackbar: {
4836
4836
  [key: string]: any;
4837
4837
  }>[];
4838
4838
  actions: (arg: {
4839
- isActive: Ref<boolean>;
4839
+ isActive: Ref<boolean | null>;
4840
4840
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
4841
4841
  [key: string]: any;
4842
4842
  }>[];
@@ -4858,7 +4858,7 @@ declare const VSnackbar: {
4858
4858
  component?: vue.Component | undefined;
4859
4859
  })>;
4860
4860
  zIndex: string | number;
4861
- modelValue: boolean;
4861
+ modelValue: boolean | null;
4862
4862
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
4863
4863
  origin: Anchor | "auto" | "overlap";
4864
4864
  vertical: boolean;
@@ -4908,7 +4908,7 @@ declare const VSnackbar: {
4908
4908
  }) => vue.VNodeChild) | undefined;
4909
4909
  default?: (() => vue.VNodeChild) | undefined;
4910
4910
  actions?: ((arg: {
4911
- isActive: Ref<boolean>;
4911
+ isActive: Ref<boolean | null>;
4912
4912
  }) => vue.VNodeChild) | undefined;
4913
4913
  text?: (() => vue.VNodeChild) | undefined;
4914
4914
  };
@@ -4919,7 +4919,7 @@ declare const VSnackbar: {
4919
4919
  }) => vue.VNodeChild) | undefined;
4920
4920
  default?: false | (() => vue.VNodeChild) | undefined;
4921
4921
  actions?: false | ((arg: {
4922
- isActive: Ref<boolean>;
4922
+ isActive: Ref<boolean | null>;
4923
4923
  }) => vue.VNodeChild) | undefined;
4924
4924
  text?: false | (() => vue.VNodeChild) | undefined;
4925
4925
  } | undefined;
@@ -4930,7 +4930,7 @@ declare const VSnackbar: {
4930
4930
  }) => vue.VNodeChild) | undefined;
4931
4931
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
4932
4932
  "v-slot:actions"?: false | ((arg: {
4933
- isActive: Ref<boolean>;
4933
+ isActive: Ref<boolean | null>;
4934
4934
  }) => vue.VNodeChild) | undefined;
4935
4935
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
4936
4936
  } & {
@@ -4946,7 +4946,7 @@ declare const VSnackbar: {
4946
4946
  component?: vue.Component | undefined;
4947
4947
  });
4948
4948
  zIndex: string | number;
4949
- modelValue: boolean;
4949
+ modelValue: boolean | null;
4950
4950
  origin: Anchor | "auto" | "overlap";
4951
4951
  eager: boolean;
4952
4952
  location: Anchor;
@@ -4973,7 +4973,7 @@ declare const VSnackbar: {
4973
4973
  component?: vue.Component | undefined;
4974
4974
  });
4975
4975
  zIndex: string | number;
4976
- modelValue: boolean;
4976
+ modelValue: boolean | null;
4977
4977
  origin: Anchor | "auto" | "overlap";
4978
4978
  eager: boolean;
4979
4979
  location: Anchor;
@@ -5051,7 +5051,7 @@ declare const VSnackbar: {
5051
5051
  component?: vue.Component | undefined;
5052
5052
  });
5053
5053
  zIndex: string | number;
5054
- modelValue: boolean;
5054
+ modelValue: boolean | null;
5055
5055
  origin: Anchor | "auto" | "overlap";
5056
5056
  eager: boolean;
5057
5057
  location: Anchor;
@@ -5158,7 +5158,7 @@ declare const VSnackbar: {
5158
5158
  component?: vue.Component | undefined;
5159
5159
  });
5160
5160
  zIndex: string | number;
5161
- modelValue: boolean;
5161
+ modelValue: boolean | null;
5162
5162
  origin: Anchor | "auto" | "overlap";
5163
5163
  eager: boolean;
5164
5164
  location: Anchor;
@@ -5254,7 +5254,7 @@ declare const VSnackbar: {
5254
5254
  component?: vue.Component | undefined;
5255
5255
  });
5256
5256
  zIndex: string | number;
5257
- modelValue: boolean;
5257
+ modelValue: boolean | null;
5258
5258
  origin: Anchor | "auto" | "overlap";
5259
5259
  eager: boolean;
5260
5260
  location: Anchor;
@@ -5314,7 +5314,7 @@ declare const VSnackbar: {
5314
5314
  component?: vue.Component | undefined;
5315
5315
  });
5316
5316
  zIndex: string | number;
5317
- modelValue: boolean;
5317
+ modelValue: boolean | null;
5318
5318
  origin: Anchor | "auto" | "overlap";
5319
5319
  eager: boolean;
5320
5320
  location: Anchor;
@@ -5405,7 +5405,7 @@ declare const VSnackbar: {
5405
5405
  component?: vue.Component | undefined;
5406
5406
  })>;
5407
5407
  zIndex: string | number;
5408
- modelValue: boolean;
5408
+ modelValue: boolean | null;
5409
5409
  rounded: string | number | boolean;
5410
5410
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5411
5411
  origin: Anchor | "auto" | "overlap";
@@ -5437,7 +5437,7 @@ declare const VSnackbar: {
5437
5437
  component?: vue.Component | undefined;
5438
5438
  })>;
5439
5439
  zIndex: string | number;
5440
- modelValue: boolean;
5440
+ modelValue: boolean | null;
5441
5441
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5442
5442
  origin: Anchor | "auto" | "overlap";
5443
5443
  vertical: boolean;
@@ -5487,7 +5487,7 @@ declare const VSnackbar: {
5487
5487
  }) => vue.VNodeChild) | undefined;
5488
5488
  default?: (() => vue.VNodeChild) | undefined;
5489
5489
  actions?: ((arg: {
5490
- isActive: Ref<boolean>;
5490
+ isActive: Ref<boolean | null>;
5491
5491
  }) => vue.VNodeChild) | undefined;
5492
5492
  text?: (() => vue.VNodeChild) | undefined;
5493
5493
  };
@@ -5498,7 +5498,7 @@ declare const VSnackbar: {
5498
5498
  }) => vue.VNodeChild) | undefined;
5499
5499
  default?: false | (() => vue.VNodeChild) | undefined;
5500
5500
  actions?: false | ((arg: {
5501
- isActive: Ref<boolean>;
5501
+ isActive: Ref<boolean | null>;
5502
5502
  }) => vue.VNodeChild) | undefined;
5503
5503
  text?: false | (() => vue.VNodeChild) | undefined;
5504
5504
  } | undefined;
@@ -5509,7 +5509,7 @@ declare const VSnackbar: {
5509
5509
  }) => vue.VNodeChild) | undefined;
5510
5510
  "v-slot:default"?: false | (() => vue.VNodeChild) | undefined;
5511
5511
  "v-slot:actions"?: false | ((arg: {
5512
- isActive: Ref<boolean>;
5512
+ isActive: Ref<boolean | null>;
5513
5513
  }) => vue.VNodeChild) | undefined;
5514
5514
  "v-slot:text"?: false | (() => vue.VNodeChild) | undefined;
5515
5515
  } & {
@@ -5525,7 +5525,7 @@ declare const VSnackbar: {
5525
5525
  component?: vue.Component | undefined;
5526
5526
  });
5527
5527
  zIndex: string | number;
5528
- modelValue: boolean;
5528
+ modelValue: boolean | null;
5529
5529
  origin: Anchor | "auto" | "overlap";
5530
5530
  eager: boolean;
5531
5531
  location: Anchor;
@@ -5552,7 +5552,7 @@ declare const VSnackbar: {
5552
5552
  component?: vue.Component | undefined;
5553
5553
  });
5554
5554
  zIndex: string | number;
5555
- modelValue: boolean;
5555
+ modelValue: boolean | null;
5556
5556
  origin: Anchor | "auto" | "overlap";
5557
5557
  eager: boolean;
5558
5558
  location: Anchor;
@@ -5630,7 +5630,7 @@ declare const VSnackbar: {
5630
5630
  component?: vue.Component | undefined;
5631
5631
  });
5632
5632
  zIndex: string | number;
5633
- modelValue: boolean;
5633
+ modelValue: boolean | null;
5634
5634
  origin: Anchor | "auto" | "overlap";
5635
5635
  eager: boolean;
5636
5636
  location: Anchor;
@@ -5737,7 +5737,7 @@ declare const VSnackbar: {
5737
5737
  component?: vue.Component | undefined;
5738
5738
  });
5739
5739
  zIndex: string | number;
5740
- modelValue: boolean;
5740
+ modelValue: boolean | null;
5741
5741
  origin: Anchor | "auto" | "overlap";
5742
5742
  eager: boolean;
5743
5743
  location: Anchor;
@@ -5833,7 +5833,7 @@ declare const VSnackbar: {
5833
5833
  component?: vue.Component | undefined;
5834
5834
  });
5835
5835
  zIndex: string | number;
5836
- modelValue: boolean;
5836
+ modelValue: boolean | null;
5837
5837
  origin: Anchor | "auto" | "overlap";
5838
5838
  eager: boolean;
5839
5839
  location: Anchor;
@@ -5893,7 +5893,7 @@ declare const VSnackbar: {
5893
5893
  component?: vue.Component | undefined;
5894
5894
  });
5895
5895
  zIndex: string | number;
5896
- modelValue: boolean;
5896
+ modelValue: boolean | null;
5897
5897
  origin: Anchor | "auto" | "overlap";
5898
5898
  eager: boolean;
5899
5899
  location: Anchor;
@@ -5986,7 +5986,7 @@ declare const VSnackbar: {
5986
5986
  component?: vue.Component | undefined;
5987
5987
  })>;
5988
5988
  zIndex: string | number;
5989
- modelValue: boolean;
5989
+ modelValue: boolean | null;
5990
5990
  rounded: string | number | boolean;
5991
5991
  variant: "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain";
5992
5992
  origin: Anchor | "auto" | "overlap";
@@ -6017,7 +6017,7 @@ declare const VSnackbar: {
6017
6017
  [key: string]: any;
6018
6018
  }>[];
6019
6019
  actions: (arg: {
6020
- isActive: Ref<boolean>;
6020
+ isActive: Ref<boolean | null>;
6021
6021
  }) => vue.VNode<vue.RendererNode, vue.RendererElement, {
6022
6022
  [key: string]: any;
6023
6023
  }>[];
@@ -6055,7 +6055,10 @@ declare const VSnackbar: {
6055
6055
  type: (StringConstructor | NumberConstructor)[];
6056
6056
  default: number;
6057
6057
  };
6058
- modelValue: BooleanConstructor;
6058
+ modelValue: {
6059
+ type: vue.PropType<boolean | null>;
6060
+ default: null;
6061
+ };
6059
6062
  contentClass: null;
6060
6063
  origin: {
6061
6064
  type: vue.PropType<Anchor | "auto" | "overlap">;
@@ -6156,7 +6159,10 @@ declare const VSnackbar: {
6156
6159
  type: (StringConstructor | NumberConstructor)[];
6157
6160
  default: number;
6158
6161
  };
6159
- modelValue: BooleanConstructor;
6162
+ modelValue: {
6163
+ type: vue.PropType<boolean | null>;
6164
+ default: null;
6165
+ };
6160
6166
  contentClass: null;
6161
6167
  origin: {
6162
6168
  type: vue.PropType<Anchor | "auto" | "overlap">;
@@ -45,9 +45,11 @@
45
45
  background: currentColor
46
46
  opacity: var(--v-activated-opacity)
47
47
  border-radius: inherit
48
- position: absolute
49
48
  top: 0
50
49
  right: 0
51
50
  bottom: 0
52
51
  left: 0
53
52
  pointer-events: none
53
+
54
+ .#{$name}__underlay
55
+ position: absolute
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@vuetify/nightly",
3
3
  "description": "Vue Material Component Framework",
4
- "version": "3.6.1-dev.2024-05-01",
4
+ "version": "3.6.3-dev.2024-05-03",
5
5
  "author": {
6
6
  "name": "John Leider",
7
7
  "email": "john@vuetifyjs.com"