@indico-data/design-system 2.4.0 → 2.4.2

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/lib/index.d.ts CHANGED
@@ -917,8 +917,8 @@ type Alignment = `${Alignment$1}`;
917
917
  type TableProps<T> = Omit<TableProps$1<T>, 'disabled' | 'progressPending' | 'direction' | 'subHeaderAlign'> & {
918
918
  isDisabled?: boolean;
919
919
  isLoading?: boolean;
920
- direction: Direction;
921
- subHeaderAlign: Alignment;
920
+ direction?: Direction;
921
+ subHeaderAlign?: Alignment;
922
922
  };
923
923
  declare const Table: <T>(props: TableProps<T>) => react_jsx_runtime.JSX.Element;
924
924