ng-select2-component 19.0.0 → 19.0.2

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/CHANGELOG.md CHANGED
@@ -1,13 +1,30 @@
1
1
  # Changelog of ng-select2
2
2
 
3
+ ## V19.0.2 (2026-06-27)
4
+
5
+ ### Change
6
+
7
+ - fix: use `this.prevChange` to ensure that hitting space bar doesn't shift focus (thanks @shoboske)
8
+
9
+ ## V19.0.1 (2026-06-24)
10
+
11
+ ### Change
12
+
13
+ - fix: when you hit spacebar on autocreate mode (thanks @shoboske)
14
+ - fix: create only when input (trimmed) is not empty
15
+
3
16
  ## V19.0.0 (2026-06-17)
4
17
 
18
+ ### Change
19
+
5
20
  - **zoneless**: remove `zone.js` dependency, fully compatible with `provideZonelessChangeDetection()`
6
21
  - feat: add `<ng-option>` and `<ng-group>` template mode directives
7
22
  - feat: add checkbox mode with `showOptionCheckbox` input
8
23
 
9
24
  ## V18.0.0 (2026-06-12)
10
25
 
26
+ ### Change
27
+
11
28
  - update to **Angular 22**
12
29
  - use `inject()` and remove unnecessary params
13
30
  - move `@HostBinding` & `@HostListener` to `host`
@@ -17,11 +34,15 @@
17
34
 
18
35
  ## V17.3.2 (2026-05-24)
19
36
 
37
+ ### Change
38
+
20
39
  - feat: add Cyrillic, Greek Arabic and Hebrew for searches and highlight.
21
40
  - feat: add `direction` (`rtl` & `ltr`) for options & groups
22
41
 
23
42
  ## V17.3.1 (2026-05-21)
24
43
 
44
+ ### Change
45
+
25
46
  - feat: searches done in Japanese (e.g. はハばバぱパ are considered the same character)
26
47
  - feat: highlight ongoing searches done in Japaneseks
27
48
 
package/README.md CHANGED
@@ -537,17 +537,16 @@ npm run build:demo
537
537
  ```sh
538
538
  # run tests
539
539
  npm run test
540
- npm run test:vitest
541
540
  ```
542
541
 
543
542
  ```sh
544
543
  # run tests with coverage
545
- npm run test:vitest:coverage
544
+ npm run test:coverage
546
545
  ```
547
546
 
548
547
  ```sh
549
548
  # run tests with watch
550
- npm run test:vitest:watch
549
+ npm run test:watch
551
550
  ```
552
551
 
553
552
  ## License