@obolnetwork/obol-ui 1.0.7 → 1.0.10
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 +10 -7
- package/dist/components/atoms/Container/Container.d.ts +6 -0
- package/dist/components/atoms/Dialog/Dialog.d.ts +1455 -0
- package/dist/components/atoms/IconButton/IconButton.d.ts +508 -0
- package/dist/components/atoms/Image/Image.d.ts +3 -0
- package/dist/components/atoms/Link/Link.d.ts +7 -1
- package/dist/components/atoms/NumberField/NumberField.d.ts +9 -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/Tabs/Tabs.d.ts +12 -0
- package/dist/components/atoms/Text/Text.d.ts +9 -6
- package/dist/components/atoms/TextField/TextField.d.ts +478 -15
- package/dist/components/atoms/Toggle/Toggle.d.ts +6 -0
- package/dist/components/atoms/index.d.ts +4 -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 +5 -2
- package/dist/components/icons/static-icons/BulletCheckIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/Coinbase.d.ts +1 -0
- package/dist/components/icons/static-icons/HelpIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/Metamask.d.ts +1 -0
- package/dist/components/icons/static-icons/TrashIcon.d.ts +1 -0
- package/dist/components/icons/static-icons/WalletConnect.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 +1454 -0
- package/dist/components/molecules/Table/Table.d.ts +19 -0
- package/dist/components/molecules/index.d.ts +6 -1
- package/dist/components/organisms/Advisory/Advisory.d.ts +978 -0
- package/dist/components/organisms/index.d.ts +2 -1
- package/dist/components/utils/color-variants.d.ts +3 -0
- package/dist/components/utils/styles.d.ts +3 -0
- package/dist/index.es.js +726 -146
- package/dist/index.js +755 -144
- package/dist/stitches.config.d.ts +30 -0
- package/package.json +6 -2
|
@@ -55,6 +55,7 @@ export declare const ToggleCardItem: import("@stitches/react/types/styled-compon
|
|
|
55
55
|
cardBackgroundLight: string;
|
|
56
56
|
textMiddle: string;
|
|
57
57
|
textLight: string;
|
|
58
|
+
textLighter: string;
|
|
58
59
|
textTabHover: string;
|
|
59
60
|
textTabInactive: string;
|
|
60
61
|
textGreenDark: string;
|
|
@@ -67,11 +68,13 @@ export declare const ToggleCardItem: import("@stitches/react/types/styled-compon
|
|
|
67
68
|
textGrayHover: string;
|
|
68
69
|
txButton: string;
|
|
69
70
|
obolGreen: string;
|
|
71
|
+
obolMidGreen: string;
|
|
70
72
|
obolGreenHover: string;
|
|
71
73
|
obolGreenLight: string;
|
|
72
74
|
obolDarkDark: string;
|
|
73
75
|
obolDisabled: string;
|
|
74
76
|
linkButtonHover: string;
|
|
77
|
+
progressTrackerGreen: string;
|
|
75
78
|
coordinate: string;
|
|
76
79
|
coordinateHover: string;
|
|
77
80
|
test: string;
|
|
@@ -531,6 +534,7 @@ export declare const ToggleCardItem: import("@stitches/react/types/styled-compon
|
|
|
531
534
|
cardBackgroundLight: string;
|
|
532
535
|
textMiddle: string;
|
|
533
536
|
textLight: string;
|
|
537
|
+
textLighter: string;
|
|
534
538
|
textTabHover: string;
|
|
535
539
|
textTabInactive: string;
|
|
536
540
|
textGreenDark: string;
|
|
@@ -543,11 +547,13 @@ export declare const ToggleCardItem: import("@stitches/react/types/styled-compon
|
|
|
543
547
|
textGrayHover: string;
|
|
544
548
|
txButton: string;
|
|
545
549
|
obolGreen: string;
|
|
550
|
+
obolMidGreen: string;
|
|
546
551
|
obolGreenHover: string;
|
|
547
552
|
obolGreenLight: string;
|
|
548
553
|
obolDarkDark: string;
|
|
549
554
|
obolDisabled: string;
|
|
550
555
|
linkButtonHover: string;
|
|
556
|
+
progressTrackerGreen: string;
|
|
551
557
|
coordinate: string;
|
|
552
558
|
coordinateHover: string;
|
|
553
559
|
test: string;
|
|
@@ -39,6 +39,7 @@ export declare const NotificationContainer: import("@stitches/react/types/styled
|
|
|
39
39
|
cardBackgroundLight: string;
|
|
40
40
|
textMiddle: string;
|
|
41
41
|
textLight: string;
|
|
42
|
+
textLighter: string;
|
|
42
43
|
textTabHover: string;
|
|
43
44
|
textTabInactive: string;
|
|
44
45
|
textGreenDark: string;
|
|
@@ -51,11 +52,13 @@ export declare const NotificationContainer: import("@stitches/react/types/styled
|
|
|
51
52
|
textGrayHover: string;
|
|
52
53
|
txButton: string;
|
|
53
54
|
obolGreen: string;
|
|
55
|
+
obolMidGreen: string;
|
|
54
56
|
obolGreenHover: string;
|
|
55
57
|
obolGreenLight: string;
|
|
56
58
|
obolDarkDark: string;
|
|
57
59
|
obolDisabled: string;
|
|
58
60
|
linkButtonHover: string;
|
|
61
|
+
progressTrackerGreen: string;
|
|
59
62
|
coordinate: string;
|
|
60
63
|
coordinateHover: string;
|
|
61
64
|
test: string;
|
|
@@ -515,6 +518,7 @@ export declare const NotificationContainer: import("@stitches/react/types/styled
|
|
|
515
518
|
cardBackgroundLight: string;
|
|
516
519
|
textMiddle: string;
|
|
517
520
|
textLight: string;
|
|
521
|
+
textLighter: string;
|
|
518
522
|
textTabHover: string;
|
|
519
523
|
textTabInactive: string;
|
|
520
524
|
textGreenDark: string;
|
|
@@ -527,11 +531,13 @@ export declare const NotificationContainer: import("@stitches/react/types/styled
|
|
|
527
531
|
textGrayHover: string;
|
|
528
532
|
txButton: string;
|
|
529
533
|
obolGreen: string;
|
|
534
|
+
obolMidGreen: string;
|
|
530
535
|
obolGreenHover: string;
|
|
531
536
|
obolGreenLight: string;
|
|
532
537
|
obolDarkDark: string;
|
|
533
538
|
obolDisabled: string;
|
|
534
539
|
linkButtonHover: string;
|
|
540
|
+
progressTrackerGreen: string;
|
|
535
541
|
coordinate: string;
|
|
536
542
|
coordinateHover: string;
|
|
537
543
|
test: string;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
interface LinkItemProps {
|
|
3
|
+
title: string;
|
|
4
|
+
href: string;
|
|
5
|
+
status: "complete" | "incomplete";
|
|
6
|
+
}
|
|
7
|
+
interface ProgressTrackerProps {
|
|
8
|
+
items: LinkItemProps[];
|
|
9
|
+
}
|
|
10
|
+
export declare const ProgressTracker: React.FC<ProgressTrackerProps>;
|
|
11
|
+
export {};
|