@stackline/angular-multiselect-dropdown 2.0.4 → 2.0.5

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
@@ -12,7 +12,7 @@
12
12
 
13
13
  **[Documentation & Live Demos](https://alexandro.net/docs/angular/multiselect/)** | **[Angular 2 Demo](https://alexandro.net/docs/angular/multiselect/angular-2/)** | **[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 npm release:** `2.0.4` for Angular `2.x`
15
+ **Latest tested npm release:** `2.0.5` for Angular `2.x`
16
16
 
17
17
  ---
18
18
 
@@ -24,7 +24,7 @@
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 public npm release is `2.0.4` for Angular 2.x applications.
27
+ The repository contains the full documentation matrix from Angular 2 through Angular 21. The current public npm release is `2.0.5` for Angular 2.x applications.
28
28
 
29
29
  The Angular 2 package is compatible with Angular 2.x and was tested in a real Angular 2.4.10 application before publication.
30
30
 
@@ -43,7 +43,7 @@ The Angular 2 package is compatible with Angular 2.x and was tested in a real An
43
43
  | Lazy loading and remote-data hooks | ✅ |
44
44
  | Theming via bundled CSS/SCSS | ✅ |
45
45
  | Primary selector `<angular-multiselect>` | ✅ |
46
- | Legacy selector `<angular2-multiselect>` | ✅ |
46
+ | Legacy compatibility alias `<angular2-multiselect>` | ✅ |
47
47
  | Versioned docs builds per Angular line | ✅ |
48
48
 
49
49
  ## Table of Contents
@@ -66,7 +66,7 @@ The Angular 2 package is compatible with Angular 2.x and was tested in a real An
66
66
  - new package: `@stackline/angular-multiselect-dropdown`
67
67
  - previous package: `@stackline/angular2-multiselect-dropdown`
68
68
  - primary selector: `<angular-multiselect>`
69
- - legacy alias still accepted: `<angular2-multiselect>`
69
+ - legacy alias still accepted only for compatibility: `<angular2-multiselect>`
70
70
 
71
71
  ## Angular Version Compatibility
72
72
 
@@ -98,10 +98,10 @@ Each package family only installs on its matching Angular family. Framework majo
98
98
  ## Installation
99
99
 
100
100
  ```bash
101
- npm install @stackline/angular-multiselect-dropdown@2.0.4
101
+ npm install @stackline/angular-multiselect-dropdown@2.0.5
102
102
  ```
103
103
 
104
- Install `2.0.4` for Angular 2.x applications. This patch keeps the tested Angular 2 behavior and updates the published README, package metadata, and documentation links.
104
+ Install `2.0.5` for Angular 2.x applications. This patch keeps the tested Angular 2 behavior, makes `<angular-multiselect>` the documented standard selector, and keeps `<angular2-multiselect>` only as a legacy compatibility alias.
105
105
 
106
106
  ## Setup
107
107
 
@@ -201,11 +201,7 @@ dropdownSettings = {
201
201
  </angular-multiselect>
202
202
  ```
203
203
 
204
- The same template contract also works with the legacy selector:
205
-
206
- ```html
207
- <angular2-multiselect></angular2-multiselect>
208
- ```
204
+ `<angular2-multiselect>` remains available only as a legacy compatibility alias for applications migrating from the old outdated plugin. New code and all current examples should use `<angular-multiselect>`.
209
205
 
210
206
  ## Forms Integration
211
207