@stridge/kit 0.1.0-alpha.6 → 0.1.0-alpha.60

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 (597) hide show
  1. package/README.md +22 -6
  2. package/dist/KitProvider.d.ts +61 -0
  3. package/dist/KitProvider.js +1 -1
  4. package/dist/_internal/activity/driver/index.d.ts +3 -0
  5. package/dist/_internal/activity/driver/index.js +1 -0
  6. package/dist/_internal/deposit/driver/index.d.ts +2 -2
  7. package/dist/_internal/drivers/stridge/index.d.ts +4 -2
  8. package/dist/_internal/drivers/stridge/index.js +1 -1
  9. package/dist/_internal/drivers/stridge-mock/index.d.ts +2 -1
  10. package/dist/_internal/drivers/stridge-mock/index.js +1 -1
  11. package/dist/_internal/withdraw/driver/index.d.ts +2 -2
  12. package/dist/activity/compound/index.d.ts +19 -0
  13. package/dist/activity/compound/index.js +1 -0
  14. package/dist/activity/dialog/index.d.ts +4 -0
  15. package/dist/activity/dialog/index.js +1 -0
  16. package/dist/activity/widgets/index.d.ts +5 -0
  17. package/dist/activity/widgets/index.js +1 -0
  18. package/dist/deposit/compound/index.d.ts +22 -15
  19. package/dist/deposit/compound/index.js +1 -1
  20. package/dist/deposit/dialog/index.d.ts +2 -1
  21. package/dist/deposit/widgets/index.d.ts +16 -0
  22. package/dist/deposit/widgets/index.js +1 -0
  23. package/dist/drivers/stridge/catalog.d.ts +54 -0
  24. package/dist/drivers/stridge/catalog.js +1 -0
  25. package/dist/drivers/stridge/createStridgeActivityDriver.d.ts +44 -0
  26. package/dist/drivers/stridge/createStridgeActivityDriver.js +1 -0
  27. package/dist/drivers/stridge/createStridgeDepositDriver.d.ts +10 -1
  28. package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
  29. package/dist/drivers/stridge/createStridgeWithdrawDriver.d.ts +37 -14
  30. package/dist/drivers/stridge/createStridgeWithdrawDriver.js +1 -1
  31. package/dist/drivers/stridge/internal/ensureWalletChain.js +1 -0
  32. package/dist/drivers/stridge/internal/pollOnce.js +1 -1
  33. package/dist/drivers/stridge/internal/resolveAddEthereumChain.js +1 -0
  34. package/dist/drivers/stridge/internal/retry.js +1 -0
  35. package/dist/drivers/stridge/internal/supportedChains.js +1 -0
  36. package/dist/drivers/stridge/types.d.ts +20 -14
  37. package/dist/drivers/stridge/types.js +1 -1
  38. package/dist/drivers/stridge/wagmiSigner.js +1 -1
  39. package/dist/drivers/stridge-mock/createStridgeMockActivityDriver.d.ts +44 -0
  40. package/dist/drivers/stridge-mock/createStridgeMockActivityDriver.js +1 -0
  41. package/dist/drivers/stridge-mock/createStridgeMockDriver.d.ts +2 -2
  42. package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
  43. package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.d.ts +15 -3
  44. package/dist/drivers/stridge-mock/createStridgeMockWithdrawDriver.js +1 -1
  45. package/dist/drivers/stridge-mock/fixtures.d.ts +14 -12
  46. package/dist/drivers/stridge-mock/fixtures.js +1 -1
  47. package/dist/events/bus/createBus.d.ts +26 -0
  48. package/dist/events/bus/createBus.js +1 -0
  49. package/dist/events/bus/flowIdRegistry.d.ts +17 -0
  50. package/dist/events/bus/flowIdRegistry.js +1 -0
  51. package/dist/events/bus/index.js +1 -0
  52. package/dist/events/bus/metadata.js +1 -0
  53. package/dist/events/context.js +1 -0
  54. package/dist/events/emit/index.js +1 -0
  55. package/dist/events/emit/mapFailure.js +1 -0
  56. package/dist/events/emit/useActivityEmissions.js +1 -0
  57. package/dist/events/emit/useDepositEmissions.js +1 -0
  58. package/dist/events/emit/useKitEmitter.js +1 -0
  59. package/dist/events/emit/useWithdrawEmissions.js +1 -0
  60. package/dist/events/hooks/index.d.ts +6 -0
  61. package/dist/events/hooks/index.js +1 -0
  62. package/dist/events/hooks/useCurrentFlowId.d.ts +6 -0
  63. package/dist/events/hooks/useCurrentFlowId.js +1 -0
  64. package/dist/events/hooks/useStableHandler.js +1 -0
  65. package/dist/events/hooks/useStridgeEvent.d.ts +9 -0
  66. package/dist/events/hooks/useStridgeEvent.js +1 -0
  67. package/dist/events/hooks/useStridgeEventBus.d.ts +34 -0
  68. package/dist/events/hooks/useStridgeEventBus.js +1 -0
  69. package/dist/events/hooks/useStridgeEvents.d.ts +7 -0
  70. package/dist/events/hooks/useStridgeEvents.js +1 -0
  71. package/dist/events/hooks/useStridgeFlowEvent.d.ts +8 -0
  72. package/dist/events/hooks/useStridgeFlowEvent.js +1 -0
  73. package/dist/events/hooks/useStridgeFlowEvents.d.ts +6 -0
  74. package/dist/events/hooks/useStridgeFlowEvents.js +1 -0
  75. package/dist/events/index.d.ts +17 -0
  76. package/dist/events/index.js +1 -0
  77. package/dist/events/publish.js +1 -0
  78. package/dist/events/redact.d.ts +34 -0
  79. package/dist/events/redact.js +1 -0
  80. package/dist/events/types/activity.d.ts +53 -0
  81. package/dist/events/types/deposit.d.ts +235 -0
  82. package/dist/events/types/envelope.d.ts +145 -0
  83. package/dist/events/types/index.d.ts +32 -0
  84. package/dist/events/types/kit.d.ts +23 -0
  85. package/dist/events/types/withdraw.d.ts +150 -0
  86. package/dist/flows/activity/compound/ActivityFlow.d.ts +46 -0
  87. package/dist/flows/activity/compound/ActivityFlow.js +1 -0
  88. package/dist/flows/activity/compound/components/Boundary.d.ts +29 -0
  89. package/dist/flows/activity/compound/components/Boundary.js +1 -0
  90. package/dist/flows/activity/compound/components/Steps.d.ts +24 -0
  91. package/dist/flows/activity/compound/components/Steps.js +1 -0
  92. package/dist/flows/activity/dialog/ActivityDialog.d.ts +55 -0
  93. package/dist/flows/activity/dialog/ActivityDialog.js +1 -0
  94. package/dist/flows/activity/dialog/ActivityFlowBoundary.d.ts +1 -0
  95. package/dist/flows/activity/dialog/ActivityFlowBoundary.js +1 -0
  96. package/dist/flows/activity/driver/context.d.ts +38 -0
  97. package/dist/flows/activity/driver/context.js +1 -0
  98. package/dist/flows/activity/driver/types.d.ts +58 -0
  99. package/dist/flows/activity/orchestrator/controller.d.ts +11 -0
  100. package/dist/flows/activity/orchestrator/controller.js +1 -0
  101. package/dist/flows/activity/orchestrator/index.d.ts +4 -0
  102. package/dist/flows/activity/orchestrator/index.js +1 -0
  103. package/dist/flows/activity/orchestrator/reducer.d.ts +1 -0
  104. package/dist/flows/activity/orchestrator/reducer.js +1 -0
  105. package/dist/flows/activity/orchestrator/types.d.ts +71 -0
  106. package/dist/flows/activity/orchestrator/useActivity.d.ts +94 -0
  107. package/dist/flows/activity/orchestrator/useActivity.js +1 -0
  108. package/dist/flows/activity/widgets/ActivityDetail.d.ts +41 -0
  109. package/dist/flows/activity/widgets/ActivityDetail.js +1 -0
  110. package/dist/flows/activity/widgets/ActivityList.d.ts +38 -0
  111. package/dist/flows/activity/widgets/ActivityList.js +1 -0
  112. package/dist/flows/activity/widgets/useStandaloneActivitySource.js +1 -0
  113. package/dist/flows/deposit/bindings/DepositBindings.d.ts +87 -0
  114. package/dist/flows/deposit/bindings/DepositBindings.js +1 -0
  115. package/dist/flows/deposit/bindings/index.d.ts +1 -0
  116. package/dist/flows/deposit/bindings/index.js +1 -0
  117. package/dist/flows/deposit/dialog/DepositBootstrapErrorState.js +1 -1
  118. package/dist/flows/deposit/dialog/DepositDialog.d.ts +26 -79
  119. package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
  120. package/dist/flows/deposit/dialog/WalletRequiredState.js +1 -0
  121. package/dist/flows/deposit/dialog/WalletRequiredState.styles.js +1 -0
  122. package/dist/flows/deposit/driver/payloads.d.ts +52 -5
  123. package/dist/flows/deposit/driver/transformers/balanceToBalancesPayload.d.ts +2 -0
  124. package/dist/flows/deposit/driver/transformers/balanceToBalancesPayload.js +1 -1
  125. package/dist/flows/deposit/driver/transformers/index.d.ts +1 -0
  126. package/dist/flows/deposit/driver/transformers/quoteToPayload.d.ts +2 -0
  127. package/dist/flows/deposit/driver/transformers/settlementToPayload.d.ts +25 -0
  128. package/dist/flows/deposit/driver/transformers/settlementToPayload.js +1 -1
  129. package/dist/flows/deposit/driver/transformers/startToAddressesPayload.d.ts +2 -0
  130. package/dist/flows/deposit/driver/transformers/startToAddressesPayload.js +1 -1
  131. package/dist/flows/deposit/driver/transformers/startToBrandPayload.d.ts +1 -0
  132. package/dist/flows/deposit/driver/transformers/startToTargetPayload.d.ts +2 -0
  133. package/dist/flows/deposit/driver/transformers/startToTargetPayload.js +1 -1
  134. package/dist/flows/deposit/driver/transformers/walletAddressToWalletPayload.d.ts +1 -0
  135. package/dist/flows/deposit/driver/types.d.ts +37 -4
  136. package/dist/flows/deposit/orchestrator/controller.js +1 -1
  137. package/dist/flows/deposit/orchestrator/index.d.ts +5 -0
  138. package/dist/flows/deposit/orchestrator/reducer.d.ts +1 -0
  139. package/dist/flows/deposit/orchestrator/reducer.js +1 -1
  140. package/dist/flows/deposit/orchestrator/types.d.ts +228 -7
  141. package/dist/flows/deposit/orchestrator/useDeposit.d.ts +45 -1
  142. package/dist/flows/deposit/orchestrator/useDeposit.js +1 -1
  143. package/dist/flows/deposit/shared/cash.d.ts +20 -0
  144. package/dist/flows/deposit/shared/cash.js +1 -0
  145. package/dist/flows/deposit/widgets/activity/DepositActivityDetail.d.ts +40 -0
  146. package/dist/flows/deposit/widgets/activity/DepositActivityDetail.js +1 -0
  147. package/dist/flows/deposit/widgets/activity/DepositActivityList.d.ts +38 -0
  148. package/dist/flows/deposit/widgets/activity/DepositActivityList.js +1 -0
  149. package/dist/flows/deposit/widgets/activity/index.d.ts +2 -0
  150. package/dist/flows/deposit/widgets/activity/index.js +1 -0
  151. package/dist/flows/deposit/widgets/activity/useDepositActivitySource.js +1 -0
  152. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.d.ts +32 -5
  153. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -1
  154. package/dist/flows/deposit/widgets/amount-entry/footerIntent.js +1 -0
  155. package/dist/flows/deposit/widgets/asset-picker/AssetPicker.d.ts +24 -4
  156. package/dist/flows/deposit/widgets/asset-picker/AssetPicker.js +1 -1
  157. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.d.ts +71 -0
  158. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.js +1 -0
  159. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.d.ts +69 -0
  160. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.js +1 -0
  161. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.d.ts +16 -0
  162. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.js +1 -0
  163. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.styles.js +1 -0
  164. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.d.ts +13 -0
  165. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.js +1 -0
  166. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.d.ts +18 -0
  167. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.js +1 -0
  168. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.d.ts +14 -0
  169. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.js +1 -0
  170. package/dist/flows/deposit/widgets/cash-amount-entry/compound/context.js +1 -0
  171. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.d.ts +3 -0
  172. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.js +1 -0
  173. package/dist/flows/deposit/widgets/cash-amount-entry/compound/types.d.ts +42 -0
  174. package/dist/flows/deposit/widgets/cash-amount-entry/index.d.ts +1 -0
  175. package/dist/flows/deposit/widgets/cash-amount-entry/index.js +1 -0
  176. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.d.ts +63 -0
  177. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.js +1 -0
  178. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.d.ts +54 -0
  179. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.js +1 -0
  180. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.d.ts +33 -0
  181. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.js +1 -0
  182. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.styles.js +1 -0
  183. package/dist/flows/deposit/widgets/cash-confirm/compound/cashConfirmDimensions.js +1 -0
  184. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.d.ts +15 -0
  185. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.js +1 -0
  186. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.d.ts +22 -0
  187. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.js +1 -0
  188. package/dist/flows/deposit/widgets/cash-confirm/compound/components/BodyLabel.js +1 -0
  189. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.d.ts +16 -0
  190. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.js +1 -0
  191. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.icons.js +1 -0
  192. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.js +1 -0
  193. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.keys.js +1 -0
  194. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.state.js +1 -0
  195. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.styles.js +1 -0
  196. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.d.ts +16 -0
  197. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.js +1 -0
  198. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.d.ts +21 -0
  199. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.js +1 -0
  200. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.d.ts +17 -0
  201. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.js +1 -0
  202. package/dist/flows/deposit/widgets/cash-confirm/compound/components/cardFormat.js +1 -0
  203. package/dist/flows/deposit/widgets/cash-confirm/compound/context.js +1 -0
  204. package/dist/flows/deposit/widgets/cash-confirm/compound/index.d.ts +3 -0
  205. package/dist/flows/deposit/widgets/cash-confirm/compound/index.js +1 -0
  206. package/dist/flows/deposit/widgets/cash-confirm/compound/types.d.ts +66 -0
  207. package/dist/flows/deposit/widgets/cash-confirm/index.d.ts +1 -0
  208. package/dist/flows/deposit/widgets/cash-confirm/index.js +1 -0
  209. package/dist/flows/deposit/widgets/cash-confirm/mocks.js +1 -0
  210. package/dist/flows/deposit/widgets/confirm-deposit/ConfirmDeposit.d.ts +37 -4
  211. package/dist/flows/deposit/widgets/confirm-deposit/ConfirmDeposit.js +1 -1
  212. package/dist/flows/deposit/widgets/deposit/Deposit.d.ts +39 -4
  213. package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
  214. package/dist/flows/deposit/widgets/deposit/compound/Deposit.d.ts +58 -1
  215. package/dist/flows/deposit/widgets/deposit/compound/Deposit.js +1 -1
  216. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.d.ts +6 -0
  217. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.js +1 -1
  218. package/dist/flows/deposit/widgets/deposit/compound/Deposit.styles.js +1 -1
  219. package/dist/flows/deposit/widgets/deposit/compound/components/Boundary.d.ts +29 -0
  220. package/dist/flows/deposit/widgets/deposit/compound/components/Boundary.js +1 -0
  221. package/dist/flows/deposit/widgets/deposit/compound/components/Guards.d.ts +28 -0
  222. package/dist/flows/deposit/widgets/deposit/compound/components/Guards.js +1 -0
  223. package/dist/flows/deposit/widgets/deposit/compound/components/Header.d.ts +11 -0
  224. package/dist/flows/deposit/widgets/deposit/compound/components/Header.js +1 -1
  225. package/dist/flows/deposit/widgets/deposit/compound/components/Method.d.ts +7 -0
  226. package/dist/flows/deposit/widgets/deposit/compound/components/Method.js +1 -1
  227. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.d.ts +40 -0
  228. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.js +1 -0
  229. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.d.ts +16 -9
  230. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.js +1 -1
  231. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.d.ts +18 -0
  232. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.js +1 -0
  233. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.d.ts +43 -0
  234. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.js +1 -0
  235. package/dist/flows/deposit/widgets/deposit/compound/components/Steps.d.ts +24 -0
  236. package/dist/flows/deposit/widgets/deposit/compound/components/Steps.js +1 -0
  237. package/dist/flows/deposit/widgets/deposit/compound/index.d.ts +2 -1
  238. package/dist/flows/deposit/widgets/deposit/compound/types.d.ts +106 -4
  239. package/dist/flows/deposit/widgets/deposit-status-banner/DepositStatusBanner.d.ts +41 -1
  240. package/dist/flows/deposit/widgets/deposit-status-banner/DepositStatusBanner.js +1 -1
  241. package/dist/flows/deposit/widgets/deposit-status-banner/compound/DepositStatusBanner.js +1 -1
  242. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/Hero.js +1 -1
  243. package/dist/flows/deposit/widgets/deposit-status-banner/compound/components/PrimaryAction.js +1 -1
  244. package/dist/flows/deposit/widgets/deposit-status-banner/compound/types.d.ts +5 -5
  245. package/dist/flows/deposit/widgets/error-state/ErrorState.d.ts +39 -4
  246. package/dist/flows/deposit/widgets/error-state/ErrorState.js +1 -1
  247. package/dist/flows/deposit/widgets/processing-state/ProcessingState.d.ts +30 -4
  248. package/dist/flows/deposit/widgets/processing-state/ProcessingState.js +1 -1
  249. package/dist/flows/deposit/widgets/success-state/SuccessState.d.ts +38 -4
  250. package/dist/flows/deposit/widgets/success-state/SuccessState.js +1 -1
  251. package/dist/flows/deposit/widgets/transfer-crypto/TransferCrypto.d.ts +34 -3
  252. package/dist/flows/deposit/widgets/transfer-crypto/TransferCrypto.js +1 -1
  253. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.d.ts +1 -1
  254. package/dist/flows/deposit/widgets/transfer-crypto/compound/TransferCrypto.styles.js +1 -1
  255. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Address.js +1 -1
  256. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Disclosure.d.ts +5 -2
  257. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Disclosure.js +1 -1
  258. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.d.ts +6 -0
  259. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/Header.js +1 -1
  260. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.d.ts +4 -10
  261. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.js +1 -1
  262. package/dist/flows/deposit/widgets/transfer-crypto/compound/types.d.ts +16 -2
  263. package/dist/flows/shared/transformers/computeQuoteAttrs.d.ts +1 -0
  264. package/dist/flows/shared/transformers/index.d.ts +1 -0
  265. package/dist/flows/shared/transformers/pickRelevantSettlement.d.ts +1 -0
  266. package/dist/flows/shared/transformers/pickRelevantSettlement.js +1 -1
  267. package/dist/flows/shared/transformers/testnets.js +1 -0
  268. package/dist/flows/withdraw/bindings/WithdrawBindings.d.ts +92 -0
  269. package/dist/flows/withdraw/bindings/WithdrawBindings.js +1 -0
  270. package/dist/flows/withdraw/bindings/index.d.ts +1 -0
  271. package/dist/flows/withdraw/bindings/index.js +1 -0
  272. package/dist/flows/withdraw/dialog/WithdrawDialog.d.ts +44 -71
  273. package/dist/flows/withdraw/dialog/WithdrawDialog.js +1 -1
  274. package/dist/flows/withdraw/driver/dto.d.ts +8 -7
  275. package/dist/flows/withdraw/driver/payloads.d.ts +16 -1
  276. package/dist/flows/withdraw/driver/transformers/settlementToWithdrawalPayload.js +1 -1
  277. package/dist/flows/withdraw/driver/transformers/supportedAssetsToReceiveOptionsPayload.js +1 -1
  278. package/dist/flows/withdraw/driver/types.d.ts +77 -14
  279. package/dist/flows/withdraw/orchestrator/controller.js +1 -1
  280. package/dist/flows/withdraw/orchestrator/index.d.ts +1 -1
  281. package/dist/flows/withdraw/orchestrator/reducer.js +1 -1
  282. package/dist/flows/withdraw/orchestrator/types.d.ts +218 -35
  283. package/dist/flows/withdraw/orchestrator/useWithdraw.d.ts +36 -1
  284. package/dist/flows/withdraw/orchestrator/useWithdraw.js +1 -1
  285. package/dist/flows/withdraw/widgets/activity/WithdrawActivityDetail.d.ts +39 -0
  286. package/dist/flows/withdraw/widgets/activity/WithdrawActivityDetail.js +1 -0
  287. package/dist/flows/withdraw/widgets/activity/WithdrawActivityList.d.ts +36 -0
  288. package/dist/flows/withdraw/widgets/activity/WithdrawActivityList.js +1 -0
  289. package/dist/flows/withdraw/widgets/activity/index.d.ts +2 -0
  290. package/dist/flows/withdraw/widgets/activity/index.js +1 -0
  291. package/dist/flows/withdraw/widgets/activity/useWithdrawActivitySource.js +1 -0
  292. package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.d.ts +60 -0
  293. package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.js +1 -0
  294. package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.slots.d.ts +13 -0
  295. package/dist/flows/withdraw/widgets/withdraw/compound/Withdraw.slots.js +1 -0
  296. package/dist/flows/withdraw/widgets/withdraw/compound/components/Boundary.d.ts +29 -0
  297. package/dist/flows/withdraw/widgets/withdraw/compound/components/Boundary.js +1 -0
  298. package/dist/flows/withdraw/widgets/withdraw/compound/components/Guards.d.ts +25 -0
  299. package/dist/flows/withdraw/widgets/withdraw/compound/components/Guards.js +1 -0
  300. package/dist/flows/withdraw/widgets/withdraw/compound/components/Steps.d.ts +27 -0
  301. package/dist/flows/withdraw/widgets/withdraw/compound/components/Steps.js +1 -0
  302. package/dist/flows/withdraw/widgets/withdraw/compound/index.d.ts +3 -0
  303. package/dist/flows/withdraw/widgets/withdraw/compound/index.js +1 -0
  304. package/dist/flows/withdraw/widgets/withdraw-error/WithdrawError.d.ts +45 -2
  305. package/dist/flows/withdraw/widgets/withdraw-error/WithdrawError.js +1 -1
  306. package/dist/flows/withdraw/widgets/withdraw-form/WithdrawForm.d.ts +32 -12
  307. package/dist/flows/withdraw/widgets/withdraw-form/WithdrawForm.js +1 -1
  308. package/dist/flows/withdraw/widgets/withdraw-form/compound/WithdrawForm.js +1 -1
  309. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Body.d.ts +7 -6
  310. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.d.ts +6 -1
  311. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/Header.js +1 -1
  312. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.d.ts +7 -5
  313. package/dist/flows/withdraw/widgets/withdraw-form/compound/components/RecipientField.js +1 -1
  314. package/dist/flows/withdraw/widgets/withdraw-form/compound/types.d.ts +15 -5
  315. package/dist/flows/withdraw/widgets/withdraw-form/validation.js +1 -1
  316. package/dist/flows/withdraw/widgets/withdraw-in-progress/WithdrawInProgress.d.ts +39 -3
  317. package/dist/flows/withdraw/widgets/withdraw-in-progress/WithdrawInProgress.js +1 -1
  318. package/dist/flows/withdraw/widgets/withdraw-success/WithdrawSuccess.d.ts +46 -2
  319. package/dist/flows/withdraw/widgets/withdraw-success/WithdrawSuccess.js +1 -1
  320. package/dist/format/index.d.ts +2 -1
  321. package/dist/format/index.js +1 -1
  322. package/dist/i18n/index.d.ts +5 -4
  323. package/dist/i18n/index.js +1 -1
  324. package/dist/i18n/locales/ar.js +1 -1
  325. package/dist/i18n/locales/es.js +1 -1
  326. package/dist/i18n/locales/source-keys.d.ts +12 -0
  327. package/dist/i18n/locales/source-keys.js +0 -0
  328. package/dist/icons/index.d.ts +12 -1
  329. package/dist/icons/index.js +1 -1
  330. package/dist/index.d.ts +36 -11
  331. package/dist/index.js +1 -1
  332. package/dist/package.js +1 -1
  333. package/dist/scope/KitPortalScope.js +1 -1
  334. package/dist/scope/KitScope.d.ts +27 -1
  335. package/dist/scope/KitScope.js +1 -1
  336. package/dist/scope/context.d.ts +24 -1
  337. package/dist/scope/index.d.ts +1 -1
  338. package/dist/shared/attribution/Attribution.js +1 -0
  339. package/dist/shared/attribution/Attribution.slots.js +1 -0
  340. package/dist/shared/attribution/Attribution.styles.js +1 -0
  341. package/dist/shared/attribution/index.js +1 -0
  342. package/dist/shared/chains/index.d.ts +48 -29
  343. package/dist/shared/chains/index.js +1 -1
  344. package/dist/shared/constants/brand-intercom.js +1 -0
  345. package/dist/shared/cuer/Cuer.js +1 -1
  346. package/dist/shared/dialog/DialogShell.d.ts +21 -6
  347. package/dist/shared/dialog/DialogShell.js +1 -1
  348. package/dist/shared/dialog/Frame.js +1 -1
  349. package/dist/shared/dialog/LoadingState.js +1 -0
  350. package/dist/shared/dialog/LoadingState.styles.js +1 -0
  351. package/dist/shared/dialog/StepTransition.js +1 -1
  352. package/dist/shared/dialog/useDirectionalChevronTransform.js +1 -1
  353. package/dist/shared/driver/types.d.ts +4 -3
  354. package/dist/shared/format/formatSmartRelative.d.ts +25 -0
  355. package/dist/shared/format/formatSmartRelative.js +1 -0
  356. package/dist/shared/format/formatUsd.js +1 -1
  357. package/dist/shared/i18n/KitI18nProvider.d.ts +11 -8
  358. package/dist/shared/i18n/KitI18nProvider.js +1 -1
  359. package/dist/shared/i18n/createKitI18n.d.ts +79 -16
  360. package/dist/shared/i18n/createKitI18n.js +1 -1
  361. package/dist/shared/i18n/useLingui.d.ts +11 -3
  362. package/dist/shared/icons/ActivityIcon.d.ts +12 -0
  363. package/dist/shared/icons/ActivityIcon.js +1 -0
  364. package/dist/shared/icons/AmexIcon.d.ts +14 -0
  365. package/dist/shared/icons/AmexIcon.js +1 -0
  366. package/dist/shared/icons/ApplePayIcon.d.ts +15 -0
  367. package/dist/shared/icons/ApplePayIcon.js +1 -0
  368. package/dist/shared/icons/BitcoinIcon.d.ts +17 -0
  369. package/dist/shared/icons/BitcoinIcon.js +1 -0
  370. package/dist/shared/icons/CardIcon.d.ts +16 -0
  371. package/dist/shared/icons/CardIcon.js +1 -0
  372. package/dist/shared/icons/CashIcon.d.ts +16 -0
  373. package/dist/shared/icons/CashIcon.js +1 -0
  374. package/dist/shared/icons/DiscoverIcon.d.ts +14 -0
  375. package/dist/shared/icons/DiscoverIcon.js +1 -0
  376. package/dist/shared/icons/GooglePayIcon.d.ts +15 -0
  377. package/dist/shared/icons/GooglePayIcon.js +1 -0
  378. package/dist/shared/icons/LogoIcon.d.ts +13 -0
  379. package/dist/shared/icons/LogoIcon.js +1 -0
  380. package/dist/shared/icons/MastercardIcon.d.ts +16 -0
  381. package/dist/shared/icons/MastercardIcon.js +1 -0
  382. package/dist/shared/icons/VisaIcon.d.ts +15 -0
  383. package/dist/shared/icons/VisaIcon.js +1 -0
  384. package/dist/shared/merchant-link/MerchantLink.d.ts +1 -0
  385. package/dist/shared/merchant-link/MerchantLink.js +1 -0
  386. package/dist/shared/merchant-link/MerchantLinkButton.d.ts +1 -0
  387. package/dist/shared/merchant-link/MerchantLinkButton.js +1 -0
  388. package/dist/shared/merchant-link/index.d.ts +1 -0
  389. package/dist/shared/merchant-link/index.js +1 -0
  390. package/dist/shared/merchant-link/resolveMerchantLink.js +1 -0
  391. package/dist/shared/orchestrator/activityOpenInput.d.ts +21 -0
  392. package/dist/shared/orchestrator/createActivityReducers.js +1 -0
  393. package/dist/shared/orchestrator/index.d.ts +2 -0
  394. package/dist/shared/orchestrator/index.js +1 -1
  395. package/dist/shared/orchestrator/resolveActivityEntry.d.ts +1 -0
  396. package/dist/shared/orchestrator/resolveActivityEntry.js +1 -0
  397. package/dist/shared/orchestrator/toFailure.js +1 -1
  398. package/dist/shared/orchestrator/types.d.ts +8 -0
  399. package/dist/shared/orchestrator/useSettlementWatcher.js +1 -1
  400. package/dist/shared/presentation/index.js +1 -0
  401. package/dist/shared/presentation/types.d.ts +30 -0
  402. package/dist/shared/presentation/types.js +1 -0
  403. package/dist/shared/presentation/useResolvedSurfaceKind.js +1 -0
  404. package/dist/shared/primitives/TxHashValue/TxHashValue.js +1 -1
  405. package/dist/shared/support/SupportConfigContext.d.ts +1 -0
  406. package/dist/shared/support/SupportConfigContext.js +1 -0
  407. package/dist/shared/support/SupportLink.d.ts +1 -0
  408. package/dist/shared/support/SupportLink.js +1 -0
  409. package/dist/shared/support/SupportSpinner.d.ts +1 -0
  410. package/dist/shared/support/SupportSpinner.js +1 -0
  411. package/dist/shared/support/index.d.ts +2 -0
  412. package/dist/shared/support/index.js +1 -0
  413. package/dist/shared/support/intercom-loader.d.ts +17 -0
  414. package/dist/shared/support/intercom-loader.js +1 -0
  415. package/dist/shared/support/types.d.ts +43 -0
  416. package/dist/shared/support/useIntercomMerchantContext.d.ts +27 -0
  417. package/dist/shared/support/useIntercomMerchantContext.js +1 -0
  418. package/dist/shared/support/useIntercomShutdownOnUnmount.js +1 -0
  419. package/dist/shared/support/useMerchantContext.d.ts +1 -0
  420. package/dist/shared/support/useMerchantContext.js +1 -0
  421. package/dist/shared/support/useSupportTrigger.js +1 -0
  422. package/dist/shared/terms/TermsConfigContext.d.ts +1 -0
  423. package/dist/shared/terms/TermsConfigContext.js +1 -0
  424. package/dist/shared/terms/TermsLink.d.ts +1 -0
  425. package/dist/shared/terms/TermsLink.js +1 -0
  426. package/dist/shared/terms/index.d.ts +1 -0
  427. package/dist/shared/terms/index.js +1 -0
  428. package/dist/shared/terms/types.d.ts +43 -0
  429. package/dist/shared/ui/AdaptiveSurface/AdaptiveSurface.d.ts +52 -0
  430. package/dist/shared/ui/AdaptiveSurface/AdaptiveSurface.js +1 -0
  431. package/dist/shared/ui/AdaptiveSurface/index.d.ts +2 -0
  432. package/dist/shared/ui/AdaptiveSurface/index.js +1 -0
  433. package/dist/shared/ui/Card/Card.d.ts +12 -9
  434. package/dist/shared/ui/Card/Card.js +1 -1
  435. package/dist/shared/ui/Card/Card.styles.js +1 -1
  436. package/dist/shared/ui/Details/Details.d.ts +9 -1
  437. package/dist/shared/ui/Details/Details.styles.js +1 -1
  438. package/dist/shared/ui/Dialog/Dialog.d.ts +10 -8
  439. package/dist/shared/ui/Dialog/Dialog.js +1 -1
  440. package/dist/shared/ui/Dialog/Dialog.styles.js +1 -1
  441. package/dist/shared/ui/Drawer/Drawer.d.ts +135 -0
  442. package/dist/shared/ui/Drawer/Drawer.js +1 -0
  443. package/dist/shared/ui/Drawer/Drawer.slots.d.ts +19 -0
  444. package/dist/shared/ui/Drawer/Drawer.slots.js +1 -0
  445. package/dist/shared/ui/Drawer/Drawer.styles.js +1 -0
  446. package/dist/shared/ui/Drawer/index.d.ts +2 -0
  447. package/dist/shared/ui/Drawer/index.js +1 -0
  448. package/dist/shared/ui/Select/Select.js +1 -1
  449. package/dist/shared/ui/SelectableTile/SelectableTile.d.ts +21 -8
  450. package/dist/shared/ui/SelectableTile/SelectableTile.js +1 -1
  451. package/dist/shared/ui/Steps/Steps.d.ts +52 -0
  452. package/dist/shared/ui/Steps/Steps.js +1 -0
  453. package/dist/shared/ui/Steps/Steps.slots.d.ts +7 -0
  454. package/dist/shared/ui/Steps/Steps.slots.js +1 -0
  455. package/dist/shared/ui/Steps/Steps.styles.js +1 -0
  456. package/dist/shared/ui/Steps/index.d.ts +2 -0
  457. package/dist/shared/ui/Steps/index.js +1 -0
  458. package/dist/shared/ui/Tabs/Tabs.d.ts +79 -0
  459. package/dist/shared/ui/Tabs/Tabs.js +1 -0
  460. package/dist/shared/ui/Tabs/Tabs.slots.d.ts +11 -0
  461. package/dist/shared/ui/Tabs/Tabs.slots.js +1 -0
  462. package/dist/shared/ui/Tabs/Tabs.styles.js +1 -0
  463. package/dist/shared/ui/Tabs/index.d.ts +2 -0
  464. package/dist/shared/ui/Tabs/index.js +1 -0
  465. package/dist/shared/ui/WalletRow/WalletRow.d.ts +1 -1
  466. package/dist/shared/ui/WalletRow/WalletRow.js +1 -1
  467. package/dist/shared/ui/surfaceContext.d.ts +9 -0
  468. package/dist/shared/ui/surfaceContext.js +1 -0
  469. package/dist/shared/utils/assertNever.js +1 -0
  470. package/dist/shared/utils/logos/types.d.ts +1 -1
  471. package/dist/shared/utils/useDeepMemo.js +1 -0
  472. package/dist/shared/wallet/ConnectWalletContext.d.ts +17 -0
  473. package/dist/shared/wallet/ConnectWalletContext.js +1 -0
  474. package/dist/shared/widgets/activity/ActivityTrigger.js +1 -0
  475. package/dist/shared/widgets/activity/ActivityTrigger.styles.js +1 -0
  476. package/dist/shared/widgets/activity/adapters/settlementToWidgetProps.js +1 -0
  477. package/dist/shared/widgets/activity/compound/Activity.d.ts +95 -0
  478. package/dist/shared/widgets/activity/compound/Activity.js +1 -0
  479. package/dist/shared/widgets/activity/compound/Activity.slots.d.ts +22 -0
  480. package/dist/shared/widgets/activity/compound/Activity.slots.js +1 -0
  481. package/dist/shared/widgets/activity/compound/Activity.styles.js +1 -0
  482. package/dist/shared/widgets/activity/compound/ActivityDetail.d.ts +82 -0
  483. package/dist/shared/widgets/activity/compound/ActivityDetail.js +1 -0
  484. package/dist/shared/widgets/activity/compound/Row.slots.d.ts +21 -0
  485. package/dist/shared/widgets/activity/compound/Row.slots.js +1 -0
  486. package/dist/shared/widgets/activity/compound/Row.styles.js +1 -0
  487. package/dist/shared/widgets/activity/compound/components/ActivityHeader.d.ts +39 -0
  488. package/dist/shared/widgets/activity/compound/components/ActivityHeader.js +1 -0
  489. package/dist/shared/widgets/activity/compound/components/Empty.d.ts +15 -0
  490. package/dist/shared/widgets/activity/compound/components/Empty.js +1 -0
  491. package/dist/shared/widgets/activity/compound/components/ErrorView.d.ts +26 -0
  492. package/dist/shared/widgets/activity/compound/components/ErrorView.js +1 -0
  493. package/dist/shared/widgets/activity/compound/components/List.d.ts +23 -0
  494. package/dist/shared/widgets/activity/compound/components/List.js +1 -0
  495. package/dist/shared/widgets/activity/compound/components/Row.d.ts +51 -0
  496. package/dist/shared/widgets/activity/compound/components/Row.js +1 -0
  497. package/dist/shared/widgets/activity/compound/components/StatusPip.js +1 -0
  498. package/dist/shared/widgets/activity/compound/context.d.ts +95 -0
  499. package/dist/shared/widgets/activity/compound/context.js +1 -0
  500. package/dist/shared/widgets/activity/compound/index.d.ts +8 -0
  501. package/dist/shared/widgets/activity/compound/index.js +1 -0
  502. package/dist/shared/widgets/activity/index.js +1 -0
  503. package/dist/shared/widgets/activity/payloads.d.ts +108 -0
  504. package/dist/shared/widgets/activity/transformers/activityResponseToPayload.js +1 -0
  505. package/dist/shared/widgets/activity/transformers/resolveDirection.js +1 -0
  506. package/dist/shared/widgets/amount-entry/compound/AmountEntry.d.ts +10 -2
  507. package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
  508. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.d.ts +6 -0
  509. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.js +1 -1
  510. package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
  511. package/dist/shared/widgets/amount-entry/compound/components/Details.d.ts +34 -0
  512. package/dist/shared/widgets/amount-entry/compound/components/Details.js +1 -0
  513. package/dist/shared/widgets/amount-entry/compound/components/Footer.d.ts +2 -1
  514. package/dist/shared/widgets/amount-entry/compound/components/Footer.js +1 -1
  515. package/dist/shared/widgets/amount-entry/compound/components/Header.d.ts +6 -1
  516. package/dist/shared/widgets/amount-entry/compound/components/Header.js +1 -1
  517. package/dist/shared/widgets/amount-entry/compound/components/Hero/Hero.js +1 -1
  518. package/dist/shared/widgets/amount-entry/compound/components/Hero/SwapBackdrop.js +1 -1
  519. package/dist/shared/widgets/amount-entry/compound/components/Notice.d.ts +7 -0
  520. package/dist/shared/widgets/amount-entry/compound/components/Notice.js +1 -0
  521. package/dist/shared/widgets/amount-entry/compound/index.d.ts +1 -1
  522. package/dist/shared/widgets/amount-entry/compound/types.d.ts +63 -3
  523. package/dist/shared/widgets/asset-picker/compound/AssetPicker.d.ts +3 -0
  524. package/dist/shared/widgets/asset-picker/compound/AssetPicker.js +1 -1
  525. package/dist/shared/widgets/asset-picker/compound/AssetPicker.slots.d.ts +2 -0
  526. package/dist/shared/widgets/asset-picker/compound/AssetPicker.slots.js +1 -1
  527. package/dist/shared/widgets/asset-picker/compound/AssetPicker.styles.js +1 -1
  528. package/dist/shared/widgets/asset-picker/compound/components/Asset.d.ts +7 -1
  529. package/dist/shared/widgets/asset-picker/compound/components/Asset.js +1 -1
  530. package/dist/shared/widgets/asset-picker/compound/components/Empty.d.ts +15 -0
  531. package/dist/shared/widgets/asset-picker/compound/components/Empty.js +1 -0
  532. package/dist/shared/widgets/asset-picker/compound/components/Header.d.ts +6 -1
  533. package/dist/shared/widgets/asset-picker/compound/components/Header.js +1 -1
  534. package/dist/shared/widgets/asset-picker/compound/types.d.ts +15 -1
  535. package/dist/shared/widgets/confirm-transfer/compound/ConfirmTransfer.styles.js +1 -1
  536. package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -1
  537. package/dist/shared/widgets/confirm-transfer/compound/components/Disclaimer.d.ts +4 -3
  538. package/dist/shared/widgets/confirm-transfer/compound/components/Disclaimer.js +1 -1
  539. package/dist/shared/widgets/confirm-transfer/compound/components/QuoteTimer.js +1 -1
  540. package/dist/shared/widgets/error-state/compound/components/AssetValue.js +1 -1
  541. package/dist/shared/widgets/error-state/compound/components/HelpInfo.js +1 -1
  542. package/dist/shared/widgets/error-state/compound/components/MoreDetails.d.ts +1 -1
  543. package/dist/shared/widgets/error-state/compound/components/MoreDetails.js +1 -1
  544. package/dist/shared/widgets/error-state/compound/components/StatusValue.js +1 -1
  545. package/dist/shared/widgets/processing-state/compound/ProcessingState.d.ts +1 -5
  546. package/dist/shared/widgets/processing-state/compound/ProcessingState.js +1 -1
  547. package/dist/shared/widgets/processing-state/compound/ProcessingState.slots.d.ts +0 -1
  548. package/dist/shared/widgets/processing-state/compound/ProcessingState.slots.js +1 -1
  549. package/dist/shared/widgets/processing-state/compound/ProcessingState.styles.js +1 -1
  550. package/dist/shared/widgets/processing-state/compound/components/Details.d.ts +6 -1
  551. package/dist/shared/widgets/processing-state/compound/components/Details.js +1 -1
  552. package/dist/shared/widgets/processing-state/compound/components/Header.d.ts +4 -3
  553. package/dist/shared/widgets/processing-state/compound/components/Header.js +1 -1
  554. package/dist/shared/widgets/processing-state/compound/components/Hero.d.ts +14 -7
  555. package/dist/shared/widgets/processing-state/compound/components/Hero.js +1 -1
  556. package/dist/shared/widgets/processing-state/compound/components/Rows.js +1 -1
  557. package/dist/shared/widgets/processing-state/compound/components/StatusPill.js +1 -1
  558. package/dist/shared/widgets/processing-state/compound/components/splitAmount.js +1 -0
  559. package/dist/shared/widgets/processing-state/compound/index.d.ts +1 -1
  560. package/dist/shared/widgets/processing-state/compound/types.d.ts +11 -29
  561. package/dist/shared/widgets/success-state/compound/components/Actions.js +1 -1
  562. package/dist/shared/widgets/success-state/compound/components/AssetValue.js +1 -1
  563. package/dist/shared/widgets/success-state/compound/components/MoreDetails.d.ts +1 -1
  564. package/dist/shared/widgets/success-state/compound/components/MoreDetails.js +1 -1
  565. package/dist/shared/widgets/success-state/compound/components/RouteValue.js +1 -1
  566. package/dist/shared/widgets/success-state/compound/components/StatusPill.js +1 -1
  567. package/dist/shared/widgets/success-state/compound/types.d.ts +5 -5
  568. package/dist/storage/context.d.ts +9 -1
  569. package/dist/storage/context.js +1 -1
  570. package/dist/storage/index.d.ts +1 -1
  571. package/dist/stridge/StridgeProvider.d.ts +187 -35
  572. package/dist/stridge/StridgeProvider.js +1 -1
  573. package/dist/stridge/depositOwner.js +1 -0
  574. package/dist/stridge/optionalWagmi.js +1 -0
  575. package/dist/stridge/stubs.js +1 -1
  576. package/dist/styles/index.css +607 -12
  577. package/dist/types.d.ts +7 -5
  578. package/dist/ui/index.d.ts +9 -1
  579. package/dist/ui/index.js +1 -1
  580. package/dist/version.d.ts +10 -0
  581. package/dist/version.js +1 -0
  582. package/dist/withdraw/compound/index.d.ts +11 -8
  583. package/dist/withdraw/compound/index.js +1 -1
  584. package/dist/withdraw/dialog/index.d.ts +4 -1
  585. package/dist/withdraw/widgets/index.d.ts +7 -0
  586. package/dist/withdraw/widgets/index.js +1 -0
  587. package/package.json +31 -7
  588. package/dist/_internal/deposit/widgets/index.d.ts +0 -11
  589. package/dist/_internal/deposit/widgets/index.js +0 -1
  590. package/dist/_internal/withdraw/widgets/index.d.ts +0 -5
  591. package/dist/_internal/withdraw/widgets/index.js +0 -1
  592. package/dist/flows/withdraw/dialog/WithdrawDialogEventsContext.d.ts +0 -36
  593. package/dist/flows/withdraw/dialog/WithdrawDialogEventsContext.js +0 -1
  594. package/dist/shared/widgets/processing-state/compound/components/Actions.d.ts +0 -17
  595. package/dist/shared/widgets/processing-state/compound/components/Actions.js +0 -1
  596. package/dist/stridge/StridgeContext.d.ts +0 -29
  597. package/dist/stridge/StridgeContext.js +0 -1
