@vaadin/checkbox-group 25.1.0-beta2 → 25.1.0-beta4

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.
@@ -121,7 +121,7 @@
121
121
  "name": "value",
122
122
  "privacy": "public",
123
123
  "type": {
124
- "text": "!Array<!string>"
124
+ "text": "array"
125
125
  },
126
126
  "description": "An array containing values of the currently checked checkboxes.\n\nThe array is immutable so toggling checkboxes always results in\ncreating a new array.",
127
127
  "attribute": "value"
@@ -195,6 +195,14 @@
195
195
  },
196
196
  "description": "When true, the user cannot modify the value of the checkbox group.\nThe difference between `disabled` and `readonly` is that in the\nread-only checkbox group, all the checkboxes are also read-only,\nand therefore remain focusable and announced by screen readers.",
197
197
  "fieldName": "readonly"
198
+ },
199
+ {
200
+ "name": "value",
201
+ "type": {
202
+ "text": "array"
203
+ },
204
+ "description": "An array containing values of the currently checked checkboxes.\n\nThe array is immutable so toggling checkboxes always results in\ncreating a new array.",
205
+ "fieldName": "value"
198
206
  }
199
207
  ],
200
208
  "mixins": [
@@ -327,7 +335,7 @@
327
335
  "name": "value",
328
336
  "privacy": "public",
329
337
  "type": {
330
- "text": "!Array<!string>"
338
+ "text": "array"
331
339
  },
332
340
  "description": "An array containing values of the currently checked checkboxes.\n\nThe array is immutable so toggling checkboxes always results in\ncreating a new array.",
333
341
  "attribute": "value",
@@ -448,6 +456,18 @@
448
456
  "name": "CheckboxGroupMixin",
449
457
  "module": "src/vaadin-checkbox-group-mixin.js"
450
458
  }
459
+ },
460
+ {
461
+ "name": "value",
462
+ "type": {
463
+ "text": "array"
464
+ },
465
+ "description": "An array containing values of the currently checked checkboxes.\n\nThe array is immutable so toggling checkboxes always results in\ncreating a new array.",
466
+ "fieldName": "value",
467
+ "inheritedFrom": {
468
+ "name": "CheckboxGroupMixin",
469
+ "module": "src/vaadin-checkbox-group-mixin.js"
470
+ }
451
471
  }
452
472
  ]
453
473
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/checkbox-group",
3
- "version": "25.1.0-beta2",
3
+ "version": "25.1.0-beta4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -35,25 +35,25 @@
35
35
  ],
36
36
  "dependencies": {
37
37
  "@open-wc/dedupe-mixin": "^1.3.0",
38
- "@vaadin/a11y-base": "25.1.0-beta2",
39
- "@vaadin/checkbox": "25.1.0-beta2",
40
- "@vaadin/component-base": "25.1.0-beta2",
41
- "@vaadin/field-base": "25.1.0-beta2",
42
- "@vaadin/vaadin-themable-mixin": "25.1.0-beta2",
38
+ "@vaadin/a11y-base": "25.1.0-beta4",
39
+ "@vaadin/checkbox": "25.1.0-beta4",
40
+ "@vaadin/component-base": "25.1.0-beta4",
41
+ "@vaadin/field-base": "25.1.0-beta4",
42
+ "@vaadin/vaadin-themable-mixin": "25.1.0-beta4",
43
43
  "lit": "^3.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@vaadin/aura": "25.1.0-beta2",
47
- "@vaadin/chai-plugins": "25.1.0-beta2",
48
- "@vaadin/test-runner-commands": "25.1.0-beta2",
46
+ "@vaadin/aura": "25.1.0-beta4",
47
+ "@vaadin/chai-plugins": "25.1.0-beta4",
48
+ "@vaadin/test-runner-commands": "25.1.0-beta4",
49
49
  "@vaadin/testing-helpers": "^2.0.0",
50
- "@vaadin/vaadin-lumo-styles": "25.1.0-beta2",
51
- "sinon": "^21.0.0"
50
+ "@vaadin/vaadin-lumo-styles": "25.1.0-beta4",
51
+ "sinon": "^21.0.2"
52
52
  },
53
53
  "customElements": "custom-elements.json",
54
54
  "web-types": [
55
55
  "web-types.json",
56
56
  "web-types.lit.json"
57
57
  ],
58
- "gitHead": "ffbedbae08a5160d13bcd1c6fcaa328df5103a05"
58
+ "gitHead": "b27f6706a2b5c07cedec353fccbdecee95d53024"
59
59
  }
@@ -26,8 +26,6 @@ export const CheckboxGroupMixin = (superclass) =>
26
26
  *
27
27
  * The array is immutable so toggling checkboxes always results in
28
28
  * creating a new array.
29
- *
30
- * @type {!Array<!string>}
31
29
  */
32
30
  value: {
33
31
  type: Array,
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/checkbox-group",
4
- "version": "25.1.0-beta2",
4
+ "version": "25.1.0-beta4",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -249,7 +249,9 @@
249
249
  "description": "An array containing values of the currently checked checkboxes.\n\nThe array is immutable so toggling checkboxes always results in\ncreating a new array.",
250
250
  "value": {
251
251
  "type": [
252
- "Array.<string>"
252
+ "Array",
253
+ "null",
254
+ "undefined"
253
255
  ]
254
256
  }
255
257
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/checkbox-group",
4
- "version": "25.1.0-beta2",
4
+ "version": "25.1.0-beta4",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {