@hyperlane-xyz/widgets 26.0.0 → 27.0.0
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.
|
@@ -6,7 +6,17 @@ interface Props {
|
|
|
6
6
|
timings: StageTimings;
|
|
7
7
|
timestampSent?: number;
|
|
8
8
|
hideDescriptions?: boolean;
|
|
9
|
+
/** 'above' (default): icons float above the bar. 'inline': icons render inside the bar. */
|
|
10
|
+
iconPosition?: 'above' | 'inline';
|
|
11
|
+
/** Additional CSS class applied to each bar segment (useful for overriding the bar color). */
|
|
12
|
+
barClassName?: string;
|
|
13
|
+
/** Override the color of the chevron arrows between stages. */
|
|
14
|
+
chevronColor?: string;
|
|
15
|
+
/** Override the color of the stage icons. Defaults to white. */
|
|
16
|
+
iconColor?: string;
|
|
17
|
+
/** Show tooltips on hover over each stage bar. */
|
|
18
|
+
showTooltips?: boolean;
|
|
9
19
|
}
|
|
10
|
-
export declare function MessageTimeline({ status, stage: _stage, timings, timestampSent, hideDescriptions, }: Props): React.JSX.Element;
|
|
20
|
+
export declare function MessageTimeline({ status, stage: _stage, timings, timestampSent, hideDescriptions, iconPosition, barClassName, chevronColor, iconColor, showTooltips, }: Props): React.JSX.Element;
|
|
11
21
|
export {};
|
|
12
22
|
//# sourceMappingURL=MessageTimeline.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MessageTimeline.d.ts","sourceRoot":"","sources":["../../src/messages/MessageTimeline.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"MessageTimeline.d.ts","sourceRoot":"","sources":["../../src/messages/MessageTimeline.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAW1B,OAAO,EAAE,aAAa,EAAE,YAAY,IAAI,KAAK,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAUhF,UAAU,KAAK;IACb,MAAM,EAAE,aAAa,CAAC;IACtB,KAAK,EAAE,KAAK,CAAC;IACb,OAAO,EAAE,YAAY,CAAC;IACtB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B,2FAA2F;IAC3F,YAAY,CAAC,EAAE,OAAO,GAAG,QAAQ,CAAC;IAClC,8FAA8F;IAC9F,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,+DAA+D;IAC/D,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,gEAAgE;IAChE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,kDAAkD;IAClD,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAED,wBAAgB,eAAe,CAAC,EAC9B,MAAM,EACN,KAAK,EAAE,MAAM,EACb,OAAO,EACP,aAAa,EACb,gBAAgB,EAChB,YAAsB,EACtB,YAAY,EACZ,YAAY,EACZ,SAA8B,EAC9B,YAAY,GACb,EAAE,KAAK,qBAoLP"}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import { Tooltip as ReactTooltip } from 'react-tooltip';
|
|
2
3
|
import { ColorPalette } from '../color.js';
|
|
3
4
|
import { AirplaneIcon } from '../icons/Airplane.js';
|
|
4
5
|
import { EnvelopeIcon } from '../icons/Envelope.js';
|
|
@@ -6,69 +7,105 @@ import { LockIcon } from '../icons/Lock.js';
|
|
|
6
7
|
import { ShieldIcon } from '../icons/Shield.js';
|
|
7
8
|
import { WideChevronIcon } from '../icons/WideChevron.js';
|
|
8
9
|
import { MessageStatus, MessageStage as Stage } from './types.js';
|
|
9
|
-
|
|
10
|
+
const STAGE_TOOLTIPS = {
|
|
11
|
+
[Stage.Preparing]: 'Preparing transaction',
|
|
12
|
+
[Stage.Sent]: 'Waiting for origin transaction',
|
|
13
|
+
[Stage.Finalized]: 'Origin transaction has sufficient confirmations',
|
|
14
|
+
[Stage.Validated]: 'Validators have signed the message bundle',
|
|
15
|
+
[Stage.Relayed]: 'Destination transaction has been confirmed',
|
|
16
|
+
};
|
|
17
|
+
export function MessageTimeline({ status, stage: _stage, timings, timestampSent, hideDescriptions, iconPosition = 'above', barClassName, chevronColor, iconColor = ColorPalette.White, showTooltips, }) {
|
|
10
18
|
// Ignore stage value if status shows as delivered
|
|
11
19
|
const stage = status === MessageStatus.Delivered ? Stage.Relayed : _stage;
|
|
20
|
+
const isInline = iconPosition === 'inline';
|
|
12
21
|
const timeSent = timestampSent ? new Date(timestampSent) : null;
|
|
13
22
|
const timeSentStr = timeSent
|
|
14
23
|
? `${timeSent.toLocaleDateString()} ${timeSent.toLocaleTimeString()}`
|
|
15
24
|
: null;
|
|
16
|
-
return (React.createElement("div", { className:
|
|
25
|
+
return (React.createElement("div", { className: isInline
|
|
26
|
+
? 'htw-pb-1 htw-flex htw-w-full'
|
|
27
|
+
: 'htw-pt-14 htw-pb-1 htw-flex htw-w-full' },
|
|
17
28
|
React.createElement("div", { className: styles.stageContainer },
|
|
18
|
-
React.createElement("div", { className: `${styles.stageBar} htw-rounded-l ${getStageOpacityClass(Stage.Sent, stage, status)}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
29
|
+
React.createElement("div", { className: `${styles.stageBar} ${barClassName ?? ''} htw-rounded-l ${getStageOpacityClass(Stage.Sent, stage, status)}`, ...(showTooltips
|
|
30
|
+
? {
|
|
31
|
+
'data-tooltip-id': 'timeline-tooltip',
|
|
32
|
+
'data-tooltip-content': STAGE_TOOLTIPS[Stage.Sent],
|
|
33
|
+
}
|
|
34
|
+
: {}) },
|
|
35
|
+
isInline ? (React.createElement(InlineIcon, { Icon: AirplaneIcon, color: iconColor })) : (React.createElement(React.Fragment, null,
|
|
36
|
+
React.createElement("div", { className: styles.stageHole }),
|
|
37
|
+
React.createElement("div", { className: styles.stageIconContainer },
|
|
38
|
+
React.createElement(StageIcon, { Icon: AirplaneIcon }),
|
|
39
|
+
React.createElement("div", { className: styles.stageIconCircle })))),
|
|
40
|
+
React.createElement(Chevron, { side: "right", color: chevronColor })),
|
|
24
41
|
React.createElement("h4", { className: styles.stageHeader }, getStageHeader(Stage.Sent, stage, timings, status)),
|
|
25
42
|
!hideDescriptions && (React.createElement("p", { className: styles.stageDesc }, timeSentStr
|
|
26
43
|
? `Origin transaction sent at ${timeSentStr}`
|
|
27
44
|
: 'Waiting for origin transaction'))),
|
|
28
|
-
React.createElement("div", { className: styles.stageSpacer }),
|
|
45
|
+
React.createElement("div", { className: isInline ? styles.stageSpacerInline : styles.stageSpacer }),
|
|
29
46
|
React.createElement("div", { className: styles.stageContainer },
|
|
30
|
-
React.createElement("div", { className: `${styles.stageBar} ${getStageOpacityClass(Stage.Finalized, stage, status)}
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
React.createElement(
|
|
47
|
+
React.createElement("div", { className: `${styles.stageBar} ${barClassName ?? ''} ${getStageOpacityClass(Stage.Finalized, stage, status)}`, ...(showTooltips
|
|
48
|
+
? {
|
|
49
|
+
'data-tooltip-id': 'timeline-tooltip',
|
|
50
|
+
'data-tooltip-content': STAGE_TOOLTIPS[Stage.Finalized],
|
|
51
|
+
}
|
|
52
|
+
: {}) },
|
|
53
|
+
isInline ? (React.createElement(InlineIcon, { Icon: LockIcon, size: 14, color: iconColor, isMiddle: true })) : (React.createElement(React.Fragment, null,
|
|
54
|
+
React.createElement("div", { className: styles.stageHole }),
|
|
55
|
+
React.createElement("div", { className: styles.stageIconContainer },
|
|
56
|
+
React.createElement(StageIcon, { Icon: LockIcon, size: 14 }),
|
|
57
|
+
React.createElement("div", { className: styles.stageIconCircle })))),
|
|
58
|
+
React.createElement(Chevron, { side: "left", color: ColorPalette.White }),
|
|
59
|
+
React.createElement(Chevron, { side: "right", color: chevronColor })),
|
|
37
60
|
React.createElement("h4", { className: styles.stageHeader }, getStageHeader(Stage.Finalized, stage, timings, status)),
|
|
38
61
|
!hideDescriptions && (React.createElement("p", { className: styles.stageDesc }, "Origin transaction has sufficient confirmations"))),
|
|
39
|
-
React.createElement("div", { className: styles.stageSpacer }),
|
|
62
|
+
React.createElement("div", { className: isInline ? styles.stageSpacerInline : styles.stageSpacer }),
|
|
40
63
|
React.createElement("div", { className: styles.stageContainer },
|
|
41
|
-
React.createElement("div", { className: `${styles.stageBar} ${getStageOpacityClass(Stage.Validated, stage, status)}
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
React.createElement(
|
|
64
|
+
React.createElement("div", { className: `${styles.stageBar} ${barClassName ?? ''} ${getStageOpacityClass(Stage.Validated, stage, status)}`, ...(showTooltips
|
|
65
|
+
? {
|
|
66
|
+
'data-tooltip-id': 'timeline-tooltip',
|
|
67
|
+
'data-tooltip-content': STAGE_TOOLTIPS[Stage.Validated],
|
|
68
|
+
}
|
|
69
|
+
: {}) },
|
|
70
|
+
isInline ? (React.createElement(InlineIcon, { Icon: ShieldIcon, color: iconColor, isMiddle: true })) : (React.createElement(React.Fragment, null,
|
|
71
|
+
React.createElement("div", { className: styles.stageHole }),
|
|
72
|
+
React.createElement("div", { className: styles.stageIconContainer },
|
|
73
|
+
React.createElement(StageIcon, { Icon: ShieldIcon }),
|
|
74
|
+
React.createElement("div", { className: styles.stageIconCircle })))),
|
|
75
|
+
React.createElement(Chevron, { side: "left", color: ColorPalette.White }),
|
|
76
|
+
React.createElement(Chevron, { side: "right", color: chevronColor })),
|
|
48
77
|
React.createElement("h4", { className: styles.stageHeader }, getStageHeader(Stage.Validated, stage, timings, status)),
|
|
49
78
|
!hideDescriptions && (React.createElement("p", { className: styles.stageDesc }, "Validators have signed the message bundle"))),
|
|
50
|
-
React.createElement("div", { className: styles.stageSpacer }),
|
|
79
|
+
React.createElement("div", { className: isInline ? styles.stageSpacerInline : styles.stageSpacer }),
|
|
51
80
|
React.createElement("div", { className: styles.stageContainer },
|
|
52
|
-
React.createElement("div", { className: `${styles.stageBar} htw-rounded-r ${getStageOpacityClass(Stage.Relayed, stage, status)}
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
81
|
+
React.createElement("div", { className: `${styles.stageBar} ${barClassName ?? ''} htw-rounded-r ${getStageOpacityClass(Stage.Relayed, stage, status)}`, ...(showTooltips
|
|
82
|
+
? {
|
|
83
|
+
'data-tooltip-id': 'timeline-tooltip',
|
|
84
|
+
'data-tooltip-content': STAGE_TOOLTIPS[Stage.Relayed],
|
|
85
|
+
}
|
|
86
|
+
: {}) },
|
|
87
|
+
isInline ? (React.createElement(InlineIcon, { Icon: EnvelopeIcon, color: iconColor })) : (React.createElement(React.Fragment, null,
|
|
88
|
+
React.createElement("div", { className: styles.stageHole }),
|
|
89
|
+
React.createElement("div", { className: styles.stageIconContainer },
|
|
90
|
+
React.createElement(StageIcon, { Icon: EnvelopeIcon }),
|
|
91
|
+
React.createElement("div", { className: styles.stageIconCircle })))),
|
|
92
|
+
React.createElement(Chevron, { side: "left", color: ColorPalette.White })),
|
|
58
93
|
React.createElement("h4", { className: styles.stageHeader }, getStageHeader(Stage.Relayed, stage, timings, status)),
|
|
59
|
-
!hideDescriptions && (React.createElement("p", { className: styles.stageDesc }, "Destination transaction has been confirmed")))
|
|
94
|
+
!hideDescriptions && (React.createElement("p", { className: styles.stageDesc }, "Destination transaction has been confirmed"))),
|
|
95
|
+
showTooltips && (React.createElement(ReactTooltip, { id: "timeline-tooltip", positionStrategy: "fixed" }))));
|
|
60
96
|
}
|
|
61
97
|
function StageIcon({ Icon, size }) {
|
|
62
98
|
return (React.createElement("div", { className: "htw-h-9 htw-w-9 htw-flex htw-items-center htw-justify-center htw-rounded-full htw-bg-blue-500" },
|
|
63
99
|
React.createElement(Icon, { width: size ?? 14, height: size ?? 14, alt: "", color: ColorPalette.White })));
|
|
64
100
|
}
|
|
65
|
-
function
|
|
66
|
-
return (React.createElement("div", { className:
|
|
67
|
-
React.createElement(
|
|
101
|
+
function InlineIcon({ Icon, size, color = ColorPalette.White, isMiddle, }) {
|
|
102
|
+
return (React.createElement("div", { className: `htw-flex htw-items-center htw-justify-center htw-z-10${isMiddle ? ' htw-pl-2' : ''}` },
|
|
103
|
+
React.createElement(Icon, { width: size ?? 14, height: size ?? 14, color: color })));
|
|
68
104
|
}
|
|
69
|
-
function
|
|
70
|
-
|
|
71
|
-
|
|
105
|
+
function Chevron({ side, color = ColorPalette.Blue, }) {
|
|
106
|
+
const posClass = side === 'left' ? 'htw--left-3' : 'htw--right-3';
|
|
107
|
+
return (React.createElement("div", { className: `htw-absolute ${posClass} htw-top-0 htw-h-6` },
|
|
108
|
+
React.createElement(WideChevronIcon, { direction: "e", height: "100%", width: "auto", color: color, style: { display: 'block' } })));
|
|
72
109
|
}
|
|
73
110
|
function getStageHeader(targetStage, currentStage, timings, status) {
|
|
74
111
|
let label = '';
|
|
@@ -107,6 +144,7 @@ function getStageOpacityClass(targetStage, currentStage, messageStatus) {
|
|
|
107
144
|
const styles = {
|
|
108
145
|
stageContainer: 'htw-flex-1 htw-flex htw-flex-col htw-items-center',
|
|
109
146
|
stageSpacer: 'htw-flex-0 htw-w-1 xs:htw-w-2 sm:htw-w-3',
|
|
147
|
+
stageSpacerInline: 'htw-flex-0 htw-w-3',
|
|
110
148
|
stageBar: 'htw-w-full htw-h-6 htw-flex htw-items-center htw-justify-center htw-bg-blue-500 htw-relative',
|
|
111
149
|
stageHole: 'htw-w-3 htw-h-3 htw-rounded-full htw-bg-white',
|
|
112
150
|
stageIconContainer: 'htw-absolute htw--top-12 htw-flex htw-flex-col htw-items-center',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MessageTimeline.js","sourceRoot":"","sources":["../../src/messages/MessageTimeline.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;AACpD,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAC5C,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,MAAM,yBAAyB,CAAC;AAE1D,OAAO,EAAE,aAAa,EAAE,YAAY,IAAI,KAAK,EAAgB,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"MessageTimeline.js","sourceRoot":"","sources":["../../src/messages/MessageTimeline.tsx"],"names":[],"mappings":"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"}
|
package/dist/styles.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(39,100,193,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(39,100,193,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Helvetica,Arial,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.htw-fixed{position:fixed}.htw-absolute{position:absolute}.htw-relative{position:relative}.htw-inset-0{inset:0}.htw--left-3{left:-.75rem}.htw--right-3{right:-.75rem}.htw--top-12{top:-3rem}.htw-left-4{left:1rem}.htw-right-1{right:.25rem}.htw-right-3{right:.75rem}.htw-right-3\.5{right:.875rem}.htw-right-4{right:1rem}.htw-right-6{right:1.5rem}.htw-top-0{top:0}.htw-top-1\/2{top:50%}.htw-top-1\/3{top:33.333333%}.htw-top-2{top:.5rem}.htw-top-3{top:.75rem}.htw-z-20{z-index:20}.htw-z-30{z-index:30}.-htw-mx-2{margin-left:-.5rem;margin-right:-.5rem}.htw-mx-3{margin-left:.75rem;margin-right:.75rem}.htw-my-8{margin-top:2rem;margin-bottom:2rem}.htw-mb-1\.5{margin-bottom:.375rem}.htw-ml-2{margin-left:.5rem}.htw-ml-3{margin-left:.75rem}.htw-mr-0\.5{margin-right:.125rem}.htw-mt-0\.5{margin-top:.125rem}.htw-mt-1{margin-top:.25rem}.htw-mt-2\.5{margin-top:.625rem}.htw-flex{display:flex}.htw-inline-flex{display:inline-flex}.htw-grid{display:grid}.htw-hidden{display:none}.htw-h-12{height:3rem}.htw-h-3{height:.75rem}.htw-h-4{height:1rem}.htw-h-6{height:1.5rem}.htw-h-7{height:1.75rem}.htw-h-9{height:2.25rem}.htw-h-full{height:100%}.htw-h-screen{height:100vh}.htw-max-h-\[90vh\]{max-height:90vh}.htw-min-h-72{min-height:18rem}.htw-min-h-full{min-height:100%}.htw-w-0\.5{width:.125rem}.htw-w-1{width:.25rem}.htw-w-3{width:.75rem}.htw-w-36{width:9rem}.htw-w-64{width:16rem}.htw-w-9{width:2.25rem}.htw-w-full{width:100%}.htw-w-screen{width:100vw}.htw-max-w-2xl{max-width:42rem}.htw-max-w-\[calc\(100\%-10px\)\]{max-width:calc(100% - 10px)}.htw-max-w-sm{max-width:24rem}.htw-flex-1{flex:1 1 0%}.htw-shrink{flex-shrink:1}.htw-shrink-0{flex-shrink:0}.-htw-translate-y-1\/2,.htw--translate-y-1\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-htw-rotate-90,.htw--rotate-90{--tw-rotate:-90deg}.-htw-rotate-90,.htw--rotate-90,.htw-rotate-180{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.htw-rotate-180{--tw-rotate:180deg}.htw-rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes htw-pulse{50%{opacity:.5}}.htw-animate-pulse-slow{animation:htw-pulse 3s cubic-bezier(.4,0,.6,1) infinite}@keyframes htw-spin{to{transform:rotate(1turn)}}.htw-animate-spin{animation:htw-spin 1s linear infinite}.htw-cursor-pointer{cursor:pointer}.htw-resize{resize:both}.htw-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.htw-grid-cols-\[1fr\,1fr\,auto\]{grid-template-columns:1fr 1fr auto}.htw-flex-col{flex-direction:column}.htw-items-start{align-items:flex-start}.htw-items-center{align-items:center}.htw-items-stretch{align-items:stretch}.htw-justify-center{justify-content:center}.htw-justify-between{justify-content:space-between}.htw-gap-1{gap:.25rem}.htw-gap-1\.5{gap:.375rem}.htw-gap-10{gap:2.5rem}.htw-gap-2{gap:.5rem}.htw-gap-3{gap:.75rem}.htw-gap-5{gap:1.25rem}.htw-space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem*var(--tw-space-y-reverse))}.htw-space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.htw-space-y-2\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.625rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.625rem*var(--tw-space-y-reverse))}.htw-space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.htw-space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem*var(--tw-space-y-reverse))}.htw-divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px*var(--tw-divide-x-reverse));border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)))}.htw-divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px*var(--tw-divide-y-reverse))}.htw-divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity,1))}.htw-place-self-center{place-self:center}.htw-justify-self-end{justify-self:end}.htw-overflow-auto{overflow:auto}.htw-overflow-hidden{overflow:hidden}.htw-overflow-y-auto{overflow-y:auto}.htw-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.htw-rounded{border-radius:.3rem}.htw-rounded-full{border-radius:9999px}.htw-rounded-lg{border-radius:.5rem}.htw-rounded-sm{border-radius:.2rem}.htw-rounded-l{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.htw-rounded-r{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.htw-border{border-width:1px}.htw-border-gray-100{--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1))}.htw-border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1))}.htw-border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.htw-border-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity,1))}.htw-border-red-500{--tw-border-opacity:1;border-color:rgb(191 27 21/var(--tw-border-opacity,1))}.htw-bg-black\/25{background-color:rgba(1,1,1,.25)}.htw-bg-blue-100{--tw-bg-opacity:1;background-color:rgb(205 220 244/var(--tw-bg-opacity,1))}.htw-bg-blue-500{--tw-bg-opacity:1;background-color:rgb(39 100 193/var(--tw-bg-opacity,1))}.htw-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.htw-bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.htw-bg-gray-400{--tw-bg-opacity:1;background-color:rgb(156 163 175/var(--tw-bg-opacity,1))}.htw-bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.htw-bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity,1))}.htw-bg-green-100{--tw-bg-opacity:1;background-color:rgb(190 213 201/var(--tw-bg-opacity,1))}.htw-bg-green-500{--tw-bg-opacity:1;background-color:rgb(39 118 77/var(--tw-bg-opacity,1))}.htw-bg-inherit{background-color:inherit}.htw-bg-orange-200{--tw-bg-opacity:1;background-color:rgb(254 215 170/var(--tw-bg-opacity,1))}.htw-bg-pink-200{--tw-bg-opacity:1;background-color:rgb(234 152 220/var(--tw-bg-opacity,1))}.htw-bg-red-500{--tw-bg-opacity:1;background-color:rgb(191 27 21/var(--tw-bg-opacity,1))}.htw-bg-transparent{background-color:transparent}.htw-bg-violet-200{--tw-bg-opacity:1;background-color:rgb(221 214 254/var(--tw-bg-opacity,1))}.htw-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.htw-p-0\.5{padding:.125rem}.htw-p-1{padding:.25rem}.htw-p-1\.5{padding:.375rem}.htw-p-2{padding:.5rem}.htw-p-4{padding:1rem}.htw-px-0\.5{padding-left:.125rem;padding-right:.125rem}.htw-px-1{padding-left:.25rem;padding-right:.25rem}.htw-px-11{padding-left:2.75rem;padding-right:2.75rem}.htw-px-2{padding-left:.5rem;padding-right:.5rem}.htw-px-2\.5{padding-left:.625rem;padding-right:.625rem}.htw-px-3{padding-left:.75rem;padding-right:.75rem}.htw-py-1{padding-top:.25rem;padding-bottom:.25rem}.htw-py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.htw-py-2{padding-top:.5rem;padding-bottom:.5rem}.htw-py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.htw-py-3{padding-top:.75rem;padding-bottom:.75rem}.htw-py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.htw-pb-1{padding-bottom:.25rem}.htw-pb-2{padding-bottom:.5rem}.htw-pl-0\.5{padding-left:.125rem}.htw-pl-1{padding-left:.25rem}.htw-pl-px{padding-left:1px}.htw-pr-3{padding-right:.75rem}.htw-pt-14{padding-top:3.5rem}.htw-pt-4{padding-top:1rem}.htw-text-left{text-align:left}.htw-text-center{text-align:center}.htw-text-\[0\.7rem\]{font-size:.7rem}.htw-text-lg{font-size:1.125rem;line-height:1.75rem}.htw-text-sm{font-size:.875rem;line-height:1.25rem}.htw-text-xs{font-size:.75rem;line-height:1rem}.htw-font-light{font-weight:300}.htw-font-medium{font-weight:500}.htw-font-normal{font-weight:400}.htw-tracking-wide{letter-spacing:.025em}.htw-text-black{--tw-text-opacity:1;color:rgb(1 1 1/var(--tw-text-opacity,1))}.htw-text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.htw-text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.htw-text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.htw-text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity,1))}.htw-text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity,1))}.htw-text-red-500{--tw-text-opacity:1;color:rgb(191 27 21/var(--tw-text-opacity,1))}.htw-text-red-600{--tw-text-opacity:1;color:rgb(171 24 18/var(--tw-text-opacity,1))}.htw-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.htw-underline{text-decoration-line:underline}.htw-underline-offset-2{text-underline-offset:2px}.htw-opacity-25{opacity:.25}.htw-opacity-50{opacity:.5}.htw-opacity-60{opacity:.6}.htw-opacity-70{opacity:.7}.htw-opacity-75{opacity:.75}.htw-shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.htw-shadow,.htw-shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.htw-shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.htw-outline-none{outline:2px solid transparent;outline-offset:2px}.htw-drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.htw-backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.htw-transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.htw-transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.htw-duration-200{transition-duration:.2s}.htw-duration-300{transition-duration:.3s}.htw-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.htw-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.\[--anchor-gap\:var\(--spacing-5\)\]{--anchor-gap:var(--spacing-5)}.RadixWalletPopupOverlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:#00000078;z-index:999}.RadixWalletPopup{position:fixed;top:50vh;left:50vw;transform:translate(-50%,-50%);width:500px;padding:20px;border:1px solid #000;border-radius:1em;box-shadow:-1px 5px 5px #000;background-color:#fff;display:flex;flex-direction:column;justify-content:space-between;align-items:center;color:#011627;z-index:1000}.first\:htw-rounded-l:first-child{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.last\:htw-rounded-r:last-child{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.invalid\:htw-text-gray-400:invalid{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.hover\:htw-rotate-90:hover{--tw-rotate:90deg}.hover\:htw-rotate-90:hover,.hover\:htw-scale-105:hover{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:htw-scale-105:hover{--tw-scale-x:1.05;--tw-scale-y:1.05}.hover\:htw-bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.hover\:htw-bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.hover\:htw-underline:hover{text-decoration-line:underline}.hover\:htw-opacity-70:hover{opacity:.7}.hover\:htw-opacity-80:hover{opacity:.8}.focus\:htw-border-gray-400:focus{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity,1))}.focus\:htw-bg-gray-200:focus{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.focus\:htw-bg-inherit:focus{background-color:inherit}.focus\:htw-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.active\:htw-scale-95:active{--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:htw-opacity-60:active{opacity:.6}.active\:htw-opacity-70:active{opacity:.7}.disabled\:htw-cursor-default:disabled{cursor:default}.disabled\:htw-bg-gray-500:disabled{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity,1))}.disabled\:htw-opacity-30:disabled{opacity:.3}.data-\[closed\]\:htw--translate-y-1[data-closed]{--tw-translate-y:-0.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[closed\]\:htw-opacity-0[data-closed]{opacity:0}@media (min-width:1px){.all\:htw-justify-start{justify-content:flex-start}.all\:hover\:htw-opacity-100:hover{opacity:1}}@media (min-width:480px){.xs\:htw-w-2{width:.5rem}.xs\:htw-w-auto{width:auto}.xs\:htw-text-sm{font-size:.875rem;line-height:1.25rem}}@media (min-width:640px){.sm\:htw-w-3{width:.75rem}.sm\:htw-max-w-\[300px\]{max-width:300px}.sm\:htw-max-w-\[526px\]{max-width:526px}.sm\:htw-px-3{padding-left:.75rem;padding-right:.75rem}.sm\:htw-px-4{padding-left:1rem;padding-right:1rem}.sm\:htw-text-base{font-size:1rem;line-height:1.5rem}.sm\:htw-text-sm{font-size:.875rem;line-height:1.25rem}}
|
|
1
|
+
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(39,100,193,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(39,100,193,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.18 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:Helvetica,Arial,sans-serif;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.htw-fixed{position:fixed}.htw-absolute{position:absolute}.htw-relative{position:relative}.htw-inset-0{inset:0}.htw--left-3{left:-.75rem}.htw--right-3{right:-.75rem}.htw--top-12{top:-3rem}.htw-left-4{left:1rem}.htw-right-1{right:.25rem}.htw-right-3{right:.75rem}.htw-right-3\.5{right:.875rem}.htw-right-4{right:1rem}.htw-right-6{right:1.5rem}.htw-top-0{top:0}.htw-top-1\/2{top:50%}.htw-top-1\/3{top:33.333333%}.htw-top-2{top:.5rem}.htw-top-3{top:.75rem}.htw-z-10{z-index:10}.htw-z-20{z-index:20}.htw-z-30{z-index:30}.-htw-mx-2{margin-left:-.5rem;margin-right:-.5rem}.htw-mx-3{margin-left:.75rem;margin-right:.75rem}.htw-my-8{margin-top:2rem;margin-bottom:2rem}.htw-mb-1\.5{margin-bottom:.375rem}.htw-ml-2{margin-left:.5rem}.htw-ml-3{margin-left:.75rem}.htw-mr-0\.5{margin-right:.125rem}.htw-mt-0\.5{margin-top:.125rem}.htw-mt-1{margin-top:.25rem}.htw-mt-2\.5{margin-top:.625rem}.htw-flex{display:flex}.htw-inline-flex{display:inline-flex}.htw-grid{display:grid}.htw-hidden{display:none}.htw-h-12{height:3rem}.htw-h-3{height:.75rem}.htw-h-4{height:1rem}.htw-h-6{height:1.5rem}.htw-h-7{height:1.75rem}.htw-h-9{height:2.25rem}.htw-h-full{height:100%}.htw-h-screen{height:100vh}.htw-max-h-\[90vh\]{max-height:90vh}.htw-min-h-72{min-height:18rem}.htw-min-h-full{min-height:100%}.htw-w-0\.5{width:.125rem}.htw-w-1{width:.25rem}.htw-w-3{width:.75rem}.htw-w-36{width:9rem}.htw-w-64{width:16rem}.htw-w-9{width:2.25rem}.htw-w-full{width:100%}.htw-w-screen{width:100vw}.htw-max-w-2xl{max-width:42rem}.htw-max-w-\[calc\(100\%-10px\)\]{max-width:calc(100% - 10px)}.htw-max-w-sm{max-width:24rem}.htw-flex-1{flex:1 1 0%}.htw-shrink{flex-shrink:1}.htw-shrink-0{flex-shrink:0}.-htw-translate-y-1\/2,.htw--translate-y-1\/2{--tw-translate-y:-50%;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-htw-rotate-90,.htw--rotate-90{--tw-rotate:-90deg}.-htw-rotate-90,.htw--rotate-90,.htw-rotate-180{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.htw-rotate-180{--tw-rotate:180deg}.htw-rotate-90{--tw-rotate:90deg;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes htw-pulse{50%{opacity:.5}}.htw-animate-pulse-slow{animation:htw-pulse 3s cubic-bezier(.4,0,.6,1) infinite}@keyframes htw-spin{to{transform:rotate(1turn)}}.htw-animate-spin{animation:htw-spin 1s linear infinite}.htw-cursor-pointer{cursor:pointer}.htw-resize{resize:both}.htw-grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.htw-grid-cols-\[1fr\,1fr\,auto\]{grid-template-columns:1fr 1fr auto}.htw-flex-col{flex-direction:column}.htw-items-start{align-items:flex-start}.htw-items-center{align-items:center}.htw-items-stretch{align-items:stretch}.htw-justify-center{justify-content:center}.htw-justify-between{justify-content:space-between}.htw-gap-1{gap:.25rem}.htw-gap-1\.5{gap:.375rem}.htw-gap-10{gap:2.5rem}.htw-gap-2{gap:.5rem}.htw-gap-3{gap:.75rem}.htw-gap-5{gap:1.25rem}.htw-space-y-1\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.375rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.375rem*var(--tw-space-y-reverse))}.htw-space-y-2>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.5rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.5rem*var(--tw-space-y-reverse))}.htw-space-y-2\.5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.625rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.625rem*var(--tw-space-y-reverse))}.htw-space-y-4>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1rem*var(--tw-space-y-reverse))}.htw-space-y-5>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(1.25rem*var(--tw-space-y-reverse))}.htw-divide-x>:not([hidden])~:not([hidden]){--tw-divide-x-reverse:0;border-right-width:calc(1px*var(--tw-divide-x-reverse));border-left-width:calc(1px*(1 - var(--tw-divide-x-reverse)))}.htw-divide-y>:not([hidden])~:not([hidden]){--tw-divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--tw-divide-y-reverse)));border-bottom-width:calc(1px*var(--tw-divide-y-reverse))}.htw-divide-gray-100>:not([hidden])~:not([hidden]){--tw-divide-opacity:1;border-color:rgb(243 244 246/var(--tw-divide-opacity,1))}.htw-place-self-center{place-self:center}.htw-justify-self-end{justify-self:end}.htw-overflow-auto{overflow:auto}.htw-overflow-hidden{overflow:hidden}.htw-overflow-y-auto{overflow-y:auto}.htw-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.htw-rounded{border-radius:.3rem}.htw-rounded-full{border-radius:9999px}.htw-rounded-lg{border-radius:.5rem}.htw-rounded-sm{border-radius:.2rem}.htw-rounded-l{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.htw-rounded-r{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.htw-border{border-width:1px}.htw-border-gray-100{--tw-border-opacity:1;border-color:rgb(243 244 246/var(--tw-border-opacity,1))}.htw-border-gray-200{--tw-border-opacity:1;border-color:rgb(229 231 235/var(--tw-border-opacity,1))}.htw-border-gray-300{--tw-border-opacity:1;border-color:rgb(209 213 219/var(--tw-border-opacity,1))}.htw-border-gray-400{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity,1))}.htw-border-red-500{--tw-border-opacity:1;border-color:rgb(191 27 21/var(--tw-border-opacity,1))}.htw-bg-black\/25{background-color:rgba(1,1,1,.25)}.htw-bg-blue-100{--tw-bg-opacity:1;background-color:rgb(205 220 244/var(--tw-bg-opacity,1))}.htw-bg-blue-500{--tw-bg-opacity:1;background-color:rgb(39 100 193/var(--tw-bg-opacity,1))}.htw-bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.htw-bg-gray-200{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.htw-bg-gray-400{--tw-bg-opacity:1;background-color:rgb(156 163 175/var(--tw-bg-opacity,1))}.htw-bg-gray-50{--tw-bg-opacity:1;background-color:rgb(249 250 251/var(--tw-bg-opacity,1))}.htw-bg-gray-600{--tw-bg-opacity:1;background-color:rgb(75 85 99/var(--tw-bg-opacity,1))}.htw-bg-green-100{--tw-bg-opacity:1;background-color:rgb(190 213 201/var(--tw-bg-opacity,1))}.htw-bg-green-500{--tw-bg-opacity:1;background-color:rgb(39 118 77/var(--tw-bg-opacity,1))}.htw-bg-inherit{background-color:inherit}.htw-bg-orange-200{--tw-bg-opacity:1;background-color:rgb(254 215 170/var(--tw-bg-opacity,1))}.htw-bg-pink-200{--tw-bg-opacity:1;background-color:rgb(234 152 220/var(--tw-bg-opacity,1))}.htw-bg-red-500{--tw-bg-opacity:1;background-color:rgb(191 27 21/var(--tw-bg-opacity,1))}.htw-bg-transparent{background-color:transparent}.htw-bg-violet-200{--tw-bg-opacity:1;background-color:rgb(221 214 254/var(--tw-bg-opacity,1))}.htw-bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.htw-p-0\.5{padding:.125rem}.htw-p-1{padding:.25rem}.htw-p-1\.5{padding:.375rem}.htw-p-2{padding:.5rem}.htw-p-4{padding:1rem}.htw-px-0\.5{padding-left:.125rem;padding-right:.125rem}.htw-px-1{padding-left:.25rem;padding-right:.25rem}.htw-px-11{padding-left:2.75rem;padding-right:2.75rem}.htw-px-2{padding-left:.5rem;padding-right:.5rem}.htw-px-2\.5{padding-left:.625rem;padding-right:.625rem}.htw-px-3{padding-left:.75rem;padding-right:.75rem}.htw-py-1{padding-top:.25rem;padding-bottom:.25rem}.htw-py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.htw-py-2{padding-top:.5rem;padding-bottom:.5rem}.htw-py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.htw-py-3{padding-top:.75rem;padding-bottom:.75rem}.htw-py-3\.5{padding-top:.875rem;padding-bottom:.875rem}.htw-pb-1{padding-bottom:.25rem}.htw-pb-2{padding-bottom:.5rem}.htw-pl-0\.5{padding-left:.125rem}.htw-pl-1{padding-left:.25rem}.htw-pl-2{padding-left:.5rem}.htw-pl-px{padding-left:1px}.htw-pr-3{padding-right:.75rem}.htw-pt-14{padding-top:3.5rem}.htw-pt-4{padding-top:1rem}.htw-text-left{text-align:left}.htw-text-center{text-align:center}.htw-text-\[0\.7rem\]{font-size:.7rem}.htw-text-lg{font-size:1.125rem;line-height:1.75rem}.htw-text-sm{font-size:.875rem;line-height:1.25rem}.htw-text-xs{font-size:.75rem;line-height:1rem}.htw-font-light{font-weight:300}.htw-font-medium{font-weight:500}.htw-font-normal{font-weight:400}.htw-tracking-wide{letter-spacing:.025em}.htw-text-black{--tw-text-opacity:1;color:rgb(1 1 1/var(--tw-text-opacity,1))}.htw-text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.htw-text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128/var(--tw-text-opacity,1))}.htw-text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99/var(--tw-text-opacity,1))}.htw-text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity,1))}.htw-text-gray-800{--tw-text-opacity:1;color:rgb(31 41 55/var(--tw-text-opacity,1))}.htw-text-red-500{--tw-text-opacity:1;color:rgb(191 27 21/var(--tw-text-opacity,1))}.htw-text-red-600{--tw-text-opacity:1;color:rgb(171 24 18/var(--tw-text-opacity,1))}.htw-text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.htw-underline{text-decoration-line:underline}.htw-underline-offset-2{text-underline-offset:2px}.htw-opacity-25{opacity:.25}.htw-opacity-50{opacity:.5}.htw-opacity-60{opacity:.6}.htw-opacity-70{opacity:.7}.htw-opacity-75{opacity:.75}.htw-shadow{--tw-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);--tw-shadow-colored:0 1px 3px 0 var(--tw-shadow-color),0 1px 2px -1px var(--tw-shadow-color)}.htw-shadow,.htw-shadow-md{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.htw-shadow-md{--tw-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -2px rgba(0,0,0,.1);--tw-shadow-colored:0 4px 6px -1px var(--tw-shadow-color),0 2px 4px -2px var(--tw-shadow-color)}.htw-outline-none{outline:2px solid transparent;outline-offset:2px}.htw-drop-shadow-md{--tw-drop-shadow:drop-shadow(0 4px 3px rgba(0,0,0,.07)) drop-shadow(0 2px 2px rgba(0,0,0,.06));filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.htw-backdrop-blur{--tw-backdrop-blur:blur(8px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.htw-transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.htw-transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.htw-duration-200{transition-duration:.2s}.htw-duration-300{transition-duration:.3s}.htw-ease-in-out{transition-timing-function:cubic-bezier(.4,0,.2,1)}.htw-ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}.no-scrollbar::-webkit-scrollbar{display:none}.no-scrollbar{-ms-overflow-style:none;scrollbar-width:none}.\[--anchor-gap\:var\(--spacing-5\)\]{--anchor-gap:var(--spacing-5)}.RadixWalletPopupOverlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:#00000078;z-index:999}.RadixWalletPopup{position:fixed;top:50vh;left:50vw;transform:translate(-50%,-50%);width:500px;padding:20px;border:1px solid #000;border-radius:1em;box-shadow:-1px 5px 5px #000;background-color:#fff;display:flex;flex-direction:column;justify-content:space-between;align-items:center;color:#011627;z-index:1000}.first\:htw-rounded-l:first-child{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.last\:htw-rounded-r:last-child{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.invalid\:htw-text-gray-400:invalid{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity,1))}.hover\:htw-rotate-90:hover{--tw-rotate:90deg}.hover\:htw-rotate-90:hover,.hover\:htw-scale-105:hover{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:htw-scale-105:hover{--tw-scale-x:1.05;--tw-scale-y:1.05}.hover\:htw-bg-gray-100:hover{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity,1))}.hover\:htw-bg-gray-200:hover{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.hover\:htw-underline:hover{text-decoration-line:underline}.hover\:htw-opacity-70:hover{opacity:.7}.hover\:htw-opacity-80:hover{opacity:.8}.focus\:htw-border-gray-400:focus{--tw-border-opacity:1;border-color:rgb(156 163 175/var(--tw-border-opacity,1))}.focus\:htw-bg-gray-200:focus{--tw-bg-opacity:1;background-color:rgb(229 231 235/var(--tw-bg-opacity,1))}.focus\:htw-bg-inherit:focus{background-color:inherit}.focus\:htw-outline-none:focus{outline:2px solid transparent;outline-offset:2px}.active\:htw-scale-95:active{--tw-scale-x:.95;--tw-scale-y:.95;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.active\:htw-opacity-60:active{opacity:.6}.active\:htw-opacity-70:active{opacity:.7}.disabled\:htw-cursor-default:disabled{cursor:default}.disabled\:htw-bg-gray-500:disabled{--tw-bg-opacity:1;background-color:rgb(107 114 128/var(--tw-bg-opacity,1))}.disabled\:htw-opacity-30:disabled{opacity:.3}.data-\[closed\]\:htw--translate-y-1[data-closed]{--tw-translate-y:-0.25rem;transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.data-\[closed\]\:htw-opacity-0[data-closed]{opacity:0}@media (min-width:1px){.all\:htw-justify-start{justify-content:flex-start}.all\:hover\:htw-opacity-100:hover{opacity:1}}@media (min-width:480px){.xs\:htw-w-2{width:.5rem}.xs\:htw-w-auto{width:auto}.xs\:htw-text-sm{font-size:.875rem;line-height:1.25rem}}@media (min-width:640px){.sm\:htw-w-3{width:.75rem}.sm\:htw-max-w-\[300px\]{max-width:300px}.sm\:htw-max-w-\[526px\]{max-width:526px}.sm\:htw-px-3{padding-left:.75rem;padding-right:.75rem}.sm\:htw-px-4{padding-left:1rem;padding-right:1rem}.sm\:htw-text-base{font-size:1rem;line-height:1.5rem}.sm\:htw-text-sm{font-size:.875rem;line-height:1.25rem}}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperlane-xyz/widgets",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "27.0.0",
|
|
4
4
|
"description": "Common react components for Hyperlane projects",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Components",
|
|
@@ -53,13 +53,13 @@
|
|
|
53
53
|
"viem": "^2.21.45",
|
|
54
54
|
"wagmi": "^2.12.26",
|
|
55
55
|
"yaml": "2.4.5",
|
|
56
|
-
"@hyperlane-xyz/aleo-sdk": "
|
|
57
|
-
"@hyperlane-xyz/cosmos-sdk": "
|
|
58
|
-
"@hyperlane-xyz/provider-sdk": "3.0.
|
|
59
|
-
"@hyperlane-xyz/radix-sdk": "
|
|
60
|
-
"@hyperlane-xyz/sdk": "
|
|
61
|
-
"@hyperlane-xyz/tron-sdk": "22.
|
|
62
|
-
"@hyperlane-xyz/utils": "
|
|
56
|
+
"@hyperlane-xyz/aleo-sdk": "27.0.0",
|
|
57
|
+
"@hyperlane-xyz/cosmos-sdk": "27.0.0",
|
|
58
|
+
"@hyperlane-xyz/provider-sdk": "3.0.1",
|
|
59
|
+
"@hyperlane-xyz/radix-sdk": "27.0.0",
|
|
60
|
+
"@hyperlane-xyz/sdk": "27.0.0",
|
|
61
|
+
"@hyperlane-xyz/tron-sdk": "22.1.0",
|
|
62
|
+
"@hyperlane-xyz/utils": "27.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@chakra-ui/react": "^2.8.2",
|
|
@@ -99,7 +99,7 @@
|
|
|
99
99
|
"tailwindcss": "^3.4.13",
|
|
100
100
|
"typescript": "5.8.3",
|
|
101
101
|
"vite": "^5.1.1",
|
|
102
|
-
"@hyperlane-xyz/tsconfig": "^
|
|
102
|
+
"@hyperlane-xyz/tsconfig": "^27.0.0"
|
|
103
103
|
},
|
|
104
104
|
"peerDependencies": {
|
|
105
105
|
"react": "^18",
|