@stridge/kit 0.1.0-alpha.55 → 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 (158) 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/emit/useDepositEmissions.js +1 -1
  11. package/dist/flows/deposit/bindings/DepositBindings.d.ts +87 -0
  12. package/dist/flows/deposit/bindings/DepositBindings.js +1 -0
  13. package/dist/flows/deposit/bindings/index.d.ts +1 -0
  14. package/dist/flows/deposit/bindings/index.js +1 -0
  15. package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
  16. package/dist/flows/deposit/driver/payloads.d.ts +35 -1
  17. package/dist/flows/deposit/driver/types.d.ts +10 -1
  18. package/dist/flows/deposit/orchestrator/controller.js +1 -1
  19. package/dist/flows/deposit/orchestrator/index.d.ts +5 -0
  20. package/dist/flows/deposit/orchestrator/reducer.d.ts +1 -0
  21. package/dist/flows/deposit/orchestrator/reducer.js +1 -1
  22. package/dist/flows/deposit/orchestrator/types.d.ts +107 -2
  23. package/dist/flows/deposit/orchestrator/useDeposit.js +1 -1
  24. package/dist/flows/deposit/shared/cash.d.ts +20 -0
  25. package/dist/flows/deposit/shared/cash.js +1 -0
  26. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.d.ts +1 -1
  27. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -1
  28. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.d.ts +71 -0
  29. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.js +1 -0
  30. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.d.ts +69 -0
  31. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.js +1 -0
  32. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.d.ts +16 -0
  33. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.js +1 -0
  34. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.styles.js +1 -0
  35. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.d.ts +13 -0
  36. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.js +1 -0
  37. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.d.ts +18 -0
  38. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.js +1 -0
  39. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.d.ts +14 -0
  40. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.js +1 -0
  41. package/dist/flows/deposit/widgets/cash-amount-entry/compound/context.js +1 -0
  42. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.d.ts +3 -0
  43. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.js +1 -0
  44. package/dist/flows/deposit/widgets/cash-amount-entry/compound/types.d.ts +42 -0
  45. package/dist/flows/deposit/widgets/cash-amount-entry/index.d.ts +1 -0
  46. package/dist/flows/deposit/widgets/cash-amount-entry/index.js +1 -0
  47. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.d.ts +63 -0
  48. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.js +1 -0
  49. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.d.ts +54 -0
  50. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.js +1 -0
  51. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.d.ts +33 -0
  52. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.js +1 -0
  53. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.styles.js +1 -0
  54. package/dist/flows/deposit/widgets/cash-confirm/compound/cashConfirmDimensions.js +1 -0
  55. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.d.ts +15 -0
  56. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.js +1 -0
  57. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.d.ts +22 -0
  58. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.js +1 -0
  59. package/dist/flows/deposit/widgets/cash-confirm/compound/components/BodyLabel.js +1 -0
  60. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.d.ts +16 -0
  61. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.js +1 -0
  62. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.icons.js +1 -0
  63. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.js +1 -0
  64. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.keys.js +1 -0
  65. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.state.js +1 -0
  66. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.styles.js +1 -0
  67. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.d.ts +16 -0
  68. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.js +1 -0
  69. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.d.ts +21 -0
  70. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.js +1 -0
  71. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.d.ts +17 -0
  72. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.js +1 -0
  73. package/dist/flows/deposit/widgets/cash-confirm/compound/components/cardFormat.js +1 -0
  74. package/dist/flows/deposit/widgets/cash-confirm/compound/context.js +1 -0
  75. package/dist/flows/deposit/widgets/cash-confirm/compound/index.d.ts +3 -0
  76. package/dist/flows/deposit/widgets/cash-confirm/compound/index.js +1 -0
  77. package/dist/flows/deposit/widgets/cash-confirm/compound/types.d.ts +66 -0
  78. package/dist/flows/deposit/widgets/cash-confirm/index.d.ts +1 -0
  79. package/dist/flows/deposit/widgets/cash-confirm/index.js +1 -0
  80. package/dist/flows/deposit/widgets/cash-confirm/mocks.js +1 -0
  81. package/dist/flows/deposit/widgets/deposit/Deposit.d.ts +6 -0
  82. package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
  83. package/dist/flows/deposit/widgets/deposit/compound/Deposit.d.ts +26 -1
  84. package/dist/flows/deposit/widgets/deposit/compound/Deposit.js +1 -1
  85. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.d.ts +6 -0
  86. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.js +1 -1
  87. package/dist/flows/deposit/widgets/deposit/compound/Deposit.styles.js +1 -1
  88. package/dist/flows/deposit/widgets/deposit/compound/components/Guards.js +1 -1
  89. package/dist/flows/deposit/widgets/deposit/compound/components/Method.d.ts +1 -0
  90. package/dist/flows/deposit/widgets/deposit/compound/components/Method.js +1 -1
  91. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.d.ts +40 -0
  92. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.js +1 -0
  93. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.d.ts +16 -9
  94. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.js +1 -1
  95. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.d.ts +18 -0
  96. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.js +1 -0
  97. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.d.ts +43 -0
  98. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.js +1 -0
  99. package/dist/flows/deposit/widgets/deposit/compound/index.d.ts +1 -1
  100. package/dist/flows/deposit/widgets/deposit/compound/types.d.ts +100 -1
  101. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.js +1 -1
  102. package/dist/flows/withdraw/orchestrator/reducer.js +1 -1
  103. package/dist/i18n/locales/ar.js +1 -1
  104. package/dist/i18n/locales/es.js +1 -1
  105. package/dist/i18n/locales/source-keys.d.ts +1 -1
  106. package/dist/icons/index.d.ts +10 -1
  107. package/dist/icons/index.js +1 -1
  108. package/dist/index.d.ts +7 -5
  109. package/dist/index.js +1 -1
  110. package/dist/package.js +1 -1
  111. package/dist/shared/icons/AmexIcon.d.ts +14 -0
  112. package/dist/shared/icons/AmexIcon.js +1 -0
  113. package/dist/shared/icons/ApplePayIcon.d.ts +15 -0
  114. package/dist/shared/icons/ApplePayIcon.js +1 -0
  115. package/dist/shared/icons/BitcoinIcon.d.ts +17 -0
  116. package/dist/shared/icons/BitcoinIcon.js +1 -0
  117. package/dist/shared/icons/CardIcon.d.ts +16 -0
  118. package/dist/shared/icons/CardIcon.js +1 -0
  119. package/dist/shared/icons/CashIcon.d.ts +16 -0
  120. package/dist/shared/icons/CashIcon.js +1 -0
  121. package/dist/shared/icons/DiscoverIcon.d.ts +14 -0
  122. package/dist/shared/icons/DiscoverIcon.js +1 -0
  123. package/dist/shared/icons/GooglePayIcon.d.ts +15 -0
  124. package/dist/shared/icons/GooglePayIcon.js +1 -0
  125. package/dist/shared/icons/MastercardIcon.d.ts +16 -0
  126. package/dist/shared/icons/MastercardIcon.js +1 -0
  127. package/dist/shared/icons/VisaIcon.d.ts +15 -0
  128. package/dist/shared/icons/VisaIcon.js +1 -0
  129. package/dist/shared/ui/Tabs/Tabs.d.ts +79 -0
  130. package/dist/shared/ui/Tabs/Tabs.js +1 -0
  131. package/dist/shared/ui/Tabs/Tabs.slots.d.ts +11 -0
  132. package/dist/shared/ui/Tabs/Tabs.slots.js +1 -0
  133. package/dist/shared/ui/Tabs/Tabs.styles.js +1 -0
  134. package/dist/shared/ui/Tabs/index.d.ts +2 -0
  135. package/dist/shared/ui/Tabs/index.js +1 -0
  136. package/dist/shared/utils/assertNever.js +1 -0
  137. package/dist/shared/widgets/amount-entry/compound/AmountEntry.d.ts +7 -2
  138. package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
  139. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.d.ts +5 -0
  140. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.js +1 -1
  141. package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
  142. package/dist/shared/widgets/amount-entry/compound/components/Details.d.ts +34 -0
  143. package/dist/shared/widgets/amount-entry/compound/components/Details.js +1 -0
  144. package/dist/shared/widgets/amount-entry/compound/components/Footer.d.ts +2 -1
  145. package/dist/shared/widgets/amount-entry/compound/components/Footer.js +1 -1
  146. package/dist/shared/widgets/amount-entry/compound/index.d.ts +1 -1
  147. package/dist/shared/widgets/amount-entry/compound/types.d.ts +37 -1
  148. package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -1
  149. package/dist/storage/context.d.ts +9 -1
  150. package/dist/storage/context.js +1 -1
  151. package/dist/storage/index.d.ts +1 -1
  152. package/dist/stridge/stubs.js +1 -1
  153. package/dist/styles/index.css +275 -2
  154. package/dist/types.d.ts +3 -3
  155. package/dist/ui/index.d.ts +3 -1
  156. package/dist/ui/index.js +1 -1
  157. package/dist/withdraw/compound/index.d.ts +2 -2
  158. package/package.json +3 -3
