@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-labs.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
|
*/
|
@@ -11732,7 +11732,7 @@ const VField = genericComponent()({
|
|
11732
11732
|
return props.error || props.disabled ? undefined : isActive.value && isFocused.value ? props.color : props.baseColor;
|
11733
11733
|
});
|
11734
11734
|
const iconColor = computed(() => {
|
11735
|
-
if (!props.iconColor) return undefined;
|
11735
|
+
if (!props.iconColor || props.glow && !isFocused.value) return undefined;
|
11736
11736
|
return props.iconColor === true ? color.value : props.iconColor;
|
11737
11737
|
});
|
11738
11738
|
const {
|
@@ -11930,7 +11930,8 @@ const VField = genericComponent()({
|
|
11930
11930
|
})])]);
|
11931
11931
|
});
|
11932
11932
|
return {
|
11933
|
-
controlRef
|
11933
|
+
controlRef,
|
11934
|
+
fieldIconColor: iconColor
|
11934
11935
|
};
|
11935
11936
|
}
|
11936
11937
|
});
|
@@ -12997,6 +12998,7 @@ const VSelect = genericComponent()({
|
|
12997
12998
|
}
|
12998
12999
|
return createVNode(Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? createVNode(VIcon, {
|
12999
13000
|
"class": "v-select__menu-icon",
|
13001
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
13000
13002
|
"icon": props.menuIcon
|
13001
13003
|
}, null) : undefined]);
|
13002
13004
|
}
|
@@ -13597,6 +13599,7 @@ const VAutocomplete = genericComponent()({
|
|
13597
13599
|
}
|
13598
13600
|
return createVNode(Fragment, null, [slots['append-inner']?.(...args), props.menuIcon ? createVNode(VIcon, {
|
13599
13601
|
"class": "v-autocomplete__menu-icon",
|
13602
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
13600
13603
|
"icon": props.menuIcon,
|
13601
13604
|
"onMousedown": onMousedownMenuIcon,
|
13602
13605
|
"onClick": noop,
|
@@ -18403,6 +18406,7 @@ const VCombobox = genericComponent()({
|
|
18403
18406
|
}
|
18404
18407
|
return createVNode(Fragment, null, [slots['append-inner']?.(...args), (!props.hideNoData || props.items.length) && props.menuIcon ? createVNode(VIcon, {
|
18405
18408
|
"class": "v-combobox__menu-icon",
|
18409
|
+
"color": vTextFieldRef.value?.fieldIconColor,
|
18406
18410
|
"icon": props.menuIcon,
|
18407
18411
|
"onMousedown": onMousedownMenuIcon,
|
18408
18412
|
"onClick": noop,
|
@@ -24552,7 +24556,7 @@ const VNavigationDrawer = genericComponent()({
|
|
24552
24556
|
position: location,
|
24553
24557
|
layoutSize,
|
24554
24558
|
elementSize: width,
|
24555
|
-
active:
|
24559
|
+
active: readonly(isActive),
|
24556
24560
|
disableTransitions: computed(() => isDragging.value),
|
24557
24561
|
absolute: computed(() =>
|
24558
24562
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
@@ -31533,7 +31537,7 @@ function createVuetify$1() {
|
|
31533
31537
|
};
|
31534
31538
|
});
|
31535
31539
|
}
|
31536
|
-
const version$1 = "3.8.0-master.2025-04-
|
31540
|
+
const version$1 = "3.8.0-master.2025-04-03";
|
31537
31541
|
createVuetify$1.version = version$1;
|
31538
31542
|
|
31539
31543
|
// Vue's inject() can only be used in setup
|
@@ -31818,7 +31822,7 @@ var index = /*#__PURE__*/Object.freeze({
|
|
31818
31822
|
|
31819
31823
|
/* eslint-disable local-rules/sort-imports */
|
31820
31824
|
|
31821
|
-
const version = "3.8.0-master.2025-04-
|
31825
|
+
const version = "3.8.0-master.2025-04-03";
|
31822
31826
|
|
31823
31827
|
/* eslint-disable local-rules/sort-imports */
|
31824
31828
|
|