@agg-market/ui 12.0.0 → 13.0.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-AKR2ZSBQ.mjs → chunk-3ST2TN6E.mjs} +3 -3
- package/dist/{chunk-XUML4ZJQ.mjs → chunk-B56YA2YQ.mjs} +246 -215
- package/dist/{chunk-TA74OXPL.mjs → chunk-CHVTY3OB.mjs} +1310 -1115
- package/dist/{chunk-VOYSFL6U.mjs → chunk-GQ4P3AHJ.mjs} +1 -1
- package/dist/{chunk-VMJGQKKU.mjs → chunk-T4WFRR6D.mjs} +1 -1
- package/dist/events.js +556 -526
- package/dist/events.mjs +2 -2
- package/dist/index.js +2080 -1852
- package/dist/index.mjs +7 -5
- package/dist/modals.js +2551 -2319
- package/dist/modals.mjs +2 -2
- package/dist/pages.js +949 -919
- package/dist/pages.mjs +4 -4
- package/dist/primitives.js +247 -215
- package/dist/primitives.mjs +3 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/trading.js +427 -397
- package/dist/trading.mjs +2 -2
- package/dist/types/deposit/deposit-modal.constants.d.mts +0 -4
- package/dist/types/deposit/deposit-modal.constants.d.ts +0 -4
- package/dist/types/deposit/deposit-modal.types.d.mts +110 -14
- package/dist/types/deposit/deposit-modal.types.d.ts +110 -14
- package/dist/types/deposit/index.d.mts +1 -1
- package/dist/types/deposit/index.d.ts +1 -1
- package/dist/types/deposit/steps/card-deposit.d.mts +13 -3
- package/dist/types/deposit/steps/card-deposit.d.ts +13 -3
- package/dist/types/deposit/steps/card-provider.d.mts +10 -0
- package/dist/types/deposit/steps/card-provider.d.ts +10 -0
- package/dist/types/deposit/steps/card-purchase-success.d.mts +7 -0
- package/dist/types/deposit/steps/card-purchase-success.d.ts +7 -0
- package/dist/types/deposit/steps/crypto-transfer.d.mts +13 -3
- package/dist/types/deposit/steps/crypto-transfer.d.ts +13 -3
- package/dist/types/deposit/steps/deposit-method.d.mts +6 -4
- package/dist/types/deposit/steps/deposit-method.d.ts +6 -4
- package/dist/types/deposit/steps/wallet-form.d.mts +20 -0
- package/dist/types/deposit/steps/wallet-form.d.ts +20 -0
- package/dist/types/deposit/steps/wallet-processing.d.mts +6 -0
- package/dist/types/deposit/steps/wallet-processing.d.ts +6 -0
- package/dist/types/deposit/steps/wallet-success.d.mts +7 -0
- package/dist/types/deposit/steps/wallet-success.d.ts +7 -0
- 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/success-check.d.mts +5 -0
- package/dist/types/primitives/icon/svg/success-check.d.ts +5 -0
- package/dist/types/withdraw/index.d.mts +2 -2
- package/dist/types/withdraw/index.d.ts +2 -2
- package/dist/types/withdraw/steps/withdraw-amount.d.mts +14 -5
- package/dist/types/withdraw/steps/withdraw-amount.d.ts +14 -5
- package/dist/types/withdraw/steps/withdraw-method.d.mts +3 -4
- package/dist/types/withdraw/steps/withdraw-method.d.ts +3 -4
- package/dist/types/withdraw/steps/withdraw-provider.d.mts +10 -0
- package/dist/types/withdraw/steps/withdraw-provider.d.ts +10 -0
- package/dist/types/withdraw/steps/withdraw-success.d.mts +7 -0
- package/dist/types/withdraw/steps/withdraw-success.d.ts +7 -0
- package/dist/types/withdraw/withdraw-modal.constants.d.mts +0 -4
- package/dist/types/withdraw/withdraw-modal.constants.d.ts +0 -4
- package/dist/types/withdraw/withdraw-modal.types.d.mts +47 -23
- package/dist/types/withdraw/withdraw-modal.types.d.ts +47 -23
- package/package.json +2 -2
- package/dist/types/deposit/steps/kalshi-deposit.d.mts +0 -5
- package/dist/types/deposit/steps/kalshi-deposit.d.ts +0 -5
- package/dist/types/withdraw/steps/kalshi-withdraw.d.mts +0 -5
- package/dist/types/withdraw/steps/kalshi-withdraw.d.ts +0 -5
- package/dist/types/withdraw/steps/venue-selection.d.mts +0 -6
- package/dist/types/withdraw/steps/venue-selection.d.ts +0 -6
package/dist/index.mjs
CHANGED
|
@@ -3,14 +3,14 @@ import {
|
|
|
3
3
|
EventMarketPage,
|
|
4
4
|
HomePage,
|
|
5
5
|
UserProfilePage
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-3ST2TN6E.mjs";
|
|
7
7
|
import {
|
|
8
8
|
EventList,
|
|
9
9
|
EventListItem,
|
|
10
10
|
EventListItemDetails,
|
|
11
11
|
MarketDetails,
|
|
12
12
|
MarketDetailsList
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-GQ4P3AHJ.mjs";
|
|
14
14
|
import {
|
|
15
15
|
ConnectAccountsStep,
|
|
16
16
|
ConnectKalshiModal,
|
|
@@ -22,7 +22,7 @@ import {
|
|
|
22
22
|
ProfileModal,
|
|
23
23
|
ProfileSetupStep,
|
|
24
24
|
WithdrawModal
|
|
25
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-CHVTY3OB.mjs";
|
|
26
26
|
import {
|
|
27
27
|
placeOrderMetricSchema,
|
|
28
28
|
placeOrderOutcomeSchema,
|
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
getTradingSlippageLabel,
|
|
55
55
|
getTradingValueLabel,
|
|
56
56
|
getTradingVenueLabel
|
|
57
|
-
} from "./chunk-
|
|
57
|
+
} from "./chunk-T4WFRR6D.mjs";
|
|
58
58
|
import {
|
|
59
59
|
AGG_ROOT_CLASS_NAME,
|
|
60
60
|
AggLogo,
|
|
@@ -112,6 +112,7 @@ import {
|
|
|
112
112
|
SolanaIcon,
|
|
113
113
|
StateMessage,
|
|
114
114
|
StayInControlIcon,
|
|
115
|
+
SuccessCheckIcon,
|
|
115
116
|
SwitchButton,
|
|
116
117
|
Tabs,
|
|
117
118
|
Tooltip,
|
|
@@ -142,7 +143,7 @@ import {
|
|
|
142
143
|
toDate,
|
|
143
144
|
typographyVariants,
|
|
144
145
|
venueLogoNames
|
|
145
|
-
} from "./chunk-
|
|
146
|
+
} from "./chunk-B56YA2YQ.mjs";
|
|
146
147
|
|
|
147
148
|
// src/auth/connect-button-view/index.tsx
|
|
148
149
|
import * as DropdownMenu from "@radix-ui/react-dropdown-menu";
|
|
@@ -786,6 +787,7 @@ export {
|
|
|
786
787
|
SolanaIcon,
|
|
787
788
|
StateMessage,
|
|
788
789
|
StayInControlIcon,
|
|
790
|
+
SuccessCheckIcon,
|
|
789
791
|
SwitchButton,
|
|
790
792
|
Tabs,
|
|
791
793
|
Tooltip,
|