@stackline/react-multiselect-dropdown 19.1.2 → 19.1.3

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.
Files changed (2) hide show
  1. package/README.md +9 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@
15
15
  <img src="https://alexandro.net/images/public/2026/06/dropdownlist.gif" alt="@stackline/react-multiselect-dropdown live dropdown preview" width="420">
16
16
  </p>
17
17
 
18
- **Latest React 19 release:** `19.1.2` for React `19.x`
18
+ **Latest React 19 release:** `19.1.3` for React `19.x`
19
19
 
20
20
  ---
21
21
 
@@ -29,7 +29,7 @@
29
29
 
30
30
  The package is built around a controlled React API: pass `data`, bind `selectedItems`, receive updates through `onChange`, and customize behavior through a `settings` object. It also supports a Slots API for replacing component structure without losing ARIA/focus behavior, a headless `useMultiSelectDropdown` hook, a lower-level `useMultiSelectState` hook, custom React render functions for option rows and selected badges, lazy loading callbacks, imperative `ref` methods, and body-overlay positioning for dialogs or clipped containers.
31
31
 
32
- The current stable React 19 release is `19.1.2`. It adds guided structural slots, a headless hook, a state hook, a type-safe factory helper, and a strengthened combobox contract while keeping the styled `<MultiSelectDropdown />` component compatible with the existing visual contract.
32
+ The current stable React 19 release is `19.1.3`. It adds guided structural slots, a headless hook, a state hook, a type-safe factory helper, and a strengthened combobox contract while keeping the styled `<MultiSelectDropdown />` component compatible with the existing visual contract.
33
33
 
34
34
  ## Features
35
35
 
@@ -86,17 +86,17 @@ Each package family installs on its matching React family. Keep the package fami
86
86
 
87
87
  | Package family | React family | Peer range | Tested release window | Demo link |
88
88
  | :---: | :---: | :---: | :---: | :--- |
89
- | **17.x** | **React 17 only** | **`>=17.0.0 <18.0.0`** | **17.0.1 -> 17.0.2** | [React 17 family docs](https://alexandro.net/docs/react/multiselect/react-17/) |
90
- | **18.x** | **React 18 only** | **`>=18.0.0 <19.0.0`** | **18.0.1 -> 18.3.1** | [React 18 family docs](https://alexandro.net/docs/react/multiselect/react-18/) |
91
- | **19.x** | **React 19 only** | **`>=19.0.0 <20.0.0`** | **19.1.2 -> 19.2.4** | [React 19 family docs](https://alexandro.net/docs/react/multiselect/react-19/) |
89
+ | **17.x** | **React 17 only** | **`>=17.0.0 <18.0.0`** | **17.0.2 -> 17.0.2** | [React 17 family docs](https://alexandro.net/docs/react/multiselect/react-17/) |
90
+ | **18.x** | **React 18 only** | **`>=18.0.0 <19.0.0`** | **18.0.2 -> 18.3.1** | [React 18 family docs](https://alexandro.net/docs/react/multiselect/react-18/) |
91
+ | **19.x** | **React 19 only** | **`>=19.0.0 <20.0.0`** | **19.1.3 -> 19.2.4** | [React 19 family docs](https://alexandro.net/docs/react/multiselect/react-19/) |
92
92
 
93
93
  ## Installation
94
94
 
95
95
  ```bash
96
- npm install @stackline/react-multiselect-dropdown@19.1.1 --save-exact
96
+ npm install @stackline/react-multiselect-dropdown@19.1.3 --save-exact
97
97
  ```
98
98
 
99
- Install `19.1.2` for React 19.x applications. The styled component includes its component styles and injects them at runtime. The headless hook does not inject CSS and lets your application own the markup and styling.
99
+ Install `19.1.3` for React 19.x applications. The styled component includes its component styles and injects them at runtime. The headless hook does not inject CSS and lets your application own the markup and styling.
100
100
 
101
101
  ## Setup
102
102
 
@@ -481,7 +481,7 @@ The styled component remains available for drop-in usage. The headless hooks are
481
481
 
482
482
  ## Combobox Contract
483
483
 
484
- Version `19.1.2` tightens the interaction details that usually matter most in production forms:
484
+ Version `19.1.3` tightens the interaction details that usually matter most in production forms:
485
485
 
486
486
  | Behavior | Contract |
487
487
  | :--- | :--- |
@@ -559,7 +559,7 @@ Use the dedicated React 19 StackBlitz project when you want a fast editable exam
559
559
 
560
560
  ## Official React 19 Test Matrix
561
561
 
562
- The React 19 release was tested in a clean React `19.2.4` application with `@stackline/react-multiselect-dropdown@19.1.1`. The docs use the same examples from that test app, including keyboard navigation, focus, ARIA behavior, badge counters, responsive action buttons, scrollable lists, dialog-safe body overlays, the corrected left-aligned placeholder with vertical centering, guided Slots API customization, headless/custom HTML, and the combobox contract checks for Backspace, Escape, focused badge removal, focus, and option ARIA.
562
+ The React 19 release was tested in a clean React `19.2.4` application with `@stackline/react-multiselect-dropdown@19.1.3`. The docs use the same examples from that test app, including keyboard navigation, focus, ARIA behavior, badge counters, responsive action buttons, scrollable lists, dialog-safe body overlays, the corrected left-aligned placeholder with vertical centering, guided Slots API customization, headless/custom HTML, and the combobox contract checks for Backspace, Escape, focused badge removal, focus, and option ARIA.
563
563
 
564
564
  The same core scenarios are validated for the visual skins:
565
565
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stackline/react-multiselect-dropdown",
3
- "version": "19.1.2",
3
+ "version": "19.1.3",
4
4
  "description": "Maintained React 19 multiselect dropdown with accessibility-focused and keyboard/ARIA tested support, controlled state, slots, headless/state hooks, Stackline skins, body overlays, live docs, search, grouping, lazy loading, and custom renderers.",
5
5
  "keywords": [
6
6
  "react",