@zerodev/react-ui 0.0.3 → 0.0.5

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 (84) hide show
  1. package/dist/_types/components/ArrowCardPair/index.d.ts +2 -2
  2. package/dist/_types/components/ArrowCardPair/index.d.ts.map +1 -1
  3. package/dist/_types/components/Badge/index.d.ts +1 -1
  4. package/dist/_types/components/Badge/index.d.ts.map +1 -1
  5. package/dist/_types/components/BottomSheet/index.d.ts +17 -0
  6. package/dist/_types/components/BottomSheet/index.d.ts.map +1 -0
  7. package/dist/_types/components/Button/index.d.ts +1 -1
  8. package/dist/_types/components/Button/index.d.ts.map +1 -1
  9. package/dist/_types/components/Callout/index.d.ts +1 -1
  10. package/dist/_types/components/Callout/index.d.ts.map +1 -1
  11. package/dist/_types/components/DataRow/index.d.ts +6 -2
  12. package/dist/_types/components/DataRow/index.d.ts.map +1 -1
  13. package/dist/_types/components/Icon/index.d.ts +1 -1
  14. package/dist/_types/components/Icon/index.d.ts.map +1 -1
  15. package/dist/_types/components/IconButton/index.d.ts +1 -1
  16. package/dist/_types/components/IconButton/index.d.ts.map +1 -1
  17. package/dist/_types/components/InfoCard/index.d.ts +17 -0
  18. package/dist/_types/components/InfoCard/index.d.ts.map +1 -0
  19. package/dist/_types/components/Input/index.d.ts +1 -1
  20. package/dist/_types/components/Input/index.d.ts.map +1 -1
  21. package/dist/_types/components/ListItem/index.d.ts +32 -15
  22. package/dist/_types/components/ListItem/index.d.ts.map +1 -1
  23. package/dist/_types/components/Pill/index.d.ts +25 -0
  24. package/dist/_types/components/Pill/index.d.ts.map +1 -0
  25. package/dist/_types/components/PoweredBy/index.d.ts +6 -0
  26. package/dist/_types/components/PoweredBy/index.d.ts.map +1 -0
  27. package/dist/_types/components/Screen/EllipticalRadial.d.ts +23 -0
  28. package/dist/_types/components/Screen/EllipticalRadial.d.ts.map +1 -0
  29. package/dist/_types/components/Screen/MultiRadialBackground.d.ts +4 -0
  30. package/dist/_types/components/Screen/MultiRadialBackground.d.ts.map +1 -0
  31. package/dist/_types/components/Screen/index.d.ts +15 -0
  32. package/dist/_types/components/Screen/index.d.ts.map +1 -0
  33. package/dist/_types/components/Section/MessageDetails/index.d.ts +5 -0
  34. package/dist/_types/components/Section/MessageDetails/index.d.ts.map +1 -0
  35. package/dist/_types/components/Section/index.d.ts +11 -0
  36. package/dist/_types/components/Section/index.d.ts.map +1 -0
  37. package/dist/_types/components/Select/index.d.ts +28 -0
  38. package/dist/_types/components/Select/index.d.ts.map +1 -0
  39. package/dist/_types/components/Switch/index.d.ts +1 -1
  40. package/dist/_types/components/Switch/index.d.ts.map +1 -1
  41. package/dist/_types/components/Text/index.d.ts +1 -1
  42. package/dist/_types/components/Text/index.d.ts.map +1 -1
  43. package/dist/_types/components/TokenListItem/index.d.ts +33 -0
  44. package/dist/_types/components/TokenListItem/index.d.ts.map +1 -0
  45. package/dist/_types/components/Tooltip/index.d.ts +43 -0
  46. package/dist/_types/components/Tooltip/index.d.ts.map +1 -0
  47. package/dist/_types/components/TopNav/index.d.ts +20 -0
  48. package/dist/_types/components/TopNav/index.d.ts.map +1 -0
  49. package/dist/_types/components/WrappedPressable/index.d.ts +1 -1
  50. package/dist/_types/components/WrappedPressable/index.d.ts.map +1 -1
  51. package/dist/_types/components/Wrapper/index.d.ts +3 -2
  52. package/dist/_types/components/Wrapper/index.d.ts.map +1 -1
  53. package/dist/_types/components/ZeroDevLogo/index.d.ts +1 -1
  54. package/dist/_types/components/ZeroDevLogo/index.d.ts.map +1 -1
  55. package/dist/_types/index.d.ts +13 -2
  56. package/dist/_types/index.d.ts.map +1 -1
  57. package/dist/_types/utils/common.d.ts +4 -0
  58. package/dist/_types/utils/common.d.ts.map +1 -1
  59. package/dist/index.cjs +51 -7
  60. package/dist/index.cjs.map +1 -1
  61. package/dist/index.mjs +6538 -1341
  62. package/dist/index.mjs.map +1 -1
  63. package/dist/styles.css +2 -2
  64. package/package.json +7 -5
  65. package/src/components/ArrowCardPair/index.tsx +25 -5
  66. package/src/components/BottomSheet/index.tsx +57 -0
  67. package/src/components/DataRow/index.tsx +55 -29
  68. package/src/components/InfoCard/index.tsx +104 -0
  69. package/src/components/ListItem/index.tsx +74 -79
  70. package/src/components/Pill/index.tsx +167 -0
  71. package/src/components/PoweredBy/index.tsx +29 -0
  72. package/src/components/Screen/EllipticalRadial.tsx +65 -0
  73. package/src/components/Screen/MultiRadialBackground.tsx +323 -0
  74. package/src/components/Screen/index.tsx +121 -0
  75. package/src/components/Section/MessageDetails/index.tsx +19 -0
  76. package/src/components/Section/index.tsx +50 -0
  77. package/src/components/Select/index.tsx +153 -0
  78. package/src/components/TokenListItem/index.tsx +192 -0
  79. package/src/components/Tooltip/index.tsx +94 -0
  80. package/src/components/TopNav/index.tsx +67 -0
  81. package/src/components/Wrapper/index.tsx +4 -1
  82. package/src/index.ts +54 -1
  83. package/src/utils/common.ts +15 -0
  84. package/tailwind.config.ts +47 -0
@@ -1,10 +1,10 @@
1
1
  import { type ReactNode } from 'react';
2
2
  export declare function ArrowView({ className }: {
3
3
  className?: string;
4
- }): import("react/jsx-runtime").JSX.Element;
4
+ }): import("react").JSX.Element;
5
5
  export interface ArrowCardPairProps {
6
6
  topCard: ReactNode;
7
7
  bottomCard: ReactNode;
8
8
  }
