@agg-market/ui 4.0.0 → 5.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-HOXTJ742.mjs → chunk-34IRJYSU.mjs} +1 -1
- package/dist/chunk-4343LYSH.mjs +45 -0
- package/dist/{chunk-LA3FBBSJ.mjs → chunk-CTYJVVHJ.mjs} +25 -2
- package/dist/{chunk-GNSPZ53C.mjs → chunk-DHBHKIJR.mjs} +73 -15
- package/dist/{chunk-OH56VUYK.mjs → chunk-GFBF2J3Y.mjs} +14 -7
- package/dist/{chunk-P2PJBO5C.mjs → chunk-KIYMVWL4.mjs} +1 -1
- package/dist/{chunk-QM7CGMFG.mjs → chunk-MKVGQ7AS.mjs} +12 -0
- package/dist/{chunk-JNH64AKR.mjs → chunk-Q6DGDBPV.mjs} +58 -4
- package/dist/{chunk-DCORNTCY.mjs → chunk-QDMHLRDY.mjs} +31 -62
- package/dist/{chunk-MBHTXNHX.mjs → chunk-T7TATHPD.mjs} +32 -8
- package/dist/chunk-XUCS575S.mjs +65 -0
- package/dist/event-list-item-details.js +1529 -72
- package/dist/event-list-item-details.mjs +7 -3
- package/dist/event-list-item.js +292 -71
- package/dist/event-list-item.mjs +5 -2
- package/dist/event-list.js +628 -404
- package/dist/event-list.mjs +6 -3
- package/dist/event-market-page.d.mts +1 -1
- package/dist/event-market-page.d.ts +1 -1
- package/dist/event-market-page.js +2478 -2268
- package/dist/event-market-page.mjs +7 -5
- package/dist/home-page.js +638 -414
- package/dist/home-page.mjs +7 -4
- package/dist/index.d.mts +3 -2
- package/dist/index.d.ts +3 -2
- package/dist/index.js +1062 -858
- package/dist/index.mjs +18 -13
- package/dist/market-details.js +645 -391
- package/dist/market-details.mjs +6 -3
- package/dist/place-order.d.mts +1 -1
- package/dist/place-order.d.ts +1 -1
- package/dist/search.js +3 -0
- package/dist/search.mjs +2 -1
- package/dist/settlement.d.mts +1 -1
- package/dist/settlement.d.ts +1 -1
- package/dist/state-message.d.mts +16 -0
- package/dist/state-message.d.ts +16 -0
- package/dist/state-message.js +1629 -0
- package/dist/state-message.mjs +14 -0
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/package.json +14 -2
- package/dist/{types-DkGlbmXq.d.mts → types-BImwqY4o.d.mts} +4 -4
- package/dist/{types-DkGlbmXq.d.ts → types-BImwqY4o.d.ts} +4 -4
|
@@ -285,20 +285,20 @@ declare const placeOrderViewModelSchema: z.ZodObject<{
|
|
|
285
285
|
actionLabel?: string | undefined;
|
|
286
286
|
}>>;
|
|
287
287
|
}, "strip", z.ZodTypeAny, {
|
|
288
|
+
title: string;
|
|
288
289
|
result: {
|
|
289
290
|
value: string;
|
|
290
291
|
label: string;
|
|
291
292
|
tone: "default" | "success";
|
|
292
293
|
hint: string;
|
|
293
294
|
};
|
|
294
|
-
|
|
295
|
+
actionLabel: string;
|
|
295
296
|
outcomes: {
|
|
296
297
|
id: string;
|
|
297
298
|
label: string;
|
|
298
299
|
priceLabel: string;
|
|
299
300
|
}[];
|
|
300
301
|
activeTab: "buy" | "sell";
|
|
301
|
-
actionLabel: string;
|
|
302
302
|
marketDate: string | Date;
|
|
303
303
|
buyLabel: string;
|
|
304
304
|
sellLabel: string;
|
|
@@ -328,20 +328,20 @@ declare const placeOrderViewModelSchema: z.ZodObject<{
|
|
|
328
328
|
marketImageUrl?: string | undefined;
|
|
329
329
|
isDismissible?: boolean | undefined;
|
|
330
330
|
}, {
|
|
331
|
+
title: string;
|
|
331
332
|
result: {
|
|
332
333
|
value: string;
|
|
333
334
|
label: string;
|
|
334
335
|
tone: "default" | "success";
|
|
335
336
|
hint: string;
|
|
336
337
|
};
|
|
337
|
-
|
|
338
|
+
actionLabel: string;
|
|
338
339
|
outcomes: {
|
|
339
340
|
id: string;
|
|
340
341
|
label: string;
|
|
341
342
|
priceLabel: string;
|
|
342
343
|
}[];
|
|
343
344
|
activeTab: "buy" | "sell";
|
|
344
|
-
actionLabel: string;
|
|
345
345
|
marketDate: string | Date;
|
|
346
346
|
buyLabel: string;
|
|
347
347
|
sellLabel: string;
|