@useloops/design-system 1.4.337 → 1.4.338
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 +4 -4
- package/dist/index.d.ts +2 -0
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1475,6 +1475,7 @@ type BorderRadius = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
|
1475
1475
|
interface SurfaceProps extends PaperProps {
|
|
1476
1476
|
variation?: SurfaceVariation;
|
|
1477
1477
|
borderradius?: BorderRadius;
|
|
1478
|
+
active?: boolean;
|
|
1478
1479
|
}
|
|
1479
1480
|
declare const Surface: react.ForwardRefExoticComponent<Omit<SurfaceProps, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
1480
1481
|
|
|
@@ -1928,6 +1929,7 @@ declare const Header: FunctionComponent<HeaderProps>;
|
|
|
1928
1929
|
interface TestKPICardProps extends Omit<SurfaceProps, 'variation'> {
|
|
1929
1930
|
colorScheme?: 'purple' | 'peach' | 'blue' | 'yellow' | 'green' | 'red';
|
|
1930
1931
|
variation?: 'dimmed' | 'default';
|
|
1932
|
+
active?: boolean;
|
|
1931
1933
|
title: string;
|
|
1932
1934
|
description: string;
|
|
1933
1935
|
loading?: boolean;
|