imm-element-ui 1.3.3 → 1.3.5
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/am/am.component.mjs +20 -1
- package/esm2022/lib/crumb-action/crumb-action.component.mjs +15 -3
- package/esm2022/lib/page-form/page-form.component.mjs +2 -2
- package/esm2022/lib/page-grid-list/page-grid-list.component.mjs +3 -3
- package/fesm2022/imm-element-ui.mjs +36 -5
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/am/am.component.d.ts +2 -0
- package/lib/crumb-action/crumb-action.component.d.ts +4 -2
- package/lib/grid/grid/grid.component.d.ts +1 -1
- package/package.json +1 -1
package/lib/am/am.component.d.ts
CHANGED
|
@@ -191,6 +191,8 @@ export declare class AmComponent {
|
|
|
191
191
|
webDealQuery(param: Deal): Observable<any>;
|
|
192
192
|
dealCustom(prm?: Deal): void;
|
|
193
193
|
webDealCustom(param: Deal): Observable<any>;
|
|
194
|
+
dealSubmit(prm?: Deal): void;
|
|
195
|
+
webDealSubmit(param: Deal): Observable<any>;
|
|
194
196
|
static ɵfac: i0.ɵɵFactoryDeclaration<AmComponent, never>;
|
|
195
197
|
static ɵcmp: i0.ɵɵComponentDeclaration<AmComponent, "app-am", never, {}, {}, never, never, true, never>;
|
|
196
198
|
}
|
|
@@ -29,6 +29,8 @@ export declare class CrumbActionComponent extends AmComponent implements OnInit
|
|
|
29
29
|
data: import("@angular/core").InputSignal<any>;
|
|
30
30
|
showAct: boolean;
|
|
31
31
|
menus: import("@angular/core").InputSignal<any[]>;
|
|
32
|
+
impVisible: import("@angular/core").InputSignal<boolean | undefined>;
|
|
33
|
+
expVisible: import("@angular/core").InputSignal<boolean | undefined>;
|
|
32
34
|
displayOpItems: import("@angular/core").Signal<any[]>;
|
|
33
35
|
newBtnTemplateRef: TemplateRef<any> | undefined;
|
|
34
36
|
listOpItems: {
|
|
@@ -53,8 +55,8 @@ export declare class CrumbActionComponent extends AmComponent implements OnInit
|
|
|
53
55
|
listAct(item: any): void;
|
|
54
56
|
actEvent(item: any): void;
|
|
55
57
|
toggleAct(event: any): void;
|
|
56
|
-
setSaveClass(): "
|
|
58
|
+
setSaveClass(): "danger" | "secondary";
|
|
57
59
|
ngOnDestroy(): void;
|
|
58
60
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrumbActionComponent, never>;
|
|
59
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CrumbActionComponent, "app-crumb-action", never, { "isShowCog": { "alias": "isShowCog"; "required": false; "isSignal": true; }; "addVisible": { "alias": "addVisible"; "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; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; "actionEvent": "actionEvent"; }, ["newBtnTemplateRef"], never, true, never>;
|
|
61
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CrumbActionComponent, "app-crumb-action", never, { "isShowCog": { "alias": "isShowCog"; "required": false; "isSignal": true; }; "addVisible": { "alias": "addVisible"; "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; }; "impVisible": { "alias": "impVisible"; "required": false; "isSignal": true; }; "expVisible": { "alias": "expVisible"; "required": false; "isSignal": true; }; "saveBtnDisable": { "alias": "saveBtnDisable"; "required": false; "isSignal": true; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; "actionEvent": "actionEvent"; }, ["newBtnTemplateRef"], never, true, never>;
|
|
60
62
|
}
|
|
@@ -256,7 +256,7 @@ export declare class GridComponent {
|
|
|
256
256
|
rawPrm?: Search;
|
|
257
257
|
deleteEmit: import("@angular/core").OutputEmitterRef<number[]>;
|
|
258
258
|
addEmit: import("@angular/core").OutputEmitterRef<void>;
|
|
259
|
-
addType: import("@angular/core").InputSignal<"
|
|
259
|
+
addType: import("@angular/core").InputSignal<"none" | "handle" | "select" | undefined>;
|
|
260
260
|
selectData: import("@angular/core").InputSignal<any[] | undefined>;
|
|
261
261
|
showAct: import("@angular/core").InputSignal<boolean>;
|
|
262
262
|
actPos: import("@angular/core").InputSignal<"top" | "bottom">;
|