@vuetify/nightly 3.7.15-master.2025-03-07 → 3.7.15-master.2025-03-10
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 +19 -3
- package/dist/json/attributes.json +3569 -3569
- package/dist/json/importMap-labs.json +16 -16
- package/dist/json/importMap.json +164 -164
- package/dist/json/web-types.json +6485 -6485
- package/dist/vuetify-labs.css +4142 -4142
- package/dist/vuetify-labs.d.ts +13 -13
- package/dist/vuetify-labs.esm.js +18 -23
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +18 -23
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3491 -3491
- package/dist/vuetify.d.ts +57 -57
- package/dist/vuetify.esm.js +13 -21
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +13 -21
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VDatePicker/VDatePickerMonth.mjs +12 -21
- package/lib/components/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/components/VDatePicker/index.d.mts +3 -3
- package/lib/components/index.d.mts +3 -3
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +54 -54
- package/lib/labs/VDateInput/VDateInput.mjs +3 -2
- package/lib/labs/VDateInput/VDateInput.mjs.map +1 -1
- package/lib/labs/VDateInput/index.d.mts +10 -10
- package/lib/labs/VTimePicker/VTimePickerControls.mjs +2 -0
- package/lib/labs/VTimePicker/VTimePickerControls.mjs.map +1 -1
- package/lib/labs/components.d.mts +10 -10
- package/package.json +1 -1
package/dist/vuetify.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.7.15-master.2025-03-
|
2
|
+
* Vuetify v3.7.15-master.2025-03-10
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -22149,7 +22149,7 @@
|
|
22149
22149
|
model.value = [value];
|
22150
22150
|
}
|
22151
22151
|
}
|
22152
|
-
|
22152
|
+
useRender(() => vue.createVNode("div", {
|
22153
22153
|
"class": "v-date-picker-month"
|
22154
22154
|
}, [props.showWeek && vue.createVNode("div", {
|
22155
22155
|
"key": "weeks",
|
@@ -22171,6 +22171,13 @@
|
|
22171
22171
|
}, [weekDay])), daysInMonth.value.map((item, i) => {
|
22172
22172
|
const slotProps = {
|
22173
22173
|
props: {
|
22174
|
+
class: 'v-date-picker-month__day-btn',
|
22175
|
+
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
22176
|
+
disabled: item.isDisabled,
|
22177
|
+
icon: true,
|
22178
|
+
ripple: false,
|
22179
|
+
text: item.localized,
|
22180
|
+
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
22174
22181
|
onClick: () => onClick(item.date)
|
22175
22182
|
},
|
22176
22183
|
item,
|
@@ -22188,24 +22195,9 @@
|
|
22188
22195
|
'v-date-picker-month__day--week-start': item.isWeekStart
|
22189
22196
|
}],
|
22190
22197
|
"data-v-date": !item.isDisabled ? item.isoDate : undefined
|
22191
|
-
}, [(props.showAdjacentMonths || !item.isAdjacent) && vue.createVNode(
|
22192
|
-
"defaults": {
|
22193
|
-
VBtn: {
|
22194
|
-
class: 'v-date-picker-month__day-btn',
|
22195
|
-
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
22196
|
-
disabled: item.isDisabled,
|
22197
|
-
icon: true,
|
22198
|
-
ripple: false,
|
22199
|
-
text: item.localized,
|
22200
|
-
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
22201
|
-
onClick: () => onClick(item.date)
|
22202
|
-
}
|
22203
|
-
}
|
22204
|
-
}, {
|
22205
|
-
default: () => [slots.day?.(slotProps) ?? vue.createVNode(VBtn, slotProps.props, null)]
|
22206
|
-
})]);
|
22198
|
+
}, [(props.showAdjacentMonths || !item.isAdjacent) && (slots.day?.(slotProps) ?? vue.createVNode(VBtn, slotProps.props, null))]);
|
22207
22199
|
})])]
|
22208
|
-
})]);
|
22200
|
+
})]));
|
22209
22201
|
}
|
22210
22202
|
});
|
22211
22203
|
|
@@ -28452,7 +28444,7 @@
|
|
28452
28444
|
goTo
|
28453
28445
|
};
|
28454
28446
|
}
|
28455
|
-
const version$1 = "3.7.15-master.2025-03-
|
28447
|
+
const version$1 = "3.7.15-master.2025-03-10";
|
28456
28448
|
createVuetify$1.version = version$1;
|
28457
28449
|
|
28458
28450
|
// Vue's inject() can only be used in setup
|
@@ -28477,7 +28469,7 @@
|
|
28477
28469
|
...options
|
28478
28470
|
});
|
28479
28471
|
};
|
28480
|
-
const version = "3.7.15-master.2025-03-
|
28472
|
+
const version = "3.7.15-master.2025-03-10";
|
28481
28473
|
createVuetify.version = version;
|
28482
28474
|
|
28483
28475
|
exports.blueprints = index;
|