@unifold/ui-web 0.1.34 → 0.1.35

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.mjs CHANGED
@@ -48606,24 +48606,34 @@ function CurrencyModal({
48606
48606
  onClose: handleClose
48607
48607
  }
48608
48608
  ),
48609
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "uf-relative", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
48610
- "input",
48611
- {
48612
- type: "text",
48613
- value: searchQuery,
48614
- onChange: (e) => setSearchQuery(e.target.value),
48615
- placeholder: "Search",
48616
- className: "uf-w-full uf-px-4 uf-py-2.5 uf-text-sm uf-outline-none focus:uf-ring-2 focus:uf-ring-ring/30",
48617
- style: {
48618
- backgroundColor: components.search.backgroundColor,
48619
- color: components.search.inputColor,
48620
- fontFamily: fonts.regular,
48621
- borderRadius: components.input.borderRadius,
48622
- border: `${components.input.borderWidth}px solid ${components.input.borderColor}`
48609
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "uf-pb-2", children: [
48610
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
48611
+ "style",
48612
+ {
48613
+ dangerouslySetInnerHTML: {
48614
+ __html: `.uf-currency-modal-search::placeholder { color: ${components.search.placeholderColor}; }`
48615
+ }
48623
48616
  }
48624
- }
48625
- ) }) }),
48626
- /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "uf-flex-1 sm:uf-flex-none uf-overflow-y-auto uf-pb-6 [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden sm:uf-min-h-[200px] sm:uf-max-h-[400px]", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "uf-space-y-2", children: [
48617
+ ),
48618
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "uf-relative", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
48619
+ "input",
48620
+ {
48621
+ type: "text",
48622
+ value: searchQuery,
48623
+ onChange: (e) => setSearchQuery(e.target.value),
48624
+ placeholder: "Search",
48625
+ className: "uf-currency-modal-search uf-w-full uf-p-4 uf-text-sm uf-outline-none focus:uf-ring-2 focus:uf-ring-ring/30",
48626
+ style: {
48627
+ backgroundColor: components.search.backgroundColor,
48628
+ color: components.search.inputColor,
48629
+ fontFamily: fonts.regular,
48630
+ borderRadius: components.input.borderRadius,
48631
+ border: `${components.input.borderWidth}px solid ${components.input.borderColor}`
48632
+ }
48633
+ }
48634
+ ) })
48635
+ ] }),
48636
+ /* @__PURE__ */ (0, import_jsx_runtime16.jsx)("div", { className: "uf-flex-1 sm:uf-flex-none uf-overflow-y-auto uf-pb-4 [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden sm:uf-min-h-[200px] sm:uf-max-h-[400px]", children: /* @__PURE__ */ (0, import_jsx_runtime16.jsxs)("div", { className: "uf-space-y-2", children: [
48627
48637
  /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(
48628
48638
  CurrencyListSection,
48629
48639
  {
@@ -49145,188 +49155,153 @@ function DepositDetailContent({ execution }) {
49145
49155
  className: "uf-overflow-hidden uf-mb-3",
49146
49156
  style: { backgroundColor: components.card.backgroundColor, borderRadius: components.card.borderRadius, border: `${components.card.borderWidth}px solid ${components.card.borderColor}` },
49147
49157
  children: [
49148
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49149
- "div",
49150
- {
49151
- className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3 uf-border-b",
49152
- style: { borderColor: colors2.border },
49153
- children: [
49154
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49155
- "span",
49156
- {
49157
- className: "uf-text-sm",
49158
- style: {
49159
- color: components.card.labelColor,
49160
- fontFamily: fonts.regular
49161
- },
49162
- children: "Amount Sent"
49163
- }
49164
- ),
49165
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49166
- "span",
49167
- {
49168
- style: {
49169
- color: components.card.titleColor,
49170
- fontFamily: fonts.regular,
49171
- fontSize: "14px"
49172
- },
49173
- children: [
49174
- formatAmount(
49175
- execution.source_amount_base_unit,
49176
- execution.source_token_metadata?.decimals
49177
- ),
49178
- " ",
49179
- formatCurrency(execution.source_currency)
49180
- ]
49181
- }
49182
- )
49183
- ]
49184
- }
49185
- ),
49186
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49187
- "div",
49188
- {
49189
- className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3 uf-border-b",
49190
- style: { borderColor: colors2.border },
49191
- children: [
49192
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49193
- "span",
49194
- {
49195
- className: "uf-text-sm",
49196
- style: {
49197
- color: components.card.labelColor,
49198
- fontFamily: fonts.regular
49199
- },
49200
- children: "Amount Received"
49201
- }
49202
- ),
49203
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49204
- "span",
49205
- {
49206
- style: {
49207
- color: components.card.titleColor,
49208
- fontFamily: fonts.regular,
49209
- fontSize: "14px"
49210
- },
49211
- children: [
49212
- formatAmount(
49213
- execution.destination_amount_base_unit,
49214
- execution.destination_token_metadata?.decimals
49215
- ),
49216
- " ",
49217
- formatCurrency(execution.destination_currency)
49218
- ]
49219
- }
49220
- )
49221
- ]
49222
- }
49223
- ),
49224
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49225
- "div",
49226
- {
49227
- className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3 uf-border-b",
49228
- style: { borderColor: colors2.border },
49229
- children: [
49230
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49231
- "span",
49232
- {
49233
- className: "uf-text-sm",
49234
- style: {
49235
- color: components.card.labelColor,
49236
- fontFamily: fonts.regular
49237
- },
49238
- children: "USD Value"
49239
- }
49240
- ),
49241
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49242
- "span",
49243
- {
49244
- style: {
49245
- color: components.card.titleColor,
49246
- fontFamily: fonts.regular,
49247
- fontSize: "14px"
49248
- },
49249
- children: formatUsdAmount2(
49250
- execution.source_amount_usd,
49251
- execution.source_amount_base_unit
49252
- )
49253
- }
49254
- )
49255
- ]
49256
- }
49257
- ),
49258
- isPending && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49259
- "div",
49260
- {
49261
- className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3 uf-border-b",
49262
- style: { borderColor: colors2.border },
49263
- children: [
49264
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49265
- "span",
49266
- {
49267
- className: "uf-text-sm",
49268
- style: {
49269
- color: components.card.labelColor,
49270
- fontFamily: fonts.regular
49271
- },
49272
- children: "Estimated delivery time"
49273
- }
49274
- ),
49275
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49276
- "span",
49277
- {
49278
- style: {
49279
- color: components.card.titleColor,
49280
- fontFamily: fonts.regular,
49281
- fontSize: "14px"
49282
- },
49283
- children: formatEstimatedTime(execution?.estimated_processing_time)
49284
- }
49158
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3", children: [
49159
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49160
+ "span",
49161
+ {
49162
+ className: "uf-text-sm",
49163
+ style: {
49164
+ color: components.card.rowLeftLabel,
49165
+ fontFamily: fonts.regular
49166
+ },
49167
+ children: "Amount Sent"
49168
+ }
49169
+ ),
49170
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49171
+ "span",
49172
+ {
49173
+ style: {
49174
+ color: components.card.rowRightLabel,
49175
+ fontFamily: fonts.regular,
49176
+ fontSize: "14px"
49177
+ },
49178
+ children: [
49179
+ formatAmount(
49180
+ execution.source_amount_base_unit,
49181
+ execution.source_token_metadata?.decimals
49182
+ ),
49183
+ " ",
49184
+ formatCurrency(execution.source_currency)
49185
+ ]
49186
+ }
49187
+ )
49188
+ ] }),
49189
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3", children: [
49190
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49191
+ "span",
49192
+ {
49193
+ className: "uf-text-sm",
49194
+ style: {
49195
+ color: components.card.rowLeftLabel,
49196
+ fontFamily: fonts.regular
49197
+ },
49198
+ children: "Amount Received"
49199
+ }
49200
+ ),
49201
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49202
+ "span",
49203
+ {
49204
+ style: {
49205
+ color: components.card.rowRightLabel,
49206
+ fontFamily: fonts.regular,
49207
+ fontSize: "14px"
49208
+ },
49209
+ children: [
49210
+ formatAmount(
49211
+ execution.destination_amount_base_unit,
49212
+ execution.destination_token_metadata?.decimals
49213
+ ),
49214
+ " ",
49215
+ formatCurrency(execution.destination_currency)
49216
+ ]
49217
+ }
49218
+ )
49219
+ ] }),
49220
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3", children: [
49221
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49222
+ "span",
49223
+ {
49224
+ className: "uf-text-sm",
49225
+ style: {
49226
+ color: components.card.rowLeftLabel,
49227
+ fontFamily: fonts.regular
49228
+ },
49229
+ children: "USD Value"
49230
+ }
49231
+ ),
49232
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49233
+ "span",
49234
+ {
49235
+ style: {
49236
+ color: components.card.rowRightLabel,
49237
+ fontFamily: fonts.regular,
49238
+ fontSize: "14px"
49239
+ },
49240
+ children: formatUsdAmount2(
49241
+ execution.source_amount_usd,
49242
+ execution.source_amount_base_unit
49285
49243
  )
49286
- ]
49287
- }
49288
- ),
49289
- /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)(
49290
- "div",
49291
- {
49292
- className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3 uf-border-b",
49293
- style: { borderColor: colors2.border },
49294
- children: [
49295
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49296
- "span",
49297
- {
49298
- className: "uf-text-sm",
49299
- style: {
49300
- color: components.card.labelColor,
49301
- fontFamily: fonts.regular
49302
- },
49303
- children: "Source Network"
49304
- }
49305
- ),
49306
- /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49307
- "span",
49308
- {
49309
- style: {
49310
- color: components.card.titleColor,
49311
- fontFamily: fonts.regular,
49312
- fontSize: "14px"
49313
- },
49314
- children: getNetworkName(
49315
- execution.source_chain_type,
49316
- execution.source_chain_id
49317
- )
49318
- }
49244
+ }
49245
+ )
49246
+ ] }),
49247
+ isPending && /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3", children: [
49248
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49249
+ "span",
49250
+ {
49251
+ className: "uf-text-sm",
49252
+ style: {
49253
+ color: components.card.rowLeftLabel,
49254
+ fontFamily: fonts.regular
49255
+ },
49256
+ children: "Estimated delivery time"
49257
+ }
49258
+ ),
49259
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49260
+ "span",
49261
+ {
49262
+ style: {
49263
+ color: components.card.rowRightLabel,
49264
+ fontFamily: fonts.regular,
49265
+ fontSize: "14px"
49266
+ },
49267
+ children: formatEstimatedTime(execution?.estimated_processing_time)
49268
+ }
49269
+ )
49270
+ ] }),
49271
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3", children: [
49272
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49273
+ "span",
49274
+ {
49275
+ className: "uf-text-sm",
49276
+ style: {
49277
+ color: components.card.rowLeftLabel,
49278
+ fontFamily: fonts.regular
49279
+ },
49280
+ children: "Source Network"
49281
+ }
49282
+ ),
49283
+ /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49284
+ "span",
49285
+ {
49286
+ style: {
49287
+ color: components.card.rowRightLabel,
49288
+ fontFamily: fonts.regular,
49289
+ fontSize: "14px"
49290
+ },
49291
+ children: getNetworkName(
49292
+ execution.source_chain_type,
49293
+ execution.source_chain_id
49319
49294
  )
49320
- ]
49321
- }
49322
- ),
49295
+ }
49296
+ )
49297
+ ] }),
49323
49298
  /* @__PURE__ */ (0, import_jsx_runtime17.jsxs)("div", { className: "uf-flex uf-justify-between uf-items-center uf-px-4 uf-py-3", children: [
49324
49299
  /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49325
49300
  "span",
49326
49301
  {
49327
49302
  className: "uf-text-sm",
49328
49303
  style: {
49329
- color: components.card.labelColor,
49304
+ color: components.card.rowLeftLabel,
49330
49305
  fontFamily: fonts.regular
49331
49306
  },
49332
49307
  children: "Destination Network"
@@ -49336,7 +49311,7 @@ function DepositDetailContent({ execution }) {
49336
49311
  "span",
49337
49312
  {
49338
49313
  style: {
49339
- color: components.card.titleColor,
49314
+ color: components.card.rowRightLabel,
49340
49315
  fontFamily: fonts.regular,
49341
49316
  fontSize: "14px"
49342
49317
  },
@@ -49378,15 +49353,14 @@ function DepositDetailContent({ execution }) {
49378
49353
  href: execution.explorer_url,
49379
49354
  target: "_blank",
49380
49355
  rel: "noopener noreferrer",
49381
- className: "uf-grid uf-grid-cols-[auto_1fr_auto] uf-items-center uf-gap-2 uf-px-4 uf-py-3 uf-border-b hover:uf-bg-card/50 uf-transition-colors",
49382
- style: { borderColor: colors2.border },
49356
+ className: "uf-grid uf-grid-cols-[auto_1fr_auto] uf-items-center uf-gap-2 uf-px-4 uf-py-3 hover:uf-bg-card/50 uf-transition-colors",
49383
49357
  children: [
49384
49358
  /* @__PURE__ */ (0, import_jsx_runtime17.jsx)(
49385
49359
  "div",
49386
49360
  {
49387
49361
  className: "uf-text-sm",
49388
49362
  style: {
49389
- color: components.card.labelColor,
49363
+ color: components.card.rowLeftLabel,
49390
49364
  fontFamily: fonts.regular
49391
49365
  },
49392
49366
  children: "Deposit Tx"
@@ -49397,7 +49371,7 @@ function DepositDetailContent({ execution }) {
49397
49371
  {
49398
49372
  className: "uf-text-sm uf-text-right",
49399
49373
  style: {
49400
- color: components.card.titleColor,
49374
+ color: components.card.rowRightLabel,
49401
49375
  fontFamily: fonts.regular
49402
49376
  },
49403
49377
  children: formatTransactionHash(execution.transaction_hash)
@@ -49407,7 +49381,7 @@ function DepositDetailContent({ execution }) {
49407
49381
  ExternalLink,
49408
49382
  {
49409
49383
  className: "uf-w-3.5 uf-h-3.5 uf-block",
49410
- style: { color: components.card.actionColor }
49384
+ style: { color: components.card.actionIcon }
49411
49385
  }
49412
49386
  )
49413
49387
  ]
@@ -49426,7 +49400,7 @@ function DepositDetailContent({ execution }) {
49426
49400
  {
49427
49401
  className: "uf-text-sm",
49428
49402
  style: {
49429
- color: components.card.labelColor,
49403
+ color: components.card.rowLeftLabel,
49430
49404
  fontFamily: fonts.regular
49431
49405
  },
49432
49406
  children: "Completion Tx"
@@ -49437,7 +49411,7 @@ function DepositDetailContent({ execution }) {
49437
49411
  {
49438
49412
  className: "uf-text-sm uf-text-right",
49439
49413
  style: {
49440
- color: components.card.titleColor,
49414
+ color: components.card.rowRightLabel,
49441
49415
  fontFamily: fonts.regular
49442
49416
  },
49443
49417
  children: formatTransactionHash(
@@ -49449,7 +49423,7 @@ function DepositDetailContent({ execution }) {
49449
49423
  ExternalLink,
49450
49424
  {
49451
49425
  className: "uf-w-3.5 uf-h-3.5 uf-block",
49452
- style: { color: components.card.actionColor }
49426
+ style: { color: components.card.actionIcon }
49453
49427
  }
49454
49428
  )
49455
49429
  ]
@@ -50208,25 +50182,28 @@ function BuyWithCard({
50208
50182
  }
50209
50183
  }
50210
50184
  ) }) }),
50211
- selectedCurrencyData?.suggested_amounts && selectedCurrencyData.suggested_amounts.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-flex uf-gap-3 uf-justify-center", children: selectedCurrencyData.suggested_amounts.map((quickAmount) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
50212
- "button",
50213
- {
50214
- onClick: () => handleQuickAmount(quickAmount),
50215
- className: "uf-w-24 uf-py-2 hover:uf-bg-accent uf-transition-colors uf-text-sm uf-font-medium",
50216
- style: {
50217
- backgroundColor: components.card.backgroundColor,
50218
- color: components.card.titleColor,
50219
- fontFamily: fonts.medium,
50220
- borderRadius: components.card.borderRadius,
50221
- border: `${components.card.borderWidth}px solid ${components.card.borderColor}`
50185
+ selectedCurrencyData?.suggested_amounts && selectedCurrencyData.suggested_amounts.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-flex uf-gap-3 uf-justify-center", children: selectedCurrencyData.suggested_amounts.map((quickAmount) => {
50186
+ const isSelected = parseFloat(amount) === quickAmount;
50187
+ return /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
50188
+ "button",
50189
+ {
50190
+ onClick: () => handleQuickAmount(quickAmount),
50191
+ className: "uf-w-24 uf-py-2 hover:uf-bg-accent uf-transition-colors uf-text-sm uf-font-medium",
50192
+ style: {
50193
+ backgroundColor: components.card.backgroundColor,
50194
+ color: components.card.titleColor,
50195
+ fontFamily: fonts.medium,
50196
+ borderRadius: components.card.borderRadius,
50197
+ border: `${components.card.borderWidth}px solid ${isSelected ? colors2.primary : components.card.borderColor}`
50198
+ },
50199
+ children: [
50200
+ getCurrencySymbol(currency),
50201
+ quickAmount.toLocaleString()
50202
+ ]
50222
50203
  },
50223
- children: [
50224
- getCurrencySymbol(currency),
50225
- quickAmount.toLocaleString()
50226
- ]
50227
- },
50228
- quickAmount
50229
- )) }),
50204
+ quickAmount
50205
+ );
50206
+ }) }),
50230
50207
  amountValidationError && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
50231
50208
  "div",
50232
50209
  {
@@ -50245,7 +50222,7 @@ function BuyWithCard({
50245
50222
  "span",
50246
50223
  {
50247
50224
  style: {
50248
- color: components.card.headerColor,
50225
+ color: components.card.labelColor,
50249
50226
  fontFamily: fonts.medium
50250
50227
  },
50251
50228
  children: "Provider"
@@ -50304,7 +50281,7 @@ function BuyWithCard({
50304
50281
  {
50305
50282
  className: "uf-text-xs uf-font-normal uf-mb-2",
50306
50283
  style: {
50307
- color: components.card.labelColor,
50284
+ color: components.card.headerColor,
50308
50285
  fontFamily: fonts.regular
50309
50286
  },
50310
50287
  children: "Auto-picked for you"
@@ -50419,8 +50396,8 @@ function BuyWithCard({
50419
50396
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
50420
50397
  "div",
50421
50398
  {
50422
- className: `uf-transition-all uf-duration-300 uf-min-h-[420px] ${showQuotesView && !showOnrampView ? "uf-opacity-100" : "uf-opacity-0 uf-pointer-events-none uf-absolute uf-inset-0"}`,
50423
- children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-space-y-2 uf-pt-2", children: sortedQuotes.map((quote, index2) => {
50399
+ className: `uf-transition-all uf-duration-300 uf-min-h-[420px] uf-flex uf-flex-col ${showQuotesView && !showOnrampView ? "uf-opacity-100" : "uf-opacity-0 uf-pointer-events-none uf-absolute uf-inset-0"}`,
50400
+ children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-space-y-2 uf-pt-2 uf-pb-8 uf-overflow-y-auto uf-flex-1 uf-min-h-0", children: sortedQuotes.map((quote, index2) => {
50424
50401
  const badges = getProviderBadges(quote, sortedQuotes);
50425
50402
  const displayName = quote.service_provider_display_name;
50426
50403
  const isSelected = selectedProvider?.service_provider === quote.service_provider;
@@ -50437,11 +50414,11 @@ function BuyWithCard({
50437
50414
  },
50438
50415
  onMouseEnter: () => setHoveredProviderIndex(index2),
50439
50416
  onMouseLeave: () => setHoveredProviderIndex(null),
50440
- className: `uf-w-full uf-transition-colors uf-p-3 uf-flex uf-items-center uf-justify-between uf-group ${isSelected ? "uf-ring-2 uf-ring-inset uf-ring-primary" : ""}`,
50417
+ className: "uf-w-full uf-transition-colors uf-p-3 uf-flex uf-items-center uf-justify-between uf-group",
50441
50418
  style: {
50442
50419
  backgroundColor: hoveredProviderIndex === index2 ? colors2.cardHover : components.card.backgroundColor,
50443
50420
  borderRadius: components.card.borderRadius,
50444
- border: `${components.card.borderWidth}px solid ${components.card.borderColor}`
50421
+ border: isSelected ? `2px solid ${colors2.primary}` : `${components.card.borderWidth}px solid ${components.card.borderColor}`
50445
50422
  },
50446
50423
  children: [
50447
50424
  /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "uf-flex uf-items-center uf-gap-3", children: [
@@ -50468,7 +50445,8 @@ function BuyWithCard({
50468
50445
  badges.map((badge, i) => /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(
50469
50446
  "span",
50470
50447
  {
50471
- className: "uf-text-[10px] uf-text-green-400 uf-font-normal",
50448
+ className: "uf-text-[10px] uf-font-normal",
50449
+ style: { color: colors2.success },
50472
50450
  children: [
50473
50451
  badge,
50474
50452
  i < badges.length - 1 && ","
@@ -50476,8 +50454,25 @@ function BuyWithCard({
50476
50454
  },
50477
50455
  i
50478
50456
  )),
50479
- quote.low_kyc === false && badges.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "uf-text-[10px] uf-text-muted-foreground", children: "\u2022" }),
50480
- quote.low_kyc === false && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("span", { className: "uf-text-[10px] uf-text-muted-foreground uf-font-normal", children: "No document upload" })
50457
+ quote.low_kyc === false && badges.length > 0 && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
50458
+ "span",
50459
+ {
50460
+ className: "uf-text-[10px]",
50461
+ style: { color: components.card.subtextRightColor },
50462
+ children: "\u2022"
50463
+ }
50464
+ ),
50465
+ quote.low_kyc === false && /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
50466
+ "span",
50467
+ {
50468
+ className: "uf-text-[10px] uf-font-normal",
50469
+ style: {
50470
+ color: components.card.subtextRightColor,
50471
+ fontFamily: fonts.regular
50472
+ },
50473
+ children: "No document upload"
50474
+ }
50475
+ )
50481
50476
  ] })
50482
50477
  ] })
50483
50478
  ] }),
@@ -50578,7 +50573,7 @@ function BuyWithCard({
50578
50573
  }
50579
50574
  )
50580
50575
  ] }),
50581
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-px-1 uf-self-start uf-pt-2", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ChevronRight, { className: "uf-w-4 uf-h-4", style: { color: components.card.actionColor } }) }),
50576
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-px-1 uf-self-start uf-pt-2", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ChevronRight, { className: "uf-w-4 uf-h-4", style: { color: components.card.iconColor } }) }),
50582
50577
  /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "uf-flex uf-flex-col uf-items-center uf-min-w-[72px]", children: [
50583
50578
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-h-8 uf-flex uf-items-center uf-justify-center uf-mb-1.5", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "uf-relative", children: [
50584
50579
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
@@ -50621,7 +50616,7 @@ function BuyWithCard({
50621
50616
  }
50622
50617
  )
50623
50618
  ] }),
50624
- /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-px-1 uf-self-start uf-pt-2", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ChevronRight, { className: "uf-w-4 uf-h-4", style: { color: components.card.actionColor } }) }),
50619
+ /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-px-1 uf-self-start uf-pt-2", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(ChevronRight, { className: "uf-w-4 uf-h-4", style: { color: components.card.iconColor } }) }),
50625
50620
  /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "uf-flex uf-flex-col uf-items-center uf-min-w-[72px]", children: [
50626
50621
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)("div", { className: "uf-h-8 uf-flex uf-items-center uf-justify-center uf-mb-1.5", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "uf-relative", children: [
50627
50622
  /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(
@@ -51103,7 +51098,7 @@ function DepositExecutionItem({
51103
51098
  {
51104
51099
  className: "uf-font-medium uf-text-sm uf-flex-shrink-0",
51105
51100
  style: {
51106
- color: components.card.titleColor,
51101
+ color: components.card.textRightColor,
51107
51102
  fontFamily: fonts.medium
51108
51103
  },
51109
51104
  children: formatUsdAmount2(execution.source_amount_usd || "0")
@@ -51152,7 +51147,7 @@ function TransferCryptoButton({
51152
51147
  Zap,
51153
51148
  {
51154
51149
  className: "uf-w-5 uf-h-5",
51155
- style: { color: colors2.foregroundMuted }
51150
+ style: { color: components.card.iconColor }
51156
51151
  }
51157
51152
  ) }),
51158
51153
  /* @__PURE__ */ (0, import_jsx_runtime23.jsxs)("div", { className: "uf-text-left", children: [
@@ -51239,7 +51234,7 @@ function DepositWithCardButton({
51239
51234
  CreditCard,
51240
51235
  {
51241
51236
  className: "uf-w-5 uf-h-5",
51242
- style: { color: colors2.foregroundMuted }
51237
+ style: { color: components.card.iconColor }
51243
51238
  }
51244
51239
  ) }),
51245
51240
  /* @__PURE__ */ (0, import_jsx_runtime24.jsxs)("div", { className: "uf-text-left", children: [
@@ -51332,7 +51327,7 @@ function PayWithExchangeButton({
51332
51327
  ArrowLeftRight,
51333
51328
  {
51334
51329
  className: "uf-w-5 uf-h-5",
51335
- style: { color: colors2.foregroundMuted }
51330
+ style: { color: components.card.iconColor }
51336
51331
  }
51337
51332
  ) }),
51338
51333
  /* @__PURE__ */ (0, import_jsx_runtime25.jsxs)("div", { className: "uf-text-left", children: [
@@ -51419,7 +51414,7 @@ function DepositTrackerButton({
51419
51414
  Clock,
51420
51415
  {
51421
51416
  className: "uf-w-5 uf-h-5",
51422
- style: { color: colors2.foregroundMuted }
51417
+ style: { color: components.card.iconColor }
51423
51418
  }
51424
51419
  ),
51425
51420
  badge !== void 0 && badge > 0 && /* @__PURE__ */ (0, import_jsx_runtime26.jsx)(
@@ -54249,7 +54244,7 @@ function DepositsModal({
54249
54244
  onClose: handleClose
54250
54245
  }
54251
54246
  ),
54252
- /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "uf-flex-1 uf-min-h-0 uf-overflow-y-auto [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "uf-space-y-2", children: allExecutions.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "uf-py-8 uf-px-4 uf-text-center", children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
54247
+ /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "uf-flex-1 uf-min-h-0 uf-overflow-y-auto [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "uf-space-y-2 uf-pb-8", children: allExecutions.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime43.jsx)("div", { className: "uf-py-8 uf-px-4 uf-text-center", children: /* @__PURE__ */ (0, import_jsx_runtime43.jsx)(
54253
54248
  "div",
54254
54249
  {
54255
54250
  className: "uf-text-sm",
@@ -54443,23 +54438,33 @@ function TokenSelectorSheet({
54443
54438
  ),
54444
54439
  /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("div", { className: "uf-w-7 uf-h-5 uf-invisible" })
54445
54440
  ] }),
54446
- /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("div", { className: "uf-pb-3", children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("div", { style: { position: "relative" }, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
54447
- "input",
54448
- {
54449
- type: "text",
54450
- placeholder: "Search",
54451
- value: searchQuery,
54452
- onChange: (e) => setSearchQuery(e.target.value),
54453
- className: "uf-w-full uf-px-4 uf-py-2.5 uf-text-sm uf-outline-none focus:uf-ring-2 focus:uf-ring-ring/30",
54454
- style: {
54455
- backgroundColor: components.search.backgroundColor,
54456
- color: components.search.inputColor,
54457
- fontFamily: fonts.regular,
54458
- borderRadius: components.input.borderRadius,
54459
- border: `${components.input.borderWidth}px solid ${components.input.borderColor}`
54441
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("div", { className: "uf-pb-3", children: [
54442
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
54443
+ "style",
54444
+ {
54445
+ dangerouslySetInnerHTML: {
54446
+ __html: `.uf-token-sheet-search::placeholder { color: ${components.search.placeholderColor}; }`
54447
+ }
54460
54448
  }
54461
- }
54462
- ) }) }),
54449
+ ),
54450
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsx)("div", { style: { position: "relative" }, children: /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
54451
+ "input",
54452
+ {
54453
+ type: "text",
54454
+ placeholder: "Search",
54455
+ value: searchQuery,
54456
+ onChange: (e) => setSearchQuery(e.target.value),
54457
+ className: "uf-token-sheet-search uf-w-full uf-px-4 uf-py-2.5 uf-text-sm uf-outline-none focus:uf-ring-2 focus:uf-ring-ring/30",
54458
+ style: {
54459
+ backgroundColor: components.search.backgroundColor,
54460
+ color: components.search.inputColor,
54461
+ fontFamily: fonts.regular,
54462
+ borderRadius: components.input.borderRadius,
54463
+ border: `${components.input.borderWidth}px solid ${components.input.borderColor}`
54464
+ }
54465
+ }
54466
+ ) })
54467
+ ] }),
54463
54468
  quickSelectOptions.length > 0 && !searchQuery && /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("div", { className: "uf-pb-3 uf--mx-6", children: [
54464
54469
  /* @__PURE__ */ (0, import_jsx_runtime44.jsx)(
54465
54470
  "div",
@@ -54711,12 +54716,13 @@ function TokenSelectorSheet({
54711
54716
  style: {
54712
54717
  fontSize: 12,
54713
54718
  flexShrink: 0,
54714
- color: components.card.labelColor,
54715
54719
  fontFamily: fonts.regular
54716
54720
  },
54717
54721
  children: [
54718
- "Minimum:",
54719
- " ",
54722
+ /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("span", { style: { color: components.card.textRightColor }, children: [
54723
+ "Minimum:",
54724
+ " "
54725
+ ] }),
54720
54726
  /* @__PURE__ */ (0, import_jsx_runtime44.jsxs)("span", { style: { color: components.card.labelHighlightRightColor }, children: [
54721
54727
  "$",
54722
54728
  chain.minimum_deposit_amount_usd
@@ -54792,13 +54798,15 @@ function DepositPollingUi({
54792
54798
  function DepositFooterLinks({
54793
54799
  onGlossaryClick
54794
54800
  }) {
54801
+ const { colors: colors2 } = useTheme();
54795
54802
  return /* @__PURE__ */ (0, import_jsx_runtime46.jsxs)("div", { className: "uf-flex uf-justify-end uf-items-center uf-gap-2 uf-text-xs uf-text-muted-foreground", children: [
54796
54803
  /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
54797
54804
  "a",
54798
54805
  {
54799
54806
  href: "https://unifold.io/terms",
54800
54807
  target: "_blank",
54801
- className: "uf-cursor-pointer hover:uf-text-foreground uf-transition-colors",
54808
+ className: "uf-cursor-pointer hover:uf-opacity-90 uf-transition-colors",
54809
+ style: { color: colors2.primary },
54802
54810
  children: "Terms"
54803
54811
  }
54804
54812
  ),
@@ -54808,7 +54816,8 @@ function DepositFooterLinks({
54808
54816
  {
54809
54817
  href: "https://unifold.io/support",
54810
54818
  target: "_blank",
54811
- className: "uf-cursor-pointer hover:uf-text-foreground uf-transition-colors",
54819
+ className: "uf-cursor-pointer hover:uf-opacity-90 uf-transition-colors",
54820
+ style: { color: colors2.primary },
54812
54821
  children: "Help"
54813
54822
  }
54814
54823
  ),
@@ -54816,8 +54825,9 @@ function DepositFooterLinks({
54816
54825
  /* @__PURE__ */ (0, import_jsx_runtime46.jsx)(
54817
54826
  "div",
54818
54827
  {
54819
- className: "uf-cursor-pointer hover:uf-text-foreground uf-transition-colors",
54828
+ className: "uf-cursor-pointer hover:uf-opacity-90 uf-transition-colors",
54820
54829
  onClick: onGlossaryClick,
54830
+ style: { color: colors2.primary },
54821
54831
  children: "Glossary"
54822
54832
  }
54823
54833
  )
@@ -54827,61 +54837,117 @@ var t3 = i18n2.transferCrypto;
54827
54837
  function GlossaryModal({
54828
54838
  open,
54829
54839
  onOpenChange,
54830
- themeClass,
54831
- colors: colors2
54840
+ backgroundColor: backgroundColorProp,
54841
+ themeClass: themeClassProp,
54842
+ colors: colorsProp
54832
54843
  }) {
54844
+ const { themeClass, colors: colors2, components } = useTheme();
54845
+ const resolvedThemeClass = themeClassProp ?? themeClass;
54846
+ const modalBackground = backgroundColorProp ?? colors2.background;
54833
54847
  return /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(Dialog2, { open, onOpenChange, children: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54834
54848
  DialogContent2,
54835
54849
  {
54836
- className: `sm:uf-max-w-[400px] !uf-top-auto !uf-h-auto sm:!uf-top-[50%] uf-border-secondary uf-text-foreground uf-p-0 uf-gap-0 [&>button]:uf-hidden ${themeClass}`,
54837
- style: { backgroundColor: colors2.card },
54850
+ className: `sm:uf-max-w-[400px] !uf-top-auto !uf-h-auto sm:!uf-top-[50%] uf-border-secondary uf-p-0 uf-gap-0 [&>button]:uf-hidden ${resolvedThemeClass}`,
54851
+ style: { backgroundColor: modalBackground },
54838
54852
  children: [
54839
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "uf-flex uf-items-center uf-justify-between uf-p-4 uf-pb-2", children: [
54840
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(DialogTitle2, { className: "uf-text-base uf-font-semibold", children: "Glossary" }),
54853
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "uf-relative uf-flex uf-items-center uf-justify-between", children: [
54854
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("span", { className: "uf-invisible uf-w-9 uf-h-9 uf-flex uf-shrink-0 uf-items-center uf-justify-center", "aria-hidden": true, children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(X, { className: "uf-w-4 uf-h-4" }) }),
54855
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
54856
+ DialogTitle2,
54857
+ {
54858
+ className: "uf-text-base uf-font-medium uf-absolute uf-left-0 uf-right-0 uf-text-center uf-pointer-events-none",
54859
+ style: { color: components.header.titleColor },
54860
+ children: "Glossary"
54861
+ }
54862
+ ),
54841
54863
  /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(
54842
54864
  "button",
54843
54865
  {
54844
54866
  onClick: () => onOpenChange(false),
54845
- className: "uf-p-1 uf-rounded-lg hover:uf-bg-secondary uf-transition-colors uf-text-muted-foreground hover:uf-text-foreground",
54867
+ className: "uf-p-1 uf-rounded-lg hover:uf-bg-secondary uf-transition-colors uf-flex-shrink-0 uf-z-[1]",
54868
+ style: { color: components.header.buttonColor },
54846
54869
  children: /* @__PURE__ */ (0, import_jsx_runtime47.jsx)(X, { className: "uf-w-4 uf-h-4" })
54847
54870
  }
54848
54871
  )
54849
54872
  ] }),
54850
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-max-h-[60vh] sm:uf-max-h-[400px] uf-overflow-y-auto uf-px-4 uf-pb-4 [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "uf-space-y-4", children: [
54851
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
54852
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", children: "Your Deposit Token" }),
54853
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-text-muted-foreground uf-leading-relaxed", children: t3.selectTokenDepositTooltip })
54854
- ] }),
54855
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-border-t uf-border-border" }),
54856
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
54857
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", children: "Deposit Address" }),
54858
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-text-muted-foreground uf-leading-relaxed", children: "A unique wallet address generated for you. Send supported tokens to this address and they will be automatically converted and deposited into your account." })
54859
- ] }),
54860
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-border-t uf-border-border" }),
54861
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
54862
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", children: "Price Impact" }),
54863
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-text-muted-foreground uf-leading-relaxed", children: t3.priceImpact.tooltip })
54864
- ] }),
54865
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-border-t uf-border-border" }),
54866
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
54867
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", children: "Slippage" }),
54868
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-text-muted-foreground uf-leading-relaxed", children: t3.slippage.tooltip })
54869
- ] }),
54870
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-border-t uf-border-border" }),
54871
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
54872
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", children: "Processing Time" }),
54873
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-text-muted-foreground uf-leading-relaxed", children: "The estimated time for your deposit to be confirmed and credited. This depends on the source network's block confirmation time and current congestion." })
54874
- ] }),
54875
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-border-t uf-border-border" }),
54876
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
54877
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", children: "Minimum Deposit" }),
54878
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-text-muted-foreground uf-leading-relaxed", children: t3.minDeposit.tooltip })
54879
- ] }),
54880
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-border-t uf-border-border" }),
54881
- /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { children: [
54882
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", children: "Recipient Address" }),
54883
- /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-text-muted-foreground uf-leading-relaxed", children: "The destination address on the target blockchain where your converted deposit will be sent. This is typically your wallet address on the application's native chain." })
54884
- ] })
54873
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-max-h-[60vh] sm:uf-max-h-[400px] uf-overflow-y-auto uf-pb-4 [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)("div", { className: "uf-space-y-3", children: [
54874
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54875
+ "div",
54876
+ {
54877
+ className: "uf-rounded-xl uf-p-3",
54878
+ style: { backgroundColor: components.card.backgroundColor },
54879
+ children: [
54880
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", style: { color: components.card.titleColor }, children: "Your Deposit Token" }),
54881
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-leading-relaxed", style: { color: components.card.descriptionColor }, children: t3.selectTokenDepositTooltip })
54882
+ ]
54883
+ }
54884
+ ),
54885
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54886
+ "div",
54887
+ {
54888
+ className: "uf-rounded-xl uf-p-3",
54889
+ style: { backgroundColor: components.card.backgroundColor },
54890
+ children: [
54891
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", style: { color: components.card.titleColor }, children: "Deposit Address" }),
54892
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-leading-relaxed", style: { color: components.card.descriptionColor }, children: "A unique wallet address generated for you. Send supported tokens to this address and they will be automatically converted and deposited into your account." })
54893
+ ]
54894
+ }
54895
+ ),
54896
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54897
+ "div",
54898
+ {
54899
+ className: "uf-rounded-xl uf-p-3",
54900
+ style: { backgroundColor: components.card.backgroundColor },
54901
+ children: [
54902
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", style: { color: components.card.titleColor }, children: "Price Impact" }),
54903
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-leading-relaxed", style: { color: components.card.descriptionColor }, children: t3.priceImpact.tooltip })
54904
+ ]
54905
+ }
54906
+ ),
54907
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54908
+ "div",
54909
+ {
54910
+ className: "uf-rounded-xl uf-p-3",
54911
+ style: { backgroundColor: components.card.backgroundColor },
54912
+ children: [
54913
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", style: { color: components.card.titleColor }, children: "Slippage" }),
54914
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-leading-relaxed", style: { color: components.card.descriptionColor }, children: t3.slippage.tooltip })
54915
+ ]
54916
+ }
54917
+ ),
54918
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54919
+ "div",
54920
+ {
54921
+ className: "uf-rounded-xl uf-p-3",
54922
+ style: { backgroundColor: components.card.backgroundColor },
54923
+ children: [
54924
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", style: { color: components.card.titleColor }, children: "Processing Time" }),
54925
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-leading-relaxed", style: { color: components.card.descriptionColor }, children: "The estimated time for your deposit to be confirmed and credited. This depends on the source network's block confirmation time and current congestion." })
54926
+ ]
54927
+ }
54928
+ ),
54929
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54930
+ "div",
54931
+ {
54932
+ className: "uf-rounded-xl uf-p-3",
54933
+ style: { backgroundColor: components.card.backgroundColor },
54934
+ children: [
54935
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", style: { color: components.card.titleColor }, children: "Minimum Deposit" }),
54936
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-leading-relaxed", style: { color: components.card.descriptionColor }, children: t3.minDeposit.tooltip })
54937
+ ]
54938
+ }
54939
+ ),
54940
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsxs)(
54941
+ "div",
54942
+ {
54943
+ className: "uf-rounded-xl uf-p-3",
54944
+ style: { backgroundColor: components.card.backgroundColor },
54945
+ children: [
54946
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("div", { className: "uf-text-sm uf-font-medium uf-mb-1", style: { color: components.card.titleColor }, children: "Recipient Address" }),
54947
+ /* @__PURE__ */ (0, import_jsx_runtime47.jsx)("p", { className: "uf-text-xs uf-leading-relaxed", style: { color: components.card.descriptionColor }, children: "The destination address on the target blockchain where your converted deposit will be sent. This is typically your wallet address on the application's native chain." })
54948
+ ]
54949
+ }
54950
+ )
54885
54951
  ] }) })
54886
54952
  ]
54887
54953
  }
@@ -55122,7 +55188,7 @@ function TransferCryptoSingleInput({
55122
55188
  className: "uf-space-y-3 [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden",
55123
55189
  style: { backgroundColor: colors2.background },
55124
55190
  children: [
55125
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "uf-text-xs uf-text-muted-foreground uf-mb-1 uf-flex uf-items-center uf-justify-between", children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "uf-flex uf-items-center uf-gap-1", children: t4.selectTokenDeposit }) }),
55191
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "uf-text-xs uf-mb-1 uf-flex uf-items-center uf-justify-between", style: { color: components.card.labelColor }, children: /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "uf-flex uf-items-center uf-gap-1", children: t4.selectTokenDeposit }) }),
55126
55192
  /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
55127
55193
  "button",
55128
55194
  {
@@ -55226,7 +55292,7 @@ function TransferCryptoSingleInput({
55226
55292
  ] })
55227
55293
  ] }),
