@vaadin/checkbox-group 23.1.0-alpha4 → 23.1.0-beta3

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/checkbox-group",
3
- "version": "23.1.0-alpha4",
3
+ "version": "23.1.0-beta3",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,16 +34,16 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.0.0",
37
- "@vaadin/checkbox": "23.1.0-alpha4",
38
- "@vaadin/component-base": "23.1.0-alpha4",
39
- "@vaadin/vaadin-lumo-styles": "23.1.0-alpha4",
40
- "@vaadin/vaadin-material-styles": "23.1.0-alpha4",
41
- "@vaadin/vaadin-themable-mixin": "23.1.0-alpha4"
37
+ "@vaadin/checkbox": "23.1.0-beta3",
38
+ "@vaadin/component-base": "23.1.0-beta3",
39
+ "@vaadin/vaadin-lumo-styles": "23.1.0-beta3",
40
+ "@vaadin/vaadin-material-styles": "23.1.0-beta3",
41
+ "@vaadin/vaadin-themable-mixin": "23.1.0-beta3"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@esm-bundle/chai": "^4.3.4",
45
45
  "@vaadin/testing-helpers": "^0.3.2",
46
46
  "sinon": "^13.0.2"
47
47
  },
48
- "gitHead": "aacdb7fe09811894751f0378ff7fb66071892c71"
48
+ "gitHead": "c787ceb8a312f88631c6d429ff320d5f89b1b838"
49
49
  }
@@ -306,7 +306,7 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(The
306
306
  * @private
307
307
  */
308
308
  __valueChanged(value) {
309
- // setting initial value to empty array, skip validation
309
+ // Setting initial value to empty array, skip validation
310
310
  if (value.length === 0 && this.__oldValue === undefined) {
311
311
  return;
312
312
  }