ng-select2-component 17.3.0 → 17.3.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 +10 -0
- package/README.md +4 -0
- package/fesm2022/ng-select2-component.mjs +202 -46
- package/fesm2022/ng-select2-component.mjs.map +1 -1
- package/lib/select2-const.d.ts +30 -0
- package/lib/select2-const.d.ts.map +1 -1
- package/lib/select2-interfaces.d.ts +4 -0
- package/lib/select2-interfaces.d.ts.map +1 -1
- package/lib/select2-utils.d.ts.map +1 -1
- package/lib/select2.component.d.ts +1 -0
- package/lib/select2.component.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# Changelog of ng-select2
|
|
2
2
|
|
|
3
|
+
## V17.3.2 (2026-05-24)
|
|
4
|
+
|
|
5
|
+
- feat: add Cyrillic, Greek Arabic and Hebrew for searches and highlight.
|
|
6
|
+
- feat: add `direction` (`rtl` & `ltr`) for options & groups
|
|
7
|
+
|
|
8
|
+
## V17.3.1 (2026-05-21)
|
|
9
|
+
|
|
10
|
+
- feat: searches done in Japanese (e.g. はハばバぱパ are considered the same character)
|
|
11
|
+
- feat: highlight ongoing searches done in Japaneseks
|
|
12
|
+
|
|
3
13
|
## V17.3.0 (2026-05-21)
|
|
4
14
|
|
|
5
15
|
### Change
|
package/README.md
CHANGED
|
@@ -166,6 +166,8 @@ export interface Select2Group {
|
|
|
166
166
|
templateId?: string;
|
|
167
167
|
/** template data */
|
|
168
168
|
data?: any;
|
|
169
|
+
/** force left to right or right to left */
|
|
170
|
+
dir?: 'ltr' | 'rtl';
|
|
169
171
|
}
|
|
170
172
|
|
|
171
173
|
export interface Select2Option {
|
|
@@ -187,6 +189,8 @@ export interface Select2Option {
|
|
|
187
189
|
data?: any;
|
|
188
190
|
/** hide this option */
|
|
189
191
|
hide?: boolean;
|
|
192
|
+
/** force left to right or right to left */
|
|
193
|
+
dir?: 'ltr' | 'rtl';
|
|
190
194
|
}
|
|
191
195
|
|
|
192
196
|
export type Select2Value = string | number | boolean | object | null | undefined;
|