@digo-labs/ui 0.1.19 → 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.
@@ -1,11 +1,6 @@
1
1
  import { AwsBlockGroupBehavior, AwsBlockGroupFit, AwsBlockIdentity, AwsBlockPose } from '@digo-labs/common';
2
2
  import { CSSProperties } from 'react';
3
- import { Transition } from 'motion/react';
4
- import { AwsBlockTransition } from './aws-block';
5
3
  import { ComponentStylesProps } from '../utils/styles';
6
- export interface AwsBlockGroupTransition extends AwsBlockTransition {
7
- move: Transition;
8
- }
9
4
  type Properties = RootProperties & ComponentStylesProps<'awsBlockGroup'>;
10
5
  export declare function AwsBlockGroup(properties: Properties): import("react").JSX.Element;
11
6
  interface RootProperties {
@@ -15,7 +10,9 @@ interface RootProperties {
15
10
  pose?: number;
16
11
  onPose?: (pose: number) => void;
17
12
  fit?: AwsBlockGroupFit;
18
- transition?: Partial<AwsBlockGroupTransition>;
13
+ beat?: number;
14
+ hold?: number;
15
+ resume?: number;
19
16
  className?: string;
20
17
  style?: CSSProperties;
21
18
  }
@@ -1,4 +1,4 @@
1
- import { AwsBlockSize, AwsGlyphFamily, AwsGlyphStage, AwsPaletteColor } from '@digo-labs/common';
1
+ import { AwsGlyphFamily, AwsGlyphStage, AwsPaletteColor } from '@digo-labs/common';
2
2
  import { CSSProperties } from 'react';
3
3
  import { Transition } from 'motion/react';
4
4
  import { ComponentStylesProps } from '../utils/styles';
@@ -10,7 +10,7 @@ type Properties = RootProperties & ComponentStylesProps<'awsBlock'>;
10
10
  export declare function AwsBlock(properties: Properties): import("react").JSX.Element;
11
11
  interface RootProperties {
12
12
  color?: AwsPaletteColor;
13
- size?: AwsBlockSize;
13
+ size?: number;
14
14
  family?: AwsGlyphFamily;
15
15
  stage?: AwsGlyphStage;
16
16
  onStage?: (stage: AwsGlyphStage) => void;
@@ -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';