@agg-build/ui 2.0.0 → 2.1.1

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 (50) hide show
  1. package/dist/{chunk-RF2EPYLN.mjs → chunk-IQT4I5B4.mjs} +405 -318
  2. package/dist/{chunk-RWOF44TC.mjs → chunk-NK57KMYN.mjs} +239 -183
  3. package/dist/{chunk-HH7L3KLS.mjs → chunk-RPXRTXCY.mjs} +1 -1
  4. package/dist/{chunk-4CM4F4S6.mjs → chunk-TERG43WW.mjs} +1 -1
  5. package/dist/{chunk-2UKDQ7WP.mjs → chunk-WU2C3C6K.mjs} +94 -39
  6. package/dist/{chunk-R3U6YXSQ.mjs → chunk-XHDGSRG7.mjs} +36 -21
  7. package/dist/{chunk-2ZS3BPSF.mjs → chunk-YJO6LMRT.mjs} +906 -827
  8. package/dist/events.js +1376 -1314
  9. package/dist/events.mjs +3 -3
  10. package/dist/index.js +3701 -3408
  11. package/dist/index.mjs +13 -7
  12. package/dist/modals.js +1117 -983
  13. package/dist/modals.mjs +5 -3
  14. package/dist/pages.js +2664 -2429
  15. package/dist/pages.mjs +8 -6
  16. package/dist/primitives.js +912 -832
  17. package/dist/primitives.mjs +3 -1
  18. package/dist/styles.css +1 -1
  19. package/dist/tailwind.css +1 -1
  20. package/dist/trading.js +554 -510
  21. package/dist/trading.mjs +4 -4
  22. package/dist/types/events/list/category-sidebar.d.mts +33 -0
  23. package/dist/types/events/list/category-sidebar.d.ts +33 -0
  24. package/dist/types/events/list/event-list-tabs.d.mts +2 -0
  25. package/dist/types/events/list/event-list-tabs.d.ts +2 -0
  26. package/dist/types/events/list/index.d.mts +1 -0
  27. package/dist/types/events/list/index.d.ts +1 -0
  28. package/dist/types/pages/event-market/event-market.types.d.mts +1 -0
  29. package/dist/types/pages/event-market/event-market.types.d.ts +1 -0
  30. package/dist/types/pages/user-profile/index.d.mts +2 -1
  31. package/dist/types/pages/user-profile/index.d.ts +2 -1
  32. package/dist/types/pages/user-profile/transaction-explorer.d.mts +1 -0
  33. package/dist/types/pages/user-profile/transaction-explorer.d.ts +1 -0
  34. package/dist/types/pages/user-profile/user-profile.types.d.mts +9 -2
  35. package/dist/types/pages/user-profile/user-profile.types.d.ts +9 -2
  36. package/dist/types/primitives/icon/index.d.mts +2 -1
  37. package/dist/types/primitives/icon/index.d.ts +2 -1
  38. package/dist/types/primitives/icon/registry.d.mts +4 -0
  39. package/dist/types/primitives/icon/registry.d.ts +4 -0
  40. package/dist/types/primitives/icon/svg/paper-mode.d.mts +5 -0
  41. package/dist/types/primitives/icon/svg/paper-mode.d.ts +5 -0
  42. package/dist/types/shared/use-horizontal-scroll-state.d.mts +15 -0
  43. package/dist/types/shared/use-horizontal-scroll-state.d.ts +15 -0
  44. package/dist/types/withdraw/index.d.mts +9 -1
  45. package/dist/types/withdraw/index.d.ts +9 -1
  46. package/dist/types/withdraw/steps/withdraw-amount.d.mts +10 -1
  47. package/dist/types/withdraw/steps/withdraw-amount.d.ts +10 -1
  48. package/dist/types/withdraw/withdraw-modal.types.d.mts +8 -0
  49. package/dist/types/withdraw/withdraw-modal.types.d.ts +8 -0
  50. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -9,8 +9,9 @@ import {
9
9
  USER_PROFILE_TAB_OPEN_ORDERS,
10
10
  USER_PROFILE_TAB_POSITIONS,
11
11
  UserProfilePage,
12
+ buildAggTxExplorerHref,
12
13
  useHomePageModals
13
- } from "./chunk-RF2EPYLN.mjs";
14
+ } from "./chunk-IQT4I5B4.mjs";
14
15
  import {
15
16
  EventList,
16
17
  EventListItem,
@@ -26,7 +27,7 @@ import {
26
27
  mergeVenueOutcomeOrderbooks,
27
28
  orderbookRowLimitDefault,
28
29
  useCenterOrderbookSpread
29
- } from "./chunk-RWOF44TC.mjs";
30
+ } from "./chunk-NK57KMYN.mjs";
30
31
  import {
31
32
  CARD_NETWORK_OPTIONS,
32
33
  ConnectAccountsStep,
@@ -39,10 +40,11 @@ import {
39
40
  ProfileModal,
40
41
  ProfileSetupStep,
41
42
  WithdrawModal,
43
+ buildTerminalSummary,
42
44
  clearPendingCardSession,
43
45
  getPendingCardSession,
44
46
  subscribeAggDepositNotification
45
- } from "./chunk-2UKDQ7WP.mjs";
47
+ } from "./chunk-WU2C3C6K.mjs";
46
48
  import {
47
49
  DEPOSIT_MODAL_OPEN_EVENT,
48
50
  PlaceOrder,
@@ -54,7 +56,7 @@ import {
54
56
  parseVenue,
55
57
  requestAggDepositModalOpen,
56
58
  requestAggWithdrawModalOpen
57
- } from "./chunk-R3U6YXSQ.mjs";
59
+ } from "./chunk-XHDGSRG7.mjs";
58
60
  import {
59
61
  SETTLEMENT_SECTION_ID,
60
62
  Settlement,
@@ -72,10 +74,10 @@ import {
72
74
  resolveOrderBookRows,
73
75
  resolveUnifiedOrderBookEntries,
74
76
  useEventTradingContext
75
- } from "./chunk-4CM4F4S6.mjs";
77
+ } from "./chunk-TERG43WW.mjs";
76
78
  import {
77
79
  GeoBlockBanner
78
- } from "./chunk-HH7L3KLS.mjs";
80
+ } from "./chunk-RPXRTXCY.mjs";
79
81
  import {
80
82
  AGG_DEFAULT_URL,
81
83
  AGG_DOCS_URL,
@@ -138,6 +140,7 @@ import {
138
140
  LockIcon,
139
141
  Modal,
140
142
  NumberValue,
143
+ PaperModeIcon,
141
144
  PaperPlaneIcon,
142
145
  PencilIcon,
143
146
  PlaceOrderRouteCardSkeleton,
@@ -194,7 +197,7 @@ import {
194
197
  useOptionalToast,
195
198
  useToast,
196
199
  venueLogoNames
197
- } from "./chunk-2ZS3BPSF.mjs";
200
+ } from "./chunk-YJO6LMRT.mjs";
198
201
 
199
202
  // src/notifications/agg-notification-events-provider.tsx
200
203
  import {
@@ -1353,6 +1356,7 @@ export {
1353
1356
  OnboardingModal,
1354
1357
  Orderbook,
1355
1358
  OrderbookWithStates,
1359
+ PaperModeIcon,
1356
1360
  PaperPlaneIcon,
1357
1361
  PencilIcon,
1358
1362
  PlaceOrder,
@@ -1405,6 +1409,8 @@ export {
1405
1409
  WithdrawModal,
1406
1410
  AGG_ROOT_CLASS_NAME as aggRootClassName,
1407
1411
  badgeSizes,
1412
+ buildAggTxExplorerHref,
1413
+ buildTerminalSummary,
1408
1414
  clearPendingCardSession,
1409
1415
  cn,
1410
1416
  collectEligibleVenueOutcomeIds,