@useloops/design-system 1.4.515 → 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;
@@ -1731,6 +1732,7 @@ type NumberFieldProps = Partial<TextFieldProps> & {
1731
1732
  defaultValue?: number | string | null;
1732
1733
  inputRef?: React.Ref<HTMLInputElement>;
1733
1734
  disabled?: boolean;
1735
+ hideActionButtons?: boolean;
1734
1736
  placeholder?: string;
1735
1737
  startAdornment?: Adornment;
1736
1738
  endAdornment?: Adornment;