Skip to content

Commit

Permalink
Rollup updated in preparation for release 0.0.1 (#51)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <[email protected]>
  • Loading branch information
bexsoft authored Aug 30, 2022
1 parent 7196486 commit a74d63a
Show file tree
Hide file tree
Showing 27 changed files with 1,800 additions and 435 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2

Expand All @@ -44,7 +44,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest ]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ lint:
@(cd portal-ui; yarn prettier --write . --loglevel warn; cd ..)

test:
@(yarn install; yarn test;)
@(yarn install; yarn test;)
645 changes: 644 additions & 1 deletion dist/cjs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/index.js.map

Large diffs are not rendered by default.

20 changes: 10 additions & 10 deletions dist/cjs/types/components/Button/Button.types.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
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>;
id: string;
name?: string;
label?: string;
variant?: "regular" | "callAction" | "secondary";
icon?: ReactNode;
iconLocation?: "start" | "end";
fullWidth?: boolean;
disabled?: boolean;
collapseOnSmall?: boolean;
onClick?: MouseEventHandler<HTMLButtonElement>;
}
4 changes: 4 additions & 0 deletions dist/cjs/types/components/ThemeHandler/ThemeHandler.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FC } from "react";
import { ThemeHandlerProps } from "./ThemeHandler.types";
declare const ThemeHandler: FC<ThemeHandlerProps>;
export default ThemeHandler;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { ReactNode } from "react";
export interface ThemeHandlerProps {
darkMode?: boolean;
children: ReactNode;
}
1 change: 1 addition & 0 deletions dist/cjs/types/components/index.d.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export { default as Button } from "./Button/Button";
export { default as ThemeHandler } from "./ThemeHandler/ThemeHandler";
Loading

0 comments on commit a74d63a

Please sign in to comment.