imm-element-ui 1.8.5 → 1.8.6
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/form/form-type/datepicker.type.mjs +10 -4
- package/esm2022/lib/grid/grid/grid.component.mjs +8 -2
- package/fesm2022/imm-element-ui.mjs +16 -4
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/crumb-action/crumb-action.component.d.ts +1 -1
- package/lib/form/form-type/datepicker.type.d.ts +2 -1
- package/lib/grid/grid/grid.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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; }; "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; }; }, { "saveEvent": "saveEvent"; "cancelEvent": "cancelEvent"; "actionEvent": "actionEvent"; }, ["newBtnTemplateRef"], never, true, never>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ElementRef, Renderer2 } from '@angular/core';
|
|
1
|
+
import { ElementRef, Renderer2, TemplateRef } from '@angular/core';
|
|
2
2
|
import { DatePicker } from 'primeng/datepicker';
|
|
3
3
|
import { FormField, FieldProps, AttributeEvent } from '../form-field/form-field';
|
|
4
4
|
import { ActionService } from '../../service/action.service';
|
|
@@ -70,6 +70,7 @@ export interface DatePickerProps extends FieldProps {
|
|
|
70
70
|
onYearChange?: AttributeEvent;
|
|
71
71
|
onClickOutside?: AttributeEvent;
|
|
72
72
|
onShow?: AttributeEvent;
|
|
73
|
+
footerTemplate?: TemplateRef<any>;
|
|
73
74
|
}
|
|
74
75
|
export declare class DatePickerComponent {
|
|
75
76
|
private action;
|
|
@@ -259,7 +259,7 @@ export declare class GridComponent {
|
|
|
259
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
|
-
actPos: import("@angular/core").InputSignal<"
|
|
262
|
+
actPos: import("@angular/core").InputSignal<"top" | "bottom">;
|
|
263
263
|
authLevel: import("@angular/core").InputSignal<number>;
|
|
264
264
|
http: HttpClient;
|
|
265
265
|
renderer: Renderer2;
|