imm-element-ui 2.7.0 → 2.7.1
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/grid/grid/grid.component.mjs +67 -41
- package/esm2022/lib/page-form/page-form.component.mjs +2 -2
- package/fesm2022/imm-element-ui.mjs +67 -41
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/crumb-action/crumb-action.component.d.ts +1 -1
- package/lib/grid/grid/grid.component.d.ts +5 -2
- package/package.json +1 -1
|
@@ -50,7 +50,7 @@ export declare class CrumbActionComponent extends AmComponent implements OnInit
|
|
|
50
50
|
listAct(item: any): void;
|
|
51
51
|
actEvent(item: any): void;
|
|
52
52
|
toggleAct(event: any): void;
|
|
53
|
-
setSaveClass(): "
|
|
53
|
+
setSaveClass(): "secondary" | "danger";
|
|
54
54
|
ngOnDestroy(): void;
|
|
55
55
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrumbActionComponent, never>;
|
|
56
56
|
static ɵcmp: i0.ɵɵComponentDeclaration<CrumbActionComponent, "app-crumb-action", never, { "isShowCog": { "alias": "isShowCog"; "required": false; "isSignal": true; }; "addVisible": { "alias": "addVisible"; "required": false; "isSignal": true; }; "importVisible": { "alias": "importVisible"; "required": false; "isSignal": true; }; "exportVisible": { "alias": "exportVisible"; "required": false; "isSignal": true; }; "newUrl": { "alias": "newUrl"; "required": false; "isSignal": true; }; "configNewPath": { "alias": "configNewPath"; "required": false; "isSignal": true; }; "onExport": { "alias": "onExport"; "required": false; "isSignal": true; }; "outlined": { "alias": "outlined"; "required": false; "isSignal": true; }; "isList": { "alias": "isList"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; "actionList": { "alias": "actionList"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "menus": { "alias": "menus"; "required": false; "isSignal": true; }; "saveBtnDisable": { "alias": "saveBtnDisable"; "required": false; "isSignal": true; }; "showSaveButton": { "alias": "showSaveButton"; "required": false; "isSignal": true; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; "actionEvent": "actionEvent"; }, ["newBtnTemplateRef"], never, true, never>;
|
|
@@ -71,7 +71,7 @@ export declare class GridComponent {
|
|
|
71
71
|
rawPrm?: Search;
|
|
72
72
|
deleteEmit: import("@angular/core").OutputEmitterRef<number[]>;
|
|
73
73
|
addEmit: import("@angular/core").OutputEmitterRef<void>;
|
|
74
|
-
addType: import("@angular/core").InputSignal<"none" | "
|
|
74
|
+
addType: import("@angular/core").InputSignal<"none" | "handle" | "select" | undefined>;
|
|
75
75
|
selectData: import("@angular/core").InputSignal<any[] | undefined>;
|
|
76
76
|
showAct: import("@angular/core").InputSignal<boolean>;
|
|
77
77
|
actPos: import("@angular/core").InputSignal<"top" | "bottom">;
|
|
@@ -103,6 +103,7 @@ export declare class GridComponent {
|
|
|
103
103
|
singleClickEdit: import("@angular/core").WritableSignal<boolean>;
|
|
104
104
|
autoGroupColumnDef: AutoGroupColumnDef;
|
|
105
105
|
private searchPrmSub;
|
|
106
|
+
private columnDefsLoadId;
|
|
106
107
|
onResize(): void;
|
|
107
108
|
constructor(action: ActionService);
|
|
108
109
|
private withGridContext;
|
|
@@ -114,7 +115,9 @@ export declare class GridComponent {
|
|
|
114
115
|
onGridReady(e: any): void;
|
|
115
116
|
onSelectionChanged(event: any): any;
|
|
116
117
|
onRowGroupOpened(): void;
|
|
117
|
-
|
|
118
|
+
private hasDynamicSelectDataColumn;
|
|
119
|
+
private refreshColumnDefs;
|
|
120
|
+
setRichValue(options?: GridOptions): Promise<any[]>;
|
|
118
121
|
getEnums(id: number): Promise<Object>;
|
|
119
122
|
handleSelections(startRow: number): void;
|
|
120
123
|
getData(): void;
|