@obolnetwork/obol-ui 1.0.8 → 1.0.9
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 +5 -2
- package/dist/components/atoms/Container/Container.d.ts +6 -0
- package/dist/components/atoms/Dialog/Dialog.d.ts +15 -5
- package/dist/components/atoms/IconButton/IconButton.d.ts +15 -3
- package/dist/components/atoms/Image/Image.d.ts +3 -0
- package/dist/components/atoms/Link/Link.d.ts +7 -1
- package/dist/components/atoms/Spin/Spin.d.ts +4 -1
- package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +4 -1
- package/dist/components/atoms/Tabs/Tabs.d.ts +12 -0
- package/dist/components/atoms/Text/Text.d.ts +9 -6
- package/dist/components/atoms/TextField/TextField.d.ts +6 -0
- package/dist/components/atoms/Toggle/Toggle.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/index.d.ts +4 -2
- package/dist/components/icons/static-icons/BulletCheckIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/TrashIcon.d.ts +1 -0
- package/dist/components/molecules/Accordion/Accordion.d.ts +6 -0
- package/dist/components/molecules/AdvisoryToggle/AdvisoryToggle.d.ts +968 -0
- package/dist/components/molecules/Card/Card.d.ts +6 -0
- package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +6 -0
- package/dist/components/molecules/ProgressTracker/ProgressTracker.d.ts +11 -0
- package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +9 -0
- package/dist/components/molecules/Table/Table.d.ts +20 -0
- package/dist/components/organisms/Advisory/Advisory.d.ts +978 -0
- package/dist/components/utils/color-variants.d.ts +3 -0
- package/dist/components/utils/styles.d.ts +3 -0
- package/dist/index.es.js +82 -28
- package/dist/index.js +83 -27
- package/dist/stitches.config.d.ts +30 -0
- package/package.json +5 -2
|
@@ -17,6 +17,7 @@ declare const COLORS: {
|
|
|
17
17
|
cardBackgroundLight: import("@stitches/react/types/theme").Token<"cardBackgroundLight", string, "colors", "">;
|
|
18
18
|
textMiddle: import("@stitches/react/types/theme").Token<"textMiddle", string, "colors", "">;
|
|
19
19
|
textLight: import("@stitches/react/types/theme").Token<"textLight", string, "colors", "">;
|
|
20
|
+
textLighter: import("@stitches/react/types/theme").Token<"textLighter", string, "colors", "">;
|
|
20
21
|
textTabHover: import("@stitches/react/types/theme").Token<"textTabHover", string, "colors", "">;
|
|
21
22
|
textTabInactive: import("@stitches/react/types/theme").Token<"textTabInactive", string, "colors", "">;
|
|
22
23
|
textGreenDark: import("@stitches/react/types/theme").Token<"textGreenDark", string, "colors", "">;
|
|
@@ -29,11 +30,13 @@ declare const COLORS: {
|
|
|
29
30
|
textGrayHover: import("@stitches/react/types/theme").Token<"textGrayHover", string, "colors", "">;
|
|
30
31
|
txButton: import("@stitches/react/types/theme").Token<"txButton", string, "colors", "">;
|
|
31
32
|
obolGreen: import("@stitches/react/types/theme").Token<"obolGreen", string, "colors", "">;
|
|
33
|
+
obolMidGreen: import("@stitches/react/types/theme").Token<"obolMidGreen", string, "colors", "">;
|
|
32
34
|
obolGreenHover: import("@stitches/react/types/theme").Token<"obolGreenHover", string, "colors", "">;
|
|
33
35
|
obolGreenLight: import("@stitches/react/types/theme").Token<"obolGreenLight", string, "colors", "">;
|
|
34
36
|
obolDarkDark: import("@stitches/react/types/theme").Token<"obolDarkDark", string, "colors", "">;
|
|
35
37
|
obolDisabled: import("@stitches/react/types/theme").Token<"obolDisabled", string, "colors", "">;
|
|
36
38
|
linkButtonHover: import("@stitches/react/types/theme").Token<"linkButtonHover", string, "colors", "">;
|
|
39
|
+
progressTrackerGreen: import("@stitches/react/types/theme").Token<"progressTrackerGreen", string, "colors", "">;
|
|
37
40
|
coordinate: import("@stitches/react/types/theme").Token<"coordinate", string, "colors", "">;
|
|
38
41
|
coordinateHover: import("@stitches/react/types/theme").Token<"coordinateHover", string, "colors", "">;
|
|
39
42
|
test: import("@stitches/react/types/theme").Token<"test", string, "colors", "">;
|
|
@@ -38,6 +38,7 @@ export declare const GlowIcon: import("@stitches/react/types/styled-component").
|
|
|
38
38
|
cardBackgroundLight: string;
|
|
39
39
|
textMiddle: string;
|
|
40
40
|
textLight: string;
|
|
41
|
+
textLighter: string;
|
|
41
42
|
textTabHover: string;
|
|
42
43
|
textTabInactive: string;
|
|
43
44
|
textGreenDark: string;
|
|
@@ -50,11 +51,13 @@ export declare const GlowIcon: import("@stitches/react/types/styled-component").
|
|
|
50
51
|
textGrayHover: string;
|
|
51
52
|
txButton: string;
|
|
52
53
|
obolGreen: string;
|
|
54
|
+
obolMidGreen: string;
|
|
53
55
|
obolGreenHover: string;
|
|
54
56
|
obolGreenLight: string;
|
|
55
57
|
obolDarkDark: string;
|
|
56
58
|
obolDisabled: string;
|
|
57
59
|
linkButtonHover: string;
|
|
60
|
+
progressTrackerGreen: string;
|
|
58
61
|
coordinate: string;
|
|
59
62
|
coordinateHover: string;
|
|
60
63
|
test: string;
|