9
- export declare function ArrowCardPair({ topCard, bottomCard }: ArrowCardPairProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function ArrowCardPair({ topCard, bottomCard }: ArrowCardPairProps): import("react").JSX.Element;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ArrowCardPair/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAA+B,MAAM,OAAO,CAAA;AA4GnE,wBAAgB,SAAS,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,2CAE9D;AAED,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,SAAS,CAAA;IAClB,UAAU,EAAE,SAAS,CAAA;CACtB;AAED,wBAAgB,aAAa,CAAC,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE,kBAAkB,2CAUxE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ArrowCardPair/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAA+B,MAAM,OAAO,CAAA;AA4GnE,wBAAgB,SAAS,CAAC,EAAE,SAAS,EAAE,EAAE;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,+BAE9D;AAED,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,SAAS,CAAA;IAClB,UAAU,EAAE,SAAS,CAAA;CACtB;AAED,wBAAgB,aAAa,CAAC,EAAE,OAAO,EAAE,UAAU,EAAE,EAAE,kBAAkB,+BA8BxE"}
@@ -6,5 +6,5 @@ export interface BadgeProps {
6
6
  trailingIcon?: IconName;
7
7
  className?: string;
8
8
  }
9
- export declare function Badge({ text, variant, leadingIcon, trailingIcon, className, }: BadgeProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function Badge({ text, variant, leadingIcon, trailingIcon, className, }: BadgeProps): import("react").JSX.Element;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAG7C,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IACjC,WAAW,CAAC,EAAE,QAAQ,CAAA;IACtB,YAAY,CAAC,EAAE,QAAQ,CAAA;IACvB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAOD,wBAAgB,KAAK,CAAC,EACpB,IAAI,EACJ,OAAmB,EACnB,WAAW,EACX,YAAY,EACZ,SAAS,GACV,EAAE,UAAU,2CAqBZ"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Badge/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAG7C,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAA;IACZ,OAAO,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IACjC,WAAW,CAAC,EAAE,QAAQ,CAAA;IACtB,YAAY,CAAC,EAAE,QAAQ,CAAA;IACvB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAOD,wBAAgB,KAAK,CAAC,EACpB,IAAI,EACJ,OAAmB,EACnB,WAAW,EACX,YAAY,EACZ,SAAS,GACV,EAAE,UAAU,+BAqBZ"}
@@ -0,0 +1,17 @@
1
+ import { Dialog } from 'radix-ui';
2
+ import type { ComponentProps, ReactNode } from 'react';
3
+ export declare const BottomSheet: import("react").FC<Dialog.DialogProps>;
4
+ export declare const BottomSheetClose: import("react").ForwardRefExoticComponent<Dialog.DialogCloseProps & import("react").RefAttributes<HTMLButtonElement>>;
5
+ /** Accessible label for the sheet. `sr-only` by default — consumers who want
6
+ * a visible title render their own heading inside `<BottomSheetContent>` and keep
7
+ * `<BottomSheetTitle>` as the screen-reader label. */
8
+ export declare function BottomSheetTitle({ className, ...props }: ComponentProps<typeof Dialog.Title>): import("react").JSX.Element;
9
+ /** Bottom-anchored sheet chrome. Portals into the nearest `Screen`, renders
10
+ * the backdrop + panel, and drives open/close animations from Radix's
11
+ * `data-state` attribute. Wrap in `<BottomSheet open onOpenChange>` and
12
+ * compose children freely (title, body, `<BottomSheetClose>` action). */
13
+ export declare function BottomSheetContent({ children, className, }: {
14
+ children: ReactNode;
15
+ className?: string;
16
+ }): import("react").JSX.Element | null;
17
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/BottomSheet/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAA;AACjC,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAKtD,eAAO,MAAM,WAAW,wCAAc,CAAA;AACtC,eAAO,MAAM,gBAAgB,uHAAe,CAAA;AAE5C;;sDAEsD;AACtD,wBAAgB,gBAAgB,CAAC,EAC/B,SAAS,EACT,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,MAAM,CAAC,KAAK,CAAC,+BAErC;AAED;;;yEAGyE;AACzE,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,SAAS,GACV,EAAE;IACD,QAAQ,EAAE,SAAS,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB,sCA2BA"}
@@ -6,5 +6,5 @@ export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
6
6
  action?: 'primary' | 'secondary';
7
7
  trailIcon?: boolean;
8
8
  }
9
- export declare function Button({ text, className, iconName, trailIcon, disabled, action, ...rest }: ButtonProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function Button({ text, className, iconName, trailIcon, disabled, action, ...rest }: ButtonProps): import("react").JSX.Element;
10
10
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAiB,MAAM,OAAO,CAAA;AAGhE,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAgC7C,MAAM,WAAW,WAAY,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC1E,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,MAAM,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IAChC,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,wBAAgB,MAAM,CAAC,EACrB,IAAI,EACJ,SAAS,EACT,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,MAAkB,EAClB,GAAG,IAAI,EACR,EAAE,WAAW,2CA8Bb"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Button/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAiB,MAAM,OAAO,CAAA;AAGhE,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAgC7C,MAAM,WAAW,WAAY,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC1E,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,MAAM,CAAC,EAAE,SAAS,GAAG,WAAW,CAAA;IAChC,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;AAED,wBAAgB,MAAM,CAAC,EACrB,IAAI,EACJ,SAAS,EACT,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,MAAkB,EAClB,GAAG,IAAI,EACR,EAAE,WAAW,+BA8Bb"}
@@ -2,5 +2,5 @@ export interface CalloutProps {
2
2
  title: string;
3
3
  description: string;
4
4
  }