@@ -83,6 +83,9 @@
83
83
  --stridge-kit-card-radius: 12px;
84
84
  --stridge-kit-card-radius-frame: 16px;
85
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;
86
89
  }
87
90
 
88
91
  [data-stridge-radius="sharp"] {
@@ -92,6 +95,8 @@
92
95
  --stridge-kit-card-radius: 0px;
93
96
  --stridge-kit-card-radius-frame: 0px;
94
97
  --stridge-kit-button-radius: 0px;
98
+ --stridge-kit-tabs-list-radius: 0px;
99
+ --stridge-kit-tabs-indicator-radius: 0px;
95
100
  --stridge-kit-radius: 0px;
96
101
  --stridge-kit-radius-xs: 0px;
97
102
  --stridge-kit-radius-sm: 0px;
@@ -108,6 +113,8 @@
108
113
  --stridge-kit-card-radius: 6px;
109
114
  --stridge-kit-card-radius-frame: 8px;
110
115
  --stridge-kit-button-radius: 6px;
116
+ --stridge-kit-tabs-list-radius: 6px;
117
+ --stridge-kit-tabs-indicator-radius: 4px;
111
118
  --stridge-kit-radius: .375rem;
112
119
  --stridge-kit-radius-xs: 2px;
113
120
  --stridge-kit-radius-sm: 4px;
@@ -124,6 +131,8 @@
124
131
  --stridge-kit-card-radius: 12px;
125
132
  --stridge-kit-card-radius-frame: 16px;
126
133
  --stridge-kit-button-radius: 10px;
134
+ --stridge-kit-tabs-list-radius: 10px;
135
+ --stridge-kit-tabs-indicator-radius: 7px;
127
136
  --stridge-kit-radius: .75rem;
128
137
  --stridge-kit-radius-xs: 6px;
129
138
  --stridge-kit-radius-sm: 8px;
@@ -140,6 +149,8 @@
140
149
  --stridge-kit-card-radius: 18px;
141
150
  --stridge-kit-card-radius-frame: 22px;
142
151
  --stridge-kit-button-radius: 9999px;
152
+ --stridge-kit-tabs-list-radius: 9999px;
153
+ --stridge-kit-tabs-indicator-radius: 9999px;
143
154
  --stridge-kit-radius: .875rem;
144
155
  --stridge-kit-radius-xs: 8px;
145
156
  --stridge-kit-radius-sm: 10px;
@@ -203,6 +214,13 @@
203
214
  --stridge-kit-drawer-handle-color: oklch(52.95% .01 286.13 / .55);
204
215
  --stridge-kit-skeleton-base: oklch(29.55% .01 285.72);
205
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);
206
224
  --stridge-kit-attribution-prefix-color: oklch(62% .005 286);
