@toolbox-web/grid 0.1.1 → 0.2.1

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/all.d.ts CHANGED
@@ -2983,6 +2983,10 @@ export declare interface GridElement {
2983
2983
  rows: any[];
2984
2984
  columns: ColumnConfig[];
2985
2985
  gridConfig: any;
2986
+ /** Current focused row index */
2987
+ focusRow: number;
2988
+ /** Current focused column index */
2989
+ focusCol: number;
2986
2990
  /** AbortSignal that is aborted when the grid disconnects from the DOM */
2987
2991
  disconnectSignal: AbortSignal;
2988
2992
  requestRender(): void;
@@ -2998,6 +3002,10 @@ declare interface GridElement_2 {
2998
3002
  rows: any[];
2999
3003
  columns: ColumnConfig_2[];
3000
3004
  gridConfig: any;
3005
+ /** Current focused row index */
3006
+ focusRow: number;
3007
+ /** Current focused column index */
3008
+ focusCol: number;
3001
3009
  /** AbortSignal that is aborted when the grid disconnects from the DOM */
3002
3010
  disconnectSignal: AbortSignal;
3003
3011
  requestRender(): void;