ud-components 0.3.16 → 0.3.17
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { FormControl } from '@angular/forms';
|
|
3
3
|
import { UdSelectOption } from '../multi-select/multi-select.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
@@ -23,6 +23,7 @@ export declare class AutocompleteComponent implements OnInit, OnChanges, OnDestr
|
|
|
23
23
|
options: UdSelectOption[];
|
|
24
24
|
loading: boolean;
|
|
25
25
|
disabled: boolean;
|
|
26
|
+
searchChange: EventEmitter<string>;
|
|
26
27
|
/** Internal text control that drives the visible input */
|
|
27
28
|
searchControl: FormControl<string | null>;
|
|
28
29
|
filteredOptions: UdSelectOption[];
|
|
@@ -41,5 +42,5 @@ export declare class AutocompleteComponent implements OnInit, OnChanges, OnDestr
|
|
|
41
42
|
private filter;
|
|
42
43
|
private buildLabelMap;
|
|
43
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutocompleteComponent, never>;
|
|
44
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ud-autocomplete", never, { "controlName": { "alias": "controlName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconFontSet": { "alias": "iconFontSet"; "required": false; }; "options": { "alias": "options"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
45
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutocompleteComponent, "ud-autocomplete", never, { "controlName": { "alias": "controlName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconFontSet": { "alias": "iconFontSet"; "required": false; }; "options": { "alias": "options"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "searchChange": "searchChange"; }, never, never, true, never>;
|
|
45
46
|
}
|