@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.setAttribute('aria-pressed', 'false');
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.setAttribute('aria-disabled', 'false');
129
+ element.removeAttribute('aria-disabled');
130
130
  }
131
131
  }
132
132
  /**
package/package.json CHANGED
@@ -36,5 +36,5 @@
36
36
  "lit": "^3.2.0",
37
37
  "uuid": "^11.0.5"
38
38
  },
39
- "version": "0.17.2"
39
+ "version": "0.18.0"
40
40
  }