207
225
  --stridge-kit-attribution-mark-color: oklch(72% .005 286);
208
226
  --stridge-kit-attribution-wordmark-color: oklch(76% .005 286);
@@ -265,6 +283,13 @@
265
283
  --stridge-kit-drawer-handle-color: oklch(60% .01 286 / .4);
266
284
  --stridge-kit-skeleton-base: oklch(91% 0 286);
267
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);
268
293
  --stridge-kit-attribution-prefix-color: oklch(50% .01 286);
269
294
  --stridge-kit-attribution-mark-color: oklch(42% .01 286);
270
295
  --stridge-kit-attribution-wordmark-color: oklch(36% .01 286);
@@ -404,6 +429,10 @@
404
429
  border-color: var(--stridge-kit-card-surface);
405
430
  }
406
431
 
432
+ .x1s46ruh {
433
+ border-color: var(--stridge-kit-tabs-list-border);
434
+ }
435
+
407
436
  .xa3awxp {
408
437
  border-color: var(--stridge-kit-tile-border);
409
438
  }
@@ -412,6 +441,14 @@
412
441
  border-color: var(--stridge-kit-border);
413
442
  }
414
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
+
415
452
  .x1l0rsgs {
416
453
  border-inline-width: 1px;
417
454
  }
@@ -452,6 +489,10 @@
452
489
  border-radius: var(--stridge-kit-radius-full);
453
490
  }
454
491
 
492
+ .x1gt2vge {
493
+ border-radius: var(--stridge-kit-tabs-list-radius);
494
+ }
495
+
455
496
  .x2zroun {
456
497
  border-radius: var(--stridge-kit-radius-xs);
457
498
  }
@@ -472,6 +513,10 @@
472
513
  border-radius: var(--stridge-kit-radius-sm);
473
514
  }
474
515
 
516
+ .xfauvix {
517
+ border-radius: var(--stridge-kit-tabs-indicator-radius);
518
+ }
519
+
475
520
  .x1c2egtx {
476
521
  border-radius: var(--stridge-kit-card-radius-frame);
477
522
  }
@@ -692,6 +737,10 @@
692
737
  padding-block: 15px;
693
738
  }
694
739
 
740
+ .x1xn8qrt {
741
+ padding-block: 16px;
742
+ }
743
+
695
744
  .x12ulsxz {
696
745
  padding-block: 4px;
697
746
  }
@@ -712,6 +761,14 @@
712
761
  padding-block: var(--stridge-kit-space-3);
713
762
  }
714
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
+
715
772
  .xvpgqt4 {
716
773
  padding-inline: .625rem;
717
774
  }
@@ -784,6 +841,10 @@
784
841
  border-color: var(--stridge-kit-ring);
785
842
  }
786
843
 
844
+ .x1o5aa3h:focus-visible {
845
+ border-radius: var(--stridge-kit-radius-full);
846
+ }
847
+
787
848
  .x63abuj:focus-visible {
788
849
  border-radius: var(--stridge-kit-radius-sm);
789
850
  }
@@ -1148,6 +1209,10 @@
1148
1209
  background-color: var(--stridge-kit-card-surface);
1149
1210
  }
1150
1211
 
1212
+ .x1fkz0ev {
1213
+ background-color: var(--stridge-kit-tabs-indicator-accent);
1214
+ }
1215
+
1151
1216
  .x136i1dt {
1152
1217
  background-color: var(--stridge-kit-border);
1153
1218
  }
@@ -1160,6 +1225,10 @@
1160
1225
  background-color: var(--stridge-kit-secondary);
1161
1226
  }
1162
1227
 
1228
+ .x1ge2e6s {
1229
+ background-color: var(--stridge-kit-tabs-tab-surface-active);
1230
+ }
1231
+
1163
1232
  .xdmxa9o {
1164
1233
  background-color: var(--stridge-kit-primary);
1165
1234
  }
@@ -1176,6 +1245,10 @@
1176
1245
  background-color: var(--stridge-kit-skeleton-base);
1177
1246
  }
1178
1247
 
1248
+ .x13y6qn8 {
1249
+ background-color: var(--stridge-kit-tabs-list-surface);
1250
+ }
1251
+
1179
1252
  .x1p0xf7o {
1180
1253
  background-color: var(--stridge-kit-drawer-handle-color);
1181
1254
  }
@@ -1188,6 +1261,10 @@
1188
1261
  background-color: var(--stridge-kit-overlay);
1189
1262
  }
1190
1263
 
1264
+ .xvaq5cg {
1265
+ background-color: var(--stridge-kit-card);
1266
+ }
1267
+
1191
1268
  .x19u6ldj {
1192
1269
  background-color: var(--stridge-kit-background);
1193
1270
  }
