realgrid-react 0.9.6 → 0.9.7

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -116,8 +116,8 @@ declare interface IRealGridBaseProps<G> extends Omit<IComponentBase, '$grid'> {
116
116
  onKeyDown?: (grid: GridType<G>, event: KeyboardEvent) => boolean;
117
117
  onKeyPress?: (grid: GridType<G>, event: KeyboardEvent) => void;
118
118
  onKeyUp?: (grid: GridType<G>, event: KeyboardEvent) => void;
119
- onShowTooltip?: (grid: GridType<G>, index: RealGrid.CellIndex, value: any) => boolean | string;
120
- onShowHeaderTooltip?: (grid: GridType<G>, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem) => string;
119
+ onShowTooltip?: (grid: GridType<G>, index: RealGrid.CellIndex, value: any, isEllipsis: boolean) => boolean | string;
120
+ onShowHeaderTooltip?: (grid: GridType<G>, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem, isEllipsis: boolean) => string;
121
121
  onColumnPropertyChanged?: (grid: GridType<G>, column: RealGrid.GridColumn, property: string, newValue: any, oldValue: any) => void;
122
122
  onLayoutPropertyChanged?: (grid: GridType<G>, layout: RealGrid.CellLayoutItem, property: string, newValue: any, oldValue: any) => void;
123
123
  onGridActivated?: (grid: GridType<G>) => void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "realgrid-react",
3
3
  "private": false,
4
- "version": "0.9.6",
4
+ "version": "0.9.7",
5
5
  "description": "RealGrid2 wrapping Component for React",
6
6
  "author": {
7
7
  "name": "WooriTech",