@vuetify/nightly 3.7.17-dev.2025-03-18 → 3.7.18-dev.2025-03-19

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 +18 -3
  2. package/dist/json/attributes.json +3587 -3543
  3. package/dist/json/importMap-labs.json +36 -36
  4. package/dist/json/importMap.json +166 -166
  5. package/dist/json/tags.json +11 -0
  6. package/dist/json/web-types.json +6725 -6620
  7. package/dist/vuetify-labs.cjs +31517 -0
  8. package/dist/vuetify-labs.css +4465 -4458
  9. package/dist/vuetify-labs.d.ts +155 -82
  10. package/dist/vuetify-labs.esm.js +53 -9
  11. package/dist/vuetify-labs.esm.js.map +1 -1
  12. package/dist/vuetify-labs.js +53 -9
  13. package/dist/vuetify-labs.min.css +2 -2
  14. package/dist/vuetify.cjs +29151 -0
  15. package/dist/vuetify.cjs.map +1 -0
  16. package/dist/vuetify.css +2280 -2273
  17. package/dist/vuetify.d.ts +115 -76
  18. package/dist/vuetify.esm.js +53 -8
  19. package/dist/vuetify.esm.js.map +1 -1
  20. package/dist/vuetify.js +53 -8
  21. package/dist/vuetify.js.map +1 -1
  22. package/dist/vuetify.min.css +2 -2
  23. package/dist/vuetify.min.js +18 -18
  24. package/dist/vuetify.min.js.map +1 -1
  25. package/lib/blueprints/md1.js +10 -0
  26. package/lib/blueprints/md1.js.map +1 -1
  27. package/lib/blueprints/md2.js +10 -0
  28. package/lib/blueprints/md2.js.map +1 -1
  29. package/lib/blueprints/md3.js +12 -0
  30. package/lib/blueprints/md3.js.map +1 -1
  31. package/lib/components/VBtnGroup/VBtnGroup.d.ts +6 -6
  32. package/lib/components/VBtnToggle/VBtnToggle.d.ts +6 -6
  33. package/lib/components/VColorPicker/VColorPicker.d.ts +13 -0
  34. package/lib/components/VConfirmEdit/VConfirmEdit.d.ts +13 -0
  35. package/lib/components/VConfirmEdit/VConfirmEdit.js +3 -2
  36. package/lib/components/VConfirmEdit/VConfirmEdit.js.map +1 -1
  37. package/lib/components/VDatePicker/VDatePicker.d.ts +33 -0
  38. package/lib/components/VDatePicker/VDatePicker.js +4 -0
  39. package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
  40. package/lib/components/VDatePicker/VDatePickerControls.css +1 -0
  41. package/lib/components/VDatePicker/VDatePickerControls.d.ts +10 -0
  42. package/lib/components/VDatePicker/VDatePickerControls.js +8 -2
  43. package/lib/components/VDatePicker/VDatePickerControls.js.map +1 -1
  44. package/lib/components/VDatePicker/VDatePickerControls.sass +2 -0
  45. package/lib/components/VDatePicker/VDatePickerMonth.js +2 -2
  46. package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
  47. package/lib/components/VDatePicker/_variables.scss +1 -0
  48. package/lib/entry-bundler.js +1 -1
  49. package/lib/framework.d.ts +64 -64
  50. package/lib/framework.js +1 -1
  51. package/lib/labs/VDateInput/VDateInput.d.ts +39 -6
  52. package/lib/labs/VDateInput/VDateInput.js +0 -1
  53. package/lib/labs/VDateInput/VDateInput.js.map +1 -1
  54. package/lib/labs/VPicker/VPicker.css +6 -0
  55. package/lib/labs/VPicker/VPicker.d.ts +13 -0
  56. package/lib/labs/VPicker/VPicker.js +2 -0
  57. package/lib/labs/VPicker/VPicker.js.map +1 -1
  58. package/lib/labs/VPicker/VPicker.sass +6 -0
  59. package/lib/labs/VPicker/_variables.scss +4 -0
  60. package/lib/labs/VTimePicker/VTimePicker.d.ts +13 -0
  61. package/package.json +11 -1
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Vuetify v3.7.17-dev.2025-03-18
2
+ * Vuetify v3.7.18-dev.2025-03-19
3
3
  * Forged by John Leider
