@useloops/design-system 1.4.461 → 1.4.463

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
 
@@ -2002,7 +2001,7 @@ interface CommentCardProps {
2002
2001
  translation?: string;
2003
2002
  translationError?: string;
2004
2003
  slotProps?: {
2005
- menu?: MenuProps['slotProps'];
2004
+ menu?: MenuProps;
2006
2005
  };
2007
2006
  }
2008
2007