@goodhood-web/ui 3.0.0-development.34 → 3.0.0-development.36

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.
@@ -29,7 +29,7 @@ export interface ButtonVariationProps {
29
29
  leftIcon?: ReactElement<IconProps>;
30
30
  loading?: boolean;
31
31
  rightIcon?: ReactElement<IconProps>;
32
- size?: 'small' | 'medium' | 'large' | 'extraLarge';
32
+ size?: 'tiny' | 'small' | 'medium' | 'large';
33
33
  target?: string;
34
34
  text?: string;
35
35
  }
@@ -4,6 +4,7 @@ export declare const typographyType: {
4
4
  link: string;
5
5
  medium: string;
6
6
  small: string;
7
+ tiny: string;
7
8
  };
8
9
  export declare function TextButton({ className, color, disabled, leftIcon, rightIcon, size, text, ...props }: TextButtonProps): import("react/jsx-runtime").JSX.Element;
9
10
  export default TextButton;
@@ -7,7 +7,7 @@ export interface TextButtonProps extends Omit<ButtonProps, 'role' | 'className'>
7
7
  color: 'green' | 'blue' | 'deepPurple' | 'pinkLight' | 'pinkDark';
8
8
  leftIcon?: ReactElement<IconProps | NotificationBubbleProps>;
9
9
  rightIcon?: ReactElement<IconProps | NotificationBubbleProps>;
10
- size: 'large' | 'medium' | 'small' | 'link';
10
+ size: 'large' | 'medium' | 'small' | 'link' | 'tiny';
11
11
  text: string;
12
12
  type?: 'button' | 'submit' | 'reset';
13
13
  }
@@ -0,0 +1,3 @@
1
+ import { ProgressBarProps } from './ProgressBar.types';
2
+ export declare const ProgressBar: ({ progress, steps }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
3
+ export default ProgressBar;
@@ -0,0 +1,4 @@
1
+ export type ProgressBarProps = {
2
+ progress: number;
3
+ steps: number;
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.0.0-development.34",
3
+ "version": "3.0.0-development.36",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",