@obolnetwork/obol-ui 1.0.2 → 1.0.6
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/Box/Box.d.ts +3 -0
- package/dist/components/atoms/Button/Button.d.ts +6 -1
- package/dist/components/atoms/Container/Container.d.ts +955 -0
- package/dist/components/atoms/Image/Image.d.ts +476 -0
- package/dist/components/atoms/Link/Link.d.ts +4 -0
- package/dist/components/atoms/LogoCard/LogoCard.d.ts +7 -0
- package/dist/components/atoms/Spin/Spin.d.ts +3 -0
- package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +5 -1
- package/dist/components/atoms/Tabs/Tabs.d.ts +13 -1
- package/dist/components/atoms/TeamMemberCard/TeamMemberCard.d.ts +3 -0
- package/dist/components/atoms/Text/Text.d.ts +8 -1
- package/dist/components/atoms/Toggle/Toggle.d.ts +952 -0
- package/dist/components/atoms/index.d.ts +5 -0
- package/dist/components/icons/ChevronDownIcon.d.ts +2 -0
- package/dist/components/icons/ChevronUpIcon.d.ts +2 -0
- package/dist/components/icons/CloseIcon.d.ts +2 -0
- package/dist/components/icons/GlowIconBox.d.ts +480 -0
- package/dist/components/icons/Hexapod.d.ts +2 -0
- package/dist/components/icons/Planet.d.ts +491 -0
- package/dist/components/icons/index.d.ts +18 -4
- package/dist/components/icons/static-icons/AloneIcon.d.ts +3 -0
- package/dist/components/icons/static-icons/CodeIcon.d.ts +3 -1
- package/dist/components/icons/static-icons/CreateIcon.d.ts +3 -0
- package/dist/components/icons/static-icons/ExistingGroupIcon.d.ts +3 -0
- package/dist/components/icons/static-icons/GithubIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/GroupIcon.d.ts +3 -0
- package/dist/components/icons/static-icons/MigrateIcon.d.ts +3 -0
- package/dist/components/icons/static-icons/PublicGoodIcon.d.ts +3 -1
- package/dist/components/icons/static-icons/RunIcon.d.ts +3 -0
- package/dist/components/icons/static-icons/TestIcon.d.ts +3 -0
- package/dist/components/icons/static-icons/TrustMinimisedIcon.d.ts +3 -1
- package/dist/components/icons/static-icons/TwitterIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/planets/PlanetBlue.d.ts +1 -0
- package/dist/components/icons/static-icons/planets/PlanetGreen.d.ts +1 -0
- package/dist/components/icons/static-icons/planets/PlanetGrey.d.ts +1 -0
- package/dist/components/icons/static-icons/planets/PlanetMagenta.d.ts +1 -0
- package/dist/components/icons/static-icons/planets/PlanetOrange.d.ts +1 -0
- package/dist/components/icons/static-icons/planets/index.d.ts +5 -0
- package/dist/components/molecules/Accordion/Accordion.d.ts +954 -0
- package/dist/components/molecules/Card/Card.d.ts +959 -1
- package/dist/components/molecules/Navbar/Navbar.d.ts +4 -0
- package/dist/components/molecules/index.d.ts +2 -0
- package/dist/components/organisms/Footer/Footer.d.ts +11 -0
- package/dist/components/organisms/ObolEcosystem/ObolEcosystem.d.ts +1 -0
- package/dist/components/organisms/TwoColumnSection/TwoColumnSection.d.ts +15 -0
- package/dist/components/organisms/index.d.ts +2 -0
- package/dist/components/utils/index.d.ts +2 -0
- package/dist/components/utils/styles.d.ts +3 -0
- package/dist/components/utils/types.d.ts +16 -0
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js +624 -59
- package/dist/index.js +660 -60
- package/dist/stitches.config.d.ts +21 -1
- package/package.json +1 -1
- package/dist/components/organisms/hero-section/hero-section.d.ts +0 -14
|
@@ -5,6 +5,7 @@ export declare const Box: import("@stitches/react/types/styled-component").Style
|
|
|
5
5
|
light: "(prefers-color-scheme: light)";
|
|
6
6
|
xs: "(max-width: 520px)";
|
|
7
7
|
sm: "(max-width: 900px)";
|
|
8
|
+
bp2: "(min-width: 900px)";
|
|
8
9
|
md: "(max-width: 1200px)";
|
|
9
10
|
lg: "(max-width: 1800px)";
|
|
10
11
|
}, import("@stitches/react/types/css-util").CSS<{
|
|
@@ -14,6 +15,7 @@ export declare const Box: import("@stitches/react/types/styled-component").Style
|
|
|
14
15
|
light: "(prefers-color-scheme: light)";
|
|
15
16
|
xs: "(max-width: 520px)";
|
|
16
17
|
sm: "(max-width: 900px)";
|
|
18
|
+
bp2: "(min-width: 900px)";
|
|
17
19
|
md: "(max-width: 1200px)";
|
|
18
20
|
lg: "(max-width: 1800px)";
|
|
19
21
|
}, {
|
|
@@ -126,6 +128,7 @@ export declare const Box: import("@stitches/react/types/styled-component").Style
|
|
|
126
128
|
8: string;
|
|
127
129
|
9: string;
|
|
128
130
|
10: string;
|
|
131
|
+
11: string;
|
|
129
132
|
};
|
|
130
133
|
fontWeights: {
|
|
131
134
|
hairline: number;
|
|
@@ -3,6 +3,7 @@ import * as Stitches from "@stitches/react";
|
|
|
3
3
|
export declare const Button: import("@stitches/react/types/styled-component").StyledComponent<"button", {
|
|
4
4
|
color?: "coordinate" | "test" | "create" | "primary" | "secondary" | undefined;
|
|
5
5
|
ghost?: boolean | "true" | undefined;
|
|
6
|
+
icon?: boolean | "true" | undefined;
|
|
6
7
|
fullWidth?: boolean | "true" | undefined;
|
|
7
8
|
outlined?: boolean | "true" | undefined;
|
|
8
9
|
variant?: "nav" | "tx" | undefined;
|
|
@@ -13,6 +14,7 @@ export declare const Button: import("@stitches/react/types/styled-component").St
|
|
|
13
14
|
light: "(prefers-color-scheme: light)";
|
|
14
15
|
xs: "(max-width: 520px)";
|
|
15
16
|
sm: "(max-width: 900px)";
|
|
17
|
+
bp2: "(min-width: 900px)";
|
|
16
18
|
md: "(max-width: 1200px)";
|
|
17
19
|
lg: "(max-width: 1800px)";
|
|
18
20
|
}, import("@stitches/react/types/css-util").CSS<{
|
|
@@ -22,6 +24,7 @@ export declare const Button: import("@stitches/react/types/styled-component").St
|
|
|
22
24
|
light: "(prefers-color-scheme: light)";
|
|
23
25
|
xs: "(max-width: 520px)";
|
|
24
26
|
sm: "(max-width: 900px)";
|
|
27
|
+
bp2: "(min-width: 900px)";
|
|
25
28
|
md: "(max-width: 1200px)";
|
|
26
29
|
lg: "(max-width: 1800px)";
|
|
27
30
|
}, {
|
|
@@ -134,6 +137,7 @@ export declare const Button: import("@stitches/react/types/styled-component").St
|
|
|
134
137
|
8: string;
|
|
135
138
|
9: string;
|
|
136
139
|
10: string;
|
|
140
|
+
11: string;
|
|
137
141
|
};
|
|
138
142
|
fontWeights: {
|
|
139
143
|
hairline: number;
|
|
@@ -482,9 +486,10 @@ declare type ComponentVariants = Stitches.VariantProps<typeof Button>;
|
|
|
482
486
|
export declare type ComponentProps = ComponentVariants & {
|
|
483
487
|
loading?: boolean;
|
|
484
488
|
};
|
|
485
|
-
export declare const ButtonStory: (props: Omit<ComponentProps, "color" | "ghost" | "fullWidth" | "outlined" | "variant"> & {
|
|
489
|
+
export declare const ButtonStory: (props: Omit<ComponentProps, "color" | "icon" | "ghost" | "fullWidth" | "outlined" | "variant"> & {
|
|
486
490
|
color?: "coordinate" | "test" | "create" | "primary" | "secondary" | undefined;
|
|
487
491
|
ghost?: boolean | undefined;
|
|
492
|
+
icon?: boolean | undefined;
|
|
488
493
|
fullWidth?: boolean | undefined;
|
|
489
494
|
outlined?: boolean | undefined;
|
|
490
495
|
variant?: "nav" | "tx" | undefined;
|