imm-element-ui 0.7.2 → 0.7.3
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 +12 -4
- package/esm2022/lib/page-grid-list/page-grid-list.component.mjs +19 -9
- package/esm2022/lib/share/utils.mjs +5 -1
- package/fesm2022/imm-element-ui.mjs +33 -11
- 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 +2 -1
- package/lib/page-grid-list/page-grid-list.component.d.ts +2 -1
- package/package.json +1 -1
- package/src/lib/grid/grid/grid.component.scss +5 -0
|
@@ -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(): "danger" | "secondary";
|
|
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>;
|
|
@@ -250,7 +250,7 @@ export declare class GridComponent {
|
|
|
250
250
|
rawPrm?: Search;
|
|
251
251
|
deleteEmit: import("@angular/core").OutputEmitterRef<number[]>;
|
|
252
252
|
addEmit: import("@angular/core").OutputEmitterRef<void>;
|
|
253
|
-
addType: import("@angular/core").InputSignal<"
|
|
253
|
+
addType: import("@angular/core").InputSignal<"handle" | "select" | "none" | undefined>;
|
|
254
254
|
selectData: import("@angular/core").InputSignal<any[] | undefined>;
|
|
255
255
|
showAct: import("@angular/core").InputSignal<boolean>;
|
|
256
256
|
actPos: import("@angular/core").InputSignal<"top" | "bottom">;
|
|
@@ -292,6 +292,7 @@ export declare class GridComponent {
|
|
|
292
292
|
delRows(): void;
|
|
293
293
|
initGridHeight(): void;
|
|
294
294
|
calcGridMargin(): number;
|
|
295
|
+
getContainerHeight(): number;
|
|
295
296
|
ajustGridHeight(): void;
|
|
296
297
|
ajustGridState(): void;
|
|
297
298
|
cancelSelect(): void;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { GridComponent, GridOptions } from '../grid/grid/grid.component';
|
|
2
|
-
import { AmComponent } from '../am/am.component';
|
|
2
|
+
import { AmComponent, Search } from '../am/am.component';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PageGridListComponent extends AmComponent {
|
|
5
5
|
customGrid: GridComponent;
|
|
@@ -9,6 +9,7 @@ export declare class PageGridListComponent extends AmComponent {
|
|
|
9
9
|
gridOptions: import("@angular/core").InputSignal<GridOptions | undefined>;
|
|
10
10
|
authLevel: import("@angular/core").InputSignal<number>;
|
|
11
11
|
constructor();
|
|
12
|
+
genSearchPrm(): Search;
|
|
12
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<PageGridListComponent, never>;
|
|
13
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<PageGridListComponent, "app-page-grid-list", never, { "params": { "alias": "params"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "menus": { "alias": "menus"; "required": false; "isSignal": true; }; "gridOptions": { "alias": "gridOptions"; "required": false; "isSignal": true; }; "authLevel": { "alias": "authLevel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
14
15
|
}
|
package/package.json
CHANGED