@tanstack/table-core 8.0.0-alpha.54 → 8.0.0-alpha.55

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.
@@ -1,4 +1,8 @@
1
1
  import { Column, Getter, Header, OnChangeFn, TableGenerics, PropGetterValue, TableInstance, Updater } from '../types';
2
+ export declare type ColumnSizingTableState = {
3
+ columnSizing: ColumnSizing;
4
+ columnSizingInfo: ColumnSizingInfoState;
5
+ };
2
6
  export declare type ColumnSizing = Record<string, number>;
3
7
  export declare type ColumnSizingInfoState = {
4
8
  startOffset: null | number;
@@ -8,10 +12,6 @@ export declare type ColumnSizingInfoState = {
8
12
  isResizingColumn: false | string;
9
13
  columnSizingStart: [string, number][];
10
14
  };
11
- export declare type ColumnSizingTableState = {
12
- columnSizing: ColumnSizing;
13
- columnSizingInfo: ColumnSizingInfoState;
14
- };
15
15
  export declare type ColumnResizeMode = 'onChange' | 'onEnd';
16
16
  export declare type ColumnSizingOptions = {
17
17
  enableColumnResizing?: boolean;