@elite.framework/ng.core 1.0.53 → 1.0.54
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
|
@@ -698,7 +698,7 @@ declare class GenericCrudTableComponent<T> implements OnChanges {
|
|
|
698
698
|
formFields: FormlyFieldConfig[];
|
|
699
699
|
columns: FormlyFieldConfig[];
|
|
700
700
|
isViewMode: boolean;
|
|
701
|
-
displayMode:
|
|
701
|
+
displayMode: string;
|
|
702
702
|
isEditMode: boolean;
|
|
703
703
|
drawerVisible: boolean;
|
|
704
704
|
dialogVisible: boolean;
|
|
@@ -1242,7 +1242,7 @@ declare abstract class BaseCrud<T, F = any> {
|
|
|
1242
1242
|
defaultModel: T | any;
|
|
1243
1243
|
isViewMode: boolean;
|
|
1244
1244
|
isEditMode: boolean;
|
|
1245
|
-
displayMode:
|
|
1245
|
+
displayMode: string;
|
|
1246
1246
|
loadPage(pageIndex: number, pageSize: number): void;
|
|
1247
1247
|
onSearch(filters?: any): void;
|
|
1248
1248
|
visibleChange(value: boolean): void;
|
|
@@ -1252,7 +1252,7 @@ declare abstract class BaseCrud<T, F = any> {
|
|
|
1252
1252
|
sort?: string;
|
|
1253
1253
|
filters?: Record<string, any>;
|
|
1254
1254
|
}): void;
|
|
1255
|
-
protected openEditor(item: T | null, mode:
|
|
1255
|
+
protected openEditor(item: T | null, mode: string): void;
|
|
1256
1256
|
onTableAction(event: {
|
|
1257
1257
|
name: string;
|
|
1258
1258
|
row: T | null;
|