5
- export declare function Callout({ title, description }: CalloutProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function Callout({ title, description }: CalloutProps): import("react").JSX.Element;
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Callout/index.tsx"],"names":[],"mappings":"AAIA,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;CACpB;AAED,wBAAgB,OAAO,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,EAAE,YAAY,2CAa3D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Callout/index.tsx"],"names":[],"mappings":"AAIA,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,WAAW,EAAE,MAAM,CAAA;CACpB;AAED,wBAAgB,OAAO,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,EAAE,YAAY,+BAa3D"}
@@ -11,6 +11,10 @@ export interface DataRowProps {
11
11
  /** Handler for the info icon; when supplied, the icon becomes a keyboard-
12
12
  * accessible button. Requires `info` to be true. */
13
13
  onInfoClick?: () => void;
14
+ /** Tooltip text shown on hover / focus over the info icon. Rendered via
15
+ * `Tooltip` (Radix), so it collides / portals correctly. Ignored when
16
+ * `info` is false. */
17
+ infoTooltip?: string;
14
18
  /** Content rendered inside the value group, before the value. Typically a
15
19
  * small decorative or status icon (e.g. warning). */
16
20
  leading?: ReactNode;
@@ -22,12 +26,12 @@ export interface DataRowProps {
22
26
  variant?: 'default' | 'warning';
23
27
  className?: string;
24
28
  }
25
- export declare function DataRow({ label, value, info, onInfoClick, leading, trailing, variant, className, }: DataRowProps): import("react/jsx-runtime").JSX.Element;
29
+ export declare function DataRow({ label, value, info, onInfoClick, infoTooltip, leading, trailing, variant, className, }: DataRowProps): import("react").JSX.Element;
26
30
  export interface DataRowSkeletonProps {
27
31
  /** Optional label to render as-is on the left; when omitted a pulse
28
32
  * placeholder is drawn in its place. */
29
33
  label?: string;
30
34
  className?: string;
31
35
  }
32
- export declare function DataRowSkeleton({ label, className }: DataRowSkeletonProps): import("react/jsx-runtime").JSX.Element;
36
+ export declare function DataRowSkeleton({ label, className }: DataRowSkeletonProps): import("react").JSX.Element;
33
37
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/DataRow/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAMtC,MAAM,WAAW,YAAY;IAC3B,yDAAyD;IACzD,KAAK,EAAE,MAAM,CAAA;IACb;kDAC8C;IAC9C,KAAK,EAAE,SAAS,CAAA;IAChB;oBACgB;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd;wDACoD;IACpD,WAAW,CAAC,EAAE,MAAM,IAAI,CAAA;IACxB;yDACqD;IACrD,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB;mCAC+B;IAC/B,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB;mDAC+C;IAC/C,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,CAAA;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,OAAO,CAAC,EACtB,KAAK,EACL,KAAK,EACL,IAAI,EACJ,WAAW,EACX,OAAO,EACP,QAAQ,EACR,OAAmB,EACnB,SAAS,GACV,EAAE,YAAY,2CA2Ed;AAED,MAAM,WAAW,oBAAoB;IACnC;4CACwC;IACxC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,oBAAoB,2CAgBzE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/DataRow/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAOtC,MAAM,WAAW,YAAY;IAC3B,yDAAyD;IACzD,KAAK,EAAE,MAAM,CAAA;IACb;kDAC8C;IAC9C,KAAK,EAAE,SAAS,CAAA;IAChB;oBACgB;IAChB,IAAI,CAAC,EAAE,OAAO,CAAA;IACd;wDACoD;IACpD,WAAW,CAAC,EAAE,MAAM,IAAI,CAAA;IACxB;;0BAEsB;IACtB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB;yDACqD;IACrD,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB;mCAC+B;IAC/B,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB;mDAC+C;IAC/C,OAAO,CAAC,EAAE,SAAS,GAAG,SAAS,CAAA;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,OAAO,CAAC,EACtB,KAAK,EACL,KAAK,EACL,IAAI,EACJ,WAAW,EACX,WAAW,EACX,OAAO,EACP,QAAQ,EACR,OAAmB,EACnB,SAAS,GACV,EAAE,YAAY,+BA+Fd;AAED,MAAM,WAAW,oBAAoB;IACnC;4CACwC;IACxC,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,SAAS,EAAE,EAAE,oBAAoB,+BAgBzE"}
@@ -5,5 +5,5 @@ export type IconName = keyof typeof icons;
5
5
  export interface IconProps extends SVGProps<SVGSVGElement> {
6
6
  name: IconName;
7
7
  }
8
- export declare function Icon({ name, className, ...props }: IconProps): import("react/jsx-runtime").JSX.Element | null;
8
+ export declare function Icon({ name, className, ...props }: IconProps): import("react").JSX.Element | null;
9
9
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAuBzC,QAAA,MAAM,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAM,CAAA;AAO7D,OAAO,EAAE,KAAK,EAAE,CAAA;AAEhB,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,KAAK,CAAA;AAEzC,MAAM,WAAW,SAAU,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACxD,IAAI,EAAE,QAAQ,CAAA;CACf;AAED,wBAAgB,IAAI,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,SAAS,kDAI5D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Icon/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,EAAE,QAAQ,EAAE,MAAM,OAAO,CAAA;AAuBzC,QAAA,MAAM,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAM,CAAA;AAO7D,OAAO,EAAE,KAAK,EAAE,CAAA;AAEhB,MAAM,MAAM,QAAQ,GAAG,MAAM,OAAO,KAAK,CAAA;AAEzC,MAAM,WAAW,SAAU,SAAQ,QAAQ,CAAC,aAAa,CAAC;IACxD,IAAI,EAAE,QAAQ,CAAA;CACf;AAED,wBAAgB,IAAI,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,SAAS,sCAI5D"}
@@ -3,5 +3,5 @@ import { type IconName } from '../Icon';
3
3
  export interface IconButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
4
4
  iconName: IconName;
5
5
  }
6
- export declare function IconButton({ iconName, className, ...rest }: IconButtonProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function IconButton({ iconName, className, ...rest }: IconButtonProps): import("react").JSX.Element;
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/IconButton/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,OAAO,CAAA;AAGjD,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAG7C,MAAM,WAAW,eACf,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC/C,QAAQ,EAAE,QAAQ,CAAA;CACnB;AAED,wBAAgB,UAAU,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,EAAE,eAAe,2CAY3E"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/IconButton/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,OAAO,CAAA;AAGjD,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAG7C,MAAM,WAAW,eACf,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC/C,QAAQ,EAAE,QAAQ,CAAA;CACnB;AAED,wBAAgB,UAAU,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,GAAG,IAAI,EAAE,EAAE,eAAe,+BAY3E"}
@@ -0,0 +1,17 @@
1
+ import type { ReactNode } from 'react';
2
+ /** `'contained'` wraps the image in a white 44px tile; `'filled'` renders the
3
+ * image directly at 44px (no wrapper). */
4
+ export type InfoCardImageStyle = 'contained' | 'filled';
5
+ export interface InfoCardProps {
6
+ title: string;
7
+ subtitle?: string;
8
+ imageSource?: string;
9
+ /** Optional small chain-badge overlay on the token icon (bottom-right).
10
+ * Follows the same pattern as `TxnItem`'s pair-mark. */
11
+ chainIconUrl?: string;
12
+ rightElement?: ReactNode;
13
+ imageStyle?: InfoCardImageStyle;
14
+ className?: string;
15
+ }
16
+ export declare function InfoCard({ title, subtitle, imageSource, chainIconUrl, imageStyle, rightElement, className, }: InfoCardProps): import("react").JSX.Element;
17
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/InfoCard/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAKtC;2CAC2C;AAC3C,MAAM,MAAM,kBAAkB,GAAG,WAAW,GAAG,QAAQ,CAAA;AAEvD,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB;4DACwD;IACxD,YAAY,CAAC,EAAE,MAAM,CAAA;IACrB,YAAY,CAAC,EAAE,SAAS,CAAA;IACxB,UAAU,CAAC,EAAE,kBAAkB,CAAA;IAC/B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,QAAQ,CAAC,EACvB,KAAK,EACL,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,UAAwB,EACxB,YAAY,EACZ,SAAS,GACV,EAAE,aAAa,+BAwBf"}
@@ -8,6 +8,6 @@ export interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>,
8
8
  children?: React.ReactNode;
9
9
  containerClassName?: string;
10
10
  }
11
- export declare function Input({ variant, multiline, iconName, children, className, containerClassName, onFocus, onBlur, ...inputProps }: InputProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function Input({ variant, multiline, iconName, children, className, containerClassName, onFocus, onBlur, ...inputProps }: InputProps): import("react").JSX.Element;
12
12
  export {};
13
13
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,mBAAmB,EAGzB,MAAM,OAAO,CAAA;AAGd,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAG7C,KAAK,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,eAAe,CAAA;AAEpD,MAAM,WAAW,UACf,SAAQ,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,UAAU,CAAC;IAC/D,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,kBAAkB,CAAC,EAAE,MAAM,CAAA;CAC5B;AAoCD,wBAAgB,KAAK,CAAC,EACpB,OAAmB,EACnB,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,kBAAkB,EAClB,OAAO,EACP,MAAM,EACN,GAAG,UAAU,EACd,EAAE,UAAU,2CAiFZ"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Input/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,mBAAmB,EAGzB,MAAM,OAAO,CAAA;AAGd,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAG7C,KAAK,OAAO,GAAG,SAAS,GAAG,OAAO,GAAG,eAAe,CAAA;AAEpD,MAAM,WAAW,UACf,SAAQ,IAAI,CAAC,mBAAmB,CAAC,gBAAgB,CAAC,EAAE,UAAU,CAAC;IAC/D,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,SAAS,CAAC,EAAE,OAAO,CAAA;IACnB,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B,kBAAkB,CAAC,EAAE,MAAM,CAAA;CAC5B;AAoCD,wBAAgB,KAAK,CAAC,EACpB,OAAmB,EACnB,SAAS,EACT,QAAQ,EACR,QAAQ,EACR,SAAS,EACT,kBAAkB,EAClB,OAAO,EACP,MAAM,EACN,GAAG,UAAU,EACd,EAAE,UAAU,+BAiFZ"}
@@ -1,23 +1,40 @@
1
- import type { ButtonHTMLAttributes } from 'react';
2
- import { type BadgeProps } from '../Badge';
1
+ import type { ButtonHTMLAttributes, ReactElement, ReactNode } from 'react';
3
2
  import { type IconName } from '../Icon';
