@stridge/kit 0.1.0-alpha.49 → 0.1.0-alpha.50

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.
Files changed (114) hide show
  1. package/dist/_internal/deposit/widgets/index.d.ts +3 -1
  2. package/dist/_internal/deposit/widgets/index.js +1 -1
  3. package/dist/_internal/withdraw/widgets/index.d.ts +3 -1
  4. package/dist/_internal/withdraw/widgets/index.js +1 -1
  5. package/dist/activity-history/compound/index.d.ts +9 -0
  6. package/dist/activity-history/compound/index.js +1 -0
  7. package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
  8. package/dist/drivers/stridge/createStridgeWithdrawDriver.js +1 -1
  9. package/dist/drivers/stridge/internal/pollOnce.js +1 -1
  10. package/dist/drivers/stridge-mock/createStridgeMockDriver.d.ts +2 -0
  11. package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
  12. package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.d.ts +2 -1
  13. package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.js +1 -1
  14. package/dist/drivers/stridge-mock/fixtures.d.ts +1 -1
  15. package/dist/drivers/stridge-mock/fixtures.js +1 -1
  16. package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
  17. package/dist/flows/deposit/driver/transformers/balanceToBalancesPayload.d.ts +2 -0
  18. package/dist/flows/deposit/driver/transformers/index.d.ts +1 -0
  19. package/dist/flows/deposit/driver/transformers/quoteToPayload.d.ts +2 -0
  20. package/dist/flows/deposit/driver/transformers/settlementToPayload.d.ts +25 -0
  21. package/dist/flows/deposit/driver/transformers/startToAddressesPayload.d.ts +2 -0
  22. package/dist/flows/deposit/driver/transformers/startToBrandPayload.d.ts +1 -0
  23. package/dist/flows/deposit/driver/transformers/startToTargetPayload.d.ts +2 -0
  24. package/dist/flows/deposit/driver/transformers/walletAddressToWalletPayload.d.ts +1 -0
  25. package/dist/flows/deposit/driver/types.d.ts +38 -1
  26. package/dist/flows/deposit/orchestrator/controller.js +1 -1
  27. package/dist/flows/deposit/orchestrator/reducer.js +1 -1
  28. package/dist/flows/deposit/orchestrator/types.d.ts +73 -0
  29. package/dist/flows/deposit/widgets/activity-history/DepositHistoryDetail.d.ts +40 -0
  30. package/dist/flows/deposit/widgets/activity-history/DepositHistoryDetail.js +1 -0
  31. package/dist/flows/deposit/widgets/activity-history/DepositHistoryList.d.ts +38 -0
  32. package/dist/flows/deposit/widgets/activity-history/DepositHistoryList.js +1 -0
  33. package/dist/flows/deposit/widgets/activity-history/index.d.ts +2 -0
  34. package/dist/flows/deposit/widgets/activity-history/index.js +1 -0
  35. package/dist/flows/deposit/widgets/activity-history/useDepositActivityHistorySource.js +1 -0
  36. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -1
  37. package/dist/flows/deposit/widgets/asset-picker/AssetPicker.js +1 -1
  38. package/dist/flows/deposit/widgets/deposit/compound/Deposit.styles.js +1 -1
  39. package/dist/flows/deposit/widgets/deposit/compound/components/Header.d.ts +10 -0
  40. package/dist/flows/deposit/widgets/deposit/compound/components/Header.js +1 -1
  41. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.styles.js +1 -1
  42. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.d.ts +5 -0
  43. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.js +1 -1
  44. package/dist/flows/shared/transformers/computeQuoteAttrs.d.ts +1 -0
  45. package/dist/flows/shared/transformers/index.d.ts +1 -0
  46. package/dist/flows/shared/transformers/pickRelevantSettlement.d.ts +1 -0
  47. package/dist/flows/withdraw/dialog/WithdrawDialog.js +1 -1
  48. package/dist/flows/withdraw/driver/types.d.ts +34 -0
  49. package/dist/flows/withdraw/orchestrator/controller.js +1 -1
  50. package/dist/flows/withdraw/orchestrator/reducer.js +1 -1
  51. package/dist/flows/withdraw/orchestrator/types.d.ts +70 -0
  52. package/dist/flows/withdraw/widgets/activity-history/WithdrawHistoryDetail.d.ts +39 -0
  53. package/dist/flows/withdraw/widgets/activity-history/WithdrawHistoryDetail.js +1 -0
  54. package/dist/flows/withdraw/widgets/activity-history/WithdrawHistoryList.d.ts +36 -0
  55. package/dist/flows/withdraw/widgets/activity-history/WithdrawHistoryList.js +1 -0
  56. package/dist/flows/withdraw/widgets/activity-history/index.d.ts +2 -0
  57. package/dist/flows/withdraw/widgets/activity-history/index.js +1 -0
  58. package/dist/flows/withdraw/widgets/activity-history/useWithdrawActivityHistorySource.js +1 -0
  59. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.d.ts +6 -1
  60. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.js +1 -1
  61. package/dist/i18n/locales/ar.js +1 -1
  62. package/dist/i18n/locales/es.js +1 -1
  63. package/dist/i18n/locales/source-keys.d.ts +1 -1
  64. package/dist/icons/index.d.ts +2 -1
  65. package/dist/icons/index.js +1 -1
  66. package/dist/index.d.ts +2 -1
  67. package/dist/package.js +1 -1
  68. package/dist/shared/icons/HistoryIcon.d.ts +12 -0
  69. package/dist/shared/icons/HistoryIcon.js +1 -0
  70. package/dist/shared/ui/SelectableTile/SelectableTile.d.ts +21 -8
  71. package/dist/shared/ui/SelectableTile/SelectableTile.js +1 -1
  72. package/dist/shared/widgets/activity-history/ActivityTrigger.js +1 -0
  73. package/dist/shared/widgets/activity-history/ActivityTrigger.styles.js +1 -0
  74. package/dist/shared/widgets/activity-history/adapters/settlementToWidgetProps.js +1 -0
  75. package/dist/shared/widgets/activity-history/compound/ActivityHistory.d.ts +95 -0
  76. package/dist/shared/widgets/activity-history/compound/ActivityHistory.js +1 -0
  77. package/dist/shared/widgets/activity-history/compound/ActivityHistory.slots.d.ts +22 -0
  78. package/dist/shared/widgets/activity-history/compound/ActivityHistory.slots.js +1 -0
  79. package/dist/shared/widgets/activity-history/compound/ActivityHistory.styles.js +1 -0
  80. package/dist/shared/widgets/activity-history/compound/ActivityHistoryDetail.d.ts +75 -0
  81. package/dist/shared/widgets/activity-history/compound/ActivityHistoryDetail.js +1 -0
  82. package/dist/shared/widgets/activity-history/compound/Row.slots.d.ts +21 -0
  83. package/dist/shared/widgets/activity-history/compound/Row.slots.js +1 -0
  84. package/dist/shared/widgets/activity-history/compound/Row.styles.js +1 -0
  85. package/dist/shared/widgets/activity-history/compound/components/Empty.d.ts +15 -0
  86. package/dist/shared/widgets/activity-history/compound/components/Empty.js +1 -0
  87. package/dist/shared/widgets/activity-history/compound/components/ErrorView.d.ts +26 -0
  88. package/dist/shared/widgets/activity-history/compound/components/ErrorView.js +1 -0
  89. package/dist/shared/widgets/activity-history/compound/components/HistoryHeader.d.ts +39 -0
  90. package/dist/shared/widgets/activity-history/compound/components/HistoryHeader.js +1 -0
  91. package/dist/shared/widgets/activity-history/compound/components/List.d.ts +23 -0
  92. package/dist/shared/widgets/activity-history/compound/components/List.js +1 -0
  93. package/dist/shared/widgets/activity-history/compound/components/Row.d.ts +54 -0
  94. package/dist/shared/widgets/activity-history/compound/components/Row.js +1 -0
  95. package/dist/shared/widgets/activity-history/compound/components/StatusPip.js +1 -0
  96. package/dist/shared/widgets/activity-history/compound/context.d.ts +79 -0
  97. package/dist/shared/widgets/activity-history/compound/context.js +1 -0
  98. package/dist/shared/widgets/activity-history/index.js +1 -0
  99. package/dist/shared/widgets/activity-history/payloads.d.ts +81 -0
  100. package/dist/shared/widgets/activity-history/transformers/historyResponseToPayload.js +1 -0
  101. package/dist/shared/widgets/activity-history/transformers/resolveDirection.js +1 -0
  102. package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
  103. package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
  104. package/dist/shared/widgets/amount-entry/compound/components/Header.d.ts +6 -1
  105. package/dist/shared/widgets/amount-entry/compound/components/Header.js +1 -1
  106. package/dist/shared/widgets/amount-entry/compound/types.d.ts +14 -0
  107. package/dist/shared/widgets/asset-picker/compound/AssetPicker.js +1 -1
  108. package/dist/shared/widgets/asset-picker/compound/AssetPicker.styles.js +1 -1
  109. package/dist/shared/widgets/asset-picker/compound/components/Header.d.ts +6 -1
  110. package/dist/shared/widgets/asset-picker/compound/components/Header.js +1 -1
  111. package/dist/shared/widgets/asset-picker/compound/types.d.ts +14 -0
  112. package/dist/stridge/stubs.js +1 -1
  113. package/dist/styles/index.css +86 -0
  114. package/package.json +7 -3
@@ -30,6 +30,17 @@ interface WithdrawalFormSnapshot {
30
30
  */
31
31
  amountUsd?: string;
32
32
  }
33
+ /**
34
+ * Where `BACK` lands when the user exits the activity surface. Encoded once at `OPEN_HISTORY`
35
+ * time so the back chevron can restore the source state lossless. The withdraw flow's only
36
+ * pre-submit step is `form`, so the discriminated union is single-variant today — keeping the
37
+ * `kind` slot lets the shape grow if the form ever splits into multiple steps (mirrors deposit
38
+ * for cross-flow symmetry).
39
+ */
40
+ interface HistoryBackTarget {
41
+ kind: "form";
42
+ notice?: string;
43
+ }
33
44
  /**
34
45
  * State machine state for the orchestrated withdraw dialog. Per-state discriminated `ctx`
35
46
  * narrows what data is available.
@@ -86,6 +97,27 @@ type WithdrawState = {
86
97
  failure?: FailureInfo; /** Source-chain broadcast tx hash when the error followed a successful broadcast. */
87
98
  tx?: TxRef;
88
99
  };
