@vaadin/checkbox-group 24.0.0-alpha1 → 24.0.0-alpha11
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 +8 -8
- package/src/vaadin-checkbox-group.d.ts +1 -1
- package/src/vaadin-checkbox-group.js +11 -11
- 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": "24.0.0-
|
|
3
|
+
"version": "24.0.0-alpha11",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,12 +36,12 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/checkbox": "24.0.0-
|
|
40
|
-
"@vaadin/component-base": "24.0.0-
|
|
41
|
-
"@vaadin/field-base": "24.0.0-
|
|
42
|
-
"@vaadin/vaadin-lumo-styles": "24.0.0-
|
|
43
|
-
"@vaadin/vaadin-material-styles": "24.0.0-
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "24.0.0-
|
|
39
|
+
"@vaadin/checkbox": "24.0.0-alpha11",
|
|
40
|
+
"@vaadin/component-base": "24.0.0-alpha11",
|
|
41
|
+
"@vaadin/field-base": "24.0.0-alpha11",
|
|
42
|
+
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha11",
|
|
43
|
+
"@vaadin/vaadin-material-styles": "24.0.0-alpha11",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha11"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -52,5 +52,5 @@
|
|
|
52
52
|
"web-types.json",
|
|
53
53
|
"web-types.lit.json"
|
|
54
54
|
],
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "641b3d96ceeb3e503a093682ebe686afdd8c3a68"
|
|
56
56
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2018 -
|
|
3
|
+
* Copyright (c) 2018 - 2023 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { DisabledMixin } from '@vaadin/component-base/src/disabled-mixin.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @license
|
|
3
|
-
* Copyright (c) 2018 -
|
|
3
|
+
* Copyright (c) 2018 - 2023 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
6
|
import { FlattenedNodesObserver } from '@polymer/polymer/lib/utils/flattened-nodes-observer.js';
|
|
@@ -144,6 +144,16 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(The
|
|
|
144
144
|
this.__onCheckboxCheckedChanged = this.__onCheckboxCheckedChanged.bind(this);
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
/**
|
|
148
|
+
* A collection of the checkboxes.
|
|
149
|
+
*
|
|
150
|
+
* @return {!Array<!Checkbox>}
|
|
151
|
+
* @private
|
|
152
|
+
*/
|
|
153
|
+
get __checkboxes() {
|
|
154
|
+
return this.__filterCheckboxes([...this.children]);
|
|
155
|
+
}
|
|
156
|
+
|
|
147
157
|
/** @protected */
|
|
148
158
|
ready() {
|
|
149
159
|
super.ready();
|
|
@@ -187,16 +197,6 @@ class CheckboxGroup extends FieldMixin(FocusMixin(DisabledMixin(ElementMixin(The
|
|
|
187
197
|
return nodes.filter((child) => child instanceof Checkbox);
|
|
188
198
|
}
|
|
189
199
|
|
|
190
|
-
/**
|
|
191
|
-
* A collection of the checkboxes.
|
|
192
|
-
*
|
|
193
|
-
* @return {!Array<!Checkbox>}
|
|
194
|
-
* @private
|
|
195
|
-
*/
|
|
196
|
-
get __checkboxes() {
|
|
197
|
-
return this.__filterCheckboxes([...this.children]);
|
|
198
|
-
}
|
|
199
|
-
|
|
200
200
|
/**
|
|
201
201
|
* @param {!Array<!Checkbox>} checkboxes
|
|
202
202
|
* @private
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED