vuetify 3.7.17 → 3.7.18
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/dist/json/attributes.json +3020 -3020
- package/dist/json/importMap-labs.json +30 -30
- package/dist/json/importMap.json +172 -172
- package/dist/json/web-types.json +5507 -5507
- package/dist/vuetify-labs.css +4293 -4293
- package/dist/vuetify-labs.d.ts +3 -3
- package/dist/vuetify-labs.esm.js +21 -13
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +21 -13
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +3172 -3172
- package/dist/vuetify.d.ts +62 -62
- package/dist/vuetify.esm.js +21 -13
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +21 -13
- 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 +21 -12
- 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 +59 -59
- package/package.json +2 -2
package/dist/vuetify-labs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.7.
|
|
2
|
+
* Vuetify v3.7.18
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -21920,7 +21920,7 @@
|
|
|
21920
21920
|
model.value = [value];
|
|
21921
21921
|
}
|
|
21922
21922
|
}
|
|
21923
|
-
|
|
21923
|
+
return () => vue.createVNode("div", {
|
|
21924
21924
|
"class": "v-date-picker-month"
|
|
21925
21925
|
}, [props.showWeek && vue.createVNode("div", {
|
|
21926
21926
|
"key": "weeks",
|
|
@@ -21942,13 +21942,6 @@
|
|
|
21942
21942
|
}, [weekDay])), daysInMonth.value.map((item, i) => {
|
|
21943
21943
|
const slotProps = {
|
|
21944
21944
|
props: {
|
|
21945
|
-
class: 'v-date-picker-month__day-btn',
|
|
21946
|
-
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
|
21947
|
-
disabled: item.isDisabled,
|
|
21948
|
-
icon: true,
|
|
21949
|
-
ripple: false,
|
|
21950
|
-
text: item.localized,
|
|
21951
|
-
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
|
21952
21945
|
onClick: () => onClick(item.date)
|
|
21953
21946
|
},
|
|
21954
21947
|
item,
|
|
@@ -21966,9 +21959,24 @@
|
|
|
21966
21959
|
'v-date-picker-month__day--week-start': item.isWeekStart
|
|
21967
21960
|
}],
|
|
21968
21961
|
"data-v-date": !item.isDisabled ? item.isoDate : undefined
|
|
21969
|
-
}, [(props.showAdjacentMonths || !item.isAdjacent) &&
|
|
21962
|
+
}, [(props.showAdjacentMonths || !item.isAdjacent) && vue.createVNode(VDefaultsProvider, {
|
|
21963
|
+
"defaults": {
|
|
21964
|
+
VBtn: {
|
|
21965
|
+
class: 'v-date-picker-month__day-btn',
|
|
21966
|
+
color: (item.isSelected || item.isToday) && !item.isDisabled ? props.color : undefined,
|
|
21967
|
+
disabled: item.isDisabled,
|
|
21968
|
+
icon: true,
|
|
21969
|
+
ripple: false,
|
|
21970
|
+
text: item.localized,
|
|
21971
|
+
variant: item.isDisabled ? item.isToday ? 'outlined' : 'text' : item.isToday && !item.isSelected ? 'outlined' : 'flat',
|
|
21972
|
+
onClick: () => onClick(item.date)
|
|
21973
|
+
}
|
|
21974
|
+
}
|
|
21975
|
+
}, {
|
|
21976
|
+
default: () => [slots.day?.(slotProps) ?? vue.createVNode(VBtn, slotProps.props, null)]
|
|
21977
|
+
})]);
|
|
21970
21978
|
})])]
|
|
21971
|
-
})])
|
|
21979
|
+
})]);
|
|
21972
21980
|
}
|
|
21973
21981
|
});
|
|
21974
21982
|
|
|
@@ -31076,7 +31084,7 @@
|
|
|
31076
31084
|
goTo
|
|
31077
31085
|
};
|
|
31078
31086
|
}
|
|
31079
|
-
const version$1 = "3.7.
|
|
31087
|
+
const version$1 = "3.7.18";
|
|
31080
31088
|
createVuetify$1.version = version$1;
|
|
31081
31089
|
|
|
31082
31090
|
// Vue's inject() can only be used in setup
|
|
@@ -31329,7 +31337,7 @@
|
|
|
31329
31337
|
|
|
31330
31338
|
/* eslint-disable local-rules/sort-imports */
|
|
31331
31339
|
|
|
31332
|
-
const version = "3.7.
|
|
31340
|
+
const version = "3.7.18";
|
|
31333
31341
|
|
|
31334
31342
|
/* eslint-disable local-rules/sort-imports */
|
|
31335
31343
|
|