prime-ui-kit 0.7.11 → 0.7.13

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prime-ui-kit",
3
- "version": "0.7.11",
3
+ "version": "0.7.13",
4
4
  "description": "React 19 UI kit: CSS Modules, semantic design tokens (--prime-sys-*), composable components — forms, modals, selects, tables, navigation, overlays. TypeScript, ESM, a11y-oriented.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",
@@ -99,6 +99,7 @@ Live demo: **`playground/sections/TagSelectSection.tsx`** — snippet **`playgro
99
99
  - **`size`** follows the same **`Select`** control tier as **`Select.Root`**; nested **`Badge`** chips inherit size via **`ControlSizeProvider`**.
100
100
  - **`onCreated`** is only invoked when a **new** value is added through creatable flow (Create row or Enter), not when selecting an existing **`options`** row.
101
101
  - **`hasPanelContent`** gates the dropdown: if there are no list rows and no create row, the panel closes.
102
+ - **List rows vs chips:** options already in **`value`** are omitted from the listbox (add-to-selection rows only). If nothing is left to add and there is no creatable row, the panel does **not** open on focus (e.g. all catalog tags already on the record) — open again after typing (filter / create) or removing a chip so at least one option can be added again. **`optionManagement`** ⋯ is available on rows **when** those options appear in the list (not while the panel is forced empty).
102
103
  - Removing the last chip with empty input: **Backspace** removes the last selected value.
103
104
  - Name the control with **`aria-label`** or **`aria-labelledby`** when there is no visible [Label](../label/COMPONENT.md).
104
105