@gardenfi/garden-book 0.1.99 → 0.1.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/atoms/Container/Container.d.ts +13 -0
- package/dist/components/atoms/Container/Container.stories.d.ts +7 -0
- package/dist/components/atoms/Icons/APIIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/BlogIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/BrandKitIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/ConsoleIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/CopyrightsIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/DiscordIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/DraftIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/OtterSecIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/SDKIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/StakeIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/XIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/XSolidIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/ZellicIcon.d.ts +5 -0
- package/dist/components/atoms/Icons/index.d.ts +13 -0
- package/dist/components/atoms/index.d.ts +2 -1
- package/dist/style.css +1 -1
- package/dist/ui.cjs.js +7 -7
- package/dist/ui.es.js +821 -408
- package/dist/ui.umd.js +7 -7
- package/package.json +1 -1
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
|
|
3
|
+
type ContainerProps = React.HTMLAttributes<HTMLDivElement> & {
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
};
|
|
6
|
+
/**
|
|
7
|
+
* Container
|
|
8
|
+
* @param children of the Container
|
|
9
|
+
* @param className is the spaces separated string which has user-written tailwind classes
|
|
10
|
+
* @returns Container component
|
|
11
|
+
*/
|
|
12
|
+
declare const Container: ({ children, className, ...props }: ContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export { Container };
|
|
@@ -58,3 +58,16 @@ export { CancelIcon } from './CancelIcon';
|
|
|
58
58
|
export { ArrowSyncIcon } from './ArrowSyncIcon';
|
|
59
59
|
export { HubIcon } from './HubIcon';
|
|
60
60
|
export { CodeBlockIcon } from './CodeBlockIcon';
|
|
61
|
+
export { APIIcon } from './APIIcon';
|
|
62
|
+
export { BlogIcon } from './BlogIcon';
|
|
63
|
+
export { BrandKitIcon } from './BrandKitIcon';
|
|
64
|
+
export { ConsoleIcon } from './ConsoleIcon';
|
|
65
|
+
export { CopyrightsIcon } from './CopyrightsIcon';
|
|
66
|
+
export { DiscordIcon } from './DiscordIcon';
|
|
67
|
+
export { DraftIcon } from './DraftIcon';
|
|
68
|
+
export { OtterSecIcon } from './OtterSecIcon';
|
|
69
|
+
export { SDKIcon } from './SDKIcon';
|
|
70
|
+
export { StakeIcon } from './StakeIcon';
|
|
71
|
+
export { XSolidIcon } from './XSolidIcon';
|
|
72
|
+
export { XIcon } from './XIcon';
|
|
73
|
+
export { ZellicIcon } from './ZellicIcon';
|
|
@@ -4,8 +4,9 @@ import { Opacity } from './Opacity/Opacity';
|
|
|
4
4
|
import { Sidebar } from './Sidebar/Sidebar';
|
|
5
5
|
import { Modal } from './Modal/Modal';
|
|
6
6
|
import { BottomSheet } from './BottomSheet/BottomSheet';
|
|
7
|
+
import { Container } from './Container/Container';
|
|
7
8
|
export type { OpacityVariants } from './Opacity/Opacity';
|
|
8
9
|
export * from './Icons';
|
|
9
10
|
export * from './Logo';
|
|
10
11
|
export { CheckBox } from './Checkbox/Checkbox';
|
|
11
|
-
export { Button, Typography, Sidebar, Opacity, Modal, BottomSheet };
|
|
12
|
+
export { Button, Typography, Sidebar, Opacity, Modal, BottomSheet, Container };
|