@@ -1392,6 +1469,10 @@
1392
1469
  color: var(--stridge-kit-destructive);
1393
1470
  }
1394
1471
 
1472
+ .xddgj62 {
1473
+ color: var(--stridge-kit-tabs-tab-foreground);
1474
+ }
1475
+
1395
1476
  .x137ha3m {
1396
1477
  color: var(--stridge-kit-muted-foreground-faint);
1397
1478
  }
@@ -1484,6 +1565,10 @@
1484
1565
  display: inline;
1485
1566
  }
1486
1567
 
1568
+ .x1s85apg {
1569
+ display: none;
1570
+ }
1571
+
1487
1572
  .x5f5z56 {
1488
1573
  field-sizing: content;
1489
1574
  }
@@ -1752,6 +1837,10 @@
1752
1837
  letter-spacing: .02em;
1753
1838
  }
1754
1839
 
1840
+ .x1labic3 {
1841
+ letter-spacing: .14em;
1842
+ }
1843
+
1755
1844
  .x4gjf66 {
1756
1845
  letter-spacing: inherit;
1757
1846
  }
@@ -1780,6 +1869,10 @@
1780
1869
  line-height: 0;
1781
1870
  }
1782
1871
 
1872
+ .x1u7k74 {
1873
+ line-height: 1.2;
1874
+ }
1875
+
1783
1876
  .x132q4wb {
1784
1877
  line-height: 1.25;
1785
1878
  }
@@ -1912,6 +2005,10 @@
1912
2005
  overflow-wrap: anywhere;
1913
2006
  }
1914
2007
 
2008
+ .x2vl965 {
2009
+ padding-inline-end: 10px;
2010
+ }
2011
+
1915
2012
  .xpdmqnj {
1916
2013
  padding-inline-end: 12px;
1917
2014
  }
@@ -1976,6 +2073,10 @@
1976
2073
  padding-inline-start: 22px;
1977
2074
  }
1978
2075
 
2076
+ .x25sj25 {
2077
+ padding-inline-start: 6px;
2078
+ }
2079
+
1979
2080
  .x7coems {
1980
2081
  padding-inline-start: 9px;
1981
2082
  }
@@ -2184,6 +2285,10 @@
2184
2285
  transition-duration: .2s;
2185
2286
  }
2186
2287
 
2288
+ .x1szhkt1 {
2289
+ transition-duration: var(--stridge-kit-duration-normal);
2290
+ }
2291
+
2187
2292
  .x1vhb3u9 {
2188
2293
  transition-duration: var(--stridge-kit-duration-fast);
2189
2294
  }
@@ -2204,6 +2309,10 @@
2204
2309
  transition-property: background-color, border-color, color, box-shadow, transform;
2205
2310
  }
2206
2311
 
2312
+ .xgzoi8n {
2313
+ transition-property: background-color, border-color, color, box-shadow;
2314
+ }
2315
+
2207
2316
  .x1eaenvl {
2208
2317
  transition-property: background-color, border-color, color;
2209
2318
  }
@@ -2224,6 +2333,10 @@
2224
2333
  transition-property: border-color, box-shadow;
2225
2334
  }
2226
2335
 
2336
+ .xshfolx {
2337
+ transition-property: border-color;
2338
+ }
2339
+
2227
2340
  .xkdsq27 {
2228
2341
  transition-property: box-shadow;
2229
2342
  }
@@ -2240,6 +2353,10 @@
2240
2353
  transition-property: height;
2241
2354
  }
2242
2355
 
2356
+ .x36inuq {
2357
+ transition-property: left, right, top, bottom, width, height;
2358
+ }
2359
+
2243
2360
  .x19991ni {
2244
2361
  transition-property: opacity;
2245
2362
  }
@@ -2329,6 +2446,10 @@
2329
2446
  z-index: 1;
2330
2447
  }
2331
2448
 
2449
+ .x1n327nk {
2450
+ z-index: 10;
2451
+ }
2452
+
2332
2453
  .x11uqc5h {
2333
2454
  z-index: 100;
2334
2455
  }
@@ -2365,6 +2486,14 @@
2365
2486
  z-index: var(--stridge-kit-z-popover);
2366
2487
  }
2367
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
+
2368
2497
  .x3celgi:active:not(:disabled) {
2369
2498
  background-color: color-mix(in oklab,var(--stridge-kit-surface-hover) 70%,var(--stridge-kit-foreground));
2370
2499
  }
@@ -2525,6 +2654,10 @@
2525
2654
  background-color: color-mix(in oklab,var(--stridge-kit-destructive) 80%,var(--stridge-kit-foreground));
2526
2655
  }
2527
2656
 
2657
+ .xyv6lf4:hover {
2658
+ background-color: color-mix(in oklab,var(--stridge-kit-tabs-list-surface) 50%,transparent);
2659
+ }
2660
+
2528
2661
  .x1ehxjrm:hover {
2529
2662
  background-color: color-mix(in oklab,var(--stridge-kit-destructive-soft) 86%,var(--stridge-kit-foreground));
2530
2663
  }
@@ -2545,6 +2678,10 @@
2545
2678
  color: var(--stridge-kit-muted-foreground);
2546
2679
  }
2547
2680
 
2681
+ .xbs6d1p:hover {
2682
+ color: var(--stridge-kit-tabs-tab-foreground-active);
2683
+ }
2684
+
2548
2685
  .x1mzqehw:hover {
2549
2686
  opacity: .6;
2550
2687
  }
@@ -2677,6 +2814,10 @@
2677
2814
  border-top-color: var(--stridge-kit-card-border);
