@noraent/nora-datagrid 0.0.266 → 0.0.267
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
|
@@ -111,7 +111,7 @@ export type CellRangeDef = {
|
|
|
111
111
|
};
|
|
112
112
|
export interface CellRangeTempDef extends Partial<CellRangeDef> {
|
|
113
113
|
}
|
|
114
|
-
export interface GridCellPrams
|
|
114
|
+
export interface GridCellPrams {
|
|
115
115
|
ref?: React.Ref<any> | undefined;
|
|
116
116
|
rowRef: React.RefObject<DataGridPrivateDataSourceModel>;
|
|
117
117
|
column: DataGridPrivateColumnModel;
|
|
@@ -120,6 +120,8 @@ export interface GridCellPrams extends React.HTMLAttributes<any> {
|
|
|
120
120
|
rowIndex: number;
|
|
121
121
|
gridRef?: React.RefObject<GirdApi>;
|
|
122
122
|
loader?: any | undefined | null;
|
|
123
|
+
defaultValue?: string | number | null | undefined;
|
|
124
|
+
autoFocus?: boolean | undefined;
|
|
123
125
|
}
|
|
124
126
|
export type GridHeaderPrams = {} & DataGridColumnModelType;
|
|
125
127
|
export interface GridEditCellPrams<T extends HTMLInputElement = any> extends GridCellPrams {
|