@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.
Files changed (45) hide show
  1. package/dist/components/atoms/Avatar/Avatar.d.ts +975 -0
  2. package/dist/components/atoms/Badge/Badge.d.ts +2 -0
  3. package/dist/components/atoms/Box/Box.d.ts +3 -0
  4. package/dist/components/atoms/Button/Button.d.ts +3 -0
  5. package/dist/components/atoms/Checkbox/Checkbox.d.ts +3 -0
  6. package/dist/components/atoms/Container/Container.d.ts +6 -0
  7. package/dist/components/atoms/Flex/Flex.d.ts +3 -0
  8. package/dist/components/atoms/Grid/Grid.d.ts +3 -0
  9. package/dist/components/atoms/IconButton/IconButton.d.ts +3 -0
  10. package/dist/components/atoms/Image/Image.d.ts +3 -0
  11. package/dist/components/atoms/Link/Link.d.ts +3 -0
  12. package/dist/components/atoms/NavigationMenu/NavigationMenu.d.ts +15 -0
  13. package/dist/components/atoms/Separator/Separator.d.ts +3 -0
  14. package/dist/components/atoms/Spin/Spin.d.ts +4 -1
  15. package/dist/components/atoms/SvgIcon/SvgIcon.d.ts +4 -1
  16. package/dist/components/atoms/Switch/Switch.d.ts +6 -0
  17. package/dist/components/atoms/Text/Text.d.ts +6 -3
  18. package/dist/components/atoms/TextField/TextField.d.ts +12 -0
  19. package/dist/components/atoms/Toggle/Toggle.d.ts +6 -0
  20. package/dist/components/atoms/UnstyledTextField/UnstyledTextField.d.ts +6 -0
  21. package/dist/components/icons/GlowIconBox.d.ts +3 -0
  22. package/dist/components/icons/Planet.d.ts +3 -0
  23. package/dist/components/icons/socials/CopyLinkIcon.d.ts +2 -0
  24. package/dist/components/icons/socials/DiscordIcon.d.ts +2 -0
  25. package/dist/components/icons/socials/LinkedinIcon.d.ts +2 -0
  26. package/dist/components/icons/socials/XIcon.d.ts +2 -0
  27. package/dist/components/molecules/Accordion/Accordion.d.ts +6 -0
  28. package/dist/components/molecules/AdvisoryToggle/AdvisoryToggle.d.ts +6 -0
  29. package/dist/components/molecules/Card/Card.d.ts +12 -0
  30. package/dist/components/molecules/Dialog/Dialog.d.ts +18 -0
  31. package/dist/components/molecules/NotificationCard/NotificationCard.d.ts +6 -0
  32. package/dist/components/molecules/Profile/Profile.d.ts +9 -0
  33. package/dist/components/molecules/RadioGroup/RadioGroup.d.ts +9 -0
  34. package/dist/components/molecules/ResponsiveDialog/ResponsiveDialog.d.ts +6 -0
  35. package/dist/components/molecules/ShareButton/ShareButton.d.ts +4 -0
  36. package/dist/components/molecules/Table/Table.d.ts +1 -0
  37. package/dist/components/molecules/Tabs/Tabs.d.ts +12 -0
  38. package/dist/components/molecules/index.d.ts +2 -0
  39. package/dist/components/utils/color-variants.d.ts +3 -0
  40. package/dist/components/utils/hooks/useOutsideClick.d.ts +2 -0
  41. package/dist/components/utils/styles.d.ts +3 -0
  42. package/dist/index.es.js +1 -1
  43. package/dist/index.js +1 -1
  44. package/dist/stitches.config.d.ts +30 -0
  45. package/package.json +2 -1
@@ -0,0 +1,4 @@
1
+ export declare type ShareButtonProps = {
2
+ url: string;
3
+ };
4
+ export declare const ShareButton: (props: ShareButtonProps) => import("react/jsx-runtime").JSX.Element;
@@ -21,6 +21,7 @@ export declare type ColumnDef<T> = {
21
21
  css?: CSS;
22
22
  cell?: CellDef;
23
23
  sortAccessor?: (row: T) => unknown;
24
+ sortLevel?: "single" | "multi";
24
25
  };
25
26
  export interface TableProps {
26
27
  rows: RowDef<any>[];
@@ -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", "">;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const useOutsideClick: (callback: () => void) => import("react").MutableRefObject<HTMLDivElement | null>;
@@ -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;