100
+ } | {
101
+ /**
102
+ * Activity history list — reachable from `form` via the header icon. `backTarget`
103
+ * snapshots the source state (including any inline notice) at `OPEN_HISTORY` time so
104
+ * the back chevron can restore it lossless.
105
+ */
106
+ name: "historyList";
107
+ ctx: {
108
+ backTarget: HistoryBackTarget;
109
+ };
110
+ } | {
111
+ /**
112
+ * Activity history per-settlement detail — reached from `historyList` via
113
+ * `SELECT_SETTLEMENT`. Carries the selected row's id and the same `backTarget` so
114
+ * `BACK` collapses to `historyList` first, then to the original source step.
115
+ */
116
+ name: "historyDetail";
117
+ ctx: {
118
+ settlementId: string;
119
+ backTarget: HistoryBackTarget;
120
+ };
89
121
  };
90
122
  /**
91
123
  * Public state-name discriminator — useful for analytics and React-side gating without unwrapping
@@ -138,6 +170,27 @@ type WithdrawEvent = {
138
170
  type: "RESET";
139
171
  } | {
140
172
  type: "CLEAR_NOTICE";
173
+ } | {
174
+ /**
175
+ * User tapped the back chevron. Legal only from `historyList` / `historyDetail` today —
176
+ * the form step has no source to return to (closing the dialog is `CLOSE`). Two-step
177
+ * collapse: `historyDetail → historyList → source`.
178
+ */
179
+ type: "BACK";
180
+ } | {
181
+ /**
182
+ * User tapped the header history icon. Legal from `form`; ignored elsewhere. Snapshots
183
+ * the source state into a {@link HistoryBackTarget} so the back chevron can restore it
184
+ * lossless (including any inline notice surfaced after a recent submit failure).
185
+ */
186
+ type: "OPEN_HISTORY";
187
+ } | {
188
+ /**
189
+ * User tapped a row in the activity list. Legal only from `historyList`; transitions
190
+ * to `historyDetail` carrying the selected `settlementId`.
191
+ */
192
+ type: "SELECT_SETTLEMENT";
193
+ settlementId: string;
141
194
  };
142
195
  /**
143
196
  * Imperative controller returned by `useWithdraw()`. Mirrors {@link import("#/flows/deposit/orchestrator").DepositController}'s
@@ -179,6 +232,23 @@ interface WithdrawActions {
179
232
  * Clear the form's inline notice. No-op when there's no notice or the FSM isn't on `form`.
180
233
  */
181
234
  clearNotice(): void;
235
+ /**
236
+ * Back-chevron action. Today the chevron is only rendered on the activity history step
237
+ * (detail → list → source); other steps either render no chevron or close directly via
238
+ * {@link close}.
239
+ */
240
+ back(): void;
241
+ /**
242
+ * Header-icon entry into the activity surface. Legal from `form`; ignored elsewhere.
243
+ * Snapshots the current state into a {@link HistoryBackTarget} so `back()` can restore it
244
+ * lossless.
245
+ */
246
+ openHistory(): void;
247
+ /**
248
+ * Open the detail view for a settlement listed on the activity surface. Legal only from
249
+ * `historyList`; transitions the FSM to `historyDetail`.
250
+ */
251
+ selectSettlement(settlementId: string): void;
182
252
  }
183
253
  /**
184
254
  * Payload the kit hands to the host's `<WithdrawDialog onSubmit>` callback. Carries everything
@@ -0,0 +1,39 @@
1
+ import { ReactNode } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/flows/withdraw/widgets/activity-history/WithdrawHistoryDetail.d.ts
5
+ interface WithdrawHistoryDetailOwnProps {
6
+ /**
7
+ * Optional custom composition forwarded to the underlying `<ActivityHistoryDetail>`
8
+ * compound. Defaults to mounting all three per-kind parts.
9
+ */
10
+ children?: ReactNode;
11
+ }
12
+ /**
13
+ * Orchestrated activity-history detail wrapper for the withdraw dialog. Mirrors
14
+ * {@link import("#/flows/deposit/widgets/activity-history").DepositHistoryDetail}. Renders
15
+ * `null` while the FSM is not on `historyDetail`.
16
+ */
17
+ declare function WithdrawHistoryDetail({
18
+ children
19
+ }: WithdrawHistoryDetailOwnProps): _$react_jsx_runtime0.JSX.Element | null;
20
+ declare namespace WithdrawHistoryDetail {
21
+ type Props = WithdrawHistoryDetailOwnProps;
22
+ const Processing: ({
23
+ children
24
+ }: {
25
+ children?: ReactNode;
26
+ }) => _$react_jsx_runtime0.JSX.Element | null;
27
+ const Succeeded: ({
28
+ children
29
+ }: {
30
+ children?: ReactNode;
31
+ }) => _$react_jsx_runtime0.JSX.Element | null;
32
+ const Failed: ({
33
+ children
34
+ }: {
35
+ children?: ReactNode;
36
+ }) => _$react_jsx_runtime0.JSX.Element | null;
37
+ }
38
+ //#endregion
39
+ export { WithdrawHistoryDetail };
@@ -0,0 +1 @@
1
+ "use client";import{ActivityHistorySourceProvider as e}from"../../../../shared/widgets/activity-history/compound/context.js";import{ActivityHistoryDetail as t}from"../../../../shared/widgets/activity-history/compound/ActivityHistoryDetail.js";import"../../../../activity-history/compound/index.js";import{useWithdrawActivityHistorySource as n}from"./useWithdrawActivityHistorySource.js";import{jsx as r}from"react/jsx-runtime";function i({children:i}){let{sourceValue:a,step:o}=n();return o!==`historyDetail`||!a?null:r(e,{value:a,children:r(t,{children:i})})}(function(e){e.Processing=t.Processing,e.Succeeded=t.Succeeded,e.Failed=t.Failed})(i||={});export{i as WithdrawHistoryDetail};
@@ -0,0 +1,36 @@
1
+ import { ActivityHistoryEmpty } from "../../../../shared/widgets/activity-history/compound/components/Empty.js";
2
+ import { ActivityHistoryErrorView } from "../../../../shared/widgets/activity-history/compound/components/ErrorView.js";
3
+ import { ActivityHistoryHeader, ActivityHistoryListHeader } from "../../../../shared/widgets/activity-history/compound/components/HistoryHeader.js";
4
+ import { ActivityHistoryList } from "../../../../shared/widgets/activity-history/compound/components/List.js";
5
+ import { ActivityHistoryRow } from "../../../../shared/widgets/activity-history/compound/components/Row.js";
6
+ import { ComponentProps, ReactNode } from "react";
7
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
8
+
9
+ //#region src/flows/withdraw/widgets/activity-history/WithdrawHistoryList.d.ts
10
+ interface WithdrawHistoryListOwnProps {
11
+ /**
12
+ * Optional custom composition forwarded to the underlying `<ActivityHistory>` compound.
13
+ * Defaults to the compound's `<Header /> + <List />` shape.
14
+ */
15
+ children?: ReactNode;
16
+ }
17
+ /**
18
+ * Orchestrated activity-history list wrapper for the withdraw dialog. Mirrors
19
+ * {@link import("#/flows/deposit/widgets/activity-history").DepositHistoryList}. Renders
20
+ * `null` while the FSM is not on `historyList`.
21
+ */
22
+ declare function WithdrawHistoryList({
23
+ children,
24
+ ...props
25
+ }: ComponentProps<"div"> & WithdrawHistoryListOwnProps): _$react_jsx_runtime0.JSX.Element | null;
26
+ declare namespace WithdrawHistoryList {
27
+ type Props = ComponentProps<"div"> & WithdrawHistoryListOwnProps;
28
+ const Header: typeof ActivityHistoryHeader;
29
+ const ListHeader: typeof ActivityHistoryListHeader;
30
+ const List: typeof ActivityHistoryList;
31
+ const Row: typeof ActivityHistoryRow;
32
+ const Empty: typeof ActivityHistoryEmpty;
33
+ const ErrorView: typeof ActivityHistoryErrorView;
34
+ }
35
+ //#endregion
36
+ export { WithdrawHistoryList };
@@ -0,0 +1 @@
1
+ "use client";import{ActivityHistorySourceProvider as e}from"../../../../shared/widgets/activity-history/compound/context.js";import{ActivityHistory as t}from"../../../../shared/widgets/activity-history/compound/ActivityHistory.js";import"../../../../activity-history/compound/index.js";import{useWithdrawActivityHistorySource as n}from"./useWithdrawActivityHistorySource.js";import{jsx as r}from"react/jsx-runtime";function i({children:i,...a}){let{sourceValue:o,step:s}=n();return s!==`historyList`||!o?null:r(e,{value:o,children:r(t,{...a,children:i})})}(function(e){e.Header=t.Header,e.ListHeader=t.ListHeader,e.List=t.List,e.Row=t.Row,e.Empty=t.Empty,e.ErrorView=t.ErrorView})(i||={});export{i as WithdrawHistoryList};
@@ -0,0 +1,2 @@
1
+ import { WithdrawHistoryDetail } from "./WithdrawHistoryDetail.js";
2
+ import { WithdrawHistoryList } from "./WithdrawHistoryList.js";
@@ -0,0 +1 @@
1
+ import"./WithdrawHistoryDetail.js";import"./WithdrawHistoryList.js";
@@ -0,0 +1 @@
1
+ "use client";import{useLingui as e}from"../../../../shared/i18n/useLingui.js";import"../../../../i18n/index.js";import{useWithdrawDriverInstance as t,useWithdrawSnapshot as n}from"../../driver/context.js";import{useWithdrawActions as r,useWithdrawEffectiveState as i}from"../../orchestrator/controller.js";import"../../orchestrator/index.js";import{defaultBlockExplorers as a}from"../../../../shared/utils/explorers.js";import{useCallback as o,useMemo as s}from"react";function c(){let c=n(),l=r(),u=t(),d=i(),{i18n:f}=e(),p=o(e=>{u.refreshHistory?.(e)},[u]),m=d.name===`historyList`||d.name===`historyDetail`,h=d.name===`historyDetail`?d.ctx.settlementId:void 0;return{sourceValue:s(()=>{if(!m)return null;let e={i18n:f,sourceWallet:{name:`Wallet`,address:`0x0000000000000000000000000000000000000000`},explorers:a()};return{entity:c.history,refresh:p,selectSettlement:l.selectSettlement,back:l.back,...h===void 0?{}:{settlementId:h},settlementContext:e}},[c,l,m,h,f,p]),settlementId:h,step:d.name===`historyList`?`historyList`:d.name===`historyDetail`?`historyDetail`:`other`}}export{c as useWithdrawActivityHistorySource};
@@ -5,13 +5,18 @@ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
5
5
  /**
6
6
  * Header part — back chevron + title + (optional) quote countdown ring + dialog close. Mirrors
7
7
  * `TransferCrypto.Header`'s shape so both flows render the same modal-chrome rhythm. The chevron
8
- * only renders when `onBack` is supplied; in V2 the orchestrated wrapper omits it (`form` has no
8
+ * only renders when `onBack` is supplied; the orchestrated wrapper omits it (`form` has no
9
9
  * parent step).
10
10
  *
11
11
  * The quote countdown ring renders only when the orchestrated wrapper supplies both
12
12
  * `quoteSeconds` and `quoteTotalSeconds` — i.e. when there's an actively-tracked quote whose
13
13
  * freshness window is meaningful (recipient is valid, amount > 0, balance covers it). Mirrors
14
14
  * deposit's confirm-deposit timer.
15
+ *
16
+ * Activity-history trigger — between the optional quote timer and the close X, an
17
+ * `<ActivityTrigger>` button opens the cross-flow activity surface. Gated on the host driver
18
+ * implementing `refreshHistory`; the steps router only mounts this header on `form`, so an
19
+ * additional FSM-state allow-list would be redundant.
15
20
  */