@@ -66,6 +66,10 @@
66
66
  --stridge-kit-z-tooltip: 1070;
67
67
  --stridge-kit-overlay: oklch(0% 0 0 / .4);
68
68
  --stridge-kit-dialog-width: 480px;
69
+ --stridge-kit-drawer-max-inline-size: var(--stridge-kit-dialog-width);
70
+ --stridge-kit-drawer-max-block-size: calc(100% - 2rem);
71
+ --stridge-kit-drawer-handle-size: 36px;
72
+ --stridge-kit-drawer-handle-thickness: 4px;
69
73
  }
70
74
 
71
75
  :root, [data-stridge-scope] {
@@ -79,6 +83,9 @@
79
83
  --stridge-kit-card-radius: 12px;
80
84
  --stridge-kit-card-radius-frame: 16px;
81
85
  --stridge-kit-button-radius: 10px;
86
+ --stridge-kit-tabs-list-radius: 10px;
87
+ --stridge-kit-tabs-indicator-radius: 7px;
88
+ --stridge-kit-tabs-tab-padding-block: 10px;
82
89
  }
83
90
 
84
91
  [data-stridge-radius="sharp"] {
@@ -88,6 +95,8 @@
88
95
  --stridge-kit-card-radius: 0px;
89
96
  --stridge-kit-card-radius-frame: 0px;
90
97
  --stridge-kit-button-radius: 0px;
98
+ --stridge-kit-tabs-list-radius: 0px;
99
+ --stridge-kit-tabs-indicator-radius: 0px;
91
100
  --stridge-kit-radius: 0px;
92
101
  --stridge-kit-radius-xs: 0px;
93
102
  --stridge-kit-radius-sm: 0px;
@@ -104,6 +113,8 @@
104
113
  --stridge-kit-card-radius: 6px;
105
114
  --stridge-kit-card-radius-frame: 8px;
106
115
  --stridge-kit-button-radius: 6px;
116
+ --stridge-kit-tabs-list-radius: 6px;
117
+ --stridge-kit-tabs-indicator-radius: 4px;
107
118
  --stridge-kit-radius: .375rem;
108
119
  --stridge-kit-radius-xs: 2px;
109
120
  --stridge-kit-radius-sm: 4px;
@@ -120,6 +131,8 @@
120
131
  --stridge-kit-card-radius: 12px;
121
132
  --stridge-kit-card-radius-frame: 16px;
122
133
  --stridge-kit-button-radius: 10px;
134
+ --stridge-kit-tabs-list-radius: 10px;
135
+ --stridge-kit-tabs-indicator-radius: 7px;
123
136
  --stridge-kit-radius: .75rem;
124
137
  --stridge-kit-radius-xs: 6px;
125
138
  --stridge-kit-radius-sm: 8px;
@@ -136,6 +149,8 @@
136
149
  --stridge-kit-card-radius: 18px;
137
150
  --stridge-kit-card-radius-frame: 22px;
138
151
  --stridge-kit-button-radius: 9999px;
152
+ --stridge-kit-tabs-list-radius: 9999px;
153
+ --stridge-kit-tabs-indicator-radius: 9999px;
139
154
  --stridge-kit-radius: .875rem;
140
155
  --stridge-kit-radius-xs: 8px;
141
156
  --stridge-kit-radius-sm: 10px;
@@ -196,8 +211,19 @@
196
211
  --stridge-kit-card-border: oklch(29.55% .01 285.72);
197
212
  --stridge-kit-card-border-frame: oklch(27.07% .01 285.77);
198
213
  --stridge-kit-card-shadow: 0 30px 80px oklch(0% 0 0 / .6), 0 2px 6px oklch(0% 0 0 / .4);
214
+ --stridge-kit-drawer-handle-color: oklch(52.95% .01 286.13 / .55);
199
215
  --stridge-kit-skeleton-base: oklch(29.55% .01 285.72);
200
216
  --stridge-kit-skeleton-highlight: oklch(35.16% .01 285.67);
217
+ --stridge-kit-tabs-list-surface: var(--stridge-kit-card-surface-subdued);
218
+ --stridge-kit-tabs-list-border: var(--stridge-kit-border);
219
+ --stridge-kit-tabs-tab-foreground: var(--stridge-kit-muted-foreground);
220
+ --stridge-kit-tabs-tab-foreground-active: var(--stridge-kit-foreground);
221
+ --stridge-kit-tabs-tab-surface-active: var(--stridge-kit-tile-surface);
222
+ --stridge-kit-tabs-tab-border-active: var(--stridge-kit-tile-border);
223
+ --stridge-kit-tabs-indicator-accent: var(--stridge-kit-foreground);
224
+ --stridge-kit-attribution-prefix-color: oklch(62% .005 286);
225
+ --stridge-kit-attribution-mark-color: oklch(72% .005 286);
226
+ --stridge-kit-attribution-wordmark-color: oklch(76% .005 286);
201
227
  --stridge-kit-shadow-xs: 0 1px 1px 0 oklch(0% 0 0 / .125);
202
228
  --stridge-kit-shadow-sm: 0 4px 4px -1px oklch(0% 0 0 / .04), 0 1px 1px 0 oklch(0% 0 0 / .08);
203
229
  --stridge-kit-shadow-md: 0 3px 8px oklch(0% 0 0 / .125), 0 2px 5px oklch(0% 0 0 / .125), 0 1px 1px oklch(0% 0 0 / .125);
@@ -254,8 +280,19 @@
254
280
  --stridge-kit-card-border: oklch(91% 0 286);
255
281
  --stridge-kit-card-border-frame: oklch(91% 0 286);
256
282
  --stridge-kit-card-shadow: 0 30px 80px oklch(0% 0 0 / .16), 0 2px 6px oklch(0% 0 0 / .08);
283
+ --stridge-kit-drawer-handle-color: oklch(60% .01 286 / .4);
257
284
  --stridge-kit-skeleton-base: oklch(91% 0 286);
258
285
  --stridge-kit-skeleton-highlight: oklch(95% 0 286);
286
+ --stridge-kit-tabs-list-surface: var(--stridge-kit-card-surface-subdued);
287
+ --stridge-kit-tabs-list-border: var(--stridge-kit-border);
288
+ --stridge-kit-tabs-tab-foreground: var(--stridge-kit-muted-foreground);
289
+ --stridge-kit-tabs-tab-foreground-active: var(--stridge-kit-foreground);
290
+ --stridge-kit-tabs-tab-surface-active: var(--stridge-kit-tile-surface);
291
+ --stridge-kit-tabs-tab-border-active: var(--stridge-kit-tile-border);
292
+ --stridge-kit-tabs-indicator-accent: var(--stridge-kit-foreground);
293
+ --stridge-kit-attribution-prefix-color: oklch(50% .01 286);
294
+ --stridge-kit-attribution-mark-color: oklch(42% .01 286);
295
+ --stridge-kit-attribution-wordmark-color: oklch(36% .01 286);
259
296
  --stridge-kit-shadow-xs: 0 1px 2px 0 oklch(0% 0 0 / .04);
260
297
  --stridge-kit-shadow-sm: 0 1px 1px 0 oklch(0% 0 0 / .04), 0 1px 3px 0 oklch(0% 0 0 / .05);
261
298
  --stridge-kit-shadow-md: 0 6px 12px -3px oklch(0% 0 0 / .06), 0 2px 4px -1px oklch(0% 0 0 / .04);
@@ -263,6 +300,16 @@
263
300
  --stridge-kit-shadow-xl: 0 24px 56px -12px oklch(0% 0 0 / .1), 0 8px 16px -4px oklch(0% 0 0 / .06);
264
301
  }
