@aic-kits/react 0.13.3 → 0.13.5

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.
@@ -1,4 +1,5 @@
1
1
  interface SkeletonBackgroundProps {
2
+ $visible: boolean;
2
3
  $variant: 'circle' | 'rectangle' | 'rounded';
3
4
  $duration?: number;
4
5
  }
@@ -1,5 +1,6 @@
1
1
  import { default as React } from 'react';
2
- interface SkeletonWrapperProps {
2
+ import { BoxProps } from '../Box';
3
+ interface SkeletonWrapperProps extends BoxProps {
3
4
  /**
4
5
  * Whether the skeleton is visible
5
6
  */
@@ -16,22 +17,6 @@ interface SkeletonWrapperProps {
16
17
  * Children to render when not in skeleton state
17
18
  */
18
19
  children?: React.ReactNode;
19
- /**
20
- * Style of the wrapper
21
- */
22
- style?: React.CSSProperties;
23
- /**
24
- * Class name for the wrapper
25
- */
26
- className?: string;
27
- /**
28
- * Width of the skeleton
29
- */
30
- width?: string | number;
31
- /**
32
- * Height of the skeleton
33
- */
34
- height?: string | number;
35
20
  }
36
21
  export declare const SkeletonWrapper: React.FC<SkeletonWrapperProps>;
37
22
  export {};