@vaadin/checkbox 24.2.0-alpha8 → 24.2.0-alpha9
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/package.json +9 -9
- package/src/vaadin-checkbox-mixin.js +0 -12
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/checkbox",
|
|
3
|
-
"version": "24.2.0-
|
|
3
|
+
"version": "24.2.0-alpha9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,22 +39,22 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/a11y-base": "24.2.0-
|
|
43
|
-
"@vaadin/component-base": "24.2.0-
|
|
44
|
-
"@vaadin/field-base": "24.2.0-
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "24.2.0-
|
|
46
|
-
"@vaadin/vaadin-material-styles": "24.2.0-
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "24.2.0-
|
|
42
|
+
"@vaadin/a11y-base": "24.2.0-alpha9",
|
|
43
|
+
"@vaadin/component-base": "24.2.0-alpha9",
|
|
44
|
+
"@vaadin/field-base": "24.2.0-alpha9",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "24.2.0-alpha9",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "24.2.0-alpha9",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "24.2.0-alpha9",
|
|
48
48
|
"lit": "^2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@esm-bundle/chai": "^4.3.4",
|
|
52
|
-
"@vaadin/testing-helpers": "^0.
|
|
52
|
+
"@vaadin/testing-helpers": "^0.5.0",
|
|
53
53
|
"sinon": "^13.0.2"
|
|
54
54
|
},
|
|
55
55
|
"web-types": [
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "e9765733fea96542e379e02e6f42b07145893140"
|
|
60
60
|
}
|
|
@@ -103,18 +103,6 @@ export const CheckboxMixin = (superclass) =>
|
|
|
103
103
|
return super._shouldSetActive(event);
|
|
104
104
|
}
|
|
105
105
|
|
|
106
|
-
/**
|
|
107
|
-
* Override to mark the field as dirty on change.
|
|
108
|
-
*
|
|
109
|
-
* @param {Event} event
|
|
110
|
-
* @protected
|
|
111
|
-
* @override
|
|
112
|
-
*/
|
|
113
|
-
_onChange(event) {
|
|
114
|
-
this.dirty = true;
|
|
115
|
-
super._onChange(event);
|
|
116
|
-
}
|
|
117
|
-
|
|
118
106
|
/**
|
|
119
107
|
* Override method inherited from `CheckedMixin` to reset
|
|
120
108
|
* `indeterminate` state checkbox is toggled by the user.
|
package/web-types.json
CHANGED