asksuite-citrus 1.14.10-beta.0 → 1.14.10
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/esm2022/lib/components/autocomplete/autocomplete.component.mjs +15 -11
- package/esm2022/lib/components/phone-ddi/phone-ddi.component.mjs +17 -19
- package/fesm2022/asksuite-citrus.mjs +30 -28
- package/fesm2022/asksuite-citrus.mjs.map +1 -1
- package/lib/components/autocomplete/autocomplete.component.d.ts +1 -0
- package/lib/components/phone-ddi/phone-ddi.component.d.ts +1 -2
- package/package.json +1 -1
@@ -58,6 +58,7 @@ export declare class AutocompleteComponent implements AfterViewInit, ControlValu
|
|
58
58
|
selectAllMessage: any;
|
59
59
|
iconPropReference?: string;
|
60
60
|
enableRemove: boolean;
|
61
|
+
position: 'above' | 'below';
|
61
62
|
itemCheck: EventEmitter<any>;
|
62
63
|
selectionDone: EventEmitter<any>;
|
63
64
|
optionRemoved: EventEmitter<any>;
|
@@ -23,7 +23,7 @@ export declare class PhoneDdiComponent implements OnInit, ControlValueAccessor {
|
|
23
23
|
onChange: (value?: any) => void;
|
24
24
|
onTouch: () => void;
|
25
25
|
protected closed: boolean;
|
26
|
-
protected
|
26
|
+
protected inputControl: FormControl<string | null>;
|
27
27
|
protected searchFieldControl: FormControl<string | null>;
|
28
28
|
protected filteredOptions: any[];
|
29
29
|
protected isValid: boolean;
|
@@ -48,7 +48,6 @@ export declare class PhoneDdiComponent implements OnInit, ControlValueAccessor {
|
|
48
48
|
private addAvailableFlags;
|
49
49
|
private initSelectedFlag;
|
50
50
|
private handleInputChange;
|
51
|
-
handlePhoneChange(event: any): void;
|
52
51
|
private getOverlayConfig;
|
53
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<PhoneDdiComponent, never>;
|
54
53
|
static ɵcmp: i0.ɵɵComponentDeclaration<PhoneDdiComponent, "ask-phone-ddi", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "valueChange": "valueChange"; "onChangeFlag": "onChangeFlag"; }, never, never, false, never>;
|