265
302
 
303
+ [data-stridge-scope] [data-stridge-slot] {
304
+ -webkit-user-select: none;
305
+ user-select: none;
306
+ }
307
+
308
+ [data-stridge-scope] [data-stridge-slot]:is(input, textarea, [contenteditable="true"], [data-stridge-selectable]), [data-stridge-scope] :is(input, textarea, [contenteditable="true"], [data-stridge-selectable]) {
309
+ -webkit-user-select: text;
310
+ user-select: text;
311
+ }
312
+
266
313
  @stylex;
267
314
 
268
315
  @layer priority1;
@@ -378,6 +425,14 @@
378
425
  border-color: var(--stridge-kit-card-border-frame);
379
426
  }
380
427
 
428
+ .xv87bwv {
429
+ border-color: var(--stridge-kit-card-surface);
430
+ }
431
+
432
+ .x1s46ruh {
433
+ border-color: var(--stridge-kit-tabs-list-border);
434
+ }
435
+
381
436
  .xa3awxp {
382
437
  border-color: var(--stridge-kit-tile-border);
383
438
  }
@@ -386,6 +441,18 @@
386
441
  border-color: var(--stridge-kit-border);
387
442
  }
388
443
 
444
+ .x16691aj {
445
+ border-color: var(--stridge-kit-destructive);
446
+ }
447
+
448
+ .xab7lrg {
449
+ border-color: var(--stridge-kit-tabs-tab-border-active);
450
+ }
451
+
452
+ .x1l0rsgs {
453
+ border-inline-width: 1px;
454
+ }
455
+
389
456
  .x6i6fhv {
390
457
  border-radius: .375rem;
391
458
  }
