@rogieking/figui3 1.0.8 → 1.0.9

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.
Files changed (2) hide show
  1. package/fig.js +1 -1
  2. package/package.json +1 -1
package/fig.js CHANGED
@@ -958,7 +958,7 @@ class FigCheckbox extends HTMLElement {
958
958
  break;
959
959
  case "name":
960
960
  case "value":
961
- this.input[name] = newValue
961
+ this.input.setAttribute(name, newValue)
962
962
  break;
963
963
  }
964
964
  }
package/package.json CHANGED
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "name": "@rogieking/figui3",
3
- "version": "1.0.8"
3
+ "version": "1.0.9"
4
4
  }