@recursyve/nice-ui-kit.v2 13.2.0-beta.101 → 13.2.0-beta.103
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/esm2020/lib/components/async-typeahead/async-typeahead.component.mjs +5 -3
- package/esm2020/lib/directives/chip-list/chip-list.directive.mjs +20 -4
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs +25 -5
- package/fesm2015/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs +23 -5
- package/fesm2020/recursyve-nice-ui-kit.v2.mjs.map +1 -1
- package/lib/components/async-typeahead/async-typeahead.component.d.ts +1 -1
- package/lib/directives/chip-list/chip-list.directive.d.ts +3 -1
- package/package.json +1 -1
|
@@ -97,7 +97,7 @@ export declare class NiceAsyncTypeaheadComponent extends _BaseAsyncTypeaheadComp
|
|
|
97
97
|
onOptionActivated(event: MatAutocompleteActivatedEvent): void;
|
|
98
98
|
onOptionSelected(event: MatAutocompleteSelectedEvent): void;
|
|
99
99
|
updateState(open: boolean): void;
|
|
100
|
-
onRemove(event?: Event): void;
|
|
100
|
+
onRemove(event?: Event, reload?: boolean): void;
|
|
101
101
|
formatLabel(item: any): string;
|
|
102
102
|
onEndScroll(): void;
|
|
103
103
|
focusChanged(isFocused: boolean): void;
|
|
@@ -8,6 +8,7 @@ export declare class NiceChipListDirective implements ControlValueAccessor, OnIn
|
|
|
8
8
|
private ngControl;
|
|
9
9
|
private elementRef;
|
|
10
10
|
withItemList: NiceChipListItemsComponent;
|
|
11
|
+
reloadOnSelected: boolean;
|
|
11
12
|
private unsubscribeAll$;
|
|
12
13
|
private values$;
|
|
13
14
|
private _values;
|
|
@@ -22,6 +23,7 @@ export declare class NiceChipListDirective implements ControlValueAccessor, OnIn
|
|
|
22
23
|
registerOnTouched(fn: any): void;
|
|
23
24
|
private setupAsyncTypeahead;
|
|
24
25
|
private addValue;
|
|
26
|
+
private updateTypeaheadSearchOptions;
|
|
25
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<NiceChipListDirective, [{ optional: true; }, { optional: true; }, null]>;
|
|
26
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<NiceChipListDirective, "input[niceChipList], nice-async-typeahead[niceChipList]", never, { "withItemList": "withItemList"; }, {}, never>;
|
|
28
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<NiceChipListDirective, "input[niceChipList], nice-async-typeahead[niceChipList]", never, { "withItemList": "withItemList"; "reloadOnSelected": "reloadOnSelected"; }, {}, never>;
|
|
27
29
|
}
|