@dimailn/vuetify 2.7.2-alpha54 → 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 +8 -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/VSelect/VSelect.js +1 -0
- package/es5/components/VSelect/VSelect.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/VSelect/VSelect.js +1 -0
- package/lib/components/VSelect/VSelect.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/VSelect/VSelect.ts +1 -0
- package/src/components/VSelect/__tests__/VSelect.placeholder.spec.ts +118 -0
- 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,
|
|
@@ -25802,6 +25804,7 @@ var baseMixins = Object(_util_mixins__WEBPACK_IMPORTED_MODULE_14__["default"])(_
|
|
|
25802
25804
|
genInput: function genInput() {
|
|
25803
25805
|
var input = _VTextField_VTextField__WEBPACK_IMPORTED_MODULE_6__["default"].methods.genInput.call(this);
|
|
25804
25806
|
delete input.props.name;
|
|
25807
|
+
delete input.props.placeholder;
|
|
25805
25808
|
input.props = Object(_util_mergeData__WEBPACK_IMPORTED_MODULE_11__["default"])(input.props, {
|
|
25806
25809
|
readonly: true,
|
|
25807
25810
|
type: 'text',
|
|
@@ -31431,7 +31434,9 @@ var dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'mo
|
|
|
31431
31434
|
var _a = this.attrs$,
|
|
31432
31435
|
title = _a.title,
|
|
31433
31436
|
_onChange = _a.onChange,
|
|
31434
|
-
|
|
31437
|
+
_class = _a.class,
|
|
31438
|
+
_style = _a.style,
|
|
31439
|
+
inputAttrs = __rest(_a, ["title", "onChange", "class", "style"]);
|
|
31435
31440
|
|
|
31436
31441
|
var node = Object(vue__WEBPACK_IMPORTED_MODULE_12__["h"])('input', __assign(__assign(__assign(__assign({
|
|
31437
31442
|
style: {},
|
|
@@ -37119,7 +37124,7 @@ function () {
|
|
|
37119
37124
|
|
|
37120
37125
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
37121
37126
|
Vuetify.installed = false;
|
|
37122
|
-
Vuetify.version = "2.7.2-
|
|
37127
|
+
Vuetify.version = "2.7.2-alpha56";
|
|
37123
37128
|
Vuetify.config = {
|
|
37124
37129
|
silent: false
|
|
37125
37130
|
};
|