@dimailn/vuetify 2.7.2-alpha55 → 2.7.2-alpha56
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/vuetify.js +7 -3
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VFileInput/VFileInput.js +3 -1
- package/es5/components/VFileInput/VFileInput.js.map +1 -1
- package/es5/components/VTextField/VTextField.js +3 -1
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VFileInput/VFileInput.js +2 -0
- package/lib/components/VFileInput/VFileInput.js.map +1 -1
- package/lib/components/VTextField/VTextField.js +2 -0
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +1 -1
- package/src/components/VFileInput/VFileInput.ts +1 -1
- package/src/components/VTextField/VTextField.ts +1 -1
package/dist/vuetify.js
CHANGED
|
@@ -16614,7 +16614,9 @@ var __spreadArray = undefined && undefined.__spreadArray || function (to, from,
|
|
|
16614
16614
|
var _a = this.attrs$,
|
|
16615
16615
|
title = _a.title,
|
|
16616
16616
|
value = _a.value,
|
|
16617
|
-
|
|
16617
|
+
_class = _a.class,
|
|
16618
|
+
_style = _a.style,
|
|
16619
|
+
inputAttrs = __rest(_a, ["title", "value", "class", "style"]);
|
|
16618
16620
|
|
|
16619
16621
|
var input = Object(vue__WEBPACK_IMPORTED_MODULE_6__["h"])('input', __assign(__assign(__assign(__assign({}, inputAttrs), {
|
|
16620
16622
|
autofocus: this.autofocus,
|
|
@@ -31432,7 +31434,9 @@ var dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'mo
|
|
|
31432
31434
|
var _a = this.attrs$,
|
|
31433
31435
|
title = _a.title,
|
|
31434
31436
|
_onChange = _a.onChange,
|
|
31435
|
-
|
|
31437
|
+
_class = _a.class,
|
|
31438
|
+
_style = _a.style,
|
|
31439
|
+
inputAttrs = __rest(_a, ["title", "onChange", "class", "style"]);
|
|
31436
31440
|
|
|
31437
31441
|
var node = Object(vue__WEBPACK_IMPORTED_MODULE_12__["h"])('input', __assign(__assign(__assign(__assign({
|
|
31438
31442
|
style: {},
|
|
@@ -37120,7 +37124,7 @@ function () {
|
|
|
37120
37124
|
|
|
37121
37125
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
37122
37126
|
Vuetify.installed = false;
|
|
37123
|
-
Vuetify.version = "2.7.2-
|
|
37127
|
+
Vuetify.version = "2.7.2-alpha56";
|
|
37124
37128
|
Vuetify.config = {
|
|
37125
37129
|
silent: false
|
|
37126
37130
|
};
|