@agg-build/ui 1.3.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-ONVP7YWS.mjs → chunk-3OI2ZLLT.mjs} +94 -39
- package/dist/{chunk-UFC7L74C.mjs → chunk-C5M2OOM3.mjs} +1 -1
- package/dist/{chunk-QUZWA34R.mjs → chunk-DXF2LMNN.mjs} +512 -503
- package/dist/{chunk-5ALBEKAT.mjs → chunk-R6FBYAY5.mjs} +246 -194
- package/dist/{chunk-6PQ6O6M5.mjs → chunk-Y6PVXAUQ.mjs} +34 -90
- package/dist/{chunk-YWJIYEJV.mjs → chunk-YAEA6EDG.mjs} +31 -18
- package/dist/{chunk-55ODXLOS.mjs → chunk-YMVD6Q2A.mjs} +1 -1
- package/dist/events.js +894 -903
- package/dist/events.mjs +3 -3
- package/dist/index.js +2609 -2530
- package/dist/index.mjs +9 -7
- package/dist/modals.js +278 -171
- package/dist/modals.mjs +5 -3
- package/dist/pages.js +2014 -1991
- package/dist/pages.mjs +6 -6
- package/dist/primitives.js +526 -475
- 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/event-list.utils.d.mts +0 -4
- package/dist/types/events/list/event-list.utils.d.ts +0 -4
- 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/modals.mjs
CHANGED
|
@@ -11,13 +11,14 @@ import {
|
|
|
11
11
|
ProfileModal,
|
|
12
12
|
ProfileSetupStep,
|
|
13
13
|
WithdrawModal,
|
|
14
|
+
buildTerminalSummary,
|
|
14
15
|
clearPendingCardSession,
|
|
15
16
|
getPendingCardSession
|
|
16
|
-
} from "./chunk-
|
|
17
|
+
} from "./chunk-3OI2ZLLT.mjs";
|
|
17
18
|
import {
|
|
18
19
|
GeoBlockBanner
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import "./chunk-
|
|
20
|
+
} from "./chunk-YMVD6Q2A.mjs";
|
|
21
|
+
import "./chunk-DXF2LMNN.mjs";
|
|
21
22
|
export {
|
|
22
23
|
CARD_NETWORK_OPTIONS,
|
|
23
24
|
ConnectAccountsStep,
|
|
@@ -31,6 +32,7 @@ export {
|
|
|
31
32
|
ProfileModal,
|
|
32
33
|
ProfileSetupStep,
|
|
33
34
|
WithdrawModal,
|
|
35
|
+
buildTerminalSummary,
|
|
34
36
|
clearPendingCardSession,
|
|
35
37
|
getPendingCardSession
|
|
36
38
|
};
|