@stridge/kit 0.1.0-alpha.61 → 0.1.0-alpha.63
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/_internal/deposit/driver/index.d.ts +2 -2
- package/dist/deposit/compound/index.d.ts +10 -2
- package/dist/deposit/compound/index.js +1 -1
- package/dist/deposit/widgets/index.d.ts +3 -1
- package/dist/deposit/widgets/index.js +1 -1
- package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
- package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
- package/dist/drivers/stridge-mock/fixtures.d.ts +1 -1
- package/dist/drivers/stridge-mock/fixtures.js +1 -1
- package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
- package/dist/flows/deposit/driver/payloads.d.ts +136 -7
- package/dist/flows/deposit/driver/types.d.ts +44 -2
- package/dist/flows/deposit/orchestrator/controller.js +1 -1
- package/dist/flows/deposit/orchestrator/reducer.js +1 -1
- package/dist/flows/deposit/orchestrator/types.d.ts +105 -12
- package/dist/flows/deposit/shared/onramp.js +1 -1
- package/dist/flows/deposit/shared/onrampError.js +1 -0
- package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
- package/dist/flows/deposit/widgets/error-state/ErrorState.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.d.ts +12 -8
- package/dist/flows/deposit/widgets/onramp-amount-entry/OnrampAmountEntry.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.d.ts +4 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.d.ts +7 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.slots.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/OnrampAmountEntry.styles.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/CurrencyChip.d.ts +12 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/CurrencyChip.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ProviderCard.d.ts +12 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ProviderCard.js +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/components/ReceiveChip.js +1 -1
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/context.d.ts +14 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-amount-entry/compound/types.d.ts +12 -1
- package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.d.ts +2 -0
- package/dist/flows/deposit/widgets/onramp-confirm/OnrampConfirm.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.d.ts +2 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.d.ts +7 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.slots.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/OnrampConfirm.styles.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Body.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Disclaimer.d.ts +21 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Disclaimer.js +1 -0
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.d.ts +2 -2
- package/dist/flows/deposit/widgets/onramp-confirm/compound/components/Summary.js +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/context.d.ts +28 -7
- package/dist/flows/deposit/widgets/onramp-confirm/compound/index.d.ts +1 -1
- package/dist/flows/deposit/widgets/onramp-confirm/compound/types.d.ts +7 -2
- package/dist/flows/deposit/widgets/onramp-currency-picker/OnrampCurrencyPicker.d.ts +39 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/OnrampCurrencyPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.d.ts +37 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.slots.d.ts +17 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.slots.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/OnrampCurrencyPicker.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Body.d.ts +6 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Body.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/CurrencyRow.d.ts +12 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/CurrencyRow.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Empty.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Header.d.ts +10 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Header.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Search.d.ts +6 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/components/Search.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/context.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/index.d.ts +3 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/compound/types.d.ts +48 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-currency-picker/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.d.ts +2 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/OnrampPaymentPending.js +1 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.d.ts +6 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.js +1 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.d.ts +3 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/OnrampPaymentPending.slots.js +1 -1
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/Flow.d.ts +13 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/Flow.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/components/Flow.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/context.d.ts +32 -0
- package/dist/flows/deposit/widgets/onramp-payment-pending/compound/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/OnrampProviderPicker.d.ts +38 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/OnrampProviderPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.d.ts +35 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.slots.d.ts +19 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.slots.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/OnrampProviderPicker.styles.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Body.d.ts +6 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Body.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Header.d.ts +10 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/Header.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/ProviderRow.d.ts +15 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/components/ProviderRow.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/context.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/index.d.ts +3 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/index.js +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/compound/types.d.ts +50 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/index.d.ts +1 -0
- package/dist/flows/deposit/widgets/onramp-provider-picker/index.js +1 -0
- package/dist/flows/deposit/widgets/success-state/SuccessState.js +1 -1
- package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.js +1 -1
- package/dist/format/index.d.ts +2 -1
- package/dist/format/index.js +1 -1
- package/dist/i18n/locales/ar.js +1 -1
- package/dist/i18n/locales/es.js +1 -1
- package/dist/i18n/locales/source-keys.d.ts +1 -1
- package/dist/icons/index.d.ts +4 -1
- package/dist/icons/index.js +1 -1
- package/dist/package.js +1 -1
- package/dist/shared/attribution/Attribution.js +1 -1
- package/dist/shared/attribution/Attribution.styles.js +1 -1
- package/dist/shared/dialog/Frame.js +1 -1
- package/dist/shared/format/formatFiat.d.ts +31 -0
- package/dist/shared/format/formatFiat.js +1 -0
- package/dist/shared/icons/BellIcon.d.ts +7 -0
- package/dist/shared/icons/BellIcon.js +1 -0
- package/dist/shared/icons/DirhamSignIcon.d.ts +16 -0
- package/dist/shared/icons/DirhamSignIcon.js +1 -0
- package/dist/shared/icons/SearchIcon.d.ts +7 -0
- package/dist/shared/icons/SearchIcon.js +1 -0
- package/dist/shared/ui/AmountInput/useAutoShrinkFontSize.js +1 -1
- package/dist/shared/ui/Checkbox/Checkbox.d.ts +47 -0
- package/dist/shared/ui/Checkbox/Checkbox.js +1 -0
- package/dist/shared/ui/Checkbox/Checkbox.slots.d.ts +12 -0
- package/dist/shared/ui/Checkbox/Checkbox.slots.js +1 -0
- package/dist/shared/ui/Checkbox/Checkbox.styles.js +1 -0
- package/dist/shared/ui/Checkbox/index.d.ts +2 -0
- package/dist/shared/ui/Checkbox/index.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.d.ts +36 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.slots.d.ts +12 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.slots.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/CurrencyGlyph.styles.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/flags.js +1 -0
- package/dist/shared/ui/CurrencyGlyph/index.d.ts +2 -0
- package/dist/shared/ui/CurrencyGlyph/index.js +1 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.d.ts +56 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.js +1 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.slots.d.ts +8 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.slots.js +1 -0
- package/dist/shared/ui/DisclosureRow/DisclosureRow.styles.js +1 -0
- package/dist/shared/ui/DisclosureRow/index.d.ts +2 -0
- package/dist/shared/ui/DisclosureRow/index.js +1 -0
- package/dist/shared/ui/FiatSymbol/FiatAmount.d.ts +32 -0
- package/dist/shared/ui/FiatSymbol/FiatAmount.js +1 -0
- package/dist/shared/ui/FiatSymbol/FiatSymbol.d.ts +30 -0
- package/dist/shared/ui/FiatSymbol/FiatSymbol.js +1 -0
- package/dist/shared/ui/FiatSymbol/index.d.ts +2 -0
- package/dist/shared/ui/FiatSymbol/index.js +1 -0
- package/dist/shared/utils/logos/resolveLogoSrc.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.d.ts +2 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/components/Hero/StaticBand.js +1 -1
- package/dist/shared/widgets/amount-entry/compound/types.d.ts +10 -0
- package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -1
- package/dist/shared/widgets/error-state/compound/ErrorState.styles.js +1 -1
- package/dist/shared/widgets/error-state/compound/components/MoreDetails.d.ts +3 -3
- package/dist/shared/widgets/error-state/compound/components/MoreDetails.js +1 -1
- package/dist/shared/widgets/success-state/compound/SuccessState.styles.js +1 -1
- package/dist/shared/widgets/success-state/compound/components/MoreDetails.d.ts +2 -3
- package/dist/shared/widgets/success-state/compound/components/MoreDetails.js +1 -1
- package/dist/styles/index.css +118 -0
- package/dist/ui/index.d.ts +9 -1
- package/dist/ui/index.js +1 -1
- package/dist/version.js +1 -1
- package/package.json +2 -2
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";import{useLingui as e}from"../../../../../../shared/i18n/useLingui.js";import"../../../../../../i18n/index.js";import{
|
|
1
|
+
"use client";import{useLingui as e}from"../../../../../../shared/i18n/useLingui.js";import"../../../../../../i18n/index.js";import{Image as t}from"../../../../../../shared/ui/Image/Image.js";import"../../../../../../shared/ui/Image/index.js";import{Field as n}from"../../../../../../shared/ui/Field/Field.js";import"../../../../../../shared/ui/Field/index.js";import{InputGroup as r}from"../../../../../../shared/ui/InputGroup/InputGroup.js";import"../../../../../../shared/ui/InputGroup/index.js";import{useWithdrawFormContext as i}from"../context.js";import{WITHDRAW_FORM_SLOTS as a}from"../WithdrawForm.slots.js";import{styles as o}from"../WithdrawForm.styles.js";import{useCallback as s,useId as c}from"react";import{jsx as l,jsxs as u}from"react/jsx-runtime";import*as d from"@stylexjs/stylex";function f(){let f=i(`WithdrawForm.RecipientField`),{_:m}=e(),h=f.recipientChainType===`tron`?m({id:`9XIJb8`,message:`T…`}):m({id:`yy2rkt`,message:`0x…`}),g=m({id:`MZ_nQf`,message:`Recipient address`}),_=c(),{suggestedRecipient:v,onRecipientChange:y}=f,b=v?.address,x=v?.label?.trim()||m({id:`BhQhbU`,message:`Use suggested recipient address`}),S=s(e=>{y(e.target.value.replace(/[\r\n]+/g,``))},[y]),C=s(()=>{b&&y(b)},[b,y]),w=b?p(b):``;return u(n,{"data-stridge-slot":a.recipientField,children:[l(n.Label,{htmlFor:_,children:g}),u(r,{children:[l(r.Textarea,{id:_,"data-stridge-slot":a.recipientInput,rows:1,spellCheck:!1,autoComplete:`off`,autoCorrect:`off`,autoCapitalize:`off`,placeholder:h,value:f.recipientAddress,onChange:S,...d.props(o.recipientInputMono)}),b?l(r.Addon,{align:`inline-end`,children:u(`button`,{type:`button`,"data-stridge-slot":a.recipientPill,onClick:C,"aria-label":x,...d.props(o.pillBase,o.pillInteractive,o.recipientPill),children:[l(t,{size:`sm`,alt:m({id:`sb9Y58`,message:`Wallet`})}),l(`span`,{...d.props(o.recipientPillText),children:w})]})}):null]})]})}function p(e){return e.length<=10?e:`${e.slice(0,4)}…${e.slice(-4)}`}export{f as WithdrawFormRecipientField};
|
package/dist/format/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { formatDurationCoarse } from "../shared/format/formatDurationCoarse.js";
|
|
2
2
|
import { formatDurationCompact } from "../shared/format/formatDurationCompact.js";
|
|
3
|
+
import { FormatFiatOptions, formatFiat } from "../shared/format/formatFiat.js";
|
|
3
4
|
import { formatNetworkName } from "../shared/format/formatNetworkName.js";
|
|
4
5
|
import { formatPercent } from "../shared/format/formatPercent.js";
|
|
5
6
|
import { formatSmartRelative } from "../shared/format/formatSmartRelative.js";
|
|
@@ -8,4 +9,4 @@ import { FormatTokenAmountOptions, formatTokenAmount } from "../shared/format/fo
|
|
|
8
9
|
import { FormatUsdOptions, formatUsd } from "../shared/format/formatUsd.js";
|
|
9
10
|
import { shortenAddress } from "../shared/format/shortenAddress.js";
|
|
10
11
|
import { FormattedField } from "../shared/format/types.js";
|
|
11
|
-
export { type FormatTokenAmountOptions, type FormatUsdOptions, type FormattedField, formatDurationCoarse, formatDurationCompact, formatNetworkName, formatPercent, formatSmartRelative, formatTimestamp, formatTokenAmount, formatUsd, shortenAddress };
|
|
12
|
+
export { type FormatFiatOptions, type FormatTokenAmountOptions, type FormatUsdOptions, type FormattedField, formatDurationCoarse, formatDurationCompact, formatFiat, formatNetworkName, formatPercent, formatSmartRelative, formatTimestamp, formatTokenAmount, formatUsd, shortenAddress };
|
package/dist/format/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{formatDurationCoarse as e}from"../shared/format/formatDurationCoarse.js";import{formatDurationCompact as t}from"../shared/format/formatDurationCompact.js";import{
|
|
1
|
+
import{formatDurationCoarse as e}from"../shared/format/formatDurationCoarse.js";import{formatDurationCompact as t}from"../shared/format/formatDurationCompact.js";import{formatFiat as n}from"../shared/format/formatFiat.js";import{formatNetworkName as r}from"../shared/format/formatNetworkName.js";import{formatPercent as i}from"../shared/format/formatPercent.js";import{formatTimestamp as a}from"../shared/format/formatTimestamp.js";import{formatSmartRelative as o}from"../shared/format/formatSmartRelative.js";import{formatTokenAmount as s}from"../shared/format/formatTokenAmount.js";import{formatUsd as c}from"../shared/format/formatUsd.js";import{shortenAddress as l}from"../shared/format/shortenAddress.js";export{e as formatDurationCoarse,t as formatDurationCompact,n as formatFiat,r as formatNetworkName,i as formatPercent,o as formatSmartRelative,a as formatTimestamp,s as formatTokenAmount,c as formatUsd,l as shortenAddress};
|
package/dist/i18n/locales/ar.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=JSON.parse(`{"--OGth":["نجح الإيداع"],"-I_tc5":["الحد الأقصى ",["formattedCap"]],"-nuEh_":["الوقت المُقدَّر"],"-tu7Q8":["المزيد عن ",["0"]],"02NghK":["أغلق هذا الحوار وحاول مرة أخرى بعد قليل. إذا استمرت المشكلة، فتحقق من مفتاح البوابة في تكاملك."],"0TEl46":["العملات المشفّرة"],"0VFO13":["تم إلغاء الدفع"],"0eg2g7":["جاري تقدير الغاز…"],"0lHlRj":["قيد النقل"],"2Eoi_a":["عرض التفاصيل"],"3dqPLT":["تحويل العملة الرقمية"],"3eKjkO":["الحد الأدنى للإيداع ",["formattedMin"]],"3kg1gB":["اكتمل الإيداع"],"
|
|
1
|
+
const e=JSON.parse(`{"--OGth":["نجح الإيداع"],"-I_tc5":["الحد الأقصى ",["formattedCap"]],"-nuEh_":["الوقت المُقدَّر"],"-tu7Q8":["المزيد عن ",["0"]],"02NghK":["أغلق هذا الحوار وحاول مرة أخرى بعد قليل. إذا استمرت المشكلة، فتحقق من مفتاح البوابة في تكاملك."],"0TEl46":["العملات المشفّرة"],"0VFO13":["تم إلغاء الدفع"],"0eg2g7":["جاري تقدير الغاز…"],"0lHlRj":["قيد النقل"],"2Eoi_a":["عرض التفاصيل"],"3dqPLT":["تحويل العملة الرقمية"],"3eKjkO":["الحد الأدنى للإيداع ",["formattedMin"]],"3kg1gB":["اكتمل الإيداع"],"3rWvwk":["العنوان الظاهر في نافذة الدفع هو عنوان إيداع مؤقت — تُحوَّل أموالك وتُودَع في حسابك تلقائيًا."],"3yd3IL":["فشل برنامج تشغيل الإيداع في تحميل إعدادات البوابة."],"3ytoeI":["تم استرداد هذه الدفعة. لم يتم تسليم أي عملة رقمية."],"5AApJw":["اتصل بمحفظة للمتابعة"],"5R2524":["لقد ألغيت الدفع قبل اكتماله."],"5joj8M":["تفاصيل المعاملة"],"60ahSE":["معاملة السحب"],"69Gavs":["التفاصيل التقنية"],"6A8Mts":["حتى ",["0"]],"6D8qH6":["أرسل العملة المختارة على الشبكة المختارة إلى هذا العنوان. تظهر الأموال في حسابك بمجرد تأكيد الشبكة للتحويل."],"6RDwJM":["العملات"],"6yS5kL":["السحب قيد التنفيذ"],"72c5Qo":["الإجمالي"],"7Bj3x9":["فشل"],"7evBec":["وقت المعالجة: ",["resolvedProcessingTime"]],"7zrAuh":["تعذّر علينا بدء الدفع. يرجى المحاولة مرة أخرى."],"88cUW-":["تستلم"],"8T4Ha9":["أنت تشتري"],"9JHY2T":["تمت إضافة أموال إيداعك إلى حسابك."],"9XIJb8":["T…"],"9cCjMJ":["إيداع الحد الأقصى من الرصيد"],"9d3cBd":["تعذّر فتح نافذة الدفع. حاول مرة أخرى."],"9k9fRZ":["جارٍ فتح صفحة الدفع…"],"< 1 min":["< دقيقة"],"AGFPtu":["اكتمل الشراء"],"AHyker":["الحد الأقصى ",["0"]],"AO44G_":["عرض الإيصال"],"AOPSKq":["إيداع ",["0"]],"AUYALh":["قريبًا"],"AWtGgd":["احصل على المساعدة"],"AeXO77":["حساب"],"AeZIvT":["ستستلم"],"AikETk":["الحد الأدنى ",["minDeposit"]],"AmaCQf":["مدفوعات البطاقة غير متاحة مؤقتًا. يرجى المحاولة مرة أخرى لاحقًا."],"B-4zEC":["تعذر تحميل النشاط. حاول مرة أخرى."],"BhQhbU":["استخدم عنوان المستلم المقترح"],"BoQOH3":["يلزم وجود محفظة لإجراء الإيداع"],"CK1KXz":["الأقصى"],"Ck1xL4":["ترسل"],"Cs44l6":["الإيداع قيد التنفيذ"],"D79cZK":["فوري"],"DPfwMq":["تم"],"Dd7jP5":["تواجه مشكلات؟"],"DoS2vD":["إخفاء التفاصيل التقنية"],"ELhVSL":["فشل إرسال الإيداع."],"Ej5HL9":["رُفض التوقيع. حاول مرة أخرى."],"Enslfm":["الوجهة"],"EqcUuN":["ستستلم ≈ ",["receive"]],"EzZNDI":["الدفع بالبطاقة غير متاح في منطقتك"],"G-SK3q":["واجهت الواجهة خطأً غير متوقع وتعذَّر إكمال العرض. حاول مرة أخرى، أو أغلق هذا الحوار وأعد المحاولة من التطبيق."],"GX8GKD":["الأصول"],"GXkBas":["الحد الأقصى ",["formattedLimit"]],"GZPxmc":["أدخل عنوان مستلم صالحاً"],"GcuGHR":["تمت الإضافة إلى ",["captionSuffix"]],"GwkmPx":["تبديل المبلغ المعروض"],"HalPBQ":["الشحن إلى"],"HtxAvT":["لم تعد عملية الدفع هذه متاحة. يرجى البدء من جديد."],"IDt4jm":[["0","plural",{"zero":["#"," ثانية"],"one":["#"," ثانية"],"two":["#"," ثانية"],"few":["#"," ثوانٍ"],"many":["#"," ثانية"],"other":["#"," ثانية"]}]," متبقية على عرض السعر"],"IRogzB":["تمت إضافة أموال إيداعك إلى ",["brand"],"."],"JYp-ic":["جارٍ معالجة الإيداع"],"KDw4GX":["حاول مرة أخرى"],"KGoAE6":["تلقائي · ",["value"]],"KTNWsg":["فشل السحب"],"KuqCAK":["~ 2 دقيقة"],"L3PYgw":["البحث عن العملات"],"LEbOpR":["مزيد من التفاصيل"],"LS3na9":["تغيير العملة، حاليًا ",["code"]],"LZueaM":["هذا الشراء غير متاح في الوقت الحالي. جرّب مبلغًا أو أصلًا مختلفًا."],"LcET2C":["سياسة الخصوصية"],"Ly6geA":["جاري إعادة احتساب عرض السعر…"],"MZ_nQf":["عنوان المستلم"],"Mgz4Bq":["المزيد من المزوّدين قريبًا"],"N2DUxS":["رصيد غير كافٍ"],"NzshpK":["فشل الشراء"],"OLF0i7":["تعذَّر تحميل خيارات الإيداع"],"OSBXx5":["الآن"],"Offl0a":["ستُضاف أموال إيداعك إلى حسابك."],"Oi8TiZ":["عرض التقدم"],"OsyKSt":["سحب"],"P9fBwv":["Stack"],"PSGjEt":["شروط الاستخدام"],"PiH3UR":["تم النسخ!"],"Q12Rrs":["معاملة الإيداع"],"Q2lUR2":["العملة"],"QFwptY":["رسوم المعالجة"],"QU2cIs":["لديك أسئلة؟"],"RO6we5":["لا توجد عملات تطابق ”",["0"],"“"],"ReCJDz":["أنت الآن تنتقل إلى ",["provider"],"، وهي منصّة طرف ثالث منفصلة. بالمتابعة، فإنك تقرّ بأنك قرأت ووافقت على <0>شروط الاستخدام</0> و<1>سياسة الخصوصية</1> الخاصة بـ ",["provider"],"."],"Rm325-":["سحب ",["amount"],"، ",["date"]],"Rxjdjn":["لم يكتمل الإيداع"],"S7anoa":["انتهت مهلة الدفع"],"SOVBoe":["نسخ عنوان الإيداع"],"SZRUQ4":["أقصى انزلاق سعري"],"Sjplg3":["عرض في المستكشف"],"SlfejT":["خطأ"],"TG4WOd":["ستُضاف أموال إيداعك إلى ",["brand"],"."],"TT0aVH":["تم إرسال الطلب"],"UDBU3S":["تم رفض دفعتك. جرّب بطاقة أو مبلغًا مختلفًا."],"Uevt3L":["جاري تقدير العرض"],"UqHbdz":["إغلاق إشعار الإيداع قيد التنفيذ"],"V1fa9u":["عرض المزيد"],"V8yTm6":["مسح البحث"],"VAZUpd":["فشل الطلب"],"VAxOSg":["تدفع"],"VHOVEJ":["اتصل بالمحفظة"],"V_WXOs":["إعادة فتح نافذة الدفع"],"W9narx":["العملات"],"WE9GC7":["إيداع نقدي"],"WkRH60":["الحد الأدنى ",["0"]],"Wqz0SO":["رصيد منخفض"],"XJOV1Y":["النشاط"],"X_Y-Ev":["حدث خطأ ما في عملية الشراء. يُرجى المحاولة مرة أخرى."],"Xzw7uC":["ستظهر إيداعاتك وعمليات السحب هنا."],"Z0UMar":["تعذّر الحصول على عرض السعر."],"Z1WbO6":["الأموال آمنة على شبكة المصدر — تواصل مع الدعم للاسترجاع."],"Z1fsV0":["انتهت صلاحية نافذة الدفع قبل اكتمال العملية."],"ZqugiS":["الرصيد: ",["0"]," ",["1"]],"_QZdX-":["تم سحب أموالك بنجاح."],"_girqu":["نجح السحب"],"_kXBrK":["إجمالي الوقت"],"_rHUhS":["نقدًا"],"a2WllD":["العملة المستلمة"],"a3WpTF":["لديك بالفعل عملية دفع قيد التنفيذ. أكملها أو ألغِها قبل بدء أخرى."],"aXFOuf":["لا يوجد نشاط بعد"],"a_Zu3Q":["تغيير المزوّد، حاليًا ",["0"]],"aemBRq":["المزوّد"],"aiEUrg":["إظهار التفاصيل التقنية"],"bOZXx5":["تحديث الطلب"],"bZnukT":["تكلفة الشبكة"],"c3aao_":["عرض النشاط"],"c6Bl9M":["تبديل التفاصيل التقنية"],"cGYrpE":["تطبَّق الشروط"],"cHPbBJ":["تعذَّر على الجسر تمويل معاملة الوجهة (نفد رصيد الغاز)."],"cxR5Qy":["معاملة التسوية"],"e3xU5E":["تم استلام الإيداع"],"eUbBqz":["1 ",["0"]," = ",["1"]],"fKSGnu":["الحد الأدنى للمبلغ المطلوب على هذه الشبكة لتغطية رسوم الشبكة والتوجيه."],"fWsBTs":["حدث خطأ. حاول مرة أخرى."],"flMR3h":["تم سحب أموالك بنجاح."],"g2UNkE":["مشغل بواسطة"],"gfh8CC":["الشبكات"],"hBIHD-":["إيداع ",["amount"],"، ",["date"]],"hFe8Jo":["تعذّر علينا تسعير هذا المبلغ. جرّب مبلغًا مختلفًا."],"hKMHs1":["الفرق بين الناتج المتوقع للمسار وسعر السوق الأوسط الأساسي."],"hMqszB":["المتابعة إلى الدفع"],"hPpyl6":["تم استرداد المبلغ"],"he3ygx":["نسخ"],"hehnjM":["المبلغ"],"i-4Fbp":["فشل الإيداع"],"i-EgW-":["التكلفة التقديرية لبث هذه المعاملة على سلسلة الوجهة."],"i1MfcA":["ستظهر هنا العملات المتاحة للإيداع من محفظتك."],"iH8pgl":["رجوع"],"iKuXva":["تم اختياره تلقائيًا"],"ib77lj":["بطاقة الخصم"],"jKZO-R":["اكتمل السحب"],"jerYcl":["المزوّدون"],"jtKSW-":["حد ",["0"]],"junZX6":["تم استلام الإيداع وجاري المعالجة…"],"kH6wUX":["تأثير السعر"],"kR8ayx":["بالنقر على تأكيد الإيداع، فإنك توافق على <0>الشروط</0>."],"kUFhUv":["فشل السحب."],"kj3M8S":["إيداع"],"kjrq_8":["مزيد من المعلومات"],"lDgVWA":["استلام"],"lOEm_1":["تم تنفيذ الطلب"],"ldK3jJ":["فشل إرسال السحب."],"lxjao1":["مسار السيولة المختار المستخدم لتسوية هذا السحب."],"mF_ucv":["اتصل بمحفظة حتى تتمكن البوابة من توفير عنوان إيداع وتوجيه تحويلك."],"mgLWEL":["تراجعت معاملة الوجهة على السلسلة."],"mn0HrT":["تم رفض الدفع"],"mvYQx_":["تم الاكتشاف"],"mwUBEu":["لا يوجد مزوّدون متاحون"],"njn4bC":["أكِّد المعاملة في محفظتك"],"nr03QI":["أدخل عنوان المستلم"],"nwtY4N":["حدث خطأ"],"oBNGNc":["تغيَّر الناتج المتوقَّع للمسار أثناء انتظار معاملتك."],"oFmN8a":["إيداع ",["symbol"]],"oI_hGR":["رقم الطلب"],"oW1G8i":["تم إيداع أموالك بنجاح."],"ob8R_m":["حاول مرة أخرى أو تواصل معنا إذا استمرت المشكلة."],"ogD_nm":["إيداع إلى ",["0"]],"olEUh2":["ناجح"],"pCzTTC":["عنوان الإيداع الخاص بك"],"pJ3YlV":["أفهم أنني أشتري العملات المشفّرة مباشرةً عبر مزوّد خارجي وأوافق على إخلاء المسؤولية."],"q32Nt8":["اكتمل السحب"],"q9raxs":["انتهت صلاحية عملية الدفع هذه. يرجى البدء من جديد."],"qQ5VJt":["يتعذَّر الوصول إلى البوابة الآن"],"qj0vvX":["تأكيد الإيداع"],"qtoOYG":["بدون حد"],"quR8Qp":["في انتظار الدفع"],"rT8e1f":["المسار"],"rZdp61":["معاملة الإكمال"],"sMaRBz":["أكمل عملية الشراء في النافذة التي فتحناها للتو. تتحدّث هذه الشاشة تلقائيًا."],"sSiLKx":["شبكة الاستلام"],"sb9Y58":["محفظة"],"sbwbC0":["طريقة الدفع"],"srsA0x":["رُفض السحب."],"tTnE4T":["لا توجد أصول للإيداع"],"uPo3PQ":["عرض أقل"],"vepIdX":["سعر العملة الرقمية"],"vrnnn9":["جاري المعالجة"],"w-2VR9":["جاري السحب…"],"wdxz7K":["المصدر"],"wkskq5":["استخدام الحد الأقصى"],"xDAtGP":["الرسالة"],"xGVfLh":["متابعة"],"xu_4Dj":["وقت التسليم المقدّر: ",["0"]],"y1R6QS":["لا يمكن لهذه المحفظة استلام هذا الإيداع. جرّب عنوانًا مختلفًا."],"y3dWqX":["أكمل الدفع"],"y62Dys":["رسوم الشبكة"],"yH9V_J":["أدخل المبلغ"],"yLEjmm":[["resolvedPriceImpact"],"٪ تأثير على السعر"],"yQE2r9":["جارٍ التحميل"],"y_0uwd":["أمس"],"yrvWai":["معاملة المصدر"],"yxnt3y":["حالة التنفيذ"],"yy2rkt":["0x…"],"yz7wBu":["إغلاق"],"zYD5xm":["جاري الإضافة"],"zbtijb":["إيداع ",["0"]," إلى ",["1"]],"znqB4T":["رصيد غير كافٍ"],"{hours} hr":[["hours"]," ساعة"],"{minutes} min":[["minutes"]," دقيقة"],"{n}h":[["n"],"س"],"{n}m":[["n"],"د"],"{n}s":[["n"],"ث"]}`);export{e as messages};
|
package/dist/i18n/locales/es.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Máx ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Cierra este diálogo y vuelve a intentarlo en un momento. Si el problema persiste, verifica la clave del gateway en tu integración."],"0TEl46":["Cripto"],"0VFO13":["Pago cancelado"],"0eg2g7":["Estimando gas…"],"0lHlRj":["En tránsito"],"2Eoi_a":["Ver detalles"],"3dqPLT":["Transferir cripto"],"3eKjkO":["Depósito mínimo de ",["formattedMin"]],"3kg1gB":["Depósito completado"],"
|
|
1
|
+
const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Máx ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Cierra este diálogo y vuelve a intentarlo en un momento. Si el problema persiste, verifica la clave del gateway en tu integración."],"0TEl46":["Cripto"],"0VFO13":["Pago cancelado"],"0eg2g7":["Estimando gas…"],"0lHlRj":["En tránsito"],"2Eoi_a":["Ver detalles"],"3dqPLT":["Transferir cripto"],"3eKjkO":["Depósito mínimo de ",["formattedMin"]],"3kg1gB":["Depósito completado"],"3rWvwk":["La dirección que aparece en la ventana de pago es una dirección de depósito temporal: tus fondos se convierten y se acreditan automáticamente en tu cuenta."],"3yd3IL":["El controlador de depósito no pudo cargar la configuración del gateway."],"3ytoeI":["Este pago fue reembolsado. No se entregó ninguna cripto."],"5AApJw":["Conecta una billetera para continuar"],"5R2524":["Cancelaste el pago antes de completarlo."],"5joj8M":["Desglose de la transacción"],"60ahSE":["Tx del retiro"],"69Gavs":["Detalles técnicos"],"6A8Mts":["Hasta ",["0"]],"6D8qH6":["Envía el token seleccionado en la red elegida a esta dirección. Los fondos aparecerán en tu cuenta cuando la red confirme la transferencia."],"6RDwJM":["Tokens"],"6yS5kL":["Retiro en curso"],"72c5Qo":["Total"],"7Bj3x9":["Fallido"],"7evBec":["Tiempo de procesamiento: ",["resolvedProcessingTime"]],"7zrAuh":["No pudimos iniciar el pago. Inténtalo de nuevo."],"88cUW-":["Recibes"],"8T4Ha9":["Compras"],"9JHY2T":["Tu depósito se acreditó en tu cuenta."],"9XIJb8":["T…"],"9cCjMJ":["Depositar saldo máximo"],"9d3cBd":["No se pudo abrir la ventana de pago. Vuelve a intentarlo."],"9k9fRZ":["Abriendo el pago…"],"< 1 min":["< 1 min"],"AGFPtu":["Compra completada"],"AHyker":["Máx ",["0"]],"AO44G_":["Ver recibo"],"AOPSKq":["Depositar ",["0"]],"AUYALh":["Próximamente"],"AWtGgd":["Obtener ayuda"],"AeXO77":["Cuenta"],"AeZIvT":["Recibirás"],"AikETk":["Mín ",["minDeposit"]],"AmaCQf":["Los pagos con tarjeta no están disponibles temporalmente. Inténtalo de nuevo más tarde."],"B-4zEC":["No se pudo cargar la actividad. Inténtalo de nuevo."],"BhQhbU":["Usar la dirección sugerida del destinatario"],"BoQOH3":["Se requiere una billetera para depositar"],"CK1KXz":["Máx"],"Ck1xL4":["Envías"],"Cs44l6":["Depósito en curso"],"D79cZK":["Instantáneo"],"DPfwMq":["Listo"],"Dd7jP5":["¿Tienes problemas?"],"DoS2vD":["Ocultar detalles técnicos"],"ELhVSL":["No se pudo enviar el depósito."],"Ej5HL9":["Firma rechazada. Vuelve a intentarlo."],"Enslfm":["Destino"],"EqcUuN":["Recibirás ≈ ",["receive"]],"EzZNDI":["El pago con tarjeta no está disponible en tu región"],"G-SK3q":["El kit encontró un error inesperado y no pudo terminar de renderizar. Vuelve a intentarlo, o cierra este diálogo y reinténtalo desde la aplicación."],"GX8GKD":["Activos"],"GXkBas":["Máx ",["formattedLimit"]],"GZPxmc":["Ingresa una dirección de destinatario válida"],"GcuGHR":["Acreditado a ",["captionSuffix"]],"GwkmPx":["Cambiar el importe mostrado"],"HalPBQ":["Recargar en"],"HtxAvT":["Este pago ya no está disponible. Vuelve a empezar."],"IDt4jm":[["0","plural",{"one":["#"," segundo"],"other":["#"," segundos"]}]," restantes en la cotización"],"IRogzB":["Tu depósito se acreditó a ",["brand"],"."],"JYp-ic":["Procesando depósito"],"KDw4GX":["Reintentar"],"KGoAE6":["Auto · ",["value"]],"KTNWsg":["El retiro falló"],"KuqCAK":["~ 2 min"],"L3PYgw":["Buscar monedas"],"LEbOpR":["Más detalles"],"LS3na9":["Cambiar moneda, actualmente ",["code"]],"LZueaM":["Esta compra no está disponible en este momento. Prueba con otro importe o activo."],"LcET2C":["Política de privacidad"],"Ly6geA":["Regenerando cotización…"],"MZ_nQf":["Dirección del destinatario"],"Mgz4Bq":["Más proveedores próximamente"],"N2DUxS":["Saldo insuficiente"],"NzshpK":["La compra falló"],"OLF0i7":["No se pudieron cargar las opciones de depósito"],"OSBXx5":["Ahora mismo"],"Offl0a":["Tu depósito se acreditará en tu cuenta."],"Oi8TiZ":["Ver progreso"],"OsyKSt":["Retirar"],"P9fBwv":["Stack"],"PSGjEt":["Términos de uso"],"PiH3UR":["¡Copiado!"],"Q12Rrs":["Tx depósito"],"Q2lUR2":["Moneda"],"QFwptY":["Comisión de procesamiento"],"QU2cIs":["¿Tienes preguntas?"],"RO6we5":["Ninguna moneda coincide con «",["0"],"»"],"ReCJDz":["Ahora vas a salir hacia ",["provider"],", una plataforma de terceros independiente. Al continuar, reconoces que has leído y aceptas los <0>Términos de uso</0> y la <1>Política de privacidad</1> de ",["provider"],"."],"Rm325-":["Retiro de ",["amount"],", ",["date"]],"Rxjdjn":["El depósito no se completó"],"S7anoa":["El pago expiró"],"SOVBoe":["Copiar dirección de depósito"],"SZRUQ4":["Deslizamiento máximo"],"Sjplg3":["Ver en el explorador"],"SlfejT":["Error"],"TG4WOd":["Tu depósito se acreditará a ",["brand"],"."],"TT0aVH":["Orden enviada"],"UDBU3S":["Tu pago fue rechazado. Prueba con otra tarjeta o importe."],"Uevt3L":["Estimando cotización"],"UqHbdz":["Descartar aviso de depósito pendiente"],"V1fa9u":["Ver más"],"V8yTm6":["Borrar búsqueda"],"VAZUpd":["Orden fallida"],"VAxOSg":["Tú pagas"],"VHOVEJ":["Conectar billetera"],"V_WXOs":["Reabrir la ventana de pago"],"W9narx":["Monedas"],"WE9GC7":["Depositar efectivo"],"WkRH60":["Mín ",["0"]],"Wqz0SO":["Saldo bajo"],"XJOV1Y":["Actividad"],"X_Y-Ev":["Algo salió mal con tu compra. Inténtalo de nuevo."],"Xzw7uC":["Tus depósitos y retiros aparecerán aquí."],"Z0UMar":["No se pudo obtener la cotización."],"Z1WbO6":["Los fondos están seguros en la red de origen — contacta a soporte para recuperarlos."],"Z1fsV0":["La ventana de pago expiró antes de completarse."],"ZqugiS":["Saldo: ",["0"]," ",["1"]],"_QZdX-":["Tu retiro se completó con éxito."],"_girqu":["Retiro exitoso"],"_kXBrK":["Tiempo total"],"_rHUhS":["Efectivo"],"a2WllD":["Token a recibir"],"a3WpTF":["Ya tienes un pago en curso. Finalízalo o cancélalo antes de iniciar otro."],"aXFOuf":["Aún no hay actividad"],"a_Zu3Q":["Cambiar proveedor, actualmente ",["0"]],"aemBRq":["Proveedor"],"aiEUrg":["Mostrar detalles técnicos"],"bOZXx5":["Actualizar orden"],"bZnukT":["Costo de red"],"c3aao_":["Ver actividad"],"c6Bl9M":["Alternar detalles técnicos"],"cGYrpE":["Aplican términos"],"cHPbBJ":["El puente no pudo financiar la transacción de destino (presupuesto de gas agotado)."],"cxR5Qy":["Tx liquidación"],"e3xU5E":["Depósito recibido"],"eUbBqz":["1 ",["0"]," = ",["1"]],"fKSGnu":["Cantidad mínima requerida para que esta red cubra las tarifas y el enrutamiento."],"fWsBTs":["Algo salió mal. Vuelve a intentarlo."],"flMR3h":["Tus fondos fueron retirados con éxito."],"g2UNkE":["Con tecnología de"],"gfh8CC":["Redes"],"hBIHD-":["Depósito de ",["amount"],", ",["date"]],"hFe8Jo":["No pudimos cotizar ese importe. Prueba con otro importe."],"hKMHs1":["Diferencia entre el resultado esperado de la ruta y el precio medio de mercado subyacente."],"hMqszB":["Continuar al pago"],"hPpyl6":["Pago reembolsado"],"he3ygx":["Copiar"],"hehnjM":["Monto"],"i-4Fbp":["Depósito fallido"],"i-EgW-":["El costo estimado para emitir esta transacción en la red de destino."],"i1MfcA":["Los tokens disponibles para depositar desde tu billetera aparecerán aquí."],"iH8pgl":["Atrás"],"iKuXva":["Seleccionado automáticamente"],"ib77lj":["Tarjeta de débito"],"jKZO-R":["Retiro completado"],"jerYcl":["Proveedores"],"jtKSW-":["Límite ",["0"]],"junZX6":["Depósito recibido y procesando…"],"kH6wUX":["Impacto en precio"],"kR8ayx":["Al hacer clic en Confirmar depósito, aceptas nuestros <0>términos</0>."],"kUFhUv":["El retiro falló."],"kj3M8S":["Depositar"],"kjrq_8":["Más información"],"lDgVWA":["Recibir"],"lOEm_1":["Orden completada"],"ldK3jJ":["No se pudo enviar el retiro."],"lxjao1":["La ruta de liquidez seleccionada para liquidar este retiro."],"mF_ucv":["Conecta una billetera para que el gateway pueda provisionar una dirección de depósito y enrutar tu transferencia."],"mgLWEL":["La transacción del tramo de destino se revirtió en cadena."],"mn0HrT":["Pago rechazado"],"mvYQx_":["Detectado"],"mwUBEu":["No hay proveedores disponibles"],"njn4bC":["Confirma la transacción en tu billetera"],"nr03QI":["Ingresa la dirección del destinatario"],"nwtY4N":["Algo salió mal"],"oBNGNc":["El resultado esperado de la ruta varió mientras tu transacción estaba pendiente."],"oFmN8a":["Depositar ",["symbol"]],"oI_hGR":["ID de pedido"],"oW1G8i":["Tus fondos se depositaron correctamente."],"ob8R_m":["Inténtalo nuevamente o contáctanos si el problema persiste."],"ogD_nm":["Depositar a ",["0"]],"olEUh2":["Exitoso"],"pCzTTC":["Tu dirección de depósito"],"pJ3YlV":["Entiendo que estoy comprando cripto directamente a través de un proveedor externo y acepto el aviso legal."],"q32Nt8":["Retiro completado"],"q9raxs":["Este pago ha caducado. Vuelve a empezar."],"qQ5VJt":["No podemos contactar el gateway en este momento"],"qj0vvX":["Confirmar depósito"],"qtoOYG":["Sin límite"],"quR8Qp":["Esperando el pago"],"rT8e1f":["Ruta"],"rZdp61":["Tx finalización"],"sMaRBz":["Completa tu compra en la ventana que acabamos de abrir. Esta pantalla se actualiza automáticamente."],"sSiLKx":["Red a recibir"],"sb9Y58":["Billetera"],"sbwbC0":["Método de pago"],"srsA0x":["Retiro rechazado."],"tTnE4T":["No hay activos para depositar"],"uPo3PQ":["Ver menos"],"vepIdX":["Precio cripto"],"vrnnn9":["Procesando"],"w-2VR9":["Retiro en curso…"],"wdxz7K":["Origen"],"wkskq5":["Usar máx"],"xDAtGP":["Mensaje"],"xGVfLh":["Continuar"],"xu_4Dj":["Tiempo de entrega estimado: ",["0"]],"y1R6QS":["Esta cartera no puede recibir este depósito. Prueba con otra dirección."],"y3dWqX":["Finaliza tu pago"],"y62Dys":["Comisión de red"],"yH9V_J":["Ingresa el monto"],"yLEjmm":[["resolvedPriceImpact"],"% de impacto en el precio"],"yQE2r9":["Cargando"],"y_0uwd":["Ayer"],"yrvWai":["Tx origen"],"yxnt3y":["Estado de ejecución"],"yy2rkt":["0x…"],"yz7wBu":["Cerrar"],"zYD5xm":["Acreditando"],"zbtijb":["Depositar ",["0"]," a ",["1"]],"znqB4T":["Saldo insuficiente"],"{hours} hr":[["hours"]," h"],"{minutes} min":[["minutes"]," min"],"{n}h":[["n"],"h"],"{n}m":[["n"],"m"],"{n}s":[["n"],"s"]}`);export{e as messages};
|
|
@@ -7,6 +7,6 @@
|
|
|
7
7
|
* as the typed contract for {@link defineMessages}: callers get autocomplete on every key the
|
|
8
8
|
* kit translates, and unknown keys fail at compile time via excess-property checks.
|
|
9
9
|
*/
|
|
10
|
-
type KitTranslatableKey = "0x…" | "1 {0} = {1}" | "< 1 min" | "A wallet is required to deposit" | "Account" | "Activity" | "Amount" | "Assets" | "Auto · {value}" | "Back" | "Balance: {0} {1}" | "Buy-with-card isn't available for your region" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Cash" | "Chains" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "Complete your purchase in the window we just opened. This screen updates automatically." | "Completion tx" | "Confirm Deposit" | "Confirm transaction in your wallet" | "Connect a wallet so the gateway can provision a deposit address and route your transfer." | "Connect a wallet to continue" | "Connect wallet" | "Continue" | "Continue to payment" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load activity. Please try again." | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Crypto" | "Crypto price" | "Deposit" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit in progress" | "Deposit max balance" | "Deposit of {amount}, {date}" | "Deposit processing" | "Deposit received" | "Deposit received and processing…" | "Deposit successful" | "Deposit to {0}" | "Deposit tx" | "Deposit {0}" | "Deposit {0} to {1}" | "Deposit {symbol}" | "Destination" | "Detected" | "Difference between the route's expected output and the underlying market mid-price." | "Dismiss pending deposit notice" | "Done" | "Enter Amount" | "Enter Recipient Address" | "Enter Valid Recipient Address" | "Error" | "Estimated time" | "Estimating gas…" | "Estimating quote" | "Experiencing problems?" | "Failed" | "Failed to fetch quote." | "Failed to open the payment window. Please try again." | "Failed to submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Finish your payment" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Have questions?" | "Hide
|
|
10
|
+
type KitTranslatableKey = "0x…" | "1 {0} = {1}" | "< 1 min" | "A wallet is required to deposit" | "Account" | "Activity" | "Amount" | "Assets" | "Auto · {value}" | "Auto-picked for you" | "Back" | "Balance: {0} {1}" | "Buy-with-card isn't available for your region" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Card payments are temporarily unavailable. Please try again later." | "Cash" | "Chains" | "Change currency, currently {code}" | "Change provider, currently {0}" | "Clear search" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "Coming soon" | "Complete your purchase in the window we just opened. This screen updates automatically." | "Completion tx" | "Confirm Deposit" | "Confirm transaction in your wallet" | "Connect a wallet so the gateway can provision a deposit address and route your transfer." | "Connect a wallet to continue" | "Connect wallet" | "Continue" | "Continue to payment" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load activity. Please try again." | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Crypto" | "Crypto price" | "Currencies" | "Currency" | "Debit Card" | "Deposit" | "Deposit Cash" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit in progress" | "Deposit max balance" | "Deposit of {amount}, {date}" | "Deposit processing" | "Deposit received" | "Deposit received and processing…" | "Deposit successful" | "Deposit to {0}" | "Deposit tx" | "Deposit {0}" | "Deposit {0} to {1}" | "Deposit {symbol}" | "Destination" | "Detected" | "Difference between the route's expected output and the underlying market mid-price." | "Dismiss pending deposit notice" | "Done" | "Enter Amount" | "Enter Recipient Address" | "Enter Valid Recipient Address" | "Error" | "Estimated delivery time: {0}" | "Estimated time" | "Estimating gas…" | "Estimating quote" | "Experiencing problems?" | "Failed" | "Failed to fetch quote." | "Failed to open the payment window. Please try again." | "Failed to submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Finish your payment" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Have questions?" | "Hide technical details" | "I understand that I'm purchasing crypto directly through a third-party provider and agree to the disclaimer." | "In transit" | "Instant" | "Insufficient Balance" | "Insufficient balance" | "Just now" | "Loading" | "Low Balance" | "Max" | "Max slippage" | "Max {0}" | "Max {formattedCap}" | "Max {formattedLimit}" | "Message" | "Min {0}" | "Min {minDeposit}" | "More about {0}" | "More details" | "More information" | "More providers coming soon" | "Network cost" | "Network fee" | "No activity yet" | "No assets to deposit" | "No currencies match “{0}”" | "No limit" | "No providers available" | "Opening checkout…" | "Order ID" | "Order failed" | "Order filled" | "Order submitted" | "Payment Method" | "Payment cancelled" | "Payment declined" | "Payment refunded" | "Payment timed out" | "Please try again or contact us if the issue persists." | "Powered by" | "Price impact" | "Privacy Policy" | "Processing" | "Processing fee" | "Processing time: {resolvedProcessingTime}" | "Provider" | "Providers" | "Purchase complete" | "Purchase failed" | "Receive" | "Receive chain" | "Receive token" | "Recipient address" | "Regenerating quote…" | "Reopen payment window" | "Route" | "Search currencies" | "See less" | "See more" | "Send the selected token on the selected chain to this address. Funds appear in your account once the network confirms the transfer." | "Settlement tx" | "Show technical details" | "Signature declined. Please try again." | "Something went wrong" | "Something went wrong with your purchase. Please try again." | "Something went wrong. Please try again." | "Source" | "Source tx" | "Stack" | "Successful" | "Swap displayed amount" | "Technical details" | "Terms apply" | "Terms of Use" | "The address shown in the payment window is a temporary deposit address — your funds are automatically converted and credited to your account." | "The bridge could not fund the destination transaction (gas budget exhausted)." | "The checkout window expired before payment completed." | "The deposit driver failed to load gateway configuration." | "The destination-leg transaction reverted on-chain." | "The estimated cost to broadcast this transaction on the destination chain." | "The kit hit an unexpected error and could not finish rendering. Try again, or close this dialog and retry from the host." | "The minimum amount required for this chain to cover network fees and routing." | "The route's expected output drifted while your transaction was pending." | "The selected liquidity route used to settle this withdrawal." | "This checkout has expired. Please start again." | "This checkout is no longer available. Please start again." | "This payment was refunded. No crypto was delivered." | "This purchase isn't available right now. Try a different amount or asset." | "This wallet can't receive this deposit. Try a different address." | "Toggle technical details" | "Tokens" | "Tokens available to deposit from your wallet will appear here." | "Top up on" | "Total" | "Total time" | "Transaction breakdown" | "Transfer Crypto" | "Try again" | "T…" | "Up to {0}" | "Update order" | "Use max" | "Use suggested recipient address" | "View activity" | "View details" | "View on Explorer" | "View progress" | "View receipt" | "Waiting for payment" | "Wallet" | "We can't reach the gateway right now" | "We couldn't price that amount. Try a different amount." | "We couldn't start checkout. Please try again." | "Withdraw" | "Withdrawal complete" | "Withdrawal completed" | "Withdrawal declined." | "Withdrawal failed" | "Withdrawal failed." | "Withdrawal in progress" | "Withdrawal in progress…" | "Withdrawal of {amount}, {date}" | "Withdrawal successful" | "Withdrawal tx" | "Yesterday" | "You already have a payment in progress. Finish or cancel it before starting another." | "You are now leaving for {provider}, a separate third-party platform. By proceeding, you acknowledge that you have read and agree to {provider}'s <0>Terms of Use</0> and <1>Privacy Policy</1>." | "You buy" | "You cancelled the payment before it completed." | "You pay" | "You receive" | "You send" | "You will receive" | "You will receive ≈ {receive}" | "Your deposit address" | "Your deposit has been credited to your account." | "Your deposit has been credited to {brand}." | "Your deposit will be credited to your account." | "Your deposit will be credited to {brand}." | "Your deposits and withdrawals will appear here." | "Your funds were successfully deposited." | "Your funds were successfully withdrawn." | "Your payment was declined. Try a different card or amount." | "Your withdrawal was completed successfully." | "{0, plural, one {# second} other {# seconds}} left on quote" | "{0} limit" | "{formattedMin} minimum deposit" | "{hours} hr" | "{minutes} min" | "{n}h" | "{n}m" | "{n}s" | "{resolvedPriceImpact}% price impact" | "~ 2 min";
|
|
11
11
|
//#endregion
|
|
12
12
|
export { KitTranslatableKey };
|
package/dist/icons/index.d.ts
CHANGED
|
@@ -3,6 +3,7 @@ import { AlertIcon } from "../shared/icons/AlertIcon.js";
|
|
|
3
3
|
import { ArrowDownIcon } from "../shared/icons/ArrowDownIcon.js";
|
|
4
4
|
import { ArrowRightIcon } from "../shared/icons/ArrowRightIcon.js";
|
|
5
5
|
import { ArrowRightLeftIcon } from "../shared/icons/ArrowRightLeftIcon.js";
|
|
6
|
+
import { BellIcon } from "../shared/icons/BellIcon.js";
|
|
6
7
|
import { BitcoinIcon } from "../shared/icons/BitcoinIcon.js";
|
|
7
8
|
import { CardIcon } from "../shared/icons/CardIcon.js";
|
|
8
9
|
import { CheckIcon } from "../shared/icons/CheckIcon.js";
|
|
@@ -14,6 +15,7 @@ import { CircleArrowUpIcon } from "../shared/icons/CircleArrowUpIcon.js";
|
|
|
14
15
|
import { CircleHelpIcon } from "../shared/icons/CircleHelpIcon.js";
|
|
15
16
|
import { ClockIcon } from "../shared/icons/ClockIcon.js";
|
|
16
17
|
import { CopyIcon } from "../shared/icons/CopyIcon.js";
|
|
18
|
+
import { DirhamSignIcon } from "../shared/icons/DirhamSignIcon.js";
|
|
17
19
|
import { ExternalLinkIcon } from "../shared/icons/ExternalLinkIcon.js";
|
|
18
20
|
import { BinanceIcon } from "../shared/icons/exchanges/BinanceIcon.js";
|
|
19
21
|
import { CoinbaseIcon } from "../shared/icons/exchanges/CoinbaseIcon.js";
|
|
@@ -26,6 +28,7 @@ import { LogoIcon } from "../shared/icons/LogoIcon.js";
|
|
|
26
28
|
import { MailIcon } from "../shared/icons/MailIcon.js";
|
|
27
29
|
import { PackageIcon } from "../shared/icons/PackageIcon.js";
|
|
28
30
|
import { QrCodeIcon } from "../shared/icons/QrCodeIcon.js";
|
|
31
|
+
import { SearchIcon } from "../shared/icons/SearchIcon.js";
|
|
29
32
|
import { WalletIcon } from "../shared/icons/WalletIcon.js";
|
|
30
33
|
import { XIcon } from "../shared/icons/XIcon.js";
|
|
31
|
-
export { ActivityIcon, AlertIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BinanceIcon, BitcoinIcon, CardIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, ExternalLinkIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, WalletIcon, XIcon };
|
|
34
|
+
export { ActivityIcon, AlertIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BellIcon, BinanceIcon, BitcoinIcon, CardIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, DirhamSignIcon, ExternalLinkIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, SearchIcon, WalletIcon, XIcon };
|
package/dist/icons/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{ActivityIcon as e}from"../shared/icons/ActivityIcon.js";import{AlertIcon as t}from"../shared/icons/AlertIcon.js";import{ArrowDownIcon as n}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as r}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as i}from"../shared/icons/ArrowRightLeftIcon.js";import{
|
|
1
|
+
import{ActivityIcon as e}from"../shared/icons/ActivityIcon.js";import{AlertIcon as t}from"../shared/icons/AlertIcon.js";import{ArrowDownIcon as n}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as r}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as i}from"../shared/icons/ArrowRightLeftIcon.js";import{BellIcon as a}from"../shared/icons/BellIcon.js";import{BitcoinIcon as o}from"../shared/icons/BitcoinIcon.js";import{CardIcon as s}from"../shared/icons/CardIcon.js";import{CheckIcon as c}from"../shared/icons/CheckIcon.js";import{ChevronDownIcon as l}from"../shared/icons/ChevronDownIcon.js";import{ChevronLeftIcon as u}from"../shared/icons/ChevronLeftIcon.js";import{ChevronRightIcon as d}from"../shared/icons/ChevronRightIcon.js";import{ChevronUpIcon as f}from"../shared/icons/ChevronUpIcon.js";import{CircleArrowUpIcon as p}from"../shared/icons/CircleArrowUpIcon.js";import{CircleHelpIcon as m}from"../shared/icons/CircleHelpIcon.js";import{ClockIcon as h}from"../shared/icons/ClockIcon.js";import{CopyIcon as g}from"../shared/icons/CopyIcon.js";import{DirhamSignIcon as _}from"../shared/icons/DirhamSignIcon.js";import{ExternalLinkIcon as v}from"../shared/icons/ExternalLinkIcon.js";import{BinanceIcon as y}from"../shared/icons/exchanges/BinanceIcon.js";import{CoinbaseIcon as b}from"../shared/icons/exchanges/CoinbaseIcon.js";import{KrakenIcon as x}from"../shared/icons/exchanges/KrakenIcon.js";import{OkxIcon as S}from"../shared/icons/exchanges/OkxIcon.js";import{RobinhoodIcon as C}from"../shared/icons/exchanges/RobinhoodIcon.js";import"../shared/icons/exchanges/index.js";import{InfoIcon as w}from"../shared/icons/InfoIcon.js";import{LoaderIcon as T}from"../shared/icons/LoaderIcon.js";import{LogoIcon as E}from"../shared/icons/LogoIcon.js";import{MailIcon as D}from"../shared/icons/MailIcon.js";import{PackageIcon as O}from"../shared/icons/PackageIcon.js";import{QrCodeIcon as k}from"../shared/icons/QrCodeIcon.js";import{SearchIcon as A}from"../shared/icons/SearchIcon.js";import{WalletIcon as j}from"../shared/icons/WalletIcon.js";import{XIcon as M}from"../shared/icons/XIcon.js";export{e as ActivityIcon,t as AlertIcon,n as ArrowDownIcon,r as ArrowRightIcon,i as ArrowRightLeftIcon,a as BellIcon,y as BinanceIcon,o as BitcoinIcon,s as CardIcon,c as CheckIcon,l as ChevronDownIcon,u as ChevronLeftIcon,d as ChevronRightIcon,f as ChevronUpIcon,p as CircleArrowUpIcon,m as CircleHelpIcon,h as ClockIcon,b as CoinbaseIcon,g as CopyIcon,_ as DirhamSignIcon,v as ExternalLinkIcon,w as InfoIcon,x as KrakenIcon,T as LoaderIcon,E as LogoIcon,D as MailIcon,S as OkxIcon,O as PackageIcon,k as QrCodeIcon,C as RobinhoodIcon,A as SearchIcon,j as WalletIcon,M as XIcon};
|
package/dist/package.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
var e=`0.1.0-alpha.
|
|
1
|
+
var e=`0.1.0-alpha.63`;export{e as version};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";import{useLingui as e}from"../i18n/useLingui.js";import"../../i18n/index.js";import{joinClassNames as t}from"../utils/joinClassNames.js";import{LogoIcon as n}from"../icons/LogoIcon.js";import"../../icons/index.js";import{ATTRIBUTION_SLOTS as r}from"./Attribution.slots.js";import{elementStyles as i,styles as a}from"./Attribution.styles.js";import{Fragment as o,jsx as s,jsxs as c}from"react/jsx-runtime";import*as l from"@stylexjs/stylex";function u({href:u=`https://stridge.com`,target:d=`_blank`,rel:f=`noopener noreferrer`,asStatic:p,
|
|
1
|
+
"use client";import{useLingui as e}from"../i18n/useLingui.js";import"../../i18n/index.js";import{joinClassNames as t}from"../utils/joinClassNames.js";import{LogoIcon as n}from"../icons/LogoIcon.js";import"../../icons/index.js";import{ATTRIBUTION_SLOTS as r}from"./Attribution.slots.js";import{elementStyles as i,styles as a}from"./Attribution.styles.js";import{Fragment as o,jsx as s,jsxs as c}from"react/jsx-runtime";import*as l from"@stylexjs/stylex";function u({href:u=`https://stridge.com`,target:d=`_blank`,rel:f=`noopener noreferrer`,asStatic:p,floating:m,className:h,style:g}){let{_}=e(),v=l.props(a.root,m?a.floating:null),y=l.props(a.link,!p&&a.anchor),b=l.props(i.prefix),x=l.props(i.mark),S=l.props(i.wordmark),C=t(v.className,h),w=v.style||g?{...v.style,...g}:void 0,T=c(o,{children:[s(`span`,{"data-stridge-slot":r.prefix,className:b.className,style:b.style,children:_({id:`g2UNkE`,message:`Powered by`})}),s(`span`,{"data-stridge-slot":r.mark,className:x.className,style:x.style,children:s(n,{"aria-hidden":!0,focusable:!1})}),s(`span`,{"data-stridge-slot":r.wordmark,className:S.className,style:S.style,children:`Stridge`})]});return s(`div`,{"data-stridge-slot":r.root,className:C,style:w,children:p?s(`span`,{className:y.className,style:y.style,children:T}):s(`a`,{href:u,target:d,rel:f,className:y.className,style:y.style,children:T})})}export{u as Attribution};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const e={root:{"Attribution__styles.root":`Attribution__styles.root`,"display-k1xSpc":`x78zum5`,"flexDirection-kXwgrk":`x1q0g3np`,"alignItems-kGNEyG":`x6s0dn4`,"justifyContent-kjj79g":`xl56j7k`,"paddingTop-kLKAdn":`x19ment4`,"paddingBottom-kGO01o":`xfvigk`,"paddingInline-kg3NbH":`x1ujb8i1`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:11`},link:{"Attribution__styles.link":`Attribution__styles.link`,"display-k1xSpc":`x3nfvp2`,"flexDirection-kXwgrk":`x1q0g3np`,"alignItems-kGNEyG":`x6s0dn4`,"gap-kOIVth":`x1a6yh9e`,"textDecoration-kybGjl":`x1hl2dhg`,"outline-kI3sdo":`x1a2a7pz`,"transitionProperty-k1ekBW":`xt3l3uh`,"transitionDuration-kIyJzY":`x1vhb3u9`,"transitionTimingFunction-kAMwcw":`x1xv5090`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:
|
|
1
|
+
const e={root:{"Attribution__styles.root":`Attribution__styles.root`,"display-k1xSpc":`x78zum5`,"flexDirection-kXwgrk":`x1q0g3np`,"alignItems-kGNEyG":`x6s0dn4`,"justifyContent-kjj79g":`xl56j7k`,"flexShrink-kmuXW":`x2lah0s`,"paddingTop-kLKAdn":`x19ment4`,"paddingBottom-kGO01o":`xfvigk`,"paddingInline-kg3NbH":`x1ujb8i1`,"transitionProperty-k1ekBW":`xkdsq27`,"transitionDuration-kIyJzY":`x1vhb3u9`,"transitionTimingFunction-kAMwcw":`x1xv5090`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:11`},floating:{"Attribution__styles.floating":`Attribution__styles.floating`,"boxShadow-kGVxlE":`xf7hhl2`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:30`},link:{"Attribution__styles.link":`Attribution__styles.link`,"display-k1xSpc":`x3nfvp2`,"flexDirection-kXwgrk":`x1q0g3np`,"alignItems-kGNEyG":`x6s0dn4`,"gap-kOIVth":`x1a6yh9e`,"textDecoration-kybGjl":`x1hl2dhg`,"outline-kI3sdo":`x1a2a7pz`,"transitionProperty-k1ekBW":`xt3l3uh`,"transitionDuration-kIyJzY":`x1vhb3u9`,"transitionTimingFunction-kAMwcw":`x1xv5090`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:33`},anchor:{"Attribution__styles.anchor":`Attribution__styles.anchor`,":focus-visible_outline-k3Woio":`x1gvykhg`,":focus-visible_outlineOffset-kiEn40":`x7s97pk`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:48`}},t={prefix:{"Attribution__elementStyles.prefix":`Attribution__elementStyles.prefix`,"fontSize-kGuDYH":`x1oae1zf`,"fontWeight-k63SB2":`xxjjie5`,"lineHeight-kLWn49":`x1d3mw78`,"color-kMwMTN":`xd2gg92`,":is(a:hover, a:focus-visible) [data-stridge-slot~='attribution-prefix']_color-kKNNVu":`x1wa2jhk`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:64`},mark:{"Attribution__elementStyles.mark":`Attribution__elementStyles.mark`,"display-k1xSpc":`x3nfvp2`,"alignItems-kGNEyG":`x6s0dn4`,"color-kMwMTN":`x9irweu`,":is(a:hover, a:focus-visible) [data-stridge-slot~='attribution-mark']_color-kEC4n1":`x1perupi`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:73`},wordmark:{"Attribution__elementStyles.wordmark":`Attribution__elementStyles.wordmark`,"fontSize-kGuDYH":`x1oae1zf`,"fontWeight-k63SB2":`x1qvi77d`,"letterSpacing-kb6lSQ":`x1ixy4ik`,"lineHeight-kLWn49":`x1d3mw78`,"color-kMwMTN":`x1nxg1fm`,":is(a:hover, a:focus-visible) [data-stridge-slot~='attribution-wordmark']_color-kKiZkk":`x19k0ldo`,":is(a:hover, a:focus-visible) [data-stridge-slot~='attribution-wordmark']_textDecoration-k7BEHM":`x1l0eogd`,":is(a:hover, a:focus-visible) [data-stridge-slot~='attribution-wordmark']_textUnderlineOffset-kHPfEo":`x1diuls0`,$$css:`@stridge/kit:src/shared/attribution/Attribution.styles.ts:81`}};export{t as elementStyles,e as styles};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use client";import{useKitConfig as e}from"../../scope/context.js";import{useIsInsideDialogContent as t}from"../ui/Dialog/Dialog.js";import"../ui/Dialog/index.js";import{Attribution as n}from"../attribution/Attribution.js";import"../attribution/index.js";import{Card as r}from"../ui/Card/Card.js";import"../../ui/index.js";import{
|
|
1
|
+
"use client";import{useKitConfig as e}from"../../scope/context.js";import{useIsInsideDialogContent as t}from"../ui/Dialog/Dialog.js";import"../ui/Dialog/index.js";import{Attribution as n}from"../attribution/Attribution.js";import"../attribution/index.js";import{Card as r}from"../ui/Card/Card.js";import"../../ui/index.js";import{useEffect as i,useRef as a,useState as o}from"react";import{jsx as s,jsxs as c}from"react/jsx-runtime";function l(e){let[t,n]=o(!1);return i(()=>{let t=e.current;if(!t)return;let r=null,i=null,a=()=>{n(r?r.scrollHeight-r.clientHeight-r.scrollTop>1:!1)},o=()=>{let e=t.querySelector(`[data-stridge-slot="scroll-area-viewport"]`);if(e!==r&&(r?.removeEventListener(`scroll`,a),i?.disconnect(),r=e,r)){r.addEventListener(`scroll`,a,{passive:!0}),i=new ResizeObserver(a),i.observe(r);for(let e of r.children)i.observe(e)}a()};o();let s=new MutationObserver(o);return s.observe(t,{childList:!0,subtree:!0}),()=>{s.disconnect(),i?.disconnect(),r?.removeEventListener(`scroll`,a)}},[e]),t}function u({className:i,style:o,dir:u,children:d,...f}){let p=t(),{direction:m,attribution:h}=e(),g=u??m,_=h!==`hidden`,v=a(null),y=l(v);if(p){let e={className:`Frame__styles.bare x78zum5 xdt5ytf xkz0k9k x2lwn1j x7giv3`,"data-style-src":`@stridge/kit:src/shared/dialog/Frame.tsx:89`};return c(`div`,{ref:v,...f,dir:g,className:[e.className,i].filter(Boolean).join(` `)||void 0,style:{...e.style,...o},children:[d,_?s(n,{floating:y}):null]})}return c(r,{variant:`frame`,dir:g,className:i,style:o,...f,children:[d,_?s(n,{}):null]})}export{u as Frame};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { I18n } from "@lingui/core";
|
|
2
|
+
|
|
3
|
+
//#region src/shared/format/formatFiat.d.ts
|
|
4
|
+
/**
|
|
5
|
+
* Options for {@link formatFiat}.
|
|
6
|
+
*/
|
|
7
|
+
interface FormatFiatOptions {
|
|
8
|
+
/**
|
|
9
|
+
* When `true` (the default), a positive value below the currency's smallest representable unit
|
|
10
|
+
* renders as a clamped `"< <symbol><unit>"` string (e.g. `"< $0.01"`, `"< ¥1"`) instead of
|
|
11
|
+
* rounding to a misleading zero. The clamp unit is derived from the currency's resolved
|
|
12
|
+
* fraction digits, so it is correct for 0-decimal currencies (JPY/KRW) as well.
|
|
13
|
+
*/
|
|
14
|
+
showSmallValueClamp?: boolean;
|
|
15
|
+
/** Extra `Intl.NumberFormat` overrides merged on top of the currency defaults. */
|
|
16
|
+
intlOptions?: Intl.NumberFormatOptions;
|
|
17
|
+
}
|
|
18
|
+
/**
|
|
19
|
+
* Format a fiat amount in `currency`, locale-correct for onramp surfaces. Unlike {@link formatUsd}
|
|
20
|
+
* (USD-only, manual `"$"` prefix), this routes through `Intl.NumberFormat`'s `style: "currency"`
|
|
21
|
+
* with `currencyDisplay: "narrowSymbol"`, so symbol placement, grouping, and fraction digits follow
|
|
22
|
+
* each currency's CLDR rules — JPY/KRW render with 0 decimals, EUR/GBP with 2, and symbol-after-
|
|
23
|
+
* amount locales place the symbol correctly. Never prepend `$` manually for onramp amounts.
|
|
24
|
+
*
|
|
25
|
+
* @param value - The numeric fiat amount in major units (e.g. dollars, euros, yen).
|
|
26
|
+
* @param i18n - The active Lingui {@link I18n} instance — `i18n.locale` drives the formatter.
|
|
27
|
+
* @param currency - ISO-4217 currency code (e.g. `"USD"`, `"EUR"`, `"JPY"`).
|
|
28
|
+
*/
|
|
29
|
+
declare function formatFiat(value: number, i18n: I18n, currency: string, options?: FormatFiatOptions): string;
|
|
30
|
+
//#endregion
|
|
31
|
+
export { FormatFiatOptions, formatFiat };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
function e(e,t,n,r={}){let i=r.showSmallValueClamp??!0,a=new Intl.NumberFormat(t.locale,{style:`currency`,currency:n,currencyDisplay:`narrowSymbol`,...r.intlOptions});if(i&&e>0){let t=10**-(a.resolvedOptions().maximumFractionDigits??2);if(e<t)return`< ${a.format(t)}`}return a.format(e)}export{e as formatFiat};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from "react";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
|
|
4
|
+
//#region src/shared/icons/BellIcon.d.ts
|
|
5
|
+
declare function BellIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { BellIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as e,jsxs as t}from"react/jsx-runtime";function n(n){return t(`svg`,{fill:`none`,height:`24`,stroke:`currentColor`,strokeLinecap:`round`,strokeLinejoin:`round`,strokeWidth:`2`,viewBox:`0 0 24 24`,width:`24`,xmlns:`http://www.w3.org/2000/svg`,...n,children:[e(`path`,{d:`M10.268 21a2 2 0 0 0 3.464 0`}),e(`path`,{d:`M3.262 15.326A1 1 0 0 0 4 17h16a1 1 0 0 0 .74-1.673C19.41 13.956 18 12.499 18 8A6 6 0 0 0 6 8c0 4.499-1.411 5.956-2.738 7.326`})]})}export{n as BellIcon};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { SVGProps } from "react";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
|
|
4
|
+
//#region src/shared/icons/DirhamSignIcon.d.ts
|
|
5
|
+
/**
|
|
6
|
+
* Official UAE dirham currency sign (Unicode 18.0 `U+20C3`, "UAE DIRHAM SIGN"). Inlined as an SVG
|
|
7
|
+
* because no shipping OS font renders the codepoint yet — native support arrives with Unicode 18.0
|
|
8
|
+
* (~Sept 2026) and rolls out gradually after, so the bare character would show a tofu box on
|
|
9
|
+
* virtually every current device. Filled with `currentColor` so it inherits the surrounding text
|
|
10
|
+
* colour; sized in `em` (cap-height by default) so it tracks the type it sits next to. Path traced
|
|
11
|
+
* from the Central Bank of the UAE mark (viewBox is wider than tall, so width derives from the
|
|
12
|
+
* aspect ratio when only `height` is set).
|
|
13
|
+
*/
|
|
14
|
+
declare function DirhamSignIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
|
|
15
|
+
//#endregion
|
|
16
|
+
export { DirhamSignIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,viewBox:`0 0 1000 870`,fill:`currentColor`,role:`img`,style:{display:`inline-block`,height:`0.78em`,width:`auto`,verticalAlign:`-0.02em`},...t,children:e(`path`,{d:`m88.3 1c0.4 0.6 2.6 3.3 4.7 5.9 15.3 18.2 26.8 47.8 33 85.1 4.1 24.5 4.3 32.2 4.3 125.6v87h-41.8c-38.2 0-42.6-0.2-50.1-1.7-11.8-2.5-24-9.2-32.2-17.8-6.5-6.9-6.3-7.3-5.9 13.6 0.5 17.3 0.7 19.2 3.2 28.6 4 14.9 9.5 26 17.8 35.9 11.3 13.6 22.8 21.2 39.2 26.3 3.5 1 10.9 1.4 37.1 1.6l32.7 0.5v43.3 43.4l-46.1-0.3-46.3-0.3-8-3.2c-9.5-3.8-13.8-6.6-23.1-14.9l-6.8-6.1 0.4 19.1c0.5 17.7 0.6 19.7 3.1 28.7 8.7 31.8 29.7 54.5 57.4 61.9 6.9 1.9 9.6 2 38.5 2.4l30.9 0.4v89.6c0 54.1-0.3 94-0.8 100.8-0.5 6.2-2.1 17.8-3.5 25.9-6.5 37.3-18.2 65.4-35 83.6l-3.4 3.7h169.1c101.1 0 176.7-0.4 187.8-0.9 19.5-1 63-5.3 72.8-7.4 3.1-0.6 8.9-1.5 12.7-2.1 8.1-1.2 21.5-4 40.8-8.9 27.2-6.8 52-15.3 76.3-26.1 7.6-3.4 29.4-14.5 35.2-18 3.1-1.8 6.8-4 8.2-4.7 3.9-2.1 10.4-6.3 19.9-13.1 4.7-3.4 9.4-6.7 10.4-7.4 4.2-2.8 18.7-14.9 25.3-21 25.1-23.1 46.1-48.8 62.4-76.3 2.3-4 5.3-9 6.6-11.1 3.3-5.6 16.9-33.6 18.2-37.8 0.6-1.9 1.4-3.9 1.8-4.3 2.6-3.4 17.6-50.6 19.4-60.9 0.6-3.3 0.9-3.8 3.4-4.3 1.6-0.3 24.9-0.3 51.8-0.1 53.8 0.4 53.8 0.4 65.7 5.9 6.7 3.1 8.7 4.5 16.1 11.2 9.7 8.7 8.8 10.1 8.2-11.7-0.4-12.8-0.9-20.7-1.8-23.9-3.4-12.3-4.2-14.9-7.2-21.1-9.8-21.4-26.2-36.7-47.2-44l-8.2-3-33.4-0.4-33.3-0.5 0.4-11.7c0.4-15.4 0.4-45.9-0.1-61.6l-0.4-12.6 44.6-0.2c38.2-0.2 45.3 0 49.5 1.1 12.6 3.5 21.1 8.3 31.5 17.8l5.8 5.4v-14.8c0-17.6-0.9-25.4-4.5-37-7.1-23.5-21.1-41-41.1-51.8-13-7-13.8-7.2-58.5-7.5-26.2-0.2-39.9-0.6-40.6-1.2-0.6-0.6-1.1-1.6-1.1-2.4 0-0.8-1.5-7.1-3.5-13.9-23.4-82.7-67.1-148.4-131-197.1-8.7-6.7-30-20.8-38.6-25.6-3.3-1.9-6.9-3.9-7.8-4.5-4.2-2.3-28.3-14.1-34.3-16.6-3.6-1.6-8.3-3.6-10.4-4.4-35.3-15.3-94.5-29.8-139.7-34.3-7.4-0.7-17.2-1.8-21.7-2.2-20.4-2.3-48.7-2.6-209.4-2.6-135.8 0-169.9 0.3-169.4 1zm330.7 43.3c33.8 2 54.6 4.6 78.9 10.5 74.2 17.6 126.4 54.8 164.3 117 3.5 5.8 18.3 36 20.5 42.1 10.5 28.3 15.6 45.1 20.1 67.3 1.1 5.4 2.6 12.6 3.3 16 0.7 3.3 1 6.4 0.7 6.7-0.5 0.4-100.9 0.6-223.3 0.5l-222.5-0.2-0.3-128.5c-0.1-70.6 0-129.3 0.3-130.4l0.4-1.9h71.1c39 0 78 0.4 86.5 0.9zm297.5 350.3c0.7 4.3 0.7 77.3 0 80.9l-0.6 2.7-227.5-0.2-227.4-0.3-0.2-42.4c-0.2-23.3 0-42.7 0.2-43.1 0.3-0.5 97.2-0.8 227.7-0.8h227.2zm-10.2 171.7c0.5 1.5-1.9 13.8-6.8 33.8-5.6 22.5-13.2 45.2-20.9 62-3.8 8.6-13.3 27.2-15.6 30.7-1.1 1.6-4.3 6.7-7.1 11.2-18 28.2-43.7 53.9-73 72.9-10.7 6.8-32.7 18.4-38.6 20.2-1.2 0.3-2.5 0.9-3 1.3-0.7 0.6-9.8 4-20.4 7.8-19.5 6.9-56.6 14.4-86.4 17.5-19.3 1.9-22.4 2-96.7 2h-76.9v-129.7-129.8l220.9-0.4c121.5-0.2 221.6-0.5 222.4-0.7 0.9-0.1 1.8 0.5 2.1 1.2z`})})}export{t as DirhamSignIcon};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { SVGProps } from "react";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
|
|
4
|
+
//#region src/shared/icons/SearchIcon.d.ts
|
|
5
|
+
declare function SearchIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
|
|
6
|
+
//#endregion
|
|
7
|
+
export { SearchIcon };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{jsx as e,jsxs as t}from"react/jsx-runtime";function n(n){return t(`svg`,{fill:`none`,height:`24`,stroke:`currentColor`,strokeLinecap:`round`,strokeLinejoin:`round`,strokeWidth:`2`,viewBox:`0 0 24 24`,width:`24`,xmlns:`http://www.w3.org/2000/svg`,...n,children:[e(`circle`,{cx:`11`,cy:`11`,r:`8`}),e(`path`,{d:`m21 21-4.3-4.3`})]})}export{n as SearchIcon};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use client";import{useCallback as e,useEffect as t,useLayoutEffect as n,useState as r}from"react";function i({rootRef:i,inputRef:c,prefixRef:l,suffixRef:u,text:d}){let[f,p]=r(57),[m,h]=r(null),[g,_]=r(!0),v=e(()=>{let e=i.current,t=c.current;if(!e||!t)return;let n=window.getComputedStyle(e),r=a(n,`--stridge-amt-max-font-size`,57),d=a(n,`--stridge-amt-min-font-size`,16),f=o(e);if(f<=0){p(e=>e===r?e:r);return}let m=t.value||t.placeholder||``,g=l.current?.textContent??``,_=u.current?.textContent??``,v=g+m+_,y=s(t,v,r);if(
|
|
1
|
+
"use client";import{useCallback as e,useEffect as t,useLayoutEffect as n,useState as r}from"react";function i({rootRef:i,inputRef:c,prefixRef:l,suffixRef:u,text:d}){let[f,p]=r(57),[m,h]=r(null),[g,_]=r(!0),v=e(()=>{let e=i.current,t=c.current;if(!e||!t)return;let n=window.getComputedStyle(e),r=a(n,`--stridge-amt-max-font-size`,57),d=a(n,`--stridge-amt-min-font-size`,16),f=o(e);if(f<=0){p(e=>e===r?e:r);return}let m=t.value||t.placeholder||``,g=l.current?.textContent??``,_=u.current?.textContent??``,v=g+m+_,y=Number.parseFloat(window.getComputedStyle(t).fontSize)||r,b=e=>{let t=0;for(let n of[l.current,u.current]){if(!n||(n.textContent??``).trim().length>0)continue;let r=n.offsetWidth;r>0&&(t+=r*e/y)}return t},x=s(t,v,r)+b(r);if(x===0){p(e=>e===r?e:r),h(0);return}let S=Math.min(r,Math.max(d,Math.floor(r*f/x))),C=S===r?x:s(t,v,S)+b(S);S<r&&C>f&&S>d&&(--S,C=s(t,v,S)+b(S)),p(e=>e===S?e:S),h(e=>e===C?e:C)},[i,c,l,u]);return n(()=>{v()},[v,d]),t(()=>{_(!1)},[]),t(()=>{let e=i.current;if(!e||typeof ResizeObserver>`u`)return;let t=new ResizeObserver(v);t.observe(e);let n=e.parentElement;return n&&t.observe(n),()=>t.disconnect()},[v,i]),{fontSize:f,inputWidth:m,isInitial:g}}function a(e,t,n){let r=e.getPropertyValue(t).trim();if(!r)return n;let i=Number.parseFloat(r);return Number.isFinite(i)?i:n}function o(e){let t=a(window.getComputedStyle(e),`--stridge-amt-available-width`,NaN);if(Number.isFinite(t)&&t>0)return t;let n=e.parentElement;if(!n)return e.clientWidth;let r=window.getComputedStyle(n),i=(Number.parseFloat(r.paddingInlineStart)||0)+(Number.parseFloat(r.paddingInlineEnd)||0),o=n.clientWidth-i;return o>0?o:e.clientWidth}function s(e,t,n){if(t===``)return 0;let r=window.getComputedStyle(e),i=document.createElement(`span`);i.style.cssText=`
|
|
2
2
|
position: absolute;
|
|
3
3
|
visibility: hidden;
|
|
4
4
|
white-space: nowrap;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { CSSProperties, Ref } from "react";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
|
|
4
|
+
//#region src/shared/ui/Checkbox/Checkbox.d.ts
|
|
5
|
+
/**
|
|
6
|
+
* Accessible checkbox control — a themed box that renders a check indicator when ticked. Wraps Base
|
|
7
|
+
* UI's headless `Checkbox` (keyboard + screen-reader semantics, hidden native input) and stamps the
|
|
8
|
+
* kit's token-driven surface. Label the control via `aria-label` / `aria-labelledby` — the box
|
|
9
|
+
* itself carries no visible label, so rich label content (e.g. a sentence with inline links) can
|
|
10
|
+
* live as a sibling without the links toggling the box.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* ```tsx
|
|
14
|
+
* <Checkbox checked={agreed} onCheckedChange={setAgreed} aria-labelledby="consent-text" />
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
declare function Checkbox({
|
|
18
|
+
checked,
|
|
19
|
+
defaultChecked,
|
|
20
|
+
onCheckedChange,
|
|
21
|
+
disabled,
|
|
22
|
+
className,
|
|
23
|
+
style,
|
|
24
|
+
...props
|
|
25
|
+
}: Checkbox.Props): _$react_jsx_runtime0.JSX.Element;
|
|
26
|
+
declare namespace Checkbox {
|
|
27
|
+
interface Props {
|
|
28
|
+
/** Controlled checked state. */
|
|
29
|
+
checked?: boolean;
|
|
30
|
+
/** Initial checked state for uncontrolled usage. */
|
|
31
|
+
defaultChecked?: boolean;
|
|
32
|
+
/** Fires with the next checked state on toggle. */
|
|
33
|
+
onCheckedChange?: (checked: boolean) => void;
|
|
34
|
+
/** When true, the control is non-interactive and dimmed. */
|
|
35
|
+
disabled?: boolean;
|
|
36
|
+
/** DOM id (associate an external `<label htmlFor>` or `aria-labelledby` target). */
|
|
37
|
+
id?: string;
|
|
38
|
+
"aria-label"?: string;
|
|
39
|
+
"aria-labelledby"?: string;
|
|
40
|
+
"aria-describedby"?: string;
|
|
41
|
+
className?: string;
|
|
42
|
+
style?: CSSProperties;
|
|
43
|
+
ref?: Ref<HTMLButtonElement>;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
//#endregion
|
|
47
|
+
export { Checkbox };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{joinClassNames as e}from"../../utils/joinClassNames.js";import{CheckIcon as t}from"../../icons/CheckIcon.js";import"../../../icons/index.js";import{CHECKBOX_SLOTS as n}from"./Checkbox.slots.js";import{styles as r}from"./Checkbox.styles.js";import{jsx as i}from"react/jsx-runtime";import*as a from"@stylexjs/stylex";import{Checkbox as o}from"@base-ui/react/checkbox";function s({checked:s,defaultChecked:c,onCheckedChange:l,disabled:u,className:d,style:f,...p}){let m=a.props(r.root,u?r.disabled:null);return i(o.Root,{...s===void 0?{}:{checked:s},...c===void 0?{}:{defaultChecked:c},...l?{onCheckedChange:e=>l(e)}:{},...u===void 0?{}:{disabled:u},"data-stridge-slot":n.root,...p,className:e(m.className,d),style:{...m.style,...f},children:i(o.Indicator,{"data-stridge-slot":n.indicator,...a.props(r.indicator),children:i(t,{"aria-hidden":!0,...a.props(r.icon)})})})}export{s as Checkbox};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
//#region src/shared/ui/Checkbox/Checkbox.slots.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* `data-stridge-slot` values for {@link import("./Checkbox").Checkbox}. Host CSS targets
|
|
4
|
+
* `[data-stridge-slot="checkbox"]` / `"checkbox-indicator"` to restyle the control.
|
|
5
|
+
*/
|
|
6
|
+
declare const CHECKBOX_SLOTS: {
|
|
7
|
+
readonly root: "checkbox";
|
|
8
|
+
readonly indicator: "checkbox-indicator";
|
|
9
|
+
};
|
|
10
|
+
type CheckboxSlot = (typeof CHECKBOX_SLOTS)[keyof typeof CHECKBOX_SLOTS];
|
|
11
|
+
//#endregion
|
|
12
|
+
export { CHECKBOX_SLOTS, CheckboxSlot };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e={root:`checkbox`,indicator:`checkbox-indicator`};export{e as CHECKBOX_SLOTS};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e={root:{"Checkbox__styles.root":`Checkbox__styles.root`,"position-kVAEAm":`x1n2onr6`,"display-k1xSpc":`x3nfvp2`,"alignItems-kGNEyG":`x6s0dn4`,"justifyContent-kjj79g":`xl56j7k`,"flexShrink-kmuXW":`x2lah0s`,"width-kzqmXN":`x1xp8n7a`,"height-kZKoxP":`xmix8c7`,"padding-kmVPX3":`x1717udv`,"margin-kogj98":`x1ghz6dp`,"borderRadius-kaIpWk":`x143j3yi`,"borderWidth-kMzoRj":`xvndefy`,"borderStyle-ksu8eU":`x1y0btm7`,"borderColor-kVAM5u":`x12c9lpl`,"backgroundColor-kWkggS":`x19u6ldj`,"appearance-kysU6D":`xjyslct`,"cursor-kkrTdU":`x1ypdohk`,"transitionProperty-k1ekBW":`x11vqxbs`,"transitionDuration-kIyJzY":`xx6bhzk`,"transitionTimingFunction-kAMwcw":`x9lcvmn`,"outline-kI3sdo":`x1a2a7pz`,"boxShadow-kGVxlE":`x159teg`,$$css:`@stridge/kit:src/shared/ui/Checkbox/Checkbox.styles.ts:4`},disabled:{"Checkbox__styles.disabled":`Checkbox__styles.disabled`,"cursor-kkrTdU":`x1h6gzvc`,"opacity-kSiTet":`xbyyjgo`,$$css:`@stridge/kit:src/shared/ui/Checkbox/Checkbox.styles.ts:30`},indicator:{"Checkbox__styles.indicator":`Checkbox__styles.indicator`,"position-kVAEAm":`x10l6tqk`,"top-k87sOh":`x13vifvy`,"insetInlineStart-kLqNvP":`x1o0tod`,"display-k1xSpc":`x78zum5`,"alignItems-kGNEyG":`x6s0dn4`,"justifyContent-kjj79g":`xl56j7k`,"width-kzqmXN":`xh8yej3`,"height-kZKoxP":`x5yr21d`,"borderRadius-kaIpWk":`x2zroun`,"backgroundColor-kWkggS":`xdmxa9o`,$$css:`@stridge/kit:src/shared/ui/Checkbox/Checkbox.styles.ts:34`},icon:{"Checkbox__styles.icon":`Checkbox__styles.icon`,"width-kzqmXN":`xsmyaan`,"height-kZKoxP":`x1kpxq89`,"color-kMwMTN":`x1kho0d4`,"strokeWidth-kfJifR":`xqjr0vm`,$$css:`@stridge/kit:src/shared/ui/Checkbox/Checkbox.styles.ts:46`}};export{e as styles};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import"./Checkbox.slots.js";import"./Checkbox.js";
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ComponentProps } from "react";
|
|
2
|
+
import * as _$react_jsx_runtime0 from "react/jsx-runtime";
|
|
3
|
+
|
|
4
|
+
//#region src/shared/ui/CurrencyGlyph/CurrencyGlyph.d.ts
|
|
5
|
+
/**
|
|
6
|
+
* Currency emblem for currency rows and the amount-entry chip. Resolves the currency's country flag
|
|
7
|
+
* by CDN convention (clipped to a circle) and renders it via {@link Image}; when the flag 404s or
|
|
8
|
+
* the currency has no mapped flag, the `Image` fallback shows a themed circle with the currency
|
|
9
|
+
* `symbol` (or 3-letter `code`). A driver-supplied `iconUrl` overrides the convention flag.
|
|
10
|
+
* RTL-safe and crisp at every density.
|
|
11
|
+
*
|
|
12
|
+
* @example
|
|
13
|
+
* ```tsx
|
|
14
|
+
* <CurrencyGlyph code="EUR" symbol="€" />
|
|
15
|
+
* <CurrencyGlyph code="JPY" symbol="¥" size={18} />
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
declare function CurrencyGlyph({
|
|
19
|
+
code,
|
|
20
|
+
symbol,
|
|
21
|
+
iconUrl,
|
|
22
|
+
size,
|
|
23
|
+
className,
|
|
24
|
+
style,
|
|
25
|
+
...props
|
|
26
|
+
}: CurrencyGlyph.Props): _$react_jsx_runtime0.JSX.Element;
|
|
27
|
+
declare namespace CurrencyGlyph {
|
|
28
|
+
type Props = Omit<ComponentProps<"span">, "children"> & {
|
|
29
|
+
/** ISO-4217 currency code (e.g. `"USD"`). Drives the bundled-flag lookup + the fallback glyph. */code: string; /** Currency symbol (e.g. `"$"`). Rendered when no flag is bundled and it is 1–2 chars. */
|
|
30
|
+
symbol?: string; /** Optional driver-supplied emblem URL — overrides the bundled flag + symbol fallback. */
|
|
31
|
+
iconUrl?: string; /** Diameter in pixels. Defaults to `36` (row size); pass `18`–`20` for an inline chip. */
|
|
32
|
+
size?: number;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
//#endregion
|
|
36
|
+
export { CurrencyGlyph };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import{joinClassNames as e}from"../../utils/joinClassNames.js";import{Image as t}from"../Image/Image.js";import"../Image/index.js";import{CURRENCY_GLYPH_SLOTS as n}from"./CurrencyGlyph.slots.js";import{styles as r}from"./CurrencyGlyph.styles.js";import{buildCurrencyFlagUrl as i}from"./flags.js";import{jsx as a}from"react/jsx-runtime";import*as o from"@stylexjs/stylex";function s(e,t){let n=t?.trim();return n&&n.length<=2?n:e.slice(0,3).toUpperCase()}function c({code:c,symbol:l,iconUrl:u,size:d=36,className:f,style:p,...m}){let h=u??i(c);if(h)return a(t,{src:h,alt:c,size:d,shape:`circle`,letter:s(c,l),"data-stridge-slot":n.root,...m,...f?{className:f}:{},...p?{style:p}:{}});let g=o.props(r.root),_=o.props(r.label),v=Math.max(9,Math.round(d*.4));return a(`span`,{"data-stridge-slot":n.root,"aria-hidden":`true`,...m,className:e(g.className,f),style:{...g.style,width:`${d}px`,height:`${d}px`,fontSize:`${v}px`,...p},children:a(`span`,{"data-stridge-slot":n.label,..._,children:s(c,l)})})}export{c as CurrencyGlyph};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
//#region src/shared/ui/CurrencyGlyph/CurrencyGlyph.slots.d.ts
|
|
2
|
+
/**
|
|
3
|
+
* `data-stridge-slot` values for {@link import("./CurrencyGlyph").CurrencyGlyph}. Host CSS targets
|
|
4
|
+
* `[data-stridge-slot="currency-glyph"]` to restyle the chip without reaching into kit internals.
|
|
5
|
+
*/
|
|
6
|
+
declare const CURRENCY_GLYPH_SLOTS: {
|
|
7
|
+
readonly root: "currency-glyph";
|
|
8
|
+
readonly label: "currency-glyph-label";
|
|
9
|
+
};
|
|
10
|
+
type CurrencyGlyphSlot = (typeof CURRENCY_GLYPH_SLOTS)[keyof typeof CURRENCY_GLYPH_SLOTS];
|
|
11
|
+
//#endregion
|
|
12
|
+
export { CURRENCY_GLYPH_SLOTS, CurrencyGlyphSlot };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e={root:`currency-glyph`,label:`currency-glyph-label`};export{e as CURRENCY_GLYPH_SLOTS};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
const e={root:{"CurrencyGlyph__styles.root":`CurrencyGlyph__styles.root`,"display-k1xSpc":`x3nfvp2`,"alignItems-kGNEyG":`x6s0dn4`,"justifyContent-kjj79g":`xl56j7k`,"flexShrink-kmuXW":`x2lah0s`,"borderRadius-kaIpWk":`x1npxkrn`,"backgroundColor-kWkggS":`x1qkydf4`,"color-kMwMTN":`xzn0pkc`,"borderWidth-kMzoRj":`xmkeg23`,"borderStyle-ksu8eU":`x1y0btm7`,"borderColor-kVAM5u":`x12c9lpl`,"fontFamily-kMv6JI":`xlaww2m`,"fontWeight-k63SB2":`x1qvi77d`,"lineHeight-kLWn49":`xo5v014`,"overflow-kVQacm":`xb3r6kr`,"userSelect-kfSwDN":`x87ps6o`,$$css:`@stridge/kit:src/shared/ui/CurrencyGlyph/CurrencyGlyph.styles.ts:4`},label:{"CurrencyGlyph__styles.label":`CurrencyGlyph__styles.label`,"display-k1xSpc":`x1lliihq`,"textAlign-k9WMMc":`x2b8uid`,"letterSpacing-kb6lSQ":`x17krmmv`,$$css:`@stridge/kit:src/shared/ui/CurrencyGlyph/CurrencyGlyph.styles.ts:21`}};export{e as styles};
|