16
21
  declare function WithdrawFormHeader({
17
22
  onBack,
@@ -1 +1 @@
1
- "use client";import{useLingui as e}from"../../../../../../shared/i18n/useLingui.js";import"../../../../../../i18n/index.js";import{ChevronLeftIcon as t}from"../../../../../../shared/icons/ChevronLeftIcon.js";import"../../../../../../icons/index.js";import{IconButton as n}from"../../../../../../shared/ui/IconButton/IconButton.js";import{Dialog as r}from"../../../../../../shared/ui/Dialog/Dialog.js";import"../../../../../../shared/ui/Dialog/index.js";import{Card as i}from"../../../../../../shared/ui/Card/Card.js";import{text as a}from"../../../../../../shared/ui/Text/Text.js";import"../../../../../../ui/index.js";import{QuoteTimer as o}from"../../../../../../shared/widgets/confirm-transfer/compound/components/QuoteTimer.js";import{useWithdrawFormContext as s}from"../context.js";import{WITHDRAW_FORM_SLOTS as c}from"../WithdrawForm.slots.js";import{styles as l}from"../WithdrawForm.styles.js";import{jsx as u,jsxs as d}from"react/jsx-runtime";import*as f from"@stylexjs/stylex";function p({onBack:p,title:m}){let{_:h}=e(),g=s(`WithdrawForm.Header`),_=m??h({id:`OsyKSt`,message:`Withdraw`}),v=g.quoteSeconds!==void 0&&g.quoteTotalSeconds!==void 0&&g.quoteTotalSeconds>0;return d(i.Header,{"data-stridge-slot":c.header,...f.props(l.header),children:[d(`div`,{...f.props(l.headerLeft),children:[typeof p==`function`?u(n,{"aria-label":h({id:`iH8pgl`,message:`Back`}),onClick:p,children:u(t,{"aria-hidden":!0,...f.props(l.backIcon)})}):null,u(a.span,{size:`base`,fontWeight:`semibold`,leading:`tight`,tracking:`tight`,style:{margin:0},children:_})]}),d(`div`,{...f.props(l.headerRight),children:[v?u(o,{seconds:g.quoteSeconds??0,total:g.quoteTotalSeconds}):null,u(r.CloseButton,{})]})]})}export{p as WithdrawFormHeader};
1
+ "use client";import{useLingui as e}from"../../../../../../shared/i18n/useLingui.js";import"../../../../../../i18n/index.js";import{useWithdrawDriverInstance as t}from"../../../../driver/context.js";import{useWithdrawActions as n}from"../../../../orchestrator/controller.js";import{ChevronLeftIcon as r}from"../../../../../../shared/icons/ChevronLeftIcon.js";import"../../../../../../icons/index.js";import{IconButton as i}from"../../../../../../shared/ui/IconButton/IconButton.js";import{Dialog as a}from"../../../../../../shared/ui/Dialog/Dialog.js";import"../../../../../../shared/ui/Dialog/index.js";import{Card as o}from"../../../../../../shared/ui/Card/Card.js";import{text as s}from"../../../../../../shared/ui/Text/Text.js";import"../../../../../../ui/index.js";import{ActivityTrigger as c}from"../../../../../../shared/widgets/activity-history/ActivityTrigger.js";import"../../../../../../shared/widgets/activity-history/index.js";import{QuoteTimer as l}from"../../../../../../shared/widgets/confirm-transfer/compound/components/QuoteTimer.js";import{useWithdrawFormContext as u}from"../context.js";import{WITHDRAW_FORM_SLOTS as d}from"../WithdrawForm.slots.js";import{styles as f}from"../WithdrawForm.styles.js";import{jsx as p,jsxs as m}from"react/jsx-runtime";import*as h from"@stylexjs/stylex";function g({onBack:g,title:_}){let{_:v}=e(),y=u(`WithdrawForm.Header`),{openHistory:b}=n(),x=typeof t().refreshHistory==`function`,S=_??v({id:`OsyKSt`,message:`Withdraw`}),C=y.quoteSeconds!==void 0&&y.quoteTotalSeconds!==void 0&&y.quoteTotalSeconds>0;return m(o.Header,{"data-stridge-slot":d.header,...h.props(f.header),children:[m(`div`,{...h.props(f.headerLeft),children:[typeof g==`function`?p(i,{"aria-label":v({id:`iH8pgl`,message:`Back`}),onClick:g,children:p(r,{"aria-hidden":!0,...h.props(f.backIcon)})}):null,p(s.span,{size:`base`,fontWeight:`semibold`,leading:`tight`,tracking:`tight`,style:{margin:0},children:S})]}),m(`div`,{...h.props(f.headerRight),children:[C?p(l,{seconds:y.quoteSeconds??0,total:y.quoteTotalSeconds}):null,x?p(c,{onOpen:b}):null,p(a.CloseButton,{})]})]})}export{g as WithdrawFormHeader};
@@ -1 +1 @@
1
- const e=JSON.parse(`{"--OGth":["نجح الإيداع"],"-I_tc5":["Max ",["formattedCap"]],"-nuEh_":["الوقت المُقدَّر"],"-tu7Q8":["المزيد عن ",["0"]],"02NghK":["Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration."],"0eg2g7":["جاري تقدير الغاز…"],"0lHlRj":["قيد النقل"],"2Eoi_a":["عرض التفاصيل"],"3dqPLT":["تحويل العملة الرقمية"],"3eKjkO":["الحد الأدنى للإيداع ",["formattedMin"]],"3kg1gB":["اكتمل الإيداع"],"3yd3IL":["The deposit driver failed to load gateway configuration."],"5AApJw":["اتصل بمحفظة للمتابعة"],"5joj8M":["تفاصيل المعاملة"],"60ahSE":["معاملة السحب"],"69Gavs":["Technical details"],"6D8qH6":["أرسل العملة المختارة على الشبكة المختارة إلى هذا العنوان. تظهر الأموال في حسابك بمجرد تأكيد الشبكة للتحويل."],"6RDwJM":["العملات"],"7Bj3x9":["فشل"],"7evBec":["وقت المعالجة: ",["resolvedProcessingTime"]],"88cUW-":["تستلم"],"9JHY2T":["تمت إضافة أموال إيداعك إلى حسابك."],"9XIJb8":["T…"],"9cCjMJ":["إيداع الحد الأقصى من الرصيد"],"< 1 min":["< دقيقة"],"AHyker":["Max ",["0"]],"AO44G_":["عرض الإيصال"],"AOPSKq":["إيداع ",["0"]],"AWtGgd":["احصل على المساعدة"],"AeXO77":["حساب"],"AeZIvT":["ستستلم"],"AikETk":["الحد الأدنى ",["minDeposit"]],"BhQhbU":["استخدم عنوان المستلم المقترح"],"BoQOH3":["يلزم وجود محفظة لإجراء الإيداع"],"CK1KXz":["الأقصى"],"Ck1xL4":["ترسل"],"D79cZK":["فوري"],"DPfwMq":["تم"],"Dd7jP5":["تواجه مشكلات؟"],"DoS2vD":["إخفاء التفاصيل التقنية"],"ELhVSL":["Failed to submit deposit."],"Ej5HL9":["Signature declined. Please try again."],"Enslfm":["الوجهة"],"G-SK3q":["واجهت الواجهة خطأً غير متوقع وتعذَّر إكمال العرض. حاول مرة أخرى، أو أغلق هذا الحوار وأعد المحاولة من التطبيق."],"GX8GKD":["الأصول"],"GZPxmc":["Enter Valid Recipient Address"],"GcuGHR":["تمت الإضافة إلى ",["captionSuffix"]],"GwkmPx":["تبديل المبلغ المعروض"],"IDt4jm":[["0","plural",{"one":["#"," second"],"other":["#"," seconds"]}]," left on quote"],"IRogzB":["تمت إضافة أموال إيداعك إلى ",["brand"],"."],"KDw4GX":["حاول مرة أخرى"],"KGoAE6":["تلقائي · ",["value"]],"KTNWsg":["فشل السحب"],"KuqCAK":["~ 2 دقيقة"],"LEbOpR":["مزيد من التفاصيل"],"Ly6geA":["جاري إعادة احتساب عرض السعر…"],"MZ_nQf":["عنوان المستلم"],"N2DUxS":["Insufficient Balance"],"OLF0i7":["Couldn't load deposit options"],"Offl0a":["ستُضاف أموال إيداعك إلى حسابك."],"Oi8TiZ":["عرض التقدم"],"OsyKSt":["سحب"],"P9fBwv":["Stack"],"PiH3UR":["تم النسخ!"],"Q12Rrs":["معاملة الإيداع"],"QU2cIs":["لديك أسئلة؟"],"Rxjdjn":["لم يكتمل الإيداع"],"SOVBoe":["نسخ عنوان الإيداع"],"SZRUQ4":["أقصى انزلاق سعري"],"Sjplg3":["عرض في المستكشف"],"SlfejT":["Error"],"TG4WOd":["ستُضاف أموال إيداعك إلى ",["brand"],"."],"TT0aVH":["تم إرسال الطلب"],"Uevt3L":["جاري تقدير العرض"],"UqHbdz":["إغلاق إشعار الإيداع قيد التنفيذ"],"V1fa9u":["عرض المزيد"],"VAZUpd":["فشل الطلب"],"VHOVEJ":["اتصل بالمحفظة"],"WkRH60":["الحد الأدنى ",["0"]],"Wqz0SO":["رصيد منخفض"],"Z1WbO6":["الأموال آمنة على شبكة المصدر — تواصل مع الدعم للاسترجاع."],"ZqugiS":["الرصيد: ",["0"]," ",["1"]],"_girqu":["نجح السحب"],"_kXBrK":["إجمالي الوقت"],"a2WllD":["العملة المستلمة"],"aiEUrg":["إظهار التفاصيل التقنية"],"bOZXx5":["تحديث الطلب"],"bZnukT":["تكلفة الشبكة"],"c6Bl9M":["Toggle technical details"],"cGYrpE":["تطبَّق الشروط"],"cHPbBJ":["تعذَّر على الجسر تمويل معاملة الوجهة (نفد رصيد الغاز)."],"cxR5Qy":["معاملة التسوية"],"e3xU5E":["تم استلام الإيداع"],"fKSGnu":["الحد الأدنى للمبلغ المطلوب على هذه الشبكة لتغطية رسوم الشبكة والتوجيه."],"fWsBTs":["حدث خطأ. حاول مرة أخرى."],"flMR3h":["تم سحب أموالك بنجاح."],"g2UNkE":["مشغل بواسطة"],"gfh8CC":["الشبكات"],"hKMHs1":["الفرق بين الناتج المتوقع للمسار وسعر السوق الأوسط الأساسي."],"he3ygx":["نسخ"],"hehnjM":["المبلغ"],"i-4Fbp":["فشل الإيداع"],"i-EgW-":["التكلفة التقديرية لبث هذه المعاملة على سلسلة الوجهة."],"iH8pgl":["رجوع"],"junZX6":["تم استلام الإيداع وجاري المعالجة…"],"kH6wUX":["تأثير السعر"],"kR8ayx":["بالنقر على تأكيد الإيداع، فإنك توافق على <0>الشروط</0>."],"kUFhUv":["Withdrawal failed."],"kj3M8S":["إيداع"],"kjrq_8":["مزيد من المعلومات"],"lOEm_1":["تم تنفيذ الطلب"],"ldK3jJ":["Failed to submit withdrawal."],"lxjao1":["مسار السيولة المختار المستخدم لتسوية هذا السحب."],"mF_ucv":["اتصل بمحفظة حتى تتمكن البوابة من توفير عنوان إيداع وتوجيه تحويلك."],"mgLWEL":["تراجعت معاملة الوجهة على السلسلة."],"mvYQx_":["تم الاكتشاف"],"njn4bC":["أكِّد المعاملة في محفظتك"],"nr03QI":["أدخل عنوان المستلم"],"nwtY4N":["حدث خطأ"],"oBNGNc":["The route's expected output drifted while your transaction was pending."],"oFmN8a":["إيداع ",["symbol"]],"oW1G8i":["تم إيداع أموالك بنجاح."],"ob8R_m":["حاول مرة أخرى أو تواصل معنا إذا استمرت المشكلة."],"ogD_nm":["إيداع إلى ",["0"]],"olEUh2":["ناجح"],"pCzTTC":["عنوان الإيداع الخاص بك"],"q32Nt8":["اكتمل السحب"],"qQ5VJt":["We can't reach the gateway right now"],"qj0vvX":["تأكيد الإيداع"],"qtoOYG":["بدون حد"],"rT8e1f":["المسار"],"rZdp61":["معاملة الإكمال"],"sSiLKx":["شبكة الاستلام"],"sb9Y58":["محفظة"],"sbwbC0":["طريقة الدفع"],"srsA0x":["Withdrawal declined."],"uPo3PQ":["عرض أقل"],"vrnnn9":["جاري المعالجة"],"w-2VR9":["جاري السحب…"],"wdxz7K":["المصدر"],"xDAtGP":["Message"],"xGVfLh":["متابعة"],"yH9V_J":["أدخل المبلغ"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yQE2r9":["جارٍ التحميل"],"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};
1
+ const e=JSON.parse(`{"--OGth":["نجح الإيداع"],"-I_tc5":["Max ",["formattedCap"]],"-nuEh_":["الوقت المُقدَّر"],"-tu7Q8":["المزيد عن ",["0"]],"02NghK":["Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration."],"0eg2g7":["جاري تقدير الغاز…"],"0lHlRj":["قيد النقل"],"2Eoi_a":["عرض التفاصيل"],"3dqPLT":["تحويل العملة الرقمية"],"3eKjkO":["الحد الأدنى للإيداع ",["formattedMin"]],"3kg1gB":["اكتمل الإيداع"],"3yd3IL":["The deposit driver failed to load gateway configuration."],"5AApJw":["اتصل بمحفظة للمتابعة"],"5joj8M":["تفاصيل المعاملة"],"60ahSE":["معاملة السحب"],"69Gavs":["Technical details"],"6D8qH6":["أرسل العملة المختارة على الشبكة المختارة إلى هذا العنوان. تظهر الأموال في حسابك بمجرد تأكيد الشبكة للتحويل."],"6RDwJM":["العملات"],"7Bj3x9":["فشل"],"7evBec":["وقت المعالجة: ",["resolvedProcessingTime"]],"88cUW-":["تستلم"],"9JHY2T":["تمت إضافة أموال إيداعك إلى حسابك."],"9XIJb8":["T…"],"9cCjMJ":["إيداع الحد الأقصى من الرصيد"],"< 1 min":["< دقيقة"],"AHyker":["Max ",["0"]],"AO44G_":["عرض الإيصال"],"AOPSKq":["إيداع ",["0"]],"AWtGgd":["احصل على المساعدة"],"AeXO77":["حساب"],"AeZIvT":["ستستلم"],"AikETk":["الحد الأدنى ",["minDeposit"]],"B-4zEC":["Couldn't load activity. Please try again."],"BhQhbU":["استخدم عنوان المستلم المقترح"],"BoQOH3":["يلزم وجود محفظة لإجراء الإيداع"],"CK1KXz":["الأقصى"],"Ck1xL4":["ترسل"],"D79cZK":["فوري"],"DPfwMq":["تم"],"Dd7jP5":["تواجه مشكلات؟"],"Deposit completed":["Deposit completed"],"Deposit failed":["Deposit failed"],"Deposit in progress":["Deposit in progress"],"Deposit of {amount}, {date}":["Deposit of ",["amount"],", ",["date"]],"DoS2vD":["إخفاء التفاصيل التقنية"],"ELhVSL":["Failed to submit deposit."],"Ej5HL9":["Signature declined. Please try again."],"Enslfm":["الوجهة"],"G-SK3q":["واجهت الواجهة خطأً غير متوقع وتعذَّر إكمال العرض. حاول مرة أخرى، أو أغلق هذا الحوار وأعد المحاولة من التطبيق."],"GX8GKD":["الأصول"],"GZPxmc":["Enter Valid Recipient Address"],"GcuGHR":["تمت الإضافة إلى ",["captionSuffix"]],"GwkmPx":["تبديل المبلغ المعروض"],"IDt4jm":[["0","plural",{"one":["#"," second"],"other":["#"," seconds"]}]," left on quote"],"IRogzB":["تمت إضافة أموال إيداعك إلى ",["brand"],"."],"Just now":["Just now"],"KDw4GX":["حاول مرة أخرى"],"KGoAE6":["تلقائي · ",["value"]],"KTNWsg":["فشل السحب"],"KuqCAK":["~ 2 دقيقة"],"LEbOpR":["مزيد من التفاصيل"],"Ly6geA":["جاري إعادة احتساب عرض السعر…"],"MZ_nQf":["عنوان المستلم"],"N2DUxS":["Insufficient Balance"],"OLF0i7":["Couldn't load deposit options"],"Offl0a":["ستُضاف أموال إيداعك إلى حسابك."],"Oi8TiZ":["عرض التقدم"],"OsyKSt":["سحب"],"P9fBwv":["Stack"],"PiH3UR":["تم النسخ!"],"Q12Rrs":["معاملة الإيداع"],"QU2cIs":["لديك أسئلة؟"],"Rxjdjn":["لم يكتمل الإيداع"],"SOVBoe":["نسخ عنوان الإيداع"],"SZRUQ4":["أقصى انزلاق سعري"],"Sjplg3":["عرض في المستكشف"],"SlfejT":["Error"],"TG4WOd":["ستُضاف أموال إيداعك إلى ",["brand"],"."],"TT0aVH":["تم إرسال الطلب"],"Uevt3L":["جاري تقدير العرض"],"UqHbdz":["إغلاق إشعار الإيداع قيد التنفيذ"],"V1fa9u":["عرض المزيد"],"VAZUpd":["فشل الطلب"],"VHOVEJ":["اتصل بالمحفظة"],"Vj6_6B":["View activity history"],"Withdrawal completed":["Withdrawal completed"],"Withdrawal failed":["Withdrawal failed"],"Withdrawal in progress":["Withdrawal in progress"],"Withdrawal of {amount}, {date}":["Withdrawal of ",["amount"],", ",["date"]],"WkRH60":["الحد الأدنى ",["0"]],"Wqz0SO":["رصيد منخفض"],"XJOV1Y":["Activity"],"XdtTGf":["Activity details"],"Xzw7uC":["Your deposits and withdrawals will appear here."],"Yesterday":["Yesterday"],"Z1WbO6":["الأموال آمنة على شبكة المصدر — تواصل مع الدعم للاسترجاع."],"ZqugiS":["الرصيد: ",["0"]," ",["1"]],"_QZdX-":["Your withdrawal was completed successfully."],"_girqu":["نجح السحب"],"_kXBrK":["إجمالي الوقت"],"a2WllD":["العملة المستلمة"],"aXFOuf":["No activity yet"],"aiEUrg":["إظهار التفاصيل التقنية"],"bOZXx5":["تحديث الطلب"],"bZnukT":["تكلفة الشبكة"],"c6Bl9M":["Toggle technical details"],"cGYrpE":["تطبَّق الشروط"],"cHPbBJ":["تعذَّر على الجسر تمويل معاملة الوجهة (نفد رصيد الغاز)."],"cxR5Qy":["معاملة التسوية"],"e3xU5E":["تم استلام الإيداع"],"fKSGnu":["الحد الأدنى للمبلغ المطلوب على هذه الشبكة لتغطية رسوم الشبكة والتوجيه."],"fWsBTs":["حدث خطأ. حاول مرة أخرى."],"flMR3h":["تم سحب أموالك بنجاح."],"g2UNkE":["مشغل بواسطة"],"gfh8CC":["الشبكات"],"hKMHs1":["الفرق بين الناتج المتوقع للمسار وسعر السوق الأوسط الأساسي."],"he3ygx":["نسخ"],"hehnjM":["المبلغ"],"i-4Fbp":["فشل الإيداع"],"i-EgW-":["التكلفة التقديرية لبث هذه المعاملة على سلسلة الوجهة."],"iH8pgl":["رجوع"],"junZX6":["تم استلام الإيداع وجاري المعالجة…"],"kH6wUX":["تأثير السعر"],"kR8ayx":["بالنقر على تأكيد الإيداع، فإنك توافق على <0>الشروط</0>."],"kUFhUv":["Withdrawal failed."],"kj3M8S":["إيداع"],"kjrq_8":["مزيد من المعلومات"],"lOEm_1":["تم تنفيذ الطلب"],"ldK3jJ":["Failed to submit withdrawal."],"lxjao1":["مسار السيولة المختار المستخدم لتسوية هذا السحب."],"mF_ucv":["اتصل بمحفظة حتى تتمكن البوابة من توفير عنوان إيداع وتوجيه تحويلك."],"mgLWEL":["تراجعت معاملة الوجهة على السلسلة."],"mvYQx_":["تم الاكتشاف"],"njn4bC":["أكِّد المعاملة في محفظتك"],"nr03QI":["أدخل عنوان المستلم"],"nwtY4N":["حدث خطأ"],"oBNGNc":["The route's expected output drifted while your transaction was pending."],"oFmN8a":["إيداع ",["symbol"]],"oW1G8i":["تم إيداع أموالك بنجاح."],"ob8R_m":["حاول مرة أخرى أو تواصل معنا إذا استمرت المشكلة."],"ogD_nm":["إيداع إلى ",["0"]],"olEUh2":["ناجح"],"pCzTTC":["عنوان الإيداع الخاص بك"],"q32Nt8":["اكتمل السحب"],"qQ5VJt":["We can't reach the gateway right now"],"qj0vvX":["تأكيد الإيداع"],"qtoOYG":["بدون حد"],"rT8e1f":["المسار"],"rZdp61":["معاملة الإكمال"],"sSiLKx":["شبكة الاستلام"],"sb9Y58":["محفظة"],"sbwbC0":["طريقة الدفع"],"srsA0x":["Withdrawal declined."],"uPo3PQ":["عرض أقل"],"vrnnn9":["جاري المعالجة"],"w-2VR9":["جاري السحب…"],"wdxz7K":["المصدر"],"xDAtGP":["Message"],"xGVfLh":["متابعة"],"yH9V_J":["أدخل المبلغ"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yQE2r9":["جارٍ التحميل"],"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};
@@ -1 +1 @@
1
- const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Max ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration."],"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"],"3yd3IL":["The deposit driver failed to load gateway configuration."],"5AApJw":["Conecta una billetera para continuar"],"5joj8M":["Desglose de la transacción"],"60ahSE":["Tx del retiro"],"69Gavs":["Technical details"],"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"],"7Bj3x9":["Fallido"],"7evBec":["Tiempo de procesamiento: ",["resolvedProcessingTime"]],"88cUW-":["Recibes"],"9JHY2T":["Tu depósito se acreditó en tu cuenta."],"9XIJb8":["T…"],"9cCjMJ":["Depositar saldo máximo"],"< 1 min":["< 1 min"],"AHyker":["Max ",["0"]],"AO44G_":["Ver recibo"],"AOPSKq":["Depositar ",["0"]],"AWtGgd":["Obtener ayuda"],"AeXO77":["Cuenta"],"AeZIvT":["Recibirás"],"AikETk":["Mín ",["minDeposit"]],"BhQhbU":["Usar la dirección sugerida del destinatario"],"BoQOH3":["Se requiere una billetera para depositar"],"CK1KXz":["Máx"],"Ck1xL4":["Envías"],"D79cZK":["Instantáneo"],"DPfwMq":["Listo"],"Dd7jP5":["¿Tienes problemas?"],"DoS2vD":["Ocultar detalles técnicos"],"ELhVSL":["Failed to submit deposit."],"Ej5HL9":["Signature declined. Please try again."],"Enslfm":["Destino"],"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"],"GZPxmc":["Enter Valid Recipient Address"],"GcuGHR":["Acreditado a ",["captionSuffix"]],"GwkmPx":["Cambiar el importe mostrado"],"IDt4jm":[["0","plural",{"one":["#"," second"],"other":["#"," seconds"]}]," left on quote"],"IRogzB":["Tu depósito se acreditó a ",["brand"],"."],"KDw4GX":["Reintentar"],"KGoAE6":["Auto · ",["value"]],"KTNWsg":["El retiro falló"],"KuqCAK":["~ 2 min"],"LEbOpR":["Más detalles"],"Ly6geA":["Regenerando cotización…"],"MZ_nQf":["Dirección del destinatario"],"N2DUxS":["Insufficient Balance"],"OLF0i7":["Couldn't load deposit options"],"Offl0a":["Tu depósito se acreditará en tu cuenta."],"Oi8TiZ":["Ver progreso"],"OsyKSt":["Retirar"],"P9fBwv":["Stack"],"PiH3UR":["¡Copiado!"],"Q12Rrs":["Tx depósito"],"QU2cIs":["¿Tienes preguntas?"],"Rxjdjn":["El depósito no se completó"],"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"],"Uevt3L":["Estimando cotización"],"UqHbdz":["Descartar aviso de depósito pendiente"],"V1fa9u":["Ver más"],"VAZUpd":["Orden fallida"],"VHOVEJ":["Conectar billetera"],"WkRH60":["Mín ",["0"]],"Wqz0SO":["Saldo bajo"],"Z1WbO6":["Los fondos están seguros en la red de origen — contacta a soporte para recuperarlos."],"ZqugiS":["Saldo: ",["0"]," ",["1"]],"_girqu":["Retiro exitoso"],"_kXBrK":["Tiempo total"],"a2WllD":["Token a recibir"],"aiEUrg":["Mostrar detalles técnicos"],"bOZXx5":["Actualizar orden"],"bZnukT":["Costo de red"],"c6Bl9M":["Toggle technical details"],"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"],"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"],"hKMHs1":["Diferencia entre el resultado esperado de la ruta y el precio medio de mercado subyacente."],"he3ygx":["Copiar"],"hehnjM":["Monto"],"i-4Fbp":["Depósito fallido"],"i-EgW-":["El costo estimado para emitir esta transacción en la red de destino."],"iH8pgl":["Atrás"],"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":["Withdrawal failed."],"kj3M8S":["Depositar"],"kjrq_8":["Más información"],"lOEm_1":["Orden completada"],"ldK3jJ":["Failed to submit withdrawal."],"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."],"mvYQx_":["Detectado"],"njn4bC":["Confirma la transacción en tu billetera"],"nr03QI":["Ingresa la dirección del destinatario"],"nwtY4N":["Algo salió mal"],"oBNGNc":["The route's expected output drifted while your transaction was pending."],"oFmN8a":["Depositar ",["symbol"]],"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"],"q32Nt8":["Retiro completado"],"qQ5VJt":["We can't reach the gateway right now"],"qj0vvX":["Confirmar depósito"],"qtoOYG":["Sin límite"],"rT8e1f":["Ruta"],"rZdp61":["Tx finalización"],"sSiLKx":["Red a recibir"],"sb9Y58":["Billetera"],"sbwbC0":["Método de pago"],"srsA0x":["Withdrawal declined."],"uPo3PQ":["Ver menos"],"vrnnn9":["Procesando"],"w-2VR9":["Retiro en curso…"],"wdxz7K":["Origen"],"xDAtGP":["Message"],"xGVfLh":["Continuar"],"yH9V_J":["Ingresa el monto"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yQE2r9":["Cargando"],"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};
1
+ const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Max ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration."],"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"],"3yd3IL":["The deposit driver failed to load gateway configuration."],"5AApJw":["Conecta una billetera para continuar"],"5joj8M":["Desglose de la transacción"],"60ahSE":["Tx del retiro"],"69Gavs":["Technical details"],"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"],"7Bj3x9":["Fallido"],"7evBec":["Tiempo de procesamiento: ",["resolvedProcessingTime"]],"88cUW-":["Recibes"],"9JHY2T":["Tu depósito se acreditó en tu cuenta."],"9XIJb8":["T…"],"9cCjMJ":["Depositar saldo máximo"],"< 1 min":["< 1 min"],"AHyker":["Max ",["0"]],"AO44G_":["Ver recibo"],"AOPSKq":["Depositar ",["0"]],"AWtGgd":["Obtener ayuda"],"AeXO77":["Cuenta"],"AeZIvT":["Recibirás"],"AikETk":["Mín ",["minDeposit"]],"B-4zEC":["Couldn't load activity. Please try again."],"BhQhbU":["Usar la dirección sugerida del destinatario"],"BoQOH3":["Se requiere una billetera para depositar"],"CK1KXz":["Máx"],"Ck1xL4":["Envías"],"D79cZK":["Instantáneo"],"DPfwMq":["Listo"],"Dd7jP5":["¿Tienes problemas?"],"Deposit completed":["Deposit completed"],"Deposit failed":["Deposit failed"],"Deposit in progress":["Deposit in progress"],"Deposit of {amount}, {date}":["Deposit of ",["amount"],", ",["date"]],"DoS2vD":["Ocultar detalles técnicos"],"ELhVSL":["Failed to submit deposit."],"Ej5HL9":["Signature declined. Please try again."],"Enslfm":["Destino"],"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"],"GZPxmc":["Enter Valid Recipient Address"],"GcuGHR":["Acreditado a ",["captionSuffix"]],"GwkmPx":["Cambiar el importe mostrado"],"IDt4jm":[["0","plural",{"one":["#"," second"],"other":["#"," seconds"]}]," left on quote"],"IRogzB":["Tu depósito se acreditó a ",["brand"],"."],"Just now":["Just now"],"KDw4GX":["Reintentar"],"KGoAE6":["Auto · ",["value"]],"KTNWsg":["El retiro falló"],"KuqCAK":["~ 2 min"],"LEbOpR":["Más detalles"],"Ly6geA":["Regenerando cotización…"],"MZ_nQf":["Dirección del destinatario"],"N2DUxS":["Insufficient Balance"],"OLF0i7":["Couldn't load deposit options"],"Offl0a":["Tu depósito se acreditará en tu cuenta."],"Oi8TiZ":["Ver progreso"],"OsyKSt":["Retirar"],"P9fBwv":["Stack"],"PiH3UR":["¡Copiado!"],"Q12Rrs":["Tx depósito"],"QU2cIs":["¿Tienes preguntas?"],"Rxjdjn":["El depósito no se completó"],"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"],"Uevt3L":["Estimando cotización"],"UqHbdz":["Descartar aviso de depósito pendiente"],"V1fa9u":["Ver más"],"VAZUpd":["Orden fallida"],"VHOVEJ":["Conectar billetera"],"Vj6_6B":["View activity history"],"Withdrawal completed":["Withdrawal completed"],"Withdrawal failed":["Withdrawal failed"],"Withdrawal in progress":["Withdrawal in progress"],"Withdrawal of {amount}, {date}":["Withdrawal of ",["amount"],", ",["date"]],"WkRH60":["Mín ",["0"]],"Wqz0SO":["Saldo bajo"],"XJOV1Y":["Activity"],"XdtTGf":["Activity details"],"Xzw7uC":["Your deposits and withdrawals will appear here."],"Yesterday":["Yesterday"],"Z1WbO6":["Los fondos están seguros en la red de origen — contacta a soporte para recuperarlos."],"ZqugiS":["Saldo: ",["0"]," ",["1"]],"_QZdX-":["Your withdrawal was completed successfully."],"_girqu":["Retiro exitoso"],"_kXBrK":["Tiempo total"],"a2WllD":["Token a recibir"],"aXFOuf":["No activity yet"],"aiEUrg":["Mostrar detalles técnicos"],"bOZXx5":["Actualizar orden"],"bZnukT":["Costo de red"],"c6Bl9M":["Toggle technical details"],"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"],"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"],"hKMHs1":["Diferencia entre el resultado esperado de la ruta y el precio medio de mercado subyacente."],"he3ygx":["Copiar"],"hehnjM":["Monto"],"i-4Fbp":["Depósito fallido"],"i-EgW-":["El costo estimado para emitir esta transacción en la red de destino."],"iH8pgl":["Atrás"],"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":["Withdrawal failed."],"kj3M8S":["Depositar"],"kjrq_8":["Más información"],"lOEm_1":["Orden completada"],"ldK3jJ":["Failed to submit withdrawal."],"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."],"mvYQx_":["Detectado"],"njn4bC":["Confirma la transacción en tu billetera"],"nr03QI":["Ingresa la dirección del destinatario"],"nwtY4N":["Algo salió mal"],"oBNGNc":["The route's expected output drifted while your transaction was pending."],"oFmN8a":["Depositar ",["symbol"]],"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"],"q32Nt8":["Retiro completado"],"qQ5VJt":["We can't reach the gateway right now"],"qj0vvX":["Confirmar depósito"],"qtoOYG":["Sin límite"],"rT8e1f":["Ruta"],"rZdp61":["Tx finalización"],"sSiLKx":["Red a recibir"],"sb9Y58":["Billetera"],"sbwbC0":["Método de pago"],"srsA0x":["Withdrawal declined."],"uPo3PQ":["Ver menos"],"vrnnn9":["Procesando"],"w-2VR9":["Retiro en curso…"],"wdxz7K":["Origen"],"xDAtGP":["Message"],"xGVfLh":["Continuar"],"yH9V_J":["Ingresa el monto"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yQE2r9":["Cargando"],"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 min" | "A wallet is required to deposit" | "Account" | "Amount" | "Assets" | "Auto · {value}" | "Back" | "Balance: {0} {1}" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Chains" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "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" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Deposit" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit max balance" | "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 submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Have questions?" | "Hide technical details" | "In transit" | "Instant" | "Insufficient Balance" | "Insufficient balance" | "Loading" | "Low Balance" | "Max" | "Max slippage" | "Max {0}" | "Max {formattedCap}" | "Message" | "Min {0}" | "Min {minDeposit}" | "More about {0}" | "More details" | "More information" | "Network cost" | "No limit" | "Order failed" | "Order filled" | "Order submitted" | "Payment Method" | "Please try again or contact us if the issue persists." | "Powered by" | "Price impact" | "Processing" | "Processing time: {resolvedProcessingTime}" | "Receive chain" | "Receive token" | "Recipient address" | "Regenerating quote…" | "Route" | "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. Please try again." | "Source" | "Source tx" | "Stack" | "Successful" | "Swap displayed amount" | "Technical details" | "Terms apply" | "The bridge could not fund the destination transaction (gas budget exhausted)." | "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." | "Toggle technical details" | "Tokens" | "Total time" | "Transaction breakdown" | "Transfer Crypto" | "Try again" | "T…" | "Update order" | "Use suggested recipient address" | "View details" | "View on Explorer" | "View progress" | "View receipt" | "Wallet" | "We can't reach the gateway right now" | "Withdraw" | "Withdrawal complete" | "Withdrawal declined." | "Withdrawal failed" | "Withdrawal failed." | "Withdrawal in progress…" | "Withdrawal successful" | "Withdrawal tx" | "You receive" | "You send" | "You will 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 funds were successfully deposited." | "Your funds were successfully withdrawn." | "{0, plural, one {# second} other {# seconds}} left on quote" | "{formattedMin} minimum deposit" | "{hours} hr" | "{minutes} min" | "{n}h" | "{n}m" | "{n}s" | "{resolvedPriceImpact}% price impact" | "~ 2 min";
10
+ type KitTranslatableKey = "0x…" | "< 1 min" | "A wallet is required to deposit" | "Account" | "Activity" | "Activity details" | "Amount" | "Assets" | "Auto · {value}" | "Back" | "Balance: {0} {1}" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Chains" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "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" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load activity. Please try again." | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Deposit" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit in progress" | "Deposit max balance" | "Deposit of {amount}, {date}" | "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 submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Have questions?" | "Hide technical details" | "In transit" | "Instant" | "Insufficient Balance" | "Insufficient balance" | "Just now" | "Loading" | "Low Balance" | "Max" | "Max slippage" | "Max {0}" | "Max {formattedCap}" | "Message" | "Min {0}" | "Min {minDeposit}" | "More about {0}" | "More details" | "More information" | "Network cost" | "No activity yet" | "No limit" | "Order failed" | "Order filled" | "Order submitted" | "Payment Method" | "Please try again or contact us if the issue persists." | "Powered by" | "Price impact" | "Processing" | "Processing time: {resolvedProcessingTime}" | "Receive chain" | "Receive token" | "Recipient address" | "Regenerating quote…" | "Route" | "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. Please try again." | "Source" | "Source tx" | "Stack" | "Successful" | "Swap displayed amount" | "Technical details" | "Terms apply" | "The bridge could not fund the destination transaction (gas budget exhausted)." | "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." | "Toggle technical details" | "Tokens" | "Total time" | "Transaction breakdown" | "Transfer Crypto" | "Try again" | "T…" | "Update order" | "Use suggested recipient address" | "View activity history" | "View details" | "View on Explorer" | "View progress" | "View receipt" | "Wallet" | "We can't reach the gateway right now" | "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 receive" | "You send" | "You will 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 withdrawal was completed successfully." | "{0, plural, one {# second} other {# seconds}} left on quote" | "{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 };
@@ -17,6 +17,7 @@ import { CoinbaseIcon } from "../shared/icons/exchanges/CoinbaseIcon.js";
17
17
  import { KrakenIcon } from "../shared/icons/exchanges/KrakenIcon.js";
18
18
  import { OkxIcon } from "../shared/icons/exchanges/OkxIcon.js";
19
19
  import { RobinhoodIcon } from "../shared/icons/exchanges/RobinhoodIcon.js";
20
+ import { HistoryIcon } from "../shared/icons/HistoryIcon.js";
20
21
  import { InfoIcon } from "../shared/icons/InfoIcon.js";
21
22
  import { LoaderIcon } from "../shared/icons/LoaderIcon.js";
22
23
  import { LogoIcon } from "../shared/icons/LogoIcon.js";
@@ -25,4 +26,4 @@ import { PackageIcon } from "../shared/icons/PackageIcon.js";
25
26
  import { QrCodeIcon } from "../shared/icons/QrCodeIcon.js";
26
27
  import { WalletIcon } from "../shared/icons/WalletIcon.js";
27
28
  import { XIcon } from "../shared/icons/XIcon.js";
28
- export { AlertIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BinanceIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, ExternalLinkIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, WalletIcon, XIcon };
29
+ export { AlertIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BinanceIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, ExternalLinkIcon, HistoryIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, WalletIcon, XIcon };
@@ -1 +1 @@
1
- import{AlertIcon as e}from"../shared/icons/AlertIcon.js";import{ArrowDownIcon as t}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as n}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as r}from"../shared/icons/ArrowRightLeftIcon.js";import{CheckIcon as i}from"../shared/icons/CheckIcon.js";import{ChevronDownIcon as a}from"../shared/icons/ChevronDownIcon.js";import{ChevronLeftIcon as o}from"../shared/icons/ChevronLeftIcon.js";import{ChevronRightIcon as s}from"../shared/icons/ChevronRightIcon.js";import{ChevronUpIcon as c}from"../shared/icons/ChevronUpIcon.js";import{CircleArrowUpIcon as l}from"../shared/icons/CircleArrowUpIcon.js";import{CircleHelpIcon as u}from"../shared/icons/CircleHelpIcon.js";import{ClockIcon as d}from"../shared/icons/ClockIcon.js";import{CopyIcon as f}from"../shared/icons/CopyIcon.js";import{ExternalLinkIcon as p}from"../shared/icons/ExternalLinkIcon.js";import{BinanceIcon as m}from"../shared/icons/exchanges/BinanceIcon.js";import{CoinbaseIcon as h}from"../shared/icons/exchanges/CoinbaseIcon.js";import{KrakenIcon as g}from"../shared/icons/exchanges/KrakenIcon.js";import{OkxIcon as _}from"../shared/icons/exchanges/OkxIcon.js";import{RobinhoodIcon as v}from"../shared/icons/exchanges/RobinhoodIcon.js";import"../shared/icons/exchanges/index.js";import{InfoIcon as y}from"../shared/icons/InfoIcon.js";import{LoaderIcon as b}from"../shared/icons/LoaderIcon.js";import{LogoIcon as x}from"../shared/icons/LogoIcon.js";import{MailIcon as S}from"../shared/icons/MailIcon.js";import{PackageIcon as C}from"../shared/icons/PackageIcon.js";import{QrCodeIcon as w}from"../shared/icons/QrCodeIcon.js";import{WalletIcon as T}from"../shared/icons/WalletIcon.js";import{XIcon as E}from"../shared/icons/XIcon.js";export{e as AlertIcon,t as ArrowDownIcon,n as ArrowRightIcon,r as ArrowRightLeftIcon,m as BinanceIcon,i as CheckIcon,a as ChevronDownIcon,o as ChevronLeftIcon,s as ChevronRightIcon,c as ChevronUpIcon,l as CircleArrowUpIcon,u as CircleHelpIcon,d as ClockIcon,h as CoinbaseIcon,f as CopyIcon,p as ExternalLinkIcon,y as InfoIcon,g as KrakenIcon,b as LoaderIcon,x as LogoIcon,S as MailIcon,_ as OkxIcon,C as PackageIcon,w as QrCodeIcon,v as RobinhoodIcon,T as WalletIcon,E as XIcon};
1
+ import{AlertIcon as e}from"../shared/icons/AlertIcon.js";import{ArrowDownIcon as t}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as n}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as r}from"../shared/icons/ArrowRightLeftIcon.js";import{CheckIcon as i}from"../shared/icons/CheckIcon.js";import{ChevronDownIcon as a}from"../shared/icons/ChevronDownIcon.js";import{ChevronLeftIcon as o}from"../shared/icons/ChevronLeftIcon.js";import{ChevronRightIcon as s}from"../shared/icons/ChevronRightIcon.js";import{ChevronUpIcon as c}from"../shared/icons/ChevronUpIcon.js";import{CircleArrowUpIcon as l}from"../shared/icons/CircleArrowUpIcon.js";import{CircleHelpIcon as u}from"../shared/icons/CircleHelpIcon.js";import{ClockIcon as d}from"../shared/icons/ClockIcon.js";import{CopyIcon as f}from"../shared/icons/CopyIcon.js";import{ExternalLinkIcon as p}from"../shared/icons/ExternalLinkIcon.js";import{BinanceIcon as m}from"../shared/icons/exchanges/BinanceIcon.js";import{CoinbaseIcon as h}from"../shared/icons/exchanges/CoinbaseIcon.js";import{KrakenIcon as g}from"../shared/icons/exchanges/KrakenIcon.js";import{OkxIcon as _}from"../shared/icons/exchanges/OkxIcon.js";import{RobinhoodIcon as v}from"../shared/icons/exchanges/RobinhoodIcon.js";import"../shared/icons/exchanges/index.js";import{HistoryIcon as y}from"../shared/icons/HistoryIcon.js";import{InfoIcon as b}from"../shared/icons/InfoIcon.js";import{LoaderIcon as x}from"../shared/icons/LoaderIcon.js";import{LogoIcon as S}from"../shared/icons/LogoIcon.js";import{MailIcon as C}from"../shared/icons/MailIcon.js";import{PackageIcon as w}from"../shared/icons/PackageIcon.js";import{QrCodeIcon as T}from"../shared/icons/QrCodeIcon.js";import{WalletIcon as E}from"../shared/icons/WalletIcon.js";import{XIcon as D}from"../shared/icons/XIcon.js";export{e as AlertIcon,t as ArrowDownIcon,n as ArrowRightIcon,r as ArrowRightLeftIcon,m as BinanceIcon,i as CheckIcon,a as ChevronDownIcon,o as ChevronLeftIcon,s as ChevronRightIcon,c as ChevronUpIcon,l as CircleArrowUpIcon,u as CircleHelpIcon,d as ClockIcon,h as CoinbaseIcon,f as CopyIcon,p as ExternalLinkIcon,y as HistoryIcon,b as InfoIcon,g as KrakenIcon,x as LoaderIcon,S as LogoIcon,C as MailIcon,_ as OkxIcon,w as PackageIcon,T as QrCodeIcon,v as RobinhoodIcon,E as WalletIcon,D as XIcon};
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import { TxRef } from "./shared/driver/types.js";
2
+ import { ActivityHistoryDirection, ActivityHistoryPayload, ActivityHistoryRowPayload, ActivityHistoryStatus, ActivityHistoryStatusType } from "./shared/widgets/activity-history/payloads.js";
2
3
  import { DepositSnapshot } from "./flows/deposit/driver/types.js";
