@stridge/kit 0.1.0-alpha.54 → 0.1.0-alpha.56

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 (170) hide show
  1. package/dist/KitProvider.js +1 -1
  2. package/dist/_internal/deposit/driver/index.d.ts +2 -2
  3. package/dist/deposit/compound/index.d.ts +11 -5
  4. package/dist/deposit/compound/index.js +1 -1
  5. package/dist/deposit/widgets/index.d.ts +3 -1
  6. package/dist/deposit/widgets/index.js +1 -1
  7. package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
  8. package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
  9. package/dist/drivers/stridge-mock/fixtures.js +1 -1
  10. package/dist/events/bus/flowIdRegistry.d.ts +1 -1
  11. package/dist/events/bus/flowIdRegistry.js +1 -1
  12. package/dist/events/bus/metadata.js +1 -1
  13. package/dist/events/emit/index.js +1 -1
  14. package/dist/events/emit/useActivityEmissions.js +1 -0
  15. package/dist/events/emit/useDepositEmissions.js +1 -1
  16. package/dist/events/index.d.ts +2 -1
  17. package/dist/events/types/activity.d.ts +53 -0
  18. package/dist/events/types/deposit.d.ts +1 -1
  19. package/dist/events/types/envelope.d.ts +4 -4
  20. package/dist/events/types/index.d.ts +2 -1
  21. package/dist/flows/activity/dialog/ActivityDialog.d.ts +9 -1
  22. package/dist/flows/activity/dialog/ActivityDialog.js +1 -1
  23. package/dist/flows/deposit/bindings/DepositBindings.d.ts +87 -0
  24. package/dist/flows/deposit/bindings/DepositBindings.js +1 -0
  25. package/dist/flows/deposit/bindings/index.d.ts +1 -0
  26. package/dist/flows/deposit/bindings/index.js +1 -0
  27. package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
  28. package/dist/flows/deposit/driver/payloads.d.ts +35 -1
  29. package/dist/flows/deposit/driver/types.d.ts +10 -1
  30. package/dist/flows/deposit/orchestrator/controller.js +1 -1
  31. package/dist/flows/deposit/orchestrator/index.d.ts +5 -0
  32. package/dist/flows/deposit/orchestrator/reducer.d.ts +1 -0
  33. package/dist/flows/deposit/orchestrator/reducer.js +1 -1
  34. package/dist/flows/deposit/orchestrator/types.d.ts +107 -2
  35. package/dist/flows/deposit/orchestrator/useDeposit.js +1 -1
  36. package/dist/flows/deposit/shared/cash.d.ts +20 -0
  37. package/dist/flows/deposit/shared/cash.js +1 -0
  38. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.d.ts +1 -1
  39. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -1
  40. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.d.ts +71 -0
  41. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.js +1 -0
  42. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.d.ts +69 -0
  43. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.js +1 -0
  44. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.d.ts +16 -0
  45. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.js +1 -0
  46. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.styles.js +1 -0
  47. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.d.ts +13 -0
  48. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.js +1 -0
  49. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.d.ts +18 -0
  50. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.js +1 -0
  51. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.d.ts +14 -0
  52. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.js +1 -0
  53. package/dist/flows/deposit/widgets/cash-amount-entry/compound/context.js +1 -0
  54. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.d.ts +3 -0
  55. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.js +1 -0
  56. package/dist/flows/deposit/widgets/cash-amount-entry/compound/types.d.ts +42 -0
  57. package/dist/flows/deposit/widgets/cash-amount-entry/index.d.ts +1 -0
  58. package/dist/flows/deposit/widgets/cash-amount-entry/index.js +1 -0
  59. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.d.ts +63 -0
  60. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.js +1 -0
  61. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.d.ts +54 -0
  62. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.js +1 -0
  63. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.d.ts +33 -0
  64. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.js +1 -0
  65. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.styles.js +1 -0
  66. package/dist/flows/deposit/widgets/cash-confirm/compound/cashConfirmDimensions.js +1 -0
  67. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.d.ts +15 -0
  68. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.js +1 -0
  69. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.d.ts +22 -0
  70. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.js +1 -0
  71. package/dist/flows/deposit/widgets/cash-confirm/compound/components/BodyLabel.js +1 -0
  72. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.d.ts +16 -0
  73. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.js +1 -0
  74. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.icons.js +1 -0
  75. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.js +1 -0
  76. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.keys.js +1 -0
  77. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.state.js +1 -0
  78. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.styles.js +1 -0
  79. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.d.ts +16 -0
  80. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.js +1 -0
  81. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.d.ts +21 -0
  82. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.js +1 -0
  83. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.d.ts +17 -0
  84. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.js +1 -0
  85. package/dist/flows/deposit/widgets/cash-confirm/compound/components/cardFormat.js +1 -0
  86. package/dist/flows/deposit/widgets/cash-confirm/compound/context.js +1 -0
  87. package/dist/flows/deposit/widgets/cash-confirm/compound/index.d.ts +3 -0
  88. package/dist/flows/deposit/widgets/cash-confirm/compound/index.js +1 -0
  89. package/dist/flows/deposit/widgets/cash-confirm/compound/types.d.ts +66 -0
  90. package/dist/flows/deposit/widgets/cash-confirm/index.d.ts +1 -0
  91. package/dist/flows/deposit/widgets/cash-confirm/index.js +1 -0
  92. package/dist/flows/deposit/widgets/cash-confirm/mocks.js +1 -0
  93. package/dist/flows/deposit/widgets/deposit/Deposit.d.ts +6 -0
  94. package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
  95. package/dist/flows/deposit/widgets/deposit/compound/Deposit.d.ts +26 -1
  96. package/dist/flows/deposit/widgets/deposit/compound/Deposit.js +1 -1
  97. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.d.ts +6 -0
  98. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.js +1 -1
  99. package/dist/flows/deposit/widgets/deposit/compound/Deposit.styles.js +1 -1
  100. package/dist/flows/deposit/widgets/deposit/compound/components/Guards.js +1 -1
  101. package/dist/flows/deposit/widgets/deposit/compound/components/Method.d.ts +1 -0
  102. package/dist/flows/deposit/widgets/deposit/compound/components/Method.js +1 -1
  103. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.d.ts +40 -0
  104. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.js +1 -0
  105. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.d.ts +16 -9
  106. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.js +1 -1
  107. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.d.ts +18 -0
  108. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.js +1 -0
  109. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.d.ts +43 -0
  110. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.js +1 -0
  111. package/dist/flows/deposit/widgets/deposit/compound/index.d.ts +1 -1
  112. package/dist/flows/deposit/widgets/deposit/compound/types.d.ts +100 -1
  113. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.js +1 -1
  114. package/dist/flows/withdraw/orchestrator/reducer.js +1 -1
  115. package/dist/i18n/locales/ar.js +1 -1
  116. package/dist/i18n/locales/es.js +1 -1
  117. package/dist/i18n/locales/source-keys.d.ts +1 -1
  118. package/dist/icons/index.d.ts +10 -1
  119. package/dist/icons/index.js +1 -1
  120. package/dist/index.d.ts +8 -6
  121. package/dist/index.js +1 -1
  122. package/dist/package.js +1 -1
  123. package/dist/shared/icons/AmexIcon.d.ts +14 -0
  124. package/dist/shared/icons/AmexIcon.js +1 -0
  125. package/dist/shared/icons/ApplePayIcon.d.ts +15 -0
  126. package/dist/shared/icons/ApplePayIcon.js +1 -0
  127. package/dist/shared/icons/BitcoinIcon.d.ts +17 -0
  128. package/dist/shared/icons/BitcoinIcon.js +1 -0
  129. package/dist/shared/icons/CardIcon.d.ts +16 -0
  130. package/dist/shared/icons/CardIcon.js +1 -0
  131. package/dist/shared/icons/CashIcon.d.ts +16 -0
  132. package/dist/shared/icons/CashIcon.js +1 -0
  133. package/dist/shared/icons/DiscoverIcon.d.ts +14 -0
  134. package/dist/shared/icons/DiscoverIcon.js +1 -0
  135. package/dist/shared/icons/GooglePayIcon.d.ts +15 -0
  136. package/dist/shared/icons/GooglePayIcon.js +1 -0
  137. package/dist/shared/icons/MastercardIcon.d.ts +16 -0
  138. package/dist/shared/icons/MastercardIcon.js +1 -0
  139. package/dist/shared/icons/VisaIcon.d.ts +15 -0
  140. package/dist/shared/icons/VisaIcon.js +1 -0
  141. package/dist/shared/ui/Tabs/Tabs.d.ts +79 -0
  142. package/dist/shared/ui/Tabs/Tabs.js +1 -0
  143. package/dist/shared/ui/Tabs/Tabs.slots.d.ts +11 -0
  144. package/dist/shared/ui/Tabs/Tabs.slots.js +1 -0
  145. package/dist/shared/ui/Tabs/Tabs.styles.js +1 -0
  146. package/dist/shared/ui/Tabs/index.d.ts +2 -0
  147. package/dist/shared/ui/Tabs/index.js +1 -0
  148. package/dist/shared/utils/assertNever.js +1 -0
  149. package/dist/shared/widgets/amount-entry/compound/AmountEntry.d.ts +7 -2
  150. package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
  151. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.d.ts +5 -0
  152. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.js +1 -1
  153. package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
  154. package/dist/shared/widgets/amount-entry/compound/components/Details.d.ts +34 -0
  155. package/dist/shared/widgets/amount-entry/compound/components/Details.js +1 -0
  156. package/dist/shared/widgets/amount-entry/compound/components/Footer.d.ts +2 -1
  157. package/dist/shared/widgets/amount-entry/compound/components/Footer.js +1 -1
  158. package/dist/shared/widgets/amount-entry/compound/index.d.ts +1 -1
  159. package/dist/shared/widgets/amount-entry/compound/types.d.ts +37 -1
  160. package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -1
  161. package/dist/storage/context.d.ts +9 -1
  162. package/dist/storage/context.js +1 -1
  163. package/dist/storage/index.d.ts +1 -1
  164. package/dist/stridge/stubs.js +1 -1
  165. package/dist/styles/index.css +275 -2
  166. package/dist/types.d.ts +3 -3
  167. package/dist/ui/index.d.ts +3 -1
  168. package/dist/ui/index.js +1 -1
  169. package/dist/withdraw/compound/index.d.ts +2 -2
  170. package/package.json +3 -3
