@data-c/ui 0.1.65 → 0.1.67

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
@@ -758,11 +758,11 @@ interface TableProps<T> extends Omit<DataGridProps, 'onCellKeyDown' | 'onRowDoub
758
758
  }
759
759
  declare function Table<T>(props: TableProps<T>): react_jsx_runtime.JSX.Element;
760
760
 
761
- interface TitleProps {
761
+ interface TitleProps extends TypographyProps {
762
762
  titleDivider?: boolean;
763
763
  children: string;
764
764
  }
765
- declare function Title({ children, titleDivider }: TitleProps): react_jsx_runtime.JSX.Element;
765
+ declare function Title({ children, titleDivider, sx, }: TitleProps): react_jsx_runtime.JSX.Element;
766
766
 
767
767
  declare function Root({ children, height, ...rest }: StackProps): react_jsx_runtime.JSX.Element;
768
768
 
@@ -848,7 +848,7 @@ declare const Button: {
848
848
  Button: typeof ButtonGroupButton;
849
849
  };
850
850
 
851
- interface CardRootProps {
851
+ interface CardRootProps extends BoxProps {
852
852
  children: React__default.ReactNode;
853
853
  }
854
854
  declare function CardRoot(props: CardRootProps): react_jsx_runtime.JSX.Element;