vuetify 3.9.4 → 3.9.5
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/dist/json/attributes.json +3433 -3433
- package/dist/json/importMap-labs.json +20 -20
- package/dist/json/importMap.json +134 -134
- package/dist/json/web-types.json +6551 -6551
- package/dist/vuetify-labs.cjs +6 -6
- package/dist/vuetify-labs.css +3853 -3850
- package/dist/vuetify-labs.d.ts +47 -47
- package/dist/vuetify-labs.esm.js +6 -6
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +6 -6
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.cjs +5 -4
- package/dist/vuetify.cjs.map +1 -1
- package/dist/vuetify.css +3166 -3163
- package/dist/vuetify.d.ts +47 -47
- package/dist/vuetify.esm.js +5 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -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/VColorPicker/VColorPickerEdit.sass +5 -5
- package/lib/components/VSelect/VSelect.js +1 -1
- package/lib/components/VSelect/VSelect.js.map +1 -1
- package/lib/components/VStepper/VStepperItem.css +7 -4
- package/lib/components/VStepper/VStepperItem.sass +5 -7
- package/lib/components/VTextField/VTextField.js +1 -0
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/entry-bundler.js +1 -1
- package/lib/framework.d.ts +47 -47
- package/lib/framework.js +1 -1
- package/lib/labs/VColorInput/VColorInput.js +1 -2
- package/lib/labs/VColorInput/VColorInput.js.map +1 -1
- package/package.json +2 -2
package/dist/vuetify.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Vuetify v3.9.
|
|
2
|
+
* Vuetify v3.9.5
|
|
3
3
|
* Forged by John Leider
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -12813,6 +12813,7 @@
|
|
|
12813
12813
|
"name": props.name,
|
|
12814
12814
|
"placeholder": props.placeholder,
|
|
12815
12815
|
"size": 1,
|
|
12816
|
+
"role": props.role,
|
|
12816
12817
|
"type": props.type,
|
|
12817
12818
|
"onFocus": focus,
|
|
12818
12819
|
"onBlur": blur
|
|
@@ -13588,7 +13589,7 @@
|
|
|
13588
13589
|
return vue.createVNode(VTextField, vue.mergeProps({
|
|
13589
13590
|
"ref": vTextFieldRef
|
|
13590
13591
|
}, textFieldProps, {
|
|
13591
|
-
"modelValue": model.value.map(v => v.props.
|
|
13592
|
+
"modelValue": model.value.map(v => v.props.title).join(', '),
|
|
13592
13593
|
"onUpdate:modelValue": onModelUpdate,
|
|
13593
13594
|
"focused": isFocused.value,
|
|
13594
13595
|
"onUpdate:focused": $event => isFocused.value = $event,
|
|
@@ -31543,7 +31544,7 @@
|
|
|
31543
31544
|
};
|
|
31544
31545
|
});
|
|
31545
31546
|
}
|
|
31546
|
-
const version$1 = "3.9.
|
|
31547
|
+
const version$1 = "3.9.5";
|
|
31547
31548
|
createVuetify$1.version = version$1;
|
|
31548
31549
|
|
|
31549
31550
|
// Vue's inject() can only be used in setup
|
|
@@ -31568,7 +31569,7 @@
|
|
|
31568
31569
|
...options
|
|
31569
31570
|
});
|
|
31570
31571
|
};
|
|
31571
|
-
const version = "3.9.
|
|
31572
|
+
const version = "3.9.5";
|
|
31572
31573
|
createVuetify.version = version;
|
|
31573
31574
|
|
|
31574
31575
|
exports.blueprints = index;
|