ng-select2-component 17.3.1 → 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 CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ## V17.3.1 (2026-05-21)
4
9
 
5
10
  - feat: searches done in Japanese (e.g. はハばバぱパ are considered the same character)
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;