@agg-market/ui 8.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-SBLIHCN2.mjs → chunk-55YYUTBK.mjs} +807 -358
- package/dist/{chunk-JE4MV5RL.mjs → chunk-5G4T5R2H.mjs} +6 -2
- package/dist/{chunk-TLFRGJ5B.mjs → chunk-GYOCLZGH.mjs} +564 -414
- package/dist/{chunk-KRCRD4AJ.mjs → chunk-RYQSVETG.mjs} +212 -174
- package/dist/{chunk-WKY3IN52.mjs → chunk-XP7DREIX.mjs} +54 -15
- package/dist/events.js +604 -421
- package/dist/events.mjs +6 -4
- package/dist/index.js +1616 -948
- package/dist/index.mjs +10 -6
- package/dist/modals.js +1185 -374
- package/dist/modals.mjs +4 -2
- package/dist/pages.js +1434 -1005
- package/dist/pages.mjs +4 -4
- package/dist/primitives.js +53 -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 +6 -4
- package/dist/types/events/item/event-list-item.types.d.ts +6 -4
- package/dist/types/events/item/event-list-item.utils.d.mts +5 -5
- package/dist/types/events/item/event-list-item.utils.d.ts +5 -5
- package/dist/types/events/item/index.d.mts +1 -1
- package/dist/types/events/item/index.d.ts +1 -1
- package/dist/types/events/item-details/event-list-item-details.types.d.mts +3 -5
- package/dist/types/events/item-details/event-list-item-details.types.d.ts +3 -5
- 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 +6 -5
- package/dist/types/events/list/event-list.types.d.ts +6 -5
- package/dist/types/events/list/event-list.utils.d.mts +5 -5
- package/dist/types/events/list/event-list.utils.d.ts +5 -5
- 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 +35 -9
- package/dist/types/events/market-details/market-details.types.d.ts +35 -9
- package/dist/types/events/market-details/market-details.utils.d.mts +28 -12
- package/dist/types/events/market-details/market-details.utils.d.ts +28 -12
- package/dist/types/modals/index.d.mts +1 -0
- package/dist/types/modals/index.d.ts +1 -0
- package/dist/types/onramp/index.d.mts +6 -0
- package/dist/types/onramp/index.d.ts +6 -0
- package/dist/types/onramp/onramp-modal.constants.d.mts +9 -0
- package/dist/types/onramp/onramp-modal.constants.d.ts +9 -0
- package/dist/types/onramp/onramp-modal.types.d.mts +64 -0
- package/dist/types/onramp/onramp-modal.types.d.ts +64 -0
- package/dist/types/onramp/steps/quote-card.d.mts +8 -0
- package/dist/types/onramp/steps/quote-card.d.ts +8 -0
- package/dist/types/onramp/steps/quote-form.d.mts +12 -0
- package/dist/types/onramp/steps/quote-form.d.ts +12 -0
- package/dist/types/onramp/steps/quote-selection.d.mts +14 -0
- package/dist/types/onramp/steps/quote-selection.d.ts +14 -0
- package/dist/types/onramp/steps/widget.d.mts +7 -0
- package/dist/types/onramp/steps/widget.d.ts +7 -0
- package/dist/types/pages/event-market/event-market.types.d.mts +4 -2
- package/dist/types/pages/event-market/event-market.types.d.ts +4 -2
- 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 +18 -1
- package/dist/types/primitives/chart/index.d.ts +18 -1
- package/dist/types/primitives/venue-logo/index.d.mts +1 -1
- package/dist/types/primitives/venue-logo/index.d.ts +1 -1
- package/dist/types/trading/types.d.mts +2 -2
- package/dist/types/trading/types.d.ts +2 -2
- 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,
|