@gearbox-protocol/ui-kit 3.14.0-next.16 → 3.14.0-next.17
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/tx-preview/confirm/dialog/TransactionConfirmDialogView.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/constants.cjs +1 -1
- package/dist/cjs/components/composites/tx-preview/confirm/dialog/index.cjs +1 -1
- 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/esm/components/composites/tx-preview/confirm/dialog/TransactionConfirmDialogView.js +37 -28
- package/dist/esm/components/composites/tx-preview/confirm/dialog/TransactionConfirmShell.js +58 -44
- package/dist/esm/components/composites/tx-preview/confirm/dialog/constants.js +11 -5
- package/dist/esm/components/composites/tx-preview/confirm/dialog/index.js +14 -12
- package/dist/esm/components/composites/tx-preview/confirm/index.js +41 -39
- package/dist/esm/components/composites/tx-preview/index.js +75 -73
- package/dist/globals.css +1 -1
- package/dist/types/components/composites/tx-preview/confirm/dialog/TransactionConfirmDialogView.d.ts +5 -1
- package/dist/types/components/composites/tx-preview/confirm/dialog/constants.d.ts +7 -0
- package/package.json +1 -1
|
@@ -1,93 +1,95 @@
|
|
|
1
|
-
import { AddressAvatar as
|
|
1
|
+
import { AddressAvatar as t } from "./components/AddressAvatar.js";
|
|
2
2
|
import { AddressParty as n } from "./components/AddressParty.js";
|
|
3
3
|
import { AddressRow as i } from "./components/AddressRow.js";
|
|
4
4
|
import { AmountRow as m } from "./components/AmountRow.js";
|
|
5
5
|
import { getAddressLabel as p } from "./components/addressLabel.js";
|
|
6
6
|
import { CollapsibleCard as l } from "./components/CollapsibleCard.js";
|
|
7
|
-
import { SectionDivider as
|
|
7
|
+
import { SectionDivider as C } from "./components/SectionDivider.js";
|
|
8
8
|
import { TransferList as u } from "./components/TransferList.js";
|
|
9
9
|
import { TransferRow as w } from "./components/TransferRow.js";
|
|
10
|
-
import { TransactionConfirmAmountFieldTest as
|
|
10
|
+
import { TransactionConfirmAmountFieldTest as S, TransactionConfirmAmountPairTest as g } from "./confirm/amounts/constants.js";
|
|
11
11
|
import { TransactionConfirmAmountField as R } from "./confirm/amounts/TransactionConfirmAmountField.js";
|
|
12
12
|
import { TransactionConfirmAmountPair as D } from "./confirm/amounts/TransactionConfirmAmountPair.js";
|
|
13
|
-
import { computeTransactionConfirmDialogLayout as
|
|
14
|
-
import { TransactionConfirmDialogTest as
|
|
15
|
-
import { TransactionConfirmDialogView as
|
|
16
|
-
import { TransactionConfirmPageView as
|
|
17
|
-
import { TransactionConfirmShell as
|
|
18
|
-
import { TransactionConfirmShellTest as
|
|
19
|
-
import { useTransactionConfirmDialog as
|
|
20
|
-
import { TransactionConfirmExecuteButton as
|
|
21
|
-
import { OperationPreviewContent as
|
|
22
|
-
import { TransactionConfirmExecuteButtonTest as
|
|
23
|
-
import { TransactionConfirmFailureResult as
|
|
24
|
-
import { TransactionConfirmSuccessIcon as
|
|
25
|
-
import { TransactionConfirmSuccessResult as
|
|
26
|
-
import { TransactionConfirmTxHashRow as
|
|
27
|
-
import { TransactionProgressStepperTest as
|
|
28
|
-
import { TransactionProgressStepper as
|
|
29
|
-
import { shouldShowTransactionProgressStepper as
|
|
30
|
-
import { PoolOperationConfirmDetailsTest as
|
|
31
|
-
import { PoolOperationConfirmDetails as
|
|
32
|
-
import { OperationBody as
|
|
33
|
-
import { OperationsCard as
|
|
34
|
-
import { PoolDepositView as
|
|
35
|
-
import { PoolRow as
|
|
36
|
-
import { PoolWithdrawView as
|
|
37
|
-
import { BalanceChangeGroup as
|
|
38
|
-
import { BalanceChangeRow as
|
|
39
|
-
import { PoolStateChangeCard as
|
|
40
|
-
import { StateChangeCard as
|
|
41
|
-
import { buildPoolOperationLabels as
|
|
42
|
-
import { resolveToken as
|
|
13
|
+
import { computeTransactionConfirmDialogLayout as O } from "./confirm/dialog/computeTransactionConfirmDialogLayout.js";
|
|
14
|
+
import { TransactionConfirmDialogTest as B, transactionConfirmDialogShellVariants as b, transactionConfirmModalContainerVariants as F, transactionConfirmPreviewScrollVariants as L, transactionConfirmShellContentVariants as y } from "./confirm/dialog/constants.js";
|
|
15
|
+
import { TransactionConfirmDialogView as H } from "./confirm/dialog/TransactionConfirmDialogView.js";
|
|
16
|
+
import { TransactionConfirmPageView as G } from "./confirm/dialog/TransactionConfirmPageView.js";
|
|
17
|
+
import { TransactionConfirmShell as M } from "./confirm/dialog/TransactionConfirmShell.js";
|
|
18
|
+
import { TransactionConfirmShellTest as j } from "./confirm/dialog/TransactionConfirmShell.constants.js";
|
|
19
|
+
import { useTransactionConfirmDialog as z } from "./confirm/dialog/useTransactionConfirmDialog.js";
|
|
20
|
+
import { TransactionConfirmExecuteButton as K } from "./confirm/execution/TransactionConfirmExecuteButton.js";
|
|
21
|
+
import { OperationPreviewContent as Q } from "./confirm/preview/OperationPreviewContent.js";
|
|
22
|
+
import { TransactionConfirmExecuteButtonTest as X, TransactionConfirmFailureResultTest as Y, TransactionConfirmSuccessResultTest as Z, TransactionConfirmTxHashRowTest as _ } from "./confirm/result/constants.js";
|
|
23
|
+
import { TransactionConfirmFailureResult as oo } from "./confirm/result/TransactionConfirmFailureResult.js";
|
|
24
|
+
import { TransactionConfirmSuccessIcon as to } from "./confirm/result/TransactionConfirmSuccessIcon.js";
|
|
25
|
+
import { TransactionConfirmSuccessResult as no } from "./confirm/result/TransactionConfirmSuccessResult.js";
|
|
26
|
+
import { TransactionConfirmTxHashRow as io } from "./confirm/result/TransactionConfirmTxHashRow.js";
|
|
27
|
+
import { TransactionProgressStepperTest as mo } from "./confirm/stepper/constants.js";
|
|
28
|
+
import { TransactionProgressStepper as po } from "./confirm/stepper/TransactionProgressStepper.js";
|
|
29
|
+
import { shouldShowTransactionProgressStepper as lo } from "./confirm/stepper/transactionExecutionStepTypes.js";
|
|
30
|
+
import { PoolOperationConfirmDetailsTest as Co } from "./confirm/summary/constants.js";
|
|
31
|
+
import { PoolOperationConfirmDetails as uo } from "./confirm/summary/PoolOperationConfirmDetails.js";
|
|
32
|
+
import { OperationBody as Po } from "./operations/OperationBody.js";
|
|
33
|
+
import { OperationsCard as go, hasOperationView as ho } from "./operations/OperationsCard.js";
|
|
34
|
+
import { PoolDepositView as Ao } from "./operations/PoolDepositView.js";
|
|
35
|
+
import { PoolRow as Vo } from "./operations/PoolRow.js";
|
|
36
|
+
import { PoolWithdrawView as vo } from "./operations/PoolWithdrawView.js";
|
|
37
|
+
import { BalanceChangeGroup as bo } from "./state-change/BalanceChangeGroup.js";
|
|
38
|
+
import { BalanceChangeRow as Lo } from "./state-change/BalanceChangeRow.js";
|
|
39
|
+
import { PoolStateChangeCard as Eo } from "./state-change/PoolStateChangeCard.js";
|
|
40
|
+
import { StateChangeCard as ko } from "./state-change/StateChangeCard.js";
|
|
41
|
+
import { buildPoolOperationLabels as Io } from "./utils/addressLabels.js";
|
|
42
|
+
import { resolveToken as Wo } from "./utils/poolTokenInfo.js";
|
|
43
43
|
export {
|
|
44
|
-
|
|
44
|
+
t as AddressAvatar,
|
|
45
45
|
n as AddressParty,
|
|
46
46
|
i as AddressRow,
|
|
47
47
|
m as AmountRow,
|
|
48
|
-
|
|
49
|
-
|
|
48
|
+
bo as BalanceChangeGroup,
|
|
49
|
+
Lo as BalanceChangeRow,
|
|
50
50
|
l as CollapsibleCard,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
51
|
+
Po as OperationBody,
|
|
52
|
+
Q as OperationPreviewContent,
|
|
53
|
+
go as OperationsCard,
|
|
54
|
+
Ao as PoolDepositView,
|
|
55
|
+
uo as PoolOperationConfirmDetails,
|
|
56
|
+
Co as PoolOperationConfirmDetailsTest,
|
|
57
|
+
Vo as PoolRow,
|
|
58
|
+
Eo as PoolStateChangeCard,
|
|
59
|
+
vo as PoolWithdrawView,
|
|
60
|
+
C as SectionDivider,
|
|
61
|
+
ko as StateChangeCard,
|
|
62
62
|
R as TransactionConfirmAmountField,
|
|
63
|
-
|
|
63
|
+
S as TransactionConfirmAmountFieldTest,
|
|
64
64
|
D as TransactionConfirmAmountPair,
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
65
|
+
g as TransactionConfirmAmountPairTest,
|
|
66
|
+
B as TransactionConfirmDialogTest,
|
|
67
|
+
H as TransactionConfirmDialogView,
|
|
68
|
+
K as TransactionConfirmExecuteButton,
|
|
69
|
+
X as TransactionConfirmExecuteButtonTest,
|
|
70
|
+
oo as TransactionConfirmFailureResult,
|
|
71
|
+
Y as TransactionConfirmFailureResultTest,
|
|
72
|
+
G as TransactionConfirmPageView,
|
|
73
|
+
M as TransactionConfirmShell,
|
|
74
|
+
j as TransactionConfirmShellTest,
|
|
75
|
+
to as TransactionConfirmSuccessIcon,
|
|
76
|
+
no as TransactionConfirmSuccessResult,
|
|
77
|
+
Z as TransactionConfirmSuccessResultTest,
|
|
78
|
+
io as TransactionConfirmTxHashRow,
|
|
79
|
+
_ as TransactionConfirmTxHashRowTest,
|
|
80
|
+
po as TransactionProgressStepper,
|
|
81
|
+
mo as TransactionProgressStepperTest,
|
|
82
82
|
u as TransferList,
|
|
83
83
|
w as TransferRow,
|
|
84
|
-
|
|
85
|
-
|
|
84
|
+
Io as buildPoolOperationLabels,
|
|
85
|
+
O as computeTransactionConfirmDialogLayout,
|
|
86
86
|
p as getAddressLabel,
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
F as
|
|
92
|
-
|
|
87
|
+
ho as hasOperationView,
|
|
88
|
+
Wo as resolveToken,
|
|
89
|
+
lo as shouldShowTransactionProgressStepper,
|
|
90
|
+
b as transactionConfirmDialogShellVariants,
|
|
91
|
+
F as transactionConfirmModalContainerVariants,
|
|
92
|
+
L as transactionConfirmPreviewScrollVariants,
|
|
93
|
+
y as transactionConfirmShellContentVariants,
|
|
94
|
+
z as useTransactionConfirmDialog
|
|
93
95
|
};
|