3
4
  import { useDepositSnapshot } from "./flows/deposit/driver/context.js";
4
5
  import { FailureInfo } from "./shared/orchestrator/types.js";
@@ -35,4 +36,4 @@ import { useWithdrawState } from "./flows/withdraw/orchestrator/controller.js";
35
36
  import { useOptionalWithdraw, usePrefetchWithdraw, useWithdraw } from "./flows/withdraw/orchestrator/useWithdraw.js";
36
37
  import { ConnectWalletConfig } from "./shared/wallet/ConnectWalletContext.js";
37
38
  import { StridgeAppearance, StridgeAsset, StridgeDepositDestination, StridgeDepositFlowConfig, StridgeDepositMethodConfig, StridgeDepositMethodsConfig, StridgeFlowOwner, StridgePrefetchConfig, StridgeProvider, StridgeStorageConfig, StridgeWithdrawFlowConfig } from "./stridge/StridgeProvider.js";
38
- export { type BannerAckBucket, type ChainLogoInput, type ChainLogoMeta, type ChainType, type ConnectWalletConfig, DEFAULT_KIT_STORAGE_NAMESPACE, type DepositActions, type DepositController, type DepositMethod, type DepositMethodConfig, type DepositMethodsConfig, type OpenInput as DepositOpenInput, type DepositSnapshot, type DepositState, type DepositStateName, type FailureInfo, type FlowEvent, type FlowIdKey, type IntercomMerchantContext, KitPortalScope, KitStorageProvider, type LogosNamespace, type PublicStridgeEventBus, type StridgeAppearance, type StridgeAsset, type StridgeDepositDestination, type StridgeDepositFlowConfig, type StridgeDepositMethodConfig, type StridgeDepositMethodsConfig, type StridgeEnvironment, type StridgeEvent, type StridgeFlowOwner, type StridgePrefetchConfig, StridgeProvider, type StridgeStorageConfig, type StridgeWithdrawFlowConfig, type SupportConfig, type SupportOpenContext, type TermsConfig, type TermsSelectContext, type TokenLogoInput, type TxRef, type UiEvent, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawalFormSnapshot, bannerAckStorageKey, bucketFromSettlement, createKitStorage, createLocalStorageAdapter, createMemoryStorageAdapter, createSessionStorageAdapter, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, logos, resolveStorageAdapter, toChainType, useBannerAck, useBannerAckForSettlement, useCurrentFlowId, useDeposit, useDepositSnapshot, useDepositState, useKitConfig, useKitStorage, useKitStorageValue, useOptionalDeposit, useOptionalWithdraw, usePrefetchDeposit, usePrefetchWithdraw, useStridgeEvent, useStridgeEventBus, useStridgeEvents, useStridgeFlowEvent, useStridgeFlowEvents, useWithdraw, useWithdrawBindings, useWithdrawSnapshot, useWithdrawState };
39
+ export { type ActivityHistoryDirection, type ActivityHistoryPayload, type ActivityHistoryRowPayload, type ActivityHistoryStatus, type ActivityHistoryStatusType, type BannerAckBucket, type ChainLogoInput, type ChainLogoMeta, type ChainType, type ConnectWalletConfig, DEFAULT_KIT_STORAGE_NAMESPACE, type DepositActions, type DepositController, type DepositMethod, type DepositMethodConfig, type DepositMethodsConfig, type OpenInput as DepositOpenInput, type DepositSnapshot, type DepositState, type DepositStateName, type FailureInfo, type FlowEvent, type FlowIdKey, type IntercomMerchantContext, KitPortalScope, KitStorageProvider, type LogosNamespace, type PublicStridgeEventBus, type StridgeAppearance, type StridgeAsset, type StridgeDepositDestination, type StridgeDepositFlowConfig, type StridgeDepositMethodConfig, type StridgeDepositMethodsConfig, type StridgeEnvironment, type StridgeEvent, type StridgeFlowOwner, type StridgePrefetchConfig, StridgeProvider, type StridgeStorageConfig, type StridgeWithdrawFlowConfig, type SupportConfig, type SupportOpenContext, type TermsConfig, type TermsSelectContext, type TokenLogoInput, type TxRef, type UiEvent, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawalFormSnapshot, bannerAckStorageKey, bucketFromSettlement, createKitStorage, createLocalStorageAdapter, createMemoryStorageAdapter, createSessionStorageAdapter, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, logos, resolveStorageAdapter, toChainType, useBannerAck, useBannerAckForSettlement, useCurrentFlowId, useDeposit, useDepositSnapshot, useDepositState, useKitConfig, useKitStorage, useKitStorageValue, useOptionalDeposit, useOptionalWithdraw, usePrefetchDeposit, usePrefetchWithdraw, useStridgeEvent, useStridgeEventBus, useStridgeEvents, useStridgeFlowEvent, useStridgeFlowEvents, useWithdraw, useWithdrawBindings, useWithdrawSnapshot, useWithdrawState };
package/dist/package.js CHANGED
@@ -1 +1 @@
1
- var e=`0.1.0-alpha.49`;export{e as version};
1
+ var e=`0.1.0-alpha.50`;export{e as version};
@@ -0,0 +1,12 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/HistoryIcon.d.ts
5
+ /**
6
+ * Activity history glyph — clock-arrow combo. Used as the header trigger on `<DepositDialog>`
7
+ * and `<WithdrawDialog>` to open the cross-flow activity surface. Matches the kit's icon
8
+ * convention (24×24 viewBox, `currentColor` stroke, 2px stroke width).
9
+ */
10
+ declare function HistoryIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
11
+ //#endregion
12
+ export { HistoryIcon };
@@ -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:`M3 12a9 9 0 1 0 9-9 9.75 9.75 0 0 0-6.74 2.74L3 8`}),e(`path`,{d:`M3 3v5h5`}),e(`path`,{d:`M12 7v5l4 2`})]})}export{n as HistoryIcon};
@@ -7,13 +7,20 @@ type SelectableTileShape = "card" | "pill";
7
7
  * Selectable surface. Use `shape="card"` for full-width rows, `shape="pill"`
