imm-element-ui 0.6.5 → 0.6.7
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 +40 -1
- package/esm2022/lib/form/form-field/field-utils.mjs +9 -1
- package/esm2022/lib/form/form-type/datepicker.type.mjs +10 -9
- package/fesm2022/imm-element-ui.mjs +56 -8
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/am/am.component.d.ts +4 -0
- package/lib/crumb-action/crumb-action.component.d.ts +1 -1
- package/package.json +1 -1
package/lib/am/am.component.d.ts
CHANGED
|
@@ -186,6 +186,10 @@ export declare class AmComponent {
|
|
|
186
186
|
createTable(prm?: Param): void;
|
|
187
187
|
web_createTable(param: Param): Observable<any>;
|
|
188
188
|
resetPrm(search?: string): void;
|
|
189
|
+
dealQuery(prm?: Deal): void;
|
|
190
|
+
webDealQuery(param: Deal): Observable<any>;
|
|
191
|
+
dealCustom(prm?: Deal): void;
|
|
192
|
+
webDealCustom(param: Deal): Observable<any>;
|
|
189
193
|
static ɵfac: i0.ɵɵFactoryDeclaration<AmComponent, never>;
|
|
190
194
|
static ɵcmp: i0.ɵɵComponentDeclaration<AmComponent, "app-am", never, {}, {}, never, never, true, never>;
|
|
191
195
|
}
|
|
@@ -49,7 +49,7 @@ export declare class CrumbActionComponent extends AmComponent implements OnInit
|
|
|
49
49
|
listAct(item: any): void;
|
|
50
50
|
actEvent(item: any): void;
|
|
51
51
|
toggleAct(event: any): void;
|
|
52
|
-
setSaveClass(): "
|
|
52
|
+
setSaveClass(): "secondary" | "danger";
|
|
53
53
|
ngOnDestroy(): void;
|
|
54
54
|
static ɵfac: i0.ɵɵFactoryDeclaration<CrumbActionComponent, never>;
|
|
55
55
|
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; }; "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; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; "actionEvent": "actionEvent"; }, ["newBtnTemplateRef"], never, true, never>;
|