@vaadin/checkbox-group 25.3.0-alpha11 → 25.3.0-alpha13
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 +11 -11
- package/src/vaadin-checkbox-group-mixin.js +2 -1
- 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-group",
|
|
3
|
-
"version": "25.3.0-
|
|
3
|
+
"version": "25.3.0-alpha13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -35,19 +35,19 @@
|
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
37
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
38
|
-
"@vaadin/a11y-base": "25.3.0-
|
|
39
|
-
"@vaadin/checkbox": "25.3.0-
|
|
40
|
-
"@vaadin/component-base": "25.3.0-
|
|
41
|
-
"@vaadin/field-base": "25.3.0-
|
|
42
|
-
"@vaadin/vaadin-themable-mixin": "25.3.0-
|
|
38
|
+
"@vaadin/a11y-base": "25.3.0-alpha13",
|
|
39
|
+
"@vaadin/checkbox": "25.3.0-alpha13",
|
|
40
|
+
"@vaadin/component-base": "25.3.0-alpha13",
|
|
41
|
+
"@vaadin/field-base": "25.3.0-alpha13",
|
|
42
|
+
"@vaadin/vaadin-themable-mixin": "25.3.0-alpha13",
|
|
43
43
|
"lit": "^3.0.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
|
-
"@vaadin/aura": "25.3.0-
|
|
47
|
-
"@vaadin/chai-plugins": "25.3.0-
|
|
48
|
-
"@vaadin/test-runner-commands": "25.3.0-
|
|
46
|
+
"@vaadin/aura": "25.3.0-alpha13",
|
|
47
|
+
"@vaadin/chai-plugins": "25.3.0-alpha13",
|
|
48
|
+
"@vaadin/test-runner-commands": "25.3.0-alpha13",
|
|
49
49
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
50
|
-
"@vaadin/vaadin-lumo-styles": "25.3.0-
|
|
50
|
+
"@vaadin/vaadin-lumo-styles": "25.3.0-alpha13",
|
|
51
51
|
"sinon": "^22.0.0"
|
|
52
52
|
},
|
|
53
53
|
"customElements": "custom-elements.json",
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"web-types.json",
|
|
56
56
|
"web-types.lit.json"
|
|
57
57
|
],
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "e23e44d29e6bc1e47245d5e2cc0e4b022ec61818"
|
|
59
59
|
}
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
import { DisabledMixin } from '@vaadin/a11y-base/src/disabled-mixin.js';
|
|
7
7
|
import { FocusMixin } from '@vaadin/a11y-base/src/focus-mixin.js';
|
|
8
|
+
import { Checkbox } from '@vaadin/checkbox/src/vaadin-checkbox.js';
|
|
8
9
|
import { SlotObserver } from '@vaadin/component-base/src/slot-observer.js';
|
|
9
10
|
import { TooltipController } from '@vaadin/component-base/src/tooltip-controller.js';
|
|
10
11
|
import { FieldMixin } from '@vaadin/field-base/src/field-mixin.js';
|
|
@@ -119,7 +120,7 @@ export const CheckboxGroupMixin = (superclass) =>
|
|
|
119
120
|
* @private
|
|
120
121
|
*/
|
|
121
122
|
__filterCheckboxes(nodes) {
|
|
122
|
-
return nodes.filter((node) => node
|
|
123
|
+
return nodes.filter((node) => node instanceof Checkbox);
|
|
123
124
|
}
|
|
124
125
|
|
|
125
126
|
/**
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED