@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
|
@@ -40,6 +40,7 @@ export declare const GlowIconBox: import("@stitches/react/types/styled-component
|
|
|
40
40
|
cardBackgroundLight: string;
|
|
41
41
|
textMiddle: string;
|
|
42
42
|
textLight: string;
|
|
43
|
+
textLighter: string;
|
|
43
44
|
textTabHover: string;
|
|
44
45
|
textTabInactive: string;
|
|
45
46
|
textGreenDark: string;
|
|
@@ -52,11 +53,13 @@ export declare const GlowIconBox: import("@stitches/react/types/styled-component
|
|
|
52
53
|
textGrayHover: string;
|
|
53
54
|
txButton: string;
|
|
54
55
|
obolGreen: string;
|
|
56
|
+
obolMidGreen: string;
|
|
55
57
|
obolGreenHover: string;
|
|
56
58
|
obolGreenLight: string;
|
|
57
59
|
obolDarkDark: string;
|
|
58
60
|
obolDisabled: string;
|
|
59
61
|
linkButtonHover: string;
|
|
62
|
+
progressTrackerGreen: string;
|
|
60
63
|
coordinate: string;
|
|
61
64
|
coordinateHover: string;
|
|
62
65
|
test: string;
|
|
@@ -42,6 +42,7 @@ declare const SvgIconPlanet: import("@stitches/react/types/styled-component").St
|
|
|
42
42
|
cardBackgroundLight: string;
|
|
43
43
|
textMiddle: string;
|
|
44
44
|
textLight: string;
|
|
45
|
+
textLighter: string;
|
|
45
46
|
textTabHover: string;
|
|
46
47
|
textTabInactive: string;
|
|
47
48
|
textGreenDark: string;
|
|
@@ -54,11 +55,13 @@ declare const SvgIconPlanet: import("@stitches/react/types/styled-component").St
|
|
|
54
55
|
textGrayHover: string;
|
|
55
56
|
txButton: string;
|
|
56
57
|
obolGreen: string;
|
|
58
|
+
obolMidGreen: string;
|
|
57
59
|
obolGreenHover: string;
|
|
58
60
|
obolGreenLight: string;
|
|
59
61
|
obolDarkDark: string;
|
|
60
62
|
obolDisabled: string;
|
|
61
63
|
linkButtonHover: string;
|
|
64
|
+
progressTrackerGreen: string;
|
|
62
65
|
coordinate: string;
|
|
63
66
|
coordinateHover: string;
|
|
64
67
|
test: string;
|
|
@@ -4,6 +4,8 @@ export * from "./OpenInNew";
|
|
|
4
4
|
export * from "./CloseIcon";
|
|
5
5
|
export * from "./ChevronDownIcon";
|
|
6
6
|
export * from "./ChevronUpIcon";
|
|
7
|
+
export * from "./Hexapod";
|
|
8
|
+
export * from "./AlertIcon";
|
|
7
9
|
export * from "./static-icons/obol/circle";
|
|
8
10
|
export * from "./static-icons/obol/horizontal";
|
|
9
11
|
export * from "./static-icons/obol/mark/";
|
|
@@ -24,5 +26,5 @@ export * from "./static-icons/GroupIcon";
|
|
|
24
26
|
export * from "./static-icons/ExistingGroupIcon";
|
|
25
27
|
export * from "./static-icons/CopyIcon";
|
|
26
28
|
export * from "./static-icons/CheckIcon";
|
|
27
|
-
export * from "./
|
|
28
|
-
export * from "./
|
|
29
|
+
export * from "./static-icons/TrashIcon";
|
|
30
|
+
export * from "./static-icons/BulletCheckIcon";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BulletCheckIcon: () => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const TrashIcon: () => JSX.Element;
|
|
@@ -40,6 +40,7 @@ export declare const Root: import("@stitches/react/types/styled-component").Styl
|
|
|
40
40
|
cardBackgroundLight: string;
|
|
41
41
|
textMiddle: string;
|
|
42
42
|
textLight: string;
|
|
43
|
+
textLighter: string;
|
|
43
44
|
textTabHover: string;
|
|
44
45
|
textTabInactive: string;
|
|
45
46
|
textGreenDark: string;
|
|
@@ -52,11 +53,13 @@ export declare const Root: import("@stitches/react/types/styled-component").Styl
|
|
|
52
53
|
textGrayHover: string;
|
|
53
54
|
txButton: string;
|
|
54
55
|
obolGreen: string;
|
|
56
|
+
obolMidGreen: string;
|
|
55
57
|
obolGreenHover: string;
|
|
56
58
|
obolGreenLight: string;
|
|
57
59
|
obolDarkDark: string;
|
|
58
60
|
obolDisabled: string;
|
|
59
61
|
linkButtonHover: string;
|
|
62
|
+
progressTrackerGreen: string;
|
|
60
63
|
coordinate: string;
|
|
61
64
|
coordinateHover: string;
|
|
62
65
|
test: string;
|
|
@@ -517,6 +520,7 @@ export declare const Item: import("@stitches/react/types/styled-component").Styl
|
|
|
517
520
|
cardBackgroundLight: string;
|
|
518
521
|
textMiddle: string;
|
|
519
522
|
textLight: string;
|
|
523
|
+
textLighter: string;
|
|
520
524
|
textTabHover: string;
|
|
521
525
|
textTabInactive: string;
|
|
522
526
|
textGreenDark: string;
|
|
@@ -529,11 +533,13 @@ export declare const Item: import("@stitches/react/types/styled-component").Styl
|
|
|
529
533
|
textGrayHover: string;
|
|
530
534
|
txButton: string;
|
|
531
535
|
obolGreen: string;
|
|
536
|
+
obolMidGreen: string;
|
|
532
537
|
obolGreenHover: string;
|
|
533
538
|
obolGreenLight: string;
|
|
534
539
|
obolDarkDark: string;
|
|
535
540
|
obolDisabled: string;
|
|
536
541
|
linkButtonHover: string;
|
|
542
|
+
progressTrackerGreen: string;
|
|
537
543
|
coordinate: string;
|
|
538
544
|
coordinateHover: string;
|
|
539
545
|
test: string;
|