package/dist/ui/index.js CHANGED
@@ -1 +1 @@
1
- import{EXTERNAL_LINK_SLOTS as e}from"../shared/ui/ExternalLink/ExternalLink.slots.js";import{ExternalLink as t}from"../shared/ui/ExternalLink/ExternalLink.js";import"../shared/ui/ExternalLink/index.js";import{BUTTON_SLOTS as n}from"../shared/ui/Button/Button.slots.js";import{Button as r}from"../shared/ui/Button/Button.js";import"../shared/ui/Button/index.js";import{ICON_BUTTON_SLOTS as i}from"../shared/ui/IconButton/IconButton.slots.js";import{IconButton as a}from"../shared/ui/IconButton/IconButton.js";import"../shared/ui/IconButton/index.js";import{SCROLL_AREA_SLOTS as o}from"../shared/ui/ScrollArea/ScrollArea.slots.js";import{ScrollArea as s}from"../shared/ui/ScrollArea/ScrollArea.js";import"../shared/ui/ScrollArea/index.js";import{DIALOG_SLOTS as c}from"../shared/ui/Dialog/Dialog.slots.js";import{Dialog as l,useIsInsideDialogContent as u}from"../shared/ui/Dialog/Dialog.js";import"../shared/ui/Dialog/index.js";import{DRAWER_SLOTS as d}from"../shared/ui/Drawer/Drawer.slots.js";import{Drawer as f}from"../shared/ui/Drawer/Drawer.js";import"../shared/ui/Drawer/index.js";import{AdaptiveSurface as p}from"../shared/ui/AdaptiveSurface/AdaptiveSurface.js";import"../shared/ui/AdaptiveSurface/index.js";import{ALERT_SLOTS as m}from"../shared/ui/Alert/Alert.slots.js";import{Alert as h}from"../shared/ui/Alert/Alert.js";import"../shared/ui/Alert/index.js";import{AMOUNT_INPUT_SLOTS as g}from"../shared/ui/AmountInput/AmountInput.slots.js";import{formatAmountForInput as _,parseAmountInputValue as v}from"../shared/ui/AmountInput/utils.js";import{AmountInput as y}from"../shared/ui/AmountInput/AmountInput.js";import"../shared/ui/AmountInput/index.js";import{BADGE_SLOTS as b}from"../shared/ui/Badge/Badge.slots.js";import{Badge as x}from"../shared/ui/Badge/Badge.js";import"../shared/ui/Badge/index.js";import{CARD_SLOTS as S}from"../shared/ui/Card/Card.slots.js";import{Card as C}from"../shared/ui/Card/Card.js";import"../shared/ui/Card/index.js";import{COLLAPSIBLE_SLOTS as w}from"../shared/ui/Collapsible/Collapsible.slots.js";import{Collapsible as T}from"../shared/ui/Collapsible/Collapsible.js";import"../shared/ui/Collapsible/index.js";import{DETAILS_SLOTS as E}from"../shared/ui/Details/Details.slots.js";import{Details as D}from"../shared/ui/Details/Details.js";import"../shared/ui/Details/index.js";import{FIELD_SLOTS as O}from"../shared/ui/Field/Field.slots.js";import{Field as k}from"../shared/ui/Field/Field.js";import"../shared/ui/Field/index.js";import{IMAGE_SLOTS as A}from"../shared/ui/Image/Image.slots.js";import{Image as j}from"../shared/ui/Image/Image.js";import"../shared/ui/Image/index.js";import{INPUT_GROUP_SLOTS as M}from"../shared/ui/InputGroup/InputGroup.slots.js";import{InputGroup as N}from"../shared/ui/InputGroup/InputGroup.js";import"../shared/ui/InputGroup/index.js";import{LtrAtom as P}from"../shared/ui/LtrAtom/LtrAtom.js";import"../shared/ui/LtrAtom/index.js";import{SELECT_SLOTS as F}from"../shared/ui/Select/Select.slots.js";import{Select as I}from"../shared/ui/Select/Select.js";import"../shared/ui/Select/index.js";import{SELECTABLE_TILE_SLOTS as L}from"../shared/ui/SelectableTile/SelectableTile.slots.js";import{SelectableTile as R}from"../shared/ui/SelectableTile/SelectableTile.js";import{SelectableTileGroup as z}from"../shared/ui/SelectableTile/SelectableTileGroup.js";import"../shared/ui/SelectableTile/index.js";import{SKELETON_SLOTS as B}from"../shared/ui/Skeleton/Skeleton.slots.js";import{Skeleton as V}from"../shared/ui/Skeleton/Skeleton.js";import"../shared/ui/Skeleton/index.js";import{STEPS_SLOTS as H}from"../shared/ui/Steps/Steps.slots.js";import{Step as U,Steps as W}from"../shared/ui/Steps/Steps.js";import"../shared/ui/Steps/index.js";import{TEXT_SLOTS as G}from"../shared/ui/Text/Text.slots.js";import{text as K}from"../shared/ui/Text/Text.js";import"../shared/ui/Text/index.js";import{TokenLogo as q}from"../shared/ui/TokenLogo/TokenLogo.js";import"../shared/ui/TokenLogo/index.js";import{TOOLTIP_SLOTS as J}from"../shared/ui/Tooltip/Tooltip.slots.js";import{Tooltip as Y}from"../shared/ui/Tooltip/Tooltip.js";import"../shared/ui/Tooltip/index.js";import{WALLET_ROW_SLOTS as X}from"../shared/ui/WalletRow/WalletRow.slots.js";import{WalletRow as Z}from"../shared/ui/WalletRow/WalletRow.js";import"../shared/ui/WalletRow/index.js";export{m as ALERT_SLOTS,g as AMOUNT_INPUT_SLOTS,p as AdaptiveSurface,h as Alert,y as AmountInput,b as BADGE_SLOTS,n as BUTTON_SLOTS,x as Badge,r as Button,S as CARD_SLOTS,w as COLLAPSIBLE_SLOTS,C as Card,T as Collapsible,E as DETAILS_SLOTS,c as DIALOG_SLOTS,d as DRAWER_SLOTS,D as Details,l as Dialog,f as Drawer,e as EXTERNAL_LINK_SLOTS,t as ExternalLink,O as FIELD_SLOTS,k as Field,i as ICON_BUTTON_SLOTS,A as IMAGE_SLOTS,M as INPUT_GROUP_SLOTS,a as IconButton,j as Image,N as InputGroup,P as LtrAtom,o as SCROLL_AREA_SLOTS,L as SELECTABLE_TILE_SLOTS,F as SELECT_SLOTS,B as SKELETON_SLOTS,H as STEPS_SLOTS,s as ScrollArea,I as Select,R as SelectableTile,z as SelectableTileGroup,V as Skeleton,U as Step,W as Steps,G as TEXT_SLOTS,J as TOOLTIP_SLOTS,q as TokenLogo,Y as Tooltip,X as WALLET_ROW_SLOTS,Z as WalletRow,_ as formatAmountForInput,v as parseAmountInputValue,K as text,u as useIsInsideDialogContent};
1
+ import{EXTERNAL_LINK_SLOTS as e}from"../shared/ui/ExternalLink/ExternalLink.slots.js";import{ExternalLink as t}from"../shared/ui/ExternalLink/ExternalLink.js";import"../shared/ui/ExternalLink/index.js";import{BUTTON_SLOTS as n}from"../shared/ui/Button/Button.slots.js";import{Button as r}from"../shared/ui/Button/Button.js";import"../shared/ui/Button/index.js";import{ICON_BUTTON_SLOTS as i}from"../shared/ui/IconButton/IconButton.slots.js";import{IconButton as a}from"../shared/ui/IconButton/IconButton.js";import"../shared/ui/IconButton/index.js";import{SCROLL_AREA_SLOTS as o}from"../shared/ui/ScrollArea/ScrollArea.slots.js";import{ScrollArea as s}from"../shared/ui/ScrollArea/ScrollArea.js";import"../shared/ui/ScrollArea/index.js";import{DIALOG_SLOTS as c}from"../shared/ui/Dialog/Dialog.slots.js";import{Dialog as l,useIsInsideDialogContent as u}from"../shared/ui/Dialog/Dialog.js";import"../shared/ui/Dialog/index.js";import{DRAWER_SLOTS as d}from"../shared/ui/Drawer/Drawer.slots.js";import{Drawer as f}from"../shared/ui/Drawer/Drawer.js";import"../shared/ui/Drawer/index.js";import{AdaptiveSurface as p}from"../shared/ui/AdaptiveSurface/AdaptiveSurface.js";import"../shared/ui/AdaptiveSurface/index.js";import{ALERT_SLOTS as m}from"../shared/ui/Alert/Alert.slots.js";import{Alert as h}from"../shared/ui/Alert/Alert.js";import"../shared/ui/Alert/index.js";import{AMOUNT_INPUT_SLOTS as g}from"../shared/ui/AmountInput/AmountInput.slots.js";import{formatAmountForInput as _,parseAmountInputValue as v}from"../shared/ui/AmountInput/utils.js";import{AmountInput as y}from"../shared/ui/AmountInput/AmountInput.js";import"../shared/ui/AmountInput/index.js";import{BADGE_SLOTS as b}from"../shared/ui/Badge/Badge.slots.js";import{Badge as x}from"../shared/ui/Badge/Badge.js";import"../shared/ui/Badge/index.js";import{CARD_SLOTS as S}from"../shared/ui/Card/Card.slots.js";import{Card as C}from"../shared/ui/Card/Card.js";import"../shared/ui/Card/index.js";import{COLLAPSIBLE_SLOTS as w}from"../shared/ui/Collapsible/Collapsible.slots.js";import{Collapsible as T}from"../shared/ui/Collapsible/Collapsible.js";import"../shared/ui/Collapsible/index.js";import{DETAILS_SLOTS as E}from"../shared/ui/Details/Details.slots.js";import{Details as D}from"../shared/ui/Details/Details.js";import"../shared/ui/Details/index.js";import{FIELD_SLOTS as O}from"../shared/ui/Field/Field.slots.js";import{Field as k}from"../shared/ui/Field/Field.js";import"../shared/ui/Field/index.js";import{IMAGE_SLOTS as A}from"../shared/ui/Image/Image.slots.js";import{Image as j}from"../shared/ui/Image/Image.js";import"../shared/ui/Image/index.js";import{INPUT_GROUP_SLOTS as M}from"../shared/ui/InputGroup/InputGroup.slots.js";import{InputGroup as N}from"../shared/ui/InputGroup/InputGroup.js";import"../shared/ui/InputGroup/index.js";import{LtrAtom as P}from"../shared/ui/LtrAtom/LtrAtom.js";import"../shared/ui/LtrAtom/index.js";import{SELECT_SLOTS as F}from"../shared/ui/Select/Select.slots.js";import{Select as I}from"../shared/ui/Select/Select.js";import"../shared/ui/Select/index.js";import{SELECTABLE_TILE_SLOTS as L}from"../shared/ui/SelectableTile/SelectableTile.slots.js";import{SelectableTile as R}from"../shared/ui/SelectableTile/SelectableTile.js";import{SelectableTileGroup as z}from"../shared/ui/SelectableTile/SelectableTileGroup.js";import"../shared/ui/SelectableTile/index.js";import{SKELETON_SLOTS as B}from"../shared/ui/Skeleton/Skeleton.slots.js";import{Skeleton as V}from"../shared/ui/Skeleton/Skeleton.js";import"../shared/ui/Skeleton/index.js";import{STEPS_SLOTS as H}from"../shared/ui/Steps/Steps.slots.js";import{Step as U,Steps as W}from"../shared/ui/Steps/Steps.js";import"../shared/ui/Steps/index.js";import{TABS_SLOTS as G}from"../shared/ui/Tabs/Tabs.slots.js";import{Tabs as K,TabsIndicator as q,TabsList as J,TabsPanel as Y,TabsRoot as X,TabsTab as Z}from"../shared/ui/Tabs/Tabs.js";import"../shared/ui/Tabs/index.js";import{TEXT_SLOTS as Q}from"../shared/ui/Text/Text.slots.js";import{text as $}from"../shared/ui/Text/Text.js";import"../shared/ui/Text/index.js";import{TokenLogo as ee}from"../shared/ui/TokenLogo/TokenLogo.js";import"../shared/ui/TokenLogo/index.js";import{TOOLTIP_SLOTS as te}from"../shared/ui/Tooltip/Tooltip.slots.js";import{Tooltip as ne}from"../shared/ui/Tooltip/Tooltip.js";import"../shared/ui/Tooltip/index.js";import{WALLET_ROW_SLOTS as re}from"../shared/ui/WalletRow/WalletRow.slots.js";import{WalletRow as ie}from"../shared/ui/WalletRow/WalletRow.js";import"../shared/ui/WalletRow/index.js";export{m as ALERT_SLOTS,g as AMOUNT_INPUT_SLOTS,p as AdaptiveSurface,h as Alert,y as AmountInput,b as BADGE_SLOTS,n as BUTTON_SLOTS,x as Badge,r as Button,S as CARD_SLOTS,w as COLLAPSIBLE_SLOTS,C as Card,T as Collapsible,E as DETAILS_SLOTS,c as DIALOG_SLOTS,d as DRAWER_SLOTS,D as Details,l as Dialog,f as Drawer,e as EXTERNAL_LINK_SLOTS,t as ExternalLink,O as FIELD_SLOTS,k as Field,i as ICON_BUTTON_SLOTS,A as IMAGE_SLOTS,M as INPUT_GROUP_SLOTS,a as IconButton,j as Image,N as InputGroup,P as LtrAtom,o as SCROLL_AREA_SLOTS,L as SELECTABLE_TILE_SLOTS,F as SELECT_SLOTS,B as SKELETON_SLOTS,H as STEPS_SLOTS,s as ScrollArea,I as Select,R as SelectableTile,z as SelectableTileGroup,V as Skeleton,U as Step,W as Steps,G as TABS_SLOTS,Q as TEXT_SLOTS,te as TOOLTIP_SLOTS,K as Tabs,q as TabsIndicator,J as TabsList,Y as TabsPanel,X as TabsRoot,Z as TabsTab,ee as TokenLogo,ne as Tooltip,re as WALLET_ROW_SLOTS,ie as WalletRow,_ as formatAmountForInput,v as parseAmountInputValue,$ as text,u as useIsInsideDialogContent};
@@ -10,7 +10,7 @@ import { PROCESSING_STATE_SLOTS, ProcessingStateSlot } from "../../shared/widget
10
10
  import { SuccessStateActionsProps, SuccessStateAsset, SuccessStateAssetValueProps, SuccessStateBodyProps, SuccessStateDetailProps, SuccessStateDetailsProps, SuccessStateDialogProps, SuccessStateExplorer, SuccessStateHeaderProps, SuccessStateHeadlineProps, SuccessStateMoreDetailsProps, SuccessStateProps, SuccessStateRouteValueProps, SuccessStateRowProps, SuccessStateSourceWallet, SuccessStateStatusPillProps, SuccessStateTxRef } from "../../shared/widgets/success-state/compound/types.js";
