realgrid-vue 0.9.5 → 0.9.6

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 +8 -8
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -179,8 +179,8 @@ onWheel: PropType<(grid: RealGrid.GridView, event: WheelEvent) => boolean>;
179
179
  onKeyDown: PropType<(grid: RealGrid.GridView, event: KeyboardEvent) => boolean>;
180
180
  onKeyPress: PropType<(grid: RealGrid.GridView, event: KeyboardEvent) => void>;
181
181
  onKeyUp: PropType<(grid: RealGrid.GridView, event: KeyboardEvent) => void>;
182
- onShowTooltip: PropType<(grid: RealGrid.GridView, index: RealGrid.CellIndex, value: any) => boolean | string>;
183
- onShowHeaderTooltip: PropType<(grid: RealGrid.GridView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem) => string>;
182
+ onShowTooltip: PropType<(grid: RealGrid.GridView, index: RealGrid.CellIndex, value: any, isEllipsis: boolean) => boolean | string>;
183
+ onShowHeaderTooltip: PropType<(grid: RealGrid.GridView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem, isEllipsis: boolean) => string>;
184
184
  onColumnPropertyChanged: PropType<(grid: RealGrid.GridView, column: RealGrid.GridColumn, property: string, newValue: any, oldValue: any) => void>;
185
185
  onLayoutPropertyChanged: PropType<(grid: RealGrid.GridView, layout: RealGrid.CellLayoutItem, property: string, newValue: any, oldValue: any) => void>;
186
186
  onGridActivated: PropType<(grid: RealGrid.GridView) => void>;
@@ -284,8 +284,8 @@ onWheel: PropType<(grid: RealGrid.GridView, event: WheelEvent) => boolean>;
284
284
  onKeyDown: PropType<(grid: RealGrid.GridView, event: KeyboardEvent) => boolean>;
285
285
  onKeyPress: PropType<(grid: RealGrid.GridView, event: KeyboardEvent) => void>;
286
286
  onKeyUp: PropType<(grid: RealGrid.GridView, event: KeyboardEvent) => void>;
287
- onShowTooltip: PropType<(grid: RealGrid.GridView, index: RealGrid.CellIndex, value: any) => boolean | string>;
288
- onShowHeaderTooltip: PropType<(grid: RealGrid.GridView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem) => string>;
287
+ onShowTooltip: PropType<(grid: RealGrid.GridView, index: RealGrid.CellIndex, value: any, isEllipsis: boolean) => boolean | string>;
288
+ onShowHeaderTooltip: PropType<(grid: RealGrid.GridView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem, isEllipsis: boolean) => string>;
289
289
  onColumnPropertyChanged: PropType<(grid: RealGrid.GridView, column: RealGrid.GridColumn, property: string, newValue: any, oldValue: any) => void>;
290
290
  onLayoutPropertyChanged: PropType<(grid: RealGrid.GridView, layout: RealGrid.CellLayoutItem, property: string, newValue: any, oldValue: any) => void>;
291
291
  onGridActivated: PropType<(grid: RealGrid.GridView) => void>;
@@ -466,8 +466,8 @@ onWheel: PropType<(grid: RealGrid.TreeView, event: WheelEvent) => boolean>;
466
466
  onKeyDown: PropType<(grid: RealGrid.TreeView, event: KeyboardEvent) => boolean>;
467
467
  onKeyPress: PropType<(grid: RealGrid.TreeView, event: KeyboardEvent) => void>;
468
468
  onKeyUp: PropType<(grid: RealGrid.TreeView, event: KeyboardEvent) => void>;
469
- onShowTooltip: PropType<(grid: RealGrid.TreeView, index: RealGrid.CellIndex, value: any) => boolean | string>;
470
- onShowHeaderTooltip: PropType<(grid: RealGrid.TreeView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem) => string>;
469
+ onShowTooltip: PropType<(grid: RealGrid.TreeView, index: RealGrid.CellIndex, value: any, isEllipsis: boolean) => boolean | string>;
470
+ onShowHeaderTooltip: PropType<(grid: RealGrid.TreeView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem, isEllipsis: boolean) => string>;
471
471
  onColumnPropertyChanged: PropType<(grid: RealGrid.TreeView, column: RealGrid.GridColumn, property: string, newValue: any, oldValue: any) => void>;
472
472
  onLayoutPropertyChanged: PropType<(grid: RealGrid.TreeView, layout: RealGrid.CellLayoutItem, property: string, newValue: any, oldValue: any) => void>;
473
473
  onGridActivated: PropType<(grid: RealGrid.TreeView) => void>;
@@ -571,8 +571,8 @@ onWheel: PropType<(grid: RealGrid.TreeView, event: WheelEvent) => boolean>;
571
571
  onKeyDown: PropType<(grid: RealGrid.TreeView, event: KeyboardEvent) => boolean>;
572
572
  onKeyPress: PropType<(grid: RealGrid.TreeView, event: KeyboardEvent) => void>;
573
573
  onKeyUp: PropType<(grid: RealGrid.TreeView, event: KeyboardEvent) => void>;
574
- onShowTooltip: PropType<(grid: RealGrid.TreeView, index: RealGrid.CellIndex, value: any) => boolean | string>;
575
- onShowHeaderTooltip: PropType<(grid: RealGrid.TreeView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem) => string>;
574
+ onShowTooltip: PropType<(grid: RealGrid.TreeView, index: RealGrid.CellIndex, value: any, isEllipsis: boolean) => boolean | string>;
575
+ onShowHeaderTooltip: PropType<(grid: RealGrid.TreeView, column: RealGrid.GridColumn, value: any, layout: RealGrid.CellLayoutItem, isEllipsis: boolean) => string>;
576
576
  onColumnPropertyChanged: PropType<(grid: RealGrid.TreeView, column: RealGrid.GridColumn, property: string, newValue: any, oldValue: any) => void>;
577
577
  onLayoutPropertyChanged: PropType<(grid: RealGrid.TreeView, layout: RealGrid.CellLayoutItem, property: string, newValue: any, oldValue: any) => void>;
578
578
  onGridActivated: PropType<(grid: RealGrid.TreeView) => void>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "realgrid-vue",
3
3
  "private": false,
4
- "version": "0.9.5",
4
+ "version": "0.9.6",
5
5
  "description": "RealGrid2 wrapping Component for Vue3",
6
6
  "author": {
7
7
  "name": "WooriTech",