@vuetify/nightly 3.5.3-dev.2024-03-06 → 3.5.3-dev.2024-03-07
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 +3 -2
- package/dist/json/attributes.json +8 -0
- package/dist/json/importMap-labs.json +8 -8
- package/dist/json/importMap.json +146 -146
- package/dist/json/tags.json +2 -0
- package/dist/json/web-types.json +21 -1
- package/dist/vuetify-labs.css +1674 -1674
- package/dist/vuetify-labs.d.ts +18 -0
- package/dist/vuetify-labs.esm.js +7 -5
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -5
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +352 -352
- package/dist/vuetify.d.ts +68 -50
- package/dist/vuetify.esm.js +7 -5
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -5
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +6 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/index.d.mts +18 -0
- package/lib/components/transitions/createTransition.mjs +4 -2
- package/lib/components/transitions/createTransition.mjs.map +1 -1
- package/lib/components/transitions/index.d.mts +18 -0
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +50 -50
- package/package.json +1 -1
package/dist/vuetify-labs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.5.3-dev.2024-03-
|
|
2
|
+
* Vuetify v3.5.3-dev.2024-03-07
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -2678,14 +2678,16 @@
|
|
|
2678
2678
|
type: String,
|
|
2679
2679
|
default: mode
|
|
2680
2680
|
},
|
|
2681
|
-
disabled: Boolean
|
|
2681
|
+
disabled: Boolean,
|
|
2682
|
+
group: Boolean
|
|
2682
2683
|
},
|
|
2683
2684
|
setup(props, _ref2) {
|
|
2684
2685
|
let {
|
|
2685
2686
|
slots
|
|
2686
2687
|
} = _ref2;
|
|
2688
|
+
const tag = props.group ? vue.TransitionGroup : vue.Transition;
|
|
2687
2689
|
return () => {
|
|
2688
|
-
return vue.h(
|
|
2690
|
+
return vue.h(tag, {
|
|
2689
2691
|
name: props.disabled ? '' : name,
|
|
2690
2692
|
css: !props.disabled,
|
|
2691
2693
|
// mode: props.mode, // TODO: vuejs/vue-next#3104
|
|
@@ -26242,7 +26244,7 @@
|
|
|
26242
26244
|
goTo
|
|
26243
26245
|
};
|
|
26244
26246
|
}
|
|
26245
|
-
const version$1 = "3.5.3-dev.2024-03-
|
|
26247
|
+
const version$1 = "3.5.3-dev.2024-03-07";
|
|
26246
26248
|
createVuetify$1.version = version$1;
|
|
26247
26249
|
|
|
26248
26250
|
// Vue's inject() can only be used in setup
|
|
@@ -26256,7 +26258,7 @@
|
|
|
26256
26258
|
|
|
26257
26259
|
/* eslint-disable local-rules/sort-imports */
|
|
26258
26260
|
|
|
26259
|
-
const version = "3.5.3-dev.2024-03-
|
|
26261
|
+
const version = "3.5.3-dev.2024-03-07";
|
|
26260
26262
|
|
|
26261
26263
|
/* eslint-disable local-rules/sort-imports */
|
|
26262
26264
|
|