@rogieking/figui3 8.10.1 → 8.11.1

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 CHANGED
@@ -6372,6 +6372,7 @@ figDefineElement("fig-slider", FigSlider);
6372
6372
  * @attr {string} type - Input type: "text" (default) or "number"
6373
6373
  * @attr {string} value - The current input value
6374
6374
  * @attr {string} placeholder - Placeholder text
6375
+ * @attr {string} size - Input size: default or "large"
6375
6376
  * @attr {boolean} disabled - Whether the input is disabled
6376
6377
  * @attr {boolean} multiline - Whether to use a textarea instead of input
6377
6378
  * @attr {number} min - Minimum value (for number type)
@@ -17153,7 +17154,10 @@ figDefineElement("fig-preview", FigPreview);
17153
17154
  /** @type {Record<string, string | { medium: string, small: string }>} */
17154
17155
  const FIG_ICON_TOKENS = {
17155
17156
  chevron: { medium: "--icon-24-chevron", small: "--icon-16-chevron" },
17156
- checkmark: "--icon-16-checkmark",
17157
+ checkmark: {
17158
+ medium: "--icon-24-checkmark",
17159
+ small: "--icon-16-checkmark",
17160
+ },
17157
17161
  reset: { medium: "--icon-24-reset", small: "--icon-16-reset" },
17158
17162
  "arrow-left": {
17159
17163
  medium: "--icon-24-arrow-left",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rogieking/figui3",
3
- "version": "8.10.1",
3
+ "version": "8.11.1",
4
4
  "description": "A lightweight web components library for building Figma plugin and widget UIs with native look and feel",
5
5
  "author": "Rogie King",
6
6
  "license": "SEE LICENSE IN LICENSE",