@@ -398,10 +465,18 @@
398
465
  border-radius: 0;
399
466
  }
400
467
 
468
+ .x16rqkct {
469
+ border-radius: 50%;
470
+ }
471
+
401
472
  .x10hpsqq {
402
473
  border-radius: 9999px;
403
474
  }
404
475
 
476
+ .x1e6avla {
477
+ border-radius: 999px;
478
+ }
479
+
405
480
  .x1pjcqnp {
406
481
  border-radius: inherit;
407
482
  }
@@ -414,6 +489,10 @@
414
489
  border-radius: var(--stridge-kit-radius-full);
415
490
  }
416
491
 
492
+ .x1gt2vge {
493
+ border-radius: var(--stridge-kit-tabs-list-radius);
494
+ }
495
+
417
496
  .x2zroun {
418
497
  border-radius: var(--stridge-kit-radius-xs);
419
498
  }
@@ -434,6 +513,10 @@
434
513
  border-radius: var(--stridge-kit-radius-sm);
435
514
  }
436
515
 
516
+ .xfauvix {
517
+ border-radius: var(--stridge-kit-tabs-indicator-radius);
518
+ }
519
+
437
520
  .x1c2egtx {
438
521
  border-radius: var(--stridge-kit-card-radius-frame);
439
522
  }
