@acorex/data-grid 16.18.1 → 16.18.2
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2022/lib/data-grid/columns/check-column.component.mjs +3 -3
- package/esm2022/lib/data-grid/columns/column.component.mjs +2 -2
- package/esm2022/lib/data-grid/columns/command-column.component.mjs +45 -34
- package/esm2022/lib/data-grid/datagrid.component.mjs +5 -5
- package/fesm2022/acorex-data-grid.mjs +49 -38
- package/fesm2022/acorex-data-grid.mjs.map +1 -1
- package/lib/data-grid/columns/command-column.component.d.ts +3 -3
- package/package.json +1 -1
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
1
|
+
import { AXMenuItem } from '@acorex/core';
|
2
2
|
import { EventEmitter } from '@angular/core';
|
3
|
+
import { ICellRendererAngularComp } from 'ag-grid-angular';
|
3
4
|
import { ICellRendererParams } from 'ag-grid-community';
|
4
5
|
import { AXGridRowCommandEvent } from '../datagrid.events';
|
5
|
-
import {
|
6
|
-
import { ICellRendererAngularComp } from 'ag-grid-angular';
|
6
|
+
import { AXGridDataColumn } from './column.component';
|
7
7
|
import * as i0 from "@angular/core";
|
8
8
|
export type AXGridRowCommandFunction = (row: any) => AXMenuItem[];
|
9
9
|
export declare class AXGridCommandColumn extends AXGridDataColumn {
|