@rogieking/figui3 1.0.76 → 1.0.77
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/fig.js +2 -1
- package/package.json +1 -1
package/fig.js
CHANGED
|
@@ -752,7 +752,8 @@ class FigSlider extends HTMLElement {
|
|
|
752
752
|
break;
|
|
753
753
|
case "type":
|
|
754
754
|
this.type = newValue;
|
|
755
|
-
this.
|
|
755
|
+
this.innerHTML = this.#getInnerHTML();
|
|
756
|
+
this.#setupBindings();
|
|
756
757
|
break;
|
|
757
758
|
case "disabled":
|
|
758
759
|
this.disabled = this.input.disabled =
|
package/package.json
CHANGED