@@ -478,6 +561,10 @@
478
561
  border-width: 2px;
479
562
  }
480
563
 
564
+ .xkz0k9k {
565
+ flex: 0 auto;
566
+ }
567
+
481
568
  .x845mor {
482
569
  flex: 1;
483
570
  }
@@ -582,10 +669,26 @@
582
669
  gap: var(--stridge-kit-space-2);
583
670
  }
584
671
 
672
+ .x10no89f {
673
+ inset-block: 0;
674
+ }
675
+
676
+ .x17y0mx6 {
677
+ inset-inline: 0;
678
+ }
679
+
680
+ .x10im51j {
681
+ margin-block: 0;
682
+ }
683
+
585
684
  .x10bka1u {
586
685
  margin-inline: 22px;
587
686
  }
588
687
 
688
+ .xvueqy4 {
689
+ margin-inline: auto;
690
+ }
691
+
589
692
  .x1mqxmvn {
590
693
  margin-inline: calc(var(--stridge-kit-space-1) * -1);
591
694
  }
@@ -634,6 +737,10 @@
634
737
  padding-block: 15px;
635
738
  }
636
739
 
740
+ .x1xn8qrt {
741
+ padding-block: 16px;
742
+ }
743
+
637
744
  .x12ulsxz {
638
745
  padding-block: 4px;
639
746
  }
@@ -650,6 +757,18 @@
650
757
  padding-block: 8px;
651
758
  }
652
759
 
760
+ .x1yowcxs {
761
+ padding-block: var(--stridge-kit-space-3);
762
+ }
763
+
764
+ .x1wjkr2j {
765
+ padding-block: var(--stridge-kit-tabs-tab-padding-block);
766
+ }
767
+
768
+ .xpuy6co {
769
+ padding-block: var(--stridge-kit-space-2);
770
+ }
771
+
653
772
  .xvpgqt4 {
654
773
  padding-inline: .625rem;
655
774
  }
@@ -690,6 +809,10 @@
690
809
  padding-inline: 6px;
691
810
  }
692
811
 
812
+ .xqsvw4s {
813
+ padding-inline: var(--stridge-kit-space-4);
814
+ }
815
+
693
816
  .x7mqn57 {
694
817
  padding-inline: var(--stridge-kit-space-1);
695
818
  }
@@ -698,6 +821,10 @@
698
821
  padding-inline: var(--stridge-kit-space-3);
699
822
  }
700
823
 
824
+ .x1ujb8i1 {
825
+ padding-inline: var(--stridge-kit-space-5);
826
+ }
827
+
701
828
  .xxztuhb {
702
829
  padding-inline: var(--stridge-kit-space-2);
703
830
  }
@@ -714,14 +841,26 @@
714
841
  border-color: var(--stridge-kit-ring);
715
842
  }
716
843
 
844
+ .x1o5aa3h:focus-visible {
845
+ border-radius: var(--stridge-kit-radius-full);
846
+ }
847
+
717
848
  .x63abuj:focus-visible {
718
849
  border-radius: var(--stridge-kit-radius-sm);
719
850
  }
720
851
 
852
+ .x1gvykhg:focus-visible {
853
+ outline: 2px solid var(--stridge-kit-ring);
854
+ }
855
+
721
856
  .x67ar3w:focus-visible {
722
857
  outline: 2px solid var(--stridge-kit-foreground);
723
858
  }
724
859
 
860
+ .x1l0eogd:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-wordmark"] {
861
+ text-decoration: underline;
862
+ }
863
+
725
864
  .xnyhjf:has( > input:focus-visible, > textarea:focus-visible) {
726
865
  border-color: var(--stridge-kit-ring);
727
866
  }
@@ -842,6 +981,10 @@
842
981
  animation-delay: 0s;
843
982
  }
844
983
 
984
+ .x1a78uxe {
985
+ animation-duration: .24s;
986
+ }
987
+
845
988
  .x4afe7t {
846
989
  animation-duration: .3s;
847
990
  }
@@ -874,6 +1017,14 @@
874
1017
  animation-duration: 1.8s;
875
1018
  }
876
1019
 
1020
+ .x1q3qbx4 {
1021
+ animation-duration: 1s;
1022
+ }
1023
+
1024
+ .x19y0sg2 {
1025
+ animation-duration: var(--stridge-kit-duration-fast);
1026
+ }
1027
+
877
1028
  .x1u6ievf {
878
1029
  animation-fill-mode: both;
879
1030
  }