11
11
  import { SuccessState } from "../../shared/widgets/success-state/compound/SuccessState.js";
12
12
  import { SUCCESS_STATE_SLOTS, SuccessStateSlot } from "../../shared/widgets/success-state/compound/SuccessState.slots.js";
13
- import { AmountEntryBodyProps, AmountEntryDialogProps, AmountEntryFlowProps, AmountEntryFooterProps, AmountEntryHeaderProps, AmountEntryHeroProps, AmountEntryPercentPreset, AmountEntryPillsProps, AmountEntryProps, AmountEntryToken } from "../../shared/widgets/amount-entry/compound/types.js";
13
+ import { AmountEntryBodyProps, AmountEntryDetailsProps, AmountEntryDetailsRowProps, AmountEntryDialogProps, AmountEntryFlowProps, AmountEntryFooterProps, AmountEntryHeaderProps, AmountEntryHeroProps, AmountEntryNoticeProps, AmountEntryPercentPreset, AmountEntryPillsProps, AmountEntryProps, AmountEntryToken } from "../../shared/widgets/amount-entry/compound/types.js";
14
14
  import { AmountEntry } from "../../shared/widgets/amount-entry/compound/AmountEntry.js";
15
15
  import { AMOUNT_ENTRY_SLOTS, AmountEntrySlot } from "../../shared/widgets/amount-entry/compound/AmountEntry.slots.js";
