@dimailn/vuetify 2.7.2-alpha17 → 2.7.2-alpha18
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 +4 -11
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +1 -1
- package/dist/vuetify.min.js +2 -2
- package/es5/framework.js +1 -1
- package/es5/mixins/selectable/index.js +3 -10
- package/es5/mixins/selectable/index.js.map +1 -1
- package/lib/framework.js +1 -1
- package/lib/mixins/selectable/index.js +3 -10
- package/lib/mixins/selectable/index.js.map +1 -1
- package/package.json +1 -1
- package/src/mixins/selectable/index.ts +3 -9
package/dist/vuetify.js
CHANGED
|
@@ -35179,7 +35179,7 @@ function () {
|
|
|
35179
35179
|
|
|
35180
35180
|
Vuetify.install = _install__WEBPACK_IMPORTED_MODULE_0__["install"];
|
|
35181
35181
|
Vuetify.installed = false;
|
|
35182
|
-
Vuetify.version = "2.7.2-
|
|
35182
|
+
Vuetify.version = "2.7.2-alpha18";
|
|
35183
35183
|
Vuetify.config = {
|
|
35184
35184
|
silent: false
|
|
35185
35185
|
};
|
|
@@ -42378,7 +42378,7 @@ function prevent(e) {
|
|
|
42378
42378
|
var label = _components_VInput__WEBPACK_IMPORTED_MODULE_0__["default"].methods.genLabel.call(this);
|
|
42379
42379
|
if (!label) return label; // Label shouldn't cause the input to focus
|
|
42380
42380
|
|
|
42381
|
-
label.onClick =
|
|
42381
|
+
label.onClick = this.onClick;
|
|
42382
42382
|
return label;
|
|
42383
42383
|
},
|
|
42384
42384
|
genInput: function genInput(type, attrs) {
|
|
@@ -42400,15 +42400,8 @@ function prevent(e) {
|
|
|
42400
42400
|
}));
|
|
42401
42401
|
},
|
|
42402
42402
|
onClick: function onClick(e) {
|
|
42403
|
-
|
|
42404
|
-
|
|
42405
|
-
var isCurrentClick = target.id === this.computedId;
|
|
42406
|
-
var isRippleClick = target.classList.contains('v-input--selection-controls__ripple');
|
|
42407
|
-
|
|
42408
|
-
if (isCurrentClick || isRippleClick || !this.computedId) {
|
|
42409
|
-
this.onChange();
|
|
42410
|
-
}
|
|
42411
|
-
|
|
42403
|
+
e.preventDefault();
|
|
42404
|
+
this.onChange();
|
|
42412
42405
|
this.$emit('click', e);
|
|
42413
42406
|
},
|
|
42414
42407
|
onChange: function onChange() {
|