@dimailn/vuetify 2.7.2-alpha34 → 2.7.2-alpha35
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 +5 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/components/VTextField/VTextField.js +4 -3
- package/es5/components/VTextField/VTextField.js.map +1 -1
- package/es5/framework.js +1 -1
- package/lib/components/VTextField/VTextField.js +4 -3
- package/lib/components/VTextField/VTextField.js.map +1 -1
- package/lib/framework.js +1 -1
- package/package.json +1 -1
- package/src/components/VTextField/VTextField.ts +9 -8
package/dist/vuetify.js
CHANGED
|
@@ -30959,7 +30959,7 @@ var dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'mo
|
|
|
30959
30959
|
default: 'text'
|
|
30960
30960
|
}
|
|
30961
30961
|
},
|
|
30962
|
-
emits: ['update:modelValue', 'blur', 'focus', 'keydown', 'click:clear'],
|
|
30962
|
+
emits: ['update:modelValue', 'blur', 'focus', 'keydown', 'click:clear', 'click'],
|
|
30963
30963
|
data: function data() {
|
|
30964
30964
|
return {
|
|
30965
30965
|
badInput: false,
|
|
@@ -31215,7 +31215,7 @@ var dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'mo
|
|
|
31215
31215
|
|
|
31216
31216
|
if (!this.showLabel) return null;
|
|
31217
31217
|
var data = {
|
|
31218
|
-
ref:
|
|
31218
|
+
ref: 'label',
|
|
31219
31219
|
absolute: true,
|
|
31220
31220
|
color: this.validationState,
|
|
31221
31221
|
dark: this.dark,
|
|
@@ -31299,7 +31299,8 @@ var dirtyTypes = ['color', 'file', 'time', 'date', 'datetime-local', 'week', 'mo
|
|
|
31299
31299
|
return _this.$emit('blur', e);
|
|
31300
31300
|
});
|
|
31301
31301
|
},
|
|
31302
|
-
onClick: function onClick() {
|
|
31302
|
+
onClick: function onClick(e) {
|
|
31303
|
+
this.$emit('click', e);
|
|
31303
31304
|
if (this.isFocused || this.isDisabled || !this.$refs.input) return;
|
|
31304
31305
|
this.$refs.input.focus();
|
|
31305
31306
|
},
|
|
@@ -36930,7 +36931,7 @@ function () {
|
|
|
36930
36931
|
|
|
36931
36932
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
36932
36933
|
Vuetify.installed = false;
|
|
36933
|
-
Vuetify.version = "2.7.2-
|
|
36934
|
+
Vuetify.version = "2.7.2-alpha35";
|
|
36934
36935
|
Vuetify.config = {
|
|
36935
36936
|
silent: false
|
|
36936
36937
|
};
|