@obolnetwork/obol-ui 1.0.75 → 1.0.78
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/Avatar/Avatar.d.ts +975 -0
- package/dist/components/atoms/Badge/Badge.d.ts +2 -0
- package/dist/components/atoms/Box/Box.d.ts +3 -0
- package/dist/components/atoms/Button/Button.d.ts +3 -0
- package/dist/components/atoms/Checkbox/Checkbox.d.ts +3 -0
- package/dist/components/atoms/Container/Container.d.ts +6 -0
- package/dist/components/atoms/Flex/Flex.d.ts +3 -0
- package/dist/components/atoms/Grid/Grid.d.ts +3 -0
- package/dist/components/atoms/IconButton/IconButton.d.ts +3 -0
- package/dist/components/atoms/Image/Image.d.ts +3 -0
- package/dist/components/atoms/Link/Link.d.ts +3 -0
- package/dist/components/atoms/NavigationMenu/NavigationMenu.d.ts +15 -0
- package/dist/components/atoms/Separator/Separator.d.ts +3 -0
- package/dist/components/atoms/Spin/Spin.d.ts +4 -1
- package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +4 -1
- package/dist/components/atoms/Switch/Switch.d.ts +6 -0
- package/dist/components/atoms/Text/Text.d.ts +6 -3
- package/dist/components/atoms/TextField/TextField.d.ts +12 -0
- package/dist/components/atoms/Toggle/Toggle.d.ts +6 -0
- package/dist/components/atoms/UnstyledTextField/UnstyledTextField.d.ts +6 -0
- package/dist/components/icons/GlowIconBox.d.ts +3 -0
- package/dist/components/icons/Planet.d.ts +3 -0
- package/dist/components/icons/socials/CopyLinkIcon.d.ts +2 -0
- package/dist/components/icons/socials/DiscordIcon.d.ts +2 -0
- package/dist/components/icons/socials/LinkedinIcon.d.ts +2 -0
- package/dist/components/icons/socials/XIcon.d.ts +2 -0
- package/dist/components/molecules/Accordion/Accordion.d.ts +6 -0
- package/dist/components/molecules/AdvisoryToggle/AdvisoryToggle.d.ts +6 -0
- package/dist/components/molecules/Card/Card.d.ts +12 -0
- package/dist/components/molecules/Dialog/Dialog.d.ts +18 -0
- package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +6 -0
- package/dist/components/molecules/Profile/Profile.d.ts +9 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +9 -0
- package/dist/components/molecules/ResponsiveDialog/ResponsiveDialog.d.ts +6 -0
- package/dist/components/molecules/ShareButton/ShareButton.d.ts +4 -0
- package/dist/components/molecules/Table/Table.d.ts +1 -0
- package/dist/components/molecules/Tabs/Tabs.d.ts +12 -0
- package/dist/components/molecules/index.d.ts +2 -0
- package/dist/components/utils/color-variants.d.ts +3 -0
- package/dist/components/utils/hooks/useOutsideClick.d.ts +2 -0
- package/dist/components/utils/styles.d.ts +3 -0
- package/dist/index.es.js +1 -1
- package/dist/index.js +1 -1
- package/dist/stitches.config.d.ts +30 -0
- package/package.json +2 -1
|
@@ -40,6 +40,9 @@ export declare const Tabs: import("@stitches/react/types/styled-component").Styl
|
|
|
40
40
|
navButtonBgHover: string;
|
|
41
41
|
cardBackgroundDark: string;
|
|
42
42
|
cardBackgroundLight: string;
|
|
43
|
+
gradientGold: string;
|
|
44
|
+
gradientSilver: string;
|
|
45
|
+
gradientBronze: string;
|
|
43
46
|
textMiddle: string;
|
|
44
47
|
textLight: string;
|
|
45
48
|
textLighter: string;
|
|
@@ -523,6 +526,9 @@ export declare const TabsList: import("@stitches/react/types/styled-component").
|
|
|
523
526
|
navButtonBgHover: string;
|
|
524
527
|
cardBackgroundDark: string;
|
|
525
528
|
cardBackgroundLight: string;
|
|
529
|
+
gradientGold: string;
|
|
530
|
+
gradientSilver: string;
|
|
531
|
+
gradientBronze: string;
|
|
526
532
|
textMiddle: string;
|
|
527
533
|
textLight: string;
|
|
528
534
|
textLighter: string;
|
|
@@ -1008,6 +1014,9 @@ export declare const TabsTrigger: import("@stitches/react/types/styled-component
|
|
|
1008
1014
|
navButtonBgHover: string;
|
|
1009
1015
|
cardBackgroundDark: string;
|
|
1010
1016
|
cardBackgroundLight: string;
|
|
1017
|
+
gradientGold: string;
|
|
1018
|
+
gradientSilver: string;
|
|
1019
|
+
gradientBronze: string;
|
|
1011
1020
|
textMiddle: string;
|
|
1012
1021
|
textLight: string;
|
|
1013
1022
|
textLighter: string;
|
|
@@ -1491,6 +1500,9 @@ export declare const TabsContent: import("@stitches/react/types/styled-component
|
|
|
1491
1500
|
navButtonBgHover: string;
|
|
1492
1501
|
cardBackgroundDark: string;
|
|
1493
1502
|
cardBackgroundLight: string;
|
|
1503
|
+
gradientGold: string;
|
|
1504
|
+
gradientSilver: string;
|
|
1505
|
+
gradientBronze: string;
|
|
1494
1506
|
textMiddle: string;
|
|
1495
1507
|
textLight: string;
|
|
1496
1508
|
textLighter: string;
|
|
@@ -13,3 +13,5 @@ export * from "./Table/TableV2";
|
|
|
13
13
|
export * from "./MetricValidatorStatus/MetricValidatorStatus";
|
|
14
14
|
export * from "./Dialog/Dialog";
|
|
15
15
|
export * from "./ResponsiveDialog/ResponsiveDialog";
|
|
16
|
+
export * from "./Profile/Profile";
|
|
17
|
+
export * from "./ShareButton/ShareButton";
|
|
@@ -15,6 +15,9 @@ declare const COLORS: {
|
|
|
15
15
|
navButtonBgHover: import("@stitches/react/types/theme").Token<"navButtonBgHover", string, "colors", "">;
|
|
16
16
|
cardBackgroundDark: import("@stitches/react/types/theme").Token<"cardBackgroundDark", string, "colors", "">;
|
|
17
17
|
cardBackgroundLight: import("@stitches/react/types/theme").Token<"cardBackgroundLight", string, "colors", "">;
|
|
18
|
+
gradientGold: import("@stitches/react/types/theme").Token<"gradientGold", string, "colors", "">;
|
|
19
|
+
gradientSilver: import("@stitches/react/types/theme").Token<"gradientSilver", string, "colors", "">;
|
|
20
|
+
gradientBronze: import("@stitches/react/types/theme").Token<"gradientBronze", string, "colors", "">;
|
|
18
21
|
textMiddle: import("@stitches/react/types/theme").Token<"textMiddle", string, "colors", "">;
|
|
19
22
|
textLight: import("@stitches/react/types/theme").Token<"textLight", string, "colors", "">;
|
|
20
23
|
textLighter: import("@stitches/react/types/theme").Token<"textLighter", string, "colors", "">;
|
|
@@ -38,6 +38,9 @@ export declare const GlowIcon: import("@stitches/react/types/styled-component").
|
|
|
38
38
|
navButtonBgHover: string;
|
|
39
39
|
cardBackgroundDark: string;
|
|
40
40
|
cardBackgroundLight: string;
|
|
41
|
+
gradientGold: string;
|
|
42
|
+
gradientSilver: string;
|
|
43
|
+
gradientBronze: string;
|
|
41
44
|
textMiddle: string;
|
|
42
45
|
textLight: string;
|
|
43
46
|
textLighter: string;
|