Skip to content

Commit

Permalink
Build 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
theaswanson committed May 27, 2024
1 parent 562bfe0 commit 5844a50
Show file tree
Hide file tree
Showing 23 changed files with 42 additions and 36 deletions.
5 changes: 3 additions & 2 deletions dist/cjs/components/Digit.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
declare type DigitType = {
import React from "react";
type DigitType = {
char: string;
color: string;
height: number;
skew: boolean;
};
export declare const Digit: ({ char, color, height, skew, }: DigitType) => JSX.Element;
export declare const Digit: ({ char, color, height, skew, }: DigitType) => React.JSX.Element;
export {};
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.

5 changes: 3 additions & 2 deletions dist/cjs/components/Display.d.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
declare type DisplayType = {
import React from "react";
type DisplayType = {
count: number;
height: number;
value: any;
color: string;
backgroundColor?: string;
skew: boolean;
};
export declare const Display: ({ count, height, value, color, backgroundColor, skew, }: DisplayType) => JSX.Element;
export declare const Display: ({ count, height, value, color, backgroundColor, skew, }: DisplayType) => React.JSX.Element;
export {};
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.

5 changes: 3 additions & 2 deletions dist/cjs/components/Segment.d.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
declare type SegmentType = {
import React from "react";
type SegmentType = {
active: boolean;
color: string;
size: number;
id: string;
skew: boolean;
};
declare const Segment: ({ active, color, size, id, skew }: SegmentType) => JSX.Element;
declare const Segment: ({ active, color, size, id, skew }: SegmentType) => React.JSX.Element;
export default Segment;
8 changes: 2 additions & 6 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.

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

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/utils/segmentStyle.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export declare type SegmentStyleType = {
export type SegmentStyleType = {
id: string;
clipPath: string;
marginTop: number;
Expand Down
2 changes: 1 addition & 1 deletion dist/cjs/utils/segmentStyle.js.map

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

5 changes: 3 additions & 2 deletions dist/esm/components/Digit.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
declare type DigitType = {
import React from "react";
type DigitType = {
char: string;
color: string;
height: number;
skew: boolean;
};
export declare const Digit: ({ char, color, height, skew, }: DigitType) => JSX.Element;
export declare const Digit: ({ char, color, height, skew, }: DigitType) => React.JSX.Element;
export {};
Loading

0 comments on commit 5844a50

Please sign in to comment.