@momentum-design/components 0.17.2 → 0.18.0
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.
@@ -110,7 +110,7 @@ class Buttonsimple extends TabIndexMixin(DisabledMixin(Component)) {
|
|
110
110
|
element.setAttribute('aria-pressed', 'true');
|
111
111
|
}
|
112
112
|
else {
|
113
|
-
element.
|
113
|
+
element.removeAttribute('aria-pressed');
|
114
114
|
}
|
115
115
|
}
|
116
116
|
/**
|
@@ -126,7 +126,7 @@ class Buttonsimple extends TabIndexMixin(DisabledMixin(Component)) {
|
|
126
126
|
element.setAttribute('aria-disabled', 'true');
|
127
127
|
}
|
128
128
|
else {
|
129
|
-
element.
|
129
|
+
element.removeAttribute('aria-disabled');
|
130
130
|
}
|
131
131
|
}
|
132
132
|
/**
|
package/package.json
CHANGED