55228
55294
  /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "uf-flex uf-flex-col uf-items-center uf-pt-2", children: [
55229
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "uf-text-xs uf-text-muted-foreground uf-mb-2 uf-flex uf-items-center uf-gap-1", children: "Intent address" }),
55295
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "uf-text-xs uf-mb-2 uf-flex uf-items-center uf-gap-1", style: { color: components.card.labelColor }, children: "Intent address" }),
55230
55296
  /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { className: "uf-shadow-lg", style: { borderRadius: components.card.borderRadius, border: `${components.card.borderWidth}px solid ${components.card.borderColor}` }, children: loading || tokensLoading || !initialSelectionDone ? (
55231
55297
  // QR Skeleton - matches QR code appearance
55232
55298
  /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
@@ -55271,7 +55337,7 @@ function TransferCryptoSingleInput({
55271
55337
  }
55272
55338
  ) })
55273
55339
  ] }),
55274
- /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "uf-text-sm uf-text-muted-foreground uf-mb-2 uf-flex uf-justify-center uf-items-center uf-gap-1", children: [
55340
+ /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime53.jsxs)("div", { className: "uf-text-sm uf-mb-2 uf-flex uf-justify-center uf-items-center uf-gap-1", children: [
55275
55341
  loading || tokensLoading || !initialSelectionDone ? (
55276
55342
  // Address skeleton
55277
55343
  /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
@@ -55283,12 +55349,13 @@ function TransferCryptoSingleInput({
55283
55349
  }
55284
55350
  }
55285
55351
  )
55286
- ) : /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "uf-text-sm uf-truncate uf-min-w-0", children: depositAddress ? truncateAddress(depositAddress, 8, 6) : t4.noAddressAvailable }),
55352
+ ) : /* @__PURE__ */ (0, import_jsx_runtime53.jsx)("span", { className: "uf-text-sm uf-truncate uf-min-w-0", style: { color: components.card.titleColor }, children: depositAddress ? truncateAddress(depositAddress, 8, 6) : t4.noAddressAvailable }),
55287
55353
  depositAddress && initialSelectionDone && /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(
55288
55354
  "span",
55289
55355
  {
55290
55356
  onClick: handleCopyAddress,
55291
- className: `uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer ${copied ? "uf-text-green-500" : "uf-text-muted-foreground"}`,
55357
+ className: "uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer",
55358
+ style: { color: copied ? colors2.success : components.card.actionColor },
55292
55359
  children: copied ? /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Check, { className: "uf-w-3.5 uf-h-3.5" }) : /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Copy, { className: "uf-w-3.5 uf-h-3.5" })