4
4
  * Released under the MIT License.
5
5
  */
@@ -16820,6 +16820,7 @@
16820
16820
 
16821
16821
  const makeVPickerProps = propsFactory({
16822
16822
  bgColor: String,
16823
+ divided: Boolean,
16823
16824
  landscape: Boolean,
16824
16825
  title: String,
16825
16826
  hideHeader: Boolean,
@@ -16842,6 +16843,7 @@
16842
16843
  return vue.createVNode(VSheet, vue.mergeProps(sheetProps, {
16843
16844
  "color": props.bgColor,
16844
16845
  "class": ['v-picker', {
16846
+ 'v-picker--divided': props.divided,
16845
16847
  'v-picker--landscape': props.landscape,
16846
16848
  'v-picker--with-actions': !!slots.actions
16847
16849
  }, props.class],
@@ -18366,7 +18368,8 @@
18366
18368
  okText: {
18367
18369
  type: String,
18368
18370
  default: '$vuetify.confirmEdit.ok'
18369
- }
18371
+ },
18372
+ hideActions: Boolean
18370
18373
  }, 'VConfirmEdit');
18371
18374
  const VConfirmEdit = genericComponent()({
18372
18375
  name: 'VConfirmEdit',
@@ -18426,7 +18429,7 @@
18426
18429
  actionsUsed = true;
18427
18430
  return actions;
18428
18431
  }
18429
- }), !actionsUsed && actions()]);
18432
+ }), !props.hideActions && !actionsUsed && actions()]);
18430
18433
  });
18431
18434
  return {
18432
18435
  save,
@@ -21639,6 +21642,7 @@
21639
21642
  type: [String, Array],
21640
21643
  default: undefined
21641
21644
  },
