Skip to content

Commit

Permalink
build: Build version 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nachovigilante committed Jul 29, 2022
1 parent b7dd383 commit 261f862
Show file tree
Hide file tree
Showing 36 changed files with 1,055 additions and 1,241 deletions.
3 changes: 2 additions & 1 deletion dist/cjs/components/Digit.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ declare type DigitType = {
char: string;
color: string;
height: number;
skew: boolean;
};
export declare const Digit: ({ char, color, height, }: DigitType) => JSX.Element;
export declare const Digit: ({ char, color, height, skew, }: DigitType) => JSX.Element;
export {};
31 changes: 7 additions & 24 deletions dist/cjs/components/Digit.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dist/cjs/components/Display.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ declare type DisplayType = {
value: any;
color: string;
backgroundColor?: string;
skew: boolean;
};
export declare const Display: ({ count, height, value, color, backgroundColor, }: DisplayType) => JSX.Element;
export declare const Display: ({ count, height, value, color, backgroundColor, skew, }: DisplayType) => JSX.Element;
export {};
6 changes: 3 additions & 3 deletions dist/cjs/components/Display.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dist/cjs/components/Segment.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ declare type SegmentType = {
color: string;
size: number;
id: string;
skew: boolean;
};
declare const Segment: ({ active, color, size, id }: SegmentType) => JSX.Element;
declare const Segment: ({ active, color, size, id, skew }: SegmentType) => JSX.Element;
export default Segment;
34 changes: 10 additions & 24 deletions dist/cjs/components/Segment.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions dist/cjs/utils/charToDigit.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
declare const charToDigit: {
[key: string]: number[];
};
export default charToDigit;
24 changes: 24 additions & 0 deletions dist/cjs/utils/charToDigit.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 261f862

Please sign in to comment.