@revolist/revogrid 3.7.6 → 3.7.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.
@@ -43,6 +43,12 @@ export declare class OverlaySelection {
43
43
  internalSelectionChanged: EventEmitter<Selection.ChangedRange>;
44
44
  /** Range data apply */
45
45
  internalRangeDataApply: EventEmitter<Edition.BeforeRangeSaveDataDetails>;
46
+ /**
47
+ * Before key up event proxy, used to prevent key up trigger.
48
+ * If you have some custom behaviour event, use this event to check if it wasn't processed by internal logic.
49
+ * Call preventDefault().
50
+ */
51
+ beforeKeyDown: EventEmitter;
46
52
  onMouseMove(e: MouseEvent): void;
47
53
  /** Pointer left document, clear any active operation */
48
54
  onMouseOut(): void;
@@ -86,5 +92,8 @@ export declare class OverlaySelection {
86
92
  rows: RevoGrid.DimensionSettingsState;
87
93
  cols: RevoGrid.DimensionSettingsState;
88
94
  lastCell: Selection.Cell;
95
+ focus: Selection.Cell;
96
+ range: Selection.RangeArea;
97
+ edit: Edition.EditCellStore;
89
98
  };
90
99
  }
@@ -847,6 +847,10 @@ declare namespace LocalJSX {
847
847
  * Last cell position
848
848
  */
849
849
  "lastCell"?: Selection.Cell;
850
+ /**
851
+ * Before key up event proxy, used to prevent key up trigger. If you have some custom behaviour event, use this event to check if it wasn't processed by internal logic. Call preventDefault().
852
+ */
853
+ "onBeforekeydown"?: (event: RevogrOverlaySelectionCustomEvent<any>) => void;
850
854
  /**
851
855
  * Used for editors support when close requested
852
856
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revolist/revogrid",
3
- "version": "3.7.6",
3
+ "version": "3.7.7",
4
4
  "description": "Virtual reactive data grid component - RevoGrid.",
5
5
  "license": "MIT",
6
6
  "directories": {