4
3
  interface ListItemSkeletonProps {
5
4
  className?: string;
6
5
  }
7
- export declare function ListItemSkeleton({ className }: ListItemSkeletonProps): import("react/jsx-runtime").JSX.Element;
8
- export interface ListItemProps extends ButtonHTMLAttributes<HTMLButtonElement> {
9
- iconName?: IconName;
10
- imageUri?: string;
6
+ export declare function ListItemSkeleton({ className }: ListItemSkeletonProps): import("react").JSX.Element;
7
+ interface ListItemBaseProps extends Omit<ButtonHTMLAttributes<HTMLButtonElement>, 'children'> {
11
8
  title: string;
12
- subtitle?: string;
13
- badgeProps?: BadgeProps;
14
- details?: {
15
- text: string;
16
- subtext?: string;
17
- };
18
- chevron?: boolean;
19
- alert?: boolean;
9
+ /** Secondary line under the title — plain text (auto-styled) or any node,
10
+ * e.g. a `<Badge />`. */
11
+ subtitle?: ReactNode;
12
+ /** Leading tile content — any node (`ListItemIcon`, `<img>`, a brand mark).
13
+ * Size the node itself (e.g. `zd:w-6 zd:h-6`); the tile keeps its frame. */
14
+ icon?: ReactNode;
15
+ /** Right side of the row — `<ListItemChevron />` or any custom node. */
16
+ trailing?: ReactNode;
20
17
  }
21
- export declare function ListItem({ iconName, imageUri, title, subtitle, badgeProps, details, chevron, alert, className, ...rest }: ListItemProps): import("react/jsx-runtime").JSX.Element;
18
+ type ListItemAsChildProps = {
19
+ /** Render the row into the child element (e.g. an `<a>`) instead of a
20
+ * `<button>`. Pass a single childless element; the row layout is
21
+ * injected into it. */
22
+ asChild: true;
23
+ children: ReactElement;
24
+ } | {
25
+ asChild?: false;
26
+ children?: never;
27
+ };
28
+ export type ListItemProps = ListItemBaseProps & ListItemAsChildProps;
29
+ export declare function ListItem({ icon, title, subtitle, trailing, asChild, children, className, ...rest }: ListItemProps): import("react").JSX.Element;
30
+ export interface ListItemIconProps {
31
+ name: IconName;
32
+ className?: string;
33
+ }
34
+ /** Standard leading icon for the tile — pre-sized and colored for the slot;
35
+ * override via `className` (e.g. `zd:text-solarOrange`). */
36
+ export declare function ListItemIcon({ name, className }: ListItemIconProps): import("react").JSX.Element;
37
+ /** Standard trailing chevron for navigation rows. */
38
+ export declare function ListItemChevron(): import("react").JSX.Element;
22
39
  export {};
23
40
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ListItem/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,OAAO,CAAA;AAGjD,OAAO,EAAS,KAAK,UAAU,EAAE,MAAM,UAAU,CAAA;AACjD,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAI7C,UAAU,qBAAqB;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,gBAAgB,CAAC,EAAE,SAAS,EAAE,EAAE,qBAAqB,2CAuBpE;AAED,MAAM,WAAW,aAAc,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC5E,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,KAAK,EAAE,MAAM,CAAA;IACb,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,UAAU,CAAC,EAAE,UAAU,CAAA;IACvB,OAAO,CAAC,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,MAAM,CAAA;KAAE,CAAA;IAC5C,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,KAAK,CAAC,EAAE,OAAO,CAAA;CAChB;AAED,wBAAgB,QAAQ,CAAC,EACvB,QAAQ,EACR,QAAQ,EACR,KAAK,EACL,QAAQ,EACR,UAAU,EACV,OAAO,EACP,OAAO,EACP,KAAK,EACL,SAAS,EACT,GAAG,IAAI,EACR,EAAE,aAAa,2CA4Ef"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/ListItem/index.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,oBAAoB,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAG1E,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAI7C,UAAU,qBAAqB;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,gBAAgB,CAAC,EAAE,SAAS,EAAE,EAAE,qBAAqB,+BAuBpE;AAED,UAAU,iBACR,SAAQ,IAAI,CAAC,oBAAoB,CAAC,iBAAiB,CAAC,EAAE,UAAU,CAAC;IACjE,KAAK,EAAE,MAAM,CAAA;IACb;6BACyB;IACzB,QAAQ,CAAC,EAAE,SAAS,CAAA;IACpB;gFAC4E;IAC5E,IAAI,CAAC,EAAE,SAAS,CAAA;IAChB,wEAAwE;IACxE,QAAQ,CAAC,EAAE,SAAS,CAAA;CACrB;AAID,KAAK,oBAAoB,GACrB;IACE;;2BAEuB;IACvB,OAAO,EAAE,IAAI,CAAA;IACb,QAAQ,EAAE,YAAY,CAAA;CACvB,GACD;IAAE,OAAO,CAAC,EAAE,KAAK,CAAC;IAAC,QAAQ,CAAC,EAAE,KAAK,CAAA;CAAE,CAAA;AAEzC,MAAM,MAAM,aAAa,GAAG,iBAAiB,GAAG,oBAAoB,CAAA;AAEpE,wBAAgB,QAAQ,CAAC,EACvB,IAAI,EACJ,KAAK,EACL,QAAQ,EACR,QAAQ,EACR,OAAO,EACP,QAAQ,EACR,SAAS,EACT,GAAG,IAAI,EACR,EAAE,aAAa,+BAgCf;AAED,MAAM,WAAW,iBAAiB;IAChC,IAAI,EAAE,QAAQ,CAAA;IACd,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED;4DAC4D;AAC5D,wBAAgB,YAAY,CAAC,EAAE,IAAI,EAAE,SAAS,EAAE,EAAE,iBAAiB,+BAOlE;AAED,qDAAqD;AACrD,wBAAgB,eAAe,gCAM9B"}
@@ -0,0 +1,25 @@
1
+ import type { HTMLAttributes, ReactNode, Ref } from 'react';
2
+ export interface PillProps extends Omit<HTMLAttributes<HTMLDivElement>, 'children'> {
3
+ /** Text label rendered next to the logo (e.g., "USDC", "Base"). */
4
+ label: string;
5
+ /** URL of the logo image; when omitted, a neutral placeholder disc with the
6
+ * first letter of `label` is drawn. */
7
+ logoUri?: string;
8
+ /** Click handler; when supplied and not `disabled`, the pill becomes a keyboard-accessible button. */
9
+ onClick?: () => void;
10
+ /** When true, renders as a dimmed, non-interactive pill. */
11
+ disabled?: boolean;
12
+ /** Render a pulsing skeleton placeholder instead of the content. */
13
+ loading?: boolean;
14
+ /** Optional trailing affordance (e.g., `<SelectIcon />`). Rendered in a padded slot on the right. */
15
+ trailingIcon?: ReactNode;
16
+ ref?: Ref<HTMLDivElement>;
17
+ }
18
+ export declare function Pill({ label, logoUri, onClick, disabled, loading, trailingIcon, className, ref, ...rest }: PillProps): import("react").JSX.Element;
19
+ export declare function PillSkeleton({ className, disabled, }: {
20
+ className?: string | undefined;
21
+ /** Match `Pill`'s dimmed display-variant background so the skeleton on a
22
+ * destination (disabled) pill doesn't look like an interactive pill. */
23
+ disabled?: boolean | undefined;
24
+ }): import("react").JSX.Element;
25
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Pill/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAiB,SAAS,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAK1E,MAAM,WAAW,SACf,SAAQ,IAAI,CAAC,cAAc,CAAC,cAAc,CAAC,EAAE,UAAU,CAAC;IACxD,mEAAmE;IACnE,KAAK,EAAE,MAAM,CAAA;IACb;2CACuC;IACvC,OAAO,CAAC,EAAE,MAAM,CAAA;IAChB,sGAAsG;IACtG,OAAO,CAAC,EAAE,MAAM,IAAI,CAAA;IACpB,4DAA4D;IAC5D,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB,oEAAoE;IACpE,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,qGAAqG;IACrG,YAAY,CAAC,EAAE,SAAS,CAAA;IACxB,GAAG,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC,CAAA;CAC1B;AAED,wBAAgB,IAAI,CAAC,EACnB,KAAK,EACL,OAAO,EACP,OAAO,EACP,QAAQ,EACR,OAAO,EACP,YAAY,EACZ,SAAS,EACT,GAAG,EACH,GAAG,IAAI,EACR,EAAE,SAAS,+BA0FX;AAED,wBAAgB,YAAY,CAAC,EAC3B,SAAS,EACT,QAAQ,GACT,EAAE;IACD,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC9B;4EACwE;IACxE,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;CAC/B,+BAiCA"}
@@ -0,0 +1,6 @@
1
+ import type { CSSProperties } from 'react';
2
+ export declare function PoweredBy({ className, style, }: {
3
+ className?: string;
4
+ style?: CSSProperties;
5
+ }): import("react").JSX.Element;
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/PoweredBy/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAA;AAK1C,wBAAgB,SAAS,CAAC,EACxB,SAAS,EACT,KAAK,GACN,EAAE;IACD,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,KAAK,CAAC,EAAE,aAAa,CAAA;CACtB,+BAiBA"}
@@ -0,0 +1,23 @@
1
+ interface RadialStop {
2
+ offset: number;
3
+ color: string;
4
+ opacity: number;
5
+ }
6
+ export interface RadialLayer {
7
+ id: string;
8
+ matrix: [number, number, number, number, number, number];
9
+ fillOpacity: number;
10
+ stops: RadialStop[];
11
+ }
12
+ interface RadialRect {
13
+ x: number;
14
+ y: number;
15
+ width: number;
16
+ height: number;
17
+ }
18
+ export declare function EllipticalRadial({ layer, rect, }: {
19
+ layer: RadialLayer;
20
+ rect: RadialRect;
21
+ }): import("react").JSX.Element;
22
+ export {};
23
+ //# sourceMappingURL=EllipticalRadial.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EllipticalRadial.d.ts","sourceRoot":"","sources":["../../../../src/components/Screen/EllipticalRadial.tsx"],"names":[],"mappings":"AAAA,UAAU,UAAU;IAClB,MAAM,EAAE,MAAM,CAAA;IACd,KAAK,EAAE,MAAM,CAAA;IACb,OAAO,EAAE,MAAM,CAAA;CAChB;AAED,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAA;IAGV,MAAM,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,CAAC,CAAA;IAExD,WAAW,EAAE,MAAM,CAAA;IACnB,KAAK,EAAE,UAAU,EAAE,CAAA;CACpB;AAGD,UAAU,UAAU;IAClB,CAAC,EAAE,MAAM,CAAA;IACT,CAAC,EAAE,MAAM,CAAA;IACT,KAAK,EAAE,MAAM,CAAA;IACb,MAAM,EAAE,MAAM,CAAA;CACf;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,KAAK,EACL,IAAI,GACL,EAAE;IACD,KAAK,EAAE,WAAW,CAAA;IAClB,IAAI,EAAE,UAAU,CAAA;CACjB,+BAkCA"}
@@ -0,0 +1,4 @@
1
+ export declare function MultiRadialBackground(): import("react").JSX.Element;
2
+ export declare function CardGlow(): import("react").JSX.Element;
3
+ export declare function WrapperBorder(): import("react").JSX.Element;
4
+ //# sourceMappingURL=MultiRadialBackground.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"MultiRadialBackground.d.ts","sourceRoot":"","sources":["../../../../src/components/Screen/MultiRadialBackground.tsx"],"names":[],"mappings":"AAYA,wBAAgB,qBAAqB,gCAkBpC;AAYD,wBAAgB,QAAQ,gCAiJvB;AAeD,wBAAgB,aAAa,gCAwH5B"}
@@ -0,0 +1,15 @@
1
+ import { type CSSProperties, type ReactNode } from 'react';
2
+ /** Element inside `Screen` that overlay/portal-based components (e.g. the QR
3
+ * sheet) should render into. Returns `null` outside a `Screen` — callers
4
+ * should guard on that and skip rendering. */
5
+ export declare function useScreenOverlayContainer(): HTMLDivElement | null;
6
+ export declare function Screen({ children, className, contentClassName, size, style, topNav, overlay, }: {
7
+ children: ReactNode;
8
+ className?: string | undefined;
9
+ contentClassName?: string | undefined;
10
+ size?: 'sm' | 'md' | 'lg' | undefined;
11
+ style?: CSSProperties | undefined;
12
+ topNav?: ReactNode;
13
+ overlay?: ReactNode;
14
+ }): import("react").JSX.Element;
15
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Screen/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,aAAa,EAElB,KAAK,SAAS,EAGf,MAAM,OAAO,CAAA;AAiBd;;8CAE8C;AAC9C,wBAAgB,yBAAyB,0BAExC;AAED,wBAAgB,MAAM,CAAC,EACrB,QAAQ,EACR,SAAS,EACT,gBAAgB,EAChB,IAAW,EACX,KAAK,EACL,MAAM,EACN,OAAO,GACR,EAAE;IACD,QAAQ,EAAE,SAAS,CAAA;IACnB,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IAC9B,gBAAgB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAA;IACrC,IAAI,CAAC,EAAE,IAAI,GAAG,IAAI,GAAG,IAAI,GAAG,SAAS,CAAA;IACrC,KAAK,CAAC,EAAE,aAAa,GAAG,SAAS,CAAA;IACjC,MAAM,CAAC,EAAE,SAAS,CAAA;IAClB,OAAO,CAAC,EAAE,SAAS,CAAA;CACpB,+BA0EA"}
@@ -0,0 +1,5 @@
1
+ export interface MessageDetailsProps {
2
+ details: Record<string, string>;
3
+ }
4
+ export declare function MessageDetails({ details }: MessageDetailsProps): import("react").JSX.Element;
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/Section/MessageDetails/index.tsx"],"names":[],"mappings":"AAIA,MAAM,WAAW,mBAAmB;IAClC,OAAO,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAA;CAChC;AAED,wBAAgB,cAAc,CAAC,EAAE,OAAO,EAAE,EAAE,mBAAmB,+BAU9D"}
@@ -0,0 +1,11 @@
1
+ import { type ReactNode } from 'react';
2
+ import { type IconName } from '../Icon';
3
+ export interface SectionProps {
4
+ title: string;
5
+ /** Optional leading icon (solarOrange tint). Omit for a plain title row. */
6
+ iconName?: IconName;
7
+ children: ReactNode;
8
+ collapsible?: boolean;
9
+ }
10
+ export declare function Section({ title, iconName, collapsible, children, }: SectionProps): import("react").JSX.Element;
11
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Section/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAY,MAAM,OAAO,CAAA;AAChD,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAI7C,MAAM,WAAW,YAAY;IAC3B,KAAK,EAAE,MAAM,CAAA;IACb,4EAA4E;IAC5E,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,QAAQ,EAAE,SAAS,CAAA;IACnB,WAAW,CAAC,EAAE,OAAO,CAAA;CACtB;AAED,wBAAgB,OAAO,CAAC,EACtB,KAAK,EACL,QAAQ,EACR,WAAW,EACX,QAAQ,GACT,EAAE,YAAY,+BA+Bd"}
@@ -0,0 +1,28 @@
1
+ import { Select as SelectPrimitive } from 'radix-ui';
2
+ import type { ComponentProps, Ref } from 'react';
3
+ export declare const Select: import("react").FC<SelectPrimitive.SelectProps>;
4
+ export declare const SelectGroup: import("react").ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & import("react").RefAttributes<HTMLDivElement>>;
5
+ export declare const SelectValue: import("react").ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & import("react").RefAttributes<HTMLSpanElement>>;
6
+ export declare const SelectItemText: import("react").ForwardRefExoticComponent<SelectPrimitive.SelectItemTextProps & import("react").RefAttributes<HTMLSpanElement>>;
7
+ /** Bare styled trigger. Use `asChild` to wrap a custom trigger like `Pill`. */
8
+ export declare function SelectTrigger({ ref, className, children, ...props }: ComponentProps<typeof SelectPrimitive.Trigger> & {
9
+ ref?: Ref<HTMLButtonElement>;
10
+ }): import("react").JSX.Element;
11
+ /** Trigger affordance slot. Defaults to a chevronDown icon. */
12
+ export declare function SelectIcon({ ref, className, children, ...props }: ComponentProps<typeof SelectPrimitive.Icon> & {
13
+ ref?: Ref<HTMLSpanElement>;
14
+ }): import("react").JSX.Element;
15
+ /** Portaled popper panel. Width defaults to `--radix-select-trigger-width`;
16
+ * override via inline `style={{ width }}`. */
17
+ export declare function SelectContent({ ref, className, children, position, sideOffset, style, ...props }: ComponentProps<typeof SelectPrimitive.Content> & {
18
+ ref?: Ref<HTMLDivElement>;
19
+ }): import("react").JSX.Element;
20
+ /** Option row. Children render as-is; set `textValue` for typeahead when
21
+ * children aren't plain text. */
22
+ export declare function SelectItem({ ref, className, children, ...props }: ComponentProps<typeof SelectPrimitive.Item> & {
23
+ ref?: Ref<HTMLDivElement>;
24
+ }): import("react").JSX.Element;
25
+ export declare function SelectSeparator({ ref, className, ...props }: ComponentProps<typeof SelectPrimitive.Separator> & {
26
+ ref?: Ref<HTMLDivElement>;
27
+ }): import("react").JSX.Element;
28
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Select/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,IAAI,eAAe,EAAE,MAAM,UAAU,CAAA;AACpD,OAAO,KAAK,EAAE,cAAc,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAMhD,eAAO,MAAM,MAAM,iDAAuB,CAAA;AAC1C,eAAO,MAAM,WAAW,6HAAwB,CAAA;AAChD,eAAO,MAAM,WAAW,8HAAwB,CAAA;AAChD,eAAO,MAAM,cAAc,iIAA2B,CAAA;AAEtD,+EAA+E;AAC/E,wBAAgB,aAAa,CAAC,EAC5B,GAAG,EACH,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAAG;IAClD,GAAG,CAAC,EAAE,GAAG,CAAC,iBAAiB,CAAC,CAAA;CAC7B,+BAmBA;AAED,+DAA+D;AAC/D,wBAAgB,UAAU,CAAC,EACzB,GAAG,EACH,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAAG;IAC/C,GAAG,CAAC,EAAE,GAAG,CAAC,eAAe,CAAC,CAAA;CAC3B,+BAYA;AAED;8CAC8C;AAC9C,wBAAgB,aAAa,CAAC,EAC5B,GAAG,EACH,SAAS,EACT,QAAQ,EACR,QAAmB,EACnB,UAAc,EACd,KAAK,EACL,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,eAAe,CAAC,OAAO,CAAC,GAAG;IAClD,GAAG,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC,CAAA;CAC1B,+BAiCA;AAED;iCACiC;AACjC,wBAAgB,UAAU,CAAC,EACzB,GAAG,EACH,SAAS,EACT,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,eAAe,CAAC,IAAI,CAAC,GAAG;IAC/C,GAAG,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC,CAAA;CAC1B,+BAiBA;AAED,wBAAgB,eAAe,CAAC,EAC9B,GAAG,EACH,SAAS,EACT,GAAG,KAAK,EACT,EAAE,cAAc,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,GAAG;IACpD,GAAG,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC,CAAA;CAC1B,+BAQA"}
@@ -2,5 +2,5 @@ export interface SwitchProps {
2
2
  value?: boolean;
3
3
  onValueChange?: () => void;
4
4
  }
