@orderly.network/ui-order-entry 2.8.3 → 2.8.4
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/index.js +15 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +13 -13
package/dist/index.js
CHANGED
|
@@ -1082,6 +1082,21 @@ var Available = (props) => {
|
|
|
1082
1082
|
padding: false,
|
|
1083
1083
|
children: canTrade ? freeCollateral : 0
|
|
1084
1084
|
}
|
|
1085
|
+
),
|
|
1086
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
1087
|
+
ui.Button,
|
|
1088
|
+
{
|
|
1089
|
+
variant: "text",
|
|
1090
|
+
size: "xs",
|
|
1091
|
+
color: "secondary",
|
|
1092
|
+
className: "oui-p-0 hover:oui-text-base-contrast-80",
|
|
1093
|
+
onClick: () => {
|
|
1094
|
+
ui.modal.show("DepositAndWithdrawWithDialogId", {
|
|
1095
|
+
activeTab: "deposit"
|
|
1096
|
+
});
|
|
1097
|
+
},
|
|
1098
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(ui.AddCircleIcon, { opacity: 1 })
|
|
1099
|
+
}
|
|
1085
1100
|
)
|
|
1086
1101
|
] })
|
|
1087
1102
|
] });
|