@inntechcorp/it-design 2.0.161 → 2.0.163

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/dist/index.d.ts CHANGED
@@ -1318,6 +1318,7 @@ type TableColumnType<T> = {
1318
1318
  key: keyof T | string;
1319
1319
  title: string;
1320
1320
  dataIndex?: keyof T;
1321
+ overflow?: boolean;
1321
1322
  width?: number | string;
1322
1323
  maxWidth?: number | string;
1323
1324
  render?: (value: any, record: T, index: number, level?: number) => React.ReactNode;
@@ -1331,7 +1332,6 @@ type TableProps<T extends TableRow> = {
1331
1332
  bordered?: boolean;
1332
1333
  dashed?: boolean;
1333
1334
  noGaps?: boolean;
1334
- overflow?: boolean;
1335
1335
  hideGroupButtons?: boolean;
1336
1336
  getTRProps?: (row: T, rowIndex: number, level: number) => TableTRProps;
1337
1337
  };