@elite.framework/ng.core 1.0.15 → 1.0.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.
package/index.d.ts
CHANGED
|
@@ -849,6 +849,7 @@ interface GenericSelectorProps extends FormlyFieldProps$1 {
|
|
|
849
849
|
labelField?: string;
|
|
850
850
|
valueField?: string;
|
|
851
851
|
multiple?: boolean;
|
|
852
|
+
loadDefault?: boolean;
|
|
852
853
|
offline?: boolean;
|
|
853
854
|
/** Static offline items (array of objects) */
|
|
854
855
|
offlineItems?: any[];
|
|
@@ -873,9 +874,10 @@ declare class GenericSelectorTypeComponent extends FieldType$1<FieldTypeConfig<G
|
|
|
873
874
|
dialog: DialogService | any;
|
|
874
875
|
private valueChangeSubscription;
|
|
875
876
|
constructor(svc: BaseService, injector: Injector, cdr: ChangeDetectorRef);
|
|
876
|
-
onSelectionChange(val: any): void;
|
|
877
877
|
ngOnInit(): void;
|
|
878
878
|
ngOnDestroy(): void;
|
|
879
|
+
private loadDefaultValue;
|
|
880
|
+
onSelectionChange(val: any): void;
|
|
879
881
|
private initOfflineSelection;
|
|
880
882
|
private initOnlineSelection;
|
|
881
883
|
search(event: {
|