5
- export declare function Switch({ value, onValueChange }: SwitchProps): import("react/jsx-runtime").JSX.Element;
5
+ export declare function Switch({ value, onValueChange }: SwitchProps): import("react").JSX.Element;
6
6
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Switch/index.tsx"],"names":[],"mappings":"AAIA,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;CAC3B;AAED,wBAAgB,MAAM,CAAC,EAAE,KAAK,EAAE,aAAa,EAAE,EAAE,WAAW,2CAyB3D"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Switch/index.tsx"],"names":[],"mappings":"AAIA,MAAM,WAAW,WAAW;IAC1B,KAAK,CAAC,EAAE,OAAO,CAAA;IACf,aAAa,CAAC,EAAE,MAAM,IAAI,CAAA;CAC3B;AAED,wBAAgB,MAAM,CAAC,EAAE,KAAK,EAAE,aAAa,EAAE,EAAE,WAAW,+BAyB3D"}
@@ -4,5 +4,5 @@ export type TextProps = ({
4
4
  } & HTMLAttributes<HTMLElement>) | ({
5
5
  as: 'a';
6
6
  } & AnchorHTMLAttributes<HTMLAnchorElement>);
7
- export declare function Text({ as: Tag, className, ...props }: TextProps): import("react/jsx-runtime").JSX.Element;
7
+ export declare function Text({ as: Tag, className, ...props }: TextProps): import("react").JSX.Element;
8
8
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Text/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAIjE,MAAM,MAAM,SAAS,GACjB,CAAC;IAAE,EAAE,CAAC,EAAE,GAAG,GAAG,MAAM,GAAG,OAAO,CAAA;CAAE,GAAG,cAAc,CAAC,WAAW,CAAC,CAAC,GAC/D,CAAC;IAAE,EAAE,EAAE,GAAG,CAAA;CAAE,GAAG,oBAAoB,CAAC,iBAAiB,CAAC,CAAC,CAAA;AAE3D,wBAAgB,IAAI,CAAC,EAAE,EAAE,EAAE,GAAS,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,SAAS,2CAWrE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Text/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAIjE,MAAM,MAAM,SAAS,GACjB,CAAC;IAAE,EAAE,CAAC,EAAE,GAAG,GAAG,MAAM,GAAG,OAAO,CAAA;CAAE,GAAG,cAAc,CAAC,WAAW,CAAC,CAAC,GAC/D,CAAC;IAAE,EAAE,EAAE,GAAG,CAAA;CAAE,GAAG,oBAAoB,CAAC,iBAAiB,CAAC,CAAC,CAAA;AAE3D,wBAAgB,IAAI,CAAC,EAAE,EAAE,EAAE,GAAS,EAAE,SAAS,EAAE,GAAG,KAAK,EAAE,EAAE,SAAS,+BAWrE"}
@@ -0,0 +1,33 @@
1
+ import type { ButtonHTMLAttributes, HTMLAttributes } from 'react';
2
+ import { type IconName } from '../Icon';
3
+ export type TokenListItemIconVariant = 'token' | 'network';
4
+ interface CommonProps {
5
+ /** Primary text — usually a token symbol like "ETH". */
6
+ symbol: string;
7
+ /** Subtitle text under the symbol (e.g. "3 networks" or "Arbitrum"). */
8
+ subtitle?: string;
9
+ /** Kit `Icon` name for the main slot (preferred for known chains/tokens). */
10
+ iconName?: IconName;
11
+ /** URL of the main icon image (token logo). Used when `iconName` is absent. */
12
+ imageSource?: string;
13
+ /** Kit `Icon` name rendered inline before the subtitle text (e.g. chain logo). */
14
+ subtitleIcon?: IconName;
15
+ /** Right-aligned value (e.g. "$0.00"). */
16
+ value?: string;
17
+ /** Right-aligned percentage change. Coloured green by default, red when
18
+ * the string starts with a leading "-". */
19
+ change?: string;
20
+ /** Shape of the main icon. `'token'` = 44x44 rounded square (default),
21
+ * `'network'` = 36x36 circle. */
22
+ iconVariant?: TokenListItemIconVariant;
23
+ /** Render a skeleton placeholder instead of the content. */
24
+ loading?: boolean;
25
+ }
26
+ export type TokenListItemProps = CommonProps & (({
27
+ onClick: ButtonHTMLAttributes<HTMLButtonElement>['onClick'];
28
+ } & Omit<ButtonHTMLAttributes<HTMLButtonElement>, keyof CommonProps | 'children'>) | ({
29
+ onClick?: undefined;
30
+ } & Omit<HTMLAttributes<HTMLDivElement>, keyof CommonProps | 'children'>));
31
+ export declare function TokenListItem({ symbol, subtitle, iconName, imageSource, subtitleIcon, value, change, iconVariant, loading, className, onClick, ...rest }: TokenListItemProps): import("react").JSX.Element;
32
+ export {};
33
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/TokenListItem/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,cAAc,EAAE,MAAM,OAAO,CAAA;AAGjE,OAAO,EAAQ,KAAK,QAAQ,EAAE,MAAM,SAAS,CAAA;AAG7C,MAAM,MAAM,wBAAwB,GAAG,OAAO,GAAG,SAAS,CAAA;AAE1D,UAAU,WAAW;IACnB,wDAAwD;IACxD,MAAM,EAAE,MAAM,CAAA;IACd,wEAAwE;IACxE,QAAQ,CAAC,EAAE,MAAM,CAAA;IACjB,6EAA6E;IAC7E,QAAQ,CAAC,EAAE,QAAQ,CAAA;IACnB,+EAA+E;IAC/E,WAAW,CAAC,EAAE,MAAM,CAAA;IACpB,kFAAkF;IAClF,YAAY,CAAC,EAAE,QAAQ,CAAA;IACvB,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,CAAA;IACd;+CAC2C;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAA;IACf;qCACiC;IACjC,WAAW,CAAC,EAAE,wBAAwB,CAAA;IACtC,4DAA4D;IAC5D,OAAO,CAAC,EAAE,OAAO,CAAA;CAClB;AAED,MAAM,MAAM,kBAAkB,GAAG,WAAW,GAC1C,CACI,CAAC;IAAE,OAAO,EAAE,oBAAoB,CAAC,iBAAiB,CAAC,CAAC,SAAS,CAAC,CAAA;CAAE,GAAG,IAAI,CACrE,oBAAoB,CAAC,iBAAiB,CAAC,EACvC,MAAM,WAAW,GAAG,UAAU,CAC/B,CAAC,GACF,CAAC;IAAE,OAAO,CAAC,EAAE,SAAS,CAAA;CAAE,GAAG,IAAI,CAC7B,cAAc,CAAC,cAAc,CAAC,EAC9B,MAAM,WAAW,GAAG,UAAU,CAC/B,CAAC,CACL,CAAA;AA6DH,wBAAgB,aAAa,CAAC,EAC5B,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,KAAK,EACL,MAAM,EACN,WAAqB,EACrB,OAAe,EACf,SAAS,EACT,OAAO,EACP,GAAG,IAAI,EACR,EAAE,kBAAkB,+BA4EpB"}
@@ -0,0 +1,43 @@
1
+ import { Tooltip as TooltipPrimitive } from 'radix-ui';
2
+ import type { ComponentProps, ReactNode, Ref } from 'react';
3
+ /**
4
+ * Floating tooltip wrapping the Radix primitive with our token palette.
5
+ *
6
+ * The primitive is unopinionated about presentation — this file adds:
7
+ * - default styling (dark ink bg, white text, 8px offset, subtle shadow)
8
+ * - a bundled `Provider` so the common case (a single tooltip in a row)
9
+ * doesn't require the consumer to remember to wrap the tree
10
+ * - a Portal render so tooltips escape overflow-hidden ancestors
11
+ *
12
+ * For dense trees where mount overhead matters, use `TooltipProvider` at
13
+ * the app root and drop the internal Provider by importing `TooltipRoot`
14
+ * / `TooltipTrigger` / `TooltipContent` directly.
15
+ */
16
+ export declare const TooltipProvider: import("react").FC<TooltipPrimitive.TooltipProviderProps>;
17
+ export declare const TooltipRoot: import("react").FC<TooltipPrimitive.TooltipProps>;
18
+ export declare const TooltipTrigger: import("react").ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & import("react").RefAttributes<HTMLButtonElement>>;
19
+ export declare const TooltipPortal: import("react").FC<TooltipPrimitive.TooltipPortalProps>;
20
+ export interface TooltipContentProps extends ComponentProps<typeof TooltipPrimitive.Content> {
21
+ ref?: Ref<HTMLDivElement>;
22
+ }
23
+ /** Styled content surface — dark chip, ~11.5px semibold copy, arrow-less. */
24
+ export declare function TooltipContent({ ref, className, sideOffset, ...props }: TooltipContentProps): import("react").JSX.Element;
25
+ export interface TooltipProps {
26
+ /** Trigger element — receives Radix's ref + event handlers via `asChild`. */
27
+ children: ReactNode;
28
+ /** Tooltip copy. When omitted, the trigger renders without a tooltip. */
29
+ content?: ReactNode;
30
+ /** Delay before the tooltip appears on hover. Defaults to 200ms. */
31
+ delayDuration?: number;
32
+ /** Side to render on. Defaults to `top`. */
33
+ side?: ComponentProps<typeof TooltipPrimitive.Content>['side'];
34
+ /** Alignment along `side`. Defaults to `center`. */
35
+ align?: ComponentProps<typeof TooltipPrimitive.Content>['align'];
36
+ }
37
+ /**
38
+ * Opinionated one-shot tooltip. Wraps its child in a Radix Trigger and mounts
39
+ * a portalled content surface; no-op when `content` is empty so callers can
40
+ * pass an optional string without conditional rendering.
41
+ */
42
+ export declare function Tooltip({ children, content, delayDuration, side, align, }: TooltipProps): import("react").JSX.Element;
43
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/Tooltip/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,UAAU,CAAA;AACtD,OAAO,KAAK,EAAE,cAAc,EAAE,SAAS,EAAE,GAAG,EAAE,MAAM,OAAO,CAAA;AAI3D;;;;;;;;;;;;GAYG;AAEH,eAAO,MAAM,eAAe,2DAA4B,CAAA;AACxD,eAAO,MAAM,WAAW,mDAAwB,CAAA;AAChD,eAAO,MAAM,cAAc,oIAA2B,CAAA;AACtD,eAAO,MAAM,aAAa,yDAA0B,CAAA;AAEpD,MAAM,WAAW,mBACf,SAAQ,cAAc,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC;IACvD,GAAG,CAAC,EAAE,GAAG,CAAC,cAAc,CAAC,CAAA;CAC1B;AAED,6EAA6E;AAC7E,wBAAgB,cAAc,CAAC,EAC7B,GAAG,EACH,SAAS,EACT,UAAc,EACd,GAAG,KAAK,EACT,EAAE,mBAAmB,+BAkBrB;AAED,MAAM,WAAW,YAAY;IAC3B,6EAA6E;IAC7E,QAAQ,EAAE,SAAS,CAAA;IACnB,yEAAyE;IACzE,OAAO,CAAC,EAAE,SAAS,CAAA;IACnB,oEAAoE;IACpE,aAAa,CAAC,EAAE,MAAM,CAAA;IACtB,4CAA4C;IAC5C,IAAI,CAAC,EAAE,cAAc,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAA;IAC9D,oDAAoD;IACpD,KAAK,CAAC,EAAE,cAAc,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,OAAO,CAAC,CAAA;CACjE;AAED;;;;GAIG;AACH,wBAAgB,OAAO,CAAC,EACtB,QAAQ,EACR,OAAO,EACP,aAAmB,EACnB,IAAY,EACZ,KAAgB,GACjB,EAAE,YAAY,+BAcd"}
@@ -0,0 +1,20 @@
1
+ import type { ReactNode } from 'react';
2
+ import type { IconName } from '../Icon';
3
+ export declare const TOP_NAV_HEIGHT = 52;
4
+ export interface TopNavProps {
5
+ /** Handler for the left icon button. When omitted, the left slot renders
6
+ * an empty spacer so the title/logo stays centred. */
7
+ onLeftButtonClick?: () => void;
8
+ /** Handler for the right icon button. When omitted, the right slot
9
+ * renders an empty spacer. */
10
+ onRightButtonClick?: () => void;
11
+ /** Icon rendered in the left slot. Defaults to `'chevronLeft'` (back). */
12
+ leftButtonIcon?: IconName;
13
+ /** Icon rendered in the right slot. Defaults to `'x'` (close). */
14
+ rightButtonIcon?: IconName;
15
+ title?: string;
16
+ logo?: ReactNode;
17
+ className?: string;
18
+ }
19
+ export declare function TopNav({ onLeftButtonClick, onRightButtonClick, leftButtonIcon, rightButtonIcon, title, logo, className, }: TopNavProps): import("react").JSX.Element;
20
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/TopNav/index.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAA;AAEtC,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAA;AAIvC,eAAO,MAAM,cAAc,KAAK,CAAA;AAEhC,MAAM,WAAW,WAAW;IAC1B;0DACsD;IACtD,iBAAiB,CAAC,EAAE,MAAM,IAAI,CAAA;IAC9B;kCAC8B;IAC9B,kBAAkB,CAAC,EAAE,MAAM,IAAI,CAAA;IAC/B,0EAA0E;IAC1E,cAAc,CAAC,EAAE,QAAQ,CAAA;IACzB,kEAAkE;IAClE,eAAe,CAAC,EAAE,QAAQ,CAAA;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,IAAI,CAAC,EAAE,SAAS,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;AAED,wBAAgB,MAAM,CAAC,EACrB,iBAAiB,EACjB,kBAAkB,EAClB,cAA8B,EAC9B,eAAqB,EACrB,KAAK,EACL,IAAI,EACJ,SAAS,GACV,EAAE,WAAW,+BAkCb"}
@@ -3,5 +3,5 @@ export interface WrappedPressableProps extends ButtonHTMLAttributes<HTMLButtonEl
3
3
  className?: string;
