imm-element-ui 2.9.1 → 2.9.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 +3 -8
- package/esm2022/lib/grid/grid-utils.mjs +12 -1
- package/esm2022/lib/service/userHistory.service.mjs +3 -5
- package/fesm2022/imm-element-ui.mjs +15 -11
- package/fesm2022/imm-element-ui.mjs.map +1 -1
- package/lib/grid/grid/grid.component.d.ts +1 -2
- package/lib/grid/grid-utils.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, NgZone, Renderer2, ChangeDetectorRef } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { CellValueChangedEvent, ColDef, GridOptions as RawGridOptions, RowDragEndEvent } from 'ag-grid-community';
|
|
3
3
|
import { AgGridAngular } from 'ag-grid-angular';
|
|
4
4
|
import { ThemeConfigService } from '../../service/themeConfig.service';
|
|
5
5
|
import { ActionService } from '../../service/action.service';
|
|
@@ -106,7 +106,6 @@ export declare class GridComponent {
|
|
|
106
106
|
showHorizontal: boolean;
|
|
107
107
|
dragBeforeIndex: number;
|
|
108
108
|
singleClickEdit: import("@angular/core").WritableSignal<boolean>;
|
|
109
|
-
autoGroupColumnDef: AutoGroupColumnDef;
|
|
110
109
|
private searchPrmSub;
|
|
111
110
|
private columnDefsLoadId;
|
|
112
111
|
private columnDefsHaveHideExpression;
|
package/lib/grid/grid-utils.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ThemeConfigService } from '../service/themeConfig.service';
|
|
2
2
|
import { I18nService } from '../service/i18n.service';
|
|
3
|
-
import { GridOptions } from './grid/grid.component';
|
|
4
|
-
import { ActionService } from '../service/action.service';
|
|
3
|
+
import type { GridOptions } from './grid/grid.component';
|
|
4
|
+
import type { ActionService } from '../service/action.service';
|
|
5
5
|
export declare const gridUtils: {
|
|
6
6
|
calcRowIds: (api: any, isServerSide: boolean) => any[];
|
|
7
7
|
selectionHandler: (api: any, selectionKeys: any[], startRow: number, dataKey?: string) => void;
|