55293
55360
  }
55294
55361
  )
@@ -55350,7 +55417,8 @@ function TransferCryptoSingleInput({
55350
55417
  "span",
55351
55418
  {
55352
55419
  onClick: () => handleCopyRecipientAddress(recipientAddress),
55353
- className: `uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer ${copiedRecipient ? "uf-text-green-500" : "uf-text-muted-foreground"}`,
55420
+ className: "uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer",
55421
+ style: { color: copiedRecipient ? colors2.success : components.card.actionColor },
55354
55422
  children: copiedRecipient ? /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Check, { className: "uf-w-3.5 uf-h-3.5" }) : /* @__PURE__ */ (0, import_jsx_runtime53.jsx)(Copy, { className: "uf-w-3.5 uf-h-3.5" })
55355
55423
  }
55356
55424
  )
@@ -55741,7 +55809,7 @@ function TransferCryptoDoubleInput({
55741
55809
  children: [
55742
55810
  /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: "uf-grid uf-grid-cols-2 uf-gap-2.5", children: [
55743
55811
  /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { children: [
55744
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-text-xs uf-text-muted-foreground uf-mb-2 uf-flex uf-items-center uf-gap-1", children: t5.selectedToken }),
55812
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-text-xs uf-mb-2 uf-flex uf-items-center uf-gap-1", style: { color: components.card.labelColor }, children: t5.selectedToken }),
55745
55813
  /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
55746
55814
  Select2,
55747
55815
  {
@@ -55749,7 +55817,7 @@ function TransferCryptoDoubleInput({
55749
55817
  onValueChange: setToken,
55750
55818
  disabled: tokensLoading || supportedTokens.length === 0,
55751
55819
  children: [
55752
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectTrigger2, { className: "uf-bg-secondary uf-h-10 hover:uf-bg-accent uf-text-foreground disabled:uf-opacity-50", style: { border: `1px solid ${isDarkMode ? "rgba(255,255,255,0.15)" : "rgba(0,0,0,0.15)"}` }, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectValue2, { children: tokensLoading ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-light uf-text-muted-foreground", children: t5.loading }) }) : selectedToken ? renderTokenItem(selectedToken) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-normal", children: token }) }) }) }),
55820
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectTrigger2, { className: "uf-h-10 hover:uf-opacity-90 uf-text-foreground disabled:uf-opacity-50", style: { backgroundColor: components.card.backgroundColor, border: `${components.card.borderWidth}px solid ${components.card.borderColor}` }, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectValue2, { children: tokensLoading ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-light uf-text-muted-foreground", children: t5.loading }) }) : selectedToken ? renderTokenItem(selectedToken) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-normal", children: token }) }) }) }),
55753
55821
  /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectContent2, { className: "uf-bg-secondary uf-border uf-text-foreground uf-max-h-[300px]", style: { border: `1px solid ${isDarkMode ? "rgba(255,255,255,0.15)" : "rgba(0,0,0,0.15)"}`, ...fonts.regular ? { "--uf-font-family": fonts.regular } : {} }, children: supportedTokens.map((tokenData) => /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
55754
55822
  SelectItem2,
55755
55823
  {
@@ -55764,7 +55832,7 @@ function TransferCryptoDoubleInput({
55764
55832
  )
55765
55833
  ] }),
55766
55834
  /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { children: [
55767
- /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: "uf-text-xs uf-text-muted-foreground uf-mb-2 uf-flex uf-items-center uf-gap-1", children: [
55835
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: "uf-text-xs uf-mb-2 uf-flex uf-items-center uf-gap-1", style: { color: components.card.labelColor }, children: [
55768
55836
  t5.selectedChain,
55769
55837
  /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("span", { className: "uf-font-medium", style: { color: components.card.labelHighlightRightColor }, children: [
55770
55838
  "$",
@@ -55780,7 +55848,7 @@ function TransferCryptoDoubleInput({
55780
55848
  onValueChange: setChain,
55781
55849
  disabled: tokensLoading || availableChainsForToken.length === 0,
55782
55850
  children: [
55783
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectTrigger2, { className: "uf-bg-secondary uf-h-10 hover:uf-bg-accent uf-text-foreground disabled:uf-opacity-50", style: { border: `1px solid ${isDarkMode ? "rgba(255,255,255,0.15)" : "rgba(0,0,0,0.15)"}` }, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectValue2, { children: tokensLoading ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-light uf-text-muted-foreground", children: t5.loading }) }) : currentChainFromBackend ? renderChainItem(currentChainFromBackend) : currentChainData ? renderChainItem(currentChainData) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-normal", children: chain }) }) }) }),
55851
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectTrigger2, { className: "uf-h-10 hover:uf-opacity-90 uf-text-foreground disabled:uf-opacity-50", style: { backgroundColor: components.card.backgroundColor, border: `${components.card.borderWidth}px solid ${components.card.borderColor}` }, children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(SelectValue2, { children: tokensLoading ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-light uf-text-muted-foreground", children: t5.loading }) }) : currentChainFromBackend ? renderChainItem(currentChainFromBackend) : currentChainData ? renderChainItem(currentChainData) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-flex uf-items-center uf-gap-2", children: /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-xs uf-font-normal", children: chain }) }) }) }),
55784
55852
  /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
55785
55853
  SelectContent2,
55786
55854
  {
@@ -55823,7 +55891,7 @@ function TransferCryptoDoubleInput({
55823
55891
  ] })
55824
55892
  ] }),
55825
55893
  /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: "uf-flex uf-flex-col uf-items-center uf-pt-2", children: [
55826
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-text-xs uf-text-muted-foreground uf-mb-2 uf-flex uf-items-center uf-gap-1", children: "Intent address" }),
55894
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-text-xs uf-mb-2 uf-flex uf-items-center uf-gap-1", style: { color: components.card.labelColor }, children: "Intent address" }),
55827
55895
  /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { className: "uf-shadow-lg", style: { borderRadius: components.card.borderRadius, border: `${components.card.borderWidth}px solid ${components.card.borderColor}` }, children: loading || tokensLoading || !initialSelectionDone ? (
55828
55896
  // QR Skeleton - matches QR code appearance
55829
55897
  /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
@@ -55868,7 +55936,7 @@ function TransferCryptoDoubleInput({
55868
55936
  }
55869
55937
  ) })
55870
55938
  ] }),
55871
- /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: "uf-text-sm uf-text-muted-foreground uf-mb-2 uf-flex uf-justify-center uf-items-center uf-gap-1", children: [
55939
+ /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("div", { children: /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)("div", { className: "uf-text-sm uf-mb-2 uf-flex uf-justify-center uf-items-center uf-gap-1", children: [
55872
55940
  loading || tokensLoading || !initialSelectionDone ? (
55873
55941
  // Address skeleton
55874
55942
  /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
@@ -55880,12 +55948,13 @@ function TransferCryptoDoubleInput({
55880
55948
  }
55881
55949
  }
55882
55950
  )
55883
- ) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-sm uf-truncate uf-min-w-0", children: depositAddress ? truncateAddress(depositAddress, 8, 6) : t5.noAddressAvailable }),
55951
+ ) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("span", { className: "uf-text-sm uf-truncate uf-min-w-0", style: { color: components.card.titleColor }, children: depositAddress ? truncateAddress(depositAddress, 8, 6) : t5.noAddressAvailable }),
55884
55952
  depositAddress && initialSelectionDone && /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
55885
55953
  "span",
55886
55954
  {
55887
55955
  onClick: handleCopyAddress,
55888
- className: `uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer ${copied ? "uf-text-green-500" : "uf-text-muted-foreground"}`,
55956
+ className: "uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer",
55957
+ style: { color: copied ? colors2.success : components.card.actionColor },
55889
55958
  children: copied ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(Check, { className: "uf-w-3.5 uf-h-3.5" }) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(Copy, { className: "uf-w-3.5 uf-h-3.5" })
55890
55959
  }
55891
55960
  )
@@ -55947,7 +56016,8 @@ function TransferCryptoDoubleInput({
55947
56016
  "span",
55948
56017
  {
55949
56018
  onClick: () => handleCopyRecipientAddress(recipientAddress),
55950
- className: `uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer ${copiedRecipient ? "uf-text-green-500" : "uf-text-muted-foreground"}`,
56019
+ className: "uf-flex-shrink-0 uf-transition-colors uf-cursor-pointer",
56020
+ style: { color: copiedRecipient ? colors2.success : components.card.actionColor },
55951
56021
  children: copiedRecipient ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(Check, { className: "uf-w-3.5 uf-h-3.5" }) : /* @__PURE__ */ (0, import_jsx_runtime59.jsx)(Copy, { className: "uf-w-3.5 uf-h-3.5" })
55952
56022
  }
55953
56023
  )
@@ -58341,7 +58411,7 @@ function DepositModal({
58341
58411
  onClose: handleClose
58342
58412
  }
58343
58413
  ),
58344
- /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: "uf-h-[460px] uf-overflow-y-auto [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden", children: selectedExecution ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(DepositDetailContent, { execution: selectedExecution }) : /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: "uf-space-y-2 uf-pb-4", children: allExecutions.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: "uf-py-8 uf-px-4 uf-text-center", children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
58414
+ /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: "uf-h-[460px] uf-overflow-y-auto [scrollbar-width:none] [&::-webkit-scrollbar]:uf-hidden", children: selectedExecution ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(DepositDetailContent, { execution: selectedExecution }) : /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: "uf-space-y-2 uf-pb-8", children: allExecutions.length === 0 ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("div", { className: "uf-py-8 uf-px-4 uf-text-center", children: /* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
58345
58415
  "div",
58346
58416
  {
58347
58417
  className: "uf-text-sm",