@obolnetwork/obol-ui 1.0.4 → 1.0.7

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.
Files changed (29) hide show
  1. package/dist/components/atoms/Box/Box.d.ts +2 -0
  2. package/dist/components/atoms/Button/Button.d.ts +2 -0
  3. package/dist/components/atoms/Container/Container.d.ts +4 -0
  4. package/dist/components/atoms/Image/Image.d.ts +2 -0
  5. package/dist/components/atoms/Link/Link.d.ts +2 -0
  6. package/dist/components/atoms/LogoCard/LogoCard.d.ts +1 -0
  7. package/dist/components/atoms/Spin/Spin.d.ts +3 -1
  8. package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +3 -1
  9. package/dist/components/atoms/Tabs/Tabs.d.ts +8 -0
  10. package/dist/components/atoms/Text/Text.d.ts +5 -3
  11. package/dist/components/atoms/TextField/TextField.d.ts +507 -0
  12. package/dist/components/atoms/Toggle/Toggle.d.ts +4 -0
  13. package/dist/components/atoms/Tooltip/Tooltip.d.ts +13 -0
  14. package/dist/components/icons/AlertIcon.d.ts +2 -0
  15. package/dist/components/icons/GlowIconBox.d.ts +2 -0
  16. package/dist/components/icons/Planet.d.ts +2 -0
  17. package/dist/components/icons/index.d.ts +3 -0
  18. package/dist/components/icons/static-icons/CheckIcon.d.ts +1 -0
  19. package/dist/components/icons/static-icons/CopyIcon.d.ts +1 -0
  20. package/dist/components/molecules/Accordion/Accordion.d.ts +4 -0
  21. package/dist/components/molecules/Card/Card.d.ts +4 -0
  22. package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +961 -0
  23. package/dist/components/utils/color-variants.d.ts +2 -0
  24. package/dist/components/utils/styles.d.ts +2 -0
  25. package/dist/components/utils/types.d.ts +1 -0
  26. package/dist/index.es.js +53 -40
  27. package/dist/index.js +56 -40
  28. package/dist/stitches.config.d.ts +20 -0
  29. package/package.json +2 -1
@@ -49,6 +49,8 @@ declare const COLORS: {
49
49
  bg03: import("@stitches/react/types/theme").Token<"bg03", string, "colors", "">;
50
50
  bg04: import("@stitches/react/types/theme").Token<"bg04", string, "colors", "">;
51
51
  bg05: import("@stitches/react/types/theme").Token<"bg05", string, "colors", "">;
52
+ tooltip: import("@stitches/react/types/theme").Token<"tooltip", string, "colors", "">;
53
+ tooltip2: import("@stitches/react/types/theme").Token<"tooltip2", string, "colors", "">;
52
54
  };
53
55
  declare type MappedColor = {
54
56
  [K in keyof typeof COLORS]: {
@@ -70,6 +70,8 @@ export declare const GlowIcon: import("@stitches/react/types/styled-component").
70
70
  bg03: string;
71
71
  bg04: string;
72
72
  bg05: string;
73
+ tooltip: string;
74
+ tooltip2: string;
73
75
  };
74
76
  space: {
75
77
  1: string;
@@ -19,6 +19,7 @@ export interface EcosystemCardProps {
19
19
  heading: string;
20
20
  subheading?: string;
21
21
  links?: SocialNetwork[];
22
+ logoCardLink?: string;
22
23
  }
23
24
  export interface EcosystemTabsProps {
24
25
  tab: string;