@agg-build/ui 2.0.0 → 2.1.0
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.
- package/dist/{chunk-2UKDQ7WP.mjs → chunk-3OI2ZLLT.mjs} +94 -39
- package/dist/{chunk-4CM4F4S6.mjs → chunk-C5M2OOM3.mjs} +1 -1
- package/dist/{chunk-2ZS3BPSF.mjs → chunk-DXF2LMNN.mjs} +132 -81
- package/dist/{chunk-RWOF44TC.mjs → chunk-R6FBYAY5.mjs} +239 -183
- package/dist/{chunk-RF2EPYLN.mjs → chunk-Y6PVXAUQ.mjs} +27 -77
- package/dist/{chunk-R3U6YXSQ.mjs → chunk-YAEA6EDG.mjs} +31 -18
- package/dist/{chunk-HH7L3KLS.mjs → chunk-YMVD6Q2A.mjs} +1 -1
- package/dist/events.js +497 -462
- package/dist/events.mjs +3 -3
- package/dist/index.js +2116 -1990
- package/dist/index.mjs +9 -7
- package/dist/modals.js +278 -171
- package/dist/modals.mjs +5 -3
- package/dist/pages.js +1557 -1487
- package/dist/pages.mjs +6 -6
- package/dist/primitives.js +137 -86
- package/dist/primitives.mjs +1 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/trading.js +28 -15
- package/dist/trading.mjs +4 -4
- package/dist/types/events/list/category-sidebar.d.mts +33 -0
- package/dist/types/events/list/category-sidebar.d.ts +33 -0
- package/dist/types/events/list/event-list-tabs.d.mts +2 -0
- package/dist/types/events/list/event-list-tabs.d.ts +2 -0
- package/dist/types/events/list/index.d.mts +1 -0
- package/dist/types/events/list/index.d.ts +1 -0
- package/dist/types/pages/event-market/event-market.types.d.mts +1 -0
- package/dist/types/pages/event-market/event-market.types.d.ts +1 -0
- package/dist/types/pages/user-profile/index.d.mts +1 -1
- package/dist/types/pages/user-profile/index.d.ts +1 -1
- package/dist/types/pages/user-profile/user-profile.types.d.mts +1 -0
- package/dist/types/pages/user-profile/user-profile.types.d.ts +1 -0
- package/dist/types/shared/use-horizontal-scroll-state.d.mts +15 -0
- package/dist/types/shared/use-horizontal-scroll-state.d.ts +15 -0
- package/dist/types/withdraw/index.d.mts +9 -1
- package/dist/types/withdraw/index.d.ts +9 -1
- package/dist/types/withdraw/steps/withdraw-amount.d.mts +10 -1
- package/dist/types/withdraw/steps/withdraw-amount.d.ts +10 -1
- package/dist/types/withdraw/withdraw-modal.types.d.mts +8 -0
- package/dist/types/withdraw/withdraw-modal.types.d.ts +8 -0
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
USER_PROFILE_TAB_POSITIONS,
|
|
11
11
|
UserProfilePage,
|
|
12
12
|
useHomePageModals
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-Y6PVXAUQ.mjs";
|
|
14
14
|
import {
|
|
15
15
|
EventList,
|
|
16
16
|
EventListItem,
|
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
mergeVenueOutcomeOrderbooks,
|
|
27
27
|
orderbookRowLimitDefault,
|
|
28
28
|
useCenterOrderbookSpread
|
|
29
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-R6FBYAY5.mjs";
|
|
30
30
|
import {
|
|
31
31
|
CARD_NETWORK_OPTIONS,
|
|
32
32
|
ConnectAccountsStep,
|
|
@@ -39,10 +39,11 @@ import {
|
|
|
39
39
|
ProfileModal,
|
|
40
40
|
ProfileSetupStep,
|
|
41
41
|
WithdrawModal,
|
|
42
|
+
buildTerminalSummary,
|
|
42
43
|
clearPendingCardSession,
|
|
43
44
|
getPendingCardSession,
|
|
44
45
|
subscribeAggDepositNotification
|
|
45
|
-
} from "./chunk-
|
|
46
|
+
} from "./chunk-3OI2ZLLT.mjs";
|
|
46
47
|
import {
|
|
47
48
|
DEPOSIT_MODAL_OPEN_EVENT,
|
|
48
49
|
PlaceOrder,
|
|
@@ -54,7 +55,7 @@ import {
|
|
|
54
55
|
parseVenue,
|
|
55
56
|
requestAggDepositModalOpen,
|
|
56
57
|
requestAggWithdrawModalOpen
|
|
57
|
-
} from "./chunk-
|
|
58
|
+
} from "./chunk-YAEA6EDG.mjs";
|
|
58
59
|
import {
|
|
59
60
|
SETTLEMENT_SECTION_ID,
|
|
60
61
|
Settlement,
|
|
@@ -72,10 +73,10 @@ import {
|
|
|
72
73
|
resolveOrderBookRows,
|
|
73
74
|
resolveUnifiedOrderBookEntries,
|
|
74
75
|
useEventTradingContext
|
|
75
|
-
} from "./chunk-
|
|
76
|
+
} from "./chunk-C5M2OOM3.mjs";
|
|
76
77
|
import {
|
|
77
78
|
GeoBlockBanner
|
|
78
|
-
} from "./chunk-
|
|
79
|
+
} from "./chunk-YMVD6Q2A.mjs";
|
|
79
80
|
import {
|
|
80
81
|
AGG_DEFAULT_URL,
|
|
81
82
|
AGG_DOCS_URL,
|
|
@@ -194,7 +195,7 @@ import {
|
|
|
194
195
|
useOptionalToast,
|
|
195
196
|
useToast,
|
|
196
197
|
venueLogoNames
|
|
197
|
-
} from "./chunk-
|
|
198
|
+
} from "./chunk-DXF2LMNN.mjs";
|
|
198
199
|
|
|
199
200
|
// src/notifications/agg-notification-events-provider.tsx
|
|
200
201
|
import {
|
|
@@ -1405,6 +1406,7 @@ export {
|
|
|
1405
1406
|
WithdrawModal,
|
|
1406
1407
|
AGG_ROOT_CLASS_NAME as aggRootClassName,
|
|
1407
1408
|
badgeSizes,
|
|
1409
|
+
buildTerminalSummary,
|
|
1408
1410
|
clearPendingCardSession,
|
|
1409
1411
|
cn,
|
|
1410
1412
|
collectEligibleVenueOutcomeIds,
|