@rogieking/figui3 6.17.0 → 6.18.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/README.md +4 -8
- package/components.css +1 -2
- 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 +20 -14
- package/dist/fig.css +1 -1
- package/dist/fig.js +13 -13
- package/fig-lab.css +12 -5
- package/fig-lab.js +157 -36
- package/fig.js +53 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -353,18 +353,14 @@ Composes a `<fig-field>` and an Off/On `<fig-segmented-control>` into a full-sur
|
|
|
353
353
|
|
|
354
354
|
`<propskit-select>`
|
|
355
355
|
|
|
356
|
-
Composes a `<fig-field>` and `<fig-
|
|
356
|
+
Composes a `<fig-field>` and `<fig-select>` into a full-surface property control. Options come from the `options` attribute (same formats as `fig-options`: comma-separated, newline-delimited, or a JSON array).
|
|
357
357
|
|
|
358
|
-
**Attributes:** `label`, `value`, `
|
|
358
|
+
**Attributes:** `label`, `value`, `options`, `disabled`, `size`
|
|
359
359
|
|
|
360
|
-
**Events:** `input`, `change` — forwarded from the inner
|
|
360
|
+
**Events:** `input`, `change` — forwarded from the inner select.
|
|
361
361
|
|
|
362
362
|
```html
|
|
363
|
-
<propskit-select label="Alignment" value="
|
|
364
|
-
<option value="left">Left</option>
|
|
365
|
-
<option value="center">Center</option>
|
|
366
|
-
<option value="right">Right</option>
|
|
367
|
-
</propskit-select>
|
|
363
|
+
<propskit-select label="Alignment" value="Center" options="Left,Center,Right"></propskit-select>
|
|
368
364
|
```
|
|
369
365
|
|
|
370
366
|
---
|
package/components.css
CHANGED
|
@@ -3153,8 +3153,7 @@ dialog,
|
|
|
3153
3153
|
}
|
|
3154
3154
|
}
|
|
3155
3155
|
dialog[is="fig-dialog"] {
|
|
3156
|
-
|
|
3157
|
-
z-index: var(--z-index);
|
|
3156
|
+
/* Non-modal stacking is assigned in FigDialog.show() via figGetHighestZIndex. */
|
|
3158
3157
|
|
|
3159
3158
|
&[autoresize]:not([autoresize="false"]) {
|
|
3160
3159
|
height: max-content;
|