16
16
  import { AssetOption, AssetPickerAssetProps, AssetPickerBodyProps, AssetPickerDialogProps, AssetPickerFooterProps, AssetPickerHeaderProps, AssetPickerListProps, AssetPickerProps, AssetPickerToken } from "../../shared/widgets/asset-picker/compound/types.js";
@@ -22,4 +22,4 @@ import { WITHDRAW_SLOTS, WithdrawSlot } from "../../flows/withdraw/widgets/withd
22
22
  import { WithdrawFormAsset, WithdrawFormBalance, WithdrawFormBodyProps, WithdrawFormBreakdown, WithdrawFormDialogProps, WithdrawFormHeaderProps, WithdrawFormProps } from "../../flows/withdraw/widgets/withdraw-form/compound/types.js";
23
23
  import { WithdrawForm } from "../../flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.js";
24
24
  import { WITHDRAW_FORM_SLOTS, WithdrawFormSlot } from "../../flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.slots.js";
25
- export { AMOUNT_ENTRY_SLOTS, ASSET_PICKER_SLOTS, AmountEntry, AmountEntryBodyProps, AmountEntryDialogProps, AmountEntryFlowProps, AmountEntryFooterProps, AmountEntryHeaderProps, AmountEntryHeroProps, AmountEntryPercentPreset, AmountEntryPillsProps, AmountEntryProps, AmountEntrySlot, AmountEntryToken, AssetOption, AssetPicker, AssetPickerAssetProps, AssetPickerBodyProps, AssetPickerDialogProps, AssetPickerFooterProps, AssetPickerHeaderProps, AssetPickerListProps, AssetPickerProps, AssetPickerSlot, AssetPickerToken, CONFIRM_TRANSFER_SLOTS, ConfirmTransfer, ConfirmTransferAmountsProps, ConfirmTransferBodyProps, ConfirmTransferBreakdown, ConfirmTransferBreakdownPercentRow, ConfirmTransferBreakdownProps, ConfirmTransferBreakdownTextRow, ConfirmTransferBreakdownUsdRow, ConfirmTransferDialogProps, ConfirmTransferDisclaimerProps, ConfirmTransferFooterProps, ConfirmTransferHeaderProps, ConfirmTransferHeroProps, ConfirmTransferMetaProps, ConfirmTransferProps, ConfirmTransferSlot, ConfirmTransferToken, ConfirmTransferTransfer, ERROR_STATE_SLOTS, ErrorState, ErrorStateActionsProps, ErrorStateAsset, ErrorStateAssetValueProps, ErrorStateBodyProps, ErrorStateDestination, ErrorStateDetailProps, ErrorStateDetailsProps, ErrorStateDialogProps, ErrorStateDisclosureChevronProps, ErrorStateHeaderProps, ErrorStateHelp, ErrorStateHelpInfoProps, ErrorStateHeroProps, ErrorStateMoreDetailsProps, ErrorStateProps, ErrorStateRowProps, ErrorStateSlot, ErrorStateSourceWallet, ErrorStateStatusValueProps, ErrorStateTxRef, PROCESSING_STATE_SLOTS, ProcessingState, ProcessingStateAsset, ProcessingStateBodyProps, ProcessingStateDetailProps, ProcessingStateDetailsProps, ProcessingStateDialogProps, ProcessingStateHeaderProps, ProcessingStateHeroProps, ProcessingStateProps, ProcessingStateRowProps, ProcessingStateSlot, ProcessingStateSourceWallet, ProcessingStateStatusPillProps, ProcessingStateTxRef, SUCCESS_STATE_SLOTS, SuccessState, SuccessStateActionsProps, SuccessStateAsset, SuccessStateAssetValueProps, SuccessStateBodyProps, SuccessStateDetailProps, SuccessStateDetailsProps, SuccessStateDialogProps, SuccessStateExplorer, SuccessStateHeaderProps, SuccessStateHeadlineProps, SuccessStateMoreDetailsProps, SuccessStateProps, SuccessStateRouteValueProps, SuccessStateRowProps, SuccessStateSlot, SuccessStateSourceWallet, SuccessStateStatusPillProps, SuccessStateTxRef, WITHDRAW_FORM_SLOTS, WITHDRAW_SLOTS, Withdraw, WithdrawForm, WithdrawFormAsset, WithdrawFormBalance, WithdrawFormBodyProps, WithdrawFormBreakdown, WithdrawFormDialogProps, WithdrawFormHeaderProps, WithdrawFormProps, WithdrawFormSlot, WithdrawSlot, WithdrawStepsProps };
25
+ export { AMOUNT_ENTRY_SLOTS, ASSET_PICKER_SLOTS, AmountEntry, AmountEntryBodyProps, AmountEntryDetailsProps, AmountEntryDetailsRowProps, AmountEntryDialogProps, AmountEntryFlowProps, AmountEntryFooterProps, AmountEntryHeaderProps, AmountEntryHeroProps, AmountEntryNoticeProps, AmountEntryPercentPreset, AmountEntryPillsProps, AmountEntryProps, AmountEntrySlot, AmountEntryToken, AssetOption, AssetPicker, AssetPickerAssetProps, AssetPickerBodyProps, AssetPickerDialogProps, AssetPickerFooterProps, AssetPickerHeaderProps, AssetPickerListProps, AssetPickerProps, AssetPickerSlot, AssetPickerToken, CONFIRM_TRANSFER_SLOTS, ConfirmTransfer, ConfirmTransferAmountsProps, ConfirmTransferBodyProps, ConfirmTransferBreakdown, ConfirmTransferBreakdownPercentRow, ConfirmTransferBreakdownProps, ConfirmTransferBreakdownTextRow, ConfirmTransferBreakdownUsdRow, ConfirmTransferDialogProps, ConfirmTransferDisclaimerProps, ConfirmTransferFooterProps, ConfirmTransferHeaderProps, ConfirmTransferHeroProps, ConfirmTransferMetaProps, ConfirmTransferProps, ConfirmTransferSlot, ConfirmTransferToken, ConfirmTransferTransfer, ERROR_STATE_SLOTS, ErrorState, ErrorStateActionsProps, ErrorStateAsset, ErrorStateAssetValueProps, ErrorStateBodyProps, ErrorStateDestination, ErrorStateDetailProps, ErrorStateDetailsProps, ErrorStateDialogProps, ErrorStateDisclosureChevronProps, ErrorStateHeaderProps, ErrorStateHelp, ErrorStateHelpInfoProps, ErrorStateHeroProps, ErrorStateMoreDetailsProps, ErrorStateProps, ErrorStateRowProps, ErrorStateSlot, ErrorStateSourceWallet, ErrorStateStatusValueProps, ErrorStateTxRef, PROCESSING_STATE_SLOTS, ProcessingState, ProcessingStateAsset, ProcessingStateBodyProps, ProcessingStateDetailProps, ProcessingStateDetailsProps, ProcessingStateDialogProps, ProcessingStateHeaderProps, ProcessingStateHeroProps, ProcessingStateProps, ProcessingStateRowProps, ProcessingStateSlot, ProcessingStateSourceWallet, ProcessingStateStatusPillProps, ProcessingStateTxRef, SUCCESS_STATE_SLOTS, SuccessState, SuccessStateActionsProps, SuccessStateAsset, SuccessStateAssetValueProps, SuccessStateBodyProps, SuccessStateDetailProps, SuccessStateDetailsProps, SuccessStateDialogProps, SuccessStateExplorer, SuccessStateHeaderProps, SuccessStateHeadlineProps, SuccessStateMoreDetailsProps, SuccessStateProps, SuccessStateRouteValueProps, SuccessStateRowProps, SuccessStateSlot, SuccessStateSourceWallet, SuccessStateStatusPillProps, SuccessStateTxRef, WITHDRAW_FORM_SLOTS, WITHDRAW_SLOTS, Withdraw, WithdrawForm, WithdrawFormAsset, WithdrawFormBalance, WithdrawFormBodyProps, WithdrawFormBreakdown, WithdrawFormDialogProps, WithdrawFormHeaderProps, WithdrawFormProps, WithdrawFormSlot, WithdrawSlot, WithdrawStepsProps };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stridge/kit",
3
- "version": "0.1.0-alpha.54",
3
+ "version": "0.1.0-alpha.56",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "files": [
@@ -159,8 +159,8 @@
159
159
  },