2678
2815
  }
2679
2816
 
2817
+ .x19bq4ie {
2818
+ border-top-color: var(--stridge-kit-details-border);
2819
+ }
2820
+
2680
2821
  .x1wc9ssx {
2681
2822
  border-top-color: var(--stridge-kit-card-border-frame);
2682
2823
  }
@@ -2737,6 +2878,10 @@
2737
2878
  height: 14px;
2738
2879
  }
2739
2880
 
2881
+ .x1ymw6g {
2882
+ height: 160px;
2883
+ }
2884
+
2740
2885
  .xlup9mm {
2741
2886
  height: 16px;
2742
2887
  }
@@ -2761,6 +2906,14 @@
2761
2906
  height: 200px;
2762
2907
  }
2763
2908
 
2909
+ .x1qx5ct2 {
2910
+ height: 20px;
2911
+ }
2912
+
2913
+ .x17rw0jw {
2914
+ height: 22px;
2915
+ }
2916
+
2764
2917
  .xxk0z11 {
2765
2918
  height: 24px;
2766
2919
  }
@@ -2805,6 +2958,10 @@
2805
2958
  height: fit-content;
2806
2959
  }
2807
2960
 
2961
+ .x1gezbiy {
2962
+ height: var(--active-tab-height);
2963
+ }
2964
+
2808
2965
  .xuan8c8 {
2809
2966
  height: var(--collapsible-panel-height);
2810
2967
  }
@@ -2821,6 +2978,10 @@
2821
2978
  left: auto;
2822
2979
  }
2823
2980
 
2981
+ .xvbikie {
2982
+ left: var(--active-tab-left);
2983
+ }
2984
+
2824
2985
  .xat24cr {
2825
2986
  margin-bottom: 0;
2826
2987
  }
@@ -3145,6 +3306,10 @@
3145
3306
  padding-top: 9px;
3146
3307
  }
3147
3308
 
3309
+ .xtgch2x {
3310
+ padding-top: var(--stridge-kit-space-6);
3311
+ }
3312
+
3148
3313
  .x1h03h88 {
3149
3314
  padding-top: var(--stridge-kit-space-4);
3150
3315
  }
@@ -3181,6 +3346,10 @@
3181
3346
  top: 50%;
3182
3347
  }
3183
3348
 
3349
+ .x10uur0e {
3350
+ top: var(--active-tab-top);
3351
+ }
3352
+
3184
3353
  .xh8yej3 {
3185
3354
  width: 100%;
3186
3355
  }
@@ -3205,6 +3374,10 @@
3205
3374
  width: 14px;
3206
3375
  }
3207
3376
 
3377
+ .xq1dxzn {
3378
+ width: 160px;
3379
+ }
3380
+
3208
3381
  .x1kky2od {
3209
3382
  width: 16px;
3210
3383
  }
@@ -3221,10 +3394,18 @@
3221
3394
  width: 1em;
3222
3395
  }
3223
3396
 
3397
+ .xw4jnvo {
3398
+ width: 20px;
3399
+ }
3400
+
3224
3401
  .x16grhtn {
3225
3402
  width: 220px;
3226
3403
  }
3227
3404
 
3405
+ .x17z2i9w {
3406
+ width: 22px;
3407
+ }
3408
+
3228
3409
  .xgd8bvy {
3229
3410
  width: 28px;
3230
3411
  }
@@ -3245,10 +3426,18 @@
3245
3426
  width: 44px;
3246
3427
  }
3247
3428
 
3429
+ .x1bu4hv2 {
3430
+ width: 5ch;
3431
+ }
3432
+
3248
3433
  .x1fu8urw {
3249
3434
  width: 64px;
3250
3435
  }
3251
3436
 
3437
+ .xig3uv9 {
3438
+ width: 6ch;
3439
+ }
3440
+
3252
3441
  .x1xc55vz {
3253
3442
  width: 8px;
3254
3443
  }
@@ -3265,10 +3454,22 @@
3265
3454
  width: max-content;
3266
3455
  }
3267
3456
 
3457
+ .xoffw1 {
3458
+ width: var(--active-tab-width);
3459
+ }
3460
+
3268
3461
  .x19k59d4 {
3269
3462
  width: var(--stridge-kit-drawer-handle-size);
3270
3463
  }
3271
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
+
3272
3473
  .x1g31smg:first-child {
3273
3474
  border-top-width: 0;
3274
3475
  }
@@ -3329,6 +3530,10 @@
3329
3530
  }
3330
3531
 
3331
3532
  @layer priority6 {
3533
+ .x7kzco9[data-active] {
3534
+ border-color: var(--stridge-kit-foreground);
3535
+ }
3536
+
3332
3537
  .x13rkwjk[aria-invalid="true"][data-popup-open], .x1e0f7l1[aria-invalid="true"], .xu6psuv[aria-invalid="true"]:focus-visible {
3333
3538
  border-color: var(--stridge-kit-destructive-border);
3334
3539
  }
@@ -3391,10 +3596,18 @@
3391
3596
  animation-timing-function: var(--stridge-kit-ease-exit);
3392
3597
  }
3393
3598
 
3599
+ .xthri8c[data-active], .xynnxzo[data-disabled] {
3600
+ background-color: #0000;
3601
+ }
3602
+
3394
3603
  .xevhoj0[data-highlighted] {
3395
3604
  background-color: var(--stridge-kit-tile-surface);
3396
3605
  }
3397
3606
 
