@noraent/nora-datagrid 0.0.267 → 0.0.268
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/dist/buildPackage.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
1
|
+
import { default as React, ChangeEventHandler } from 'react';
|
|
2
2
|
import { EditStatus } from './dataGridCoreEnum';
|
|
3
3
|
import { GirdApi } from './dataGridProps';
|
|
4
4
|
export type DataGridColumn = DataGridColumnModel;
|
|
@@ -122,6 +122,7 @@ export interface GridCellPrams {
|
|
|
122
122
|
loader?: any | undefined | null;
|
|
123
123
|
defaultValue?: string | number | null | undefined;
|
|
124
124
|
autoFocus?: boolean | undefined;
|
|
125
|
+
onChange?: ChangeEventHandler<any> | undefined;
|
|
125
126
|
}
|
|
126
127
|
export type GridHeaderPrams = {} & DataGridColumnModelType;
|
|
127
128
|
export interface GridEditCellPrams<T extends HTMLInputElement = any> extends GridCellPrams {
|