imm-element-ui 0.7.1 → 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 +30 -11
- 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 +51 -18
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/grid/grid/grid.component.d.ts +6 -2
- 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
|
@@ -262,7 +262,10 @@ export declare class GridComponent {
|
|
|
262
262
|
showDelete: import("@angular/core").InputSignal<boolean>;
|
|
263
263
|
richMultMap: Record<string, any>;
|
|
264
264
|
horizontalScrollBarObserver: any;
|
|
265
|
-
|
|
265
|
+
horizontalScrollBarHeight: number;
|
|
266
|
+
verticalScrollBarObserver: any;
|
|
267
|
+
verticalScrollBarWidth: number;
|
|
268
|
+
gridHeight: number;
|
|
266
269
|
selectedRows: import("@angular/core").WritableSignal<any[]>;
|
|
267
270
|
noRows: boolean;
|
|
268
271
|
showHorizontal: boolean;
|
|
@@ -289,8 +292,9 @@ export declare class GridComponent {
|
|
|
289
292
|
delRows(): void;
|
|
290
293
|
initGridHeight(): void;
|
|
291
294
|
calcGridMargin(): number;
|
|
295
|
+
getContainerHeight(): number;
|
|
292
296
|
ajustGridHeight(): void;
|
|
293
|
-
ajustGridState(
|
|
297
|
+
ajustGridState(): void;
|
|
294
298
|
cancelSelect(): void;
|
|
295
299
|
editingFix(): void;
|
|
296
300
|
rowDragEnter(event: any): 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