@proximus/lavender 2.0.0-alpha.82 → 2.0.0-alpha.83
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/dist/lavender.cjs.js +1 -1
- package/dist/lavender.es.js +2 -0
- package/dist/lavender.umd.js +1 -1
- package/package.json +1 -1
package/dist/lavender.es.js
CHANGED
|
@@ -14195,6 +14195,7 @@ class SelectableBoxCheckbox extends WithExtraAttributes {
|
|
|
14195
14195
|
this.internals.role = "checkbox";
|
|
14196
14196
|
}
|
|
14197
14197
|
this.tabIndex = 0;
|
|
14198
|
+
this.ariaChecked = "false";
|
|
14198
14199
|
this.toggleFooterVisibility();
|
|
14199
14200
|
this.$slotFooter.addEventListener(
|
|
14200
14201
|
"slotchange",
|
|
@@ -14465,6 +14466,7 @@ class SelectableBoxRadio extends WithExtraAttributes {
|
|
|
14465
14466
|
this.internals.role = "radio";
|
|
14466
14467
|
}
|
|
14467
14468
|
this.tabIndex = ((_a = this.parentElement) == null ? void 0 : _a.querySelector("px-selectable-box-radio")) === this ? 0 : -1;
|
|
14469
|
+
this.ariaChecked = "false";
|
|
14468
14470
|
this.toggleFooterVisibility();
|
|
14469
14471
|
this.$slotFooter.addEventListener(
|
|
14470
14472
|
"slotchange",
|