@loafmarkets/ui 0.1.264 → 0.1.266
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 +207 -152
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +208 -153
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12,7 +12,7 @@ import * as LightweightCharts from 'lightweight-charts';
|
|
|
12
12
|
import { MdKingBed, MdBathtub, MdDirectionsCar, MdPool, MdYard, MdFitnessCenter } from 'react-icons/md';
|
|
13
13
|
import { BiChevronUp, BiChevronDown, BiX, BiCoin, BiWallet, BiCreditCard, BiCalendar, BiInfoCircle, BiPencil, BiImages, BiVideo, BiMap } from 'react-icons/bi';
|
|
14
14
|
import { FaChartLine, FaBitcoin } from 'react-icons/fa';
|
|
15
|
-
import {
|
|
15
|
+
import { FiEdit2 } from 'react-icons/fi';
|
|
16
16
|
|
|
17
17
|
// src/components/button.tsx
|
|
18
18
|
function cn(...inputs) {
|
|
@@ -13640,6 +13640,7 @@ function PortfolioActivityPanel({
|
|
|
13640
13640
|
};
|
|
13641
13641
|
const [expandedPositions, setExpandedPositions] = useState(/* @__PURE__ */ new Set());
|
|
13642
13642
|
const [allExpanded, setAllExpanded] = useState(false);
|
|
13643
|
+
const [sortDropdownOpen, setSortDropdownOpen] = useState(false);
|
|
13643
13644
|
const togglePosition = (tokenName) => {
|
|
13644
13645
|
setExpandedPositions((prev) => {
|
|
13645
13646
|
const next = new Set(prev);
|
|
@@ -13667,12 +13668,6 @@ function PortfolioActivityPanel({
|
|
|
13667
13668
|
}
|
|
13668
13669
|
};
|
|
13669
13670
|
const sortKeys = ["asset", "units", "value", "avgPrice", "currentPrice", "pnl"];
|
|
13670
|
-
const cycleSortKey = () => {
|
|
13671
|
-
const idx = sortKeys.indexOf(posSortKey);
|
|
13672
|
-
const nextKey = sortKeys[(idx + 1) % sortKeys.length];
|
|
13673
|
-
setPosSortKey(nextKey);
|
|
13674
|
-
setPosSortAsc(true);
|
|
13675
|
-
};
|
|
13676
13671
|
const sortedPositions = useMemo(() => {
|
|
13677
13672
|
const arr = [...positions];
|
|
13678
13673
|
const dir = posSortAsc ? 1 : -1;
|
|
@@ -13789,16 +13784,22 @@ function PortfolioActivityPanel({
|
|
|
13789
13784
|
activeTab === "positions" && showPositionsTab && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
13790
13785
|
positions.length === 0 && /* @__PURE__ */ jsx(EmptyState, { children: "No positions yet. Subscribe to an offering or buy on the secondary market." }),
|
|
13791
13786
|
positions.length > 0 && compactPositions && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
13792
|
-
/* @__PURE__ */ jsxs(
|
|
13793
|
-
/* @__PURE__ */ jsxs(
|
|
13794
|
-
|
|
13795
|
-
|
|
13796
|
-
|
|
13797
|
-
|
|
13787
|
+
/* @__PURE__ */ jsxs(CToolbar, { children: [
|
|
13788
|
+
/* @__PURE__ */ jsxs(CSortWrap, { children: [
|
|
13789
|
+
/* @__PURE__ */ jsxs(CSortBtn, { onClick: () => setSortDropdownOpen((v) => !v), children: [
|
|
13790
|
+
"Sort by: ",
|
|
13791
|
+
sortKeyLabel(posSortKey),
|
|
13792
|
+
" \u25BE"
|
|
13793
|
+
] }),
|
|
13794
|
+
sortDropdownOpen && /* @__PURE__ */ jsx(CSortDropdown, { children: sortKeys.map((k) => /* @__PURE__ */ jsx(CSortOption, { $active: posSortKey === k, onClick: () => {
|
|
13795
|
+
setPosSortKey(k);
|
|
13796
|
+
setPosSortAsc(true);
|
|
13797
|
+
setSortDropdownOpen(false);
|
|
13798
|
+
}, children: sortKeyLabel(k) }, k)) })
|
|
13798
13799
|
] }),
|
|
13799
|
-
/* @__PURE__ */ jsxs(
|
|
13800
|
-
/* @__PURE__ */ jsx(
|
|
13801
|
-
onClosePosition && /* @__PURE__ */ jsx(
|
|
13800
|
+
/* @__PURE__ */ jsxs(CToolbarActions, { children: [
|
|
13801
|
+
/* @__PURE__ */ jsx(CToolbarLink, { onClick: toggleExpandAll, children: allExpanded ? "Collapse All" : "Expand All" }),
|
|
13802
|
+
onClosePosition && /* @__PURE__ */ jsx(CToolbarLink, { onClick: () => setCloseAllOpen(true), children: "Sell All" })
|
|
13802
13803
|
] })
|
|
13803
13804
|
] }),
|
|
13804
13805
|
pageSlice(sortedPositions).map((pos) => {
|
|
@@ -13807,45 +13808,59 @@ function PortfolioActivityPanel({
|
|
|
13807
13808
|
const pnl = pos.propertyPnl ?? currentValue - costBasis;
|
|
13808
13809
|
const pnlPercent = pos.propertyPnlPercent ?? pos.percentChange ?? 0;
|
|
13809
13810
|
const isPositive = pnl >= 0;
|
|
13810
|
-
const
|
|
13811
|
-
|
|
13812
|
-
|
|
13813
|
-
|
|
13811
|
+
const posExpanded = expandedPositions.has(pos.tokenName) || allExpanded;
|
|
13812
|
+
const ticker = pos.tokenName.toUpperCase().slice(0, 7);
|
|
13813
|
+
return /* @__PURE__ */ jsxs("div", { children: [
|
|
13814
|
+
/* @__PURE__ */ jsxs(CRow, { $expanded: posExpanded, onClick: () => togglePosition(pos.tokenName), children: [
|
|
13815
|
+
/* @__PURE__ */ jsxs(CAssetCell, { onClick: (e) => {
|
|
13814
13816
|
e.stopPropagation();
|
|
13815
13817
|
onPositionClick?.(pos.tokenName, pos.isIpoAllocation);
|
|
13816
|
-
}, children:
|
|
13817
|
-
|
|
13818
|
-
|
|
13819
|
-
|
|
13818
|
+
}, children: [
|
|
13819
|
+
/* @__PURE__ */ jsx(CCellLabel, { children: "Asset" }),
|
|
13820
|
+
/* @__PURE__ */ jsxs(CAssetName, { children: [
|
|
13821
|
+
pos.imageUrl && /* @__PURE__ */ jsx(CAssetLogo, { src: pos.imageUrl, alt: "" }),
|
|
13822
|
+
pos.tokenName
|
|
13823
|
+
] })
|
|
13820
13824
|
] }),
|
|
13821
|
-
/* @__PURE__ */ jsxs(
|
|
13822
|
-
|
|
13823
|
-
|
|
13824
|
-
"
|
|
13825
|
-
|
|
13826
|
-
|
|
13827
|
-
|
|
13825
|
+
/* @__PURE__ */ jsxs(CUnitsCell, { children: [
|
|
13826
|
+
/* @__PURE__ */ jsx(CCellLabel, { children: "Units" }),
|
|
13827
|
+
formatNumber2(pos.quantity, pos.quantity >= 100 ? 0 : 2),
|
|
13828
|
+
" ",
|
|
13829
|
+
ticker
|
|
13830
|
+
] }),
|
|
13831
|
+
/* @__PURE__ */ jsxs(CPnlCell, { children: [
|
|
13832
|
+
/* @__PURE__ */ jsx(CCellLabel, { children: "PNL (%)" }),
|
|
13833
|
+
/* @__PURE__ */ jsxs(CPnlValue, { $positive: isPositive, children: [
|
|
13834
|
+
isPositive ? "+" : "-",
|
|
13835
|
+
formatCurrency4(Math.abs(pnl))
|
|
13836
|
+
] }),
|
|
13837
|
+
/* @__PURE__ */ jsxs(CPnlPct, { $positive: isPositive, children: [
|
|
13838
|
+
"(",
|
|
13839
|
+
isPositive ? "+" : "",
|
|
13840
|
+
pnlPercent.toFixed(1),
|
|
13841
|
+
"%)"
|
|
13842
|
+
] })
|
|
13828
13843
|
] }),
|
|
13829
|
-
/* @__PURE__ */ jsx(
|
|
13844
|
+
/* @__PURE__ */ jsx(CChevronWrap, { $open: posExpanded, children: /* @__PURE__ */ jsx("svg", { width: "14", height: "14", viewBox: "0 0 24 24", fill: "none", stroke: "rgba(255,255,255,0.5)", strokeWidth: "2.5", strokeLinecap: "round", strokeLinejoin: "round", children: /* @__PURE__ */ jsx("polyline", { points: "6 9 12 15 18 9" }) }) })
|
|
13830
13845
|
] }),
|
|
13831
|
-
|
|
13832
|
-
/* @__PURE__ */ jsxs(
|
|
13833
|
-
/* @__PURE__ */ jsxs(
|
|
13834
|
-
/* @__PURE__ */ jsx(
|
|
13835
|
-
/* @__PURE__ */ jsx(
|
|
13846
|
+
posExpanded && /* @__PURE__ */ jsxs(CExpandedWrap, { children: [
|
|
13847
|
+
/* @__PURE__ */ jsxs(CDetailGrid, { children: [
|
|
13848
|
+
/* @__PURE__ */ jsxs(CDetailItem, { children: [
|
|
13849
|
+
/* @__PURE__ */ jsx(CDLabel, { children: "Position Value" }),
|
|
13850
|
+
/* @__PURE__ */ jsx(CDValue, { children: formatCurrency4(currentValue, { minimumFractionDigits: 0, maximumFractionDigits: 0 }) })
|
|
13836
13851
|
] }),
|
|
13837
|
-
/* @__PURE__ */ jsxs(
|
|
13838
|
-
/* @__PURE__ */ jsx(
|
|
13839
|
-
/* @__PURE__ */ jsx(
|
|
13852
|
+
/* @__PURE__ */ jsxs(CDetailItem, { children: [
|
|
13853
|
+
/* @__PURE__ */ jsx(CDLabel, { children: "Avg Price" }),
|
|
13854
|
+
/* @__PURE__ */ jsx(CDValue, { children: formatCurrency4(pos.averageEntryPrice) })
|
|
13840
13855
|
] }),
|
|
13841
|
-
/* @__PURE__ */ jsxs(
|
|
13842
|
-
/* @__PURE__ */ jsx(
|
|
13843
|
-
/* @__PURE__ */ jsx(
|
|
13856
|
+
/* @__PURE__ */ jsxs(CDetailItem, { children: [
|
|
13857
|
+
/* @__PURE__ */ jsx(CDLabel, { children: "Current Price" }),
|
|
13858
|
+
/* @__PURE__ */ jsx(CDValue, { children: formatCurrency4(pos.marketPrice) })
|
|
13844
13859
|
] })
|
|
13845
13860
|
] }),
|
|
13846
|
-
onClosePosition && /* @__PURE__ */ jsxs(
|
|
13847
|
-
/* @__PURE__ */ jsx(
|
|
13848
|
-
/* @__PURE__ */ jsx(
|
|
13861
|
+
onClosePosition && /* @__PURE__ */ jsxs(CActionRow, { children: [
|
|
13862
|
+
/* @__PURE__ */ jsx(CCloseBtn, { onClick: () => onClosePosition(pos.tokenName, "market", pos.quantity, pos.marketPrice), children: "Market Sell" }),
|
|
13863
|
+
/* @__PURE__ */ jsx(CCloseBtn, { onClick: () => onClosePosition(pos.tokenName, "limit", pos.quantity, pos.marketPrice), children: "Limit Sell" })
|
|
13849
13864
|
] })
|
|
13850
13865
|
] })
|
|
13851
13866
|
] }, pos.tokenName);
|
|
@@ -14175,7 +14190,13 @@ function PortfolioActivityPanel({
|
|
|
14175
14190
|
] }) })
|
|
14176
14191
|
] });
|
|
14177
14192
|
}
|
|
14178
|
-
var Container3 = styled9.div
|
|
14193
|
+
var Container3 = styled9.div`
|
|
14194
|
+
scrollbar-width: thin;
|
|
14195
|
+
scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
|
|
14196
|
+
&::-webkit-scrollbar { width: 4px; }
|
|
14197
|
+
&::-webkit-scrollbar-track { background: transparent; }
|
|
14198
|
+
&::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 2px; }
|
|
14199
|
+
`;
|
|
14179
14200
|
var PanelTitle = styled9.h3`
|
|
14180
14201
|
font-size: 1rem;
|
|
14181
14202
|
font-weight: 600;
|
|
@@ -14746,147 +14767,181 @@ var CloseAllConfirmBtn = styled9.button`
|
|
|
14746
14767
|
background: rgba(246, 70, 93, 0.25);
|
|
14747
14768
|
}
|
|
14748
14769
|
`;
|
|
14749
|
-
var
|
|
14770
|
+
var CToolbar = styled9.div`
|
|
14750
14771
|
display: flex;
|
|
14751
14772
|
align-items: center;
|
|
14752
14773
|
justify-content: space-between;
|
|
14753
|
-
padding: 0.
|
|
14754
|
-
|
|
14755
|
-
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
|
|
14774
|
+
padding: 0.3rem 0.6rem;
|
|
14775
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
|
|
14756
14776
|
`;
|
|
14757
|
-
var
|
|
14758
|
-
|
|
14759
|
-
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
14760
|
-
border-radius: 4px;
|
|
14761
|
-
padding: 0.2rem 0.6rem;
|
|
14762
|
-
font-size: 0.68rem;
|
|
14763
|
-
font-weight: 500;
|
|
14764
|
-
color: rgba(255, 255, 255, 0.6);
|
|
14765
|
-
cursor: pointer;
|
|
14766
|
-
transition: all 0.15s ease;
|
|
14767
|
-
|
|
14768
|
-
&:hover {
|
|
14769
|
-
color: rgba(255, 255, 255, 0.85);
|
|
14770
|
-
border-color: rgba(255, 255, 255, 0.2);
|
|
14771
|
-
}
|
|
14777
|
+
var CSortWrap = styled9.div`
|
|
14778
|
+
position: relative;
|
|
14772
14779
|
`;
|
|
14773
|
-
var
|
|
14780
|
+
var CSortBtn = styled9.button`
|
|
14781
|
+
font-size: 0.6rem;
|
|
14782
|
+
color: rgba(255, 255, 255, 0.45);
|
|
14783
|
+
background: none;
|
|
14784
|
+
border: none;
|
|
14785
|
+
cursor: pointer;
|
|
14774
14786
|
display: flex;
|
|
14775
14787
|
align-items: center;
|
|
14776
|
-
gap: 0.
|
|
14788
|
+
gap: 0.2rem;
|
|
14789
|
+
&:hover { color: rgba(255, 255, 255, 0.7); }
|
|
14777
14790
|
`;
|
|
14778
|
-
var
|
|
14779
|
-
|
|
14791
|
+
var CSortDropdown = styled9.div`
|
|
14792
|
+
position: absolute;
|
|
14793
|
+
top: 100%;
|
|
14794
|
+
left: 0;
|
|
14795
|
+
z-index: 10;
|
|
14796
|
+
margin-top: 2px;
|
|
14797
|
+
background: #1a1c24;
|
|
14780
14798
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
14781
|
-
border-radius:
|
|
14782
|
-
|
|
14783
|
-
|
|
14784
|
-
|
|
14785
|
-
color: rgba(255, 255, 255, 0.6);
|
|
14786
|
-
cursor: pointer;
|
|
14787
|
-
transition: all 0.15s ease;
|
|
14788
|
-
|
|
14789
|
-
&:hover {
|
|
14790
|
-
color: rgba(255, 255, 255, 0.85);
|
|
14791
|
-
border-color: rgba(255, 255, 255, 0.2);
|
|
14792
|
-
}
|
|
14799
|
+
border-radius: 6px;
|
|
14800
|
+
overflow: hidden;
|
|
14801
|
+
min-width: 120px;
|
|
14802
|
+
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
|
|
14793
14803
|
`;
|
|
14794
|
-
var
|
|
14795
|
-
|
|
14796
|
-
|
|
14797
|
-
|
|
14798
|
-
|
|
14799
|
-
font-
|
|
14800
|
-
|
|
14801
|
-
|
|
14804
|
+
var CSortOption = styled9.button`
|
|
14805
|
+
display: block;
|
|
14806
|
+
width: 100%;
|
|
14807
|
+
padding: 0.4rem 0.6rem;
|
|
14808
|
+
font-size: 0.6rem;
|
|
14809
|
+
font-weight: ${(p) => p.$active ? 600 : 400};
|
|
14810
|
+
color: ${(p) => p.$active ? "#E6C87E" : "rgba(255, 255, 255, 0.6)"};
|
|
14811
|
+
background: ${(p) => p.$active ? "rgba(230, 200, 126, 0.06)" : "none"};
|
|
14812
|
+
border: none;
|
|
14813
|
+
text-align: left;
|
|
14802
14814
|
cursor: pointer;
|
|
14803
|
-
|
|
14804
|
-
|
|
14805
|
-
&:hover {
|
|
14806
|
-
background: rgba(246, 70, 93, 0.15);
|
|
14807
|
-
border-color: rgba(246, 70, 93, 0.4);
|
|
14808
|
-
}
|
|
14815
|
+
&:hover { background: rgba(255, 255, 255, 0.05); }
|
|
14809
14816
|
`;
|
|
14810
|
-
var
|
|
14811
|
-
|
|
14812
|
-
|
|
14813
|
-
|
|
14814
|
-
|
|
14815
|
-
|
|
14817
|
+
var CToolbarActions = styled9.div`
|
|
14818
|
+
display: flex;
|
|
14819
|
+
gap: 0.5rem;
|
|
14820
|
+
`;
|
|
14821
|
+
var CToolbarLink = styled9.button`
|
|
14822
|
+
font-size: 0.58rem;
|
|
14823
|
+
font-weight: 500;
|
|
14824
|
+
color: rgba(255, 255, 255, 0.45);
|
|
14825
|
+
background: none;
|
|
14826
|
+
border: none;
|
|
14827
|
+
cursor: pointer;
|
|
14828
|
+
text-decoration: underline;
|
|
14829
|
+
text-decoration-color: rgba(255, 255, 255, 0.15);
|
|
14830
|
+
&:hover { color: rgba(255, 255, 255, 0.7); }
|
|
14816
14831
|
`;
|
|
14817
|
-
var
|
|
14832
|
+
var CRow = styled9.button`
|
|
14818
14833
|
display: grid;
|
|
14819
|
-
grid-template-columns: 1fr 1fr
|
|
14834
|
+
grid-template-columns: 1fr 1fr 1fr 24px;
|
|
14820
14835
|
align-items: center;
|
|
14821
|
-
|
|
14822
|
-
|
|
14836
|
+
width: calc(100% - 1rem);
|
|
14837
|
+
margin: 0.25rem 0.5rem;
|
|
14838
|
+
margin-bottom: ${(p) => p.$expanded ? "0" : "0.25rem"};
|
|
14839
|
+
padding: 0.55rem 0.65rem;
|
|
14840
|
+
background: rgba(255, 255, 255, 0.035);
|
|
14841
|
+
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
14842
|
+
border-bottom: ${(p) => p.$expanded ? "none" : "1px solid rgba(255, 255, 255, 0.06)"};
|
|
14843
|
+
border-radius: ${(p) => p.$expanded ? "8px 8px 0 0" : "8px"};
|
|
14823
14844
|
cursor: pointer;
|
|
14824
|
-
|
|
14825
|
-
|
|
14826
|
-
|
|
14827
|
-
&:
|
|
14828
|
-
|
|
14829
|
-
}
|
|
14845
|
+
text-align: left;
|
|
14846
|
+
transition: background 0.15s;
|
|
14847
|
+
outline: none;
|
|
14848
|
+
&:active { background: rgba(255, 255, 255, 0.06); }
|
|
14849
|
+
&:focus { outline: none; }
|
|
14850
|
+
&:focus-visible { outline: none; }
|
|
14830
14851
|
`;
|
|
14831
|
-
var
|
|
14832
|
-
font-size: 0.
|
|
14852
|
+
var CCellLabel = styled9.div`
|
|
14853
|
+
font-size: 0.6rem;
|
|
14854
|
+
font-weight: 500;
|
|
14855
|
+
color: rgba(255, 255, 255, 0.3);
|
|
14856
|
+
margin-bottom: 1px;
|
|
14857
|
+
`;
|
|
14858
|
+
var CAssetCell = styled9.div``;
|
|
14859
|
+
var CAssetName = styled9.div`
|
|
14860
|
+
font-size: 0.85rem;
|
|
14833
14861
|
font-weight: 600;
|
|
14834
14862
|
color: #fff;
|
|
14835
|
-
|
|
14836
|
-
|
|
14837
|
-
|
|
14838
|
-
text-decoration: underline;
|
|
14839
|
-
color: var(--color-accent, #E6C87E);
|
|
14840
|
-
}
|
|
14863
|
+
display: flex;
|
|
14864
|
+
align-items: center;
|
|
14865
|
+
gap: 0.3rem;
|
|
14841
14866
|
`;
|
|
14842
|
-
var
|
|
14843
|
-
|
|
14844
|
-
|
|
14867
|
+
var CAssetLogo = styled9.img`
|
|
14868
|
+
width: 22px;
|
|
14869
|
+
height: 22px;
|
|
14870
|
+
border-radius: 4px;
|
|
14871
|
+
object-fit: cover;
|
|
14872
|
+
flex-shrink: 0;
|
|
14845
14873
|
`;
|
|
14846
|
-
var
|
|
14847
|
-
font-size: 0.
|
|
14874
|
+
var CUnitsCell = styled9.div`
|
|
14875
|
+
font-size: 0.78rem;
|
|
14876
|
+
color: rgba(255, 255, 255, 0.8);
|
|
14877
|
+
font-variant-numeric: tabular-nums;
|
|
14878
|
+
`;
|
|
14879
|
+
var CPnlCell = styled9.div``;
|
|
14880
|
+
var CPnlValue = styled9.div`
|
|
14881
|
+
font-size: 0.78rem;
|
|
14848
14882
|
font-weight: 600;
|
|
14849
14883
|
color: ${(p) => p.$positive ? "#0ecb81" : "#f6465d"};
|
|
14850
|
-
|
|
14884
|
+
font-variant-numeric: tabular-nums;
|
|
14851
14885
|
`;
|
|
14852
|
-
var
|
|
14886
|
+
var CPnlPct = styled9.div`
|
|
14887
|
+
font-size: 0.62rem;
|
|
14888
|
+
color: ${(p) => p.$positive ? "rgba(14, 203, 129, 0.65)" : "rgba(246, 70, 93, 0.65)"};
|
|
14889
|
+
margin-top: 1px;
|
|
14890
|
+
`;
|
|
14891
|
+
var CChevronWrap = styled9.span`
|
|
14853
14892
|
display: flex;
|
|
14854
14893
|
align-items: center;
|
|
14855
14894
|
justify-content: center;
|
|
14856
|
-
|
|
14857
|
-
|
|
14858
|
-
transform: rotate(${(p) => p.$expanded ? "180deg" : "0deg"});
|
|
14859
|
-
`;
|
|
14860
|
-
var CompactCardBody = styled9.div`
|
|
14861
|
-
padding: 0 0.5rem 0.6rem;
|
|
14895
|
+
transition: transform 0.2s;
|
|
14896
|
+
transform: rotate(${(p) => p.$open ? "180deg" : "0deg"});
|
|
14862
14897
|
`;
|
|
14863
|
-
var
|
|
14864
|
-
|
|
14865
|
-
|
|
14866
|
-
|
|
14867
|
-
|
|
14868
|
-
border-
|
|
14869
|
-
|
|
14898
|
+
var CExpandedWrap = styled9.div`
|
|
14899
|
+
margin: 0 0.5rem 0.25rem;
|
|
14900
|
+
padding: 0.4rem 0.65rem 0.5rem;
|
|
14901
|
+
background: rgba(255, 255, 255, 0.035);
|
|
14902
|
+
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
14903
|
+
border-top: none;
|
|
14904
|
+
border-radius: 0 0 8px 8px;
|
|
14870
14905
|
`;
|
|
14871
|
-
var
|
|
14872
|
-
display:
|
|
14873
|
-
|
|
14874
|
-
gap: 0.
|
|
14906
|
+
var CDetailGrid = styled9.div`
|
|
14907
|
+
display: grid;
|
|
14908
|
+
grid-template-columns: 1fr 1fr 1fr 24px;
|
|
14909
|
+
gap: 0.45rem 0;
|
|
14875
14910
|
`;
|
|
14876
|
-
var
|
|
14877
|
-
|
|
14878
|
-
|
|
14879
|
-
|
|
14911
|
+
var CDetailItem = styled9.div``;
|
|
14912
|
+
var CDLabel = styled9.div`
|
|
14913
|
+
font-size: 0.6rem;
|
|
14914
|
+
color: rgba(255, 255, 255, 0.3);
|
|
14915
|
+
margin-bottom: 1px;
|
|
14880
14916
|
`;
|
|
14881
|
-
var
|
|
14917
|
+
var CDValue = styled9.div`
|
|
14882
14918
|
font-size: 0.78rem;
|
|
14883
|
-
color: #fff;
|
|
14884
14919
|
font-weight: 500;
|
|
14920
|
+
color: rgba(255, 255, 255, 0.85);
|
|
14921
|
+
font-variant-numeric: tabular-nums;
|
|
14885
14922
|
`;
|
|
14886
|
-
var
|
|
14887
|
-
display:
|
|
14923
|
+
var CActionRow = styled9.div`
|
|
14924
|
+
display: grid;
|
|
14925
|
+
grid-template-columns: 1fr 1fr;
|
|
14888
14926
|
gap: 0.5rem;
|
|
14889
|
-
|
|
14927
|
+
margin-top: 0.5rem;
|
|
14928
|
+
`;
|
|
14929
|
+
var CCloseBtn = styled9.button`
|
|
14930
|
+
background: transparent;
|
|
14931
|
+
border: 1px solid rgba(230, 200, 126, 0.25);
|
|
14932
|
+
border-radius: 6px;
|
|
14933
|
+
padding: 0.45rem 0.6rem;
|
|
14934
|
+
font-size: 0.72rem;
|
|
14935
|
+
font-weight: 600;
|
|
14936
|
+
color: #E6C87E;
|
|
14937
|
+
cursor: pointer;
|
|
14938
|
+
white-space: nowrap;
|
|
14939
|
+
text-align: center;
|
|
14940
|
+
transition: all 0.15s ease;
|
|
14941
|
+
&:hover {
|
|
14942
|
+
background: rgba(230, 200, 126, 0.1);
|
|
14943
|
+
border-color: rgba(230, 200, 126, 0.5);
|
|
14944
|
+
}
|
|
14890
14945
|
`;
|
|
14891
14946
|
function PropertyBuy({
|
|
14892
14947
|
propertyName = "Loaf Property",
|