@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.
- package/dist/{chunk-RF2EPYLN.mjs → chunk-IQT4I5B4.mjs} +405 -318
- package/dist/{chunk-RWOF44TC.mjs → chunk-NK57KMYN.mjs} +239 -183
- package/dist/{chunk-HH7L3KLS.mjs → chunk-RPXRTXCY.mjs} +1 -1
- package/dist/{chunk-4CM4F4S6.mjs → chunk-TERG43WW.mjs} +1 -1
- package/dist/{chunk-2UKDQ7WP.mjs → chunk-WU2C3C6K.mjs} +94 -39
- package/dist/{chunk-R3U6YXSQ.mjs → chunk-XHDGSRG7.mjs} +36 -21
- package/dist/{chunk-2ZS3BPSF.mjs → chunk-YJO6LMRT.mjs} +906 -827
- package/dist/events.js +1376 -1314
- package/dist/events.mjs +3 -3
- package/dist/index.js +3701 -3408
- package/dist/index.mjs +13 -7
- package/dist/modals.js +1117 -983
- package/dist/modals.mjs +5 -3
- package/dist/pages.js +2664 -2429
- package/dist/pages.mjs +8 -6
- package/dist/primitives.js +912 -832
- package/dist/primitives.mjs +3 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/trading.js +554 -510
- 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 +2 -1
- package/dist/types/pages/user-profile/index.d.ts +2 -1
- 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 +9 -2
- package/dist/types/pages/user-profile/user-profile.types.d.ts +9 -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/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-WU2C3C6K.mjs";
|
|
17
18
|
import {
|
|
18
19
|
GeoBlockBanner
|
|
19
|
-
} from "./chunk-
|
|
20
|
-
import "./chunk-
|
|
20
|
+
} from "./chunk-RPXRTXCY.mjs";
|
|
21
|
+
import "./chunk-YJO6LMRT.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
|
};
|