8
8
  * for equal-width chips.
9
9
  *
10
- * The interactive form renders Base UI's `Toggle` — a button that carries
11
- * `aria-pressed` semantics and integrates with `<SelectableTileGroup>`'s
12
- * roving-tabindex / arrow-key navigation. Pass a `value` to participate in
13
- * a group's shared selection state; the parent group derives `pressed` from
14
- * its `value` array (single-select with `multiple={false}`, multi-select
15
- * otherwise). Outside a group, drive the visual state via `selected` and
16
- * the click via `onClick`.
10
+ * The default interactive form renders Base UI's `Toggle` — a button that
11
+ * carries `aria-pressed` semantics and integrates with
12
+ * `<SelectableTileGroup>`'s roving-tabindex / arrow-key navigation. Pass a
13
+ * `value` to participate in a group's shared selection state; the parent
14
+ * group derives `pressed` from its `value` array (single-select with
15
+ * `multiple={false}`, multi-select otherwise). Outside a group, drive the
16
+ * visual state via `selected` and the click via `onClick`.
17
+ *
18
+ * Pass `interactive="navigation"` for rows that route to a new view rather
19
+ * than toggle a selection — e.g. activity-history rows. The navigation
20
+ * branch renders a plain `<button type="button">` with the same surface
21
+ * chrome and hover/focus treatment (different ARIA, same look), so
22
+ * navigation rows match toggle rows visually while staying semantically
23
+ * correct for screen readers.
17
24
  *