4
4
  children: ReactNode;
5
5
  }
6
- export declare function WrappedPressable({ className, children, onMouseEnter, onMouseLeave, ...rest }: WrappedPressableProps): import("react/jsx-runtime").JSX.Element;
6
+ export declare function WrappedPressable({ className, children, onMouseEnter, onMouseLeave, ...rest }: WrappedPressableProps): import("react").JSX.Element;
7
7
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/WrappedPressable/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,KAAK,SAAS,EAAY,MAAM,OAAO,CAAA;AAK3E,MAAM,WAAW,qBACf,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC/C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,SAAS,EACT,QAAQ,EACR,YAAY,EACZ,YAAY,EACZ,GAAG,IAAI,EACR,EAAE,qBAAqB,2CA4BvB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/WrappedPressable/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,oBAAoB,EAAE,KAAK,SAAS,EAAY,MAAM,OAAO,CAAA;AAK3E,MAAM,WAAW,qBACf,SAAQ,oBAAoB,CAAC,iBAAiB,CAAC;IAC/C,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,QAAQ,EAAE,SAAS,CAAA;CACpB;AAED,wBAAgB,gBAAgB,CAAC,EAC/B,SAAS,EACT,QAAQ,EACR,YAAY,EACZ,YAAY,EACZ,GAAG,IAAI,EACR,EAAE,qBAAqB,+BA4BvB"}
@@ -1,7 +1,8 @@
1
- import type { HTMLAttributes, PropsWithChildren } from 'react';
1
+ import type { HTMLAttributes, PropsWithChildren, Ref } from 'react';
2
2
  export type WrapperVariant = 'ghost' | 'soft' | 'solid';
3
3
  export interface WrapperProps extends HTMLAttributes<HTMLDivElement> {
4
4
  variant?: WrapperVariant;
5
+ ref?: Ref<HTMLDivElement> | undefined;
5
6
  }
6
- export declare function Wrapper({ className, children, variant, ...rest }: PropsWithChildren<WrapperProps>): import("react/jsx-runtime").JSX.Element;
7
+ export declare function Wrapper({ className, children, variant, ref, ...rest }: PropsWithChildren<WrapperProps>): import("react").JSX.Element;
7
8
  //# sourceMappingURL=index.d.ts.map