@kodiak-finance/orderly-portfolio 2.8.20 → 2.8.21-alpha.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.
- package/dist/index.js +37 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +37 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +18 -18
package/dist/index.js
CHANGED
|
@@ -7403,6 +7403,12 @@ var PortfolioHandleMobile = (props) => {
|
|
|
7403
7403
|
name: t("trading.history")
|
|
7404
7404
|
});
|
|
7405
7405
|
};
|
|
7406
|
+
const onGotoSymbolPerformance = () => {
|
|
7407
|
+
props.routerAdapter?.onRouteChange({
|
|
7408
|
+
href: "/portfolio/symbol-performance" /* SymbolPerformance */,
|
|
7409
|
+
name: t("portfolio.symbolPerformance")
|
|
7410
|
+
});
|
|
7411
|
+
};
|
|
7406
7412
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
7407
7413
|
orderlyUi.Flex,
|
|
7408
7414
|
{
|
|
@@ -7481,6 +7487,37 @@ var PortfolioHandleMobile = (props) => {
|
|
|
7481
7487
|
/* @__PURE__ */ jsxRuntime.jsx(orderlyUi.Text, { className: "oui-text-base-80 oui-text-2xs", children: t("trading.history") })
|
|
7482
7488
|
]
|
|
7483
7489
|
}
|
|
7490
|
+
),
|
|
7491
|
+
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
7492
|
+
orderlyUi.Flex,
|
|
7493
|
+
{
|
|
7494
|
+
direction: "column",
|
|
7495
|
+
gapY: 2,
|
|
7496
|
+
itemAlign: "center",
|
|
7497
|
+
className: "oui-flex-1 oui-cursor-pointer",
|
|
7498
|
+
onClick: onGotoSymbolPerformance,
|
|
7499
|
+
children: [
|
|
7500
|
+
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "oui-flex oui-size-[48px] oui-items-center oui-justify-center oui-rounded-xl oui-bg-base-9", children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
7501
|
+
"svg",
|
|
7502
|
+
{
|
|
7503
|
+
width: "28",
|
|
7504
|
+
height: "28",
|
|
7505
|
+
viewBox: "0 0 18 18",
|
|
7506
|
+
fill: "none",
|
|
7507
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
7508
|
+
className: "oui-text-white",
|
|
7509
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
7510
|
+
"path",
|
|
7511
|
+
{
|
|
7512
|
+
d: "M13.5 3.75C12.8096 3.75 12.375 4.18467 12.375 4.875V12.375C12.375 13.0654 12.8096 13.5 13.5 13.5H14.625C15.3154 13.5 15.75 13.0654 15.75 12.375V4.875C15.75 4.18467 15.3154 3.75 14.625 3.75H13.5ZM13.5 5.25H14.625V12.375H13.5V5.25ZM8.25 6.75C7.55964 6.75 7.125 7.18467 7.125 7.875V12.375C7.125 13.0654 7.55964 13.5 8.25 13.5H9.375C10.0654 13.5 10.5 13.0654 10.5 12.375V7.875C10.5 7.18467 10.0654 6.75 9.375 6.75H8.25ZM8.25 8.25H9.375V12.375H8.25V8.25ZM3 9.75C2.30964 9.75 1.875 10.1847 1.875 10.875V12.375C1.875 13.0654 2.30964 13.5 3 13.5H4.125C4.81536 13.5 5.25 13.0654 5.25 12.375V10.875C5.25 10.1847 4.81536 9.75 4.125 9.75H3ZM3 11.25H4.125V12.375H3V11.25Z",
|
|
7513
|
+
fill: "currentColor"
|
|
7514
|
+
}
|
|
7515
|
+
)
|
|
7516
|
+
}
|
|
7517
|
+
) }),
|
|
7518
|
+
/* @__PURE__ */ jsxRuntime.jsx(orderlyUi.Text, { className: "oui-text-base-80 oui-text-2xs", children: t("portfolio.symbolPerformance") })
|
|
7519
|
+
]
|
|
7520
|
+
}
|
|
7484
7521
|
)
|
|
7485
7522
|
]
|
|
7486
7523
|
}
|