@@ -894,6 +1045,14 @@
894
1045
  animation-name: x17l86xk-B;
895
1046
  }
896
1047
 
1048
+ .xqcmdr3 {
1049
+ animation-name: x18re5ia-B;
1050
+ }
1051
+
1052
+ .x1tj11xs {
1053
+ animation-name: x1deacm-B;
1054
+ }
1055
+
897
1056
  .xv305lp {
898
1057
  animation-name: x1l9pw95-B;
899
1058
  }
@@ -918,6 +1077,10 @@
918
1077
  animation-name: xdk6pkw-B;
919
1078
  }
920
1079
 
1080
+ .x11qdjwd {
1081
+ animation-name: xmr5gd0-B;
1082
+ }
1083
+
921
1084
  .x1ka1v4i {
922
1085
  animation-name: xqng64z-B;
923
1086
  }
@@ -1046,6 +1209,10 @@
1046
1209
  background-color: var(--stridge-kit-card-surface);
1047
1210
  }
1048
1211
 
1212
+ .x1fkz0ev {
1213
+ background-color: var(--stridge-kit-tabs-indicator-accent);
1214
+ }
1215
+
1049
1216
  .x136i1dt {
1050
1217
  background-color: var(--stridge-kit-border);
1051
1218
  }
@@ -1058,6 +1225,10 @@
1058
1225
  background-color: var(--stridge-kit-secondary);
1059
1226
  }
1060
1227
 
1228
+ .x1ge2e6s {
1229
+ background-color: var(--stridge-kit-tabs-tab-surface-active);
1230
+ }
1231
+
1061
1232
  .xdmxa9o {
1062
1233
  background-color: var(--stridge-kit-primary);
1063
1234
  }
@@ -1074,6 +1245,14 @@
1074
1245
  background-color: var(--stridge-kit-skeleton-base);
1075
1246
  }
1076
1247
 
1248
+ .x13y6qn8 {
1249
+ background-color: var(--stridge-kit-tabs-list-surface);
1250
+ }
1251
+
1252
+ .x1p0xf7o {
1253
+ background-color: var(--stridge-kit-drawer-handle-color);
1254
+ }
1255
+
1077
1256
  .xfhhmty {
1078
1257
  background-color: var(--stridge-kit-destructive-soft);
1079
1258
  }
@@ -1082,6 +1261,10 @@
1082
1261
  background-color: var(--stridge-kit-overlay);
1083
1262
  }
1084
1263
 
1264
+ .xvaq5cg {
1265
+ background-color: var(--stridge-kit-card);
1266
+ }
1267
+
1085
1268
  .x19u6ldj {
1086
1269
  background-color: var(--stridge-kit-background);
1087
1270
  }
@@ -1126,10 +1309,18 @@
1126
1309
  border-start-end-radius: var(--stridge-kit-radius-md);
1127
1310
  }
1128
1311
 
1312
+ .x1af6ir8 {
1313
+ border-start-end-radius: var(--stridge-kit-card-radius-frame);
1314
+ }
1315
+
1129
1316
  .x1d6sz28 {
1130
1317
  border-start-start-radius: var(--stridge-kit-radius-md);
1131
1318
  }
1132
1319
 
1320
+ .x8htq0b {
1321
+ border-start-start-radius: var(--stridge-kit-card-radius-frame);
1322
+ }
1323
+
1133
1324
  .x1gsh91t {
1134
1325
  box-shadow: 0 0 0 1.5px var(--stridge-kit-tile-surface);
1135
1326
  }
@@ -1250,6 +1441,10 @@
1250
1441
  color: var(--stridge-kit-info);
1251
1442
  }
1252
1443
 
1444
+ .x9irweu {
1445
+ color: var(--stridge-kit-attribution-mark-color);
1446
+ }
1447
+
1253
1448
  .x1vits3x {
1254
1449
  color: var(--stridge-kit-card-foreground);
1255
1450
  }
@@ -1258,6 +1453,10 @@
1258
1453
  color: var(--stridge-kit-secondary-foreground);
1259
1454
  }
1260
1455
 
1456
+ .x1nxg1fm {
1457
+ color: var(--stridge-kit-attribution-wordmark-color);
1458
+ }
1459
+
1261
1460
  .x1me39qh {
1262
1461
  color: var(--stridge-kit-primary);
1263
1462
  }
@@ -1270,6 +1469,10 @@
1270
1469
  color: var(--stridge-kit-destructive);
1271
1470
  }
1272
1471
 
1472
+ .xddgj62 {
1473
+ color: var(--stridge-kit-tabs-tab-foreground);
1474
+ }
1475
+
1273
1476
  .x137ha3m {
1274
1477
  color: var(--stridge-kit-muted-foreground-faint);
1275
1478
  }
@@ -1282,6 +1485,10 @@
1282
1485
  color: var(--stridge-kit-details-label);
1283
1486
  }
1284
1487
 
1488
+ .xd2gg92 {
1489
+ color: var(--stridge-kit-attribution-prefix-color);
1490
+ }
1491
+
1285
1492
  .x1kqivnd {
1286
1493
  color: var(--stridge-kit-tile-foreground);
1287
1494
  }
@@ -1334,6 +1541,10 @@
1334
1541
  display: block;
1335
1542
  }
1336
1543
 
1544
+ .xjp7ctv {
1545
+ display: contents;
1546
+ }
1547
+
1337
1548
  .x78zum5 {
1338
1549
  display: flex;
1339
1550
  }
@@ -1354,10 +1565,18 @@
1354
1565
  display: inline;
1355
1566
  }
1356
1567
 
1568
+ .x1s85apg {
1569
+ display: none;
1570
+ }
1571
+
1357
1572
  .x5f5z56 {
1358
1573
  field-sizing: content;
1359
1574
  }
1360
1575
 
1576
+ .x117rol3 {
1577
+ fill: currentColor;
1578
+ }
1579
+
1361
1580
  .xbh8q5q {
1362
1581
  fill: none;
1363
1582
  }
@@ -1570,6 +1789,10 @@
1570
1789
  inset-inline-start: 0;
1571
1790
  }
1572
1791
 
1792
+ .xbudbmw {
1793
+ inset-inline-start: 50%;
1794
+ }
1795
+
1573
1796
  .xc8icb0 {
1574
1797
  isolation: isolate;
1575
1798
  }
@@ -1578,6 +1801,10 @@
1578
1801
  justify-content: center;
1579
1802
  }
1580
1803
 
1804
+ .x13a6bvl {
1805
+ justify-content: flex-end;
1806
+ }
1807
+
1581
1808
  .x1nhvcw1 {
1582
1809
  justify-content: flex-start;
1583
1810
  }
@@ -1610,6 +1837,10 @@
1610
1837
  letter-spacing: .02em;
1611
1838
  }
1612
1839
 
1840
+ .x1labic3 {
1841
+ letter-spacing: .14em;
1842
+ }
1843
+
1613
1844
  .x4gjf66 {
1614
1845
  letter-spacing: inherit;
1615
1846
  }
@@ -1634,6 +1865,14 @@
1634
1865
  letter-spacing: var(--stridge-kit-tracking-widest);
1635
1866
  }
1636
1867
 
1868
+ .x14ju556 {
1869
+ line-height: 0;
1870
+ }
1871
+
1872
+ .x1u7k74 {
1873
+ line-height: 1.2;
1874
+ }
1875
+
1637
1876
  .x132q4wb {
1638
1877
  line-height: 1.25;
1639
1878
  }
@@ -1746,6 +1985,10 @@
1746
1985
  opacity: 0;
1747
1986
  }
1748
1987
 
1988
+ .x1hc1fzr {
1989
+ opacity: 1;
1990
+ }
1991
+
1749
1992
  .x1clqncf {
1750
1993
  order: -1;
1751
1994
  }
@@ -1762,6 +2005,10 @@
1762
2005
  overflow-wrap: anywhere;
1763
2006
  }
1764
2007
 
2008
+ .x2vl965 {
2009
+ padding-inline-end: 10px;
2010
+ }
2011
+
1765
2012
  .xpdmqnj {
1766
2013
  padding-inline-end: 12px;
1767
2014
  }
@@ -1786,6 +2033,10 @@
1786
2033
  padding-inline-end: 9px;
1787
2034
  }
1788
2035
 
2036
+ .xvkiva6 {
2037
+ padding-inline-end: var(--stridge-kit-space-4);
2038
+ }
2039
+
1789
2040
  .xi8f3d1 {
1790
2041
  padding-inline-end: var(--stridge-kit-space-3);
1791
2042
  }
@@ -1794,6 +2045,10 @@
1794
2045
  padding-inline-end: var(--stridge-kit-space-8);
1795
2046
  }
1796
2047
 
2048
+ .x1hvdk87 {
2049
+ padding-inline-end: var(--stridge-kit-space-5);
2050
+ }
2051
+
1797
2052
  .xzfcf9p {
1798
2053
  padding-inline-end: var(--stridge-kit-space-2);
1799
2054
  }
@@ -1818,18 +2073,34 @@
1818
2073
  padding-inline-start: 22px;
1819
2074
  }
1820
2075
 
2076
+ .x25sj25 {
2077
+ padding-inline-start: 6px;
2078
+ }
2079
+
1821
2080
  .x7coems {
1822
2081
  padding-inline-start: 9px;
1823
2082
  }
1824
2083
 
2084
+ .xiplbrm {
2085
+ padding-inline-start: var(--stridge-kit-space-4);
2086
+ }
2087
+
1825
2088
  .x1qntkwk {
1826
2089
  padding-inline-start: var(--stridge-kit-space-3);
1827
2090
  }
1828
2091
 
2092
+ .xmg6hw8 {
2093
+ padding-inline-start: var(--stridge-kit-space-5);
2094
+ }
2095
+
1829
2096
  .xpsy26f {
1830
2097
  padding-inline-start: var(--stridge-kit-space-2);
1831
2098
  }
1832
2099
 
2100
+ .x67bb7w {
2101
+ pointer-events: auto;
2102
+ }
2103
+
1833
2104
  .x47corl {
1834
2105
  pointer-events: none;
1835
2106
  }
@@ -1882,6 +2153,10 @@
1882
2153
  stroke-width: 2.2px;
1883
2154
  }
1884
2155
 
2156
+ .x1ip4yf {
2157
+ stroke-width: 2.5px;
2158
+ }
2159
+
1885
2160
  .xvlca1e {
1886
2161
  stroke-width: 2px;
1887
2162
  }
@@ -1962,6 +2237,14 @@
1962
2237
  touch-action: none;
1963
2238
  }
1964
2239
 
2240
+ .x1764fhq {
2241
+ transform-box: fill-box;
2242
+ }
2243
+
2244
+ .x1ybzjv4 {
2245
+ transform-origin: 16px 16px;
2246
+ }
2247
+
1965
2248
  .x1g0ag68 {
1966
2249
  transform-origin: center;
1967
2250
  }
@@ -1978,8 +2261,12 @@
1978
2261
  transform: rotate(90deg);
1979
2262
  }
1980
2263
 
1981
- .x3oybdh {
1982
- transform: scale(1);
2264
+ .x11lhmoz {
2265
+ transform: translate(-50%, -50%);
2266
+ }
2267
+
2268
+ .xacbhai {
2269
+ transform: translateY(var(--drawer-swipe-movement-y, 0px));
1983
2270
  }
1984
2271
 
1985
2272
  .xx6bhzk {
@@ -1998,10 +2285,18 @@
1998
2285
  transition-duration: .2s;
1999
2286
  }
2000
2287
 
2288
+ .x1szhkt1 {
2289
+ transition-duration: var(--stridge-kit-duration-normal);
2290
+ }
2291
+
2001
2292
  .x1vhb3u9 {
2002
2293
  transition-duration: var(--stridge-kit-duration-fast);
2003
2294
  }
2004
2295
 
2296
+ .x1s4mzch {
2297
+ transition-duration: var(--stridge-kit-duration-slow);
2298
+ }
2299
+
2005
2300
  .x11vqxbs {
2006
2301
  transition-property: background-color, border-color, box-shadow;
2007
2302
  }
@@ -2014,6 +2309,10 @@
2014
2309
  transition-property: background-color, border-color, color, box-shadow, transform;
2015
2310
  }
