@3kles/kles-material-dynamicforms 19.4.10 → 19.5.0
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.
|
@@ -20,14 +20,18 @@ export declare class KlesFormSelectSearchComponent extends KlesFieldAbstract imp
|
|
|
20
20
|
protected ref: ChangeDetectorRef;
|
|
21
21
|
ngOnInit(): void;
|
|
22
22
|
ngOnDestroy(): void;
|
|
23
|
-
toggleAllSelection(state:
|
|
23
|
+
toggleAllSelection(state: {
|
|
24
|
+
checked: any;
|
|
25
|
+
}): void;
|
|
24
26
|
protected openChangeEvent(): void;
|
|
25
27
|
protected onOpenChange(isOpen: boolean): Observable<any[]>;
|
|
26
28
|
protected onSearchChange(value: string): Observable<any[]>;
|
|
27
29
|
openChange($event: boolean): void;
|
|
28
30
|
compareFn: (o1: any, o2: any) => boolean;
|
|
29
|
-
selectionChange(selection:
|
|
30
|
-
|
|
31
|
+
selectionChange(selection: {
|
|
32
|
+
value: any;
|
|
33
|
+
}): void;
|
|
34
|
+
updateSelectAllControl(values: any[]): void;
|
|
31
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<KlesFormSelectSearchComponent, never>;
|
|
32
36
|
static ɵcmp: i0.ɵɵComponentDeclaration<KlesFormSelectSearchComponent, "kles-form-select-search", never, {}, {}, never, ["*"], true, never>;
|
|
33
37
|
}
|
|
@@ -49,7 +49,9 @@ export interface IKlesFormField {
|
|
|
49
49
|
placeholder?: any;
|
|
50
50
|
tooltip?: string;
|
|
51
51
|
copyTooltip?: string;
|
|
52
|
-
options?: any[] | Subject<any[]> | Observable<any[]> | ((value?: string
|
|
52
|
+
options?: any[] | Subject<any[]> | Observable<any[]> | ((value?: string, group?: {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
}) => Observable<any[]>);
|
|
53
55
|
property?: string;
|
|
54
56
|
collections?: any;
|
|
55
57
|
value?: any;
|