@stackline/angular-multiselect-dropdown 21.1.12 → 21.1.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/README.md +8 -8
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
**[Documentation & Live Demos](https://alexandro.net/docs/angular/multiselect/)** | **[Angular 21 Demo](https://alexandro.net/docs/angular/multiselect/angular-21/)** | **[npm](https://www.npmjs.com/package/@stackline/angular-multiselect-dropdown)** | **[Issues](https://github.com/alexandroit/angular-multiselect-dropdown/issues)** | **[Repository](https://github.com/alexandroit/angular-multiselect-dropdown)**
|
|
14
14
|
|
|
15
|
-
**Latest tested package release:** `21.1.
|
|
15
|
+
**Latest tested package release:** `21.1.13` for Angular `21.x`
|
|
16
16
|
|
|
17
17
|
---
|
|
18
18
|
|
|
@@ -24,9 +24,9 @@
|
|
|
24
24
|
|
|
25
25
|
The original `angular2-multiselect-dropdown` package became difficult to keep current across multiple Angular generations. This maintained package keeps the classic API and template structure intact, introduces the new primary selector `<angular-multiselect>`, preserves the legacy alias `<angular2-multiselect>`, and publishes the project line by line so older applications can keep a predictable upgrade path.
|
|
26
26
|
|
|
27
|
-
The repository contains the full documentation matrix from Angular 2 through Angular 21. The current package release is `21.1.
|
|
27
|
+
The repository contains the full documentation matrix from Angular 2 through Angular 21. The current package release is `21.1.13` for Angular 21.x applications.
|
|
28
28
|
|
|
29
|
-
The Angular 21 package is compatible with Angular 21.x and was tested in a real Angular 21.2.14 application before npm publication. The 21.1.x line adds ADA-compliant keyboard navigation, focus handling, and ARIA support for the dropdown trigger, clear-all action, selected chips, listbox, and lazy-loaded results. The 21.1.
|
|
29
|
+
The Angular 21 package is compatible with Angular 21.x and was tested in a real Angular 21.2.14 application before npm publication. The 21.1.x line adds ADA-compliant keyboard navigation, focus handling, and ARIA support for the dropdown trigger, clear-all action, selected chips, listbox, and lazy-loaded results. The 21.1.13 patch keeps that behavior, fixes responsive dropdown width handling, makes tagToBody/appendToBody use portal-style positioning so dialogs and overflow containers do not clip the open list, and keeps the open menu surface opaque.
|
|
30
30
|
|
|
31
31
|
## Features
|
|
32
32
|
|
|
@@ -79,7 +79,7 @@ Peer ranges are intentionally bounded to the tested Angular major. The Angular 2
|
|
|
79
79
|
|
|
80
80
|
| Package family | Framework family | Peer range | Tested release window | Demo link |
|
|
81
81
|
| :---: | :---: | :---: | :---: | :--- |
|
|
82
|
-
| **21.x** | **Angular 21 only** | **`>=21.0.0 <22.0.0`** | **21.1.
|
|
82
|
+
| **21.x** | **Angular 21 only** | **`>=21.0.0 <22.0.0`** | **21.1.13 -> 21.2.14** | [Angular 21 family docs](https://alexandro.net/docs/angular/multiselect/angular-21/) |
|
|
83
83
|
| **20.x** | **Angular 20 only** | **`>=20.0.0 <21.0.0`** | **20.0.1 -> 20.3.21** | [Angular 20 family docs](https://alexandro.net/docs/angular/multiselect/angular-20/) |
|
|
84
84
|
| **19.x** | **Angular 19 only** | **`>=19.0.0 <20.0.0`** | **19.0.1 -> 19.2.22** | [Angular 19 family docs](https://alexandro.net/docs/angular/multiselect/angular-19/) |
|
|
85
85
|
| **18.x** | **Angular 18 only** | **`>=18.0.0 <19.0.0`** | **18.0.1 -> 18.2.14** | [Angular 18 family docs](https://alexandro.net/docs/angular/multiselect/angular-18/) |
|
|
@@ -102,10 +102,10 @@ Peer ranges are intentionally bounded to the tested Angular major. The Angular 2
|
|
|
102
102
|
## Installation
|
|
103
103
|
|
|
104
104
|
```bash
|
|
105
|
-
npm install @stackline/angular-multiselect-dropdown@21.1.
|
|
105
|
+
npm install @stackline/angular-multiselect-dropdown@21.1.13 --save-exact
|
|
106
106
|
```
|
|
107
107
|
|
|
108
|
-
Install `21.1.
|
|
108
|
+
Install `21.1.13` for Angular 21.x applications. This line keeps the tested Angular 21 behavior, makes `<angular-multiselect>` the documented standard selector, keeps `<angular2-multiselect>` only as a legacy compatibility alias, adds the ADA-compliant keyboard/ARIA accessibility patch, fixes responsive dropdown width handling, and keeps dropdown surfaces opaque in clipped containers.
|
|
109
109
|
|
|
110
110
|
## Setup
|
|
111
111
|
|
|
@@ -201,7 +201,7 @@ dropdownSettings = {
|
|
|
201
201
|
|
|
202
202
|
## Official Angular 21 Test Matrix
|
|
203
203
|
|
|
204
|
-
The published Angular 21 release was tested in a real Angular `21.2.14` application with `@stackline/angular-multiselect-dropdown@21.1.
|
|
204
|
+
The published Angular 21 release was tested in a real Angular `21.2.14` application with `@stackline/angular-multiselect-dropdown@21.1.13`. The docs now use the same examples from that test app, including the ADA-compliant keyboard, focus, ARIA behavior, responsive dropdown width handling, opaque menu surfaces, and dialog-safe positioning added in this release line.
|
|
205
205
|
|
|
206
206
|
Switch between skins through the settings object:
|
|
207
207
|
|
|
@@ -313,7 +313,7 @@ settings = {
|
|
|
313
313
|
};
|
|
314
314
|
```
|
|
315
315
|
|
|
316
|
-
In `21.1.
|
|
316
|
+
In `21.1.13`, `tagToBody: true` renders the open panel outside clipping containers, keeps it aligned to the original trigger, keeps the menu surface opaque, recalculates position on scroll and resize, and cleans it up on close or destroy. `appendToBody: true` is also accepted as an alias for teams that prefer that name.
|
|
317
317
|
|
|
318
318
|
## Events
|
|
319
319
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "../../../node_modules/ng-packagr/package.schema.json",
|
|
3
3
|
"name": "@stackline/angular-multiselect-dropdown",
|
|
4
|
-
"version": "21.1.
|
|
4
|
+
"version": "21.1.13",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Pradeep Terli (Original), Alexandro Paixao Marques (Maintainer)",
|
|
7
7
|
"description": "Angular multiselect dropdown for maintained release lines from Angular 2 through Angular 21, with search, grouping, custom templates, checkbox selection, reactive and template-driven forms support, Material-inspired theming, and ADA-compliant keyboard/ARIA accessibility support.",
|
|
@@ -92,4 +92,4 @@
|
|
|
92
92
|
"dependencies": {
|
|
93
93
|
"tslib": "^2.3.0"
|
|
94
94
|
}
|
|
95
|
-
}
|
|
95
|
+
}
|