@useloops/design-system 1.4.516 → 1.4.517

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
@@ -811,12 +811,13 @@ interface AiContentContainerProps extends PropsWithChildren {
811
811
  onDownvote?: () => void;
812
812
  onCopy?: () => void;
813
813
  onClickAIButton?: () => void;
814
+ ref?: React.Ref<HTMLDivElement>;
814
815
  slotProps?: {
815
816
  childrenContainer?: BoxProps;
816
817
  aiWrittenByLockUp?: AiWrittenByLockUpProps;
817
818
  };
818
819
  }
819
- declare const AiContentContainer: FunctionComponent<AiContentContainerProps>;
820
+ declare const AiContentContainer: react.ForwardRefExoticComponent<Omit<AiContentContainerProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
820
821
 
821
822
  interface AIInsightProps {
822
823
  themeDescription: string;