@digo-labs/ui 0.1.20 → 0.1.21

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.
@@ -12,6 +12,7 @@ interface RootProperties {
12
12
  fit?: AwsBlockGroupFit;
13
13
  beat?: number;
14
14
  hold?: number;
15
+ resume?: number;
15
16
  className?: string;
16
17
  style?: CSSProperties;
17
18
  }
@@ -0,0 +1,11 @@
1
+ import { AwsPatternData } from '@digo-labs/common';
2
+ import { CSSProperties } from 'react';
3
+ import { ComponentStylesProps } from '../utils/styles';
4
+ type Properties = RootProperties & ComponentStylesProps<'awsPattern'>;
5
+ export declare function AwsPattern(properties: Properties): import("react").JSX.Element;
6
+ interface RootProperties extends AwsPatternData {
7
+ loop?: boolean;
8
+ className?: string;
9
+ style?: CSSProperties;
10
+ }
11
+ export {};
@@ -0,0 +1,11 @@
1
+ import { AwsTextureData } from '@digo-labs/common';
2
+ import { CSSProperties, ReactNode } from 'react';
3
+ import { ComponentStylesProps } from '../utils/styles';
4
+ type Properties = RootProperties & ComponentStylesProps<'awsTexture'>;
5
+ export declare function AwsTexture(properties: Properties): import("react").JSX.Element;
6
+ interface RootProperties extends AwsTextureData {
7
+ children?: ReactNode;
8
+ className?: string;
9
+ style?: CSSProperties;
10
+ }
11
+ export {};
package/dist/index.d.ts CHANGED
@@ -2,7 +2,9 @@ export * from './animation/motion-animate-presence';
2
2
  export * from './other/animations';
3
3
  export * from './aws/aws-block';
4
4
  export * from './aws/aws-block-group';
5
+ export * from './aws/aws-pattern';
5
6
  export * from './aws/aws-shape';
7
+ export * from './aws/aws-texture';
6
8
  export * from './blocks/auth-guard';
7
9
  export * from './blocks/breadcrumb-nav';
8
10
  export * from './blocks/card';