@data-c/ui 0.1.66 → 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