Skip to content

Commit

Permalink
Release v0.0.3 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
bexsoft committed Nov 2, 2022
1 parent 9a13451 commit 788ee3d
Show file tree
Hide file tree
Showing 17 changed files with 2,032 additions and 473 deletions.
4 changes: 3 additions & 1 deletion dist/cjs/components/Button/Button.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import React, { FC } from "react";
import { ButtonProps } from "./Button.types";
declare const Button: FC<ButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement>>;
declare const Button: FC<
ButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement>
>;
export default Button;
24 changes: 12 additions & 12 deletions dist/cjs/components/Button/Button.types.d.ts
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
import { MouseEventHandler, ReactNode } from "react";
export interface ButtonProps {
id: string;
name?: string;
label?: string;
variant?: "regular" | "callAction" | "secondary";
icon?: ReactNode;
iconLocation?: "start" | "end";
fullWidth?: boolean;
disabled?: boolean;
collapseOnSmall?: boolean;
onClick?: MouseEventHandler<HTMLButtonElement>;
children?: ReactNode | string;
id: string;
name?: string;
label?: string;
variant?: "regular" | "callAction" | "secondary";
icon?: ReactNode;
iconLocation?: "start" | "end";
fullWidth?: boolean;
disabled?: boolean;
collapseOnSmall?: boolean;
onClick?: MouseEventHandler<HTMLButtonElement>;
children?: ReactNode | string;
}
export interface ConstructProps {
parentChildren: ReactNode | string | undefined;
parentChildren: ReactNode | string | undefined;
}
5 changes: 4 additions & 1 deletion dist/cjs/components/GlobalStyles/GlobalStyles.d.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
declare const GlobalStyles: import("styled-components").GlobalStyleComponent<{}, import("styled-components").DefaultTheme>;
declare const GlobalStyles: import("styled-components").GlobalStyleComponent<
{},
import("styled-components").DefaultTheme
>;
export default GlobalStyles;
4 changes: 2 additions & 2 deletions dist/cjs/components/ThemeHandler/ThemeHandler.types.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { ReactNode } from "react";
export interface ThemeHandlerProps {
darkMode?: boolean;
children: ReactNode;
darkMode?: boolean;
children: ReactNode;
}
Loading

0 comments on commit 788ee3d

Please sign in to comment.