160
160
  "scripts": {
161
161
  "build": "pnpm run i18n:compile && tsdown",
162
- "check:api": "api-extractor run && api-extractor run --config api-extractor.i18n.json && api-extractor run --config api-extractor.events.json && api-extractor run --config api-extractor.deposit.widgets.json && api-extractor run --config api-extractor.withdraw.widgets.json && api-extractor run --config api-extractor.activity.compound.json && api-extractor run --config api-extractor.activity.dialog.json && api-extractor run --config api-extractor.activity.widgets.json",
163
- "check:api:update": "api-extractor run --local && api-extractor run --local --config api-extractor.i18n.json && api-extractor run --local --config api-extractor.events.json && api-extractor run --local --config api-extractor.deposit.widgets.json && api-extractor run --local --config api-extractor.withdraw.widgets.json && api-extractor run --local --config api-extractor.activity.compound.json && api-extractor run --local --config api-extractor.activity.dialog.json && api-extractor run --local --config api-extractor.activity.widgets.json",
162
+ "check:api": "api-extractor run && api-extractor run --config api-extractor.i18n.json && api-extractor run --config api-extractor.events.json && api-extractor run --config api-extractor.activity.compound.json && api-extractor run --config api-extractor.activity.dialog.json && api-extractor run --config api-extractor.activity.widgets.json && api-extractor run --config api-extractor.deposit.compound.json && api-extractor run --config api-extractor.deposit.widgets.json && api-extractor run --config api-extractor.withdraw.compound.json && api-extractor run --config api-extractor.withdraw.widgets.json && api-extractor run --config api-extractor.ui.json",
163
+ "check:api:update": "api-extractor run --local && api-extractor run --local --config api-extractor.i18n.json && api-extractor run --local --config api-extractor.events.json && api-extractor run --local --config api-extractor.activity.compound.json && api-extractor run --local --config api-extractor.activity.dialog.json && api-extractor run --local --config api-extractor.activity.widgets.json && api-extractor run --local --config api-extractor.deposit.compound.json && api-extractor run --local --config api-extractor.deposit.widgets.json && api-extractor run --local --config api-extractor.withdraw.compound.json && api-extractor run --local --config api-extractor.withdraw.widgets.json && api-extractor run --local --config api-extractor.ui.json",
164
164
  "check:attw": "attw --pack . --profile esm-only --exclude-entrypoints ./styles.css",
165
165
  "check:isolation": "depcruise src",
166
166
  "check:publint": "publint",