2016
2311
 
2312
+ .xgzoi8n {
2313
+ transition-property: background-color, border-color, color, box-shadow;
2314
+ }
2315
+
2017
2316
  .x1eaenvl {
2018
2317
  transition-property: background-color, border-color, color;
2019
2318
  }
@@ -2034,10 +2333,18 @@
2034
2333
  transition-property: border-color, box-shadow;
2035
2334
  }
2036
2335
 
2336
+ .xshfolx {
2337
+ transition-property: border-color;
2338
+ }
2339
+
2037
2340
  .xkdsq27 {
2038
2341
  transition-property: box-shadow;
2039
2342
  }
2040
2343
 
2344
+ .xt3l3uh {
2345
+ transition-property: color;
2346
+ }
2347
+
2041
2348
  .x1vma9ed {
2042
2349
  transition-property: font-size, width;
2043
2350
  }
@@ -2046,6 +2353,10 @@
2046
2353
  transition-property: height;
2047
2354
  }
2048
2355
 
2356
+ .x36inuq {
2357
+ transition-property: left, right, top, bottom, width, height;
2358
+ }
2359
+
2049
2360
  .x19991ni {
2050
2361
  transition-property: opacity;
2051
2362
  }
@@ -2066,6 +2377,10 @@
2066
2377
  transition-timing-function: ease-out;
2067
2378
  }
2068
2379
 
2380
+ .xr4whw6 {
2381
+ transition-timing-function: var(--stridge-kit-ease-enter);
2382
+ }
2383
+
2069
2384
  .x1xv5090 {
2070
2385
  transition-timing-function: var(--stridge-kit-ease-out);
2071
2386
  }
@@ -2111,10 +2426,6 @@
2111
2426
  will-change: height;
2112
2427
  }
2113
2428
 
2114
- .x6my1t9 {
2115
- will-change: opacity,transform;
2116
- }
2117
-
2118
2429
  .x1q1rmc8 {
2119
2430
  will-change: transform,opacity;
2120
2431
  }
@@ -2135,6 +2446,10 @@
2135
2446
  z-index: 1;
2136
2447
  }
2137
2448
 
2449
+ .x1n327nk {
2450
+ z-index: 10;
2451
+ }
2452
+
2138
2453
  .x11uqc5h {
2139
2454
  z-index: 100;
2140
2455
  }
@@ -2171,6 +2486,14 @@
2171
2486
  z-index: var(--stridge-kit-z-popover);
2172
2487
  }
2173
2488
 
2489
+ .x3ppix8:active:not(:disabled) {
2490
+ background-color: color-mix(in oklab,var(--stridge-kit-card-surface) 78%,var(--stridge-kit-foreground));
2491
+ }
2492
+
2493
+ .x16sea6d:hover:not(:disabled) {
2494
+ background-color: color-mix(in oklab,var(--stridge-kit-card-surface) 89%,var(--stridge-kit-foreground));
2495
+ }
2496
+
2174
2497
  .x3celgi:active:not(:disabled) {
2175
2498
  background-color: color-mix(in oklab,var(--stridge-kit-surface-hover) 70%,var(--stridge-kit-foreground));
2176
2499
  }
@@ -2219,6 +2542,18 @@
2219
2542
  box-shadow: var(--stridge-kit-shadow-ring-focus);
2220
2543
  }
2221
2544
 
2545
+ .x1perupi:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-mark"] {
2546
+ color: color-mix(in oklab,var(--stridge-kit-attribution-mark-color) 78%,var(--stridge-kit-foreground));
2547
+ }
2548
+
2549
+ .x19k0ldo:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-wordmark"] {
2550
+ color: color-mix(in oklab,var(--stridge-kit-attribution-wordmark-color) 78%,var(--stridge-kit-foreground));
2551
+ }
2552
+
2553
+ .x1wa2jhk:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-prefix"] {
2554
+ color: color-mix(in oklab,var(--stridge-kit-attribution-prefix-color) 78%,var(--stridge-kit-foreground));
2555
+ }
2556
+
2222
2557
  .x111phvh:active:not(:disabled), .x70x1a4:hover:not(:disabled) {
2223
2558
  color: var(--stridge-kit-foreground);
2224
2559
  }
@@ -2227,6 +2562,10 @@
2227
2562
  color: var(--stridge-kit-muted-foreground);
2228
2563
  }
2229
2564
 
2565
+ .x1i2unn7:is([data-starting-style], [data-ending-style]) {
2566
+ opacity: 0;
2567
+ }
2568
+
2230
2569
  .x11ayl2i:focus-visible {
2231
2570
  outline-color: var(--stridge-kit-ring);
2232
2571
  }
@@ -2247,6 +2586,14 @@
2247
2586
  outline-width: 2px;
2248
2587
  }
2249
2588
 
2589
+ .x1diuls0:is(a:hover, a:focus-visible) [data-stridge-slot~="attribution-wordmark"] {
2590
+ text-underline-offset: 2px;
2591
+ }
2592
+
2593
+ .xjvuu2i:is([data-starting-style], [data-ending-style]) {
2594
+ transform: translateY(100%);
2595
+ }
2596
+
2250
2597
  .x1yi73pz:has( > input:focus-visible, > textarea:focus-visible) {
2251
2598
  box-shadow: var(--stridge-kit-shadow-ring-focus);
2252
2599
  }
@@ -2307,6 +2654,10 @@
2307
2654
  background-color: color-mix(in oklab,var(--stridge-kit-destructive) 80%,var(--stridge-kit-foreground));
2308
2655
  }
2309
2656
 
2657
+ .xyv6lf4:hover {
2658
+ background-color: color-mix(in oklab,var(--stridge-kit-tabs-list-surface) 50%,transparent);
2659
+ }
2660
+
2310
2661
  .x1ehxjrm:hover {
2311
2662
  background-color: color-mix(in oklab,var(--stridge-kit-destructive-soft) 86%,var(--stridge-kit-foreground));
2312
2663
  }
@@ -2327,6 +2678,10 @@
2327
2678
  color: var(--stridge-kit-muted-foreground);
2328
2679
  }
2329
2680
 
2681
+ .xbs6d1p:hover {
2682
+ color: var(--stridge-kit-tabs-tab-foreground-active);
2683
+ }
2684
+
2330
2685
  .x1mzqehw:hover {
2331
2686
  opacity: .6;
2332
2687
  }
@@ -2380,6 +2735,10 @@
2380
2735
  animation-duration: 0s;
2381
2736
  }
2382
2737
 
2738
+ .x80wavc.x80wavc {
2739
+ animation-duration: 3.5s;
2740
+ }
2741
+
2383
2742
  .x1aquc0h.x1aquc0h {
2384
2743
  animation-name: none;
2385
2744
  }
@@ -2387,6 +2746,10 @@
2387
2746
  .x12w9bfk.x12w9bfk {
2388
2747
  transition-duration: 0s;
2389
2748
  }
2749
+
2750
+ .x4wkmsb.x4wkmsb {
2751
+ transition-property: none;
2752
+ }
2390
2753
  }
2391
2754
 
2392
2755
  @container field-group (width >= 32rem) {
@@ -2451,6 +2814,10 @@
2451
2814
  border-top-color: var(--stridge-kit-card-border);
2452
2815
  }
2453
2816
 
2817
+ .x19bq4ie {
2818
+ border-top-color: var(--stridge-kit-details-border);
2819
+ }
2820
+
2454
2821
  .x1wc9ssx {
2455
2822
  border-top-color: var(--stridge-kit-card-border-frame);
2456
2823
  }
@@ -2511,6 +2878,10 @@
2511
2878
  height: 14px;
2512
2879
  }
2513
2880
 
2881
+ .x1ymw6g {
2882
+ height: 160px;
2883
+ }
2884
+
2514
2885
  .xlup9mm {
2515
2886
  height: 16px;
2516
2887
  }
@@ -2535,6 +2906,14 @@
2535
2906
  height: 200px;
2536
2907
  }
2537
2908
 
2909
+ .x1qx5ct2 {
2910
+ height: 20px;
2911
+ }
2912
+
2913
+ .x17rw0jw {
2914
+ height: 22px;
2915
+ }
2916
+
2538
2917
  .xxk0z11 {
2539
2918
  height: 24px;
2540
2919
  }
@@ -2551,6 +2930,10 @@
2551
2930
  height: 36px;
2552
2931
  }
2553
2932
 
2933
+ .xn3w4p2 {
2934
+ height: 44px;
2935
+ }
2936
+
2554
2937
  .xwvwv9b {
2555
2938
  height: 46px;
2556
2939
  }
@@ -2559,6 +2942,10 @@
2559
2942
  height: 64px;
2560
2943
  }
2561
2944
 
2945
+ .xdk7pt {
2946
+ height: 8px;
2947
+ }
2948
+
2562
2949
  .xegnrdp {
2563
2950
  height: 9px;
2564
2951
  }
@@ -2571,10 +2958,18 @@
2571
2958
  height: fit-content;
2572
2959
  }
2573
2960
 
2961
+ .x1gezbiy {
2962
+ height: var(--active-tab-height);
2963
+ }
2964
+
2574
2965
  .xuan8c8 {
2575
2966
  height: var(--collapsible-panel-height);
2576
2967
  }
2577
2968
 
2969
+ .xl3s093 {
2970
+ height: var(--stridge-kit-drawer-handle-thickness);
2971
+ }
2972
+
2578
2973
  .x1nrll8i {
2579
2974
  left: 50%;
2580
2975
  }
@@ -2583,6 +2978,10 @@
2583
2978
  left: auto;
2584
2979
  }
2585
2980
 
2981
+ .xvbikie {
2982
+ left: var(--active-tab-left);
2983
+ }
2984
+
2586
2985
  .xat24cr {
2587
2986
  margin-bottom: 0;
2588
2987
  }
@@ -2679,10 +3078,18 @@
2679
3078
  max-height: calc(100% - 2rem);
2680
3079
  }
2681
3080
 
3081
+ .x17geuhg {
3082
+ max-height: min(60vh, 500px);
3083
+ }
3084
+
2682
3085
  .x1ko6lg0 {
2683
3086
  max-height: min(var(--available-height),200px);
2684
3087
  }
2685
3088
 
3089
+ .x96tae4 {
3090
+ max-height: var(--stridge-kit-drawer-max-block-size);
3091
+ }
3092
+
2686
3093
  .x193iq5w {
2687
3094
  max-width: 100%;
2688
3095
  }
@@ -2707,6 +3114,10 @@
2707
3114
  max-width: min(var(--stridge-kit-dialog-width),calc(100% - 2rem));
2708
3115
  }
2709
3116
 
3117
+ .x1qvtwti {
3118
+ max-width: var(--stridge-kit-drawer-max-inline-size);
3119
+ }
3120
+
2710
3121
  .x2lwn1j {
2711
3122
  min-height: 0;
2712
3123
  }
@@ -2735,6 +3146,10 @@
2735
3146
  min-height: 32px;
2736
3147
  }
2737
3148
 
3149
+ .x1dby22o {
3150
+ min-height: 360px;
3151
+ }
3152
+
2738
3153
  .x1ba4aug {
2739
3154
  min-height: 40px;
2740
3155
  }
@@ -2767,10 +3182,6 @@
2767
3182
  overflow-y: auto;
2768
3183
  }
2769
3184
 
2770
- .x1rife3k {
2771
- overflow-y: scroll;
2772
- }
2773
-
2774
3185
  .xnw97ix {
2775
3186
  padding-bottom: .125rem;
2776
3187
  }
@@ -2819,10 +3230,18 @@
2819
3230
  padding-bottom: var(--stridge-kit-space-3);
2820
3231
  }
2821
3232
 
3233
+ .xpnfv0q {
3234
+ padding-bottom: var(--stridge-kit-space-5);
3235
+ }
3236
+
2822
3237
  .x1ww8orz {
2823
3238
  padding-bottom: var(--stridge-kit-space-2);
2824
3239
  }
