Skip to content

Commit a765524

Browse files
committed
include build folder
1 parent 970b193 commit a765524

File tree

362 files changed

+7085
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

362 files changed

+7085
-1
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pnpm-debug.log*
88
lerna-debug.log*
99

1010
node_modules
11-
dist
11+
# dist
1212
dist-ssr
1313
*.local
1414

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import React from 'react';
2+
export declare const AccordionHeader: React.FC<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
3+
export declare const AccordionBody: React.FC<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
4+
export declare const AccordionItem: React.FC<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>>;
5+
export declare const Accordion: React.FC<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>> & {
6+
ItemHeader: typeof AccordionHeader;
7+
ItemBody: typeof AccordionBody;
8+
Item: typeof AccordionItem;
9+
};
10+
export default Accordion;

dist/cjs/components/Accordion/Accordion.js

Lines changed: 107 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/components/Accordion/Accordion.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from './Accordion';

dist/cjs/components/Accordion/index.js

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/components/Accordion/index.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/components/Alert/Alert.d.ts

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
import * as React from 'react';
2+
type Variant = 'info' | 'error' | 'warning' | 'success';
3+
declare const Header: React.FC<React.PropsWithChildren>;
4+
declare const Content: React.FC<React.PropsWithChildren>;
5+
declare const AlertDialog: React.FC<React.PropsWithChildren<{
6+
variant?: Variant;
7+
header?: string;
8+
content?: string;
9+
closable?: boolean;
10+
icon?: boolean;
11+
}>> & {
12+
Header: typeof Header;
13+
Content: typeof Content;
14+
};
15+
export { AlertDialog };

dist/cjs/components/Alert/Alert.js

Lines changed: 80 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/components/Alert/Alert.js.map

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)