3607
+ .x1anawn6[data-active] {
3608
+ background-color: var(--stridge-kit-foreground);
3609
+ }
3610
+
3398
3611
  .x9oo2q2[aria-expanded="true"] {
3399
3612
  background-color: var(--stridge-kit-muted);
3400
3613
  }
@@ -3419,18 +3632,42 @@
3419
3632
  color: var(--stridge-kit-destructive);
3420
3633
  }
3421
3634
 
3635
+ .xctydo3[data-disabled] {
3636
+ color: var(--stridge-kit-tabs-tab-foreground);
3637
+ }
3638
+
3422
3639
  .x163giyb[data-highlighted] {
3423
3640
  color: var(--stridge-kit-popover-foreground);
3424
3641
  }
3425
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
+
3426
3655
  .xzuuoaq[hidden]:not([hidden="until-found"]) {
3427
3656
  display: none;
3428
3657
  }
3429
3658
 
3430
- .xrvs7vr[data-orientation="horizontal"] {
3659
+ .x1nquej0[data-orientation="vertical"], .xrvs7vr[data-orientation="horizontal"] {
3431
3660
  flex-direction: column;
3432
3661
  }
3433
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
+
3434
3671
  .x118mprz[data-side="inline-start"] {
3435
3672
  inset-inline-end: -13px;
3436
3673
  }
@@ -3447,6 +3684,10 @@
3447
3684
  inset-inline-start: 0;
3448
3685
  }
3449
3686
 
3687
+ .x1sydc4h[data-orientation="vertical"] {
3688
+ justify-content: flex-start;
3689
+ }
3690
+
3450
3691
  .x11xjgb3[data-disabled] {
3451
3692
  opacity: .45;
3452
3693
  }
@@ -3515,6 +3756,10 @@
3515
3756
  flex: 1;
3516
3757
  }
3517
3758
 
3759
+ .x1nzntce[data-orientation="horizontal"] {
3760
+ height: .125rem;
3761
+ }
3762
+
3518
3763
  .x12wejat[data-ending-style], .x1fe7yth[data-starting-style] {
3519
3764
  height: 0;
3520
3765
  }
@@ -3523,6 +3768,14 @@
3523
3768
  height: 100%;
3524
3769
  }
3525
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
+
3526
3779
  .x1thhcpk[data-orientation="horizontal"] {
3527
3780
  height: var(--stridge-kit-space-3);
3528
3781
  }
@@ -3531,6 +3784,10 @@
3531
3784
  left: -13px;
3532
3785
  }
3533
3786
 
3787
+ .x1fhtaip[data-orientation="vertical"] {
3788
+ left: 0;
3789
+ }
3790
+
3534
3791
  .x1f3sk1h[data-side="left"] {
3535
3792
  right: -13px;
3536
3793
  }
@@ -3547,13 +3804,29 @@
3547
3804
  top: 100%;
3548
3805
  }
3549
3806
 
3550
- .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"] {
3551
3816
  width: 100%;
3552
3817
  }
3553
3818
 
3554
3819
  .xr4lo6p[data-orientation="vertical"] {
3555
3820
  width: var(--stridge-kit-space-3);
3556
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
+ }
3557
3830
  }
3558
3831
 