2825
3240
 
3241
+ .x1ej8hiu {
3242
+ padding-bottom: var(--stridge-kit-space-10);
3243
+ }
3244
+
2826
3245
  .xrhwvvd {
2827
3246
  padding-top: .125rem;
2828
3247
  }
@@ -2887,6 +3306,10 @@
2887
3306
  padding-top: 9px;
2888
3307
  }
2889
3308
 
3309
+ .xtgch2x {
3310
+ padding-top: var(--stridge-kit-space-6);
3311
+ }
3312
+
2890
3313
  .x1h03h88 {
2891
3314
  padding-top: var(--stridge-kit-space-4);
2892
3315
  }
@@ -2899,10 +3322,18 @@
2899
3322
  padding-top: var(--stridge-kit-space-3);
2900
3323
  }
2901
3324
 
3325
+ .x4xct4k {
3326
+ padding-top: var(--stridge-kit-space-5);
3327
+ }
3328
+
2902
3329
  .x2tg1xt {
2903
3330
  padding-top: var(--stridge-kit-space-2);
2904
3331
  }
2905
3332
 
3333
+ .x1saie51 {
3334
+ padding-top: var(--stridge-kit-space-10);
3335
+ }
3336
+
2906
3337
  .x13vifvy {
2907
3338
  top: 0;
2908
3339
  }
@@ -2911,6 +3342,14 @@
2911
3342
  top: 14px;
2912
3343
  }
2913
3344
 
3345
+ .xwa60dl {
3346
+ top: 50%;
3347
+ }
3348
+
3349
+ .x10uur0e {
3350
+ top: var(--active-tab-top);
3351
+ }
3352
+
2914
3353
  .xh8yej3 {
2915
3354
  width: 100%;
2916
3355
  }
@@ -2935,10 +3374,18 @@
2935
3374
  width: 14px;
2936
3375
  }
2937
3376
 
3377
+ .xq1dxzn {
3378
+ width: 160px;
3379
+ }
3380
+
2938
3381
  .x1kky2od {
2939
3382
  width: 16px;
2940
3383
  }
2941
3384
 
3385
+ .x1xp8n7a {
3386
+ width: 18px;
3387
+ }
3388
+
2942
3389
  .x1so1ns2 {
2943
3390
  width: 192px;
2944
3391
  }
@@ -2947,10 +3394,18 @@
2947
3394
  width: 1em;
2948
3395
  }
2949
3396
 
3397
+ .xw4jnvo {
3398
+ width: 20px;
3399
+ }
3400
+
2950
3401
  .x16grhtn {
2951
3402
  width: 220px;
2952
3403
  }
2953
3404
 
3405
+ .x17z2i9w {
3406
+ width: 22px;
3407
+ }
3408
+
2954
3409
  .xgd8bvy {
2955
3410
  width: 28px;
2956
3411
  }
@@ -2967,10 +3422,26 @@
2967
3422
  width: 36px;
2968
3423
  }
2969
3424
 
3425
+ .x187nhsf {
3426
+ width: 44px;
3427
+ }
3428
+
3429
+ .x1bu4hv2 {
3430
+ width: 5ch;
3431
+ }
3432
+
2970
3433
  .x1fu8urw {
2971
3434
  width: 64px;
2972
3435
  }
2973
3436
 
3437
+ .xig3uv9 {
3438
+ width: 6ch;
3439
+ }
3440
+
3441
+ .x1xc55vz {
3442
+ width: 8px;
3443
+ }
3444
+
2974
3445
  .xfxxnmn {
2975
3446
  width: calc(100% - 28px);
2976
3447
  }
@@ -2983,6 +3454,22 @@
2983
3454
  width: max-content;
2984
3455
  }
2985
3456
 
3457
+ .xoffw1 {
3458
+ width: var(--active-tab-width);
3459
+ }
3460
+
3461
+ .x19k59d4 {
3462
+ width: var(--stridge-kit-drawer-handle-size);
3463
+ }
3464
+
3465
+ .x1et6zyk.x1et6zyk:where([dir="rtl"]) :scope {
3466
+ left: auto;
3467
+ }
3468
+
3469
+ .xdvm21q.xdvm21q:where([dir="rtl"]) :scope {
3470
+ right: var(--active-tab-right);
3471
+ }
3472
+
2986
3473
  .x1g31smg:first-child {
2987
3474
  border-top-width: 0;
2988
3475
  }
@@ -3043,6 +3530,10 @@
3043
3530
  }
3044
3531
 
3045
3532
  @layer priority6 {
3533
+ .x7kzco9[data-active] {
3534
+ border-color: var(--stridge-kit-foreground);
3535
+ }
3536
+
3046
3537
  .x13rkwjk[aria-invalid="true"][data-popup-open], .x1e0f7l1[aria-invalid="true"], .xu6psuv[aria-invalid="true"]:focus-visible {
3047
3538
  border-color: var(--stridge-kit-destructive-border);
3048
3539
  }
@@ -3105,10 +3596,18 @@
3105
3596
  animation-timing-function: var(--stridge-kit-ease-exit);
3106
3597
  }
3107
3598
 
3599
+ .xthri8c[data-active], .xynnxzo[data-disabled] {
3600
+ background-color: #0000;
3601
+ }
3602
+
3108
3603
  .xevhoj0[data-highlighted] {
3109
3604
  background-color: var(--stridge-kit-tile-surface);
3110
3605
  }
3111
3606
 
3607
+ .x1anawn6[data-active] {
3608
+ background-color: var(--stridge-kit-foreground);
3609
+ }
3610
+
3112
3611
  .x9oo2q2[aria-expanded="true"] {
3113
3612
  background-color: var(--stridge-kit-muted);
3114
3613
  }
@@ -3133,18 +3632,42 @@
3133
3632
  color: var(--stridge-kit-destructive);
3134
3633
  }
3135
3634
 
3635
+ .xctydo3[data-disabled] {
3636
+ color: var(--stridge-kit-tabs-tab-foreground);
3637
+ }
3638
+
3136
3639
  .x163giyb[data-highlighted] {
3137
3640
  color: var(--stridge-kit-popover-foreground);
3138
3641
  }
3139
3642
 
3643
+ .xqclgz3[data-active] {
3644
+ color: var(--stridge-kit-tabs-tab-foreground-active);
3645
+ }
3646
+
3647
+ .xuz9cdh[data-active] {
3648
+ color: var(--stridge-kit-background);
3649
+ }
3650
+
3651
+ .x1j1ks5o[data-disabled] {
3652
+ cursor: not-allowed;
3653
+ }
3654
+
3140
3655
  .xzuuoaq[hidden]:not([hidden="until-found"]) {
3141
3656
  display: none;
3142
3657
  }
3143
3658
 
3144
- .xrvs7vr[data-orientation="horizontal"] {
3659
+ .x1nquej0[data-orientation="vertical"], .xrvs7vr[data-orientation="horizontal"] {
3145
3660
  flex-direction: column;
3146
3661
  }
3147
3662
 
3663
+ .xlpxku1[data-orientation="vertical"] {
3664
+ flex-direction: row;
3665
+ }
3666
+
3667
+ .x1xpet1t[data-active] {
3668
+ font-weight: var(--stridge-kit-font-weight-semibold);
3669
+ }
3670
+
3148
3671
  .x118mprz[data-side="inline-start"] {
3149
3672
  inset-inline-end: -13px;
3150
3673
  }
@@ -3161,6 +3684,10 @@
3161
3684
  inset-inline-start: 0;
3162
3685
  }
3163
3686
 
3687
+ .x1sydc4h[data-orientation="vertical"] {
3688
+ justify-content: flex-start;
3689
+ }
3690
+
3164
3691
  .x11xjgb3[data-disabled] {
3165
3692
  opacity: .45;
3166
3693
  }
@@ -3197,6 +3724,10 @@
3197
3724
  transform: rotate(90deg);
3198
3725
  }
3199
3726
 
3727
+ .xsqp3co[data-swiping] {
3728
+ transition-duration: 0s;
3729
+ }
3730
+
3200
3731
  @media (prefers-reduced-motion: reduce) {
3201
3732
  .xgx5xwo.xgx5xwo[data-closed], .xslpr3k.xslpr3k[data-open] {
3202
3733
  animation-duration: 0s;
@@ -3225,6 +3756,10 @@
3225
3756
  flex: 1;
3226
3757
  }
3227
3758
 
3759
+ .x1nzntce[data-orientation="horizontal"] {
3760
+ height: .125rem;
3761
+ }
3762
+
3228
3763
  .x12wejat[data-ending-style], .x1fe7yth[data-starting-style] {
3229
3764
  height: 0;
3230
3765
  }
@@ -3233,6 +3768,14 @@
3233
3768
  height: 100%;
3234
3769
  }
3235
3770
 
3771
+ .x6demw2[data-orientation="vertical"] {
3772
+ height: calc(var(--active-tab-height) * .8);
3773
+ }
3774
+
3775
+ .x1smgklz[data-orientation="vertical"] {
3776
+ height: fit-content;
3777
+ }
3778
+
3236
3779
  .x1thhcpk[data-orientation="horizontal"] {
3237
3780
  height: var(--stridge-kit-space-3);
3238
3781
  }
@@ -3241,6 +3784,10 @@
3241
3784
  left: -13px;
3242
3785
  }
3243
3786
 
3787
+ .x1fhtaip[data-orientation="vertical"] {
3788
+ left: 0;
3789
+ }
3790
+
3244
3791
  .x1f3sk1h[data-side="left"] {
3245
3792
  right: -13px;
3246
3793
  }
@@ -3257,13 +3804,29 @@
3257
3804
  top: 100%;
3258
3805
  }
3259
3806
 
3260
- .x90yeee[data-orientation="horizontal"] {
3807
+ .xfdi2ae[data-orientation="vertical"] {
3808
+ top: calc(var(--active-tab-top) + var(--active-tab-height) * .1);
3809
+ }
3810
+
3811
+ .x13i9a9u[data-orientation="vertical"] {
3812
+ width: .125rem;
3813
+ }
3814
+
3815
+ .x1nvwyg1[data-orientation="vertical"], .x90yeee[data-orientation="horizontal"] {
3261
3816
  width: 100%;
3262
3817
  }
3263
3818
 
3264
3819
  .xr4lo6p[data-orientation="vertical"] {
3265
3820
  width: var(--stridge-kit-space-3);
3266
3821
  }
3822
+
3823
+ .xqse6zn.xqse6zn:where([dir="rtl"]) :scope[data-orientation="vertical"] {
3824
+ left: auto;
3825
+ }
3826
+
3827
+ .x1ef44r0.x1ef44r0:where([dir="rtl"]) :scope[data-orientation="vertical"] {
3828
+ right: 0;
3829
+ }
3267
3830
  }
3268
3831
 
3269
3832
  @layer priority9 {
@@ -3396,6 +3959,26 @@
3396
3959
  }
3397
3960
  }
3398
3961
 
3962
+ @keyframes x18re5ia-B {
3963
+ from {
3964
+ opacity: 0;
3965
+ }
3966
+
3967
+ to {
3968
+ opacity: 1;
3969
+ }
3970
+ }
3971
+
3972
+ @keyframes xmr5gd0-B {
3973
+ 0%, 80%, 100% {
3974
+ opacity: 0;
3975
+ }
3976
+
3977
+ 40% {
3978
+ opacity: 1;
3979
+ }
3980
+ }
3981
+
3399
3982
  @keyframes x1k48ry3-B {
3400
3983
  from {
3401
3984
  opacity: 0;
@@ -3408,6 +3991,18 @@
3408
3991
  }
3409
3992
  }
3410
3993
 
3994
+ @keyframes x1deacm-B {
3995
+ 0% {
3996
+ opacity: 0;
3997
+ transform: translateY(2px);
3998
+ }
3999
+
4000
+ 100% {
4001
+ opacity: 1;
4002
+ transform: translateY(0);
4003
+ }
4004
+ }
4005
+
3411
4006
  @keyframes x1l9pw95-B {
3412
4007
  0% {
3413
4008
  opacity: 0;