@vuetify/nightly 3.8.0-master.2025-04-02 → 3.8.0-master.2025-04-03
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 +6 -3
- package/dist/json/attributes.json +3205 -3205
- package/dist/json/importMap-labs.json +34 -34
- package/dist/json/importMap.json +174 -174
- package/dist/json/web-types.json +6230 -6230
- package/dist/vuetify-labs.cjs +10 -6
- package/dist/vuetify-labs.css +4391 -4377
- package/dist/vuetify-labs.d.ts +115 -76
- package/dist/vuetify-labs.esm.js +10 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +10 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +10 -6
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3666 -3652
- package/dist/vuetify.d.ts +115 -76
- package/dist/vuetify.esm.js +10 -6
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +10 -6
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +10 -10
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.css +0 -1
- package/lib/components/VAutocomplete/VAutocomplete.js +1 -0
- package/lib/components/VAutocomplete/VAutocomplete.js.map +1 -1
- package/lib/components/VAutocomplete/VAutocomplete.sass +0 -1
- package/lib/components/VCombobox/VCombobox.css +0 -1
- package/lib/components/VCombobox/VCombobox.js +1 -0
- package/lib/components/VCombobox/VCombobox.js.map +1 -1
- package/lib/components/VCombobox/VCombobox.sass +0 -1
- package/lib/components/VField/VField.d.ts +3 -0
- package/lib/components/VField/VField.js +3 -2
- package/lib/components/VField/VField.js.map +1 -1
- package/lib/components/VNavigationDrawer/VNavigationDrawer.js +2 -2
- package/lib/components/VNavigationDrawer/VNavigationDrawer.js.map +1 -1
- package/lib/components/VNumberInput/VNumberInput.d.ts +39 -12
- package/lib/components/VSelect/VSelect.css +0 -1
- package/lib/components/VSelect/VSelect.js +1 -0
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VSelect/VSelect.sass +0 -1
- package/lib/components/VTextField/VTextField.css +21 -4
- package/lib/components/VTextField/VTextField.d.ts +12 -3
- package/lib/components/VTextField/VTextField.sass +22 -7
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +61 -61
- package/lib/framework.js +1 -1
- package/package.json +1 -1
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v3.8.0-master.2025-04-
|
2
|
+
* Vuetify v3.8.0-master.2025-04-03
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -11997,7 +11997,7 @@ const VField = genericComponent()({
|
|
11997
11997
|
return props.error || props.disabled ? undefined : isActive.value && isFocused.value ? props.color : props.baseColor;
|
11998
11998
|
});
|
11999
11999
|
const iconColor = computed(() => {
|
12000
|
-
if (!props.iconColor) return undefined;
|
12000
|
+
if (!props.iconColor || props.glow && !isFocused.value) return undefined;
|
12001
12001
|
return props.iconColor === true ? color.value : props.iconColor;
|
12002
12002
|
});
|
12003
12003
|
const {
|
@@ -12195,7 +12195,8 @@ const VField = genericComponent()({
|
|
12195
12195
|
})])]);
|
12196
12196
|
});
|
12197
12197
|
return {
|
12198
|
-
controlRef
|
12198
|
+
controlRef,
|
12199
|
+
fieldIconColor: iconColor
|
12199
12200
|
};
|
12200
12201
|
}
|
12201
12202
|
});
|
@@ -13262,6 +13263,7 @@ const VSelect = genericComponent()({
|
|
13262
13263
|
}
|
13263
13264
|
return createVNode(Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? createVNode(VIcon, {
|
13264
13265
|
"class": "v-select__menu-icon",
|
13266
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
13265
13267
|
"icon": props.menuIcon
|
13266
13268
|
}, null) : undefined]);
|
13267
13269
|
}
|
@@ -13862,6 +13864,7 @@ const VAutocomplete = genericComponent()({
|
|
13862
13864
|
}
|
13863
13865
|
return createVNode(Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? createVNode(VIcon, {
|
13864
13866
|
"class": "v-autocomplete__menu-icon",
|
13867
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
13865
13868
|
"icon": props.menuIcon,
|
13866
13869
|
"onMousedown": onMousedownMenuIcon,
|
13867
13870
|
"onClick": noop,
|
@@ -18668,6 +18671,7 @@ const VCombobox = genericComponent()({
|
|
18668
18671
|
}
|
18669
18672
|
return createVNode(Fragment, null, [slots['append-inner']?.(...args), (!props.hideNoData || props.items.length) && props.menuIcon ? createVNode(VIcon, {
|
18670
18673
|
"class": "v-combobox__menu-icon",
|
18674
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
18671
18675
|
"icon": props.menuIcon,
|
18672
18676
|
"onMousedown": onMousedownMenuIcon,
|
18673
18677
|
"onClick": noop,
|
@@ -24817,7 +24821,7 @@ const VNavigationDrawer = genericComponent()({
|
|
24817
24821
|
position: location,
|
24818
24822
|
layoutSize,
|
24819
24823
|
elementSize: width,
|
24820
|
-
active:
|
24824
|
+
active: readonly(isActive),
|
24821
24825
|
disableTransitions: computed(() => isDragging.value),
|
24822
24826
|
absolute: computed(() =>
|
24823
24827
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
@@ -29209,7 +29213,7 @@ function createVuetify$1() {
|
|
29209
29213
|
};
|
29210
29214
|
});
|
29211
29215
|
}
|
29212
|
-
const version$1 = "3.8.0-master.2025-04-
|
29216
|
+
const version$1 = "3.8.0-master.2025-04-03";
|
29213
29217
|
createVuetify$1.version = version$1;
|
29214
29218
|
|
29215
29219
|
// Vue's inject() can only be used in setup
|
@@ -29234,7 +29238,7 @@ const createVuetify = function () {
|
|
29234
29238
|
...options
|
29235
29239
|
});
|
29236
29240
|
};
|
29237
|
-
const version = "3.8.0-master.2025-04-
|
29241
|
+
const version = "3.8.0-master.2025-04-03";
|
29238
29242
|
createVuetify.version = version;
|
29239
29243
|
|
29240
29244
|
export { index as blueprints, components, createVuetify, directives, useDate, useDefaults, useDisplay, useGoTo, useLayout, useLocale, useRtl, useTheme, version };
|