3559
3832
  @layer priority9 {
package/dist/types.d.ts CHANGED
@@ -2,7 +2,7 @@ import { Entity, SettlementFailureKind, TxRef } from "./shared/driver/types.js";
2
2
  import { AcceptedAssetPayload, AddressItemPayload, AssetPayload, BalanceItemPayload, BrandPayload, ChainPayload, QuoteBreakdownPayload, QuotePayload, QuoteRoutePayload, SettlementFailurePayload, SettlementPayload, SettlementPendingPayload, SettlementSuccessPayload, SourceWalletPayload, TargetPayload, WalletInfo, WalletPayload } from "./flows/deposit/driver/payloads.js";
3
3
  import { DepositSnapshot } from "./flows/deposit/driver/types.js";
4
4
  import { FailureInfo } from "./shared/orchestrator/types.js";
5
- import { ConfirmDepositPhase, DepositActions, DepositController, DepositMethod, DepositState, DepositStateName, GatewayEvent, OpenInput, ResolvedOpenInput, RetryTargetSpec } from "./flows/deposit/orchestrator/types.js";
5
+ import { CashMethodId, ConfirmDepositPhase, DepositActions, DepositController, DepositMethod, DepositState, DepositStateName, GatewayEvent, OpenInput, ResolvedOpenInput, RetryTargetSpec } from "./flows/deposit/orchestrator/types.js";
6
6
  import { ReceiveOptionDto, ReceiveOptionsResponse, WithdrawableBalanceDto, WithdrawableBalancesResponse, WithdrawalQuoteDto, WithdrawalQuoteResponse, WithdrawalSettlementDto, WithdrawalSettlementResponse } from "./flows/withdraw/driver/dto.js";
7
7
  import { ReceiveChainPayload, ReceiveTokenOptionPayload, WithdrawableBalanceItemPayload, WithdrawalQuoteBreakdownPayload, WithdrawalQuotePayload, WithdrawalReceiveAssetPayload, WithdrawalSettlementFailurePayload, WithdrawalSettlementPayload, WithdrawalSettlementPendingPayload, WithdrawalSettlementSuccessPayload } from "./flows/withdraw/driver/payloads.js";
8
8
  import { WithdrawSnapshot } from "./flows/withdraw/driver/types.js";
@@ -11,7 +11,7 @@ import { KitConfig, KitDirection, KitRadius, KitTarget, KitTheme } from "./scope
11
11
  import { KitStorageAdapter, KitStoragePersistence } from "./storage/types.js";
12
12
  import { KitStorage } from "./storage/createKitStorage.js";
13
13
  import { WithdrawActions, WithdrawController, WithdrawEvent, WithdrawState, WithdrawStateName, WithdrawSubmitActions, WithdrawSubmitCallback, WithdrawSubmitInput, WithdrawalFormSnapshot } from "./flows/withdraw/orchestrator/types.js";
14
+ import { STEPS_WITH_OWN_SETTLEMENT_VIEW, stepRendersSettlement } from "./flows/deposit/orchestrator/steps.js";
14
15
  import { WithdrawBalanceInput, WithdrawBindings, WithdrawSuggestedRecipient } from "./flows/withdraw/bindings/WithdrawBindings.js";
15
16
  import { BannerAckBucket } from "./banners/useBannerAck.js";
16
- import { STEPS_WITH_OWN_SETTLEMENT_VIEW, stepRendersSettlement } from "./flows/deposit/orchestrator/steps.js";
17
- export { type AcceptedAssetPayload, type AddressItemPayload, type AssetPayload, type BalanceItemPayload, type BannerAckBucket, type BrandPayload, type ChainPayload, type ConfirmDepositPhase, type DepositActions, type DepositController, type DepositMethod, type DepositSnapshot, type DepositState, type DepositStateName, type Entity, type FailureInfo, type GatewayEvent, type KitConfig, type KitDirection, type KitRadius, type KitStorage, type KitStorageAdapter, type KitStoragePersistence, type KitTarget, type KitTheme, type OpenInput, type Presentation, type PresentationConfig, type PresentationMode, type QuoteBreakdownPayload, type QuotePayload, type QuoteRoutePayload, type ReceiveChainPayload, type ReceiveOptionDto, type ReceiveOptionsResponse, type ReceiveTokenOptionPayload, type ResolvedOpenInput, type RetryTargetSpec, STEPS_WITH_OWN_SETTLEMENT_VIEW, type SettlementFailureKind, type SettlementFailurePayload, type SettlementPayload, type SettlementPendingPayload, type SettlementSuccessPayload, type SourceWalletPayload, type TargetPayload, type TxRef, type WalletInfo, type WalletPayload, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawEvent, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawableBalanceDto, type WithdrawableBalanceItemPayload, type WithdrawableBalancesResponse, type WithdrawalFormSnapshot, type WithdrawalQuoteBreakdownPayload, type WithdrawalQuoteDto, type WithdrawalQuotePayload, type WithdrawalQuoteResponse, type WithdrawalReceiveAssetPayload, type WithdrawalSettlementDto, type WithdrawalSettlementFailurePayload, type WithdrawalSettlementPayload, type WithdrawalSettlementPendingPayload, type WithdrawalSettlementResponse, type WithdrawalSettlementSuccessPayload, stepRendersSettlement };
17
+ export { type AcceptedAssetPayload, type AddressItemPayload, type AssetPayload, type BalanceItemPayload, type BannerAckBucket, type BrandPayload, type CashMethodId, type ChainPayload, type ConfirmDepositPhase, type DepositActions, type DepositController, type DepositMethod, type DepositSnapshot, type DepositState, type DepositStateName, type Entity, type FailureInfo, type GatewayEvent, type KitConfig, type KitDirection, type KitRadius, type KitStorage, type KitStorageAdapter, type KitStoragePersistence, type KitTarget, type KitTheme, type OpenInput, type Presentation, type PresentationConfig, type PresentationMode, type QuoteBreakdownPayload, type QuotePayload, type QuoteRoutePayload, type ReceiveChainPayload, type ReceiveOptionDto, type ReceiveOptionsResponse, type ReceiveTokenOptionPayload, type ResolvedOpenInput, type RetryTargetSpec, STEPS_WITH_OWN_SETTLEMENT_VIEW, type SettlementFailureKind, type SettlementFailurePayload, type SettlementPayload, type SettlementPendingPayload, type SettlementSuccessPayload, type SourceWalletPayload, type TargetPayload, type TxRef, type WalletInfo, type WalletPayload, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawEvent, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawableBalanceDto, type WithdrawableBalanceItemPayload, type WithdrawableBalancesResponse, type WithdrawalFormSnapshot, type WithdrawalQuoteBreakdownPayload, type WithdrawalQuoteDto, type WithdrawalQuotePayload, type WithdrawalQuoteResponse, type WithdrawalReceiveAssetPayload, type WithdrawalSettlementDto, type WithdrawalSettlementFailurePayload, type WithdrawalSettlementPayload, type WithdrawalSettlementPendingPayload, type WithdrawalSettlementResponse, type WithdrawalSettlementSuccessPayload, stepRendersSettlement };
@@ -1,6 +1,8 @@
1
1
  import { Presentation, PresentationConfig, PresentationMode } from "../shared/presentation/types.js";
2
2
  import { WalletRow, WalletRowDensity, WalletRowProps } from "../shared/ui/WalletRow/WalletRow.js";
3
3
  import { WALLET_ROW_SLOTS, WalletRowSlot } from "../shared/ui/WalletRow/WalletRow.slots.js";
4
+ import { Tabs, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsTab, TabsVariant } from "../shared/ui/Tabs/Tabs.js";
5
+ import { TABS_SLOTS, TabsSlot } from "../shared/ui/Tabs/Tabs.slots.js";
4
6
  import { AdaptiveSurface, AdaptiveSurfaceProps } from "../shared/ui/AdaptiveSurface/AdaptiveSurface.js";
5
7
  import { Alert, AlertVariant } from "../shared/ui/Alert/Alert.js";
6
8
  import { ALERT_SLOTS, AlertSlot } from "../shared/ui/Alert/Alert.slots.js";
@@ -51,4 +53,4 @@ import { TokenLogoProps } from "../shared/ui/TokenLogo/types.js";
51
53
  import { TokenLogo } from "../shared/ui/TokenLogo/TokenLogo.js";
52
54
  import { Tooltip, TooltipVariant } from "../shared/ui/Tooltip/Tooltip.js";
53
55
  import { TOOLTIP_SLOTS, TooltipSlot } from "../shared/ui/Tooltip/Tooltip.slots.js";
54
- export { ALERT_SLOTS, AMOUNT_INPUT_SLOTS, AdaptiveSurface, AdaptiveSurfaceProps, Alert, AlertSlot, AlertVariant, AmountInput, AmountInputSlot, BADGE_SLOTS, BUTTON_SLOTS, Badge, BadgeColor, BadgeRoundness, BadgeSize, BadgeSlot, BadgeVariant, Button, ButtonSize, ButtonSlot, ButtonVariant, CARD_SLOTS, COLLAPSIBLE_SLOTS, Card, CardSlot, CardVariant, Collapsible, CollapsibleSlot, DETAILS_SLOTS, DIALOG_SLOTS, DRAWER_SLOTS, Details, DetailsSlot, Dialog, DialogSlot, Drawer, DrawerSlot, EXTERNAL_LINK_SLOTS, ExternalLink, ExternalLinkSlot, FIELD_SLOTS, Field, FieldOrientation, FieldSlot, HtmlTags, ICON_BUTTON_SLOTS, IMAGE_SLOTS, INPUT_GROUP_SLOTS, IconButton, IconButtonSize, IconButtonSlot, Image, ImageGroupProps, ImageOverlayProps, ImageProps, ImageShape, ImageSize, ImageSlot, InputGroup, InputGroupAddonAlign, InputGroupSlot, LtrAtom, LtrAtomProps, Presentation, PresentationConfig, PresentationMode, SCROLL_AREA_SLOTS, SELECTABLE_TILE_SLOTS, SELECT_SLOTS, SKELETON_SLOTS, STEPS_SLOTS, ScrollArea, ScrollAreaSlot, Select, SelectSlot, SelectVariant, SelectableTile, SelectableTileGroup, SelectableTileGroupProps, SelectableTileShape, SelectableTileSlot, Skeleton, SkeletonSlot, Step, Steps, StepsSlot, TEXT_SLOTS, TOOLTIP_SLOTS, TextAlign, TextColor, TextComponent, TextFactory, TextFont, TextFontWeight, TextLeading, TextProps, TextSize, TextSlot, TextTracking, TextTransform, TokenLogo, TokenLogoProps, Tooltip, TooltipSlot, TooltipVariant, WALLET_ROW_SLOTS, WalletRow, WalletRowDensity, WalletRowProps, WalletRowSlot, formatAmountForInput, parseAmountInputValue, text, useIsInsideDialogContent };
56
+ export { ALERT_SLOTS, AMOUNT_INPUT_SLOTS, AdaptiveSurface, AdaptiveSurfaceProps, Alert, AlertSlot, AlertVariant, AmountInput, AmountInputSlot, BADGE_SLOTS, BUTTON_SLOTS, Badge, BadgeColor, BadgeRoundness, BadgeSize, BadgeSlot, BadgeVariant, Button, ButtonSize, ButtonSlot, ButtonVariant, CARD_SLOTS, COLLAPSIBLE_SLOTS, Card, CardSlot, CardVariant, Collapsible, CollapsibleSlot, DETAILS_SLOTS, DIALOG_SLOTS, DRAWER_SLOTS, Details, DetailsSlot, Dialog, DialogSlot, Drawer, DrawerSlot, EXTERNAL_LINK_SLOTS, ExternalLink, ExternalLinkSlot, FIELD_SLOTS, Field, FieldOrientation, FieldSlot, HtmlTags, ICON_BUTTON_SLOTS, IMAGE_SLOTS, INPUT_GROUP_SLOTS, IconButton, IconButtonSize, IconButtonSlot, Image, ImageGroupProps, ImageOverlayProps, ImageProps, ImageShape, ImageSize, ImageSlot, InputGroup, InputGroupAddonAlign, InputGroupSlot, LtrAtom, LtrAtomProps, Presentation, PresentationConfig, PresentationMode, SCROLL_AREA_SLOTS, SELECTABLE_TILE_SLOTS, SELECT_SLOTS, SKELETON_SLOTS, STEPS_SLOTS, ScrollArea, ScrollAreaSlot, Select, SelectSlot, SelectVariant, SelectableTile, SelectableTileGroup, SelectableTileGroupProps, SelectableTileShape, SelectableTileSlot, Skeleton, SkeletonSlot, Step, Steps, StepsSlot, TABS_SLOTS, TEXT_SLOTS, TOOLTIP_SLOTS, Tabs, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsSlot, TabsTab, TabsVariant, TextAlign, TextColor, TextComponent, TextFactory, TextFont, TextFontWeight, TextLeading, TextProps, TextSize, TextSlot, TextTracking, TextTransform, TokenLogo, TokenLogoProps, Tooltip, TooltipSlot, TooltipVariant, WALLET_ROW_SLOTS, WalletRow, WalletRowDensity, WalletRowProps, WalletRowSlot, formatAmountForInput, parseAmountInputValue, text, useIsInsideDialogContent };