@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.
- package/CHANGELOG.md +18 -3
- package/dist/json/attributes.json +3587 -3543
- package/dist/json/importMap-labs.json +36 -36
- package/dist/json/importMap.json +166 -166
- package/dist/json/tags.json +11 -0
- package/dist/json/web-types.json +6725 -6620
- package/dist/vuetify-labs.cjs +31517 -0
- package/dist/vuetify-labs.css +4465 -4458
- package/dist/vuetify-labs.d.ts +155 -82
- package/dist/vuetify-labs.esm.js +53 -9
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +53 -9
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +29151 -0
- package/dist/vuetify.cjs.map +1 -0
- package/dist/vuetify.css +2280 -2273
- package/dist/vuetify.d.ts +115 -76
- package/dist/vuetify.esm.js +53 -8
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +53 -8
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +18 -18
- package/dist/vuetify.min.js.map +1 -1
- package/lib/blueprints/md1.js +10 -0
- package/lib/blueprints/md1.js.map +1 -1
- package/lib/blueprints/md2.js +10 -0
- package/lib/blueprints/md2.js.map +1 -1
- package/lib/blueprints/md3.js +12 -0
- package/lib/blueprints/md3.js.map +1 -1
- package/lib/components/VBtnGroup/VBtnGroup.d.ts +6 -6
- package/lib/components/VBtnToggle/VBtnToggle.d.ts +6 -6
- package/lib/components/VColorPicker/VColorPicker.d.ts +13 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.d.ts +13 -0
- package/lib/components/VConfirmEdit/VConfirmEdit.js +3 -2
- package/lib/components/VConfirmEdit/VConfirmEdit.js.map +1 -1
- package/lib/components/VDatePicker/VDatePicker.d.ts +33 -0
- package/lib/components/VDatePicker/VDatePicker.js +4 -0
- package/lib/components/VDatePicker/VDatePicker.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerControls.css +1 -0
- package/lib/components/VDatePicker/VDatePickerControls.d.ts +10 -0
- package/lib/components/VDatePicker/VDatePickerControls.js +8 -2
- package/lib/components/VDatePicker/VDatePickerControls.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerControls.sass +2 -0
- package/lib/components/VDatePicker/VDatePickerMonth.js +2 -2
- package/lib/components/VDatePicker/VDatePickerMonth.js.map +1 -1
- package/lib/components/VDatePicker/_variables.scss +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +64 -64
- package/lib/framework.js +1 -1
- package/lib/labs/VDateInput/VDateInput.d.ts +39 -6
- package/lib/labs/VDateInput/VDateInput.js +0 -1
- package/lib/labs/VDateInput/VDateInput.js.map +1 -1
- package/lib/labs/VPicker/VPicker.css +6 -0
- package/lib/labs/VPicker/VPicker.d.ts +13 -0
- package/lib/labs/VPicker/VPicker.js +2 -0
- package/lib/labs/VPicker/VPicker.js.map +1 -1
- package/lib/labs/VPicker/VPicker.sass +6 -0
- package/lib/labs/VPicker/_variables.scss +4 -0
- package/lib/labs/VTimePicker/VTimePicker.d.ts +13 -0
- package/package.json +11 -1
package/dist/vuetify-labs.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.
|
2
|
+
* Vuetify v3.7.18-dev.2025-03-19
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -16816,6 +16816,7 @@ const VSheet = genericComponent()({
|
|
16816
16816
|
|
16817
16817
|
const makeVPickerProps = propsFactory({
|
16818
16818
|
bgColor: String,
|
16819
|
+
divided: Boolean,
|
16819
16820
|
landscape: Boolean,
|
16820
16821
|
title: String,
|
16821
16822
|
hideHeader: Boolean,
|
@@ -16838,6 +16839,7 @@ const VPicker = genericComponent()({
|
|
16838
16839
|
return createVNode(VSheet, mergeProps(sheetProps, {
|
16839
16840
|
"color": props.bgColor,
|
16840
16841
|
"class": ['v-picker', {
|
16842
|
+
'v-picker--divided': props.divided,
|
16841
16843
|
'v-picker--landscape': props.landscape,
|
16842
16844
|
'v-picker--with-actions': !!slots.actions
|
16843
16845
|
}, props.class],
|
@@ -18362,7 +18364,8 @@ const makeVConfirmEditProps = propsFactory({
|
|
18362
18364
|
okText: {
|
18363
18365
|
type: String,
|
18364
18366
|
default: '$vuetify.confirmEdit.ok'
|
18365
|
-
}
|
18367
|
+
},
|
18368
|
+
hideActions: Boolean
|
18366
18369
|
}, 'VConfirmEdit');
|
18367
18370
|
const VConfirmEdit = genericComponent()({
|
18368
18371
|
name: 'VConfirmEdit',
|
@@ -18422,7 +18425,7 @@ const VConfirmEdit = genericComponent()({
|
|
18422
18425
|
actionsUsed = true;
|
18423
18426
|
return actions;
|
18424
18427
|
}
|
18425
|
-
}), !actionsUsed && actions()]);
|
18428
|
+
}), !props.hideActions && !actionsUsed && actions()]);
|
18426
18429
|
});
|
18427
18430
|
return {
|
18428
18431
|
save,
|
@@ -21635,6 +21638,7 @@ const makeVDatePickerControlsProps = propsFactory({
|
|
21635
21638
|
type: [String, Array],
|
21636
21639
|
default: undefined
|
21637
21640
|
},
|
21641
|
+
controlHeight: [Number, String],
|
21638
21642
|
disabled: {
|
21639
21643
|
type: [Boolean, String, Array],
|
21640
21644
|
default: null
|
@@ -21698,7 +21702,10 @@ const VDatePickerControls = genericComponent()({
|
|
21698
21702
|
useRender(() => {
|
21699
21703
|
// TODO: add slot support and scope defaults
|
21700
21704
|
return createVNode("div", {
|
21701
|
-
"class": ['v-date-picker-controls']
|
21705
|
+
"class": ['v-date-picker-controls'],
|
21706
|
+
"style": {
|
21707
|
+
'--v-date-picker-controls-height': convertToUnit(props.controlHeight)
|
21708
|
+
}
|
21702
21709
|
}, [createVNode(VBtn, {
|
21703
21710
|
"class": "v-date-picker-controls__month-btn",
|
21704
21711
|
"data-testid": "month-btn",
|
@@ -21720,6 +21727,7 @@ const VDatePickerControls = genericComponent()({
|
|
21720
21727
|
}, [createVNode(VBtn, {
|
21721
21728
|
"data-testid": "prev-month",
|
21722
21729
|
"disabled": disablePrev.value,
|
21730
|
+
"density": "comfortable",
|
21723
21731
|
"icon": props.prevIcon,
|
21724
21732
|
"variant": "text",
|
21725
21733
|
"onClick": onClickPrev
|
@@ -21727,6 +21735,7 @@ const VDatePickerControls = genericComponent()({
|
|
21727
21735
|
"data-testid": "next-month",
|
21728
21736
|
"disabled": disableNext.value,
|
21729
21737
|
"icon": props.nextIcon,
|
21738
|
+
"density": "comfortable",
|
21730
21739
|
"variant": "text",
|
21731
21740
|
"onClick": onClickNext
|
21732
21741
|
}, null)])]);
|
@@ -22094,12 +22103,12 @@ const VDatePickerMonth = genericComponent()({
|
|
22094
22103
|
const slotProps = {
|
22095
22104
|
props: {
|
22096
22105
|
class: 'v-date-picker-month__day-btn',
|
22097
|
-
color:
|
22106
|
+
color: item.isSelected || item.isToday ? props.color : undefined,
|
22098
22107
|
disabled: item.isDisabled,
|
22099
22108
|
icon: true,
|
22100
22109
|
ripple: false,
|
22101
22110
|
text: item.localized,
|
22102
|
-
variant: item.
|
22111
|
+
variant: item.isSelected ? 'flat' : item.isToday ? 'outlined' : 'text',
|
22103
22112
|
onClick: () => onClick(item.date)
|
22104
22113
|
},
|
22105
22114
|
item,
|
@@ -22321,6 +22330,7 @@ const makeVDatePickerProps = propsFactory({
|
|
22321
22330
|
type: String,
|
22322
22331
|
default: '$vuetify.datePicker.header'
|
22323
22332
|
},
|
22333
|
+
headerColor: String,
|
22324
22334
|
...makeVDatePickerControlsProps(),
|
22325
22335
|
...makeVDatePickerMonthProps({
|
22326
22336
|
weeksInMonth: 'static'
|
@@ -22378,6 +22388,7 @@ const VDatePicker = genericComponent()({
|
|
22378
22388
|
}
|
22379
22389
|
return value && adapter.isValid(value) ? value : today;
|
22380
22390
|
});
|
22391
|
+
const headerColor = computed(() => props.headerColor ?? props.color);
|
22381
22392
|
const month = ref(Number(props.month ?? adapter.getMonth(adapter.startOfMonth(internal.value))));
|
22382
22393
|
const year = ref(Number(props.year ?? adapter.getYear(adapter.startOfYear(adapter.setMonth(internal.value, month.value)))));
|
22383
22394
|
const isReversing = shallowRef(false);
|
@@ -22485,10 +22496,12 @@ const VDatePicker = genericComponent()({
|
|
22485
22496
|
const datePickerMonthsProps = omit(VDatePickerMonths.filterProps(props), ['modelValue']);
|
22486
22497
|
const datePickerYearsProps = omit(VDatePickerYears.filterProps(props), ['modelValue']);
|
22487
22498
|
const headerProps = {
|
22499
|
+
color: headerColor.value,
|
22488
22500
|
header: header.value,
|
22489
22501
|
transition: headerTransition.value
|
22490
22502
|
};
|
22491
22503
|
return createVNode(VPicker, mergeProps(pickerProps, {
|
22504
|
+
"color": headerColor.value,
|
22492
22505
|
"class": ['v-date-picker', `v-date-picker--${viewMode.value}`, {
|
22493
22506
|
'v-date-picker--show-week': props.showWeek
|
22494
22507
|
}, rtlClasses.value, props.class],
|
@@ -28829,7 +28842,6 @@ const VCalendar = genericComponent()({
|
|
28829
28842
|
// Types
|
28830
28843
|
|
28831
28844
|
const makeVDateInputProps = propsFactory({
|
28832
|
-
hideActions: Boolean,
|
28833
28845
|
location: {
|
28834
28846
|
type: String,
|
28835
28847
|
default: 'bottom start'
|
@@ -31186,7 +31198,7 @@ function createVuetify$1() {
|
|
31186
31198
|
};
|
31187
31199
|
});
|
31188
31200
|
}
|
31189
|
-
const version$1 = "3.7.
|
31201
|
+
const version$1 = "3.7.18-dev.2025-03-19";
|
31190
31202
|
createVuetify$1.version = version$1;
|
31191
31203
|
|
31192
31204
|
// Vue's inject() can only be used in setup
|
@@ -31226,6 +31238,16 @@ const md1 = {
|
|
31226
31238
|
VCombobox: {
|
31227
31239
|
variant: 'underlined'
|
31228
31240
|
},
|
31241
|
+
VDatePicker: {
|
31242
|
+
color: 'primary',
|
31243
|
+
controlHeight: 44,
|
31244
|
+
elevation: 1,
|
31245
|
+
rounded: 0,
|
31246
|
+
VBtn: {
|
31247
|
+
color: 'high-emphasis',
|
31248
|
+
rounded: 'circle'
|
31249
|
+
}
|
31250
|
+
},
|
31229
31251
|
VSelect: {
|
31230
31252
|
variant: 'underlined'
|
31231
31253
|
},
|
@@ -31297,6 +31319,16 @@ const md2 = {
|
|
31297
31319
|
VCombobox: {
|
31298
31320
|
variant: 'filled'
|
31299
31321
|
},
|
31322
|
+
VDatePicker: {
|
31323
|
+
color: 'primary',
|
31324
|
+
controlHeight: 56,
|
31325
|
+
elevation: 2,
|
31326
|
+
rounded: 'md',
|
31327
|
+
VBtn: {
|
31328
|
+
color: 'high-emphasis',
|
31329
|
+
rounded: 'circle'
|
31330
|
+
}
|
31331
|
+
},
|
31300
31332
|
VSelect: {
|
31301
31333
|
variant: 'filled'
|
31302
31334
|
},
|
@@ -31380,6 +31412,18 @@ const md3 = {
|
|
31380
31412
|
VCombobox: {
|
31381
31413
|
variant: 'filled'
|
31382
31414
|
},
|
31415
|
+
VDatePicker: {
|
31416
|
+
controlHeight: 48,
|
31417
|
+
color: 'primary',
|
31418
|
+
divided: true,
|
31419
|
+
headerColor: '',
|
31420
|
+
elevation: 3,
|
31421
|
+
rounded: 'xl',
|
31422
|
+
VBtn: {
|
31423
|
+
color: 'high-emphasis',
|
31424
|
+
rounded: 'circle'
|
31425
|
+
}
|
31426
|
+
},
|
31383
31427
|
VNavigationDrawer: {
|
31384
31428
|
// VList: {
|
31385
31429
|
// nav: true,
|
@@ -31439,7 +31483,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31439
31483
|
|
31440
31484
|
/* eslint-disable local-rules/sort-imports */
|
31441
31485
|
|
31442
|
-
const version = "3.7.
|
31486
|
+
const version = "3.7.18-dev.2025-03-19";
|
31443
31487
|
|
31444
31488
|
/* eslint-disable local-rules/sort-imports */
|
31445
31489
|
|