@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 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-dropdown>` into a full-surface property control. Dropdown attributes and child `<option>` elements are forwarded to the inner control.
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`, `disabled`, `experimental`, `size`
358
+ **Attributes:** `label`, `value`, `options`, `disabled`, `size`
359
359
 
360
- **Events:** `input`, `change` — forwarded from the inner dropdown.
360
+ **Events:** `input`, `change` — forwarded from the inner select.
361
361
 
362
362
  ```html
363
- <propskit-select label="Alignment" value="center">
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
- --z-index: 999999;
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;