@useloops/design-system 1.4.461 → 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/esm/index.js +3 -3
- package/dist/index.d.ts +1 -2
- package/dist/index.js +4 -4
- package/package.json +1 -1
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
|
|