@agg-market/ui 9.0.0 → 10.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-N7U7QCSB.mjs → chunk-55YYUTBK.mjs} +807 -358
- package/dist/{chunk-3U4VHAP6.mjs → chunk-5G4T5R2H.mjs} +6 -2
- package/dist/{chunk-6CRY27SQ.mjs → chunk-GYOCLZGH.mjs} +538 -418
- package/dist/{chunk-HJ4UPYM7.mjs → chunk-RYQSVETG.mjs} +201 -165
- package/dist/{chunk-3G7C6WEC.mjs → chunk-XP7DREIX.mjs} +47 -15
- package/dist/events.js +575 -429
- package/dist/events.mjs +6 -4
- package/dist/index.js +1577 -948
- package/dist/index.mjs +10 -6
- package/dist/modals.js +1185 -374
- package/dist/modals.mjs +4 -2
- package/dist/pages.js +1400 -1010
- package/dist/pages.mjs +4 -4
- package/dist/primitives.js +46 -14
- package/dist/primitives.mjs +1 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/trading.js +20 -4
- package/dist/trading.mjs +2 -2
- package/dist/types/events/item/event-list-item.types.d.mts +1 -2
- package/dist/types/events/item/event-list-item.types.d.ts +1 -2
- package/dist/types/events/item-details/event-list-item-details.types.d.mts +1 -4
- package/dist/types/events/item-details/event-list-item-details.types.d.ts +1 -4
- package/dist/types/events/item-details/event-list-item-details.utils.d.mts +42 -3
- package/dist/types/events/item-details/event-list-item-details.utils.d.ts +42 -3
- package/dist/types/events/list/event-list.types.d.mts +2 -1
- package/dist/types/events/list/event-list.types.d.ts +2 -1
- package/dist/types/events/list/index.d.mts +1 -1
- package/dist/types/events/list/index.d.ts +1 -1
- package/dist/types/events/market-details/index.d.mts +6 -2
- package/dist/types/events/market-details/index.d.ts +6 -2
- package/dist/types/events/market-details/market-details.types.d.mts +33 -9
- package/dist/types/events/market-details/market-details.types.d.ts +33 -9
- package/dist/types/events/market-details/market-details.utils.d.mts +15 -10
- package/dist/types/events/market-details/market-details.utils.d.ts +15 -10
- package/dist/types/modals/index.d.mts +1 -0
- package/dist/types/modals/index.d.ts +1 -0
- package/dist/types/pages/event-market/event-market.types.d.mts +2 -0
- package/dist/types/pages/event-market/event-market.types.d.ts +2 -0
- package/dist/types/pages/home/home.constants.d.mts +1 -3
- package/dist/types/pages/home/home.constants.d.ts +1 -3
- package/dist/types/pages/home/home.types.d.mts +0 -2
- package/dist/types/pages/home/home.types.d.ts +0 -2
- package/dist/types/pages/home/home.utils.d.mts +4 -0
- package/dist/types/pages/home/home.utils.d.ts +4 -0
- package/dist/types/pages/home/index.d.mts +1 -1
- package/dist/types/pages/home/index.d.ts +1 -1
- package/dist/types/primitives/chart/index.d.mts +9 -1
- package/dist/types/primitives/chart/index.d.ts +9 -1
- package/dist/types/primitives/venue-logo/index.d.mts +1 -1
- package/dist/types/primitives/venue-logo/index.d.ts +1 -1
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -3,13 +3,14 @@ import {
|
|
|
3
3
|
EventMarketPage,
|
|
4
4
|
HomePage,
|
|
5
5
|
UserProfilePage
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-RYQSVETG.mjs";
|
|
7
7
|
import {
|
|
8
8
|
EventList,
|
|
9
9
|
EventListItem,
|
|
10
10
|
EventListItemDetails,
|
|
11
|
-
MarketDetails
|
|
12
|
-
|
|
11
|
+
MarketDetails,
|
|
12
|
+
MarketDetailsList
|
|
13
|
+
} from "./chunk-GYOCLZGH.mjs";
|
|
13
14
|
import {
|
|
14
15
|
ConnectAccountsStep,
|
|
15
16
|
ConnectKalshiModal,
|
|
@@ -17,10 +18,11 @@ import {
|
|
|
17
18
|
DepositModal,
|
|
18
19
|
HowItWorksStep,
|
|
19
20
|
OnboardingModal,
|
|
21
|
+
OnrampModal,
|
|
20
22
|
ProfileModal,
|
|
21
23
|
ProfileSetupStep,
|
|
22
24
|
WithdrawModal
|
|
23
|
-
} from "./chunk-
|
|
25
|
+
} from "./chunk-55YYUTBK.mjs";
|
|
24
26
|
import {
|
|
25
27
|
placeOrderMetricSchema,
|
|
26
28
|
placeOrderOutcomeSchema,
|
|
@@ -52,7 +54,7 @@ import {
|
|
|
52
54
|
getTradingSlippageLabel,
|
|
53
55
|
getTradingValueLabel,
|
|
54
56
|
getTradingVenueLabel
|
|
55
|
-
} from "./chunk-
|
|
57
|
+
} from "./chunk-5G4T5R2H.mjs";
|
|
56
58
|
import {
|
|
57
59
|
AGG_ROOT_CLASS_NAME,
|
|
58
60
|
AppleIcon,
|
|
@@ -135,7 +137,7 @@ import {
|
|
|
135
137
|
toDate,
|
|
136
138
|
typographyVariants,
|
|
137
139
|
venueLogoNames
|
|
138
|
-
} from "./chunk-
|
|
140
|
+
} from "./chunk-XP7DREIX.mjs";
|
|
139
141
|
|
|
140
142
|
// src/auth/connect-button-view/index.tsx
|
|
141
143
|
import * as DropdownMenu from "@radix-ui/react-dropdown-menu";
|
|
@@ -751,9 +753,11 @@ export {
|
|
|
751
753
|
LinkAccountsIcon,
|
|
752
754
|
LoadingIcon,
|
|
753
755
|
MarketDetails,
|
|
756
|
+
MarketDetailsList,
|
|
754
757
|
Modal,
|
|
755
758
|
NumberValue,
|
|
756
759
|
OnboardingModal,
|
|
760
|
+
OnrampModal,
|
|
757
761
|
PencilIcon,
|
|
758
762
|
PlaceOrder,
|
|
759
763
|
PlaySquareIcon,
|