@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.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
|
*/
|
@@ -12001,7 +12001,7 @@
|
|
12001
12001
|
return props.error || props.disabled ? undefined : isActive.value && isFocused.value ? props.color : props.baseColor;
|
12002
12002
|
});
|
12003
12003
|
const iconColor = vue.computed(() => {
|
12004
|
-
if (!props.iconColor) return undefined;
|
12004
|
+
if (!props.iconColor || props.glow && !isFocused.value) return undefined;
|
12005
12005
|
return props.iconColor === true ? color.value : props.iconColor;
|
12006
12006
|
});
|
12007
12007
|
const {
|
@@ -12199,7 +12199,8 @@
|
|
12199
12199
|
})])]);
|
12200
12200
|
});
|
12201
12201
|
return {
|
12202
|
-
controlRef
|
12202
|
+
controlRef,
|
12203
|
+
fieldIconColor: iconColor
|
12203
12204
|
};
|
12204
12205
|
}
|
12205
12206
|
});
|
@@ -13266,6 +13267,7 @@
|
|
13266
13267
|
}
|
13267
13268
|
return vue.createVNode(vue.Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? vue.createVNode(VIcon, {
|
13268
13269
|
"class": "v-select__menu-icon",
|
13270
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
13269
13271
|
"icon": props.menuIcon
|
13270
13272
|
}, null) : undefined]);
|
13271
13273
|
}
|
@@ -13866,6 +13868,7 @@
|
|
13866
13868
|
}
|
13867
13869
|
return vue.createVNode(vue.Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? vue.createVNode(VIcon, {
|
13868
13870
|
"class": "v-autocomplete__menu-icon",
|
13871
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
13869
13872
|
"icon": props.menuIcon,
|
13870
13873
|
"onMousedown": onMousedownMenuIcon,
|
13871
13874
|
"onClick": noop,
|
@@ -18672,6 +18675,7 @@
|
|
18672
18675
|
}
|
18673
18676
|
return vue.createVNode(vue.Fragment, null, [slots['append-inner']?.(...args), (!props.hideNoData || props.items.length) && props.menuIcon ? vue.createVNode(VIcon, {
|
18674
18677
|
"class": "v-combobox__menu-icon",
|
18678
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
18675
18679
|
"icon": props.menuIcon,
|
18676
18680
|
"onMousedown": onMousedownMenuIcon,
|
18677
18681
|
"onClick": noop,
|
@@ -24821,7 +24825,7 @@
|
|
24821
24825
|
position: location,
|
24822
24826
|
layoutSize,
|
24823
24827
|
elementSize: width,
|
24824
|
-
active: vue.
|
24828
|
+
active: vue.readonly(isActive),
|
24825
24829
|
disableTransitions: vue.computed(() => isDragging.value),
|
24826
24830
|
absolute: vue.computed(() =>
|
24827
24831
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
@@ -29213,7 +29217,7 @@
|
|
29213
29217
|
};
|
29214
29218
|
});
|
29215
29219
|
}
|
29216
|
-
const version$1 = "3.8.0-master.2025-04-
|
29220
|
+
const version$1 = "3.8.0-master.2025-04-03";
|
29217
29221
|
createVuetify$1.version = version$1;
|
29218
29222
|
|
29219
29223
|
// Vue's inject() can only be used in setup
|
@@ -29238,7 +29242,7 @@
|
|
29238
29242
|
...options
|
29239
29243
|
});
|
29240
29244
|
};
|
29241
|
-
const version = "3.8.0-master.2025-04-
|
29245
|
+
const version = "3.8.0-master.2025-04-03";
|
29242
29246
|
createVuetify.version = version;
|
29243
29247
|
|
29244
29248
|
exports.blueprints = index;
|