ng-select2-component 18.0.0 → 19.0.1
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 +21 -0
- package/README.md +58 -17
- package/fesm2022/ng-select2-component.mjs +273 -29
- package/fesm2022/ng-select2-component.mjs.map +1 -1
- package/package.json +1 -1
- package/types/ng-select2-component.d.ts +120 -13
- package/types/ng-select2-component.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import {
|
|
3
|
-
import { SafeHtml } from '@angular/platform-browser';
|
|
2
|
+
import { ElementRef, OnInit, DoCheck, AfterViewInit, OnDestroy, OnChanges, TemplateRef, SimpleChanges, PipeTransform } from '@angular/core';
|
|
4
3
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
5
4
|
import { CdkConnectedOverlay, ConnectionPositionPair } from '@angular/cdk/overlay';
|
|
6
5
|
import { ViewportRuler } from '@angular/cdk/scrolling';
|
|
7
6
|
import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
7
|
+
import { SafeHtml } from '@angular/platform-browser';
|
|
8
8
|
|
|
9
9
|
declare const timeout = 200;
|
|
10
10
|
/**
|
|
@@ -45,16 +45,75 @@ declare const unicodePatterns: {
|
|
|
45
45
|
declare const defaultMinCountForSearch = 6;
|
|
46
46
|
declare const protectRegexp: RegExp;
|
|
47
47
|
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
48
|
+
/**
|
|
49
|
+
* Shared base for the <ng-option> and <ng-group> directives.
|
|
50
|
+
*
|
|
51
|
+
* Holds the inputs common to both (classes, templateId, data, dir) and the projected-content
|
|
52
|
+
* reactivity: plain text content (interpolation in the element body) is not a tracked signal, so
|
|
53
|
+
* the host component dirty-checks it in ngDoCheck and pushes changes into {@link _projectedContent},
|
|
54
|
+
* which the rebuild effect depends on through {@link _resolveLabel}.
|
|
55
|
+
*/
|
|
56
|
+
declare abstract class Select2ContentDirective {
|
|
57
|
+
protected readonly _elementRef: ElementRef<any>;
|
|
58
|
+
/** Additional CSS classes */
|
|
59
|
+
readonly classes: _angular_core.InputSignal<string | undefined>;
|
|
60
|
+
/** Template id */
|
|
61
|
+
readonly templateId: _angular_core.InputSignal<string | undefined>;
|
|
62
|
+
/** Arbitrary data attached to the option/group */
|
|
63
|
+
readonly data: _angular_core.InputSignal<any>;
|
|
64
|
+
/** Force text direction */
|
|
65
|
+
readonly dir: _angular_core.InputSignal<"ltr" | "rtl" | undefined>;
|
|
66
|
+
/**
|
|
67
|
+
* Reactive trigger for the projected text content (interpolation in the element body).
|
|
68
|
+
* The host component dirty-checks the DOM in its ngDoCheck and updates this signal when the
|
|
69
|
+
* rendered text changes, so the component's rebuild effect re-runs even though plain text
|
|
70
|
+
* content is not otherwise a tracked dependency.
|
|
71
|
+
*/
|
|
72
|
+
readonly _projectedContent: _angular_core.WritableSignal<string | undefined>;
|
|
73
|
+
/** Read the host element's rendered text content (innerHTML, then textContent, then ''). */
|
|
74
|
+
private _readContent;
|
|
75
|
+
/**
|
|
76
|
+
* Re-read the host element's rendered content and update {@link _projectedContent} when it
|
|
77
|
+
* changed. Returns true if a change was detected. Called from the host component's ngDoCheck.
|
|
78
|
+
*/
|
|
79
|
+
_refreshProjectedContent(): boolean;
|
|
80
|
+
/**
|
|
81
|
+
* Resolve the label: prefer the explicit [label] input, then the cached projected content,
|
|
82
|
+
* then a one-off DOM read. Reading _projectedContent() registers it as a dependency of the
|
|
83
|
+
* rebuild effect so interpolation/content changes propagate; the cached value avoids a second
|
|
84
|
+
* DOM read, and _readContent() only runs on the initial pass.
|
|
85
|
+
*/
|
|
86
|
+
protected _resolveLabel(label: string | undefined): string;
|
|
87
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Select2ContentDirective, never>;
|
|
88
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Select2ContentDirective, never, never, { "classes": { "alias": "classes"; "required": false; "isSignal": true; }; "templateId": { "alias": "templateId"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "dir": { "alias": "dir"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
53
89
|
}
|
|
54
90
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
91
|
+
/**
|
|
92
|
+
* Directive representing a single option inside a <ng-select2> or <ng-group>.
|
|
93
|
+
*
|
|
94
|
+
* Usage:
|
|
95
|
+
* ```html
|
|
96
|
+
* <ng-select2>
|
|
97
|
+
* <ng-option value="foo">Foo</ng-option>
|
|
98
|
+
* <ng-option value="bar" [disabled]="true">Bar</ng-option>
|
|
99
|
+
* </ng-select2>
|
|
100
|
+
* ```
|
|
101
|
+
*/
|
|
102
|
+
declare class Select2OptionDirective extends Select2ContentDirective {
|
|
103
|
+
/** The option value */
|
|
104
|
+
readonly value: _angular_core.InputSignal<Select2Value>;
|
|
105
|
+
/** Explicit label — falls back to the element's text content if omitted */
|
|
106
|
+
readonly label: _angular_core.InputSignal<string | undefined>;
|
|
107
|
+
/** Whether the option is disabled */
|
|
108
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
109
|
+
/** Template selection id */
|
|
110
|
+
readonly templateSelectionId: _angular_core.InputSignal<string | undefined>;
|
|
111
|
+
/** Hide this option */
|
|
112
|
+
readonly hide: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
113
|
+
/** Build a plain Select2Option object from the current input values */
|
|
114
|
+
toOption(): Select2Option;
|
|
115
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Select2OptionDirective, never>;
|
|
116
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Select2OptionDirective, "ng-option", never, { "value": { "alias": "value"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "templateSelectionId": { "alias": "templateSelectionId"; "required": false; "isSignal": true; }; "hide": { "alias": "hide"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
58
117
|
}
|
|
59
118
|
|
|
60
119
|
declare class Select2 implements ControlValueAccessor, OnInit, DoCheck, AfterViewInit, OnDestroy, OnChanges {
|
|
@@ -158,6 +217,8 @@ declare class Select2 implements ControlValueAccessor, OnInit, DoCheck, AfterVie
|
|
|
158
217
|
readonly selectionNoWrap: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
159
218
|
/** Add an option to select or remove all (if all is selected) */
|
|
160
219
|
readonly showSelectAll: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
220
|
+
/** Show a checkbox next to each option */
|
|
221
|
+
readonly showOptionCheckbox: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
161
222
|
/** Text for remove all options */
|
|
162
223
|
readonly removeAllText: _angular_core.InputSignal<string>;
|
|
163
224
|
/** Text for select all options */
|
|
@@ -185,8 +246,12 @@ declare class Select2 implements ControlValueAccessor, OnInit, DoCheck, AfterVie
|
|
|
185
246
|
readonly selection: _angular_core.Signal<ElementRef<HTMLElement>>;
|
|
186
247
|
readonly resultContainer: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
187
248
|
readonly results: _angular_core.Signal<readonly ElementRef<any>[]>;
|
|
188
|
-
readonly searchInput: _angular_core.Signal<ElementRef<
|
|
249
|
+
readonly searchInput: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
|
|
189
250
|
readonly dropdown: _angular_core.Signal<ElementRef<HTMLElement> | undefined>;
|
|
251
|
+
/** Top-level <ng-option> elements (not inside a <ng-group>) */
|
|
252
|
+
readonly _ngOptions: _angular_core.Signal<readonly Select2OptionDirective[]>;
|
|
253
|
+
/** <ng-group> elements */
|
|
254
|
+
readonly _ngGroups: _angular_core.Signal<readonly Select2GroupDirective[]>;
|
|
190
255
|
readonly classMaterial: _angular_core.Signal<boolean>;
|
|
191
256
|
readonly classNostyle: _angular_core.Signal<boolean>;
|
|
192
257
|
readonly classBorderless: _angular_core.Signal<boolean>;
|
|
@@ -236,6 +301,12 @@ declare class Select2 implements ControlValueAccessor, OnInit, DoCheck, AfterVie
|
|
|
236
301
|
ngAfterViewInit(): void;
|
|
237
302
|
ngDoCheck(): void;
|
|
238
303
|
ngOnDestroy(): void;
|
|
304
|
+
/**
|
|
305
|
+
* Template mode only: dirty-check the rendered text content of every projected <ng-option>
|
|
306
|
+
* (top-level and nested in <ng-group>) so interpolation changes ({{ }}) are picked up.
|
|
307
|
+
* Updating an option's _projectedContent signal re-triggers the data rebuild effect.
|
|
308
|
+
*/
|
|
309
|
+
private _refreshProjectedContent;
|
|
239
310
|
fixValue(): void;
|
|
240
311
|
updateSearchBox(): void;
|
|
241
312
|
getOptionStyle(option: Select2Option): string;
|
|
@@ -355,7 +426,7 @@ declare class Select2 implements ControlValueAccessor, OnInit, DoCheck, AfterVie
|
|
|
355
426
|
private _isAbobeOverlay;
|
|
356
427
|
_updateFocusState(state: boolean): void;
|
|
357
428
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Select2, never>;
|
|
358
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Select2, "select2, ng-select2", never, { "data": { "alias": "data"; "required":
|
|
429
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<Select2, "select2, ng-select2", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "minCharForSearch": { "alias": "minCharForSearch"; "required": false; "isSignal": true; }; "displaySearchStatus": { "alias": "displaySearchStatus"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "limitSelection": { "alias": "limitSelection"; "required": false; "isSignal": true; }; "listPosition": { "alias": "listPosition"; "required": false; "isSignal": true; }; "overlay": { "alias": "overlay"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "multipleDrag": { "alias": "multipleDrag"; "required": false; "isSignal": true; }; "styleMode": { "alias": "styleMode"; "required": false; "isSignal": true; }; "noResultMessage": { "alias": "noResultMessage"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; "maxResultsMessage": { "alias": "maxResultsMessage"; "required": false; "isSignal": true; }; "infiniteScrollDistance": { "alias": "infiniteScrollDistance"; "required": false; "isSignal": true; }; "infiniteScrollThrottle": { "alias": "infiniteScrollThrottle"; "required": false; "isSignal": true; }; "infiniteScroll": { "alias": "infiniteScroll"; "required": false; "isSignal": true; }; "autoCreate": { "alias": "autoCreate"; "required": false; "isSignal": true; }; "noLabelTemplate": { "alias": "noLabelTemplate"; "required": false; "isSignal": true; }; "editPattern": { "alias": "editPattern"; "required": false; "isSignal": true; }; "templates": { "alias": "templates"; "required": false; "isSignal": true; }; "templateSelection": { "alias": "templateSelection"; "required": false; "isSignal": true; }; "resultMaxHeight": { "alias": "resultMaxHeight"; "required": false; "isSignal": true; }; "customSearchEnabled": { "alias": "customSearchEnabled"; "required": false; "isSignal": true; }; "minCountForSearch": { "alias": "minCountForSearch"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "hideSelectedItems": { "alias": "hideSelectedItems"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; "tabIndex": { "alias": "tabIndex"; "required": false; "isSignal": true; }; "resettable": { "alias": "resettable"; "required": false; "isSignal": true; }; "resetSelectedValue": { "alias": "resetSelectedValue"; "required": false; "isSignal": true; }; "nativeKeyboard": { "alias": "nativeKeyboard"; "required": false; "isSignal": true; }; "highlightText": { "alias": "highlightText"; "required": false; "isSignal": true; }; "grid": { "alias": "grid"; "required": false; "isSignal": true; }; "selectionOverride": { "alias": "selectionOverride"; "required": false; "isSignal": true; }; "selectionNoWrap": { "alias": "selectionNoWrap"; "required": false; "isSignal": true; }; "showSelectAll": { "alias": "showSelectAll"; "required": false; "isSignal": true; }; "showOptionCheckbox": { "alias": "showOptionCheckbox"; "required": false; "isSignal": true; }; "removeAllText": { "alias": "removeAllText"; "required": false; "isSignal": true; }; "selectAllText": { "alias": "selectAllText"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; "isSignal": true; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; "isSignal": true; }; "ariaInvalid": { "alias": "ariaInvalid"; "required": false; "isSignal": true; }; "ariaResetButtonDescription": { "alias": "ariaResetButtonDescription"; "required": false; "isSignal": true; }; }, { "update": "update"; "autoCreateItem": "autoCreateItem"; "open": "open"; "close": "close"; "focus": "focus"; "blur": "blur"; "search": "search"; "scroll": "scroll"; "removeOption": "removeOption"; }, ["_ngOptions", "_ngGroups"], ["select2-label, ng-select2-label", "select2-hint, ng-select2-hint"], true, never>;
|
|
359
430
|
}
|
|
360
431
|
|
|
361
432
|
interface Select2Group {
|
|
@@ -453,6 +524,42 @@ type Select2Template = TemplateRef<any> | {
|
|
|
453
524
|
[key: string]: TemplateRef<any>;
|
|
454
525
|
} | undefined;
|
|
455
526
|
|
|
527
|
+
/**
|
|
528
|
+
* Directive representing an option group inside a <ng-select2>.
|
|
529
|
+
*
|
|
530
|
+
* Usage:
|
|
531
|
+
* ```html
|
|
532
|
+
* <ng-select2>
|
|
533
|
+
* <ng-group label="Fruits">
|
|
534
|
+
* <ng-option value="apple">Apple</ng-option>
|
|
535
|
+
* <ng-option value="banana">Banana</ng-option>
|
|
536
|
+
* </ng-group>
|
|
537
|
+
* </ng-select2>
|
|
538
|
+
* ```
|
|
539
|
+
*/
|
|
540
|
+
declare class Select2GroupDirective extends Select2ContentDirective {
|
|
541
|
+
/** The group label (required) */
|
|
542
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
543
|
+
/** Child <ng-option> directives nested inside this group */
|
|
544
|
+
readonly _ngOptions: _angular_core.Signal<readonly Select2OptionDirective[]>;
|
|
545
|
+
/** Build a plain Select2Group object from the current input values */
|
|
546
|
+
toGroup(): Select2Group;
|
|
547
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Select2GroupDirective, never>;
|
|
548
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Select2GroupDirective, "ng-group", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; }, {}, ["_ngOptions"], never, true, never>;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
declare class Select2HighlightPipe implements PipeTransform {
|
|
552
|
+
private readonly sanitizer;
|
|
553
|
+
transform(value: string | null | undefined, search: string | null | undefined, disabled?: boolean): SafeHtml | string;
|
|
554
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Select2HighlightPipe, never>;
|
|
555
|
+
static ɵpipe: _angular_core.ɵɵPipeDeclaration<Select2HighlightPipe, "highlightText", true>;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
declare class Select2Hint {
|
|
559
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Select2Hint, never>;
|
|
560
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Select2Hint, "select2-hint, ng-select2-hint", never, {}, {}, never, never, true, never>;
|
|
561
|
+
}
|
|
562
|
+
|
|
456
563
|
declare class Select2Label {
|
|
457
564
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<Select2Label, never>;
|
|
458
565
|
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<Select2Label, "select2-label, ng-select2-label", never, {}, {}, never, never, true, never>;
|
|
@@ -487,6 +594,6 @@ declare class Select2Utils {
|
|
|
487
594
|
static formatPattern(str: string, editPattern?: (str: string) => string): string;
|
|
488
595
|
}
|
|
489
596
|
|
|
490
|
-
export { Select2, Select2HighlightPipe, Select2Hint, Select2Label, Select2Utils, arabicDiacritical, defaultMinCountForSearch, hebrewDiacritical, latinDiacritical, protectRegexp, timeout, unicodePatterns };
|
|
597
|
+
export { Select2, Select2ContentDirective, Select2GroupDirective, Select2HighlightPipe, Select2Hint, Select2Label, Select2OptionDirective, Select2Utils, arabicDiacritical, defaultMinCountForSearch, hebrewDiacritical, latinDiacritical, protectRegexp, timeout, unicodePatterns };
|
|
491
598
|
export type { Select2AutoCreateEvent, Select2Data, Select2Group, Select2Option, Select2RemoveEvent, Select2ScrollEvent, Select2SearchEvent, Select2SelectionOverride, Select2Template, Select2UpdateEvent, Select2UpdateValue, Select2Value };
|
|
492
599
|
//# sourceMappingURL=ng-select2-component.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ng-select2-component.d.ts","sources":["../../../projects/ng-select2-component/src/lib/select2-const.ts","../../../projects/ng-select2-component/src/lib/select2-
|
|
1
|
+
{"version":3,"file":"ng-select2-component.d.ts","sources":["../../../projects/ng-select2-component/src/lib/select2-const.ts","../../../projects/ng-select2-component/src/lib/select2-content.directive.ts","../../../projects/ng-select2-component/src/lib/select2-option.directive.ts","../../../projects/ng-select2-component/src/lib/select2.component.ts","../../../projects/ng-select2-component/src/lib/select2-interfaces.ts","../../../projects/ng-select2-component/src/lib/select2-group.directive.ts","../../../projects/ng-select2-component/src/lib/select2-highlight.pipe.ts","../../../projects/ng-select2-component/src/lib/select2-hint.component.ts","../../../projects/ng-select2-component/src/lib/select2-label.component.ts","../../../projects/ng-select2-component/src/lib/select2-utils.ts"],"mappings":"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","names":[]}
|