@rogieking/figui3 6.18.3 → 6.19.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.
- package/components.css +2 -1
- package/dist/components.css +1 -1
- package/dist/fig-editor.css +1 -1
- package/dist/fig-lab.css +1 -1
- package/dist/fig-lab.js +17 -17
- package/dist/fig.css +1 -1
- package/dist/fig.js +1 -1
- package/fig-lab.css +151 -7
- package/fig-lab.js +609 -22
- package/fig.js +1 -1
- package/package.json +1 -1
package/fig.js
CHANGED
|
@@ -15141,7 +15141,7 @@ customElements.define("fig-preview", FigPreview);
|
|
|
15141
15141
|
const FIG_ICON_TOKENS = {
|
|
15142
15142
|
chevron: "--icon-16-chevron",
|
|
15143
15143
|
checkmark: "--icon-16-checkmark",
|
|
15144
|
-
reset: "--icon-16-reset",
|
|
15144
|
+
reset: { medium: "--icon-24-reset", small: "--icon-16-reset" },
|
|
15145
15145
|
"arrow-left": {
|
|
15146
15146
|
medium: "--icon-24-arrow-left",
|
|
15147
15147
|
small: "--icon-16-arrow-left",
|
package/package.json
CHANGED