@useloops/design-system 1.4.460 → 1.4.462

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
@@ -1738,9 +1738,8 @@ interface ProgressProps {
1738
1738
  }
1739
1739
  declare const Progress: FunctionComponent<ProgressProps>;
1740
1740
 
1741
- interface ProgressBarProps {
1741
+ interface ProgressBarProps extends Partial<Omit<LinearProgressProps, 'variant'>> {
1742
1742
  variation: LinearProgressProps['variant'];
1743
- value: LinearProgressProps['value'];
1744
1743
  }
1745
1744
  declare const ProgressBar: FunctionComponent<ProgressBarProps>;
1746
1745
 
@@ -2006,7 +2005,7 @@ interface CommentCardProps {
2006
2005
  };
2007
2006
  }
2008
2007
 
2009
- declare const CommentCard: FunctionComponent<CommentCardProps>;
2008
+ declare const CommentCard: react.ForwardRefExoticComponent<CommentCardProps & react.RefAttributes<HTMLDivElement>>;
2010
2009
 
2011
2010
  type SentimentColor = keyof SemanticColor$1['light']['data'] | undefined;
2012
2011
  interface DataPointSource {