21645
+ controlHeight: [Number, String],
21642
21646
  disabled: {
21643
21647
  type: [Boolean, String, Array],
21644
21648
  default: null
@@ -21702,7 +21706,10 @@
21702
21706
  useRender(() => {
21703
21707
  // TODO: add slot support and scope defaults
21704
21708
  return vue.createVNode("div", {
21705
- "class": ['v-date-picker-controls']
21709
+ "class": ['v-date-picker-controls'],
21710
+ "style": {
21711
+ '--v-date-picker-controls-height': convertToUnit(props.controlHeight)
21712
+ }
21706
21713
  }, [vue.createVNode(VBtn, {
21707
21714
  "class": "v-date-picker-controls__month-btn",
21708
21715
  "data-testid": "month-btn",
@@ -21724,6 +21731,7 @@
21724
21731
  }, [vue.createVNode(VBtn, {
21725
21732
  "data-testid": "prev-month",
21726
21733
  "disabled": disablePrev.value,
21734
+ "density": "comfortable",
21727
21735
  "icon": props.prevIcon,
21728
21736
  "variant": "text",
21729
21737
  "onClick": onClickPrev
@@ -21731,6 +21739,7 @@
21731
21739
  "data-testid": "next-month",
21732
21740
  "disabled": disableNext.value,
21733
21741
  "icon": props.nextIcon,
21742
+ "density": "comfortable",
21734
21743
  "variant": "text",
21735
21744
  "onClick": onClickNext
21736
21745
  }, null)])]);
@@ -22098,12 +22107,12 @@
22098
22107
  const slotProps = {
22099
22108
  props: {
22100
22109
  class: 'v-date-picker-month__day-btn',
22101
- color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
22110
+ color: item.isSelected || item.isToday ? props.color : undefined,
22102
22111
  disabled: item.isDisabled,
22103
22112
  icon: true,
22104
22113
  ripple: false,
22105
22114
  text: item.localized,
22106
- variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
22115
+ variant: item.isSelected ? 'flat' : item.isToday ? 'outlined' : 'text',
22107
22116
  onClick: () => onClick(item.date)
22108
22117
  },
22109
22118
  item,
@@ -22325,6 +22334,7 @@
22325
22334
  type: String,
22326
22335
  default: '$vuetify.datePicker.header'
22327
22336
  },
22337
+ headerColor: String,
22328
22338
  ...makeVDatePickerControlsProps(),
22329
22339
  ...makeVDatePickerMonthProps({
22330
22340
  weeksInMonth: 'static'
@@ -22382,6 +22392,7 @@
22382
22392
  }
22383
22393
  return value && adapter.isValid(value) ? value : today;
22384
22394
  });
22395
+ const headerColor = vue.computed(() => props.headerColor ?? props.color);
22385
22396
  const month = vue.ref(Number(props.month ?? adapter.getMonth(adapter.startOfMonth(internal.value))));
22386
22397
  const year = vue.ref(Number(props.year ?? adapter.getYear(adapter.startOfYear(adapter.setMonth(internal.value, month.value)))));
22387
22398
  const isReversing = vue.shallowRef(false);
@@ -22489,10 +22500,12 @@
22489
22500
  const datePickerMonthsProps = omit(VDatePickerMonths.filterProps(props), ['modelValue']);
22490
22501
  const datePickerYearsProps = omit(VDatePickerYears.filterProps(props), ['modelValue']);
22491
22502
  const headerProps = {
22503
+ color: headerColor.value,
22492
22504
  header: header.value,
22493
22505
  transition: headerTransition.value
22494
22506
  };
22495
22507
  return vue.createVNode(VPicker, vue.mergeProps(pickerProps, {
22508
+ "color": headerColor.value,
22496
22509
  "class": ['v-date-picker', `v-date-picker--${viewMode.value}`, {
22497
22510
  'v-date-picker--show-week': props.showWeek
22498
22511
  }, rtlClasses.value, props.class],
@@ -28833,7 +28846,6 @@
28833
28846
  // Types
28834
28847
 
28835
28848
  const makeVDateInputProps = propsFactory({
28836
- hideActions: Boolean,
28837
28849
  location: {
28838
28850
  type: String,
28839
28851
  default: 'bottom start'
@@ -31190,7 +31202,7 @@
31190
31202
  };
31191
31203
  });
31192
31204
  }
31193
- const version$1 = "3.7.17-dev.2025-03-18";
31205
+ const version$1 = "3.7.18-dev.2025-03-19";
31194
31206
  createVuetify$1.version = version$1;
31195
31207
 
31196
31208
  // Vue's inject() can only be used in setup
@@ -31230,6 +31242,16 @@
31230
31242
  VCombobox: {
31231
31243
  variant: 'underlined'
31232
31244
  },
31245
+ VDatePicker: {
31246
+ color: 'primary',
31247
+ controlHeight: 44,
31248
+ elevation: 1,
31249
+ rounded: 0,
31250
+ VBtn: {
31251
+ color: 'high-emphasis',
31252
+ rounded: 'circle'
31253
+ }
31254
+ },
31233
31255
  VSelect: {
31234
31256
  variant: 'underlined'
31235
31257
  },
@@ -31301,6 +31323,16 @@
31301
31323
  VCombobox: {
31302
31324
  variant: 'filled'
31303
31325
  },
31326
+ VDatePicker: {
31327
+ color: 'primary',
31328
+ controlHeight: 56,
31329
+ elevation: 2,
31330
+ rounded: 'md',
31331
+ VBtn: {
31332
+ color: 'high-emphasis',
31333
+ rounded: 'circle'
31334
+ }
31335
+ },
31304
31336
  VSelect: {
31305
31337
  variant: 'filled'
31306
31338
  },
@@ -31384,6 +31416,18 @@
31384
31416
  VCombobox: {
31385
31417
  variant: 'filled'
31386
31418
  },
31419
+ VDatePicker: {
31420
+ controlHeight: 48,
31421
+ color: 'primary',
31422
+ divided: true,
31423
+ headerColor: '',
31424
+ elevation: 3,
31425
+ rounded: 'xl',
31426
+ VBtn: {
31427
+ color: 'high-emphasis',
31428
+ rounded: 'circle'
31429
+ }
31430
+ },
31387
31431
  VNavigationDrawer: {
31388
31432
  // VList: {
31389
31433
  // nav: true,
@@ -31443,7 +31487,7 @@
31443
31487
 
31444
31488
  /* eslint-disable local-rules/sort-imports */
31445
31489
 
31446
- const version = "3.7.17-dev.2025-03-18";
31490
+ const version = "3.7.18-dev.2025-03-19";
31447
31491
 
31448
31492
  /* eslint-disable local-rules/sort-imports */
31449
31493