@gearbox-protocol/ui-kit 4.0.0-next.5 → 4.0.0-next.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/components/composites/index.cjs +1 -1
- package/dist/cjs/components/composites/tx-preview/confirm/dialog/TransactionConfirmShell.cjs +1 -1
- package/dist/cjs/components/composites/tx-preview/confirm/dialog/index.cjs +1 -1
- package/dist/cjs/components/composites/tx-preview/confirm/dialog/transactionConfirmShellTypes.cjs +1 -0
- package/dist/cjs/components/composites/tx-preview/confirm/index.cjs +1 -1
- package/dist/cjs/components/composites/tx-preview/index.cjs +1 -1
- package/dist/cjs/components/index.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/esm/components/composites/index.js +30 -32
- package/dist/esm/components/composites/tx-preview/confirm/dialog/TransactionConfirmShell.js +109 -52
- package/dist/esm/components/composites/tx-preview/confirm/dialog/index.js +8 -10
- package/dist/esm/components/composites/tx-preview/confirm/dialog/transactionConfirmShellTypes.js +1 -0
- package/dist/esm/components/composites/tx-preview/confirm/index.js +24 -26
- package/dist/esm/components/composites/tx-preview/index.js +24 -26
- package/dist/esm/components/index.js +487 -489
- package/dist/esm/index.js +660 -662
- package/dist/globals.css +1 -1
- package/dist/types/components/composites/tx-preview/confirm/dialog/TransactionConfirmShell.d.ts +23 -19
- package/dist/types/components/composites/tx-preview/confirm/dialog/index.d.ts +2 -2
- package/dist/types/components/composites/tx-preview/confirm/dialog/transactionConfirmPhase.d.ts +0 -3
- package/dist/types/components/composites/tx-preview/confirm/dialog/transactionConfirmShellTypes.d.ts +97 -0
- package/package.json +1 -1
- package/dist/cjs/components/composites/tx-preview/confirm/dialog/TransactionConfirmModalView.cjs +0 -1
- package/dist/cjs/components/composites/tx-preview/confirm/dialog/TransactionConfirmPageView.cjs +0 -1
- package/dist/esm/components/composites/tx-preview/confirm/dialog/TransactionConfirmModalView.js +0 -180
- package/dist/esm/components/composites/tx-preview/confirm/dialog/TransactionConfirmPageView.js +0 -54
- package/dist/types/components/composites/tx-preview/confirm/dialog/TransactionConfirmModalView.d.ts +0 -17
- package/dist/types/components/composites/tx-preview/confirm/dialog/TransactionConfirmPageView.d.ts +0 -16
|
@@ -5,46 +5,44 @@ import { PoolAssetsTableHead as m } from "./pool-assets-table/pool-assets-table-
|
|
|
5
5
|
import { PoolAssetsTableRow as c } from "./pool-assets-table/pool-assets-table-row.js";
|
|
6
6
|
import { TransactionConfirmAmountFieldTest as l, TransactionConfirmAmountPairTest as p } from "./tx-preview/confirm/amounts/constants.js";
|
|
7
7
|
import { TransactionConfirmAmountField as C } from "./tx-preview/confirm/amounts/TransactionConfirmAmountField.js";
|
|
8
|
-
import { computeTransactionConfirmDialogLayout as
|
|
9
|
-
import { TransactionConfirmDialogTest as
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import { shouldShowTransactionProgressStepper as W } from "./tx-preview/confirm/stepper/transactionExecutionStepTypes.js";
|
|
8
|
+
import { computeTransactionConfirmDialogLayout as S } from "./tx-preview/confirm/dialog/computeTransactionConfirmDialogLayout.js";
|
|
9
|
+
import { TransactionConfirmDialogTest as h, transactionConfirmDialogShellVariants as A, transactionConfirmModalContainerVariants as R, transactionConfirmPreviewScrollVariants as g, transactionConfirmShellContentVariants as d } from "./tx-preview/confirm/dialog/constants.js";
|
|
10
|
+
import { TransactionConfirmShell as b } from "./tx-preview/confirm/dialog/TransactionConfirmShell.js";
|
|
11
|
+
import { TransactionConfirmExecuteButton as V } from "./tx-preview/confirm/execution/TransactionConfirmExecuteButton.js";
|
|
12
|
+
import { TransactionConfirmExecuteButtonTest as H, TransactionConfirmFailureResultTest as B, TransactionConfirmSuccessResultTest as E, TransactionConfirmTxHashRowTest as v } from "./tx-preview/confirm/result/constants.js";
|
|
13
|
+
import { TransactionConfirmFailureResult as I } from "./tx-preview/confirm/result/TransactionConfirmFailureResult.js";
|
|
14
|
+
import { TransactionConfirmSuccessIcon as M } from "./tx-preview/confirm/result/TransactionConfirmSuccessIcon.js";
|
|
15
|
+
import { TransactionConfirmSuccessResult as j } from "./tx-preview/confirm/result/TransactionConfirmSuccessResult.js";
|
|
16
|
+
import { TransactionConfirmTxHashRow as q } from "./tx-preview/confirm/result/TransactionConfirmTxHashRow.js";
|
|
17
|
+
import { ProgressStepperTest as G } from "./tx-preview/confirm/stepper/constants.js";
|
|
18
|
+
import { ProgressStepper as K } from "./tx-preview/confirm/stepper/ProgressStepper.js";
|
|
19
|
+
import { shouldShowTransactionProgressStepper as Q } from "./tx-preview/confirm/stepper/transactionExecutionStepTypes.js";
|
|
21
20
|
export {
|
|
22
21
|
t as NotificationCenter,
|
|
23
22
|
s as PoolAssetsTable,
|
|
24
23
|
m as PoolAssetsTableHead,
|
|
25
24
|
c as PoolAssetsTableRow,
|
|
26
25
|
e as PoolAssetsTableTest,
|
|
27
|
-
|
|
28
|
-
|
|
26
|
+
K as ProgressStepper,
|
|
27
|
+
G as ProgressStepperTest,
|
|
29
28
|
C as TransactionConfirmAmountField,
|
|
30
29
|
l as TransactionConfirmAmountFieldTest,
|
|
31
30
|
p as TransactionConfirmAmountPairTest,
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
j as
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
R as transactionConfirmPreviewScrollVariants,
|
|
31
|
+
h as TransactionConfirmDialogTest,
|
|
32
|
+
V as TransactionConfirmExecuteButton,
|
|
33
|
+
H as TransactionConfirmExecuteButtonTest,
|
|
34
|
+
I as TransactionConfirmFailureResult,
|
|
35
|
+
B as TransactionConfirmFailureResultTest,
|
|
36
|
+
b as TransactionConfirmShell,
|
|
37
|
+
M as TransactionConfirmSuccessIcon,
|
|
38
|
+
j as TransactionConfirmSuccessResult,
|
|
39
|
+
E as TransactionConfirmSuccessResultTest,
|
|
40
|
+
q as TransactionConfirmTxHashRow,
|
|
41
|
+
v as TransactionConfirmTxHashRowTest,
|
|
42
|
+
S as computeTransactionConfirmDialogLayout,
|
|
43
|
+
Q as shouldShowTransactionProgressStepper,
|
|
44
|
+
A as transactionConfirmDialogShellVariants,
|
|
45
|
+
R as transactionConfirmModalContainerVariants,
|
|
46
|
+
g as transactionConfirmPreviewScrollVariants,
|
|
49
47
|
d as transactionConfirmShellContentVariants
|
|
50
48
|
};
|
|
@@ -1,87 +1,127 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { jsx as r, jsxs as p, Fragment as v } from "react/jsx-runtime";
|
|
2
|
+
import { StyledDialogContainer as C } from "../../../../client-adapters/styled-dialog-container/styled-dialog-container.js";
|
|
3
|
+
import { ConfirmMenu as S } from "../../../../confirm-menu/confirm-menu.js";
|
|
4
|
+
import { ErrorLineMessage as k } from "../../../../error-message/error-line-message.js";
|
|
3
5
|
import "react-intl";
|
|
4
6
|
import "../../../../buttons/button/button.js";
|
|
5
7
|
import "../../../../dialog/dialog-container.js";
|
|
6
8
|
import "react";
|
|
7
9
|
import "@gearbox-protocol/sdk";
|
|
8
|
-
import "
|
|
9
|
-
import "tailwind-merge";
|
|
10
|
+
import { cn as T } from "../../../../../utils/cn.js";
|
|
10
11
|
import "sonner";
|
|
11
12
|
import "@gearbox-protocol/sdk/common-utils";
|
|
12
13
|
import "luxon";
|
|
13
14
|
import "../../../../../utils/z-index.js";
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
15
|
+
import { Modal as N } from "../../../../modal/modal.js";
|
|
16
|
+
import { SkeletonStack as P } from "../../../../skeleton/skeleton-stack.js";
|
|
17
|
+
import { VSpace as h } from "../../../../vspace/vspace.js";
|
|
18
|
+
import { ProgressStepper as E } from "../stepper/ProgressStepper.js";
|
|
19
|
+
import { shouldShowTransactionProgressStepper as L } from "../stepper/transactionExecutionStepTypes.js";
|
|
20
|
+
import { computeTransactionConfirmDialogLayout as R } from "./computeTransactionConfirmDialogLayout.js";
|
|
21
|
+
import { TransactionConfirmDialogTest as c, transactionConfirmModalContainerVariants as A, transactionConfirmDialogShellVariants as D, transactionConfirmShellContentVariants as I, transactionConfirmPreviewScrollVariants as V } from "./constants.js";
|
|
22
|
+
const M = "Unable to preview transaction";
|
|
23
|
+
function ne(e) {
|
|
24
|
+
const {
|
|
25
|
+
mode: i,
|
|
26
|
+
phase: d = "confirm",
|
|
27
|
+
onClose: l,
|
|
28
|
+
title: m,
|
|
29
|
+
titleAddon: n,
|
|
30
|
+
hideTitleAddonOnResult: u = !0,
|
|
31
|
+
body: t,
|
|
32
|
+
className: a,
|
|
33
|
+
previewClassName: o,
|
|
34
|
+
"data-testid": s,
|
|
35
|
+
shellTestId: g
|
|
36
|
+
} = e;
|
|
37
|
+
if (e.mode === "dialog" && e.open === !1) return null;
|
|
38
|
+
const f = t.kind === "ready" ? d : "confirm", x = f !== "confirm" && f !== "awaiting_receipt" && u ? void 0 : n, w = /* @__PURE__ */ r(
|
|
39
|
+
C,
|
|
40
|
+
{
|
|
41
|
+
className: T(
|
|
42
|
+
D(),
|
|
43
|
+
i === "dialog" ? A() : null,
|
|
44
|
+
a
|
|
45
|
+
),
|
|
46
|
+
"data-testid": s,
|
|
47
|
+
children: /* @__PURE__ */ r(
|
|
48
|
+
z,
|
|
49
|
+
{
|
|
50
|
+
body: t,
|
|
51
|
+
phase: f,
|
|
52
|
+
previewClassName: o,
|
|
53
|
+
testId: g ?? c.root,
|
|
54
|
+
header: /* @__PURE__ */ r(
|
|
55
|
+
S,
|
|
56
|
+
{
|
|
57
|
+
title: m,
|
|
58
|
+
titleAddon: x,
|
|
59
|
+
onClose: l
|
|
60
|
+
}
|
|
61
|
+
)
|
|
62
|
+
}
|
|
63
|
+
)
|
|
64
|
+
}
|
|
65
|
+
);
|
|
66
|
+
return i === "page" ? w : /* @__PURE__ */ r(N, { show: !0, onClickOutside: l, zIndexLayer: "MODAL", children: w });
|
|
67
|
+
}
|
|
68
|
+
function z({
|
|
69
|
+
body: e,
|
|
70
|
+
phase: i,
|
|
71
|
+
previewClassName: d,
|
|
72
|
+
testId: l,
|
|
73
|
+
header: m
|
|
34
74
|
}) {
|
|
35
|
-
const
|
|
36
|
-
return /* @__PURE__ */
|
|
75
|
+
const n = e.kind === "ready" ? e.stepper : void 0, u = !!(n && L(n.steps)), t = R(i, u), a = e.kind === "ready" ? _(e, i) : void 0, o = e.kind === "ready" ? e.execution : void 0;
|
|
76
|
+
return /* @__PURE__ */ p(
|
|
37
77
|
"div",
|
|
38
78
|
{
|
|
39
|
-
className:
|
|
40
|
-
"data-testid":
|
|
79
|
+
className: I(),
|
|
80
|
+
"data-testid": l,
|
|
41
81
|
children: [
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
t.showResult &&
|
|
82
|
+
/* @__PURE__ */ r("div", { className: "shrink-0", children: m }),
|
|
83
|
+
/* @__PURE__ */ r(h, { size: "sm" }),
|
|
84
|
+
t.showResult && a ? /* @__PURE__ */ r(
|
|
45
85
|
"div",
|
|
46
86
|
{
|
|
47
87
|
className: "flex min-h-0 flex-1 flex-col",
|
|
48
|
-
"data-testid":
|
|
49
|
-
children:
|
|
88
|
+
"data-testid": c.result,
|
|
89
|
+
children: a
|
|
50
90
|
}
|
|
51
91
|
) : null,
|
|
52
|
-
t.showResult ? null : /* @__PURE__ */
|
|
53
|
-
t.showPreview ? /* @__PURE__ */
|
|
54
|
-
|
|
92
|
+
t.showResult ? null : /* @__PURE__ */ p("div", { className: "flex min-h-0 flex-1 flex-col", children: [
|
|
93
|
+
t.showPreview ? /* @__PURE__ */ r(
|
|
94
|
+
"div",
|
|
55
95
|
{
|
|
56
|
-
|
|
57
|
-
|
|
96
|
+
className: d ?? V(),
|
|
97
|
+
children: /* @__PURE__ */ r(O, { body: e })
|
|
58
98
|
}
|
|
59
|
-
) :
|
|
60
|
-
t.showPreview && t.showExecution ? /* @__PURE__ */
|
|
61
|
-
t.showExecution ? /* @__PURE__ */
|
|
99
|
+
) : null,
|
|
100
|
+
t.showPreview && t.showExecution && o ? /* @__PURE__ */ r(h, { size: "md" }) : null,
|
|
101
|
+
t.showExecution && o ? /* @__PURE__ */ r(
|
|
62
102
|
"div",
|
|
63
103
|
{
|
|
64
104
|
className: "min-w-0 w-full shrink-0",
|
|
65
|
-
"data-testid":
|
|
66
|
-
children:
|
|
105
|
+
"data-testid": c.execution,
|
|
106
|
+
children: o
|
|
67
107
|
}
|
|
68
108
|
) : null
|
|
69
109
|
] }),
|
|
70
|
-
t.showProgressStepper &&
|
|
71
|
-
/* @__PURE__ */
|
|
72
|
-
/* @__PURE__ */
|
|
110
|
+
t.showProgressStepper && n ? /* @__PURE__ */ p(v, { children: [
|
|
111
|
+
/* @__PURE__ */ r(h, { size: "md" }),
|
|
112
|
+
/* @__PURE__ */ r(
|
|
73
113
|
"div",
|
|
74
114
|
{
|
|
75
115
|
className: "shrink-0",
|
|
76
|
-
"data-testid":
|
|
77
|
-
children: /* @__PURE__ */
|
|
78
|
-
|
|
116
|
+
"data-testid": c.progress,
|
|
117
|
+
children: /* @__PURE__ */ r(
|
|
118
|
+
E,
|
|
79
119
|
{
|
|
80
120
|
tone: "muted",
|
|
81
|
-
steps:
|
|
121
|
+
steps: n.steps.map((s) => ({
|
|
82
122
|
id: s.id,
|
|
83
123
|
status: s.status,
|
|
84
|
-
label: n(s)
|
|
124
|
+
label: n.renderLabel(s)
|
|
85
125
|
}))
|
|
86
126
|
}
|
|
87
127
|
)
|
|
@@ -92,6 +132,23 @@ function Q({
|
|
|
92
132
|
}
|
|
93
133
|
);
|
|
94
134
|
}
|
|
135
|
+
function O({
|
|
136
|
+
body: e
|
|
137
|
+
}) {
|
|
138
|
+
return e.kind === "placeholder" ? /* @__PURE__ */ r(v, { children: e.node }) : e.kind === "error" ? /* @__PURE__ */ r(
|
|
139
|
+
k,
|
|
140
|
+
{
|
|
141
|
+
err: e.error,
|
|
142
|
+
title: e.title ?? M
|
|
143
|
+
}
|
|
144
|
+
) : e.previewLoading ? /* @__PURE__ */ r(P, { lines: 3 }) : /* @__PURE__ */ r(v, { children: e.preview });
|
|
145
|
+
}
|
|
146
|
+
function _(e, i) {
|
|
147
|
+
if (e.result) {
|
|
148
|
+
if (i === "success") return e.result.success;
|
|
149
|
+
if (i === "failure") return e.result.failure;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
95
152
|
export {
|
|
96
|
-
|
|
153
|
+
ne as TransactionConfirmShell
|
|
97
154
|
};
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
import { computeTransactionConfirmDialogLayout as
|
|
2
|
-
import { TransactionConfirmDialogTest as
|
|
3
|
-
import {
|
|
4
|
-
import { TransactionConfirmPageView as C } from "./TransactionConfirmPageView.js";
|
|
1
|
+
import { computeTransactionConfirmDialogLayout as a } from "./computeTransactionConfirmDialogLayout.js";
|
|
2
|
+
import { TransactionConfirmDialogTest as t, transactionConfirmDialogShellVariants as i, transactionConfirmModalContainerVariants as e, transactionConfirmPreviewScrollVariants as l, transactionConfirmShellContentVariants as s } from "./constants.js";
|
|
3
|
+
import { TransactionConfirmShell as f } from "./TransactionConfirmShell.js";
|
|
5
4
|
export {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
t as transactionConfirmDialogShellVariants,
|
|
5
|
+
t as TransactionConfirmDialogTest,
|
|
6
|
+
f as TransactionConfirmShell,
|
|
7
|
+
a as computeTransactionConfirmDialogLayout,
|
|
8
|
+
i as transactionConfirmDialogShellVariants,
|
|
11
9
|
e as transactionConfirmModalContainerVariants,
|
|
12
|
-
|
|
10
|
+
l as transactionConfirmPreviewScrollVariants,
|
|
13
11
|
s as transactionConfirmShellContentVariants
|
|
14
12
|
};
|
package/dist/esm/components/composites/tx-preview/confirm/dialog/transactionConfirmShellTypes.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -1,40 +1,38 @@
|
|
|
1
1
|
import { TransactionConfirmAmountFieldTest as n, TransactionConfirmAmountPairTest as t } from "./amounts/constants.js";
|
|
2
2
|
import { TransactionConfirmAmountField as e } from "./amounts/TransactionConfirmAmountField.js";
|
|
3
3
|
import { computeTransactionConfirmDialogLayout as s } from "./dialog/computeTransactionConfirmDialogLayout.js";
|
|
4
|
-
import { TransactionConfirmDialogTest as f, transactionConfirmDialogShellVariants as c, transactionConfirmModalContainerVariants as T, transactionConfirmPreviewScrollVariants as
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import { shouldShowTransactionProgressStepper as k } from "./stepper/transactionExecutionStepTypes.js";
|
|
4
|
+
import { TransactionConfirmDialogTest as f, transactionConfirmDialogShellVariants as c, transactionConfirmModalContainerVariants as T, transactionConfirmPreviewScrollVariants as l, transactionConfirmShellContentVariants as p } from "./dialog/constants.js";
|
|
5
|
+
import { TransactionConfirmShell as u } from "./dialog/TransactionConfirmShell.js";
|
|
6
|
+
import { TransactionConfirmExecuteButton as S } from "./execution/TransactionConfirmExecuteButton.js";
|
|
7
|
+
import { TransactionConfirmExecuteButtonTest as g, TransactionConfirmFailureResultTest as R, TransactionConfirmSuccessResultTest as P, TransactionConfirmTxHashRowTest as d } from "./result/constants.js";
|
|
8
|
+
import { TransactionConfirmFailureResult as F } from "./result/TransactionConfirmFailureResult.js";
|
|
9
|
+
import { TransactionConfirmSuccessIcon as A } from "./result/TransactionConfirmSuccessIcon.js";
|
|
10
|
+
import { TransactionConfirmSuccessResult as B } from "./result/TransactionConfirmSuccessResult.js";
|
|
11
|
+
import { TransactionConfirmTxHashRow as H } from "./result/TransactionConfirmTxHashRow.js";
|
|
12
|
+
import { ProgressStepperTest as y } from "./stepper/constants.js";
|
|
13
|
+
import { ProgressStepper as L } from "./stepper/ProgressStepper.js";
|
|
14
|
+
import { shouldShowTransactionProgressStepper as b } from "./stepper/transactionExecutionStepTypes.js";
|
|
16
15
|
export {
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
L as ProgressStepper,
|
|
17
|
+
y as ProgressStepperTest,
|
|
19
18
|
e as TransactionConfirmAmountField,
|
|
20
19
|
n as TransactionConfirmAmountFieldTest,
|
|
21
20
|
t as TransactionConfirmAmountPairTest,
|
|
22
21
|
f as TransactionConfirmDialogTest,
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
S as TransactionConfirmExecuteButton,
|
|
23
|
+
g as TransactionConfirmExecuteButtonTest,
|
|
24
|
+
F as TransactionConfirmFailureResult,
|
|
26
25
|
R as TransactionConfirmFailureResultTest,
|
|
27
|
-
u as
|
|
28
|
-
|
|
29
|
-
B as
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
v as TransactionConfirmTxHashRow,
|
|
26
|
+
u as TransactionConfirmShell,
|
|
27
|
+
A as TransactionConfirmSuccessIcon,
|
|
28
|
+
B as TransactionConfirmSuccessResult,
|
|
29
|
+
P as TransactionConfirmSuccessResultTest,
|
|
30
|
+
H as TransactionConfirmTxHashRow,
|
|
33
31
|
d as TransactionConfirmTxHashRowTest,
|
|
34
32
|
s as computeTransactionConfirmDialogLayout,
|
|
35
|
-
|
|
33
|
+
b as shouldShowTransactionProgressStepper,
|
|
36
34
|
c as transactionConfirmDialogShellVariants,
|
|
37
35
|
T as transactionConfirmModalContainerVariants,
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
l as transactionConfirmPreviewScrollVariants,
|
|
37
|
+
p as transactionConfirmShellContentVariants
|
|
40
38
|
};
|
|
@@ -1,40 +1,38 @@
|
|
|
1
1
|
import { TransactionConfirmAmountFieldTest as n, TransactionConfirmAmountPairTest as t } from "./confirm/amounts/constants.js";
|
|
2
2
|
import { TransactionConfirmAmountField as e } from "./confirm/amounts/TransactionConfirmAmountField.js";
|
|
3
3
|
import { computeTransactionConfirmDialogLayout as s } from "./confirm/dialog/computeTransactionConfirmDialogLayout.js";
|
|
4
|
-
import { TransactionConfirmDialogTest as f, transactionConfirmDialogShellVariants as c, transactionConfirmModalContainerVariants as T, transactionConfirmPreviewScrollVariants as
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import { shouldShowTransactionProgressStepper as k } from "./confirm/stepper/transactionExecutionStepTypes.js";
|
|
4
|
+
import { TransactionConfirmDialogTest as f, transactionConfirmDialogShellVariants as c, transactionConfirmModalContainerVariants as T, transactionConfirmPreviewScrollVariants as l, transactionConfirmShellContentVariants as p } from "./confirm/dialog/constants.js";
|
|
5
|
+
import { TransactionConfirmShell as u } from "./confirm/dialog/TransactionConfirmShell.js";
|
|
6
|
+
import { TransactionConfirmExecuteButton as S } from "./confirm/execution/TransactionConfirmExecuteButton.js";
|
|
7
|
+
import { TransactionConfirmExecuteButtonTest as g, TransactionConfirmFailureResultTest as R, TransactionConfirmSuccessResultTest as P, TransactionConfirmTxHashRowTest as d } from "./confirm/result/constants.js";
|
|
8
|
+
import { TransactionConfirmFailureResult as F } from "./confirm/result/TransactionConfirmFailureResult.js";
|
|
9
|
+
import { TransactionConfirmSuccessIcon as A } from "./confirm/result/TransactionConfirmSuccessIcon.js";
|
|
10
|
+
import { TransactionConfirmSuccessResult as B } from "./confirm/result/TransactionConfirmSuccessResult.js";
|
|
11
|
+
import { TransactionConfirmTxHashRow as H } from "./confirm/result/TransactionConfirmTxHashRow.js";
|
|
12
|
+
import { ProgressStepperTest as y } from "./confirm/stepper/constants.js";
|
|
13
|
+
import { ProgressStepper as L } from "./confirm/stepper/ProgressStepper.js";
|
|
14
|
+
import { shouldShowTransactionProgressStepper as b } from "./confirm/stepper/transactionExecutionStepTypes.js";
|
|
16
15
|
export {
|
|
17
|
-
|
|
18
|
-
|
|
16
|
+
L as ProgressStepper,
|
|
17
|
+
y as ProgressStepperTest,
|
|
19
18
|
e as TransactionConfirmAmountField,
|
|
20
19
|
n as TransactionConfirmAmountFieldTest,
|
|
21
20
|
t as TransactionConfirmAmountPairTest,
|
|
22
21
|
f as TransactionConfirmDialogTest,
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
S as TransactionConfirmExecuteButton,
|
|
23
|
+
g as TransactionConfirmExecuteButtonTest,
|
|
24
|
+
F as TransactionConfirmFailureResult,
|
|
26
25
|
R as TransactionConfirmFailureResultTest,
|
|
27
|
-
u as
|
|
28
|
-
|
|
29
|
-
B as
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
v as TransactionConfirmTxHashRow,
|
|
26
|
+
u as TransactionConfirmShell,
|
|
27
|
+
A as TransactionConfirmSuccessIcon,
|
|
28
|
+
B as TransactionConfirmSuccessResult,
|
|
29
|
+
P as TransactionConfirmSuccessResultTest,
|
|
30
|
+
H as TransactionConfirmTxHashRow,
|
|
33
31
|
d as TransactionConfirmTxHashRowTest,
|
|
34
32
|
s as computeTransactionConfirmDialogLayout,
|
|
35
|
-
|
|
33
|
+
b as shouldShowTransactionProgressStepper,
|
|
36
34
|
c as transactionConfirmDialogShellVariants,
|
|
37
35
|
T as transactionConfirmModalContainerVariants,
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
l as transactionConfirmPreviewScrollVariants,
|
|
37
|
+
p as transactionConfirmShellContentVariants
|
|
40
38
|
};
|