@momentum-design/components 0.17.2 → 0.18.0
Sign up to get free protection for your applications and to get access to all the features.
@@ -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