tek-wallet 0.0.197 → 0.0.198
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.
|
@@ -86,14 +86,13 @@ var CopyTextComponent = function (_a) {
|
|
|
86
86
|
display: "flex",
|
|
87
87
|
alignItems: "center",
|
|
88
88
|
justifyContent: "center",
|
|
89
|
-
gap: theme.
|
|
89
|
+
gap: theme.mixins.gaps.g4,
|
|
90
90
|
opacity: showSuccess ? 1 : 0,
|
|
91
91
|
position: "absolute",
|
|
92
|
-
inset: 0,
|
|
93
|
-
backgroundColor:
|
|
92
|
+
inset: "-0.125rem",
|
|
93
|
+
backgroundColor: theme.palette.background.black64,
|
|
94
94
|
backdropFilter: "blur(12px)",
|
|
95
95
|
borderRadius: theme.mixins.theBorderRadius.r12,
|
|
96
|
-
WebkitBackdropFilter: "blur(12px)",
|
|
97
96
|
transition: "opacity 0.3s ease-in-out",
|
|
98
97
|
}, children: [iconSuccess || ((0, jsx_runtime_1.jsx)(Icon_1.default, { src: (0, getIcon_1.default)("copied_check"), sx: {
|
|
99
98
|
width: "1rem",
|
|
@@ -149,7 +149,7 @@ var DepositFunction = (0, react_1.forwardRef)(function (props, ref) {
|
|
|
149
149
|
alignSelf: "center",
|
|
150
150
|
borderRadius: theme.mixins.theBorderRadius.r12,
|
|
151
151
|
overflow: "hidden",
|
|
152
|
-
backgroundColor: theme.palette.background.
|
|
152
|
+
backgroundColor: theme.palette.background.white,
|
|
153
153
|
backdropFilter: "blur(10px)",
|
|
154
154
|
}, children: (0, jsx_runtime_1.jsx)(QRCode_1.default, { value: qrCodeValue, title: "Deposit ".concat(selectedToken === null || selectedToken === void 0 ? void 0 : selectedToken.name), logo: (0, getIcon_1.default)("ton"), bgColor: "transparent" }) }), (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign(__assign({}, theme.mixins.column), { gap: theme.mixins.gaps.g4, color: "text.white" }), children: [(0, jsx_runtime_1.jsx)(Text_1.default, { sx: __assign({}, theme.mixins.valueDescription), children: "Network" }), (0, jsx_runtime_1.jsxs)(material_1.Box, { component: "button", sx: __assign(__assign({}, theme.mixins.row), { gap: theme.mixins.gaps.g2, cursor: "pointer", transition: "transform 0.3s ease-in-out", "&:active": {
|
|
155
155
|
transform: "translateX(0.5rem)",
|
|
@@ -77,8 +77,8 @@ var LockToken = function (props) {
|
|
|
77
77
|
var _e = (0, react_1.useState)(undefined), errorAmount = _e[0], setErrorAmount = _e[1];
|
|
78
78
|
var _f = (0, react_1.useState)(Button_1.BUTTON_STATUS.ENABLED), buttonStatus = _f[0], setButtonStatus = _f[1];
|
|
79
79
|
var validateAmount = (0, react_1.useCallback)(function (lockData) {
|
|
80
|
-
console.warn("🚀 ~ validateAmount ~ lockData:", lockData, lockTokens);
|
|
81
80
|
var token = lockTokens === null || lockTokens === void 0 ? void 0 : lockTokens.find(function (token) { return token.slug === lockData.tokenSlug; });
|
|
81
|
+
console.warn("🚀 ~ validateAmount ~ lockData:", lockData, lockTokens, token);
|
|
82
82
|
setToken(token);
|
|
83
83
|
if (!token) {
|
|
84
84
|
setError(LockTokenError.TOKEN_NOT_FOUND);
|
|
@@ -114,6 +114,6 @@ var LockToken = function (props) {
|
|
|
114
114
|
(0, react_1.useEffect)(function () {
|
|
115
115
|
validateAmount(props.lockData);
|
|
116
116
|
}, [validateAmount]);
|
|
117
|
-
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsx)(ConfirmLayout_1.default, { ref: confirmByPasscodeDrawerRef, action: type_1.ActionConfirm.LOCK, trigger: props.trigger, children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign(__assign({}, theme.mixins.column), { gap: theme.mixins.gaps.g16 }), children: [(0, jsx_runtime_1.jsx)(material_1.Box, { sx: __assign({}, theme.mixins.paper), children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign({}, theme.mixins.column), children: [(0, jsx_runtime_1.jsx)(LineValue_1.default, { field: "Amount", value: (0, jsx_runtime_1.jsx)(Formatter_1.default, { value: props.lockData.amount, unit: token === null || token === void 0 ? void 0 : token.name }) }),
|
|
117
|
+
return ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, jsx_runtime_1.jsx)(ConfirmLayout_1.default, { ref: confirmByPasscodeDrawerRef, action: type_1.ActionConfirm.LOCK, trigger: props.trigger, children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign(__assign({}, theme.mixins.column), { gap: theme.mixins.gaps.g16 }), children: [(0, jsx_runtime_1.jsx)(material_1.Box, { sx: __assign({}, theme.mixins.paper), children: (0, jsx_runtime_1.jsxs)(material_1.Box, { sx: __assign({}, theme.mixins.column), children: [(0, jsx_runtime_1.jsx)(LineValue_1.default, { field: "Amount", value: (0, jsx_runtime_1.jsx)(Formatter_1.default, { value: props.lockData.amount, unit: token === null || token === void 0 ? void 0 : token.name }) }), !error && ((0, jsx_runtime_1.jsxs)(Text_1.default, { sx: __assign(__assign({}, theme.mixins.validationError), { mt: theme.mixins.gaps.g6 }), children: [error, " ", !!errorAmount && ((0, jsx_runtime_1.jsx)(Formatter_1.default, { value: errorAmount, unit: token === null || token === void 0 ? void 0 : token.name }))] }))] }) }), (0, jsx_runtime_1.jsx)(ConfirmByPasscode_1.default, { action: type_1.ActionConfirm.LOCK, onConfirmSuccess: handleLockToken, children: (0, jsx_runtime_1.jsx)(Button_1.default.Primary, { status: !!error ? Button_1.BUTTON_STATUS.DISABLED : buttonStatus, sx: { width: "100%" }, children: "Confirm" }) })] }) }) }));
|
|
118
118
|
};
|
|
119
119
|
exports.default = LockToken;
|