@agg-build/ui 2.1.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.
- package/dist/{chunk-Y6PVXAUQ.mjs → chunk-IQT4I5B4.mjs} +387 -250
- package/dist/{chunk-R6FBYAY5.mjs → chunk-NK57KMYN.mjs} +2 -2
- package/dist/{chunk-YMVD6Q2A.mjs → chunk-RPXRTXCY.mjs} +1 -1
- package/dist/{chunk-C5M2OOM3.mjs → chunk-TERG43WW.mjs} +1 -1
- package/dist/{chunk-3OI2ZLLT.mjs → chunk-WU2C3C6K.mjs} +1 -1
- package/dist/{chunk-YAEA6EDG.mjs → chunk-XHDGSRG7.mjs} +8 -6
- package/dist/{chunk-DXF2LMNN.mjs → chunk-YJO6LMRT.mjs} +781 -753
- package/dist/events.js +941 -914
- package/dist/events.mjs +3 -3
- package/dist/index.js +2788 -2621
- package/dist/index.mjs +11 -7
- package/dist/modals.js +851 -824
- package/dist/modals.mjs +3 -3
- package/dist/pages.js +1968 -1803
- package/dist/pages.mjs +8 -6
- package/dist/primitives.js +782 -753
- package/dist/primitives.mjs +3 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/trading.js +532 -501
- package/dist/trading.mjs +4 -4
- package/dist/types/pages/user-profile/index.d.mts +1 -0
- package/dist/types/pages/user-profile/index.d.ts +1 -0
- package/dist/types/pages/user-profile/transaction-explorer.d.mts +1 -0
- package/dist/types/pages/user-profile/transaction-explorer.d.ts +1 -0
- package/dist/types/pages/user-profile/user-profile.types.d.mts +8 -2
- package/dist/types/pages/user-profile/user-profile.types.d.ts +8 -2
- package/dist/types/primitives/icon/index.d.mts +2 -1
- package/dist/types/primitives/icon/index.d.ts +2 -1
- package/dist/types/primitives/icon/registry.d.mts +4 -0
- package/dist/types/primitives/icon/registry.d.ts +4 -0
- package/dist/types/primitives/icon/svg/paper-mode.d.mts +5 -0
- package/dist/types/primitives/icon/svg/paper-mode.d.ts +5 -0
- package/package.json +2 -2
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-
|
|
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-
|
|
30
|
+
} from "./chunk-NK57KMYN.mjs";
|
|
30
31
|
import {
|
|
31
32
|
CARD_NETWORK_OPTIONS,
|
|
32
33
|
ConnectAccountsStep,
|
|
@@ -43,7 +44,7 @@ import {
|
|
|
43
44
|
clearPendingCardSession,
|
|
44
45
|
getPendingCardSession,
|
|
45
46
|
subscribeAggDepositNotification
|
|
46
|
-
} from "./chunk-
|
|
47
|
+
} from "./chunk-WU2C3C6K.mjs";
|
|
47
48
|
import {
|
|
48
49
|
DEPOSIT_MODAL_OPEN_EVENT,
|
|
49
50
|
PlaceOrder,
|
|
@@ -55,7 +56,7 @@ import {
|
|
|
55
56
|
parseVenue,
|
|
56
57
|
requestAggDepositModalOpen,
|
|
57
58
|
requestAggWithdrawModalOpen
|
|
58
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-XHDGSRG7.mjs";
|
|
59
60
|
import {
|
|
60
61
|
SETTLEMENT_SECTION_ID,
|
|
61
62
|
Settlement,
|
|
@@ -73,10 +74,10 @@ import {
|
|
|
73
74
|
resolveOrderBookRows,
|
|
74
75
|
resolveUnifiedOrderBookEntries,
|
|
75
76
|
useEventTradingContext
|
|
76
|
-
} from "./chunk-
|
|
77
|
+
} from "./chunk-TERG43WW.mjs";
|
|
77
78
|
import {
|
|
78
79
|
GeoBlockBanner
|
|
79
|
-
} from "./chunk-
|
|
80
|
+
} from "./chunk-RPXRTXCY.mjs";
|
|
80
81
|
import {
|
|
81
82
|
AGG_DEFAULT_URL,
|
|
82
83
|
AGG_DOCS_URL,
|
|
@@ -139,6 +140,7 @@ import {
|
|
|
139
140
|
LockIcon,
|
|
140
141
|
Modal,
|
|
141
142
|
NumberValue,
|
|
143
|
+
PaperModeIcon,
|
|
142
144
|
PaperPlaneIcon,
|
|
143
145
|
PencilIcon,
|
|
144
146
|
PlaceOrderRouteCardSkeleton,
|
|
@@ -195,7 +197,7 @@ import {
|
|
|
195
197
|
useOptionalToast,
|
|
196
198
|
useToast,
|
|
197
199
|
venueLogoNames
|
|
198
|
-
} from "./chunk-
|
|
200
|
+
} from "./chunk-YJO6LMRT.mjs";
|
|
199
201
|
|
|
200
202
|
// src/notifications/agg-notification-events-provider.tsx
|
|
201
203
|
import {
|
|
@@ -1354,6 +1356,7 @@ export {
|
|
|
1354
1356
|
OnboardingModal,
|
|
1355
1357
|
Orderbook,
|
|
1356
1358
|
OrderbookWithStates,
|
|
1359
|
+
PaperModeIcon,
|
|
1357
1360
|
PaperPlaneIcon,
|
|
1358
1361
|
PencilIcon,
|
|
1359
1362
|
PlaceOrder,
|
|
@@ -1406,6 +1409,7 @@ export {
|
|
|
1406
1409
|
WithdrawModal,
|
|
1407
1410
|
AGG_ROOT_CLASS_NAME as aggRootClassName,
|
|
1408
1411
|
badgeSizes,
|
|
1412
|
+
buildAggTxExplorerHref,
|
|
1409
1413
|
buildTerminalSummary,
|
|
1410
1414
|
clearPendingCardSession,
|
|
1411
1415
|
cn,
|