18
25
  * The inert form (no `onClick`) renders a `<div role="option">` with
19
26
  * `aria-selected` so showcase / static surfaces (asset-list previews,
@@ -54,8 +61,14 @@ declare namespace SelectableTile {
54
61
  shape?: SelectableTileShape;
55
62
  /**
56
63
  * Force interactive vs inert rendering. Defaults to `typeof onClick === "function" || typeof value === "string"`.
64
+ *
65
+ * Pass `"navigation"` for rows that route to a new view rather than toggle a
66
+ * selection — the kit renders a plain `<button type="button">` with the same surface
67
+ * chrome and hover/focus treatment, but without `aria-pressed` or
68
+ * `<SelectableTileGroup>` registration. `value` / `selected` are ignored at runtime in
69
+ * this branch.
57
70
  */
58
- interactive?: boolean;
71
+ interactive?: boolean | "navigation";
59
72
  /**
60
73
  * Disables the underlying button when interactive; renders `aria-disabled` when inert.
61
74
  */
@@ -1 +1 @@
1
- "use client";import{joinClassNames as e}from"../../utils/joinClassNames.js";import{SELECTABLE_TILE_SLOTS as t}from"./SelectableTile.slots.js";import{shapeStyles as n,styles as r}from"./SelectableTile.styles.js";import{jsx as i}from"react/jsx-runtime";import*as a from"@stylexjs/stylex";import{Toggle as o}from"@base-ui/react/toggle";function s({selected:s=!1,shape:c=`card`,interactive:l,disabled:u=!1,onClick:d,value:f,className:p,style:m,children:h,...g}){let _=l??(typeof d==`function`||typeof f==`string`),v=a.props(r.base,n[c],_?r.interactive:r.inert,s&&r.selected,u&&r.disabled),y={"data-stridge-slot":t.root,"data-shape":c,"data-selected":s||void 0,"data-interactive":_||void 0,className:e(v.className,p),style:{...v.style,...m}};return _?i(o,{...g,...y,value:f,pressed:s,disabled:u,onClick:d,children:h}):i(`div`,{role:`option`,tabIndex:-1,"aria-selected":s,"aria-disabled":u||void 0,...y,...g,children:h})}export{s as SelectableTile};
1
+ "use client";import{joinClassNames as e}from"../../utils/joinClassNames.js";import{SELECTABLE_TILE_SLOTS as t}from"./SelectableTile.slots.js";import{shapeStyles as n,styles as r}from"./SelectableTile.styles.js";import{jsx as i}from"react/jsx-runtime";import*as a from"@stylexjs/stylex";import{Toggle as o}from"@base-ui/react/toggle";function s({selected:s=!1,shape:c=`card`,interactive:l,disabled:u=!1,onClick:d,value:f,className:p,style:m,children:h,...g}){let _=l??(typeof d==`function`||typeof f==`string`),{"data-stridge-slot":v,...y}=g,b=a.props(r.base,n[c],_===!1?r.inert:r.interactive,s&&r.selected,u&&r.disabled),x={"data-stridge-slot":v??t.root,"data-shape":c,"data-selected":s||void 0,"data-interactive":_===!1?void 0:_,className:e(b.className,p),style:{...b.style,...m}};return _===`navigation`?i(`button`,{type:`button`,...y,...x,disabled:u,onClick:d,children:h}):_?i(o,{...y,...x,value:f,pressed:s,disabled:u,onClick:d,children:h}):i(`div`,{role:`option`,tabIndex:-1,"aria-selected":s,"aria-disabled":u||void 0,...x,...y,children:h})}export{s as SelectableTile};
@@ -0,0 +1 @@
1
+ "use client";import{useLingui as e}from"../../i18n/useLingui.js";import"../../../i18n/index.js";import{HistoryIcon as t}from"../../icons/HistoryIcon.js";import"../../../icons/index.js";import{IconButton as n}from"../../ui/IconButton/IconButton.js";import"../../../ui/index.js";import{styles as r}from"./ActivityTrigger.styles.js";import{jsx as i}from"react/jsx-runtime";import*as a from"@stylexjs/stylex";function o({onOpen:o}){let{_:s}=e();return i(n,{"aria-label":s({id:`Vj6_6B`,message:`View activity history`}),onClick:o,children:i(t,{"aria-hidden":!0,...a.props(r.icon)})})}export{o as ActivityTrigger};
@@ -0,0 +1 @@
1
+ const e={icon:{"ActivityTrigger__styles.icon":`ActivityTrigger__styles.icon`,"width-kzqmXN":`x1xp8n7a`,"height-kZKoxP":`xmix8c7`,"flexShrink-kmuXW":`x2lah0s`,"color-kMwMTN":`x15rks2t`,"strokeWidth-kfJifR":`xhxwl1`,$$css:`@stridge/kit:src/shared/widgets/activity-history/ActivityTrigger.styles.ts:3`}};export{e as styles};
@@ -0,0 +1 @@
1
+ import{settlementToPayload as e}from"../../../../flows/deposit/driver/transformers/settlementToPayload.js";import{resolveDirection as t}from"../transformers/resolveDirection.js";function n(n,r,i){let a=i.sourceWallet.address.toLowerCase();for(let o of n)for(let n of o.settlements)if(n.id===r)return{payload:e(n,o,i),uda:o,direction:t(o,a)};return null}export{n as settlementToWidgetProps};
@@ -0,0 +1,95 @@
1
+ import { ActivityHistoryEmpty } from "./components/Empty.js";
2
+ import { ActivityHistoryErrorView } from "./components/ErrorView.js";
3
+ import { ActivityHistoryHeader, ActivityHistoryListHeader } from "./components/HistoryHeader.js";
4
+ import { ActivityHistoryList } from "./components/List.js";
5
+ import { ActivityHistoryRow } from "./components/Row.js";
6
+ import { ComponentProps, ReactNode } from "react";
7
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
8
+
9
+ //#region src/shared/widgets/activity-history/compound/ActivityHistory.d.ts
10
+ interface ActivityHistoryOwnProps {
11
+ /**
12
+ * Optional custom composition. Defaults to `<Header /> + <List />`. Pass children to
13
+ * interleave host-supplied elements between compound parts.
14
+ */
15
+ children?: ReactNode;
16
+ }
17
+ /**
18
+ * Root of the `<ActivityHistory>` list compound. Flow-agnostic — every flow-specific concern
19
+ * (snapshot read, action dispatch, owner address derivation) is encapsulated in the
20
+ * `<ActivityHistorySourceProvider>` value the dialog mounts above. The same JSX renders from
21
+ * both `<DepositDialog>` and `<WithdrawDialog>` without imports across the flow boundary.
22
+ *
23
+ * Mounted by the dialog's `historyList` step. The peer compound {@link ActivityHistoryDetail}
24
+ * handles the per-settlement detail step; the kit's `Steps` primitive routes between them via
25
+ * the FSM state name, so the slide+blur step transition is supplied automatically.
26
+ *
27
+ * Compound parts:
28
+ * - {@link ActivityHistory.Header} — back chevron + title + close X.
29
+ * - {@link ActivityHistory.ListHeader} — underlying header primitive that accepts explicit
30
+ * `title` + `onBack` props. Public because the detail compound's per-kind parts mount it
31
+ * inside their delegated success / error / processing composition.
32
+ * - {@link ActivityHistory.List} — list body (skeleton / empty / error / rows). Pure reader
33
+ * of the `history` entity; recurring updates land via the controller-mounted `watchHistory`
34
+ * watcher with adaptive cadence.
35
+ * - {@link ActivityHistory.Row} — single row primitive (button-semantic).
36
+ * - {@link ActivityHistory.Empty} — empty-state body.
37
+ * - {@link ActivityHistory.ErrorView} — initial-error body with retry.
38
+ *
39
+ * @example
40
+ * ```tsx
41
+ * <ActivityHistorySourceProvider value={sourceValue}>
42
+ * <ActivityHistory />
43
+ * </ActivityHistorySourceProvider>
44
+ * ```
45
+ *
46
+ * @example Custom composition — interleave between parts
47
+ * ```tsx
48
+ * <ActivityHistorySourceProvider value={sourceValue}>
49
+ * <ActivityHistory>
50
+ * <ActivityHistory.Header />
51
+ * <ActivityHistory.List />
52
+ * </ActivityHistory>
53
+ * </ActivityHistorySourceProvider>
54
+ * ```
55
+ */
56
+ declare function ActivityHistory({
57
+ children,
58
+ ...props
59
+ }: ComponentProps<"div"> & ActivityHistoryOwnProps): _$react_jsx_runtime0.JSX.Element;
60
+ declare namespace ActivityHistory {
61
+ type Props = ComponentProps<"div"> & ActivityHistoryOwnProps;
62
+ /**
63
+ * Card header — back chevron + title + close X. Mounted by the default composition above
64
+ * the list body. The peer detail compound supplies its own header inside the
65
+ * SuccessState / ErrorState / ProcessingState composition.
66
+ */
67
+ const Header: typeof ActivityHistoryHeader;
68
+ /**
69
+ * Underlying list-view header primitive — accepts explicit `title` and `onBack` props
70
+ * and renders unconditionally. The detail compound's per-kind parts mount this inside
71
+ * their delegated state composition to keep the back chevron + title affordance
72
+ * consistent across the surface.
73
+ */
74
+ const ListHeader: typeof ActivityHistoryListHeader;
75
+ /**
76
+ * List body — skeleton / empty / error / rows. Pure reader; the controller-mounted
77
+ * `watchHistory` watcher drives recurring updates.
78
+ */
79
+ const List: typeof ActivityHistoryList;
80
+ /**
81
+ * Single row primitive. Hosts that want a fully-headless surface can mount Row directly
82
+ * with their own payload assembly.
83
+ */
84
+ const Row: typeof ActivityHistoryRow;
85
+ /**
86
+ * Empty-state body — centered icon + headline + subline.
87
+ */
88
+ const Empty: typeof ActivityHistoryEmpty;
89
+ /**
90
+ * Initial-error body — `Alert` + retry button.
91
+ */
92
+ const ErrorView: typeof ActivityHistoryErrorView;
93
+ }
94
+ //#endregion
95
+ export { ActivityHistory };