@nectary/components 5.9.0 → 5.9.1
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/bundle.js +1 -1
- package/help-tooltip/index.js +1 -1
- package/package.json +1 -1
package/bundle.js
CHANGED
|
@@ -7363,7 +7363,7 @@ class HelpTooltip extends NectaryElement {
|
|
|
7363
7363
|
this.#controller = null;
|
|
7364
7364
|
}
|
|
7365
7365
|
static get observedAttributes() {
|
|
7366
|
-
return ["text", "width", "orientation"];
|
|
7366
|
+
return ["aria-label", "text", "width", "orientation"];
|
|
7367
7367
|
}
|
|
7368
7368
|
attributeChangedCallback(name, _, newVal) {
|
|
7369
7369
|
updateAttribute(this.#$tooltip, name, newVal);
|
package/help-tooltip/index.js
CHANGED
|
@@ -30,7 +30,7 @@ class HelpTooltip extends NectaryElement {
|
|
|
30
30
|
this.#controller = null;
|
|
31
31
|
}
|
|
32
32
|
static get observedAttributes() {
|
|
33
|
-
return ["text", "width", "orientation"];
|
|
33
|
+
return ["aria-label", "text", "width", "orientation"];
|
|
34
34
|
}
|
|
35
35
|
attributeChangedCallback(name, _, newVal) {
|
|
36
36
|
updateAttribute(this.#$tooltip, name, newVal);
|