@vuetify/nightly 3.8.0-beta.0-dev.2025-03-21 → 3.8.0-beta.0-dev.2025-03-23
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 +9 -3
- package/dist/json/attributes.json +3039 -3035
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +142 -142
- package/dist/json/tags.json +1 -0
- package/dist/json/web-types.json +5679 -5670
- package/dist/vuetify-labs.cjs +7 -4
- package/dist/vuetify-labs.css +2873 -2872
- package/dist/vuetify-labs.d.ts +56 -51
- package/dist/vuetify-labs.esm.js +7 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +7 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +7 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3488 -3487
- package/dist/vuetify.d.ts +56 -51
- package/dist/vuetify.esm.js +7 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +7 -4
- 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/VIcon/VIcon.css +1 -0
- package/lib/components/VIcon/VIcon.d.ts +10 -0
- package/lib/components/VIcon/VIcon.js +4 -1
- package/lib/components/VIcon/VIcon.js.map +1 -1
- package/lib/components/VIcon/VIcon.sass +1 -0
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +51 -51
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.cjs
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.0-beta.0-dev.2025-03-
|
2
|
+
* Vuetify v3.8.0-beta.0-dev.2025-03-23
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -4932,6 +4932,7 @@
|
|
4932
4932
|
start: Boolean,
|
4933
4933
|
end: Boolean,
|
4934
4934
|
icon: IconValue,
|
4935
|
+
opacity: [String, Number],
|
4935
4936
|
...makeComponentProps(),
|
4936
4937
|
...makeSizeProps(),
|
4937
4938
|
...makeTagProps({
|
@@ -4976,7 +4977,9 @@
|
|
4976
4977
|
'v-icon--start': props.start,
|
4977
4978
|
'v-icon--end': props.end
|
4978
4979
|
}, props.class],
|
4979
|
-
"style": [
|
4980
|
+
"style": [{
|
4981
|
+
'--v-icon-opacity': props.opacity
|
4982
|
+
}, !sizeClasses.value ? {
|
4980
4983
|
fontSize: convertToUnit(props.size),
|
4981
4984
|
height: convertToUnit(props.size),
|
4982
4985
|
width: convertToUnit(props.size)
|
@@ -29172,7 +29175,7 @@
|
|
29172
29175
|
};
|
29173
29176
|
});
|
29174
29177
|
}
|
29175
|
-
const version$1 = "3.8.0-beta.0-dev.2025-03-
|
29178
|
+
const version$1 = "3.8.0-beta.0-dev.2025-03-23";
|
29176
29179
|
createVuetify$1.version = version$1;
|
29177
29180
|
|
29178
29181
|
// Vue's inject() can only be used in setup
|
@@ -29197,7 +29200,7 @@
|
|
29197
29200
|
...options
|
29198
29201
|
});
|
29199
29202
|
};
|
29200
|
-
const version = "3.8.0-beta.0-dev.2025-03-
|
29203
|
+
const version = "3.8.0-beta.0-dev.2025-03-23";
|
29201
29204
|
createVuetify.version = version;
|
29202
29205
|
|
29203
29206
|
exports.blueprints = index;
|