@agg-build/ui 1.2.12 → 2.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/README.md +34 -1
- package/dist/{chunk-U55T5BPE.mjs → chunk-2UKDQ7WP.mjs} +44 -13
- package/dist/{chunk-X3KCFWXN.mjs → chunk-2ZS3BPSF.mjs} +1433 -1349
- package/dist/{chunk-IBOE7DRY.mjs → chunk-4CM4F4S6.mjs} +26 -27
- package/dist/{chunk-YSW4ULL5.mjs → chunk-HH7L3KLS.mjs} +1 -1
- package/dist/{chunk-3JXBOU24.mjs → chunk-R3U6YXSQ.mjs} +146 -81
- package/dist/{chunk-J6WELNCX.mjs → chunk-RF2EPYLN.mjs} +572 -181
- package/dist/{chunk-4WBQTUPW.mjs → chunk-RWOF44TC.mjs} +606 -324
- package/dist/events.js +2081 -1727
- package/dist/events.mjs +5 -3
- package/dist/index.js +4535 -3695
- package/dist/index.mjs +13 -9
- package/dist/modals.js +964 -899
- package/dist/modals.mjs +3 -3
- package/dist/pages.js +3945 -3123
- package/dist/pages.mjs +6 -6
- package/dist/primitives.js +1344 -1251
- package/dist/primitives.mjs +3 -1
- package/dist/styles.css +1 -1
- package/dist/tailwind.css +1 -1
- package/dist/trading.js +828 -688
- package/dist/trading.mjs +4 -4
- package/dist/types/events/item/event-list-item-v2.utils.d.mts +28 -0
- package/dist/types/events/item/event-list-item-v2.utils.d.ts +28 -0
- package/dist/types/events/item/event-list-item.constants.d.mts +1 -1
- package/dist/types/events/item/event-list-item.constants.d.ts +1 -1
- package/dist/types/events/item/index.d.mts +4 -0
- package/dist/types/events/item/index.d.ts +4 -0
- package/dist/types/events/list/event-list.types.d.mts +2 -0
- package/dist/types/events/list/event-list.types.d.ts +2 -0
- package/dist/types/events/list/event-list.utils.d.mts +17 -2
- package/dist/types/events/list/event-list.utils.d.ts +17 -2
- package/dist/types/events/list/index.d.mts +1 -1
- package/dist/types/events/list/index.d.ts +1 -1
- package/dist/types/pages/home/home.types.d.mts +1 -0
- package/dist/types/pages/home/home.types.d.ts +1 -0
- package/dist/types/pages/user-profile/user-profile.types.d.mts +30 -4
- package/dist/types/pages/user-profile/user-profile.types.d.ts +30 -4
- 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/gift-bonus.d.mts +5 -0
- package/dist/types/primitives/icon/svg/gift-bonus.d.ts +5 -0
- package/dist/types/primitives/search/search.types.d.mts +2 -1
- package/dist/types/primitives/search/search.types.d.ts +2 -1
- package/dist/types/primitives/skeleton/index.d.mts +1 -1
- package/dist/types/primitives/skeleton/index.d.ts +1 -1
- package/dist/types/primitives/skeleton/skeleton.types.d.mts +4 -0
- package/dist/types/primitives/skeleton/skeleton.types.d.ts +4 -0
- package/dist/types/primitives/skeleton/views/event-list-skeleton-view.d.mts +1 -1
- package/dist/types/primitives/skeleton/views/event-list-skeleton-view.d.ts +1 -1
- package/dist/types/profile/tabs/accounts-wallets-tab.d.mts +1 -1
- package/dist/types/profile/tabs/accounts-wallets-tab.d.ts +1 -1
- package/dist/types/trading/place-order/index.d.mts +1 -1
- package/dist/types/trading/place-order/index.d.ts +1 -1
- package/dist/types/trading/place-order/index.place-order.types.d.mts +4 -1
- package/dist/types/trading/place-order/index.place-order.types.d.ts +4 -1
- package/dist/types/trading/place-order/index.place-order.utils.d.mts +2 -0
- package/dist/types/trading/place-order/index.place-order.utils.d.ts +2 -0
- package/package.json +3 -3
package/dist/trading.js
CHANGED
|
@@ -10,6 +10,7 @@ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
|
|
|
10
10
|
var __getProtoOf = Object.getPrototypeOf;
|
|
11
11
|
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
12
12
|
var __propIsEnum = Object.prototype.propertyIsEnumerable;
|
|
13
|
+
var __pow = Math.pow;
|
|
13
14
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
14
15
|
var __spreadValues = (a, b) => {
|
|
15
16
|
for (var prop in b || (b = {}))
|
|
@@ -281,11 +282,6 @@ SkeletonBlock.displayName = "SkeletonBlock";
|
|
|
281
282
|
|
|
282
283
|
// src/primitives/skeleton/views/event-list-item-skeleton-view.tsx
|
|
283
284
|
var import_hooks4 = require("@agg-build/hooks");
|
|
284
|
-
|
|
285
|
-
// src/events/item/event-list-item.constants.ts
|
|
286
|
-
var baseCardClassName = "gap-3 overflow-hidden p-5 w-full";
|
|
287
|
-
|
|
288
|
-
// src/primitives/skeleton/views/event-list-item-skeleton-view.tsx
|
|
289
285
|
var import_jsx_runtime3 = require("react/jsx-runtime");
|
|
290
286
|
var EventListItemSkeletonView = ({
|
|
291
287
|
className,
|
|
@@ -293,33 +289,55 @@ var EventListItemSkeletonView = ({
|
|
|
293
289
|
isStandalone = false
|
|
294
290
|
}) => {
|
|
295
291
|
const labels = (0, import_hooks4.useLabels)();
|
|
296
|
-
const outcomeTitleWidths = ["w-40", "w-[200px]"];
|
|
292
|
+
const outcomeTitleWidths = ["max-w-40", "max-w-[200px]"];
|
|
297
293
|
return /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
298
294
|
Card,
|
|
299
295
|
{
|
|
300
|
-
className: cn(
|
|
296
|
+
className: cn(
|
|
297
|
+
"agg-event-card-skeleton group/agg-skeleton min-w-60 md:min-w-90 gap-4 overflow-hidden p-4 w-full",
|
|
298
|
+
className
|
|
299
|
+
),
|
|
301
300
|
role: isStandalone ? "status" : void 0,
|
|
302
301
|
"aria-label": isStandalone ? ariaLabel != null ? ariaLabel : labels.eventItem.loading : void 0,
|
|
303
302
|
"aria-busy": isStandalone || void 0,
|
|
304
303
|
"aria-hidden": isStandalone ? void 0 : true,
|
|
305
304
|
children: [
|
|
306
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "flex h-
|
|
307
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "size-10! rounded-agg-lg" }),
|
|
308
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "h-6 w-
|
|
305
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "agg-event-skeleton-header flex h-12 w-full items-center gap-3", children: [
|
|
306
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-image size-10! rounded-agg-lg" }),
|
|
307
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-title h-6 w-[240px] max-w-[calc(100%-52px)] rounded-agg-sm" })
|
|
309
308
|
] }),
|
|
310
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "flex flex-col gap-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
309
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)("div", { className: "agg-event-skeleton-outcomes flex w-full flex-col gap-4", children: outcomeTitleWidths.map((outcomeTitleWidth, index) => /* @__PURE__ */ (0, import_jsx_runtime3.jsxs)(
|
|
310
|
+
"div",
|
|
311
|
+
{
|
|
312
|
+
className: "agg-event-skeleton-outcome-row flex w-full items-center justify-between gap-3",
|
|
313
|
+
children: [
|
|
314
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(
|
|
315
|
+
SkeletonBlock,
|
|
316
|
+
{
|
|
317
|
+
className: cn(
|
|
318
|
+
"agg-event-skeleton-outcome-title h-5 w-full rounded-agg-sm",
|
|
319
|
+
outcomeTitleWidth
|
|
320
|
+
)
|
|
321
|
+
}
|
|
322
|
+
),
|
|
323
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "agg-event-skeleton-price-strip flex shrink-0 items-center gap-2", children: [
|
|
324
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-outcome-pill h-[30px] w-[68px] rounded-agg-full" }),
|
|
325
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-outcome-pill h-[30px] w-[68px] rounded-agg-full" })
|
|
326
|
+
] })
|
|
327
|
+
]
|
|
328
|
+
},
|
|
329
|
+
index
|
|
330
|
+
)) }),
|
|
331
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "agg-event-skeleton-footer flex w-full items-center justify-between gap-5 text-agg-muted-foreground", children: [
|
|
332
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "agg-event-skeleton-meta flex min-w-0 flex-1 items-center gap-2", children: [
|
|
333
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-matched-badge h-5 w-[68px] rounded-agg-full" }),
|
|
334
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsxs)("div", { className: "agg-event-skeleton-venues flex h-[14px] items-center gap-1 overflow-hidden", children: [
|
|
335
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-venue-logo size-[14px] rounded-agg-sm" }),
|
|
336
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-venue-logo size-[14px] rounded-agg-sm" }),
|
|
337
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-venue-logo size-[14px] rounded-agg-sm" })
|
|
320
338
|
] })
|
|
321
339
|
] }),
|
|
322
|
-
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "h-5 w-[60px] rounded-agg-sm" })
|
|
340
|
+
/* @__PURE__ */ (0, import_jsx_runtime3.jsx)(SkeletonBlock, { className: "agg-event-skeleton-volume h-5 w-[60px] rounded-agg-sm" })
|
|
323
341
|
] })
|
|
324
342
|
]
|
|
325
343
|
}
|
|
@@ -330,7 +348,12 @@ EventListItemSkeletonView.displayName = "EventListItemSkeletonView";
|
|
|
330
348
|
// src/primitives/skeleton/views/event-list-skeleton-view.tsx
|
|
331
349
|
var import_jsx_runtime4 = require("react/jsx-runtime");
|
|
332
350
|
var DEFAULT_SKELETON_EVENTS_LIMIT = 20;
|
|
333
|
-
var
|
|
351
|
+
var SIDEBAR_SKELETON_ROWS = 8;
|
|
352
|
+
var EventListSkeletonView = ({
|
|
353
|
+
className,
|
|
354
|
+
ariaLabel,
|
|
355
|
+
withSidebar
|
|
356
|
+
}) => {
|
|
334
357
|
const labels = (0, import_hooks5.useLabels)();
|
|
335
358
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(
|
|
336
359
|
"section",
|
|
@@ -344,14 +367,25 @@ var EventListSkeletonView = ({ className, ariaLabel }) => {
|
|
|
344
367
|
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SkeletonBlock, { className: "h-7 w-[120px] rounded-agg-md" }),
|
|
345
368
|
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SkeletonBlock, { className: "h-8 w-full rounded-agg-md md:w-[400px]" })
|
|
346
369
|
] }),
|
|
347
|
-
/* @__PURE__ */ (0, import_jsx_runtime4.
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
className: "w-full
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
370
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: cn("flex w-full gap-6", withSidebar ? "md:items-start" : ""), children: [
|
|
371
|
+
withSidebar ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)("aside", { className: "agg-event-list-skeleton-sidebar hidden w-[200px] shrink-0 md:block", children: /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "flex w-full flex-col gap-1 rounded-[8px] border border-agg-separator bg-agg-secondary p-2", children: [
|
|
372
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SkeletonBlock, { className: "h-11 w-full rounded-[6px]" }),
|
|
373
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SkeletonBlock, { className: "h-11 w-full rounded-[6px]" }),
|
|
374
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsxs)("div", { className: "flex w-full flex-col gap-1 pl-4", children: [
|
|
375
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SkeletonBlock, { className: "h-11 w-full rounded-[6px]" }),
|
|
376
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SkeletonBlock, { className: "h-11 w-full rounded-[6px]" })
|
|
377
|
+
] }),
|
|
378
|
+
Array.from({ length: SIDEBAR_SKELETON_ROWS - 4 }).map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(SkeletonBlock, { className: "h-11 w-full rounded-[6px]" }, index))
|
|
379
|
+
] }) }) : null,
|
|
380
|
+
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)("div", { className: "agg-event-list-skeleton-grid grid w-full grid-cols-[repeat(auto-fill,minmax(240px,1fr))] md:grid-cols-[repeat(auto-fill,minmax(360px,1fr))] gap-4", children: Array.from({ length: DEFAULT_SKELETON_EVENTS_LIMIT }).map((_, index) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
381
|
+
EventListItemSkeletonView,
|
|
382
|
+
{
|
|
383
|
+
isStandalone: false,
|
|
384
|
+
className: "w-full min-w-0 max-w-none"
|
|
385
|
+
},
|
|
386
|
+
index
|
|
387
|
+
)) })
|
|
388
|
+
] })
|
|
355
389
|
]
|
|
356
390
|
}
|
|
357
391
|
);
|
|
@@ -611,14 +645,14 @@ var SearchSkeletonRow = () => {
|
|
|
611
645
|
] })
|
|
612
646
|
] })
|
|
613
647
|
] }),
|
|
614
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "flex w-
|
|
648
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "flex w-auto min-w-0 shrink items-center gap-2 sm:w-[200px] sm:shrink-0", children: [
|
|
615
649
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "size-4 rounded-[4px]" }),
|
|
616
650
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsxs)("div", { className: "flex min-w-0 flex-1 items-center gap-2", children: [
|
|
617
651
|
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-6 w-10 rounded-agg-sm" }),
|
|
618
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "h-4 w-[60px] rounded-agg-sm" })
|
|
652
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "hidden h-4 w-[60px] rounded-agg-sm sm:block" })
|
|
619
653
|
] })
|
|
620
654
|
] }),
|
|
621
|
-
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "size-5 rounded-[4px]" })
|
|
655
|
+
/* @__PURE__ */ (0, import_jsx_runtime8.jsx)(SkeletonBlock, { className: "hidden size-5 rounded-[4px] sm:block" })
|
|
622
656
|
] });
|
|
623
657
|
};
|
|
624
658
|
var SearchSkeletonView = ({ className, ariaLabel }) => {
|
|
@@ -825,7 +859,12 @@ var resolveSkeletonView = (view) => {
|
|
|
825
859
|
|
|
826
860
|
// src/primitives/skeleton/index.tsx
|
|
827
861
|
var import_jsx_runtime12 = require("react/jsx-runtime");
|
|
828
|
-
var Skeleton = ({
|
|
862
|
+
var Skeleton = ({
|
|
863
|
+
view,
|
|
864
|
+
className,
|
|
865
|
+
ariaLabel,
|
|
866
|
+
withSidebar
|
|
867
|
+
}) => {
|
|
829
868
|
const resolvedView = resolveSkeletonView(view);
|
|
830
869
|
if (resolvedView === skeletonViews.eventListItem) {
|
|
831
870
|
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(EventListItemSkeletonView, { className, ariaLabel, isStandalone: true });
|
|
@@ -854,7 +893,7 @@ var Skeleton = ({ view, className, ariaLabel }) => {
|
|
|
854
893
|
if (resolvedView === skeletonViews.userProfilePositionsActivity) {
|
|
855
894
|
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(UserProfilePositionsActivitySkeletonView, { className, ariaLabel });
|
|
856
895
|
}
|
|
857
|
-
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(EventListSkeletonView, { className, ariaLabel });
|
|
896
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(EventListSkeletonView, { className, ariaLabel, withSidebar });
|
|
858
897
|
};
|
|
859
898
|
Skeleton.displayName = "Skeleton";
|
|
860
899
|
|
|
@@ -2745,38 +2784,67 @@ var ExternalLinkIcon = (_a) => {
|
|
|
2745
2784
|
};
|
|
2746
2785
|
ExternalLinkIcon.displayName = "ExternalLinkIcon";
|
|
2747
2786
|
|
|
2748
|
-
// src/primitives/icon/svg/
|
|
2787
|
+
// src/primitives/icon/svg/gift-bonus.tsx
|
|
2749
2788
|
var import_jsx_runtime56 = require("react/jsx-runtime");
|
|
2750
|
-
var
|
|
2789
|
+
var GiftBonusIcon = (_a) => {
|
|
2751
2790
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2752
2791
|
return /* @__PURE__ */ (0, import_jsx_runtime56.jsxs)(
|
|
2753
2792
|
"svg",
|
|
2754
2793
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2755
|
-
viewBox: "0 0
|
|
2756
|
-
className
|
|
2794
|
+
viewBox: "0 0 16 16",
|
|
2795
|
+
className,
|
|
2757
2796
|
fill: "none"
|
|
2758
2797
|
}, getIconA11yProps(title2)), props), {
|
|
2759
2798
|
children: [
|
|
2760
2799
|
title2 ? /* @__PURE__ */ (0, import_jsx_runtime56.jsx)("title", { children: title2 }) : null,
|
|
2761
|
-
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)("rect", { width: "24", height: "24", fill: "#627EEA" }),
|
|
2762
2800
|
/* @__PURE__ */ (0, import_jsx_runtime56.jsx)(
|
|
2801
|
+
"path",
|
|
2802
|
+
{
|
|
2803
|
+
d: "M13.333 5.333H2.667a1.333 1.333 0 0 1 0-2.666h10.666a1.333 1.333 0 1 1 0 2.666ZM8 2.667v12M3.333 5.333v7.334A1.333 1.333 0 0 0 4.667 14h6.666a1.333 1.333 0 0 0 1.334-1.333V5.333M8 2.667H5.333A1.333 1.333 0 1 1 6.667 1.333C7.403 1.333 8 1.93 8 2.667ZM8 2.667h2.667a1.333 1.333 0 1 0-1.334-1.334C8.597 1.333 8 1.93 8 2.667Z",
|
|
2804
|
+
stroke: "currentColor",
|
|
2805
|
+
strokeWidth: "1.25",
|
|
2806
|
+
strokeLinecap: "round",
|
|
2807
|
+
strokeLinejoin: "round"
|
|
2808
|
+
}
|
|
2809
|
+
)
|
|
2810
|
+
]
|
|
2811
|
+
})
|
|
2812
|
+
);
|
|
2813
|
+
};
|
|
2814
|
+
GiftBonusIcon.displayName = "GiftBonusIcon";
|
|
2815
|
+
|
|
2816
|
+
// src/primitives/icon/svg/ethereum.tsx
|
|
2817
|
+
var import_jsx_runtime57 = require("react/jsx-runtime");
|
|
2818
|
+
var EthereumIcon = (_a) => {
|
|
2819
|
+
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2820
|
+
return /* @__PURE__ */ (0, import_jsx_runtime57.jsxs)(
|
|
2821
|
+
"svg",
|
|
2822
|
+
__spreadProps(__spreadValues(__spreadValues({
|
|
2823
|
+
viewBox: "0 0 24 24",
|
|
2824
|
+
className: cn("rounded-agg-sm", className),
|
|
2825
|
+
fill: "none"
|
|
2826
|
+
}, getIconA11yProps(title2)), props), {
|
|
2827
|
+
children: [
|
|
2828
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("title", { children: title2 }) : null,
|
|
2829
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("rect", { width: "24", height: "24", fill: "#627EEA" }),
|
|
2830
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2763
2831
|
"path",
|
|
2764
2832
|
{
|
|
2765
2833
|
d: "M12.0861 3.36035L11.9719 3.74822V15.0024L12.0861 15.1163L17.3101 12.0284L12.0861 3.36035Z",
|
|
2766
2834
|
fill: "#C1CCF6"
|
|
2767
2835
|
}
|
|
2768
2836
|
),
|
|
2769
|
-
/* @__PURE__ */ (0,
|
|
2770
|
-
/* @__PURE__ */ (0,
|
|
2837
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M12.0861 3.36035L6.86206 12.0284L12.0861 15.1163V9.65385V3.36035Z", fill: "#FFFFFF" }),
|
|
2838
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)(
|
|
2771
2839
|
"path",
|
|
2772
2840
|
{
|
|
2773
2841
|
d: "M12.0858 16.1054L12.0215 16.1838V20.1927L12.0858 20.3806L17.313 13.019L12.0858 16.1054Z",
|
|
2774
2842
|
fill: "#C1CCF6"
|
|
2775
2843
|
}
|
|
2776
2844
|
),
|
|
2777
|
-
/* @__PURE__ */ (0,
|
|
2778
|
-
/* @__PURE__ */ (0,
|
|
2779
|
-
/* @__PURE__ */ (0,
|
|
2845
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M12.0861 20.3806V16.1054L6.86206 13.019L12.0861 20.3806Z", fill: "#FFFFFF" }),
|
|
2846
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M12.0862 15.1163L17.3101 12.0283L12.0862 9.65381V15.1163Z", fill: "#8198EE" }),
|
|
2847
|
+
/* @__PURE__ */ (0, import_jsx_runtime57.jsx)("path", { d: "M6.86206 12.0283L12.0861 15.1163V9.65381L6.86206 12.0283Z", fill: "#C1CCF6" })
|
|
2780
2848
|
]
|
|
2781
2849
|
})
|
|
2782
2850
|
);
|
|
@@ -2784,10 +2852,10 @@ var EthereumIcon = (_a) => {
|
|
|
2784
2852
|
EthereumIcon.displayName = "EthereumIcon";
|
|
2785
2853
|
|
|
2786
2854
|
// src/primitives/icon/svg/google.tsx
|
|
2787
|
-
var
|
|
2855
|
+
var import_jsx_runtime58 = require("react/jsx-runtime");
|
|
2788
2856
|
var GoogleIcon = (_a) => {
|
|
2789
2857
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2790
|
-
return /* @__PURE__ */ (0,
|
|
2858
|
+
return /* @__PURE__ */ (0, import_jsx_runtime58.jsxs)(
|
|
2791
2859
|
"svg",
|
|
2792
2860
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2793
2861
|
viewBox: "0 0 24 24",
|
|
@@ -2795,29 +2863,29 @@ var GoogleIcon = (_a) => {
|
|
|
2795
2863
|
fill: "none"
|
|
2796
2864
|
}, getIconA11yProps(title2)), props), {
|
|
2797
2865
|
children: [
|
|
2798
|
-
title2 ? /* @__PURE__ */ (0,
|
|
2799
|
-
/* @__PURE__ */ (0,
|
|
2866
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime58.jsx)("title", { children: title2 }) : null,
|
|
2867
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2800
2868
|
"path",
|
|
2801
2869
|
{
|
|
2802
2870
|
d: "M23.0001 12.4427C23.0001 11.5198 22.9252 10.8464 22.7632 10.1479H12.2246V14.3134H18.4105C18.2858 15.3486 17.6124 16.9076 16.1157 17.9551L16.0948 18.0946L19.4269 20.6759L19.6577 20.699C21.7778 18.7409 23.0001 15.8599 23.0001 12.4427Z",
|
|
2803
2871
|
fill: "#4285F4"
|
|
2804
2872
|
}
|
|
2805
2873
|
),
|
|
2806
|
-
/* @__PURE__ */ (0,
|
|
2874
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2807
2875
|
"path",
|
|
2808
2876
|
{
|
|
2809
2877
|
d: "M12.2245 23.4181C15.2551 23.4181 17.7994 22.42 19.6577 20.699L16.1157 17.9551C15.1679 18.6161 13.8957 19.0779 12.2245 19.0779C9.25627 19.0779 6.73701 17.1199 5.83897 14.4136L5.70734 14.4248L2.24258 17.1062L2.19727 17.2321C4.04305 20.8988 7.83444 23.4181 12.2245 23.4181Z",
|
|
2810
2878
|
fill: "#34A853"
|
|
2811
2879
|
}
|
|
2812
2880
|
),
|
|
2813
|
-
/* @__PURE__ */ (0,
|
|
2881
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2814
2882
|
"path",
|
|
2815
2883
|
{
|
|
2816
2884
|
d: "M5.83897 14.4136C5.60201 13.7152 5.46486 12.9665 5.46486 12.1933C5.46486 11.42 5.602 10.6717 5.82649 9.97333L5.82021 9.82458L2.31203 7.1001L2.19725 7.15469C1.43651 8.67626 1 10.3849 1 12.1933C1 14.0017 1.43653 15.7106 2.19727 17.2321L5.83897 14.4136Z",
|
|
2817
2885
|
fill: "#FBBC05"
|
|
2818
2886
|
}
|
|
2819
2887
|
),
|
|
2820
|
-
/* @__PURE__ */ (0,
|
|
2888
|
+
/* @__PURE__ */ (0, import_jsx_runtime58.jsx)(
|
|
2821
2889
|
"path",
|
|
2822
2890
|
{
|
|
2823
2891
|
d: "M12.2245 5.30886C14.3322 5.30886 15.7539 6.21928 16.5646 6.98011L19.7324 3.88712C17.7869 2.07873 15.2551 0.96875 12.2245 0.96875C7.83444 0.96875 4.04304 3.48806 2.19725 7.15469L5.82649 9.97333C6.737 7.26698 9.25627 5.30886 12.2245 5.30886Z",
|
|
@@ -2831,10 +2899,10 @@ var GoogleIcon = (_a) => {
|
|
|
2831
2899
|
GoogleIcon.displayName = "GoogleIcon";
|
|
2832
2900
|
|
|
2833
2901
|
// src/primitives/icon/svg/hourglass-start.tsx
|
|
2834
|
-
var
|
|
2902
|
+
var import_jsx_runtime59 = require("react/jsx-runtime");
|
|
2835
2903
|
var HourglassStartIcon = (_a) => {
|
|
2836
2904
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2837
|
-
return /* @__PURE__ */ (0,
|
|
2905
|
+
return /* @__PURE__ */ (0, import_jsx_runtime59.jsxs)(
|
|
2838
2906
|
"svg",
|
|
2839
2907
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2840
2908
|
width: "16",
|
|
@@ -2845,8 +2913,8 @@ var HourglassStartIcon = (_a) => {
|
|
|
2845
2913
|
className
|
|
2846
2914
|
}, getIconA11yProps(title2)), props), {
|
|
2847
2915
|
children: [
|
|
2848
|
-
title2 ? /* @__PURE__ */ (0,
|
|
2849
|
-
/* @__PURE__ */ (0,
|
|
2916
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime59.jsx)("title", { children: title2 }) : null,
|
|
2917
|
+
/* @__PURE__ */ (0, import_jsx_runtime59.jsx)(
|
|
2850
2918
|
"path",
|
|
2851
2919
|
{
|
|
2852
2920
|
d: "M8.7324 1.90708C8.80282 1.43542 8.66324 0.95625 8.3499 0.5925C8.03115 0.2225 7.56907 0.0108337 7.08157 0.0108337H2.91907C2.43157 0.0108337 1.96949 0.223334 1.65115 0.593334C1.3374 0.9575 1.19824 1.43667 1.26907 1.90875C1.43824 3.03333 2.05449 4.07458 3.10282 5.01042C2.05407 5.94625 1.43782 6.9875 1.26907 8.11208C1.19824 8.58417 1.33782 9.06333 1.65115 9.4275C1.96949 9.79792 2.43199 10.0096 2.91907 10.0096H7.08157C7.56907 10.0096 8.03115 9.79792 8.3499 9.42792C8.66324 9.06417 8.80282 8.585 8.7324 8.11375C8.56449 6.99292 7.9474 5.95083 6.89657 5.01C7.9474 4.06917 8.56449 3.0275 8.7324 1.90708ZM7.46949 1.83333C7.05949 2.84667 6.19824 3.67583 5.54907 4.1925L5.26157 4.42208C5.10949 4.54292 4.8949 4.54292 4.74282 4.42292L4.44949 4.19C3.80074 3.67708 2.94157 2.85167 2.53074 1.83333C2.47865 1.70458 2.49449 1.55917 2.57157 1.44417C2.64907 1.32958 2.77865 1.26083 2.91699 1.26083H7.08365C7.2224 1.26083 7.35199 1.32917 7.42907 1.44417C7.50657 1.55875 7.52157 1.705 7.46949 1.83333ZM5.0299 3.54083L5.00074 3.56417L4.96657 3.53708C4.53032 3.19208 3.9874 2.69167 3.60365 2.09458H6.39615C6.01115 2.69 5.4674 3.19292 5.03032 3.54125L5.0299 3.54083Z",
|
|
@@ -2860,7 +2928,7 @@ var HourglassStartIcon = (_a) => {
|
|
|
2860
2928
|
HourglassStartIcon.displayName = "HourglassStartIcon";
|
|
2861
2929
|
|
|
2862
2930
|
// src/primitives/icon/svg/image.tsx
|
|
2863
|
-
var
|
|
2931
|
+
var import_jsx_runtime60 = require("react/jsx-runtime");
|
|
2864
2932
|
var ImageIcon = (_a) => {
|
|
2865
2933
|
var _b = _a, {
|
|
2866
2934
|
title: title2,
|
|
@@ -2871,7 +2939,7 @@ var ImageIcon = (_a) => {
|
|
|
2871
2939
|
"className",
|
|
2872
2940
|
"isDarkTheme"
|
|
2873
2941
|
]);
|
|
2874
|
-
return /* @__PURE__ */ (0,
|
|
2942
|
+
return /* @__PURE__ */ (0, import_jsx_runtime60.jsxs)(
|
|
2875
2943
|
"svg",
|
|
2876
2944
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2877
2945
|
viewBox: "0 0 40 40",
|
|
@@ -2879,9 +2947,9 @@ var ImageIcon = (_a) => {
|
|
|
2879
2947
|
fill: "none"
|
|
2880
2948
|
}, getIconA11yProps(title2)), props), {
|
|
2881
2949
|
children: [
|
|
2882
|
-
title2 ? /* @__PURE__ */ (0,
|
|
2883
|
-
/* @__PURE__ */ (0,
|
|
2884
|
-
/* @__PURE__ */ (0,
|
|
2950
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime60.jsx)("title", { children: title2 }) : null,
|
|
2951
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)("rect", { width: "40", height: "40", fill: "currentColor" }),
|
|
2952
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2885
2953
|
"path",
|
|
2886
2954
|
{
|
|
2887
2955
|
d: "M22.0001 16.3333C24.2092 16.3333 26.0001 14.5424 26.0001 12.3333C26.0001 10.1241 24.2092 8.33325 22.0001 8.33325C19.7909 8.33325 18.0001 10.1241 18.0001 12.3333C18.0001 14.5424 19.7909 16.3333 22.0001 16.3333Z",
|
|
@@ -2889,7 +2957,7 @@ var ImageIcon = (_a) => {
|
|
|
2889
2957
|
fillOpacity: "0.1"
|
|
2890
2958
|
}
|
|
2891
2959
|
),
|
|
2892
|
-
/* @__PURE__ */ (0,
|
|
2960
|
+
/* @__PURE__ */ (0, import_jsx_runtime60.jsx)(
|
|
2893
2961
|
"path",
|
|
2894
2962
|
{
|
|
2895
2963
|
d: "M29.8379 21.3615C29.5903 21.1242 29.262 20.9946 28.9224 21.0001C28.5828 21.0056 28.2586 21.1457 28.0186 21.3909L22.3828 27.1429L22.1904 27.3332L13.8385 19.0367C13.5855 18.799 13.2504 18.6666 12.9022 18.6666C12.5539 18.6666 12.2188 18.799 11.9658 19.0367L0 30.9233V39.9999H40V31.1341L29.8379 21.3615Z",
|
|
@@ -2904,10 +2972,10 @@ var ImageIcon = (_a) => {
|
|
|
2904
2972
|
ImageIcon.displayName = "ImageIcon";
|
|
2905
2973
|
|
|
2906
2974
|
// src/primitives/icon/svg/info.tsx
|
|
2907
|
-
var
|
|
2975
|
+
var import_jsx_runtime61 = require("react/jsx-runtime");
|
|
2908
2976
|
var InfoIcon = (_a) => {
|
|
2909
2977
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2910
|
-
return /* @__PURE__ */ (0,
|
|
2978
|
+
return /* @__PURE__ */ (0, import_jsx_runtime61.jsxs)(
|
|
2911
2979
|
"svg",
|
|
2912
2980
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2913
2981
|
viewBox: "0 0 12 12",
|
|
@@ -2915,23 +2983,23 @@ var InfoIcon = (_a) => {
|
|
|
2915
2983
|
fill: "none"
|
|
2916
2984
|
}, getIconA11yProps(title2)), props), {
|
|
2917
2985
|
children: [
|
|
2918
|
-
title2 ? /* @__PURE__ */ (0,
|
|
2919
|
-
/* @__PURE__ */ (0,
|
|
2920
|
-
/* @__PURE__ */ (0,
|
|
2986
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("title", { children: title2 }) : null,
|
|
2987
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsxs)("g", { clipPath: "url(#info_clip)", children: [
|
|
2988
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2921
2989
|
"path",
|
|
2922
2990
|
{
|
|
2923
2991
|
d: "M6 0C4.81331 0 3.65328 0.351894 2.66658 1.01118C1.67989 1.67047 0.910851 2.60754 0.456726 3.7039C0.00259972 4.80026 -0.11622 6.00666 0.115291 7.17054C0.346802 8.33443 0.918247 9.40353 1.75736 10.2426C2.59648 11.0818 3.66558 11.6532 4.82946 11.8847C5.99335 12.1162 7.19975 11.9974 8.2961 11.5433C9.39246 11.0892 10.3295 10.3201 10.9888 9.33342C11.6481 8.34673 12 7.18669 12 6C11.9983 4.40923 11.3656 2.88411 10.2407 1.75926C9.1159 0.634414 7.59077 0.00172054 6 0ZM6 11C5.0111 11 4.0444 10.7068 3.22215 10.1573C2.39991 9.60794 1.75904 8.82705 1.38061 7.91342C1.00217 6.99979 0.90315 5.99445 1.09608 5.02455C1.289 4.05464 1.76521 3.16373 2.46447 2.46447C3.16373 1.7652 4.05465 1.289 5.02455 1.09607C5.99446 0.903148 6.99979 1.00216 7.91342 1.3806C8.82705 1.75904 9.60794 2.3999 10.1574 3.22215C10.7068 4.04439 11 5.01109 11 6C10.9985 7.32564 10.4713 8.59656 9.53393 9.53393C8.59656 10.4713 7.32564 10.9985 6 11Z",
|
|
2924
2992
|
fill: "currentColor"
|
|
2925
2993
|
}
|
|
2926
2994
|
),
|
|
2927
|
-
/* @__PURE__ */ (0,
|
|
2995
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2928
2996
|
"path",
|
|
2929
2997
|
{
|
|
2930
2998
|
d: "M6 5H5.5C5.36739 5 5.24021 5.05268 5.14645 5.14645C5.05268 5.24021 5 5.36739 5 5.5C5 5.63261 5.05268 5.75979 5.14645 5.85355C5.24021 5.94732 5.36739 6 5.5 6H6V9C6 9.13261 6.05268 9.25979 6.14645 9.35355C6.24021 9.44732 6.36739 9.5 6.5 9.5C6.63261 9.5 6.75979 9.44732 6.85355 9.35355C6.94732 9.25979 7 9.13261 7 9V6C7 5.73478 6.89464 5.48043 6.70711 5.29289C6.51957 5.10536 6.26522 5 6 5Z",
|
|
2931
2999
|
fill: "currentColor"
|
|
2932
3000
|
}
|
|
2933
3001
|
),
|
|
2934
|
-
/* @__PURE__ */ (0,
|
|
3002
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)(
|
|
2935
3003
|
"path",
|
|
2936
3004
|
{
|
|
2937
3005
|
d: "M6 4C6.41421 4 6.75 3.66421 6.75 3.25C6.75 2.83579 6.41421 2.5 6 2.5C5.58579 2.5 5.25 2.83579 5.25 3.25C5.25 3.66421 5.58579 4 6 4Z",
|
|
@@ -2939,7 +3007,7 @@ var InfoIcon = (_a) => {
|
|
|
2939
3007
|
}
|
|
2940
3008
|
)
|
|
2941
3009
|
] }),
|
|
2942
|
-
/* @__PURE__ */ (0,
|
|
3010
|
+
/* @__PURE__ */ (0, import_jsx_runtime61.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("clipPath", { id: "info_clip", children: /* @__PURE__ */ (0, import_jsx_runtime61.jsx)("rect", { width: "12", height: "12", fill: "white" }) }) })
|
|
2943
3011
|
]
|
|
2944
3012
|
})
|
|
2945
3013
|
);
|
|
@@ -2955,10 +3023,10 @@ var iconSizeClasses = {
|
|
|
2955
3023
|
};
|
|
2956
3024
|
|
|
2957
3025
|
// src/primitives/search/search-empty-icon.tsx
|
|
2958
|
-
var
|
|
3026
|
+
var import_jsx_runtime62 = require("react/jsx-runtime");
|
|
2959
3027
|
var SearchEmptyIcon = (_a) => {
|
|
2960
3028
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2961
|
-
return /* @__PURE__ */ (0,
|
|
3029
|
+
return /* @__PURE__ */ (0, import_jsx_runtime62.jsxs)(
|
|
2962
3030
|
"svg",
|
|
2963
3031
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2964
3032
|
viewBox: "0 0 36 36",
|
|
@@ -2967,8 +3035,8 @@ var SearchEmptyIcon = (_a) => {
|
|
|
2967
3035
|
className
|
|
2968
3036
|
}, getIconA11yProps(title2)), props), {
|
|
2969
3037
|
children: [
|
|
2970
|
-
title2 ? /* @__PURE__ */ (0,
|
|
2971
|
-
/* @__PURE__ */ (0,
|
|
3038
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime62.jsx)("title", { children: title2 }) : null,
|
|
3039
|
+
/* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
|
|
2972
3040
|
"path",
|
|
2973
3041
|
{
|
|
2974
3042
|
d: "M35.2335 0.758837C32.958 -1.51816 27.2145 1.83434 23.82 4.17284C22.029 3.41534 20.061 2.99534 17.9955 2.99534C9.72603 2.99534 2.99703 9.72434 2.99703 17.9953C2.99703 20.0593 3.41553 22.0273 4.17303 23.8183C1.83303 27.2143 -1.51797 32.9563 0.759027 35.2318C1.26903 35.7418 1.97703 35.9758 2.83953 35.9758C5.11653 35.9758 8.47653 34.3453 12.1545 31.8103C13.9515 32.5723 15.9255 32.9953 17.9955 32.9953C26.2665 32.9953 32.9955 26.2663 32.9955 17.9953C32.9955 15.9313 32.577 13.9633 31.8195 12.1723C32.43 11.2873 32.985 10.4233 33.48 9.58934C35.2755 6.55784 37.038 2.56334 35.2335 0.758837ZM17.997 4.49534C23.295 4.49534 27.8895 7.56434 30.099 12.0163C27.885 15.1228 25.008 18.4783 21.744 21.7423C18.48 25.0063 15.1245 27.8818 12.018 30.0958C7.56453 27.8863 4.49703 23.2918 4.49703 17.9938C4.49703 10.5523 10.5525 4.49534 17.997 4.49534ZM8.82603 32.1883C4.66353 34.6558 2.47503 34.8283 1.82103 34.1713C0.979527 33.3313 1.65453 30.3028 4.93803 25.3663C6.28203 27.7393 8.25453 29.7103 10.6275 31.0558C10.014 31.4623 9.41103 31.8418 8.82603 32.1883ZM31.497 17.9953C31.497 25.4383 25.4415 31.4953 17.997 31.4953C16.4655 31.4953 14.994 31.2388 13.62 30.7663C16.6755 28.5178 19.875 25.7323 22.8045 22.8028C25.8645 19.7428 28.593 16.5988 30.7755 13.6363C31.2435 15.0043 31.497 16.4698 31.497 17.9938V17.9953ZM31.0575 10.6243C29.7135 8.25134 27.741 6.27884 25.368 4.93484C30.3045 1.65134 33.333 0.979337 34.173 1.81784C34.83 2.47484 34.6545 4.66184 32.19 8.82284C31.8435 9.40934 31.464 10.0108 31.0575 10.6243Z",
|
|
@@ -2982,10 +3050,10 @@ var SearchEmptyIcon = (_a) => {
|
|
|
2982
3050
|
SearchEmptyIcon.displayName = "SearchEmptyIcon";
|
|
2983
3051
|
|
|
2984
3052
|
// src/primitives/icon/svg/activity.tsx
|
|
2985
|
-
var
|
|
3053
|
+
var import_jsx_runtime63 = require("react/jsx-runtime");
|
|
2986
3054
|
var ActivityIcon = (_a) => {
|
|
2987
3055
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
2988
|
-
return /* @__PURE__ */ (0,
|
|
3056
|
+
return /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
|
|
2989
3057
|
"svg",
|
|
2990
3058
|
__spreadProps(__spreadValues(__spreadValues({
|
|
2991
3059
|
viewBox: "0 0 24 24",
|
|
@@ -2993,8 +3061,8 @@ var ActivityIcon = (_a) => {
|
|
|
2993
3061
|
fill: "none"
|
|
2994
3062
|
}, getIconA11yProps(title2)), props), {
|
|
2995
3063
|
children: [
|
|
2996
|
-
title2 ? /* @__PURE__ */ (0,
|
|
2997
|
-
/* @__PURE__ */ (0,
|
|
3064
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime63.jsx)("title", { children: title2 }) : null,
|
|
3065
|
+
/* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
|
|
2998
3066
|
"path",
|
|
2999
3067
|
{
|
|
3000
3068
|
d: "M2 12h4l2.5-7 4 14 3-7h8.5",
|
|
@@ -3011,10 +3079,10 @@ var ActivityIcon = (_a) => {
|
|
|
3011
3079
|
ActivityIcon.displayName = "ActivityIcon";
|
|
3012
3080
|
|
|
3013
3081
|
// src/primitives/icon/svg/activity-chart.tsx
|
|
3014
|
-
var
|
|
3082
|
+
var import_jsx_runtime64 = require("react/jsx-runtime");
|
|
3015
3083
|
var ActivityChartIcon = (_a) => {
|
|
3016
3084
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3017
|
-
return /* @__PURE__ */ (0,
|
|
3085
|
+
return /* @__PURE__ */ (0, import_jsx_runtime64.jsxs)(
|
|
3018
3086
|
"svg",
|
|
3019
3087
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3020
3088
|
viewBox: "0 0 14 14",
|
|
@@ -3022,8 +3090,8 @@ var ActivityChartIcon = (_a) => {
|
|
|
3022
3090
|
fill: "none"
|
|
3023
3091
|
}, getIconA11yProps(title2)), props), {
|
|
3024
3092
|
children: [
|
|
3025
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3026
|
-
/* @__PURE__ */ (0,
|
|
3093
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("title", { children: title2 }) : null,
|
|
3094
|
+
/* @__PURE__ */ (0, import_jsx_runtime64.jsx)(
|
|
3027
3095
|
"path",
|
|
3028
3096
|
{
|
|
3029
3097
|
d: "M14 6.99987C14 7.32187 13.7392 7.5832 13.4167 7.5832H11.9782C11.7145 7.5832 11.4829 7.76112 11.4147 8.01487L10.4364 11.656C10.325 12.0206 10.0135 12.2499 9.65417 12.2499H9.64425C9.28083 12.2458 8.9705 12.0078 8.87192 11.6584L6.96208 3.9432L5.10825 10.4993C4.99683 10.8475 4.70575 11.0686 4.36158 11.082C4.00458 11.1013 3.70883 10.8983 3.577 10.5792L2.64367 7.96937C2.56025 7.73837 2.33975 7.58262 2.09417 7.58262H0.583333C0.26075 7.58262 0 7.32128 0 6.99928C0 6.67728 0.26075 6.41595 0.583333 6.41595H2.09475C2.83208 6.41595 3.49358 6.88203 3.74267 7.5762L4.28983 9.10803L6.2055 2.33262C6.32275 1.96803 6.62958 1.73353 6.99942 1.74928C7.35992 1.7557 7.66792 1.99312 7.7665 2.33962L9.66758 10.0198L10.2871 7.71212C10.4918 6.94912 11.1866 6.41595 11.977 6.41595H13.4155C13.7381 6.41595 13.9988 6.67728 13.9988 6.99928L14 6.99987Z",
|
|
@@ -3037,10 +3105,10 @@ var ActivityChartIcon = (_a) => {
|
|
|
3037
3105
|
ActivityChartIcon.displayName = "ActivityChartIcon";
|
|
3038
3106
|
|
|
3039
3107
|
// src/primitives/icon/svg/check-badge.tsx
|
|
3040
|
-
var
|
|
3108
|
+
var import_jsx_runtime65 = require("react/jsx-runtime");
|
|
3041
3109
|
var CheckBadgeIcon = (_a) => {
|
|
3042
3110
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3043
|
-
return /* @__PURE__ */ (0,
|
|
3111
|
+
return /* @__PURE__ */ (0, import_jsx_runtime65.jsxs)(
|
|
3044
3112
|
"svg",
|
|
3045
3113
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3046
3114
|
viewBox: "0 0 16 16",
|
|
@@ -3048,15 +3116,15 @@ var CheckBadgeIcon = (_a) => {
|
|
|
3048
3116
|
fill: "none"
|
|
3049
3117
|
}, getIconA11yProps(title2)), props), {
|
|
3050
3118
|
children: [
|
|
3051
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3052
|
-
/* @__PURE__ */ (0,
|
|
3119
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("title", { children: title2 }) : null,
|
|
3120
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("g", { clipPath: "url(#check-badge-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
|
|
3053
3121
|
"path",
|
|
3054
3122
|
{
|
|
3055
3123
|
d: "M15.4173 6.57883L13.9833 5.14283V3.9975C13.9833 2.89683 13.0886 2.00083 11.9893 2.00083H10.8453L9.4113 0.5655C8.6573 -0.1885 7.34397 -0.1885 6.59063 0.5655L5.15663 2.00083H4.01263C2.91263 2.00083 2.01863 2.89617 2.01863 3.9975V5.14283L0.583965 6.57883C-0.192702 7.3575 -0.192702 8.6235 0.583965 9.40217L2.01796 10.8382V11.9835C2.01796 13.0842 2.91263 13.9802 4.01196 13.9802H5.15596L6.58997 15.4155C6.96663 15.7922 7.46797 16.0002 8.00063 16.0002C8.5333 16.0002 9.03397 15.7922 9.41063 15.4155L10.8446 13.9802H11.9886C13.0886 13.9802 13.9826 13.0848 13.9826 11.9835V10.8382L15.4173 9.40217C16.194 8.6235 16.194 7.3575 15.4173 6.57883ZM12.136 6.8075L8.76663 10.1375C8.3573 10.5442 7.81797 10.7482 7.2793 10.7482C6.74063 10.7482 6.20396 10.5448 5.7933 10.1395L4.06063 8.4735C3.7993 8.21417 3.79663 7.79283 4.05596 7.53083C4.31596 7.27017 4.73663 7.26683 4.9993 7.52617L6.7313 9.1915C7.0333 9.49083 7.52463 9.4915 7.8273 9.1915L11.1973 5.86083C11.46 5.60083 11.8813 5.6035 12.1406 5.8655C12.4 6.1275 12.3973 6.54817 12.136 6.8075Z",
|
|
3056
3124
|
fill: "currentColor"
|
|
3057
3125
|
}
|
|
3058
3126
|
) }),
|
|
3059
|
-
/* @__PURE__ */ (0,
|
|
3127
|
+
/* @__PURE__ */ (0, import_jsx_runtime65.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("clipPath", { id: "check-badge-clip", children: /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3060
3128
|
]
|
|
3061
3129
|
})
|
|
3062
3130
|
);
|
|
@@ -3064,10 +3132,10 @@ var CheckBadgeIcon = (_a) => {
|
|
|
3064
3132
|
CheckBadgeIcon.displayName = "CheckBadgeIcon";
|
|
3065
3133
|
|
|
3066
3134
|
// src/primitives/icon/svg/chevron-down-thin.tsx
|
|
3067
|
-
var
|
|
3135
|
+
var import_jsx_runtime66 = require("react/jsx-runtime");
|
|
3068
3136
|
var ChevronDownThinIcon = (_a) => {
|
|
3069
3137
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3070
|
-
return /* @__PURE__ */ (0,
|
|
3138
|
+
return /* @__PURE__ */ (0, import_jsx_runtime66.jsxs)(
|
|
3071
3139
|
"svg",
|
|
3072
3140
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3073
3141
|
viewBox: "0 0 16 16",
|
|
@@ -3076,8 +3144,8 @@ var ChevronDownThinIcon = (_a) => {
|
|
|
3076
3144
|
className
|
|
3077
3145
|
}, getIconA11yProps(title2)), props), {
|
|
3078
3146
|
children: [
|
|
3079
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3080
|
-
/* @__PURE__ */ (0,
|
|
3147
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime66.jsx)("title", { children: title2 }) : null,
|
|
3148
|
+
/* @__PURE__ */ (0, import_jsx_runtime66.jsx)(
|
|
3081
3149
|
"path",
|
|
3082
3150
|
{
|
|
3083
3151
|
d: "M4 6L8 10L12 6",
|
|
@@ -3094,10 +3162,10 @@ var ChevronDownThinIcon = (_a) => {
|
|
|
3094
3162
|
ChevronDownThinIcon.displayName = "ChevronDownThinIcon";
|
|
3095
3163
|
|
|
3096
3164
|
// src/primitives/icon/svg/cross-circle.tsx
|
|
3097
|
-
var
|
|
3165
|
+
var import_jsx_runtime67 = require("react/jsx-runtime");
|
|
3098
3166
|
var CrossCircleIcon = (_a) => {
|
|
3099
3167
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3100
|
-
return /* @__PURE__ */ (0,
|
|
3168
|
+
return /* @__PURE__ */ (0, import_jsx_runtime67.jsxs)(
|
|
3101
3169
|
"svg",
|
|
3102
3170
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3103
3171
|
width: "16",
|
|
@@ -3108,8 +3176,8 @@ var CrossCircleIcon = (_a) => {
|
|
|
3108
3176
|
className
|
|
3109
3177
|
}, getIconA11yProps(title2)), props), {
|
|
3110
3178
|
children: [
|
|
3111
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3112
|
-
/* @__PURE__ */ (0,
|
|
3179
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("title", { children: title2 }) : null,
|
|
3180
|
+
/* @__PURE__ */ (0, import_jsx_runtime67.jsx)(
|
|
3113
3181
|
"path",
|
|
3114
3182
|
{
|
|
3115
3183
|
d: "M8 0C6.41775 0 4.87104 0.469192 3.55544 1.34824C2.23985 2.22729 1.21447 3.47672 0.608967 4.93853C0.00346629 6.40034 -0.15496 8.00887 0.153721 9.56072C0.462403 11.1126 1.22433 12.538 2.34315 13.6569C3.46197 14.7757 4.88743 15.5376 6.43928 15.8463C7.99113 16.155 9.59966 15.9965 11.0615 15.391C12.5233 14.7855 13.7727 13.7602 14.6518 12.4446C15.5308 11.129 16 9.58225 16 8C16 5.87827 15.1571 3.84344 13.6569 2.34315C12.1566 0.842855 10.1217 0 8 0ZM11.138 10.1953L10.1953 11.138L8 8.94267L5.80467 11.138L4.862 10.1953L7.05734 8L4.862 5.80467L5.80467 4.862L8 7.05733L10.1953 4.862L11.138 5.80467L8.94267 8L11.138 10.1953Z",
|
|
@@ -3123,10 +3191,10 @@ var CrossCircleIcon = (_a) => {
|
|
|
3123
3191
|
CrossCircleIcon.displayName = "CrossCircleIcon";
|
|
3124
3192
|
|
|
3125
3193
|
// src/primitives/icon/svg/discord.tsx
|
|
3126
|
-
var
|
|
3194
|
+
var import_jsx_runtime68 = require("react/jsx-runtime");
|
|
3127
3195
|
var DiscordIcon = (_a) => {
|
|
3128
3196
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3129
|
-
return /* @__PURE__ */ (0,
|
|
3197
|
+
return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
|
|
3130
3198
|
"svg",
|
|
3131
3199
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3132
3200
|
viewBox: "0 0 20 20",
|
|
@@ -3134,8 +3202,8 @@ var DiscordIcon = (_a) => {
|
|
|
3134
3202
|
fill: "none"
|
|
3135
3203
|
}, getIconA11yProps(title2)), props), {
|
|
3136
3204
|
children: [
|
|
3137
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3138
|
-
/* @__PURE__ */ (0,
|
|
3205
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("title", { children: title2 }) : null,
|
|
3206
|
+
/* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
|
|
3139
3207
|
"path",
|
|
3140
3208
|
{
|
|
3141
3209
|
d: "M16.3546 4.49236C15.1858 3.95607 13.9329 3.56111 12.6227 3.33499C12.599 3.3304 12.5754 3.34186 12.5624 3.36325C12.4012 3.64973 12.2224 4.02406 12.0979 4.31742C10.6884 4.10657 9.28659 4.10657 7.90615 4.31742C7.78162 4.01719 7.59598 3.64973 7.43479 3.36325C7.42181 3.34186 7.39812 3.33117 7.37444 3.33499C6.06504 3.56035 4.81218 3.95531 3.64258 4.49236C3.63265 4.49618 3.62348 4.50382 3.61813 4.51298C1.24151 8.06379 0.589865 11.5275 0.909193 14.9484C0.910721 14.9653 0.919888 14.9813 0.932875 14.9912C2.50125 16.1433 4.01997 16.8423 5.51119 17.3052C5.53487 17.3128 5.56008 17.3037 5.57536 17.2838C5.9283 16.8025 6.24228 16.2945 6.51195 15.7605C6.52799 15.7292 6.51271 15.6918 6.47986 15.6795C5.98101 15.4901 5.5066 15.2594 5.04976 14.9981C5.01386 14.9767 5.0108 14.9255 5.04365 14.9003C5.13991 14.8285 5.23617 14.7536 5.32784 14.678C5.34465 14.6643 5.36756 14.6612 5.38743 14.6704C8.38819 16.0401 11.6365 16.0401 14.6013 14.6704C14.6212 14.6612 14.6441 14.6635 14.6617 14.678C14.7534 14.7536 14.8496 14.8293 14.9466 14.9011C14.9803 14.9255 14.978 14.9775 14.9413 14.9989C14.4845 15.2655 14.01 15.4916 13.5104 15.6795C13.4776 15.6918 13.4638 15.73 13.4791 15.7613C13.7541 16.2945 14.0689 16.8025 14.4149 17.2838C14.4295 17.3044 14.4554 17.3128 14.4791 17.306C15.9772 16.8423 17.4967 16.1433 19.0643 14.992C19.078 14.9821 19.0865 14.9668 19.088 14.95C19.4699 10.995 18.4478 7.55959 16.3775 4.51451C16.3737 4.50382 16.3645 4.49618 16.3546 4.49236ZM6.96038 12.8659C6.05664 12.8659 5.31256 12.0363 5.31256 11.018C5.31256 9.99962 6.04213 9.16998 6.96038 9.16998C7.88552 9.16998 8.62272 10.0065 8.60821 11.018C8.60821 12.0371 7.87788 12.8659 6.96038 12.8659ZM13.0528 12.8659C12.1498 12.8659 11.405 12.0363 11.405 11.018C11.405 9.99962 12.1346 9.16998 13.0528 9.16998C13.978 9.16998 14.7152 10.0065 14.7007 11.018C14.7007 12.0371 13.978 12.8659 13.0528 12.8659Z",
|
|
@@ -3149,10 +3217,10 @@ var DiscordIcon = (_a) => {
|
|
|
3149
3217
|
DiscordIcon.displayName = "DiscordIcon";
|
|
3150
3218
|
|
|
3151
3219
|
// src/primitives/icon/svg/email.tsx
|
|
3152
|
-
var
|
|
3220
|
+
var import_jsx_runtime69 = require("react/jsx-runtime");
|
|
3153
3221
|
var EmailIcon = (_a) => {
|
|
3154
3222
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3155
|
-
return /* @__PURE__ */ (0,
|
|
3223
|
+
return /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
|
|
3156
3224
|
"svg",
|
|
3157
3225
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3158
3226
|
viewBox: "0 0 20 20",
|
|
@@ -3160,8 +3228,8 @@ var EmailIcon = (_a) => {
|
|
|
3160
3228
|
fill: "none"
|
|
3161
3229
|
}, getIconA11yProps(title2)), props), {
|
|
3162
3230
|
children: [
|
|
3163
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3164
|
-
/* @__PURE__ */ (0,
|
|
3231
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime69.jsx)("title", { children: title2 }) : null,
|
|
3232
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3165
3233
|
"path",
|
|
3166
3234
|
{
|
|
3167
3235
|
d: "M3.33333 3.33398H16.6667C17.5833 3.33398 18.3333 4.08398 18.3333 5.00065V15.0007C18.3333 15.9173 17.5833 16.6673 16.6667 16.6673H3.33333C2.41667 16.6673 1.66667 15.9173 1.66667 15.0007V5.00065C1.66667 4.08398 2.41667 3.33398 3.33333 3.33398Z",
|
|
@@ -3171,7 +3239,7 @@ var EmailIcon = (_a) => {
|
|
|
3171
3239
|
strokeLinejoin: "round"
|
|
3172
3240
|
}
|
|
3173
3241
|
),
|
|
3174
|
-
/* @__PURE__ */ (0,
|
|
3242
|
+
/* @__PURE__ */ (0, import_jsx_runtime69.jsx)(
|
|
3175
3243
|
"path",
|
|
3176
3244
|
{
|
|
3177
3245
|
d: "M18.3333 5L10 10.8333L1.66667 5",
|
|
@@ -3188,10 +3256,10 @@ var EmailIcon = (_a) => {
|
|
|
3188
3256
|
EmailIcon.displayName = "EmailIcon";
|
|
3189
3257
|
|
|
3190
3258
|
// src/primitives/icon/svg/internet-security.tsx
|
|
3191
|
-
var
|
|
3259
|
+
var import_jsx_runtime70 = require("react/jsx-runtime");
|
|
3192
3260
|
var InternetSecurityIcon = (_a) => {
|
|
3193
3261
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3194
|
-
return /* @__PURE__ */ (0,
|
|
3262
|
+
return /* @__PURE__ */ (0, import_jsx_runtime70.jsxs)(
|
|
3195
3263
|
"svg",
|
|
3196
3264
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3197
3265
|
viewBox: "0 0 60 60",
|
|
@@ -3199,15 +3267,15 @@ var InternetSecurityIcon = (_a) => {
|
|
|
3199
3267
|
fill: "none"
|
|
3200
3268
|
}, getIconA11yProps(title2)), props), {
|
|
3201
3269
|
children: [
|
|
3202
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3203
|
-
/* @__PURE__ */ (0,
|
|
3270
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("title", { children: title2 }) : null,
|
|
3271
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("g", { clipPath: "url(#internet-security-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
|
|
3204
3272
|
"path",
|
|
3205
3273
|
{
|
|
3206
3274
|
d: "M31.2125 58.9425C31.32 58.55 31.1175 58.13 30.855 57.84C30.76 57.7525 24.195 51.48 20.3075 42.5025H26.2525C26.9425 42.5025 27.5025 41.9425 27.5025 41.2525C27.5025 40.5625 26.9425 40.0025 26.2525 40.0025H19.33C18.2325 36.885 17.5025 33.52 17.5025 30.0025C17.5025 26.485 18.2325 23.12 19.33 20.0025H55.605C56.115 21.2975 56.5425 22.635 56.85 24.0225C57 24.695 57.6625 25.125 58.3425 24.9725C59.0175 24.8225 59.44 24.155 59.2925 23.48C56.275 9.88753 43.98 0.0225282 30.0425 2.81571e-05C13.49 -0.0224718 -0.00249965 13.4425 3.47359e-07 30C3.47359e-07 46.5425 13.4575 60 30 60C30.61 60.0025 31.1475 59.5325 31.2125 58.9425ZM20.305 17.5C23.3775 10.4025 28.0975 5.02003 30 3.02753C31.92 5.03253 36.6625 10.415 39.72 17.5H20.305ZM54.485 17.5H42.42C39.745 10.8325 35.645 5.56253 33.1075 2.70003C42.2725 3.76003 50.325 9.42003 54.485 17.5ZM26.9 2.68753C24.3525 5.54753 20.24 10.83 17.5725 17.5H5.535C9.6475 9.48503 17.565 3.74003 26.9 2.68753ZM4.41 20H16.6725C15.6625 23.12 15 26.4725 15 30C15 33.5275 15.6625 36.88 16.6725 40H4.41C3.1925 36.895 2.5 33.53 2.5 30C2.5 26.47 3.1925 23.105 4.41 20ZM5.535 42.5H17.5725C20.24 49.1725 24.3525 54.4525 26.9 57.3125C17.565 56.26 9.6475 50.515 5.535 42.5ZM55 38.3775V33.75C55 28.925 51.075 25 46.25 25C41.425 25 37.5 28.925 37.5 33.75V38.3775C34.555 39.7875 32.5 42.7725 32.5 46.25V51.25C32.5 56.075 36.425 60 41.25 60H51.25C56.075 60 60 56.075 60 51.25V46.25C60 42.7725 57.945 39.7875 55 38.3775ZM40 33.75C40 30.305 42.8025 27.5 46.25 27.5C49.6975 27.5 52.5 30.305 52.5 33.75V37.6275C52.0875 37.5675 51.6775 37.5 51.25 37.5H41.25C40.8225 37.5 40.4125 37.5675 40 37.6275V33.75ZM57.5 51.25C57.5 54.695 54.6975 57.5 51.25 57.5H41.25C37.8025 57.5 35 54.695 35 51.25V46.25C35 42.805 37.8025 40 41.25 40H51.25C54.6975 40 57.5 42.805 57.5 46.25V51.25ZM48.75 48.75C48.75 50.13 47.63 51.25 46.25 51.25C44.87 51.25 43.75 50.13 43.75 48.75C43.75 47.37 44.87 46.25 46.25 46.25C47.63 46.25 48.75 47.37 48.75 48.75Z",
|
|
3207
3275
|
fill: "currentColor"
|
|
3208
3276
|
}
|
|
3209
3277
|
) }),
|
|
3210
|
-
/* @__PURE__ */ (0,
|
|
3278
|
+
/* @__PURE__ */ (0, import_jsx_runtime70.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("clipPath", { id: "internet-security-clip", children: /* @__PURE__ */ (0, import_jsx_runtime70.jsx)("rect", { width: "60", height: "60", fill: "white" }) }) })
|
|
3211
3279
|
]
|
|
3212
3280
|
})
|
|
3213
3281
|
);
|
|
@@ -3215,10 +3283,10 @@ var InternetSecurityIcon = (_a) => {
|
|
|
3215
3283
|
InternetSecurityIcon.displayName = "InternetSecurityIcon";
|
|
3216
3284
|
|
|
3217
3285
|
// src/primitives/icon/svg/link-accounts.tsx
|
|
3218
|
-
var
|
|
3286
|
+
var import_jsx_runtime71 = require("react/jsx-runtime");
|
|
3219
3287
|
var LinkAccountsIcon = (_a) => {
|
|
3220
3288
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3221
|
-
return /* @__PURE__ */ (0,
|
|
3289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)(
|
|
3222
3290
|
"svg",
|
|
3223
3291
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3224
3292
|
width: "28",
|
|
@@ -3229,15 +3297,15 @@ var LinkAccountsIcon = (_a) => {
|
|
|
3229
3297
|
className
|
|
3230
3298
|
}, getIconA11yProps(title2)), props), {
|
|
3231
3299
|
children: [
|
|
3232
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3233
|
-
/* @__PURE__ */ (0,
|
|
3300
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("title", { children: title2 }) : null,
|
|
3301
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("g", { clipPath: "url(#clip0_link_accounts)", children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
|
|
3234
3302
|
"path",
|
|
3235
3303
|
{
|
|
3236
3304
|
d: "M28 18.0835C28 22.2648 24.598 25.6668 20.4167 25.6668H14.5833C10.402 25.6668 7 22.2648 7 18.0835C7 13.9022 10.402 10.5002 14.5833 10.5002H16.9167C17.2387 10.5002 17.5 10.7615 17.5 11.0835C17.5 11.4055 17.2387 11.6668 16.9167 11.6668H14.5833C11.0448 11.6668 8.16667 14.5462 8.16667 18.0835C8.16667 21.6208 11.0448 24.5002 14.5833 24.5002H20.4167C23.9552 24.5002 26.8333 21.6208 26.8333 18.0835C26.8333 15.7992 25.6037 13.67 23.625 12.5243C23.3462 12.3633 23.2505 12.0063 23.4127 11.7275C23.5725 11.4487 23.9283 11.3507 24.2095 11.514C26.5475 12.8662 28.0012 15.3827 28.0012 18.0823L28 18.0835ZM4.375 15.476C2.39517 14.3315 1.16667 12.2012 1.16667 9.91683C1.16667 6.3795 4.04483 3.50016 7.58333 3.50016H13.4167C16.9552 3.50016 19.8333 6.3795 19.8333 9.91683C19.8333 13.4542 16.9552 16.3335 13.4167 16.3335H11.0833C10.7613 16.3335 10.5 16.5948 10.5 16.9168C10.5 17.2388 10.7613 17.5002 11.0833 17.5002H13.4167C17.598 17.5002 21 14.0982 21 9.91683C21 5.7355 17.598 2.3335 13.4167 2.3335H7.58333C3.402 2.3335 0 5.7355 0 9.91683C0 12.6153 1.4525 15.133 3.79167 16.4852C4.0705 16.6462 4.4275 16.5517 4.5885 16.2717C4.75067 15.994 4.655 15.6358 4.37617 15.4748L4.375 15.476Z",
|
|
3237
3305
|
fill: "currentColor"
|
|
3238
3306
|
}
|
|
3239
3307
|
) }),
|
|
3240
|
-
/* @__PURE__ */ (0,
|
|
3308
|
+
/* @__PURE__ */ (0, import_jsx_runtime71.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("clipPath", { id: "clip0_link_accounts", children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
|
|
3241
3309
|
]
|
|
3242
3310
|
})
|
|
3243
3311
|
);
|
|
@@ -3245,10 +3313,10 @@ var LinkAccountsIcon = (_a) => {
|
|
|
3245
3313
|
LinkAccountsIcon.displayName = "LinkAccountsIcon";
|
|
3246
3314
|
|
|
3247
3315
|
// src/primitives/icon/svg/lock.tsx
|
|
3248
|
-
var
|
|
3316
|
+
var import_jsx_runtime72 = require("react/jsx-runtime");
|
|
3249
3317
|
var LockIcon = (_a) => {
|
|
3250
3318
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3251
|
-
return /* @__PURE__ */ (0,
|
|
3319
|
+
return /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
|
|
3252
3320
|
"svg",
|
|
3253
3321
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3254
3322
|
viewBox: "0 0 12 12",
|
|
@@ -3257,15 +3325,15 @@ var LockIcon = (_a) => {
|
|
|
3257
3325
|
xmlns: "http://www.w3.org/2000/svg"
|
|
3258
3326
|
}, getIconA11yProps(title2)), props), {
|
|
3259
3327
|
children: [
|
|
3260
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3261
|
-
/* @__PURE__ */ (0,
|
|
3328
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("title", { children: title2 }) : null,
|
|
3329
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3262
3330
|
"path",
|
|
3263
3331
|
{
|
|
3264
3332
|
d: "M9.5 4.212V3.5C9.5 2.57174 9.13125 1.6815 8.47487 1.02513C7.8185 0.368749 6.92826 0 6 0C5.07174 0 4.1815 0.368749 3.52513 1.02513C2.86875 1.6815 2.5 2.57174 2.5 3.5V4.212C2.05468 4.40635 1.67565 4.72626 1.40925 5.13261C1.14285 5.53895 1.00064 6.01412 1 6.5V9.5C1.00079 10.1628 1.26444 10.7982 1.73311 11.2669C2.20178 11.7356 2.8372 11.9992 3.5 12H8.5C9.1628 11.9992 9.79822 11.7356 10.2669 11.2669C10.7356 10.7982 10.9992 10.1628 11 9.5V6.5C10.9994 6.01412 10.8571 5.53895 10.5908 5.13261C10.3244 4.72626 9.94532 4.40635 9.5 4.212ZM3.5 3.5C3.5 2.83696 3.76339 2.20107 4.23223 1.73223C4.70107 1.26339 5.33696 1 6 1C6.66304 1 7.29893 1.26339 7.76777 1.73223C8.23661 2.20107 8.5 2.83696 8.5 3.5V4H3.5V3.5ZM10 9.5C10 9.89782 9.84196 10.2794 9.56066 10.5607C9.27936 10.842 8.89782 11 8.5 11H3.5C3.10218 11 2.72064 10.842 2.43934 10.5607C2.15804 10.2794 2 9.89782 2 9.5V6.5C2 6.10218 2.15804 5.72064 2.43934 5.43934C2.72064 5.15804 3.10218 5 3.5 5H8.5C8.89782 5 9.27936 5.15804 9.56066 5.43934C9.84196 5.72064 10 6.10218 10 6.5V9.5Z",
|
|
3265
3333
|
fill: "currentColor"
|
|
3266
3334
|
}
|
|
3267
3335
|
),
|
|
3268
|
-
/* @__PURE__ */ (0,
|
|
3336
|
+
/* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
|
|
3269
3337
|
"path",
|
|
3270
3338
|
{
|
|
3271
3339
|
d: "M6 7C5.86739 7 5.74021 7.05268 5.64645 7.14645C5.55268 7.24021 5.5 7.36739 5.5 7.5V8.5C5.5 8.63261 5.55268 8.75979 5.64645 8.85355C5.74021 8.94732 5.86739 9 6 9C6.13261 9 6.25979 8.94732 6.35355 8.85355C6.44732 8.75979 6.5 8.63261 6.5 8.5V7.5C6.5 7.36739 6.44732 7.24021 6.35355 7.14645C6.25979 7.05268 6.13261 7 6 7Z",
|
|
@@ -3279,10 +3347,10 @@ var LockIcon = (_a) => {
|
|
|
3279
3347
|
LockIcon.displayName = "LockIcon";
|
|
3280
3348
|
|
|
3281
3349
|
// src/primitives/icon/svg/pencil.tsx
|
|
3282
|
-
var
|
|
3350
|
+
var import_jsx_runtime73 = require("react/jsx-runtime");
|
|
3283
3351
|
var PencilIcon = (_a) => {
|
|
3284
3352
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3285
|
-
return /* @__PURE__ */ (0,
|
|
3353
|
+
return /* @__PURE__ */ (0, import_jsx_runtime73.jsxs)(
|
|
3286
3354
|
"svg",
|
|
3287
3355
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3288
3356
|
viewBox: "0 0 16 16",
|
|
@@ -3290,15 +3358,15 @@ var PencilIcon = (_a) => {
|
|
|
3290
3358
|
fill: "none"
|
|
3291
3359
|
}, getIconA11yProps(title2)), props), {
|
|
3292
3360
|
children: [
|
|
3293
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3294
|
-
/* @__PURE__ */ (0,
|
|
3361
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("title", { children: title2 }) : null,
|
|
3362
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("g", { clipPath: "url(#pencil_clip)", children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(
|
|
3295
3363
|
"path",
|
|
3296
3364
|
{
|
|
3297
3365
|
d: "M15.2353 0.706709C14.7821 0.254173 14.1678 0 13.5273 0C12.8869 0 12.2726 0.254173 11.8193 0.706709L0.976677 11.5494C0.666178 11.8581 0.419985 12.2254 0.252342 12.6299C0.0846994 13.0344 -0.00106532 13.4682 9.98748e-06 13.906V15.2747C9.98748e-06 15.4515 0.0702479 15.6211 0.195272 15.7461C0.320296 15.8711 0.489866 15.9414 0.666677 15.9414H2.03534C2.47318 15.9426 2.90692 15.857 3.31145 15.6895C3.71597 15.5219 4.08325 15.2758 4.39201 14.9654L15.2353 4.12204C15.6877 3.66884 15.9417 3.05469 15.9417 2.41438C15.9417 1.77406 15.6877 1.15991 15.2353 0.706709ZM3.44934 14.0227C3.07335 14.3962 2.56532 14.6065 2.03534 14.608H1.33334V13.906C1.33267 13.6433 1.38411 13.3831 1.4847 13.1403C1.58529 12.8976 1.73302 12.6773 1.91934 12.492L10.148 4.26338L11.6813 5.79671L3.44934 14.0227ZM14.292 3.17938L12.6213 4.85071L11.088 3.32071L12.7593 1.64938C12.86 1.54891 12.9795 1.46927 13.111 1.41498C13.2424 1.3607 13.3833 1.33284 13.5255 1.33299C13.6678 1.33314 13.8086 1.36131 13.9399 1.41588C14.0712 1.47045 14.1905 1.55036 14.291 1.65104C14.3915 1.75172 14.4711 1.8712 14.5254 2.00266C14.5797 2.13413 14.6076 2.27499 14.6074 2.41722C14.6072 2.55945 14.5791 2.70025 14.5245 2.8316C14.4699 2.96294 14.39 3.08225 14.2893 3.18271L14.292 3.17938Z",
|
|
3298
3366
|
fill: "currentColor"
|
|
3299
3367
|
}
|
|
3300
3368
|
) }),
|
|
3301
|
-
/* @__PURE__ */ (0,
|
|
3369
|
+
/* @__PURE__ */ (0, import_jsx_runtime73.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("clipPath", { id: "pencil_clip", children: /* @__PURE__ */ (0, import_jsx_runtime73.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3302
3370
|
]
|
|
3303
3371
|
})
|
|
3304
3372
|
);
|
|
@@ -3306,10 +3374,10 @@ var PencilIcon = (_a) => {
|
|
|
3306
3374
|
PencilIcon.displayName = "PencilIcon";
|
|
3307
3375
|
|
|
3308
3376
|
// src/primitives/icon/svg/play-square.tsx
|
|
3309
|
-
var
|
|
3377
|
+
var import_jsx_runtime74 = require("react/jsx-runtime");
|
|
3310
3378
|
var PlaySquareIcon = (_a) => {
|
|
3311
3379
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3312
|
-
return /* @__PURE__ */ (0,
|
|
3380
|
+
return /* @__PURE__ */ (0, import_jsx_runtime74.jsxs)(
|
|
3313
3381
|
"svg",
|
|
3314
3382
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3315
3383
|
viewBox: "0 0 16 16",
|
|
@@ -3317,15 +3385,15 @@ var PlaySquareIcon = (_a) => {
|
|
|
3317
3385
|
fill: "none"
|
|
3318
3386
|
}, getIconA11yProps(title2)), props), {
|
|
3319
3387
|
children: [
|
|
3320
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3321
|
-
/* @__PURE__ */ (0,
|
|
3388
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("title", { children: title2 }) : null,
|
|
3389
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("g", { clipPath: "url(#play-square-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
|
|
3322
3390
|
"path",
|
|
3323
3391
|
{
|
|
3324
3392
|
d: "M12.6667 16H3.33333C2.4496 15.9989 1.60237 15.6474 0.97748 15.0225C0.352588 14.3976 0.00105857 13.5504 0 12.6667L0 3.33333C0.00105857 2.4496 0.352588 1.60237 0.97748 0.97748C1.60237 0.352588 2.4496 0.00105857 3.33333 0L12.6667 0C13.5504 0.00105857 14.3976 0.352588 15.0225 0.97748C15.6474 1.60237 15.9989 2.4496 16 3.33333V12.6667C15.9989 13.5504 15.6474 14.3976 15.0225 15.0225C14.3976 15.6474 13.5504 15.9989 12.6667 16ZM3.33333 1.33333C2.8029 1.33333 2.29419 1.54405 1.91912 1.91912C1.54405 2.29419 1.33333 2.8029 1.33333 3.33333V12.6667C1.33333 13.1971 1.54405 13.7058 1.91912 14.0809C2.29419 14.456 2.8029 14.6667 3.33333 14.6667H12.6667C13.1971 14.6667 13.7058 14.456 14.0809 14.0809C14.456 13.7058 14.6667 13.1971 14.6667 12.6667V3.33333C14.6667 2.8029 14.456 2.29419 14.0809 1.91912C13.7058 1.54405 13.1971 1.33333 12.6667 1.33333H3.33333ZM6.228 11.3367C5.95008 11.3357 5.67734 11.2615 5.43733 11.1213C5.20023 10.9856 5.00344 10.7894 4.86709 10.5526C4.73074 10.3159 4.65973 10.0472 4.66133 9.774V6.226C4.66111 5.95276 4.73274 5.68427 4.86905 5.44746C5.00537 5.21066 5.20156 5.01386 5.43794 4.87683C5.67433 4.73979 5.9426 4.66733 6.21584 4.66672C6.48907 4.6661 6.75767 4.73736 6.99467 4.87333L10.5133 6.63C10.7577 6.76194 10.9624 6.95685 11.1062 7.19452C11.2499 7.4322 11.3274 7.70399 11.3308 7.98172C11.3341 8.25946 11.2631 8.53303 11.1251 8.77408C10.9871 9.01514 10.7872 9.2149 10.546 9.35267L6.962 11.144C6.73847 11.2715 6.48533 11.3379 6.228 11.3367ZM6.21133 6.00333C6.17459 6.00332 6.13849 6.01298 6.10667 6.03133C6.07209 6.05056 6.0434 6.07884 6.02367 6.11313C6.00394 6.14743 5.99391 6.18644 5.99467 6.226V9.774C5.99489 9.81297 6.00525 9.85121 6.02473 9.88497C6.0442 9.91872 6.07212 9.94683 6.10574 9.96653C6.13936 9.98624 6.17753 9.99686 6.2165 9.99735C6.25547 9.99784 6.29389 9.98818 6.328 9.96933L9.912 8.17733C9.93869 8.15646 9.95992 8.12941 9.97385 8.09852C9.98779 8.06764 9.99401 8.03383 9.992 8C9.99284 7.96035 9.98277 7.92123 9.96291 7.8869C9.94304 7.85258 9.91413 7.82436 9.87933 7.80533L6.36333 6.04867C6.31749 6.02054 6.26509 6.00492 6.21133 6.00333Z",
|
|
3325
3393
|
fill: "currentColor"
|
|
3326
3394
|
}
|
|
3327
3395
|
) }),
|
|
3328
|
-
/* @__PURE__ */ (0,
|
|
3396
|
+
/* @__PURE__ */ (0, import_jsx_runtime74.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("clipPath", { id: "play-square-clip", children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3329
3397
|
]
|
|
3330
3398
|
})
|
|
3331
3399
|
);
|
|
@@ -3333,10 +3401,10 @@ var PlaySquareIcon = (_a) => {
|
|
|
3333
3401
|
PlaySquareIcon.displayName = "PlaySquareIcon";
|
|
3334
3402
|
|
|
3335
3403
|
// src/primitives/icon/svg/polygon.tsx
|
|
3336
|
-
var
|
|
3404
|
+
var import_jsx_runtime75 = require("react/jsx-runtime");
|
|
3337
3405
|
var PolygonIcon = (_a) => {
|
|
3338
3406
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3339
|
-
return /* @__PURE__ */ (0,
|
|
3407
|
+
return /* @__PURE__ */ (0, import_jsx_runtime75.jsxs)(
|
|
3340
3408
|
"svg",
|
|
3341
3409
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3342
3410
|
viewBox: "0 0 24 24",
|
|
@@ -3344,9 +3412,9 @@ var PolygonIcon = (_a) => {
|
|
|
3344
3412
|
fill: "none"
|
|
3345
3413
|
}, getIconA11yProps(title2)), props), {
|
|
3346
3414
|
children: [
|
|
3347
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3348
|
-
/* @__PURE__ */ (0,
|
|
3349
|
-
/* @__PURE__ */ (0,
|
|
3415
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("title", { children: title2 }) : null,
|
|
3416
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)("rect", { width: "24", height: "24", rx: "8", fill: "#8247E5" }),
|
|
3417
|
+
/* @__PURE__ */ (0, import_jsx_runtime75.jsx)(
|
|
3350
3418
|
"path",
|
|
3351
3419
|
{
|
|
3352
3420
|
d: "M9.00108 10.1467L7.12599 9.05774L1.5 12.3246V18.836L7.12599 22.0919L12.752 18.836V8.70922L15.8729 6.90135L18.9938 8.70922V12.3246L15.8729 14.1325L13.9978 13.0435V15.9409L15.8729 17.0299L21.4989 13.774V7.26264L15.8729 4.00674L10.2469 7.26264V17.3894L7.12599 19.1973L4.00508 17.3894V13.7628L7.12599 11.955L9.00108 13.0435V10.1467Z",
|
|
@@ -3360,10 +3428,10 @@ var PolygonIcon = (_a) => {
|
|
|
3360
3428
|
PolygonIcon.displayName = "PolygonIcon";
|
|
3361
3429
|
|
|
3362
3430
|
// src/primitives/icon/svg/quotes-warning.tsx
|
|
3363
|
-
var
|
|
3431
|
+
var import_jsx_runtime76 = require("react/jsx-runtime");
|
|
3364
3432
|
var QuotesWarningIcon = (_a) => {
|
|
3365
3433
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3366
|
-
return /* @__PURE__ */ (0,
|
|
3434
|
+
return /* @__PURE__ */ (0, import_jsx_runtime76.jsxs)(
|
|
3367
3435
|
"svg",
|
|
3368
3436
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3369
3437
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3374,8 +3442,8 @@ var QuotesWarningIcon = (_a) => {
|
|
|
3374
3442
|
className
|
|
3375
3443
|
}, getIconA11yProps(title2)), props), {
|
|
3376
3444
|
children: [
|
|
3377
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3378
|
-
/* @__PURE__ */ (0,
|
|
3445
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime76.jsx)("title", { children: title2 }) : null,
|
|
3446
|
+
/* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
|
|
3379
3447
|
"path",
|
|
3380
3448
|
{
|
|
3381
3449
|
d: "M17.25 21.75V9.75C17.25 9.33 17.58 9 18 9C18.42 9 18.75 9.33 18.75 9.75V21.75C18.75 22.17 18.42 22.5 18 22.5C17.58 22.5 17.25 22.17 17.25 21.75ZM18 25.5C17.175 25.5 16.5 26.175 16.5 27C16.5 27.825 17.175 28.5 18 28.5C18.825 28.5 19.5 27.825 19.5 27C19.5 26.175 18.825 25.5 18 25.5ZM35.415 30.105C34.455 31.95 32.43 33 29.85 33H6.15002C3.58502 33 1.54502 31.95 0.585023 30.105C-0.389977 28.245 -0.119977 25.8 1.30502 23.745L13.95 3.645C14.88 2.295 16.395 1.5 18 1.5C19.605 1.5 21.12 2.295 22.035 3.615L34.695 23.76C36.12 25.815 36.39 28.245 35.415 30.105ZM33.45 24.6C33.45 24.6 33.45 24.585 33.435 24.57L20.79 4.44C20.16 3.525 19.14 3 18 3C16.86 3 15.84 3.54 15.195 4.47L2.56502 24.57C1.44002 26.19 1.20002 28.035 1.92002 29.415C2.62502 30.765 4.12502 31.5 6.15002 31.5H29.865C31.89 31.5 33.39 30.765 34.095 29.415C34.815 28.05 34.575 26.205 33.465 24.6H33.45Z",
|
|
@@ -3389,10 +3457,10 @@ var QuotesWarningIcon = (_a) => {
|
|
|
3389
3457
|
QuotesWarningIcon.displayName = "QuotesWarningIcon";
|
|
3390
3458
|
|
|
3391
3459
|
// src/primitives/icon/svg/profile-about-tab.tsx
|
|
3392
|
-
var
|
|
3460
|
+
var import_jsx_runtime77 = require("react/jsx-runtime");
|
|
3393
3461
|
var ProfileAboutTabIcon = (_a) => {
|
|
3394
3462
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3395
|
-
return /* @__PURE__ */ (0,
|
|
3463
|
+
return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
|
|
3396
3464
|
"svg",
|
|
3397
3465
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3398
3466
|
viewBox: "0 0 16 16",
|
|
@@ -3400,16 +3468,16 @@ var ProfileAboutTabIcon = (_a) => {
|
|
|
3400
3468
|
fill: "none"
|
|
3401
3469
|
}, getIconA11yProps(title2)), props), {
|
|
3402
3470
|
children: [
|
|
3403
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3404
|
-
/* @__PURE__ */ (0,
|
|
3405
|
-
/* @__PURE__ */ (0,
|
|
3471
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("title", { children: title2 }) : null,
|
|
3472
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsxs)("g", { clipPath: "url(#clip_profile_about_tab)", children: [
|
|
3473
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3406
3474
|
"path",
|
|
3407
3475
|
{
|
|
3408
3476
|
d: "M12.6667 0H3.33333C2.4496 0.00105857 1.60237 0.352588 0.97748 0.97748C0.352588 1.60237 0.00105857 2.4496 0 3.33333L0 12.6667C0.00105857 13.5504 0.352588 14.3976 0.97748 15.0225C1.60237 15.6474 2.4496 15.9989 3.33333 16H12.6667C13.5504 15.9989 14.3976 15.6474 15.0225 15.0225C15.6474 14.3976 15.9989 13.5504 16 12.6667V3.33333C15.9989 2.4496 15.6474 1.60237 15.0225 0.97748C14.3976 0.352588 13.5504 0.00105857 12.6667 0ZM4.66667 14.6667V14C4.66667 13.1159 5.01786 12.2681 5.64298 11.643C6.2681 11.0179 7.11595 10.6667 8 10.6667C8.88406 10.6667 9.7319 11.0179 10.357 11.643C10.9821 12.2681 11.3333 13.1159 11.3333 14V14.6667H4.66667ZM14.6667 12.6667C14.6667 13.1971 14.456 13.7058 14.0809 14.0809C13.7058 14.456 13.1971 14.6667 12.6667 14.6667V14C12.6667 12.7623 12.175 11.5753 11.2998 10.7002C10.4247 9.825 9.23768 9.33333 8 9.33333C6.76232 9.33333 5.57534 9.825 4.70017 10.7002C3.825 11.5753 3.33333 12.7623 3.33333 14V14.6667C2.8029 14.6667 2.29419 14.456 1.91912 14.0809C1.54405 13.7058 1.33333 13.1971 1.33333 12.6667V3.33333C1.33333 2.8029 1.54405 2.29419 1.91912 1.91912C2.29419 1.54405 2.8029 1.33333 3.33333 1.33333H12.6667C13.1971 1.33333 13.7058 1.54405 14.0809 1.91912C14.456 2.29419 14.6667 2.8029 14.6667 3.33333V12.6667Z",
|
|
3409
3477
|
fill: "currentColor"
|
|
3410
3478
|
}
|
|
3411
3479
|
),
|
|
3412
|
-
/* @__PURE__ */ (0,
|
|
3480
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
|
|
3413
3481
|
"path",
|
|
3414
3482
|
{
|
|
3415
3483
|
d: "M8.00004 2.66669C7.47263 2.66669 6.95705 2.82308 6.51852 3.1161C6.07999 3.40912 5.7382 3.82559 5.53636 4.31286C5.33453 4.80013 5.28172 5.33631 5.38461 5.85359C5.48751 6.37088 5.74148 6.84603 6.11442 7.21897C6.48736 7.59191 6.96252 7.84589 7.4798 7.94878C7.99708 8.05167 8.53326 7.99887 9.02053 7.79703C9.5078 7.5952 9.92428 7.2534 10.2173 6.81487C10.5103 6.37634 10.6667 5.86077 10.6667 5.33335C10.6667 4.62611 10.3858 3.94783 9.88566 3.44774C9.38556 2.94764 8.70729 2.66669 8.00004 2.66669ZM8.00004 6.66669C7.73633 6.66669 7.47855 6.58849 7.25928 6.44198C7.04002 6.29547 6.86912 6.08723 6.7682 5.8436C6.66729 5.59996 6.64088 5.33187 6.69233 5.07323C6.74378 4.81459 6.87076 4.57701 7.05723 4.39054C7.2437 4.20407 7.48128 4.07709 7.73992 4.02564C7.99856 3.97419 8.26665 4.0006 8.51029 4.10151C8.75392 4.20243 8.96216 4.37333 9.10867 4.59259C9.25518 4.81186 9.33338 5.06965 9.33338 5.33335C9.33338 5.68698 9.1929 6.02611 8.94285 6.27616C8.6928 6.52621 8.35366 6.66669 8.00004 6.66669Z",
|
|
@@ -3417,7 +3485,7 @@ var ProfileAboutTabIcon = (_a) => {
|
|
|
3417
3485
|
}
|
|
3418
3486
|
)
|
|
3419
3487
|
] }),
|
|
3420
|
-
/* @__PURE__ */ (0,
|
|
3488
|
+
/* @__PURE__ */ (0, import_jsx_runtime77.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("clipPath", { id: "clip_profile_about_tab", children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3421
3489
|
]
|
|
3422
3490
|
})
|
|
3423
3491
|
);
|
|
@@ -3425,7 +3493,7 @@ var ProfileAboutTabIcon = (_a) => {
|
|
|
3425
3493
|
ProfileAboutTabIcon.displayName = "ProfileAboutTabIcon";
|
|
3426
3494
|
|
|
3427
3495
|
// src/primitives/icon/svg/profile-accounts-wallets-tab.tsx
|
|
3428
|
-
var
|
|
3496
|
+
var import_jsx_runtime78 = require("react/jsx-runtime");
|
|
3429
3497
|
var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
3430
3498
|
var _b = _a, {
|
|
3431
3499
|
title: title2,
|
|
@@ -3434,7 +3502,7 @@ var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
|
3434
3502
|
"title",
|
|
3435
3503
|
"className"
|
|
3436
3504
|
]);
|
|
3437
|
-
return /* @__PURE__ */ (0,
|
|
3505
|
+
return /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
|
|
3438
3506
|
"svg",
|
|
3439
3507
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3440
3508
|
viewBox: "0 0 16 16",
|
|
@@ -3442,15 +3510,15 @@ var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
|
3442
3510
|
fill: "none"
|
|
3443
3511
|
}, getIconA11yProps(title2)), props), {
|
|
3444
3512
|
children: [
|
|
3445
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3446
|
-
/* @__PURE__ */ (0,
|
|
3513
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("title", { children: title2 }) : null,
|
|
3514
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("g", { clipPath: "url(#clip_profile_accounts_wallets_tab)", children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
|
|
3447
3515
|
"path",
|
|
3448
3516
|
{
|
|
3449
3517
|
d: "M5 8.66667C4.40666 8.66667 3.82664 8.49072 3.33329 8.16108C2.83994 7.83143 2.45542 7.3629 2.22836 6.81472C2.0013 6.26654 1.94189 5.66334 2.05764 5.0814C2.1734 4.49945 2.45912 3.96491 2.87868 3.54535C3.29824 3.12579 3.83279 2.84007 4.41473 2.72431C4.99667 2.60856 5.59987 2.66797 6.14805 2.89503C6.69623 3.12209 7.16476 3.50661 7.49441 3.99996C7.82405 4.4933 8 5.07332 8 5.66667C7.99912 6.46205 7.68276 7.2246 7.12035 7.78701C6.55793 8.34943 5.79538 8.66579 5 8.66667ZM5 4C4.67036 4 4.34813 4.09775 4.07405 4.28089C3.79997 4.46402 3.58635 4.72432 3.4602 5.02886C3.33405 5.33341 3.30105 5.66852 3.36536 5.99182C3.42967 6.31512 3.5884 6.61209 3.82149 6.84518C4.05458 7.07827 4.35155 7.237 4.67485 7.30131C4.99815 7.36562 5.33326 7.33261 5.63781 7.20647C5.94235 7.08032 6.20265 6.8667 6.38578 6.59262C6.56892 6.31854 6.66667 5.9963 6.66667 5.66667C6.66667 5.22464 6.49107 4.80072 6.17851 4.48816C5.86595 4.1756 5.44203 4 5 4ZM10 15.3333V15C10 13.6739 9.47322 12.4021 8.53553 11.4645C7.59785 10.5268 6.32608 10 5 10C3.67392 10 2.40215 10.5268 1.46447 11.4645C0.526784 12.4021 0 13.6739 0 15L0 15.3333C0 15.5101 0.0702379 15.6797 0.195262 15.8047C0.320286 15.9298 0.489856 16 0.666667 16C0.843478 16 1.01305 15.9298 1.13807 15.8047C1.2631 15.6797 1.33333 15.5101 1.33333 15.3333V15C1.33333 14.0275 1.71964 13.0949 2.40728 12.4073C3.09491 11.7196 4.02754 11.3333 5 11.3333C5.97246 11.3333 6.90509 11.7196 7.59273 12.4073C8.28036 13.0949 8.66667 14.0275 8.66667 15V15.3333C8.66667 15.5101 8.73691 15.6797 8.86193 15.8047C8.98695 15.9298 9.15652 16 9.33333 16C9.51014 16 9.67971 15.9298 9.80474 15.8047C9.92976 15.6797 10 15.5101 10 15.3333ZM16 12C16 11.0991 15.7392 10.2175 15.2491 9.46158C14.7591 8.70565 14.0607 8.10772 13.2383 7.73998C12.4159 7.37223 11.5046 7.25039 10.6145 7.38916C9.72437 7.52793 8.89344 7.92137 8.222 8.522C8.15584 8.58013 8.10186 8.6508 8.06317 8.72991C8.02448 8.80903 8.00185 8.89502 7.99659 8.98293C7.99132 9.07085 8.00353 9.15893 8.0325 9.24209C8.06147 9.32526 8.10663 9.40186 8.16537 9.46748C8.22412 9.53309 8.29528 9.58642 8.37475 9.62437C8.45422 9.66232 8.54042 9.68416 8.62838 9.68861C8.71633 9.69306 8.8043 9.68004 8.88719 9.6503C8.97009 9.62055 9.04627 9.57469 9.11133 9.51534C9.59097 9.08641 10.1845 8.80548 10.8203 8.70644C11.456 8.6074 12.1069 8.69449 12.6943 8.9572C13.2816 9.21991 13.7804 9.647 14.1304 10.1869C14.4804 10.7269 14.6667 11.3566 14.6667 12C14.6667 12.1768 14.7369 12.3464 14.8619 12.4714C14.987 12.5964 15.1565 12.6667 15.3333 12.6667C15.5101 12.6667 15.6797 12.5964 15.8047 12.4714C15.9298 12.3464 16 12.1768 16 12ZM11.6667 6C11.0733 6 10.4933 5.82405 9.99996 5.49441C9.50661 5.16477 9.12209 4.69623 8.89503 4.14805C8.66796 3.59987 8.60855 2.99667 8.72431 2.41473C8.84007 1.83279 9.12579 1.29824 9.54535 0.878681C9.9649 0.459123 10.4995 0.173401 11.0814 0.0576455C11.6633 -0.0581102 12.2665 0.00129986 12.8147 0.228363C13.3629 0.455426 13.8314 0.839943 14.1611 1.33329C14.4907 1.82664 14.6667 2.40666 14.6667 3C14.6658 3.79538 14.3494 4.55793 13.787 5.12035C13.2246 5.68277 12.462 5.99912 11.6667 6ZM11.6667 1.33333C11.337 1.33333 11.0148 1.43108 10.7407 1.61422C10.4666 1.79735 10.253 2.05765 10.1269 2.3622C10.0007 2.66674 9.96772 3.00185 10.032 3.32515C10.0963 3.64845 10.2551 3.94543 10.4882 4.17851C10.7212 4.4116 11.0182 4.57033 11.3415 4.63464C11.6648 4.69895 11.9999 4.66595 12.3045 4.5398C12.609 4.41365 12.8693 4.20003 13.0525 3.92595C13.2356 3.65187 13.3333 3.32964 13.3333 3C13.3333 2.55797 13.1577 2.13405 12.8452 1.82149C12.5326 1.50893 12.1087 1.33333 11.6667 1.33333Z",
|
|
3450
3518
|
fill: "currentColor"
|
|
3451
3519
|
}
|
|
3452
3520
|
) }),
|
|
3453
|
-
/* @__PURE__ */ (0,
|
|
3521
|
+
/* @__PURE__ */ (0, import_jsx_runtime78.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("clipPath", { id: "clip_profile_accounts_wallets_tab", children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3454
3522
|
]
|
|
3455
3523
|
})
|
|
3456
3524
|
);
|
|
@@ -3458,10 +3526,10 @@ var ProfileAccountsWalletsTabIcon = (_a) => {
|
|
|
3458
3526
|
ProfileAccountsWalletsTabIcon.displayName = "ProfileAccountsWalletsTabIcon";
|
|
3459
3527
|
|
|
3460
3528
|
// src/primitives/icon/svg/profile.tsx
|
|
3461
|
-
var
|
|
3529
|
+
var import_jsx_runtime79 = require("react/jsx-runtime");
|
|
3462
3530
|
var ProfileIcon = (_a) => {
|
|
3463
3531
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3464
|
-
return /* @__PURE__ */ (0,
|
|
3532
|
+
return /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
|
|
3465
3533
|
"svg",
|
|
3466
3534
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3467
3535
|
viewBox: "0 0 16 16",
|
|
@@ -3469,16 +3537,16 @@ var ProfileIcon = (_a) => {
|
|
|
3469
3537
|
fill: "none"
|
|
3470
3538
|
}, getIconA11yProps(title2)), props), {
|
|
3471
3539
|
children: [
|
|
3472
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3473
|
-
/* @__PURE__ */ (0,
|
|
3474
|
-
/* @__PURE__ */ (0,
|
|
3540
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("title", { children: title2 }) : null,
|
|
3541
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsxs)("g", { clipPath: "url(#profile-clip)", children: [
|
|
3542
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3475
3543
|
"path",
|
|
3476
3544
|
{
|
|
3477
3545
|
d: "M8 8C8.79113 8 9.56448 7.76541 10.2223 7.32588C10.8801 6.88635 11.3928 6.26164 11.6955 5.53074C11.9983 4.79983 12.0775 3.99556 11.9231 3.21964C11.7688 2.44372 11.3878 1.73098 10.8284 1.17157C10.269 0.612165 9.55629 0.231202 8.78036 0.0768607C8.00444 -0.0774802 7.20017 0.00173314 6.46927 0.304484C5.73836 0.607234 5.11365 1.11992 4.67412 1.77772C4.2346 2.43552 4 3.20888 4 4C4.00106 5.06054 4.42283 6.07734 5.17274 6.82726C5.92266 7.57718 6.93946 7.99894 8 8ZM8 1.33334C8.52742 1.33334 9.04299 1.48973 9.48152 1.78275C9.92005 2.07577 10.2618 2.49224 10.4637 2.97951C10.6655 3.46678 10.7183 4.00296 10.6154 4.52024C10.5125 5.03753 10.2586 5.51268 9.88562 5.88562C9.51268 6.25856 9.03752 6.51254 8.52024 6.61543C8.00296 6.71832 7.46678 6.66551 6.97951 6.46368C6.49224 6.26185 6.07577 5.92005 5.78275 5.48152C5.48973 5.04299 5.33333 4.52742 5.33333 4C5.33333 3.29276 5.61428 2.61448 6.11438 2.11438C6.61448 1.61429 7.29276 1.33334 8 1.33334Z",
|
|
3478
3546
|
fill: "currentColor"
|
|
3479
3547
|
}
|
|
3480
3548
|
),
|
|
3481
|
-
/* @__PURE__ */ (0,
|
|
3549
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
|
3482
3550
|
"path",
|
|
3483
3551
|
{
|
|
3484
3552
|
d: "M8 9.33334C6.40924 9.33511 4.88414 9.96782 3.75931 11.0927C2.63447 12.2175 2.00176 13.7426 2 15.3333C2 15.5102 2.07024 15.6797 2.19526 15.8047C2.32029 15.9298 2.48986 16 2.66667 16C2.84348 16 3.01305 15.9298 3.13807 15.8047C3.2631 15.6797 3.33333 15.5102 3.33333 15.3333C3.33333 14.0957 3.825 12.9087 4.70017 12.0335C5.57534 11.1583 6.76232 10.6667 8 10.6667C9.23768 10.6667 10.4247 11.1583 11.2998 12.0335C12.175 12.9087 12.6667 14.0957 12.6667 15.3333C12.6667 15.5102 12.7369 15.6797 12.8619 15.8047C12.987 15.9298 13.1565 16 13.3333 16C13.5101 16 13.6797 15.9298 13.8047 15.8047C13.9298 15.6797 14 15.5102 14 15.3333C13.9982 13.7426 13.3655 12.2175 12.2407 11.0927C11.1159 9.96782 9.59076 9.33511 8 9.33334Z",
|
|
@@ -3486,7 +3554,7 @@ var ProfileIcon = (_a) => {
|
|
|
3486
3554
|
}
|
|
3487
3555
|
)
|
|
3488
3556
|
] }),
|
|
3489
|
-
/* @__PURE__ */ (0,
|
|
3557
|
+
/* @__PURE__ */ (0, import_jsx_runtime79.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("clipPath", { id: "profile-clip", children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3490
3558
|
]
|
|
3491
3559
|
})
|
|
3492
3560
|
);
|
|
@@ -3494,10 +3562,10 @@ var ProfileIcon = (_a) => {
|
|
|
3494
3562
|
ProfileIcon.displayName = "ProfileIcon";
|
|
3495
3563
|
|
|
3496
3564
|
// src/primitives/icon/svg/recenter.tsx
|
|
3497
|
-
var
|
|
3565
|
+
var import_jsx_runtime80 = require("react/jsx-runtime");
|
|
3498
3566
|
var RecenterIcon = (_a) => {
|
|
3499
3567
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3500
|
-
return /* @__PURE__ */ (0,
|
|
3568
|
+
return /* @__PURE__ */ (0, import_jsx_runtime80.jsxs)(
|
|
3501
3569
|
"svg",
|
|
3502
3570
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3503
3571
|
viewBox: "0 0 16 16",
|
|
@@ -3505,15 +3573,15 @@ var RecenterIcon = (_a) => {
|
|
|
3505
3573
|
fill: "none"
|
|
3506
3574
|
}, getIconA11yProps(title2)), props), {
|
|
3507
3575
|
children: [
|
|
3508
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3509
|
-
/* @__PURE__ */ (0,
|
|
3576
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("title", { children: title2 }) : null,
|
|
3577
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("g", { clipPath: "url(#recenter-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
|
|
3510
3578
|
"path",
|
|
3511
3579
|
{
|
|
3512
3580
|
d: "M16 8C16 8.36867 15.7013 8.66667 15.3333 8.66667H0.666667C0.298667 8.66667 0 8.36867 0 8C0 7.63133 0.298667 7.33333 0.666667 7.33333H15.3333C15.7013 7.33333 16 7.63133 16 8ZM7.05733 5.60933C7.31733 5.86933 7.65867 5.99933 8 5.99933C8.34133 5.99933 8.68267 5.86933 8.94267 5.60933L11.138 3.414C11.3987 3.15333 11.3987 2.732 11.138 2.47133C10.8773 2.21067 10.456 2.21067 10.1953 2.47133L8.66667 4V0.666667C8.66667 0.298 8.368 0 8 0C7.632 0 7.33333 0.298 7.33333 0.666667V4L5.80467 2.47133C5.544 2.21067 5.12267 2.21067 4.862 2.47133C4.60133 2.732 4.60133 3.15333 4.862 3.414L7.05733 5.60933ZM8.94267 10.3907C8.42333 9.87133 7.57667 9.87133 7.05733 10.3907L4.862 12.586C4.60133 12.8467 4.60133 13.268 4.862 13.5287C5.12267 13.7893 5.544 13.7893 5.80467 13.5287L7.33333 12V15.3333C7.33333 15.702 7.632 16 8 16C8.368 16 8.66667 15.702 8.66667 15.3333V12L10.1953 13.5287C10.3253 13.6587 10.496 13.724 10.6667 13.724C10.8373 13.724 11.008 13.6587 11.138 13.5287C11.3987 13.268 11.3987 12.8467 11.138 12.586L8.94267 10.3907Z",
|
|
3513
3581
|
fill: "currentColor"
|
|
3514
3582
|
}
|
|
3515
3583
|
) }),
|
|
3516
|
-
/* @__PURE__ */ (0,
|
|
3584
|
+
/* @__PURE__ */ (0, import_jsx_runtime80.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("clipPath", { id: "recenter-clip", children: /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3517
3585
|
]
|
|
3518
3586
|
})
|
|
3519
3587
|
);
|
|
@@ -3521,10 +3589,10 @@ var RecenterIcon = (_a) => {
|
|
|
3521
3589
|
RecenterIcon.displayName = "RecenterIcon";
|
|
3522
3590
|
|
|
3523
3591
|
// src/primitives/icon/svg/revenue-alt.tsx
|
|
3524
|
-
var
|
|
3592
|
+
var import_jsx_runtime81 = require("react/jsx-runtime");
|
|
3525
3593
|
var RevenueAltIcon = (_a) => {
|
|
3526
3594
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3527
|
-
return /* @__PURE__ */ (0,
|
|
3595
|
+
return /* @__PURE__ */ (0, import_jsx_runtime81.jsxs)(
|
|
3528
3596
|
"svg",
|
|
3529
3597
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3530
3598
|
viewBox: "0 0 20 20",
|
|
@@ -3532,8 +3600,8 @@ var RevenueAltIcon = (_a) => {
|
|
|
3532
3600
|
fill: "none"
|
|
3533
3601
|
}, getIconA11yProps(title2)), props), {
|
|
3534
3602
|
children: [
|
|
3535
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3536
|
-
/* @__PURE__ */ (0,
|
|
3603
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("title", { children: title2 }) : null,
|
|
3604
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3537
3605
|
"path",
|
|
3538
3606
|
{
|
|
3539
3607
|
d: "M3 14V6M3 6L1.5 7.5M3 6L4.5 7.5M17 6V14M17 14L15.5 12.5M17 14L18.5 12.5",
|
|
@@ -3543,7 +3611,7 @@ var RevenueAltIcon = (_a) => {
|
|
|
3543
3611
|
strokeLinejoin: "round"
|
|
3544
3612
|
}
|
|
3545
3613
|
),
|
|
3546
|
-
/* @__PURE__ */ (0,
|
|
3614
|
+
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
|
|
3547
3615
|
"path",
|
|
3548
3616
|
{
|
|
3549
3617
|
d: "M10 5.5V14.5M12.5 7.4C12.5 6.55 11.38 5.86 10 5.86C8.62 5.86 7.5 6.55 7.5 7.4C7.5 8.25 8.62 8.94 10 8.94C11.38 8.94 12.5 9.63 12.5 10.48C12.5 11.33 11.38 12.02 10 12.02C8.62 12.02 7.5 11.33 7.5 10.48",
|
|
@@ -3560,10 +3628,10 @@ var RevenueAltIcon = (_a) => {
|
|
|
3560
3628
|
RevenueAltIcon.displayName = "RevenueAltIcon";
|
|
3561
3629
|
|
|
3562
3630
|
// src/primitives/icon/svg/search.tsx
|
|
3563
|
-
var
|
|
3631
|
+
var import_jsx_runtime82 = require("react/jsx-runtime");
|
|
3564
3632
|
var SearchIcon = (_a) => {
|
|
3565
3633
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3566
|
-
return /* @__PURE__ */ (0,
|
|
3634
|
+
return /* @__PURE__ */ (0, import_jsx_runtime82.jsxs)(
|
|
3567
3635
|
"svg",
|
|
3568
3636
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3569
3637
|
viewBox: "0 0 16 16",
|
|
@@ -3572,8 +3640,8 @@ var SearchIcon = (_a) => {
|
|
|
3572
3640
|
className
|
|
3573
3641
|
}, getIconA11yProps(title2)), props), {
|
|
3574
3642
|
children: [
|
|
3575
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3576
|
-
/* @__PURE__ */ (0,
|
|
3643
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime82.jsx)("title", { children: title2 }) : null,
|
|
3644
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3577
3645
|
"path",
|
|
3578
3646
|
{
|
|
3579
3647
|
d: "M7.3335 12.3333C10.0949 12.3333 12.3335 10.0947 12.3335 7.33329C12.3335 4.57187 10.0949 2.33329 7.3335 2.33329C4.57208 2.33329 2.3335 4.57187 2.3335 7.33329C2.3335 10.0947 4.57208 12.3333 7.3335 12.3333Z",
|
|
@@ -3583,7 +3651,7 @@ var SearchIcon = (_a) => {
|
|
|
3583
3651
|
strokeLinejoin: "round"
|
|
3584
3652
|
}
|
|
3585
3653
|
),
|
|
3586
|
-
/* @__PURE__ */ (0,
|
|
3654
|
+
/* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
|
|
3587
3655
|
"path",
|
|
3588
3656
|
{
|
|
3589
3657
|
d: "M13.6668 13.6666L11.1667 11.1666",
|
|
@@ -3600,25 +3668,28 @@ var SearchIcon = (_a) => {
|
|
|
3600
3668
|
SearchIcon.displayName = "SearchIcon";
|
|
3601
3669
|
|
|
3602
3670
|
// src/primitives/icon/svg/shield-trust.tsx
|
|
3603
|
-
var
|
|
3671
|
+
var import_jsx_runtime83 = require("react/jsx-runtime");
|
|
3604
3672
|
var ShieldTrustIcon = (_a) => {
|
|
3605
3673
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3606
|
-
return /* @__PURE__ */ (0,
|
|
3674
|
+
return /* @__PURE__ */ (0, import_jsx_runtime83.jsxs)(
|
|
3607
3675
|
"svg",
|
|
3608
3676
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3609
|
-
|
|
3677
|
+
width: "16",
|
|
3678
|
+
height: "16",
|
|
3679
|
+
viewBox: "0 0 16 16",
|
|
3610
3680
|
className,
|
|
3611
3681
|
fill: "none"
|
|
3612
3682
|
}, getIconA11yProps(title2)), props), {
|
|
3613
3683
|
children: [
|
|
3614
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3615
|
-
/* @__PURE__ */ (0,
|
|
3684
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("title", { children: title2 }) : null,
|
|
3685
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("g", { clipPath: "url(#clip0_7779_1212)", children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)(
|
|
3616
3686
|
"path",
|
|
3617
3687
|
{
|
|
3618
|
-
d: "
|
|
3688
|
+
d: "M15.4633 9.39L14.024 10.828V11.976C14.024 13.0787 13.1266 13.976 12.024 13.976H10.8766L9.43798 15.414C9.06131 15.7913 8.55864 16 8.02398 16C7.48931 16 6.98731 15.792 6.60998 15.414L5.17198 13.976H4.02398C2.92131 13.976 2.02398 13.0787 2.02398 11.976V10.828L0.585977 9.39C-0.194023 8.61067 -0.194023 7.34133 0.585977 6.56133L2.02398 5.12333V3.976C2.02398 2.87333 2.92131 1.976 4.02398 1.976H5.17198L6.60998 0.537331C7.36598 -0.219335 8.68398 -0.217335 9.43864 0.537331L10.8766 1.97533H12.024C12.3926 1.97533 12.6906 2.274 12.6906 2.642C12.6906 3.01 12.3926 3.30866 12.024 3.30866H10.6006C10.4233 3.30866 10.254 3.23866 10.1293 3.11333L8.49531 1.47933C8.24398 1.22866 7.80598 1.22733 7.55264 1.47933L5.91931 3.11333C5.79398 3.23866 5.62531 3.30866 5.44798 3.30866H4.02398C3.65598 3.30866 3.35731 3.608 3.35731 3.97533V5.39866C3.35731 5.57533 3.28731 5.74533 3.16198 5.87L1.52864 7.50333C1.26864 7.76333 1.26864 8.186 1.52864 8.44667L3.16198 10.08C3.28731 10.2053 3.35731 10.374 3.35731 10.5513V11.9753C3.35731 12.3433 3.65598 12.642 4.02398 12.642H5.44798C5.62531 12.642 5.79464 12.712 5.91931 12.8373L7.55264 14.4707C7.80531 14.7227 8.24398 14.7227 8.49464 14.4707L10.1293 12.8373C10.2546 12.712 10.4233 12.642 10.6006 12.642H12.024C12.392 12.642 12.6906 12.3433 12.6906 11.9753V10.5513C12.6906 10.374 12.7606 10.2047 12.886 10.08L14.52 8.44667C14.78 8.18667 14.78 7.76333 14.52 7.50333C14.26 7.24267 14.26 6.82066 14.52 6.56066C14.7806 6.30066 15.2026 6.3 15.4633 6.56066C16.242 7.34 16.242 8.60867 15.4633 9.38867V9.39ZM7.14731 9.108L5.13531 7.116C4.87264 6.856 4.45198 6.85933 4.19198 7.12066C3.93264 7.382 3.93531 7.804 4.19664 8.06333L6.20931 10.056C6.61864 10.4613 7.15731 10.6647 7.69531 10.6647C8.23331 10.6647 8.77331 10.46 9.18331 10.0527L15.1366 4.13867C15.398 3.87933 15.3993 3.45733 15.1393 3.196C14.8793 2.93466 14.458 2.93266 14.1966 3.19266L8.24331 9.10733C7.94131 9.408 7.44998 9.408 7.14731 9.108Z",
|
|
3619
3689
|
fill: "currentColor"
|
|
3620
3690
|
}
|
|
3621
|
-
)
|
|
3691
|
+
) }),
|
|
3692
|
+
/* @__PURE__ */ (0, import_jsx_runtime83.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("clipPath", { id: "clip0_7779_1212", children: /* @__PURE__ */ (0, import_jsx_runtime83.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3622
3693
|
]
|
|
3623
3694
|
})
|
|
3624
3695
|
);
|
|
@@ -3626,10 +3697,10 @@ var ShieldTrustIcon = (_a) => {
|
|
|
3626
3697
|
ShieldTrustIcon.displayName = "ShieldTrustIcon";
|
|
3627
3698
|
|
|
3628
3699
|
// src/primitives/icon/svg/solana.tsx
|
|
3629
|
-
var
|
|
3700
|
+
var import_jsx_runtime84 = require("react/jsx-runtime");
|
|
3630
3701
|
var SolanaIcon = (_a) => {
|
|
3631
3702
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3632
|
-
return /* @__PURE__ */ (0,
|
|
3703
|
+
return /* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
3633
3704
|
"svg",
|
|
3634
3705
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3635
3706
|
viewBox: "0 0 24 24",
|
|
@@ -3637,31 +3708,31 @@ var SolanaIcon = (_a) => {
|
|
|
3637
3708
|
fill: "none"
|
|
3638
3709
|
}, getIconA11yProps(title2)), props), {
|
|
3639
3710
|
children: [
|
|
3640
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3641
|
-
/* @__PURE__ */ (0,
|
|
3642
|
-
/* @__PURE__ */ (0,
|
|
3711
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime84.jsx)("title", { children: title2 }) : null,
|
|
3712
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("rect", { width: "24", height: "24", fill: "black" }),
|
|
3713
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3643
3714
|
"path",
|
|
3644
3715
|
{
|
|
3645
3716
|
d: "M5.92399 15.7169C6.03262 15.6083 6.18198 15.5449 6.34039 15.5449H20.706C20.9685 15.5449 21.0998 15.8617 20.9142 16.0473L18.0764 18.8851C17.9677 18.9938 17.8184 19.0571 17.66 19.0571H3.29437C3.03186 19.0571 2.90061 18.7403 3.08617 18.5547L5.92399 15.7169Z",
|
|
3646
3717
|
fill: "url(#paint0_linear_1471_9988)"
|
|
3647
3718
|
}
|
|
3648
3719
|
),
|
|
3649
|
-
/* @__PURE__ */ (0,
|
|
3720
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3650
3721
|
"path",
|
|
3651
3722
|
{
|
|
3652
3723
|
d: "M5.92399 5.1217C6.03714 5.01307 6.1865 4.94971 6.34039 4.94971H20.706C20.9685 4.94971 21.0998 5.26653 20.9142 5.4521L18.0764 8.28991C17.9677 8.39854 17.8184 8.4619 17.66 8.4619H3.29437C3.03186 8.4619 2.90061 8.14508 3.08617 7.95951L5.92399 5.1217Z",
|
|
3653
3724
|
fill: "url(#paint1_linear_1471_9988)"
|
|
3654
3725
|
}
|
|
3655
3726
|
),
|
|
3656
|
-
/* @__PURE__ */ (0,
|
|
3727
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
|
|
3657
3728
|
"path",
|
|
3658
3729
|
{
|
|
3659
3730
|
d: "M18.0764 10.3854C17.9677 10.2767 17.8184 10.2134 17.66 10.2134H3.29437C3.03186 10.2134 2.90061 10.5302 3.08617 10.7158L5.92399 13.5536C6.03262 13.6622 6.18198 13.7256 6.34039 13.7256H20.706C20.9685 13.7256 21.0998 13.4088 20.9142 13.2232L18.0764 10.3854Z",
|
|
3660
3731
|
fill: "url(#paint2_linear_1471_9988)"
|
|
3661
3732
|
}
|
|
3662
3733
|
),
|
|
3663
|
-
/* @__PURE__ */ (0,
|
|
3664
|
-
/* @__PURE__ */ (0,
|
|
3734
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsxs)("defs", { children: [
|
|
3735
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
3665
3736
|
"linearGradient",
|
|
3666
3737
|
{
|
|
3667
3738
|
id: "paint0_linear_1471_9988",
|
|
@@ -3671,12 +3742,12 @@ var SolanaIcon = (_a) => {
|
|
|
3671
3742
|
y2: "22.2975",
|
|
3672
3743
|
gradientUnits: "userSpaceOnUse",
|
|
3673
3744
|
children: [
|
|
3674
|
-
/* @__PURE__ */ (0,
|
|
3675
|
-
/* @__PURE__ */ (0,
|
|
3745
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
3746
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
3676
3747
|
]
|
|
3677
3748
|
}
|
|
3678
3749
|
),
|
|
3679
|
-
/* @__PURE__ */ (0,
|
|
3750
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
3680
3751
|
"linearGradient",
|
|
3681
3752
|
{
|
|
3682
3753
|
id: "paint1_linear_1471_9988",
|
|
@@ -3686,12 +3757,12 @@ var SolanaIcon = (_a) => {
|
|
|
3686
3757
|
y2: "20.028",
|
|
3687
3758
|
gradientUnits: "userSpaceOnUse",
|
|
3688
3759
|
children: [
|
|
3689
|
-
/* @__PURE__ */ (0,
|
|
3690
|
-
/* @__PURE__ */ (0,
|
|
3760
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
3761
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
3691
3762
|
]
|
|
3692
3763
|
}
|
|
3693
3764
|
),
|
|
3694
|
-
/* @__PURE__ */ (0,
|
|
3765
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsxs)(
|
|
3695
3766
|
"linearGradient",
|
|
3696
3767
|
{
|
|
3697
3768
|
id: "paint2_linear_1471_9988",
|
|
@@ -3701,8 +3772,8 @@ var SolanaIcon = (_a) => {
|
|
|
3701
3772
|
y2: "21.1555",
|
|
3702
3773
|
gradientUnits: "userSpaceOnUse",
|
|
3703
3774
|
children: [
|
|
3704
|
-
/* @__PURE__ */ (0,
|
|
3705
|
-
/* @__PURE__ */ (0,
|
|
3775
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("stop", { stopColor: "#00FFA3" }),
|
|
3776
|
+
/* @__PURE__ */ (0, import_jsx_runtime84.jsx)("stop", { offset: "1", stopColor: "#DC1FFF" })
|
|
3706
3777
|
]
|
|
3707
3778
|
}
|
|
3708
3779
|
)
|
|
@@ -3714,10 +3785,10 @@ var SolanaIcon = (_a) => {
|
|
|
3714
3785
|
SolanaIcon.displayName = "SolanaIcon";
|
|
3715
3786
|
|
|
3716
3787
|
// src/primitives/icon/svg/sort-end-date.tsx
|
|
3717
|
-
var
|
|
3788
|
+
var import_jsx_runtime85 = require("react/jsx-runtime");
|
|
3718
3789
|
var SortEndDateIcon = (_a) => {
|
|
3719
3790
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3720
|
-
return /* @__PURE__ */ (0,
|
|
3791
|
+
return /* @__PURE__ */ (0, import_jsx_runtime85.jsxs)(
|
|
3721
3792
|
"svg",
|
|
3722
3793
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3723
3794
|
viewBox: "0 0 16 16",
|
|
@@ -3725,15 +3796,15 @@ var SortEndDateIcon = (_a) => {
|
|
|
3725
3796
|
fill: "none"
|
|
3726
3797
|
}, getIconA11yProps(title2)), props), {
|
|
3727
3798
|
children: [
|
|
3728
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3729
|
-
/* @__PURE__ */ (0,
|
|
3799
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("title", { children: title2 }) : null,
|
|
3800
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("g", { clipPath: "url(#sort-end-date-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
|
|
3730
3801
|
"path",
|
|
3731
3802
|
{
|
|
3732
3803
|
d: "M16 8C16 10.1217 15.1571 12.1566 13.6569 13.6569C12.1566 15.1571 10.1217 16 8 16C5.87827 16 3.84344 15.1571 2.34315 13.6569C0.842855 12.1566 0 10.1217 0 8C0 7.82319 0.0702379 7.65362 0.195262 7.5286C0.320286 7.40357 0.489856 7.33333 0.666667 7.33333C0.843478 7.33333 1.01305 7.40357 1.13807 7.5286C1.2631 7.65362 1.33333 7.82319 1.33333 8C1.33333 9.31854 1.72433 10.6075 2.45687 11.7038C3.18941 12.8001 4.2306 13.6546 5.44878 14.1592C6.66695 14.6638 8.0074 14.7958 9.3006 14.5386C10.5938 14.2813 11.7817 13.6464 12.714 12.714C13.6464 11.7817 14.2813 10.5938 14.5386 9.3006C14.7958 8.0074 14.6638 6.66695 14.1592 5.44878C13.6546 4.2306 12.8001 3.18941 11.7038 2.45687C10.6075 1.72433 9.31854 1.33333 8 1.33333C7.82319 1.33333 7.65362 1.2631 7.5286 1.13807C7.40357 1.01305 7.33333 0.843478 7.33333 0.666667C7.33333 0.489856 7.40357 0.320286 7.5286 0.195262C7.65362 0.0702379 7.82319 0 8 0C10.121 0.00229405 12.1545 0.845885 13.6543 2.34568C15.1541 3.84547 15.9977 5.87897 16 8ZM6.85133 7.33333H5.33333C5.15652 7.33333 4.98695 7.40357 4.86193 7.5286C4.7369 7.65362 4.66667 7.82319 4.66667 8C4.66667 8.17681 4.7369 8.34638 4.86193 8.4714C4.98695 8.59643 5.15652 8.66667 5.33333 8.66667H6.85133C6.95314 8.84349 7.09429 8.99449 7.26384 9.108C7.43339 9.2215 7.62679 9.29445 7.82906 9.3212C8.03134 9.34795 8.23705 9.32778 8.43028 9.26226C8.6235 9.19673 8.79905 9.0876 8.94333 8.94333C9.0876 8.79905 9.19673 8.6235 9.26226 8.43028C9.32778 8.23705 9.34795 8.03134 9.3212 7.82906C9.29445 7.62679 9.2215 7.43339 9.108 7.26384C8.99449 7.09429 8.84349 6.95314 8.66667 6.85133V4.66667C8.66667 4.48986 8.59643 4.32029 8.4714 4.19526C8.34638 4.07024 8.17681 4 8 4C7.82319 4 7.65362 4.07024 7.5286 4.19526C7.40357 4.32029 7.33333 4.48986 7.33333 4.66667V6.85133C7.13362 6.96752 6.96752 7.13362 6.85133 7.33333ZM1.218 5.856C1.34985 5.856 1.47875 5.8169 1.58838 5.74365C1.69801 5.67039 1.78346 5.56627 1.83392 5.44446C1.88438 5.32264 1.89758 5.18859 1.87186 5.05927C1.84613 4.92995 1.78264 4.81116 1.6894 4.71793C1.59617 4.62469 1.47738 4.5612 1.34806 4.53548C1.21874 4.50975 1.0847 4.52296 0.962878 4.57341C0.84106 4.62387 0.736941 4.70932 0.663687 4.81895C0.590433 4.92859 0.551333 5.05748 0.551333 5.18933C0.551333 5.36614 0.621571 5.53571 0.746595 5.66074C0.87162 5.78576 1.04119 5.856 1.218 5.856ZM2.814 3.47133C2.94585 3.47133 3.07475 3.43223 3.18438 3.35898C3.29401 3.28573 3.37946 3.18161 3.42992 3.05979C3.48038 2.93797 3.49358 2.80393 3.46786 2.67461C3.44213 2.54529 3.37864 2.4265 3.2854 2.33326C3.19217 2.24003 3.07338 2.17653 2.94406 2.15081C2.81474 2.12509 2.6807 2.13829 2.55888 2.18875C2.43706 2.23921 2.33294 2.32465 2.25969 2.43429C2.18643 2.54392 2.14733 2.67281 2.14733 2.80467C2.14733 2.98148 2.21757 3.15105 2.3426 3.27607C2.46762 3.4011 2.63719 3.47133 2.814 3.47133ZM5.186 1.894C5.31785 1.894 5.44675 1.8549 5.55638 1.78165C5.66601 1.70839 5.75146 1.60427 5.80192 1.48246C5.85238 1.36064 5.86558 1.22659 5.83986 1.09727C5.81413 0.967952 5.75064 0.849164 5.6574 0.755929C5.56417 0.662694 5.44538 0.5992 5.31606 0.573476C5.18674 0.547753 5.0527 0.560955 4.93088 0.611414C4.80906 0.661872 4.70494 0.74732 4.63169 0.856953C4.55843 0.966586 4.51933 1.09548 4.51933 1.22733C4.51933 1.40414 4.58957 1.57371 4.7146 1.69874C4.83962 1.82376 5.00919 1.894 5.186 1.894Z",
|
|
3733
3804
|
fill: "currentColor"
|
|
3734
3805
|
}
|
|
3735
3806
|
) }),
|
|
3736
|
-
/* @__PURE__ */ (0,
|
|
3807
|
+
/* @__PURE__ */ (0, import_jsx_runtime85.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("clipPath", { id: "sort-end-date-clip", children: /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3737
3808
|
]
|
|
3738
3809
|
})
|
|
3739
3810
|
);
|
|
@@ -3741,10 +3812,10 @@ var SortEndDateIcon = (_a) => {
|
|
|
3741
3812
|
SortEndDateIcon.displayName = "SortEndDateIcon";
|
|
3742
3813
|
|
|
3743
3814
|
// src/primitives/icon/svg/sort-top-arbitrage.tsx
|
|
3744
|
-
var
|
|
3815
|
+
var import_jsx_runtime86 = require("react/jsx-runtime");
|
|
3745
3816
|
var SortTopArbitrageIcon = (_a) => {
|
|
3746
3817
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3747
|
-
return /* @__PURE__ */ (0,
|
|
3818
|
+
return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
|
|
3748
3819
|
"svg",
|
|
3749
3820
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3750
3821
|
viewBox: "0 0 16 16",
|
|
@@ -3752,30 +3823,30 @@ var SortTopArbitrageIcon = (_a) => {
|
|
|
3752
3823
|
fill: "none"
|
|
3753
3824
|
}, getIconA11yProps(title2)), props), {
|
|
3754
3825
|
children: [
|
|
3755
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3756
|
-
/* @__PURE__ */ (0,
|
|
3757
|
-
/* @__PURE__ */ (0,
|
|
3826
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("title", { children: title2 }) : null,
|
|
3827
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsxs)("g", { clipPath: "url(#sort-top-arbitrage-clip)", children: [
|
|
3828
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3758
3829
|
"path",
|
|
3759
3830
|
{
|
|
3760
3831
|
d: "M15.4314 6.314L14.9067 5.6C14.5432 5.10529 14.0686 4.7028 13.5211 4.42491C12.9737 4.14701 12.3687 4.00148 11.7547 4H4.25541C3.65409 4.00157 3.06116 4.14118 2.52231 4.40806C1.98346 4.67494 1.51308 5.06197 1.14741 5.53933L0.600079 6.25533C0.155734 6.84154 -0.0531817 7.57279 0.0144266 8.30525C0.0820349 9.03772 0.421273 9.71837 0.965413 10.2133L6.29208 15.3513C6.75993 15.7686 7.36522 15.9986 7.99208 15.9973C8.63223 15.9961 9.24941 15.7587 9.72541 15.3307L15.0161 10.242C15.5633 9.7574 15.9094 9.08556 15.9863 8.35863C16.0632 7.63171 15.8652 6.90233 15.4314 6.314ZM13.8314 6.38533L14.3561 7.10133C14.4088 7.1746 14.4552 7.25221 14.4947 7.33333H11.3007C11.2525 7.01408 11.1693 6.7011 11.0527 6.4L10.6261 5.33333H11.7547C12.159 5.3341 12.5575 5.42967 12.9182 5.61237C13.2788 5.79508 13.5916 6.05982 13.8314 6.38533ZM7.99341 13.392L6.14741 9.212C6.08065 9.0352 6.03021 8.85266 5.99675 8.66667H9.96475C9.93678 8.81325 9.89755 8.95745 9.84741 9.098L7.99341 13.392ZM6.06675 7.33333C6.09463 7.21381 6.12958 7.09605 6.17141 6.98067L6.82741 5.33333H9.19008L9.81475 6.89533C9.86959 7.03796 9.91415 7.18434 9.94808 7.33333H6.06675ZM2.20741 6.34733C2.44845 6.0329 2.75844 5.77797 3.11349 5.60217C3.46855 5.42638 3.85922 5.3344 4.25541 5.33333H5.38875L4.93341 6.486C4.82356 6.75949 4.74159 7.04338 4.68875 7.33333H1.49675C1.54247 7.2391 1.59764 7.14976 1.66141 7.06667L2.20741 6.34733ZM1.87408 9.236C1.70016 9.07824 1.56353 8.88377 1.47408 8.66667H4.65541C4.69963 9.02585 4.78623 9.37853 4.91341 9.71733L6.79808 13.984L1.87408 9.236ZM9.18075 14.0093L11.0834 9.6C11.1938 9.29824 11.2708 8.98525 11.3127 8.66667H14.5334C14.439 8.89552 14.2949 9.10049 14.1114 9.26667L9.18075 14.0093Z",
|
|
3761
3832
|
fill: "currentColor"
|
|
3762
3833
|
}
|
|
3763
3834
|
),
|
|
3764
|
-
/* @__PURE__ */ (0,
|
|
3835
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3765
3836
|
"path",
|
|
3766
3837
|
{
|
|
3767
3838
|
d: "M8.00065 2.66667C8.17746 2.66667 8.34703 2.59643 8.47206 2.4714C8.59708 2.34638 8.66732 2.17681 8.66732 2V0.666667C8.66732 0.489856 8.59708 0.320286 8.47206 0.195262C8.34703 0.0702379 8.17746 0 8.00065 0C7.82384 0 7.65427 0.0702379 7.52925 0.195262C7.40422 0.320286 7.33398 0.489856 7.33398 0.666667V2C7.33398 2.17681 7.40422 2.34638 7.52925 2.4714C7.65427 2.59643 7.82384 2.66667 8.00065 2.66667Z",
|
|
3768
3839
|
fill: "currentColor"
|
|
3769
3840
|
}
|
|
3770
3841
|
),
|
|
3771
|
-
/* @__PURE__ */ (0,
|
|
3842
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3772
3843
|
"path",
|
|
3773
3844
|
{
|
|
3774
3845
|
d: "M11.0357 2.6C11.1144 2.63958 11.2002 2.66316 11.288 2.66939C11.3759 2.67561 11.4642 2.66436 11.5477 2.63628C11.6312 2.6082 11.7083 2.56384 11.7745 2.50578C11.8408 2.44772 11.8949 2.3771 11.9337 2.298L12.6004 0.964671C12.6794 0.806425 12.6923 0.623264 12.6363 0.455481C12.5803 0.287699 12.4599 0.149038 12.3017 0.0700039C12.1434 -0.00903065 11.9603 -0.0219652 11.7925 0.0340457C11.6247 0.0900565 11.4861 0.210425 11.407 0.368671L10.7404 1.702C10.7005 1.78031 10.6766 1.86572 10.6699 1.95331C10.6632 2.0409 10.6739 2.12895 10.7013 2.2124C10.7288 2.29585 10.7724 2.37305 10.8298 2.43957C10.8872 2.50609 10.9572 2.56061 11.0357 2.6Z",
|
|
3775
3846
|
fill: "currentColor"
|
|
3776
3847
|
}
|
|
3777
3848
|
),
|
|
3778
|
-
/* @__PURE__ */ (0,
|
|
3849
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
|
|
3779
3850
|
"path",
|
|
3780
3851
|
{
|
|
3781
3852
|
d: "M4.06955 2.298C4.14858 2.45669 4.28742 2.57748 4.45552 2.63381C4.62361 2.69013 4.8072 2.67737 4.96588 2.59834C5.12457 2.5193 5.24536 2.38047 5.30169 2.21237C5.35801 2.04428 5.34525 1.86069 5.26622 1.702L4.59955 0.368671C4.56042 0.290315 4.50623 0.220435 4.44009 0.16302C4.37395 0.105605 4.29715 0.0617794 4.21407 0.0340457C4.04629 -0.0219652 3.86313 -0.00903065 3.70488 0.0700039C3.54664 0.149038 3.42627 0.287699 3.37026 0.455481C3.31425 0.623264 3.32718 0.806425 3.40622 0.964671L4.06955 2.298Z",
|
|
@@ -3783,7 +3854,7 @@ var SortTopArbitrageIcon = (_a) => {
|
|
|
3783
3854
|
}
|
|
3784
3855
|
)
|
|
3785
3856
|
] }),
|
|
3786
|
-
/* @__PURE__ */ (0,
|
|
3857
|
+
/* @__PURE__ */ (0, import_jsx_runtime86.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("clipPath", { id: "sort-top-arbitrage-clip", children: /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3787
3858
|
]
|
|
3788
3859
|
})
|
|
3789
3860
|
);
|
|
@@ -3791,26 +3862,28 @@ var SortTopArbitrageIcon = (_a) => {
|
|
|
3791
3862
|
SortTopArbitrageIcon.displayName = "SortTopArbitrageIcon";
|
|
3792
3863
|
|
|
3793
3864
|
// src/primitives/icon/svg/sort-volume-24hr.tsx
|
|
3794
|
-
var
|
|
3865
|
+
var import_jsx_runtime87 = require("react/jsx-runtime");
|
|
3795
3866
|
var SortVolume24hrIcon = (_a) => {
|
|
3796
3867
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3797
|
-
return /* @__PURE__ */ (0,
|
|
3868
|
+
return /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
|
|
3798
3869
|
"svg",
|
|
3799
3870
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3871
|
+
width: "16",
|
|
3872
|
+
height: "16",
|
|
3800
3873
|
viewBox: "0 0 16 16",
|
|
3801
3874
|
className,
|
|
3802
3875
|
fill: "none"
|
|
3803
3876
|
}, getIconA11yProps(title2)), props), {
|
|
3804
3877
|
children: [
|
|
3805
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3806
|
-
/* @__PURE__ */ (0,
|
|
3878
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("title", { children: title2 }) : null,
|
|
3879
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("g", { clipPath: "url(#clip0_7744_587)", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)(
|
|
3807
3880
|
"path",
|
|
3808
3881
|
{
|
|
3809
|
-
d: "
|
|
3882
|
+
d: "M8 3.33333C8.36867 3.33333 8.66667 3.63133 8.66667 4V7.91733C8.66667 8.15 8.546 8.36467 8.34733 8.48667L5.40867 10.284C5.30067 10.3507 5.18 10.3813 5.06133 10.3813C4.83667 10.3813 4.618 10.268 4.492 10.062C4.3 9.748 4.39867 9.338 4.71333 9.14533L7.33333 7.54333V4C7.33333 3.63133 7.63133 3.33333 8 3.33333ZM14.6667 8.66667H12C11.6313 8.66667 11.3333 8.96467 11.3333 9.33333C11.3333 9.702 11.6313 10 12 10H13.712L10.826 12.8853C10.6973 13.014 10.47 13.0147 10.34 12.8853L9.604 12.1493C8.97 11.514 7.86533 11.514 7.22933 12.1493L4.52733 14.8627C4.26733 15.124 4.26867 15.546 4.52933 15.806C4.65933 15.9353 4.83 16 5 16C5.17133 16 5.34267 15.934 5.47267 15.804L8.174 13.0907C8.30267 12.962 8.53 12.9613 8.66 13.0907L9.396 13.8267C10.03 14.462 11.136 14.4613 11.7693 13.8267L14.6667 10.93V12.666C14.6667 13.0347 14.9647 13.3327 15.3333 13.3327C15.702 13.3327 16 13.0347 16 12.666V9.99933C16 9.264 15.402 8.666 14.6667 8.666V8.66667ZM1.33333 8C1.33333 4.324 4.324 1.33333 8 1.33333C11.2187 1.33333 13.976 3.62667 14.5567 6.78733C14.624 7.14933 14.9673 7.39333 15.3327 7.32267C15.6947 7.256 15.934 6.90867 15.868 6.54667C15.1713 2.75333 11.862 0 8 0C3.58867 0 0 3.58867 0 8C0 10.2107 0.928 12.344 2.54533 13.852C2.67333 13.972 2.83733 14.0313 3 14.0313C3.17867 14.0313 3.356 13.9607 3.48733 13.8193C3.73867 13.5507 3.72333 13.1287 3.454 12.8773C2.10667 11.62 1.33267 9.84267 1.33267 8.00067L1.33333 8Z",
|
|
3810
3883
|
fill: "currentColor"
|
|
3811
3884
|
}
|
|
3812
3885
|
) }),
|
|
3813
|
-
/* @__PURE__ */ (0,
|
|
3886
|
+
/* @__PURE__ */ (0, import_jsx_runtime87.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("clipPath", { id: "clip0_7744_587", children: /* @__PURE__ */ (0, import_jsx_runtime87.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3814
3887
|
]
|
|
3815
3888
|
})
|
|
3816
3889
|
);
|
|
@@ -3818,10 +3891,10 @@ var SortVolume24hrIcon = (_a) => {
|
|
|
3818
3891
|
SortVolume24hrIcon.displayName = "SortVolume24hrIcon";
|
|
3819
3892
|
|
|
3820
3893
|
// src/primitives/icon/svg/sort-volume.tsx
|
|
3821
|
-
var
|
|
3894
|
+
var import_jsx_runtime88 = require("react/jsx-runtime");
|
|
3822
3895
|
var SortVolumeIcon = (_a) => {
|
|
3823
3896
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3824
|
-
return /* @__PURE__ */ (0,
|
|
3897
|
+
return /* @__PURE__ */ (0, import_jsx_runtime88.jsxs)(
|
|
3825
3898
|
"svg",
|
|
3826
3899
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3827
3900
|
viewBox: "0 0 16 16",
|
|
@@ -3829,15 +3902,15 @@ var SortVolumeIcon = (_a) => {
|
|
|
3829
3902
|
fill: "none"
|
|
3830
3903
|
}, getIconA11yProps(title2)), props), {
|
|
3831
3904
|
children: [
|
|
3832
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3833
|
-
/* @__PURE__ */ (0,
|
|
3905
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("title", { children: title2 }) : null,
|
|
3906
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("g", { clipPath: "url(#sort-volume-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
|
|
3834
3907
|
"path",
|
|
3835
3908
|
{
|
|
3836
3909
|
d: "M13.6667 10.6667H11.3333V8.33333C11.3333 7.04666 10.2867 6 9 6H7C5.71333 6 4.66667 7.04666 4.66667 8.33333V8.66666H2.33333C1.04667 8.66666 0 9.71333 0 11V13.6667C0 14.9533 1.04667 16 2.33333 16H13.6667C14.9533 16 16 14.9533 16 13.6667V13C16 11.7133 14.9533 10.6667 13.6667 10.6667ZM6 8.33333C6 7.782 6.44867 7.33333 7 7.33333H9C9.55133 7.33333 10 7.782 10 8.33333V14.6667H6V8.33333ZM1.33333 13.6667V11C1.33333 10.4487 1.782 9.99999 2.33333 9.99999H4.66667V14.6667H2.33333C1.782 14.6667 1.33333 14.218 1.33333 13.6667ZM14.6667 13.6667C14.6667 14.218 14.218 14.6667 13.6667 14.6667H11.3333V12H13.6667C14.218 12 14.6667 12.4487 14.6667 13V13.6667ZM5.36067 1.90466C5.42467 1.73 5.59133 1.61333 5.778 1.61333H7.112L7.584 0.288662C7.64867 0.114662 7.81467 -0.000671387 8.00067 -0.000671387C8.18667 -0.000671387 8.35267 0.114662 8.41733 0.288662L8.88933 1.61333H10.2233C10.41 1.61333 10.5767 1.73 10.6407 1.90533C10.7047 2.08066 10.652 2.27733 10.5093 2.398L9.458 3.25466L9.89267 4.57933C9.952 4.75866 9.892 4.95599 9.742 5.07133C9.592 5.18666 9.386 5.19466 9.228 5.09199L8.004 4.29466L6.80067 5.09999C6.726 5.14999 6.63933 5.17533 6.55333 5.17533C6.45933 5.17533 6.36533 5.14533 6.28667 5.08666C6.13533 4.97333 6.07267 4.77733 6.12933 4.59733L6.54733 3.25666L5.49067 2.39666C5.34867 2.276 5.296 2.07933 5.36067 1.90466Z",
|
|
3837
3910
|
fill: "currentColor"
|
|
3838
3911
|
}
|
|
3839
3912
|
) }),
|
|
3840
|
-
/* @__PURE__ */ (0,
|
|
3913
|
+
/* @__PURE__ */ (0, import_jsx_runtime88.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("clipPath", { id: "sort-volume-clip", children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
3841
3914
|
]
|
|
3842
3915
|
})
|
|
3843
3916
|
);
|
|
@@ -3845,10 +3918,10 @@ var SortVolumeIcon = (_a) => {
|
|
|
3845
3918
|
SortVolumeIcon.displayName = "SortVolumeIcon";
|
|
3846
3919
|
|
|
3847
3920
|
// src/primitives/icon/svg/sparkles-filled.tsx
|
|
3848
|
-
var
|
|
3921
|
+
var import_jsx_runtime89 = require("react/jsx-runtime");
|
|
3849
3922
|
var SparklesFilledIcon = (_a) => {
|
|
3850
3923
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3851
|
-
return /* @__PURE__ */ (0,
|
|
3924
|
+
return /* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
3852
3925
|
"svg",
|
|
3853
3926
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3854
3927
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -3859,15 +3932,15 @@ var SparklesFilledIcon = (_a) => {
|
|
|
3859
3932
|
className
|
|
3860
3933
|
}, getIconA11yProps(title2)), props), {
|
|
3861
3934
|
children: [
|
|
3862
|
-
/* @__PURE__ */ (0,
|
|
3935
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("g", { clipPath: "url(#clip0_2028_8371)", children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
|
|
3863
3936
|
"path",
|
|
3864
3937
|
{
|
|
3865
3938
|
d: "M13.0001 15.9999C12.8668 16 12.7366 15.9602 12.6262 15.8856C12.5158 15.8109 12.4303 15.705 12.3807 15.5813L11.8181 14.1726L10.4074 13.5786C10.2864 13.5252 10.1839 13.4372 10.1127 13.3256C10.0416 13.2141 10.0049 13.0841 10.0074 12.9518C10.0099 12.8196 10.0514 12.691 10.1267 12.5823C10.202 12.4735 10.3078 12.3894 10.4307 12.3406L11.8227 11.8133L12.3807 10.4186C12.4321 10.2967 12.5182 10.1927 12.6284 10.1195C12.7385 10.0464 12.8678 10.0074 13.0001 10.0074C13.1323 10.0074 13.2616 10.0464 13.3718 10.1195C13.482 10.1927 13.5681 10.2967 13.6194 10.4186L14.1801 11.8186L15.5801 12.3793C15.7022 12.4303 15.8065 12.5164 15.8799 12.6266C15.9532 12.7368 15.9923 12.8662 15.9923 12.9986C15.9923 13.131 15.9532 13.2604 15.8799 13.3706C15.8065 13.4808 15.7022 13.5668 15.5801 13.6179L14.1801 14.1786L13.6194 15.5786C13.5703 15.7028 13.4849 15.8093 13.3745 15.8845C13.2641 15.9596 13.1336 15.9998 13.0001 15.9999ZM6.66674 13.9999C6.37872 14.0034 6.09733 13.9135 5.86467 13.7437C5.63201 13.5739 5.46059 13.3333 5.37607 13.0579L4.30007 9.69326L0.92474 8.56393C0.652316 8.47287 0.415886 8.29758 0.249599 8.06337C0.0833117 7.82916 -0.00422421 7.54815 -0.000366007 7.26094C0.0034922 6.97372 0.0985448 6.69517 0.271063 6.46551C0.443581 6.23585 0.684635 6.06697 0.959407 5.98326L4.30807 4.9606L5.43607 1.59126C5.51994 1.31451 5.69343 1.07349 5.92924 0.906102C6.16505 0.738716 6.44981 0.654464 6.73874 0.666597C7.02681 0.666987 7.307 0.76066 7.53738 0.933596C7.76776 1.10653 7.93594 1.34943 8.01674 1.62593L9.03807 4.96926L12.3914 6.0426C12.6619 6.13332 12.897 6.30672 13.0636 6.53831C13.2302 6.7699 13.3198 7.04798 13.3198 7.33326C13.3198 7.61855 13.2302 7.89662 13.0636 8.12822C12.897 8.35981 12.6619 8.53321 12.3914 8.62393L9.03207 9.6986L7.95741 13.0579C7.87289 13.3333 7.70147 13.5739 7.46881 13.7437C7.23615 13.9135 6.95476 14.0034 6.66674 13.9999ZM13.6667 4.6666C13.5181 4.66659 13.3738 4.61693 13.2566 4.52549C13.1394 4.43406 13.0562 4.30609 13.0201 4.16193L12.7821 3.2086L11.8267 2.95193C11.6832 2.91335 11.5566 2.82788 11.4672 2.70911C11.3777 2.59033 11.3306 2.44507 11.3332 2.29641C11.3358 2.14776 11.388 2.00424 11.4815 1.88867C11.5751 1.7731 11.7046 1.69212 11.8494 1.6586L12.7827 1.44193L13.0201 0.504597C13.0562 0.360445 13.1395 0.232498 13.2566 0.141076C13.3738 0.0496542 13.5181 0 13.6667 0C13.8154 0 13.9597 0.0496542 14.0769 0.141076C14.194 0.232498 14.2773 0.360445 14.3134 0.504597L14.5494 1.44993L15.4947 1.6866C15.6389 1.72272 15.7668 1.80598 15.8583 1.92314C15.9497 2.0403 15.9993 2.18465 15.9993 2.33326C15.9993 2.48187 15.9497 2.62622 15.8583 2.74338C15.7668 2.86055 15.6389 2.9438 15.4947 2.97993L14.5494 3.2166L14.3134 4.16193C14.2773 4.30609 14.194 4.43406 14.0769 4.52549C13.9597 4.61693 13.8154 4.66659 13.6667 4.6666Z",
|
|
3866
3939
|
fill: "currentColor"
|
|
3867
3940
|
}
|
|
3868
3941
|
) }),
|
|
3869
|
-
/* @__PURE__ */ (0,
|
|
3870
|
-
/* @__PURE__ */ (0,
|
|
3942
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsxs)("defs", { children: [
|
|
3943
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsxs)(
|
|
3871
3944
|
"linearGradient",
|
|
3872
3945
|
{
|
|
3873
3946
|
id: "paint0_linear_2028_8371",
|
|
@@ -3877,12 +3950,12 @@ var SparklesFilledIcon = (_a) => {
|
|
|
3877
3950
|
y2: "7.99997",
|
|
3878
3951
|
gradientUnits: "userSpaceOnUse",
|
|
3879
3952
|
children: [
|
|
3880
|
-
/* @__PURE__ */ (0,
|
|
3881
|
-
/* @__PURE__ */ (0,
|
|
3953
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("stop", { stopColor: "currentColor" }),
|
|
3954
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("stop", { offset: "1", stopColor: "currentColor" })
|
|
3882
3955
|
]
|
|
3883
3956
|
}
|
|
3884
3957
|
),
|
|
3885
|
-
/* @__PURE__ */ (0,
|
|
3958
|
+
/* @__PURE__ */ (0, import_jsx_runtime89.jsx)("clipPath", { id: "clip0_2028_8371", children: /* @__PURE__ */ (0, import_jsx_runtime89.jsx)("rect", { width: "16", height: "16", fill: "white" }) })
|
|
3886
3959
|
] })
|
|
3887
3960
|
]
|
|
3888
3961
|
})
|
|
@@ -3891,10 +3964,10 @@ var SparklesFilledIcon = (_a) => {
|
|
|
3891
3964
|
SparklesFilledIcon.displayName = "SparklesFilledIcon";
|
|
3892
3965
|
|
|
3893
3966
|
// src/primitives/icon/svg/spinner.tsx
|
|
3894
|
-
var
|
|
3967
|
+
var import_jsx_runtime90 = require("react/jsx-runtime");
|
|
3895
3968
|
var SpinnerIcon = (_a) => {
|
|
3896
3969
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3897
|
-
return /* @__PURE__ */ (0,
|
|
3970
|
+
return /* @__PURE__ */ (0, import_jsx_runtime90.jsxs)(
|
|
3898
3971
|
"svg",
|
|
3899
3972
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3900
3973
|
width: "26",
|
|
@@ -3905,8 +3978,8 @@ var SpinnerIcon = (_a) => {
|
|
|
3905
3978
|
className
|
|
3906
3979
|
}, getIconA11yProps(title2)), props), {
|
|
3907
3980
|
children: [
|
|
3908
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3909
|
-
/* @__PURE__ */ (0,
|
|
3981
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime90.jsx)("title", { children: title2 }) : null,
|
|
3982
|
+
/* @__PURE__ */ (0, import_jsx_runtime90.jsx)(
|
|
3910
3983
|
"path",
|
|
3911
3984
|
{
|
|
3912
3985
|
d: "M13 1C10.5371 1 8.13377 1.75785 6.11636 3.17068C4.09894 4.58352 2.56512 6.58289 1.72308 8.89742C0.88105 11.212 0.771596 13.7295 1.40958 16.1084C2.04756 18.4873 3.40208 20.6122 5.28926 22.1948C7.17645 23.7774 9.5049 24.741 11.9585 24.9547C14.4122 25.1685 16.8722 24.6221 19.0046 23.3896C21.137 22.1572 22.8386 20.2985 23.8783 18.0658C24.918 15.8331 25.2456 13.3345 24.8165 10.9092",
|
|
@@ -3922,10 +3995,10 @@ var SpinnerIcon = (_a) => {
|
|
|
3922
3995
|
SpinnerIcon.displayName = "SpinnerIcon";
|
|
3923
3996
|
|
|
3924
3997
|
// src/primitives/icon/svg/stay-in-control.tsx
|
|
3925
|
-
var
|
|
3998
|
+
var import_jsx_runtime91 = require("react/jsx-runtime");
|
|
3926
3999
|
var StayInControlIcon = (_a) => {
|
|
3927
4000
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3928
|
-
return /* @__PURE__ */ (0,
|
|
4001
|
+
return /* @__PURE__ */ (0, import_jsx_runtime91.jsxs)(
|
|
3929
4002
|
"svg",
|
|
3930
4003
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3931
4004
|
width: "28",
|
|
@@ -3936,16 +4009,16 @@ var StayInControlIcon = (_a) => {
|
|
|
3936
4009
|
className
|
|
3937
4010
|
}, getIconA11yProps(title2)), props), {
|
|
3938
4011
|
children: [
|
|
3939
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3940
|
-
/* @__PURE__ */ (0,
|
|
3941
|
-
/* @__PURE__ */ (0,
|
|
4012
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("title", { children: title2 }) : null,
|
|
4013
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsxs)("g", { clipPath: "url(#clip0_stay_in_control)", children: [
|
|
4014
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3942
4015
|
"path",
|
|
3943
4016
|
{
|
|
3944
4017
|
d: "M14 27.9406C13.9102 27.9406 13.8215 27.9196 13.7387 27.8788L13.2428 27.6314C10.6832 26.3504 2.32983 21.5753 2.32983 13.8648L2.33217 7.62776C2.33217 5.36093 3.77767 3.35776 5.93017 2.64493L13.8168 0.0292617C13.9358 -0.010405 14.0653 -0.010405 14.1832 0.0292617L22.0687 2.64376C24.2212 3.35776 25.6667 5.36093 25.6667 7.6266L25.6632 13.8636C25.6632 22.6113 17.2958 26.6584 14.7315 27.6909L14.217 27.8974C14.147 27.9254 14.0723 27.9394 13.9988 27.9394L14 27.9406ZM14 1.19826L6.29767 3.7521C4.6235 4.30743 3.5 5.86493 3.5 7.62776L3.49767 13.8648C3.49767 20.9056 11.3563 25.3844 13.7655 26.5884L14.0268 26.7191L14.2975 26.6106C16.6903 25.6481 24.4977 21.8833 24.4977 13.8659L24.5012 7.62893C24.5012 5.8661 23.3765 4.3086 21.7035 3.75326L14 1.19826Z",
|
|
3945
4018
|
fill: "currentColor"
|
|
3946
4019
|
}
|
|
3947
4020
|
),
|
|
3948
|
-
/* @__PURE__ */ (0,
|
|
4021
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)(
|
|
3949
4022
|
"path",
|
|
3950
4023
|
{
|
|
3951
4024
|
d: "M12.8112 17.5001C12.0633 17.5001 11.3155 17.2154 10.7462 16.6461L7.18083 13.2569C6.94749 13.0352 6.93816 12.6654 7.15983 12.4321C7.38149 12.1999 7.75016 12.1894 7.98466 12.4111L11.5605 15.8107C12.2535 16.5026 13.363 16.5037 14.0455 15.8212L20.5928 9.49791C20.8262 9.27508 21.196 9.28208 21.4177 9.51308C21.6417 9.74408 21.6358 10.1139 21.4037 10.3379L14.8622 16.6542C14.2987 17.2177 13.5543 17.5012 12.81 17.5012L12.8112 17.5001Z",
|
|
@@ -3953,7 +4026,7 @@ var StayInControlIcon = (_a) => {
|
|
|
3953
4026
|
}
|
|
3954
4027
|
)
|
|
3955
4028
|
] }),
|
|
3956
|
-
/* @__PURE__ */ (0,
|
|
4029
|
+
/* @__PURE__ */ (0, import_jsx_runtime91.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("clipPath", { id: "clip0_stay_in_control", children: /* @__PURE__ */ (0, import_jsx_runtime91.jsx)("rect", { width: "28", height: "28", fill: "white" }) }) })
|
|
3957
4030
|
]
|
|
3958
4031
|
})
|
|
3959
4032
|
);
|
|
@@ -3961,10 +4034,10 @@ var StayInControlIcon = (_a) => {
|
|
|
3961
4034
|
StayInControlIcon.displayName = "StayInControlIcon";
|
|
3962
4035
|
|
|
3963
4036
|
// src/primitives/icon/svg/success-check.tsx
|
|
3964
|
-
var
|
|
4037
|
+
var import_jsx_runtime92 = require("react/jsx-runtime");
|
|
3965
4038
|
var SuccessCheckIcon = (_a) => {
|
|
3966
4039
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3967
|
-
return /* @__PURE__ */ (0,
|
|
4040
|
+
return /* @__PURE__ */ (0, import_jsx_runtime92.jsxs)(
|
|
3968
4041
|
"svg",
|
|
3969
4042
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3970
4043
|
width: "24",
|
|
@@ -3975,8 +4048,8 @@ var SuccessCheckIcon = (_a) => {
|
|
|
3975
4048
|
className
|
|
3976
4049
|
}, getIconA11yProps(title2)), props), {
|
|
3977
4050
|
children: [
|
|
3978
|
-
title2 ? /* @__PURE__ */ (0,
|
|
3979
|
-
/* @__PURE__ */ (0,
|
|
4051
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime92.jsx)("title", { children: title2 }) : null,
|
|
4052
|
+
/* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
|
|
3980
4053
|
"path",
|
|
3981
4054
|
{
|
|
3982
4055
|
d: "M7.74919 20.6626C7.06793 20.6629 6.41457 20.3921 5.93325 19.91L0.443061 14.4219C-0.147687 13.8309 -0.147687 12.873 0.443061 12.2821C1.034 11.6913 1.99191 11.6913 2.58284 12.2821L7.74919 17.4484L21.4172 3.78046C22.0081 3.18972 22.966 3.18972 23.5569 3.78046C24.1477 4.3714 24.1477 5.32931 23.5569 5.92024L9.56513 19.91C9.08381 20.3921 8.43045 20.6629 7.74919 20.6626Z",
|
|
@@ -3990,10 +4063,10 @@ var SuccessCheckIcon = (_a) => {
|
|
|
3990
4063
|
SuccessCheckIcon.displayName = "SuccessCheckIcon";
|
|
3991
4064
|
|
|
3992
4065
|
// src/primitives/icon/svg/telegram.tsx
|
|
3993
|
-
var
|
|
4066
|
+
var import_jsx_runtime93 = require("react/jsx-runtime");
|
|
3994
4067
|
var TelegramIcon = (_a) => {
|
|
3995
4068
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
3996
|
-
return /* @__PURE__ */ (0,
|
|
4069
|
+
return /* @__PURE__ */ (0, import_jsx_runtime93.jsxs)(
|
|
3997
4070
|
"svg",
|
|
3998
4071
|
__spreadProps(__spreadValues(__spreadValues({
|
|
3999
4072
|
viewBox: "0 0 20 20",
|
|
@@ -4001,8 +4074,8 @@ var TelegramIcon = (_a) => {
|
|
|
4001
4074
|
fill: "none"
|
|
4002
4075
|
}, getIconA11yProps(title2)), props), {
|
|
4003
4076
|
children: [
|
|
4004
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4005
|
-
/* @__PURE__ */ (0,
|
|
4077
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("title", { children: title2 }) : null,
|
|
4078
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("g", { clipPath: "url(#clip0_telegram)", children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)(
|
|
4006
4079
|
"path",
|
|
4007
4080
|
{
|
|
4008
4081
|
fillRule: "evenodd",
|
|
@@ -4011,7 +4084,7 @@ var TelegramIcon = (_a) => {
|
|
|
4011
4084
|
fill: "currentColor"
|
|
4012
4085
|
}
|
|
4013
4086
|
) }),
|
|
4014
|
-
/* @__PURE__ */ (0,
|
|
4087
|
+
/* @__PURE__ */ (0, import_jsx_runtime93.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("clipPath", { id: "clip0_telegram", children: /* @__PURE__ */ (0, import_jsx_runtime93.jsx)("rect", { width: "20", height: "20", fill: "white" }) }) })
|
|
4015
4088
|
]
|
|
4016
4089
|
})
|
|
4017
4090
|
);
|
|
@@ -4019,10 +4092,10 @@ var TelegramIcon = (_a) => {
|
|
|
4019
4092
|
TelegramIcon.displayName = "TelegramIcon";
|
|
4020
4093
|
|
|
4021
4094
|
// src/primitives/icon/svg/triangle-down.tsx
|
|
4022
|
-
var
|
|
4095
|
+
var import_jsx_runtime94 = require("react/jsx-runtime");
|
|
4023
4096
|
var TriangleDownIcon = (_a) => {
|
|
4024
4097
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4025
|
-
return /* @__PURE__ */ (0,
|
|
4098
|
+
return /* @__PURE__ */ (0, import_jsx_runtime94.jsxs)(
|
|
4026
4099
|
"svg",
|
|
4027
4100
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4028
4101
|
viewBox: "0 0 8 8",
|
|
@@ -4030,16 +4103,16 @@ var TriangleDownIcon = (_a) => {
|
|
|
4030
4103
|
fill: "none"
|
|
4031
4104
|
}, getIconA11yProps(title2)), props), {
|
|
4032
4105
|
children: [
|
|
4033
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4034
|
-
/* @__PURE__ */ (0,
|
|
4035
|
-
/* @__PURE__ */ (0,
|
|
4106
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("title", { children: title2 }) : null,
|
|
4107
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsxs)("g", { transform: "scale(1,-1) translate(0,-8)", clipPath: "url(#triangle_up)", children: [
|
|
4108
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
4036
4109
|
"path",
|
|
4037
4110
|
{
|
|
4038
4111
|
d: "M3.99989 1.6805L6.23917 6.72896H1.76061L3.99989 1.6805ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768C3.55361 0.53319 3.47295 0.628129 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.52825 0.62789 4.44735 0.532789 4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097Z",
|
|
4039
4112
|
fill: "currentColor"
|
|
4040
4113
|
}
|
|
4041
4114
|
),
|
|
4042
|
-
/* @__PURE__ */ (0,
|
|
4115
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)(
|
|
4043
4116
|
"path",
|
|
4044
4117
|
{
|
|
4045
4118
|
d: "M4.00167 0.00284122C4.19344 0.00214978 4.38147 0.0566837 4.54252 0.160923C4.70445 0.265758 4.83154 0.416026 4.90931 0.592539L7.9697 7.4913L8.19705 8.00195H-0.197266L3.09048 0.593427C3.16804 0.41669 3.29625 0.26688 3.45815 0.161811C3.61872 0.0576301 3.80589 0.00261591 3.99723 0.00284122H3.99989L4.00256 0.00195312L4.00167 0.00284122ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768L3.58337 0.521491C3.51516 0.581467 3.46071 0.656022 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.54053 0.655873 4.48567 0.581521 4.4173 0.521491L4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097ZM6.23917 6.72896H1.76061L3.99989 1.6805L6.23917 6.72896ZM2.31961 6.36519H5.68018L3.99989 2.57655L2.31961 6.36519Z",
|
|
@@ -4047,7 +4120,7 @@ var TriangleDownIcon = (_a) => {
|
|
|
4047
4120
|
}
|
|
4048
4121
|
)
|
|
4049
4122
|
] }),
|
|
4050
|
-
/* @__PURE__ */ (0,
|
|
4123
|
+
/* @__PURE__ */ (0, import_jsx_runtime94.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("clipPath", { id: "triangle_up", children: /* @__PURE__ */ (0, import_jsx_runtime94.jsx)("rect", { width: "8", height: "8", fill: "white" }) }) })
|
|
4051
4124
|
]
|
|
4052
4125
|
})
|
|
4053
4126
|
);
|
|
@@ -4055,10 +4128,10 @@ var TriangleDownIcon = (_a) => {
|
|
|
4055
4128
|
TriangleDownIcon.displayName = "TriangleDownIcon";
|
|
4056
4129
|
|
|
4057
4130
|
// src/primitives/icon/svg/triangle-up.tsx
|
|
4058
|
-
var
|
|
4131
|
+
var import_jsx_runtime95 = require("react/jsx-runtime");
|
|
4059
4132
|
var TriangleUpIcon = (_a) => {
|
|
4060
4133
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4061
|
-
return /* @__PURE__ */ (0,
|
|
4134
|
+
return /* @__PURE__ */ (0, import_jsx_runtime95.jsxs)(
|
|
4062
4135
|
"svg",
|
|
4063
4136
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4064
4137
|
viewBox: "0 0 8 8",
|
|
@@ -4066,16 +4139,16 @@ var TriangleUpIcon = (_a) => {
|
|
|
4066
4139
|
fill: "none"
|
|
4067
4140
|
}, getIconA11yProps(title2)), props), {
|
|
4068
4141
|
children: [
|
|
4069
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4070
|
-
/* @__PURE__ */ (0,
|
|
4071
|
-
/* @__PURE__ */ (0,
|
|
4142
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("title", { children: title2 }) : null,
|
|
4143
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsxs)("g", { clipPath: "url(#triangle_up)", children: [
|
|
4144
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
4072
4145
|
"path",
|
|
4073
4146
|
{
|
|
4074
4147
|
d: "M3.99989 1.6805L6.23917 6.72896H1.76061L3.99989 1.6805ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768C3.55361 0.53319 3.47295 0.628129 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.52825 0.62789 4.44735 0.532789 4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097Z",
|
|
4075
4148
|
fill: "currentColor"
|
|
4076
4149
|
}
|
|
4077
4150
|
),
|
|
4078
|
-
/* @__PURE__ */ (0,
|
|
4151
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)(
|
|
4079
4152
|
"path",
|
|
4080
4153
|
{
|
|
4081
4154
|
d: "M4.00167 0.00284122C4.19344 0.00214978 4.38147 0.0566837 4.54252 0.160923C4.70445 0.265758 4.83154 0.416026 4.90931 0.592539L7.9697 7.4913L8.19705 8.00195H-0.197266L3.09048 0.593427C3.16804 0.41669 3.29625 0.26688 3.45815 0.161811C3.61872 0.0576301 3.80589 0.00261591 3.99723 0.00284122H3.99989L4.00256 0.00195312L4.00167 0.00284122ZM3.99989 0.366097C3.87788 0.36535 3.75832 0.400347 3.65596 0.466768L3.58337 0.521491C3.51516 0.581467 3.46071 0.656022 3.42393 0.739866L0.362237 7.63838H7.63755L4.57737 0.739866C4.54053 0.655873 4.48567 0.581521 4.4173 0.521491L4.3447 0.46635C4.24205 0.39991 4.12216 0.365052 3.99989 0.366097ZM6.23917 6.72896H1.76061L3.99989 1.6805L6.23917 6.72896ZM2.31961 6.36519H5.68018L3.99989 2.57655L2.31961 6.36519Z",
|
|
@@ -4083,7 +4156,7 @@ var TriangleUpIcon = (_a) => {
|
|
|
4083
4156
|
}
|
|
4084
4157
|
)
|
|
4085
4158
|
] }),
|
|
4086
|
-
/* @__PURE__ */ (0,
|
|
4159
|
+
/* @__PURE__ */ (0, import_jsx_runtime95.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("clipPath", { id: "triangle_up", children: /* @__PURE__ */ (0, import_jsx_runtime95.jsx)("rect", { width: "8", height: "8", fill: "white" }) }) })
|
|
4087
4160
|
]
|
|
4088
4161
|
})
|
|
4089
4162
|
);
|
|
@@ -4091,10 +4164,10 @@ var TriangleUpIcon = (_a) => {
|
|
|
4091
4164
|
TriangleUpIcon.displayName = "TriangleUpIcon";
|
|
4092
4165
|
|
|
4093
4166
|
// src/primitives/icon/svg/triangle-up-filled.tsx
|
|
4094
|
-
var
|
|
4167
|
+
var import_jsx_runtime96 = require("react/jsx-runtime");
|
|
4095
4168
|
var TriangleUpFilledIcon = (_a) => {
|
|
4096
4169
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4097
|
-
return /* @__PURE__ */ (0,
|
|
4170
|
+
return /* @__PURE__ */ (0, import_jsx_runtime96.jsxs)(
|
|
4098
4171
|
"svg",
|
|
4099
4172
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4100
4173
|
viewBox: "0 0 8 8",
|
|
@@ -4102,8 +4175,8 @@ var TriangleUpFilledIcon = (_a) => {
|
|
|
4102
4175
|
fill: "none"
|
|
4103
4176
|
}, getIconA11yProps(title2)), props), {
|
|
4104
4177
|
children: [
|
|
4105
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4106
|
-
/* @__PURE__ */ (0,
|
|
4178
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime96.jsx)("title", { children: title2 }) : null,
|
|
4179
|
+
/* @__PURE__ */ (0, import_jsx_runtime96.jsx)(
|
|
4107
4180
|
"path",
|
|
4108
4181
|
{
|
|
4109
4182
|
d: "M6.67873 8.00001H1.3214C1.09613 8.00053 0.874481 7.94332 0.677605 7.83384C0.480728 7.72435 0.315192 7.56625 0.196788 7.3746C0.0783848 7.18296 0.0110649 6.96417 0.00125164 6.73911C-0.0085616 6.51405 0.0394592 6.29023 0.140732 6.08901L2.81973 0.729677C2.92186 0.523193 3.0766 0.347273 3.26837 0.219641C3.46014 0.0920097 3.68216 0.0171748 3.91207 0.00267686C4.17147 -0.013831 4.43 0.0462826 4.6555 0.175542C4.88101 0.3048 5.06354 0.497501 5.1804 0.729677L7.8594 6.08901C7.96008 6.2903 8.00764 6.51398 7.99756 6.73881C7.98748 6.96365 7.92009 7.18218 7.8018 7.37365C7.68351 7.56512 7.51823 7.72317 7.32167 7.83279C7.12511 7.94242 6.90379 7.99998 6.67873 8.00001Z",
|
|
@@ -4117,10 +4190,10 @@ var TriangleUpFilledIcon = (_a) => {
|
|
|
4117
4190
|
TriangleUpFilledIcon.displayName = "TriangleUpFilledIcon";
|
|
4118
4191
|
|
|
4119
4192
|
// src/primitives/icon/svg/twitter.tsx
|
|
4120
|
-
var
|
|
4193
|
+
var import_jsx_runtime97 = require("react/jsx-runtime");
|
|
4121
4194
|
var TwitterIcon = (_a) => {
|
|
4122
4195
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4123
|
-
return /* @__PURE__ */ (0,
|
|
4196
|
+
return /* @__PURE__ */ (0, import_jsx_runtime97.jsxs)(
|
|
4124
4197
|
"svg",
|
|
4125
4198
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4126
4199
|
viewBox: "0 0 24 24",
|
|
@@ -4128,8 +4201,8 @@ var TwitterIcon = (_a) => {
|
|
|
4128
4201
|
fill: "none"
|
|
4129
4202
|
}, getIconA11yProps(title2)), props), {
|
|
4130
4203
|
children: [
|
|
4131
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4132
|
-
/* @__PURE__ */ (0,
|
|
4204
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime97.jsx)("title", { children: title2 }) : null,
|
|
4205
|
+
/* @__PURE__ */ (0, import_jsx_runtime97.jsx)(
|
|
4133
4206
|
"path",
|
|
4134
4207
|
{
|
|
4135
4208
|
d: "M18.325 2H21.7002L14.3283 10.4233L23 21.8871H16.2121L10.8918 14.936L4.81058 21.8871H1.42992L9.31325 12.8753L1 2H7.96025L12.7645 8.35342L18.325 2ZM17.1398 19.8695H19.0088L6.94183 3.91217H4.93433L17.1398 19.8695Z",
|
|
@@ -4143,10 +4216,10 @@ var TwitterIcon = (_a) => {
|
|
|
4143
4216
|
TwitterIcon.displayName = "TwitterIcon";
|
|
4144
4217
|
|
|
4145
4218
|
// src/primitives/icon/svg/upload.tsx
|
|
4146
|
-
var
|
|
4219
|
+
var import_jsx_runtime98 = require("react/jsx-runtime");
|
|
4147
4220
|
var UploadIcon = (_a) => {
|
|
4148
4221
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4149
|
-
return /* @__PURE__ */ (0,
|
|
4222
|
+
return /* @__PURE__ */ (0, import_jsx_runtime98.jsxs)(
|
|
4150
4223
|
"svg",
|
|
4151
4224
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4152
4225
|
viewBox: "0 0 16 16",
|
|
@@ -4154,16 +4227,16 @@ var UploadIcon = (_a) => {
|
|
|
4154
4227
|
fill: "none"
|
|
4155
4228
|
}, getIconA11yProps(title2)), props), {
|
|
4156
4229
|
children: [
|
|
4157
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4158
|
-
/* @__PURE__ */ (0,
|
|
4159
|
-
/* @__PURE__ */ (0,
|
|
4230
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("title", { children: title2 }) : null,
|
|
4231
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsxs)("g", { clipPath: "url(#upload-clip)", children: [
|
|
4232
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
4160
4233
|
"path",
|
|
4161
4234
|
{
|
|
4162
4235
|
d: "M7.33755 1.71857L7.33288 12.0106C7.33288 12.1874 7.40312 12.357 7.52814 12.482C7.65317 12.607 7.82274 12.6772 7.99955 12.6772C8.17636 12.6772 8.34593 12.607 8.47095 12.482C8.59598 12.357 8.66621 12.1874 8.66621 12.0106L8.67088 1.7299L10.6122 3.6719C10.7372 3.79688 10.9068 3.86709 11.0835 3.86709C11.2603 3.86709 11.4299 3.79688 11.5549 3.6719C11.6799 3.54689 11.7501 3.37735 11.7501 3.20057C11.7501 3.02379 11.6799 2.85426 11.5549 2.72924L9.41421 0.585904C9.22848 0.400051 9.00795 0.252617 8.76521 0.152028C8.52248 0.0514383 8.2623 -0.000335693 7.99955 -0.000335693C7.7368 -0.000335693 7.47662 0.0514383 7.23388 0.152028C6.99115 0.252617 6.77061 0.400051 6.58488 0.585904L4.44421 2.72724C4.31923 2.85226 4.24902 3.02179 4.24902 3.19857C4.24902 3.37535 4.31923 3.54489 4.44421 3.6699C4.56923 3.79488 4.73877 3.86509 4.91555 3.86509C5.09232 3.86509 5.26186 3.79488 5.38688 3.6699L7.33755 1.71857Z",
|
|
4163
4236
|
fill: "currentColor"
|
|
4164
4237
|
}
|
|
4165
4238
|
),
|
|
4166
|
-
/* @__PURE__ */ (0,
|
|
4239
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)(
|
|
4167
4240
|
"path",
|
|
4168
4241
|
{
|
|
4169
4242
|
d: "M14.6667 11.3333V14C14.6667 14.1768 14.5964 14.3464 14.4714 14.4714C14.3464 14.5964 14.1768 14.6667 14 14.6667H2C1.82319 14.6667 1.65362 14.5964 1.5286 14.4714C1.40357 14.3464 1.33333 14.1768 1.33333 14V11.3333C1.33333 11.1565 1.2631 10.9869 1.13807 10.8619C1.01305 10.7369 0.843478 10.6667 0.666667 10.6667C0.489856 10.6667 0.320286 10.7369 0.195262 10.8619C0.0702379 10.9869 0 11.1565 0 11.3333L0 14C0 14.5304 0.210714 15.0391 0.585786 15.4142C0.960859 15.7893 1.46957 16 2 16H14C14.5304 16 15.0391 15.7893 15.4142 15.4142C15.7893 15.0391 16 14.5304 16 14V11.3333C16 11.1565 15.9298 10.9869 15.8047 10.8619C15.6797 10.7369 15.5101 10.6667 15.3333 10.6667C15.1565 10.6667 14.987 10.7369 14.8619 10.8619C14.7369 10.9869 14.6667 11.1565 14.6667 11.3333Z",
|
|
@@ -4171,7 +4244,7 @@ var UploadIcon = (_a) => {
|
|
|
4171
4244
|
}
|
|
4172
4245
|
)
|
|
4173
4246
|
] }),
|
|
4174
|
-
/* @__PURE__ */ (0,
|
|
4247
|
+
/* @__PURE__ */ (0, import_jsx_runtime98.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("clipPath", { id: "upload-clip", children: /* @__PURE__ */ (0, import_jsx_runtime98.jsx)("rect", { width: "16", height: "16", fill: "white" }) }) })
|
|
4175
4248
|
]
|
|
4176
4249
|
})
|
|
4177
4250
|
);
|
|
@@ -4179,10 +4252,10 @@ var UploadIcon = (_a) => {
|
|
|
4179
4252
|
UploadIcon.displayName = "UploadIcon";
|
|
4180
4253
|
|
|
4181
4254
|
// src/primitives/icon/svg/user-trust.tsx
|
|
4182
|
-
var
|
|
4255
|
+
var import_jsx_runtime99 = require("react/jsx-runtime");
|
|
4183
4256
|
var UserTrustIcon = (_a) => {
|
|
4184
4257
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4185
|
-
return /* @__PURE__ */ (0,
|
|
4258
|
+
return /* @__PURE__ */ (0, import_jsx_runtime99.jsxs)(
|
|
4186
4259
|
"svg",
|
|
4187
4260
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4188
4261
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -4191,15 +4264,15 @@ var UserTrustIcon = (_a) => {
|
|
|
4191
4264
|
className
|
|
4192
4265
|
}, getIconA11yProps(title2)), props), {
|
|
4193
4266
|
children: [
|
|
4194
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4195
|
-
/* @__PURE__ */ (0,
|
|
4267
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("title", { children: title2 }) : null,
|
|
4268
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("g", { clipPath: "url(#clip0_user_trust)", children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)(
|
|
4196
4269
|
"path",
|
|
4197
4270
|
{
|
|
4198
4271
|
d: "M22.5 30C14.2275 30 7.5 23.2725 7.5 15C7.5 6.7275 14.2275 0 22.5 0C30.7725 0 37.5 6.7275 37.5 15C37.5 23.2725 30.7725 30 22.5 30ZM22.5 2.5C15.6075 2.5 10 8.1075 10 15C10 21.8925 15.6075 27.5 22.5 27.5C29.3925 27.5 35 21.8925 35 15C35 8.1075 29.3925 2.5 22.5 2.5ZM2.5 58.75V57.5C2.5 46.9175 10.7675 38.1475 21.3225 37.535C22.0125 37.495 22.5375 36.905 22.4975 36.215C22.4575 35.5275 21.87 34.96 21.1775 35.04C9.3025 35.7275 0 45.5925 0 57.5V58.75C0 59.44 0.56 60 1.25 60C1.94 60 2.5 59.44 2.5 58.75ZM43.75 60C34.79 60 27.5 52.71 27.5 43.75C27.5 34.79 34.79 27.5 43.75 27.5C52.71 27.5 60 34.79 60 43.75C60 52.71 52.71 60 43.75 60ZM43.75 30C36.1675 30 30 36.17 30 43.75C30 51.33 36.1675 57.5 43.75 57.5C51.3325 57.5 57.5 51.33 57.5 43.75C57.5 36.17 51.3325 30 43.75 30ZM45.3375 48.66L52.095 42.125C52.59 41.645 52.605 40.8525 52.125 40.3575C51.6475 39.8625 50.8575 39.85 50.3575 40.3275L43.5925 46.8725C42.7525 47.7 41.38 47.705 40.535 46.8825L37.1275 43.52C36.6375 43.035 35.845 43.04 35.36 43.53C34.875 44.0225 34.88 44.815 35.3725 45.2975L38.7825 48.665C39.6875 49.55 40.875 49.9925 42.0625 49.9925C43.25 49.9925 44.4375 49.5475 45.3375 48.66Z",
|
|
4199
4272
|
fill: "currentColor"
|
|
4200
4273
|
}
|
|
4201
4274
|
) }),
|
|
4202
|
-
/* @__PURE__ */ (0,
|
|
4275
|
+
/* @__PURE__ */ (0, import_jsx_runtime99.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("clipPath", { id: "clip0_user_trust", children: /* @__PURE__ */ (0, import_jsx_runtime99.jsx)("rect", { width: "60", height: "60", fill: "white" }) }) })
|
|
4203
4276
|
]
|
|
4204
4277
|
})
|
|
4205
4278
|
);
|
|
@@ -4207,10 +4280,10 @@ var UserTrustIcon = (_a) => {
|
|
|
4207
4280
|
UserTrustIcon.displayName = "UserTrustIcon";
|
|
4208
4281
|
|
|
4209
4282
|
// src/primitives/icon/svg/usdc.tsx
|
|
4210
|
-
var
|
|
4283
|
+
var import_jsx_runtime100 = require("react/jsx-runtime");
|
|
4211
4284
|
var UsdcIcon = (_a) => {
|
|
4212
4285
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4213
|
-
return /* @__PURE__ */ (0,
|
|
4286
|
+
return /* @__PURE__ */ (0, import_jsx_runtime100.jsxs)(
|
|
4214
4287
|
"svg",
|
|
4215
4288
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4216
4289
|
viewBox: "0 0 32 32",
|
|
@@ -4218,16 +4291,16 @@ var UsdcIcon = (_a) => {
|
|
|
4218
4291
|
fill: "none"
|
|
4219
4292
|
}, getIconA11yProps(title2)), props), {
|
|
4220
4293
|
children: [
|
|
4221
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4222
|
-
/* @__PURE__ */ (0,
|
|
4223
|
-
/* @__PURE__ */ (0,
|
|
4294
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime100.jsx)("title", { children: title2 }) : null,
|
|
4295
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)("circle", { cx: "16", cy: "16", r: "16", fill: "#2775CA" }),
|
|
4296
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
4224
4297
|
"path",
|
|
4225
4298
|
{
|
|
4226
4299
|
d: "M20.4 18.6c0-2.2-1.3-3-3.9-3.3-1.9-.3-2.3-.8-2.3-1.7s.7-1.5 2.1-1.5c1.2 0 1.9.4 2.2 1.4.1.2.2.3.4.3h1c.2 0 .4-.2.4-.4-.2-1.3-1.1-2.4-2.6-2.7v-1.5c0-.2-.2-.4-.5-.4h-.9c-.2 0-.4.2-.5.4v1.5c-1.7.3-2.8 1.4-2.8 2.9 0 2.1 1.3 2.8 3.9 3.2 1.7.3 2.3.8 2.3 1.8s-.9 1.7-2.2 1.7c-1.7 0-2.3-.7-2.5-1.6-.1-.2-.2-.3-.4-.3h-1c-.2 0-.4.2-.4.4.3 1.6 1.3 2.6 3.1 2.9v1.5c0 .2.2.4.5.4h.9c.2 0 .4-.2.5-.4v-1.5c1.7-.3 2.8-1.5 2.8-3.1z",
|
|
4227
4300
|
fill: "#fff"
|
|
4228
4301
|
}
|
|
4229
4302
|
),
|
|
4230
|
-
/* @__PURE__ */ (0,
|
|
4303
|
+
/* @__PURE__ */ (0, import_jsx_runtime100.jsx)(
|
|
4231
4304
|
"path",
|
|
4232
4305
|
{
|
|
4233
4306
|
d: "M13.1 25.2c-4.6-1.6-7-6.7-5.3-11.3 1-2.7 3.1-4.5 5.7-5.3.2-.1.4-.3.4-.5v-.9c0-.2-.2-.4-.4-.4h-.1c-5.3 1.6-8.3 7.3-6.7 12.6 1 3.3 3.5 5.8 6.8 6.8.2.1.5-.1.5-.3v-.9c-.1-.3-.2-.5-.5-.6l-.4-.2zM19.3 6.8c-.2-.1-.5.1-.5.3v.9c0 .2.2.5.4.6 4.6 1.6 7 6.7 5.3 11.3-1 2.7-3.1 4.5-5.7 5.3-.2.1-.4.3-.4.5v.9c0 .2.2.4.4.4h.1c5.3-1.6 8.3-7.3 6.7-12.6-1-3.3-3.5-5.8-6.8-6.8l.5.2z",
|
|
@@ -4241,10 +4314,10 @@ var UsdcIcon = (_a) => {
|
|
|
4241
4314
|
UsdcIcon.displayName = "UsdcIcon";
|
|
4242
4315
|
|
|
4243
4316
|
// src/primitives/icon/svg/wallet.tsx
|
|
4244
|
-
var
|
|
4317
|
+
var import_jsx_runtime101 = require("react/jsx-runtime");
|
|
4245
4318
|
var WalletIcon = (_a) => {
|
|
4246
4319
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4247
|
-
return /* @__PURE__ */ (0,
|
|
4320
|
+
return /* @__PURE__ */ (0, import_jsx_runtime101.jsxs)(
|
|
4248
4321
|
"svg",
|
|
4249
4322
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4250
4323
|
viewBox: "0 0 24 24",
|
|
@@ -4252,8 +4325,8 @@ var WalletIcon = (_a) => {
|
|
|
4252
4325
|
fill: "none"
|
|
4253
4326
|
}, getIconA11yProps(title2)), props), {
|
|
4254
4327
|
children: [
|
|
4255
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4256
|
-
/* @__PURE__ */ (0,
|
|
4328
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime101.jsx)("title", { children: title2 }) : null,
|
|
4329
|
+
/* @__PURE__ */ (0, import_jsx_runtime101.jsx)(
|
|
4257
4330
|
"path",
|
|
4258
4331
|
{
|
|
4259
4332
|
d: "M21.5 6H4.5C3.354 6 2.279 5.433 1.628 4.501C2.262 3.594 3.313 3 4.5 3H23.5C23.776 3 24 2.776 24 2.5C24 2.224 23.776 2 23.5 2H4.5C2.015 2 0 4.015 0 6.5V17.5C0 19.985 2.015 22 4.5 22H21.5C22.881 22 24 20.881 24 19.5V8.5C24 7.119 22.881 6 21.5 6ZM23 19.5C23 20.327 22.327 21 21.5 21H4.5C2.57 21 1 19.43 1 17.5V6.5C1 6.152 1.051 5.816 1.146 5.499C1.992 6.441 3.21 7 4.5 7H21.5C22.327 7 23 7.673 23 8.5V19.5ZM21 14C21 14.552 20.552 15 20 15C19.448 15 19 14.552 19 14C19 13.448 19.448 13 20 13C20.552 13 21 13.448 21 14Z",
|
|
@@ -4267,10 +4340,10 @@ var WalletIcon = (_a) => {
|
|
|
4267
4340
|
WalletIcon.displayName = "WalletIcon";
|
|
4268
4341
|
|
|
4269
4342
|
// src/primitives/icon/svg/wallet-avatar.tsx
|
|
4270
|
-
var
|
|
4343
|
+
var import_jsx_runtime102 = require("react/jsx-runtime");
|
|
4271
4344
|
function WalletAvatarIcon(_a) {
|
|
4272
4345
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4273
|
-
return /* @__PURE__ */ (0,
|
|
4346
|
+
return /* @__PURE__ */ (0, import_jsx_runtime102.jsxs)(
|
|
4274
4347
|
"svg",
|
|
4275
4348
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4276
4349
|
fill: "none",
|
|
@@ -4278,9 +4351,9 @@ function WalletAvatarIcon(_a) {
|
|
|
4278
4351
|
viewBox: "0 0 16 16"
|
|
4279
4352
|
}, getIconA11yProps(title2)), props), {
|
|
4280
4353
|
children: [
|
|
4281
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4282
|
-
/* @__PURE__ */ (0,
|
|
4283
|
-
/* @__PURE__ */ (0,
|
|
4354
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime102.jsx)("title", { children: title2 }) : null,
|
|
4355
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("circle", { cx: "8", cy: "5.25", r: "2.25", fill: "currentColor" }),
|
|
4356
|
+
/* @__PURE__ */ (0, import_jsx_runtime102.jsx)("path", { d: "M3.75 12.75a4.25 4.25 0 0 1 8.5 0v.25h-8.5v-.25Z", fill: "currentColor" })
|
|
4284
4357
|
]
|
|
4285
4358
|
})
|
|
4286
4359
|
);
|
|
@@ -4288,10 +4361,10 @@ function WalletAvatarIcon(_a) {
|
|
|
4288
4361
|
WalletAvatarIcon.displayName = "WalletAvatarIcon";
|
|
4289
4362
|
|
|
4290
4363
|
// src/primitives/icon/svg/wallet-filled.tsx
|
|
4291
|
-
var
|
|
4364
|
+
var import_jsx_runtime103 = require("react/jsx-runtime");
|
|
4292
4365
|
var WalletFilledIcon = (_a) => {
|
|
4293
4366
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4294
|
-
return /* @__PURE__ */ (0,
|
|
4367
|
+
return /* @__PURE__ */ (0, import_jsx_runtime103.jsxs)(
|
|
4295
4368
|
"svg",
|
|
4296
4369
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4297
4370
|
viewBox: "0 0 14 14",
|
|
@@ -4299,8 +4372,8 @@ var WalletFilledIcon = (_a) => {
|
|
|
4299
4372
|
fill: "none"
|
|
4300
4373
|
}, getIconA11yProps(title2)), props), {
|
|
4301
4374
|
children: [
|
|
4302
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4303
|
-
/* @__PURE__ */ (0,
|
|
4375
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime103.jsx)("title", { children: title2 }) : null,
|
|
4376
|
+
/* @__PURE__ */ (0, import_jsx_runtime103.jsx)(
|
|
4304
4377
|
"path",
|
|
4305
4378
|
{
|
|
4306
4379
|
d: "M12.25 3.50008H2.91667C2.41558 3.50008 1.94133 3.28308 1.61292 2.91733C1.93375 2.55916 2.39983 2.33341 2.91667 2.33341H13.4167C13.7392 2.33341 14 2.07208 14 1.75008C14 1.42808 13.7392 1.16675 13.4167 1.16675H2.91667C1.30608 1.16675 0 2.47283 0 4.08342V9.91675C0 11.5273 1.30608 12.8334 2.91667 12.8334H12.25C13.2166 12.8334 14 12.05 14 11.0834V5.25008C14 4.2835 13.2166 3.50008 12.25 3.50008ZM12.8333 11.0834C12.8333 11.4048 12.572 11.6667 12.25 11.6667H2.91667C1.95183 11.6667 1.16667 10.8816 1.16667 9.91675V4.08225C1.66483 4.455 2.27733 4.66675 2.91667 4.66675H12.25C12.572 4.66675 12.8333 4.92866 12.8333 5.25008V11.0834ZM11.6667 8.16675C11.6667 8.48875 11.4053 8.75008 11.0833 8.75008C10.7613 8.75008 10.5 8.48875 10.5 8.16675C10.5 7.84475 10.7613 7.58342 11.0833 7.58342C11.4053 7.58342 11.6667 7.84475 11.6667 8.16675Z",
|
|
@@ -4314,10 +4387,10 @@ var WalletFilledIcon = (_a) => {
|
|
|
4314
4387
|
WalletFilledIcon.displayName = "WalletFilledIcon";
|
|
4315
4388
|
|
|
4316
4389
|
// src/primitives/icon/svg/paper-plane.tsx
|
|
4317
|
-
var
|
|
4390
|
+
var import_jsx_runtime104 = require("react/jsx-runtime");
|
|
4318
4391
|
var PaperPlaneIcon = (_a) => {
|
|
4319
4392
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4320
|
-
return /* @__PURE__ */ (0,
|
|
4393
|
+
return /* @__PURE__ */ (0, import_jsx_runtime104.jsxs)(
|
|
4321
4394
|
"svg",
|
|
4322
4395
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4323
4396
|
viewBox: "0 0 24 24",
|
|
@@ -4325,15 +4398,15 @@ var PaperPlaneIcon = (_a) => {
|
|
|
4325
4398
|
fill: "none"
|
|
4326
4399
|
}, getIconA11yProps(title2)), props), {
|
|
4327
4400
|
children: [
|
|
4328
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4329
|
-
/* @__PURE__ */ (0,
|
|
4401
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("title", { children: title2 }) : null,
|
|
4402
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("g", { clipPath: "url(#paper-plane-clip)", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)(
|
|
4330
4403
|
"path",
|
|
4331
4404
|
{
|
|
4332
4405
|
d: "M23.149 0.854808C22.43 0.135808 21.42 -0.152192 20.441 0.0858076L4.21901 4.30981C2.13901 4.59681 0.532009 6.10881 0.125009 8.16081C-0.184991 9.72081 0.349009 11.3698 1.56401 12.5848L3.00101 13.9388V18.5008C3.00101 19.1868 3.27901 19.8088 3.72801 20.2608C3.73001 20.2628 3.73101 20.2658 3.73301 20.2688C3.73501 20.2718 3.73801 20.2718 3.74101 20.2738C4.19301 20.7228 4.81501 21.0008 5.50101 21.0008H10.075L11.456 22.4768C12.438 23.4588 13.757 23.9978 15.059 23.9978C15.525 23.9978 15.989 23.9288 16.434 23.7868C18.218 23.2178 19.478 21.7408 19.713 19.9878L23.91 3.60081C24.154 2.60181 23.87 1.57681 23.15 0.855808L23.149 0.854808ZM2.26001 11.8668C1.29301 10.8988 0.861009 9.58681 1.10501 8.35481C1.42801 6.72781 2.70401 5.52881 4.41401 5.28881L20.686 1.05681C20.83 1.02181 20.976 1.00481 21.12 1.00481C21.441 1.00481 21.753 1.09781 22.035 1.25981L4.15001 19.1438C4.05601 18.9478 4.00001 18.7318 4.00001 18.5008V13.7228C4.00001 13.5848 3.94301 13.4528 3.84301 13.3588L2.26001 11.8668ZM22.939 3.35781L18.731 19.7958C18.538 21.2188 17.541 22.3828 16.128 22.8328C14.789 23.2588 13.232 22.8408 12.172 21.7808L10.654 20.1588C10.559 20.0578 10.427 20.0008 10.289 20.0008H5.50001C5.26901 20.0008 5.05301 19.9438 4.85701 19.8508L22.746 1.96181C22.984 2.37781 23.058 2.87381 22.939 3.35781Z",
|
|
4333
4406
|
fill: "currentColor"
|
|
4334
4407
|
}
|
|
4335
4408
|
) }),
|
|
4336
|
-
/* @__PURE__ */ (0,
|
|
4409
|
+
/* @__PURE__ */ (0, import_jsx_runtime104.jsx)("defs", { children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("clipPath", { id: "paper-plane-clip", children: /* @__PURE__ */ (0, import_jsx_runtime104.jsx)("rect", { width: "24", height: "24", fill: "white" }) }) })
|
|
4337
4410
|
]
|
|
4338
4411
|
})
|
|
4339
4412
|
);
|
|
@@ -4341,10 +4414,10 @@ var PaperPlaneIcon = (_a) => {
|
|
|
4341
4414
|
PaperPlaneIcon.displayName = "PaperPlaneIcon";
|
|
4342
4415
|
|
|
4343
4416
|
// src/primitives/icon/svg/warning.tsx
|
|
4344
|
-
var
|
|
4417
|
+
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
4345
4418
|
var WarningIcon = (_a) => {
|
|
4346
4419
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4347
|
-
return /* @__PURE__ */ (0,
|
|
4420
|
+
return /* @__PURE__ */ (0, import_jsx_runtime105.jsxs)(
|
|
4348
4421
|
"svg",
|
|
4349
4422
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4350
4423
|
width: "14",
|
|
@@ -4355,8 +4428,8 @@ var WarningIcon = (_a) => {
|
|
|
4355
4428
|
className
|
|
4356
4429
|
}, getIconA11yProps(title2)), props), {
|
|
4357
4430
|
children: [
|
|
4358
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4359
|
-
/* @__PURE__ */ (0,
|
|
4431
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("title", { children: title2 }) : null,
|
|
4432
|
+
/* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
|
|
4360
4433
|
"path",
|
|
4361
4434
|
{
|
|
4362
4435
|
d: "M6.41665 8.1665V4.6665C6.41665 4.34567 6.67915 4.08317 6.99998 4.08317C7.32082 4.08317 7.58332 4.34567 7.58332 4.6665V8.1665C7.58332 8.48734 7.32082 8.74984 6.99998 8.74984C6.67915 8.74984 6.41665 8.48734 6.41665 8.1665ZM6.99998 9.33317C6.51582 9.33317 6.12498 9.724 6.12498 10.2082C6.12498 10.6923 6.51582 11.0832 6.99998 11.0832C7.48415 11.0832 7.87498 10.6923 7.87498 10.2082C7.87498 9.724 7.48415 9.33317 6.99998 9.33317ZM13.755 12.1798C13.3467 12.9673 12.4892 13.4165 11.4158 13.4165H2.58998C1.51082 13.4165 0.659151 12.9673 0.250818 12.1798C-0.163348 11.3865 -0.0466818 10.3715 0.542485 9.51984L5.23248 2.09984C5.64665 1.50484 6.29998 1.1665 6.99998 1.1665C7.69999 1.1665 8.35332 1.50484 8.74998 2.08234L13.4633 9.5315C14.0525 10.3832 14.1633 11.3923 13.7492 12.1798H13.755ZM12.5008 10.1848C12.5008 10.1848 12.4892 10.1732 12.4892 10.1615L7.78165 2.724C7.61248 2.48484 7.32082 2.33317 6.99998 2.33317C6.67915 2.33317 6.38749 2.48484 6.20665 2.74734L1.51082 10.1615C1.14915 10.6748 1.06748 11.2348 1.27748 11.6373C1.48165 12.034 1.94832 12.2498 2.58415 12.2498H11.4042C12.04 12.2498 12.5067 12.034 12.7108 11.6373C12.9208 11.2348 12.8392 10.6748 12.495 10.1848H12.5008Z",
|
|
@@ -4370,10 +4443,10 @@ var WarningIcon = (_a) => {
|
|
|
4370
4443
|
WarningIcon.displayName = "WarningIcon";
|
|
4371
4444
|
|
|
4372
4445
|
// src/primitives/icon/svg/warning-filled.tsx
|
|
4373
|
-
var
|
|
4446
|
+
var import_jsx_runtime106 = require("react/jsx-runtime");
|
|
4374
4447
|
var WarningFilledIcon = (_a) => {
|
|
4375
4448
|
var _b = _a, { title: title2, className } = _b, props = __objRest(_b, ["title", "className"]);
|
|
4376
|
-
return /* @__PURE__ */ (0,
|
|
4449
|
+
return /* @__PURE__ */ (0, import_jsx_runtime106.jsxs)(
|
|
4377
4450
|
"svg",
|
|
4378
4451
|
__spreadProps(__spreadValues(__spreadValues({
|
|
4379
4452
|
viewBox: "0 0 16 16",
|
|
@@ -4381,8 +4454,8 @@ var WarningFilledIcon = (_a) => {
|
|
|
4381
4454
|
fill: "none"
|
|
4382
4455
|
}, getIconA11yProps(title2)), props), {
|
|
4383
4456
|
children: [
|
|
4384
|
-
title2 ? /* @__PURE__ */ (0,
|
|
4385
|
-
/* @__PURE__ */ (0,
|
|
4457
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime106.jsx)("title", { children: title2 }) : null,
|
|
4458
|
+
/* @__PURE__ */ (0, import_jsx_runtime106.jsx)(
|
|
4386
4459
|
"path",
|
|
4387
4460
|
{
|
|
4388
4461
|
d: "M15.3869 10.22L10.0002 1.71332C9.5469 1.05999 8.79356 0.666656 8.00023 0.666656C7.20689 0.666656 6.45356 1.05332 5.98023 1.73332L0.620227 10.2067C-0.0597729 11.18 -0.18644 12.3467 0.286894 13.2467C0.75356 14.1467 1.73356 14.66 2.96023 14.66H13.0402C14.2736 14.66 15.2469 14.1467 15.7136 13.2467C16.1802 12.3467 16.0536 11.1867 15.3869 10.22ZM7.33356 4.66666C7.33356 4.29999 7.63356 3.99999 8.00023 3.99999C8.36689 3.99999 8.66689 4.29999 8.66689 4.66666V8.66666C8.66689 9.03332 8.36689 9.33332 8.00023 9.33332C7.63356 9.33332 7.33356 9.03332 7.33356 8.66666V4.66666ZM8.00023 12.6667C7.44689 12.6667 7.00023 12.22 7.00023 11.6667C7.00023 11.1133 7.44689 10.6667 8.00023 10.6667C8.55356 10.6667 9.00023 11.1133 9.00023 11.6667C9.00023 12.22 8.55356 12.6667 8.00023 12.6667Z",
|
|
@@ -4395,7 +4468,7 @@ var WarningFilledIcon = (_a) => {
|
|
|
4395
4468
|
};
|
|
4396
4469
|
WarningFilledIcon.displayName = "WarningFilledIcon";
|
|
4397
4470
|
|
|
4398
|
-
// src/primitives/icon/registry.
|
|
4471
|
+
// src/primitives/icon/registry.tsx
|
|
4399
4472
|
var iconRegistry = {
|
|
4400
4473
|
activity: ActivityIcon,
|
|
4401
4474
|
"activity-chart": ActivityChartIcon,
|
|
@@ -4436,6 +4509,7 @@ var iconRegistry = {
|
|
|
4436
4509
|
"error-filled": ErrorFilledIcon,
|
|
4437
4510
|
ethereum: EthereumIcon,
|
|
4438
4511
|
"external-link": ExternalLinkIcon,
|
|
4512
|
+
"gift-bonus": GiftBonusIcon,
|
|
4439
4513
|
google: GoogleIcon,
|
|
4440
4514
|
"hourglass-start": HourglassStartIcon,
|
|
4441
4515
|
image: ImageIcon,
|
|
@@ -4490,7 +4564,7 @@ var resolveIconStyle = (color, style) => {
|
|
|
4490
4564
|
};
|
|
4491
4565
|
|
|
4492
4566
|
// src/primitives/icon/index.tsx
|
|
4493
|
-
var
|
|
4567
|
+
var import_jsx_runtime107 = require("react/jsx-runtime");
|
|
4494
4568
|
var Icon = (_a) => {
|
|
4495
4569
|
var _b = _a, {
|
|
4496
4570
|
name,
|
|
@@ -4514,7 +4588,7 @@ var Icon = (_a) => {
|
|
|
4514
4588
|
}
|
|
4515
4589
|
const resolvedStyle = resolveIconStyle(color, style);
|
|
4516
4590
|
const resolvedClassName = cn(iconSizeClasses[size], className);
|
|
4517
|
-
return /* @__PURE__ */ (0,
|
|
4591
|
+
return /* @__PURE__ */ (0, import_jsx_runtime107.jsx)(
|
|
4518
4592
|
Component,
|
|
4519
4593
|
__spreadValues({
|
|
4520
4594
|
color,
|
|
@@ -4526,7 +4600,7 @@ var Icon = (_a) => {
|
|
|
4526
4600
|
Icon.displayName = "Icon";
|
|
4527
4601
|
|
|
4528
4602
|
// src/geo-block-banner/index.tsx
|
|
4529
|
-
var
|
|
4603
|
+
var import_jsx_runtime108 = require("react/jsx-runtime");
|
|
4530
4604
|
var GeoBlockBanner = ({
|
|
4531
4605
|
venue,
|
|
4532
4606
|
termsUrl = AGG_TERMS_OF_SERVICE_URL,
|
|
@@ -4534,18 +4608,18 @@ var GeoBlockBanner = ({
|
|
|
4534
4608
|
}) => {
|
|
4535
4609
|
const labels = (0, import_hooks20.useLabels)();
|
|
4536
4610
|
const message = venue ? labels.trading.geoBlockVenueMessage(venue) : labels.trading.geoBlockGenericMessage;
|
|
4537
|
-
return /* @__PURE__ */ (0,
|
|
4611
|
+
return /* @__PURE__ */ (0, import_jsx_runtime108.jsxs)(
|
|
4538
4612
|
"div",
|
|
4539
4613
|
{
|
|
4540
4614
|
className: cn("flex items-center gap-5 rounded-agg-lg bg-agg-secondary-hover p-3", className),
|
|
4541
4615
|
role: "status",
|
|
4542
4616
|
children: [
|
|
4543
|
-
/* @__PURE__ */ (0,
|
|
4617
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsxs)("p", { className: "min-w-0 flex-1 text-agg-xs leading-agg-4 text-agg-foreground", children: [
|
|
4544
4618
|
message,
|
|
4545
|
-
/* @__PURE__ */ (0,
|
|
4619
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)("a", { href: termsUrl, className: "underline", target: "_blank", rel: "noreferrer noopener", children: labels.trading.geoBlockTermsLink }),
|
|
4546
4620
|
labels.trading.geoBlockMessageSuffix
|
|
4547
4621
|
] }),
|
|
4548
|
-
/* @__PURE__ */ (0,
|
|
4622
|
+
/* @__PURE__ */ (0, import_jsx_runtime108.jsx)(Icon, { name: "internet-security", className: "h-6 w-6 shrink-0 text-agg-muted-foreground" })
|
|
4549
4623
|
]
|
|
4550
4624
|
}
|
|
4551
4625
|
);
|
|
@@ -4624,7 +4698,7 @@ var getButtonClassName = ({
|
|
|
4624
4698
|
};
|
|
4625
4699
|
|
|
4626
4700
|
// src/primitives/button/index.tsx
|
|
4627
|
-
var
|
|
4701
|
+
var import_jsx_runtime109 = require("react/jsx-runtime");
|
|
4628
4702
|
var Button = (_a) => {
|
|
4629
4703
|
var _b = _a, {
|
|
4630
4704
|
children,
|
|
@@ -4655,7 +4729,7 @@ var Button = (_a) => {
|
|
|
4655
4729
|
features: { enableAnimations }
|
|
4656
4730
|
} = (0, import_hooks21.useSdkUiConfig)();
|
|
4657
4731
|
const isDisabled = resolveButtonIsDisabled({ disabled, isLoading });
|
|
4658
|
-
return /* @__PURE__ */ (0,
|
|
4732
|
+
return /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
4659
4733
|
"button",
|
|
4660
4734
|
__spreadProps(__spreadValues({
|
|
4661
4735
|
type,
|
|
@@ -4669,7 +4743,7 @@ var Button = (_a) => {
|
|
|
4669
4743
|
"aria-busy": isLoading,
|
|
4670
4744
|
"aria-label": ariaLabel
|
|
4671
4745
|
}, other), {
|
|
4672
|
-
children: isLoading ? /* @__PURE__ */ (0,
|
|
4746
|
+
children: isLoading ? /* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
4673
4747
|
"span",
|
|
4674
4748
|
{
|
|
4675
4749
|
className: cn(
|
|
@@ -4680,9 +4754,9 @@ var Button = (_a) => {
|
|
|
4680
4754
|
),
|
|
4681
4755
|
"aria-hidden": "true"
|
|
4682
4756
|
}
|
|
4683
|
-
) : /* @__PURE__ */ (0,
|
|
4757
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime109.jsxs)(import_jsx_runtime109.Fragment, { children: [
|
|
4684
4758
|
prefix != null ? prefix : null,
|
|
4685
|
-
/* @__PURE__ */ (0,
|
|
4759
|
+
/* @__PURE__ */ (0, import_jsx_runtime109.jsx)(
|
|
4686
4760
|
"span",
|
|
4687
4761
|
{
|
|
4688
4762
|
className: cn(
|
|
@@ -4793,7 +4867,7 @@ var sanitizeCurrencyInputPastedValue = (input, parts, decimalPlaces) => {
|
|
|
4793
4867
|
};
|
|
4794
4868
|
|
|
4795
4869
|
// src/primitives/currency-input/index.tsx
|
|
4796
|
-
var
|
|
4870
|
+
var import_jsx_runtime110 = require("react/jsx-runtime");
|
|
4797
4871
|
var CurrencyInput = ({
|
|
4798
4872
|
value,
|
|
4799
4873
|
onChange,
|
|
@@ -4921,7 +4995,7 @@ var CurrencyInput = ({
|
|
|
4921
4995
|
onChange == null ? void 0 : onChange(nextValue);
|
|
4922
4996
|
onBlur == null ? void 0 : onBlur();
|
|
4923
4997
|
};
|
|
4924
|
-
return /* @__PURE__ */ (0,
|
|
4998
|
+
return /* @__PURE__ */ (0, import_jsx_runtime110.jsx)(
|
|
4925
4999
|
"input",
|
|
4926
5000
|
{
|
|
4927
5001
|
ref: inputRef,
|
|
@@ -4969,7 +5043,7 @@ var resolveRemoteImageStatusFromSrc = (src) => {
|
|
|
4969
5043
|
};
|
|
4970
5044
|
|
|
4971
5045
|
// src/primitives/remote-image/index.tsx
|
|
4972
|
-
var
|
|
5046
|
+
var import_jsx_runtime111 = require("react/jsx-runtime");
|
|
4973
5047
|
var RemoteImage = ({
|
|
4974
5048
|
src,
|
|
4975
5049
|
alt,
|
|
@@ -5003,7 +5077,7 @@ var RemoteImage = ({
|
|
|
5003
5077
|
setStatus("error");
|
|
5004
5078
|
};
|
|
5005
5079
|
const sizeStyle = width !== void 0 || height !== void 0 ? { width: width != null ? width : void 0, height: height != null ? height : void 0 } : void 0;
|
|
5006
|
-
return /* @__PURE__ */ (0,
|
|
5080
|
+
return /* @__PURE__ */ (0, import_jsx_runtime111.jsxs)(
|
|
5007
5081
|
"div",
|
|
5008
5082
|
{
|
|
5009
5083
|
className: cn(containerClasses, classNames == null ? void 0 : classNames.root, className),
|
|
@@ -5020,14 +5094,14 @@ var RemoteImage = ({
|
|
|
5020
5094
|
"aria-label": ariaLabel,
|
|
5021
5095
|
title: title2,
|
|
5022
5096
|
children: [
|
|
5023
|
-
status === "loading" && /* @__PURE__ */ (0,
|
|
5024
|
-
status === "error" && /* @__PURE__ */ (0,
|
|
5097
|
+
status === "loading" && /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(SkeletonBlock, { className: cn(skeletonClasses, classNames == null ? void 0 : classNames.placeholder) }),
|
|
5098
|
+
status === "error" && /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
5025
5099
|
"div",
|
|
5026
5100
|
{
|
|
5027
5101
|
className: cn(placeholderClasses, classNames == null ? void 0 : classNames.placeholder),
|
|
5028
5102
|
"aria-hidden": true,
|
|
5029
5103
|
"aria-errormessage": "Image failed to load",
|
|
5030
|
-
children: /* @__PURE__ */ (0,
|
|
5104
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
5031
5105
|
Icon,
|
|
5032
5106
|
{
|
|
5033
5107
|
name: "image",
|
|
@@ -5038,7 +5112,7 @@ var RemoteImage = ({
|
|
|
5038
5112
|
)
|
|
5039
5113
|
}
|
|
5040
5114
|
),
|
|
5041
|
-
isValidRemoteImageSrc(src) && status !== "error" && /* @__PURE__ */ (0,
|
|
5115
|
+
isValidRemoteImageSrc(src) && status !== "error" && /* @__PURE__ */ (0, import_jsx_runtime111.jsx)(
|
|
5042
5116
|
"img",
|
|
5043
5117
|
{
|
|
5044
5118
|
src,
|
|
@@ -5077,7 +5151,7 @@ var resolveVenueLogoIsColor = ({
|
|
|
5077
5151
|
};
|
|
5078
5152
|
|
|
5079
5153
|
// src/primitives/venue-logo/index.tsx
|
|
5080
|
-
var
|
|
5154
|
+
var import_jsx_runtime112 = require("react/jsx-runtime");
|
|
5081
5155
|
var VenueLogo = ({
|
|
5082
5156
|
venue,
|
|
5083
5157
|
variant = "icon",
|
|
@@ -5103,7 +5177,7 @@ var VenueLogo = ({
|
|
|
5103
5177
|
console.warn(`[AggUI] Unknown venue "${venue}" \u2014 using default logo`);
|
|
5104
5178
|
}
|
|
5105
5179
|
if (variant === "logo") {
|
|
5106
|
-
return /* @__PURE__ */ (0,
|
|
5180
|
+
return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
5107
5181
|
RemoteImage,
|
|
5108
5182
|
{
|
|
5109
5183
|
src: (_a = venueLogoUrlRegistry[venue]) != null ? _a : DEFAULT_VENUE_LOGO_URL,
|
|
@@ -5118,7 +5192,7 @@ var VenueLogo = ({
|
|
|
5118
5192
|
isColor,
|
|
5119
5193
|
isMonochromatic
|
|
5120
5194
|
});
|
|
5121
|
-
return /* @__PURE__ */ (0,
|
|
5195
|
+
return /* @__PURE__ */ (0, import_jsx_runtime112.jsx)(
|
|
5122
5196
|
Component,
|
|
5123
5197
|
{
|
|
5124
5198
|
className: cn("group/agg-venue-logo", "shrink-0", sizeClass, className),
|
|
@@ -5176,7 +5250,7 @@ var resolveInlineAlertHasAction = ({
|
|
|
5176
5250
|
};
|
|
5177
5251
|
|
|
5178
5252
|
// src/primitives/inline-alert/index.tsx
|
|
5179
|
-
var
|
|
5253
|
+
var import_jsx_runtime113 = require("react/jsx-runtime");
|
|
5180
5254
|
var InlineAlert = ({
|
|
5181
5255
|
tone = INLINE_ALERT_DEFAULT_TONE,
|
|
5182
5256
|
variant,
|
|
@@ -5190,7 +5264,7 @@ var InlineAlert = ({
|
|
|
5190
5264
|
const resolvedVariant = resolveInlineAlertVariant({ tone, variant });
|
|
5191
5265
|
const hasAction = resolveInlineAlertHasAction({ actionLabel, onAction });
|
|
5192
5266
|
const { ariaLive, role } = INLINE_ALERT_LIVE_REGION_CONFIG[tone];
|
|
5193
|
-
return /* @__PURE__ */ (0,
|
|
5267
|
+
return /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
5194
5268
|
"div",
|
|
5195
5269
|
{
|
|
5196
5270
|
className: cn(
|
|
@@ -5202,7 +5276,7 @@ var InlineAlert = ({
|
|
|
5202
5276
|
"aria-live": ariaLive,
|
|
5203
5277
|
"aria-label": ariaLabel,
|
|
5204
5278
|
children: [
|
|
5205
|
-
/* @__PURE__ */ (0,
|
|
5279
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
5206
5280
|
Icon,
|
|
5207
5281
|
{
|
|
5208
5282
|
name: INLINE_ALERT_TONE_ICON_NAME[tone],
|
|
@@ -5210,14 +5284,14 @@ var InlineAlert = ({
|
|
|
5210
5284
|
"aria-hidden": "true"
|
|
5211
5285
|
}
|
|
5212
5286
|
),
|
|
5213
|
-
/* @__PURE__ */ (0,
|
|
5287
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
5214
5288
|
"div",
|
|
5215
5289
|
{
|
|
5216
5290
|
className: cn(
|
|
5217
5291
|
"min-w-0",
|
|
5218
5292
|
resolvedVariant === "plain" && !hasAction ? "flex-none text-center" : "flex-1"
|
|
5219
5293
|
),
|
|
5220
|
-
children: /* @__PURE__ */ (0,
|
|
5294
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime113.jsxs)(
|
|
5221
5295
|
"div",
|
|
5222
5296
|
{
|
|
5223
5297
|
className: cn(
|
|
@@ -5226,14 +5300,14 @@ var InlineAlert = ({
|
|
|
5226
5300
|
resolvedVariant === "plain" && !hasAction ? "items-center" : null
|
|
5227
5301
|
),
|
|
5228
5302
|
children: [
|
|
5229
|
-
title2 ? /* @__PURE__ */ (0,
|
|
5230
|
-
/* @__PURE__ */ (0,
|
|
5303
|
+
title2 ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)("p", { className: "text-agg-sm font-agg-bold leading-agg-5 text-agg-foreground", children: title2 }) : null,
|
|
5304
|
+
/* @__PURE__ */ (0, import_jsx_runtime113.jsx)("p", { className: "text-agg-sm leading-agg-5 text-agg-foreground wrap-break-word", children: message })
|
|
5231
5305
|
]
|
|
5232
5306
|
}
|
|
5233
5307
|
)
|
|
5234
5308
|
}
|
|
5235
5309
|
),
|
|
5236
|
-
hasAction ? /* @__PURE__ */ (0,
|
|
5310
|
+
hasAction ? /* @__PURE__ */ (0, import_jsx_runtime113.jsx)(
|
|
5237
5311
|
"button",
|
|
5238
5312
|
{
|
|
5239
5313
|
type: "button",
|
|
@@ -5271,7 +5345,7 @@ var resolveLoadingIconAriaLabel = ({
|
|
|
5271
5345
|
};
|
|
5272
5346
|
|
|
5273
5347
|
// src/primitives/loading-icon/index.tsx
|
|
5274
|
-
var
|
|
5348
|
+
var import_jsx_runtime114 = require("react/jsx-runtime");
|
|
5275
5349
|
var LoadingIcon = ({
|
|
5276
5350
|
size = LOADING_ICON_DEFAULT_SIZE,
|
|
5277
5351
|
variant = "default",
|
|
@@ -5282,7 +5356,7 @@ var LoadingIcon = ({
|
|
|
5282
5356
|
const {
|
|
5283
5357
|
features: { enableAnimations }
|
|
5284
5358
|
} = (0, import_hooks25.useSdkUiConfig)();
|
|
5285
|
-
return /* @__PURE__ */ (0,
|
|
5359
|
+
return /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5286
5360
|
"span",
|
|
5287
5361
|
{
|
|
5288
5362
|
role: "status",
|
|
@@ -5295,7 +5369,7 @@ var LoadingIcon = ({
|
|
|
5295
5369
|
"inline-grid place-items-center text-agg-primary will-change-transform",
|
|
5296
5370
|
className
|
|
5297
5371
|
),
|
|
5298
|
-
children: /* @__PURE__ */ (0,
|
|
5372
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)("span", { className: "inline-grid place-items-center", "aria-hidden": "true", children: /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5299
5373
|
"svg",
|
|
5300
5374
|
{
|
|
5301
5375
|
viewBox: LOADING_ICON_SVG_VIEW_BOX,
|
|
@@ -5303,8 +5377,8 @@ var LoadingIcon = ({
|
|
|
5303
5377
|
"block",
|
|
5304
5378
|
variant === "prominent" ? LOADING_ICON_PROMINENT_FRAME_CLASS : iconSizeClasses[size]
|
|
5305
5379
|
),
|
|
5306
|
-
children: variant === "prominent" ? /* @__PURE__ */ (0,
|
|
5307
|
-
enableAnimations ? /* @__PURE__ */ (0,
|
|
5380
|
+
children: variant === "prominent" ? /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)("g", { children: [
|
|
5381
|
+
enableAnimations ? /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5308
5382
|
"animateTransform",
|
|
5309
5383
|
{
|
|
5310
5384
|
attributeName: "transform",
|
|
@@ -5316,7 +5390,7 @@ var LoadingIcon = ({
|
|
|
5316
5390
|
repeatCount: "indefinite"
|
|
5317
5391
|
}
|
|
5318
5392
|
) : null,
|
|
5319
|
-
/* @__PURE__ */ (0,
|
|
5393
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5320
5394
|
"circle",
|
|
5321
5395
|
{
|
|
5322
5396
|
cx: "22",
|
|
@@ -5330,8 +5404,8 @@ var LoadingIcon = ({
|
|
|
5330
5404
|
strokeDasharray: LOADING_ICON_PROMINENT_DASHARRAY
|
|
5331
5405
|
}
|
|
5332
5406
|
)
|
|
5333
|
-
] }) : /* @__PURE__ */ (0,
|
|
5334
|
-
enableAnimations ? /* @__PURE__ */ (0,
|
|
5407
|
+
] }) : /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)("g", { children: [
|
|
5408
|
+
enableAnimations ? /* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5335
5409
|
"animateTransform",
|
|
5336
5410
|
{
|
|
5337
5411
|
attributeName: "transform",
|
|
@@ -5343,7 +5417,7 @@ var LoadingIcon = ({
|
|
|
5343
5417
|
repeatCount: "indefinite"
|
|
5344
5418
|
}
|
|
5345
5419
|
) : null,
|
|
5346
|
-
/* @__PURE__ */ (0,
|
|
5420
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5347
5421
|
"circle",
|
|
5348
5422
|
{
|
|
5349
5423
|
cx: "22",
|
|
@@ -5355,8 +5429,8 @@ var LoadingIcon = ({
|
|
|
5355
5429
|
strokeLinecap: "round",
|
|
5356
5430
|
strokeDasharray: "60 100",
|
|
5357
5431
|
strokeDashoffset: "0",
|
|
5358
|
-
children: enableAnimations ? /* @__PURE__ */ (0,
|
|
5359
|
-
/* @__PURE__ */ (0,
|
|
5432
|
+
children: enableAnimations ? /* @__PURE__ */ (0, import_jsx_runtime114.jsxs)(import_jsx_runtime114.Fragment, { children: [
|
|
5433
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5360
5434
|
"animate",
|
|
5361
5435
|
{
|
|
5362
5436
|
attributeName: "stroke-dasharray",
|
|
@@ -5365,7 +5439,7 @@ var LoadingIcon = ({
|
|
|
5365
5439
|
repeatCount: "indefinite"
|
|
5366
5440
|
}
|
|
5367
5441
|
),
|
|
5368
|
-
/* @__PURE__ */ (0,
|
|
5442
|
+
/* @__PURE__ */ (0, import_jsx_runtime114.jsx)(
|
|
5369
5443
|
"animate",
|
|
5370
5444
|
{
|
|
5371
5445
|
attributeName: "stroke-dashoffset",
|
|
@@ -5410,7 +5484,7 @@ var resolveModalCloseIcon = ({
|
|
|
5410
5484
|
};
|
|
5411
5485
|
|
|
5412
5486
|
// src/primitives/modal/index.tsx
|
|
5413
|
-
var
|
|
5487
|
+
var import_jsx_runtime115 = require("react/jsx-runtime");
|
|
5414
5488
|
var Modal = ({
|
|
5415
5489
|
open,
|
|
5416
5490
|
onOpenChange,
|
|
@@ -5418,7 +5492,7 @@ var Modal = ({
|
|
|
5418
5492
|
"aria-label": _ariaLabel,
|
|
5419
5493
|
"aria-labelledby": _ariaLabelledBy
|
|
5420
5494
|
}) => {
|
|
5421
|
-
return /* @__PURE__ */ (0,
|
|
5495
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(Dialog.Root, { open, onOpenChange, children });
|
|
5422
5496
|
};
|
|
5423
5497
|
var ModalContainer = ({
|
|
5424
5498
|
children,
|
|
@@ -5433,8 +5507,8 @@ var ModalContainer = ({
|
|
|
5433
5507
|
} = (0, import_hooks26.useSdkUiConfig)();
|
|
5434
5508
|
const overlayAnimationClassName = resolveModalOverlayAnimationClassName(enableAnimations);
|
|
5435
5509
|
const panelAnimationClassName = resolveModalPanelAnimationClassName(enableAnimations);
|
|
5436
|
-
return /* @__PURE__ */ (0,
|
|
5437
|
-
/* @__PURE__ */ (0,
|
|
5510
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(Dialog.Portal, { children: [
|
|
5511
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5438
5512
|
Dialog.Overlay,
|
|
5439
5513
|
{
|
|
5440
5514
|
className: cn(
|
|
@@ -5445,7 +5519,7 @@ var ModalContainer = ({
|
|
|
5445
5519
|
)
|
|
5446
5520
|
}
|
|
5447
5521
|
),
|
|
5448
|
-
/* @__PURE__ */ (0,
|
|
5522
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5449
5523
|
Dialog.Content,
|
|
5450
5524
|
{
|
|
5451
5525
|
className: cn(
|
|
@@ -5471,7 +5545,7 @@ var ModalContainer = ({
|
|
|
5471
5545
|
event.preventDefault();
|
|
5472
5546
|
}
|
|
5473
5547
|
},
|
|
5474
|
-
children: /* @__PURE__ */ (0,
|
|
5548
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5475
5549
|
"div",
|
|
5476
5550
|
{
|
|
5477
5551
|
className: cn(
|
|
@@ -5479,7 +5553,7 @@ var ModalContainer = ({
|
|
|
5479
5553
|
"items-end md:items-center",
|
|
5480
5554
|
"flex h-full min-h-0 w-full justify-center p-0 md:p-5"
|
|
5481
5555
|
),
|
|
5482
|
-
children: /* @__PURE__ */ (0,
|
|
5556
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5483
5557
|
"div",
|
|
5484
5558
|
{
|
|
5485
5559
|
className: cn(
|
|
@@ -5521,12 +5595,12 @@ var ModalHeader = ({
|
|
|
5521
5595
|
features: { enableAnimations }
|
|
5522
5596
|
} = (0, import_hooks26.useSdkUiConfig)();
|
|
5523
5597
|
const labels = (0, import_hooks26.useLabels)();
|
|
5524
|
-
const defaultCloseIcon = /* @__PURE__ */ (0,
|
|
5598
|
+
const defaultCloseIcon = /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(CloseIcon, { className: "h-6 w-6" });
|
|
5525
5599
|
const resolvedCloseIcon = resolveModalCloseIcon({
|
|
5526
5600
|
closeIcon,
|
|
5527
5601
|
defaultCloseIcon
|
|
5528
5602
|
});
|
|
5529
|
-
return /* @__PURE__ */ (0,
|
|
5603
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
5530
5604
|
"div",
|
|
5531
5605
|
{
|
|
5532
5606
|
className: cn(
|
|
@@ -5539,7 +5613,7 @@ var ModalHeader = ({
|
|
|
5539
5613
|
classNames == null ? void 0 : classNames.root
|
|
5540
5614
|
),
|
|
5541
5615
|
children: [
|
|
5542
|
-
/* @__PURE__ */ (0,
|
|
5616
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
5543
5617
|
"div",
|
|
5544
5618
|
{
|
|
5545
5619
|
className: cn(
|
|
@@ -5552,8 +5626,8 @@ var ModalHeader = ({
|
|
|
5552
5626
|
classNames == null ? void 0 : classNames.container
|
|
5553
5627
|
),
|
|
5554
5628
|
children: [
|
|
5555
|
-
leftElement ? /* @__PURE__ */ (0,
|
|
5556
|
-
/* @__PURE__ */ (0,
|
|
5629
|
+
leftElement ? /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_jsx_runtime115.Fragment, { children: leftElement }) : null,
|
|
5630
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsxs)(
|
|
5557
5631
|
"div",
|
|
5558
5632
|
{
|
|
5559
5633
|
className: cn(
|
|
@@ -5562,7 +5636,7 @@ var ModalHeader = ({
|
|
|
5562
5636
|
classNames == null ? void 0 : classNames.titleContainer
|
|
5563
5637
|
),
|
|
5564
5638
|
children: [
|
|
5565
|
-
/* @__PURE__ */ (0,
|
|
5639
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5566
5640
|
Dialog.Title,
|
|
5567
5641
|
{
|
|
5568
5642
|
className: cn(
|
|
@@ -5576,7 +5650,7 @@ var ModalHeader = ({
|
|
|
5576
5650
|
children: title2
|
|
5577
5651
|
}
|
|
5578
5652
|
),
|
|
5579
|
-
subtitle ? /* @__PURE__ */ (0,
|
|
5653
|
+
subtitle ? /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5580
5654
|
"span",
|
|
5581
5655
|
{
|
|
5582
5656
|
className: cn(
|
|
@@ -5590,9 +5664,9 @@ var ModalHeader = ({
|
|
|
5590
5664
|
]
|
|
5591
5665
|
}
|
|
5592
5666
|
),
|
|
5593
|
-
/* @__PURE__ */ (0,
|
|
5594
|
-
rightElement ? /* @__PURE__ */ (0,
|
|
5595
|
-
!hideClose && /* @__PURE__ */ (0,
|
|
5667
|
+
/* @__PURE__ */ (0, import_jsx_runtime115.jsxs)("div", { className: "agg-modal-header-actions flex flex-row items-center justify-end gap-6", children: [
|
|
5668
|
+
rightElement ? /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(import_jsx_runtime115.Fragment, { children: rightElement }) : null,
|
|
5669
|
+
!hideClose && /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5596
5670
|
Dialog.Close,
|
|
5597
5671
|
{
|
|
5598
5672
|
className: cn(
|
|
@@ -5609,14 +5683,14 @@ var ModalHeader = ({
|
|
|
5609
5683
|
]
|
|
5610
5684
|
}
|
|
5611
5685
|
),
|
|
5612
|
-
children ? /* @__PURE__ */ (0,
|
|
5686
|
+
children ? /* @__PURE__ */ (0, import_jsx_runtime115.jsx)("div", { className: "agg-modal-header-extra", children }) : null
|
|
5613
5687
|
]
|
|
5614
5688
|
}
|
|
5615
5689
|
);
|
|
5616
5690
|
};
|
|
5617
5691
|
Modal.Header = ModalHeader;
|
|
5618
5692
|
var ModalBody = ({ children, classNames }) => {
|
|
5619
|
-
return /* @__PURE__ */ (0,
|
|
5693
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5620
5694
|
"div",
|
|
5621
5695
|
{
|
|
5622
5696
|
className: cn(
|
|
@@ -5637,7 +5711,7 @@ var ModalFooter = ({
|
|
|
5637
5711
|
classNames,
|
|
5638
5712
|
hideBorder = false
|
|
5639
5713
|
}) => {
|
|
5640
|
-
return /* @__PURE__ */ (0,
|
|
5714
|
+
return /* @__PURE__ */ (0, import_jsx_runtime115.jsx)(
|
|
5641
5715
|
"div",
|
|
5642
5716
|
{
|
|
5643
5717
|
className: cn(
|
|
@@ -5720,7 +5794,7 @@ var getTypographyClassName = ({
|
|
|
5720
5794
|
};
|
|
5721
5795
|
|
|
5722
5796
|
// src/primitives/typography/index.tsx
|
|
5723
|
-
var
|
|
5797
|
+
var import_jsx_runtime116 = require("react/jsx-runtime");
|
|
5724
5798
|
var Typography = ({
|
|
5725
5799
|
as: Component = "p",
|
|
5726
5800
|
variant = "body",
|
|
@@ -5728,7 +5802,7 @@ var Typography = ({
|
|
|
5728
5802
|
children,
|
|
5729
5803
|
"aria-label": ariaLabel
|
|
5730
5804
|
}) => {
|
|
5731
|
-
return /* @__PURE__ */ (0,
|
|
5805
|
+
return /* @__PURE__ */ (0, import_jsx_runtime116.jsx)(Component, { className: getTypographyClassName({ className, variant }), "aria-label": ariaLabel, children });
|
|
5732
5806
|
};
|
|
5733
5807
|
Typography.displayName = "Typography";
|
|
5734
5808
|
|
|
@@ -5767,7 +5841,7 @@ var resolveTooltipArrowDimensions = (size) => {
|
|
|
5767
5841
|
};
|
|
5768
5842
|
|
|
5769
5843
|
// src/primitives/tooltip/index.tsx
|
|
5770
|
-
var
|
|
5844
|
+
var import_jsx_runtime117 = require("react/jsx-runtime");
|
|
5771
5845
|
var Tooltip = ({
|
|
5772
5846
|
content,
|
|
5773
5847
|
children,
|
|
@@ -5780,32 +5854,35 @@ var Tooltip = ({
|
|
|
5780
5854
|
"aria-label": ariaLabel
|
|
5781
5855
|
}) => {
|
|
5782
5856
|
const {
|
|
5857
|
+
general: { rootClassName },
|
|
5783
5858
|
features: { enableAnimations }
|
|
5784
5859
|
} = (0, import_hooks27.useSdkUiConfig)();
|
|
5785
5860
|
const trigger = (0, import_react5.useMemo)(() => {
|
|
5786
5861
|
if (children) return children;
|
|
5787
|
-
return /* @__PURE__ */ (0,
|
|
5862
|
+
return /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
5788
5863
|
"button",
|
|
5789
5864
|
{
|
|
5790
5865
|
type: "button",
|
|
5791
5866
|
className: resolveTooltipTriggerClassName(classNames == null ? void 0 : classNames.trigger),
|
|
5792
5867
|
"aria-label": ariaLabel != null ? ariaLabel : defaultTooltipTriggerAriaLabel,
|
|
5793
|
-
children: /* @__PURE__ */ (0,
|
|
5868
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(Icon, { name: "info", size: "small", className: cn(classNames == null ? void 0 : classNames.icon), "aria-hidden": true })
|
|
5794
5869
|
}
|
|
5795
5870
|
);
|
|
5796
5871
|
}, [children, classNames == null ? void 0 : classNames.trigger, classNames == null ? void 0 : classNames.icon, ariaLabel]);
|
|
5797
5872
|
const { width: arrowWidth, height: arrowHeight } = resolveTooltipArrowDimensions(size);
|
|
5798
5873
|
const arrowPoints = `0,0 ${arrowWidth},0 ${arrowWidth / 2},${arrowHeight}`;
|
|
5799
5874
|
const arrowBorderPath = `M0 0 L${arrowWidth / 2} ${arrowHeight} L${arrowWidth} 0`;
|
|
5800
|
-
return /* @__PURE__ */ (0,
|
|
5801
|
-
/* @__PURE__ */ (0,
|
|
5802
|
-
/* @__PURE__ */ (0,
|
|
5875
|
+
return /* @__PURE__ */ (0, import_jsx_runtime117.jsx)(TooltipPrimitive.Provider, { delayDuration, children: /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(TooltipPrimitive.Root, { children: [
|
|
5876
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(TooltipPrimitive.Trigger, { asChild: true, children: trigger }),
|
|
5877
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(TooltipPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
|
|
5803
5878
|
TooltipPrimitive.Content,
|
|
5804
5879
|
{
|
|
5805
5880
|
side,
|
|
5806
5881
|
sideOffset,
|
|
5807
5882
|
collisionPadding,
|
|
5808
5883
|
className: cn(
|
|
5884
|
+
AGG_ROOT_CLASS_NAME,
|
|
5885
|
+
rootClassName,
|
|
5809
5886
|
"group/agg-tooltip",
|
|
5810
5887
|
"z-agg-tooltip text-agg-foreground",
|
|
5811
5888
|
"text-agg-sm leading-agg-5",
|
|
@@ -5821,7 +5898,7 @@ var Tooltip = ({
|
|
|
5821
5898
|
classNames == null ? void 0 : classNames.content
|
|
5822
5899
|
),
|
|
5823
5900
|
children: [
|
|
5824
|
-
/* @__PURE__ */ (0,
|
|
5901
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(TooltipPrimitive.Arrow, { asChild: true, width: arrowWidth, height: arrowHeight, children: /* @__PURE__ */ (0, import_jsx_runtime117.jsxs)(
|
|
5825
5902
|
"svg",
|
|
5826
5903
|
{
|
|
5827
5904
|
width: arrowWidth,
|
|
@@ -5830,8 +5907,8 @@ var Tooltip = ({
|
|
|
5830
5907
|
"aria-hidden": "true",
|
|
5831
5908
|
className: cn("overflow-visible", classNames == null ? void 0 : classNames.arrow),
|
|
5832
5909
|
children: [
|
|
5833
|
-
/* @__PURE__ */ (0,
|
|
5834
|
-
/* @__PURE__ */ (0,
|
|
5910
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)("polygon", { points: arrowPoints, className: "fill-agg-secondary" }),
|
|
5911
|
+
/* @__PURE__ */ (0, import_jsx_runtime117.jsx)(
|
|
5835
5912
|
"path",
|
|
5836
5913
|
{
|
|
5837
5914
|
d: arrowBorderPath,
|
|
@@ -6557,13 +6634,19 @@ var getTradingRoutePriceLabel = (value) => {
|
|
|
6557
6634
|
const centsValue = Number.isFinite(value) ? value * 100 : 0;
|
|
6558
6635
|
return `${routePriceLabelFormatter.format(centsValue)}\xA2`;
|
|
6559
6636
|
};
|
|
6637
|
+
var isQuoteBelowVenueMinimum = (quoteData) => {
|
|
6638
|
+
if (!quoteData) return false;
|
|
6639
|
+
if (quoteData.status === "insufficient_balance") return false;
|
|
6640
|
+
if (quoteData.status === "min_order_size_violated") return true;
|
|
6641
|
+
return typeof quoteData.error === "string" && quoteData.error.startsWith("Trade below ");
|
|
6642
|
+
};
|
|
6560
6643
|
var resolvePlaceOrderQuoteStatus = ({
|
|
6561
6644
|
amount,
|
|
6562
6645
|
labels,
|
|
6563
6646
|
quoteData,
|
|
6564
6647
|
selectedMarket
|
|
6565
6648
|
}) => {
|
|
6566
|
-
var _a, _b, _c
|
|
6649
|
+
var _a, _b, _c;
|
|
6567
6650
|
if (!selectedMarket) {
|
|
6568
6651
|
return {
|
|
6569
6652
|
tone: "warning",
|
|
@@ -6572,43 +6655,46 @@ var resolvePlaceOrderQuoteStatus = ({
|
|
|
6572
6655
|
};
|
|
6573
6656
|
}
|
|
6574
6657
|
if (!quoteData) return void 0;
|
|
6575
|
-
if (quoteData.status === "
|
|
6658
|
+
if (quoteData.status === "insufficient_balance") {
|
|
6659
|
+
return void 0;
|
|
6660
|
+
}
|
|
6661
|
+
if (isQuoteBelowVenueMinimum(quoteData)) {
|
|
6576
6662
|
return {
|
|
6577
6663
|
tone: "error",
|
|
6578
|
-
message: labels.
|
|
6664
|
+
message: labels.minOrderSizeViolated,
|
|
6579
6665
|
placement: "above-action"
|
|
6580
6666
|
};
|
|
6581
6667
|
}
|
|
6582
|
-
if (quoteData.status === "
|
|
6668
|
+
if (quoteData.status === "no_orderbooks") {
|
|
6583
6669
|
return {
|
|
6584
6670
|
tone: "error",
|
|
6585
|
-
message: labels.
|
|
6671
|
+
message: labels.noOrderbooks,
|
|
6586
6672
|
placement: "above-action"
|
|
6587
6673
|
};
|
|
6588
6674
|
}
|
|
6589
|
-
if (quoteData.status === "
|
|
6675
|
+
if (quoteData.status === "infeasible") {
|
|
6590
6676
|
return {
|
|
6591
6677
|
tone: "error",
|
|
6592
|
-
message:
|
|
6678
|
+
message: labels.insufficientLiquidity,
|
|
6593
6679
|
placement: "above-action"
|
|
6594
6680
|
};
|
|
6595
6681
|
}
|
|
6596
6682
|
if (quoteData.status === "insufficient_input_amount") {
|
|
6597
6683
|
return {
|
|
6598
6684
|
tone: "error",
|
|
6599
|
-
message: (
|
|
6685
|
+
message: (_a = quoteData.message) != null ? _a : labels.insufficientInputAmount,
|
|
6600
6686
|
placement: "above-action"
|
|
6601
6687
|
};
|
|
6602
6688
|
}
|
|
6603
6689
|
if (quoteData.status === "invalid_input") {
|
|
6604
6690
|
return {
|
|
6605
6691
|
tone: "error",
|
|
6606
|
-
message: (
|
|
6692
|
+
message: (_b = quoteData.message) != null ? _b : labels.quoteUnavailable,
|
|
6607
6693
|
placement: "above-action"
|
|
6608
6694
|
};
|
|
6609
6695
|
}
|
|
6610
6696
|
if (quoteData.status === "insufficient_position") {
|
|
6611
|
-
const total = (
|
|
6697
|
+
const total = (_c = quoteData.positionAvailability) == null ? void 0 : _c.totalSellableShares;
|
|
6612
6698
|
const message = total != null ? labels.insufficientPosition(total) : labels.insufficientPositionGeneric;
|
|
6613
6699
|
return { tone: "error", message, placement: "above-action" };
|
|
6614
6700
|
}
|
|
@@ -6626,9 +6712,6 @@ var resolvePlaceOrderQuoteStatus = ({
|
|
|
6626
6712
|
placement: "above-action"
|
|
6627
6713
|
};
|
|
6628
6714
|
}
|
|
6629
|
-
if (quoteData.status === "insufficient_balance") {
|
|
6630
|
-
return void 0;
|
|
6631
|
-
}
|
|
6632
6715
|
if (quoteData.status !== "ok") {
|
|
6633
6716
|
return {
|
|
6634
6717
|
tone: "error",
|
|
@@ -6784,6 +6867,14 @@ var resolveExecutionVenueFromQuote = (quoteData) => {
|
|
|
6784
6867
|
const parsed = parseVenue(dominantFill == null ? void 0 : dominantFill.venue);
|
|
6785
6868
|
return parsed.success ? parsed.data : void 0;
|
|
6786
6869
|
};
|
|
6870
|
+
var routeCardsHaveSameVenueIdentity = (a, b) => {
|
|
6871
|
+
if (a.kind !== b.kind) return false;
|
|
6872
|
+
if (a.kind === "venue") return a.venue === b.venue;
|
|
6873
|
+
const venuesA = [...new Set(a.quoteData.fills.map((f) => f.venue))].sort();
|
|
6874
|
+
const venuesB = [...new Set(b.quoteData.fills.map((f) => f.venue))].sort();
|
|
6875
|
+
if (venuesA.length !== venuesB.length) return false;
|
|
6876
|
+
return venuesA.every((v, i) => v === venuesB[i]);
|
|
6877
|
+
};
|
|
6787
6878
|
var getPlaceOrderPotentialReturn = (quoteData) => {
|
|
6788
6879
|
var _a, _b;
|
|
6789
6880
|
if (!((_a = quoteData == null ? void 0 : quoteData.fills) == null ? void 0 : _a.length) || quoteData.fills.length < 2) return 0;
|
|
@@ -6974,7 +7065,7 @@ var VENUE_NO_QUOTE_PATH_PATTERN = /No active quote path/i;
|
|
|
6974
7065
|
var SOLANA_BLOCKHASH_EXPIRED_PATTERN = /\b(blockhash(?:\s+(?:expired|not\s+found))?|TransactionExpiredBlockheightExceeded|transaction\s+expired)\b/i;
|
|
6975
7066
|
var VENUE_RATE_LIMITED_PATTERN = /\b(429|rate[\s-]?limit(?:ed)?|too\s+many\s+requests|backoff)\b/i;
|
|
6976
7067
|
var SERVICE_BLOCKED_ORDER_PATTERN = /Something on our side blocked this order/i;
|
|
6977
|
-
var ALCHEMY_BALANCE_REVERT_PATTERN = /\b(transfer amount exceeds balance|transferFrom failed|insufficient balance|insufficient funds)\b/i;
|
|
7068
|
+
var ALCHEMY_BALANCE_REVERT_PATTERN = /\b(transfer amount exceeds (?:balance|allowance)|transferFrom failed|insufficient balance|insufficient funds|insufficient allowance)\b/i;
|
|
6978
7069
|
var ALCHEMY_REVERT_DATA_SELECTOR_PATTERN = /\brevertData["']?:?\s*['"]?(0x[0-9a-fA-F]{8})/i;
|
|
6979
7070
|
var REVERT_SELECTOR_MESSAGES = {
|
|
6980
7071
|
// Solady TransferFromFailed() — ERC-20 transferFrom revert. Same recovery
|
|
@@ -6995,6 +7086,7 @@ function lookupRevertSelectorMessage(message) {
|
|
|
6995
7086
|
}
|
|
6996
7087
|
var ALCHEMY_SPONSORSHIP_POLICY_PATTERN = /\b(SPONSORSHIP_FAILED|sponsorship.*(quota|cap|exhausted|disabled)|policy.*(disabled|not found|exhausted))\b/i;
|
|
6997
7088
|
var ALCHEMY_POLICY_MAX_COUNT_PATTERN = /\bSponsorship failed: Policy (max count|count) exceeded\b/i;
|
|
7089
|
+
var ORDER_FAILED_PREFIX_PATTERN = /^Order failed\s+(?:-|--|\u2014)\s+/i;
|
|
6998
7090
|
var VENUE_TERMINATED_STATUS_PATTERN = /\bterminated with status=(\w+)/i;
|
|
6999
7091
|
var friendlyTerminatedStatusMessage = (status) => {
|
|
7000
7092
|
const normalized = status.toLowerCase();
|
|
@@ -7047,72 +7139,70 @@ var normalizePlaceOrderErrorMessage = ({
|
|
|
7047
7139
|
fallbackMessage,
|
|
7048
7140
|
labels
|
|
7049
7141
|
}) => {
|
|
7050
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o;
|
|
7142
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p;
|
|
7051
7143
|
const extractedMessage = extractPlaceOrderErrorMessage(errorMessage);
|
|
7052
7144
|
if (!extractedMessage) return fallbackMessage;
|
|
7053
|
-
|
|
7145
|
+
const normalizedMessage = extractedMessage.replace(ORDER_FAILED_PREFIX_PATTERN, "").trim();
|
|
7146
|
+
if (DAG_CHECK_BALANCE_SHORTFALL_PATTERN.test(normalizedMessage)) {
|
|
7054
7147
|
return (_a = labels == null ? void 0 : labels.quoteBalanceMismatch) != null ? _a : "Quote balance mismatch. Try a different amount.";
|
|
7055
7148
|
}
|
|
7056
|
-
if (VENUE_CONNECTOR_UNREACHABLE_PATTERN.test(
|
|
7149
|
+
if (VENUE_CONNECTOR_UNREACHABLE_PATTERN.test(normalizedMessage)) {
|
|
7057
7150
|
return (_b = labels == null ? void 0 : labels.serviceTemporarilyUnavailable) != null ? _b : "Service temporarily unavailable. Please try again in a moment.";
|
|
7058
7151
|
}
|
|
7059
|
-
if (POLYMARKET_DEADLINE_TOO_SOON_PATTERN.test(
|
|
7152
|
+
if (POLYMARKET_DEADLINE_TOO_SOON_PATTERN.test(normalizedMessage)) {
|
|
7060
7153
|
return (_c = labels == null ? void 0 : labels.orderDeadlineExpiredBeforeSubmission) != null ? _c : "Order deadline expired before submission. Please try again.";
|
|
7061
7154
|
}
|
|
7062
|
-
if (DFLOW_WALLET_UNVERIFIED_PATTERN.test(
|
|
7155
|
+
if (DFLOW_WALLET_UNVERIFIED_PATTERN.test(normalizedMessage)) {
|
|
7063
7156
|
return (_d = labels == null ? void 0 : labels.dflowWalletUnverified) != null ? _d : "Your Solana wallet needs to be verified with dFlow before you can trade Kalshi markets. Verify at https://dflow.net/proof, then try again.";
|
|
7064
7157
|
}
|
|
7065
|
-
if (SELL_NO_ONCHAIN_POSITION_PATTERN.test(
|
|
7158
|
+
if (SELL_NO_ONCHAIN_POSITION_PATTERN.test(normalizedMessage)) {
|
|
7066
7159
|
return (_e = labels == null ? void 0 : labels.sellNoOnchainPosition) != null ? _e : "You don't currently hold any on-chain shares of this outcome. If you just sold or redeemed elsewhere, your position display will refresh shortly \u2014 try again after that.";
|
|
7067
7160
|
}
|
|
7068
|
-
if (VENUE_MARKET_RESOLVED_PATTERN.test(
|
|
7161
|
+
if (VENUE_MARKET_RESOLVED_PATTERN.test(normalizedMessage)) {
|
|
7069
7162
|
return (_f = labels == null ? void 0 : labels.venueMarketResolved) != null ? _f : "This market just resolved. Pick a different market or wait for the next round.";
|
|
7070
7163
|
}
|
|
7071
|
-
if (VENUE_NO_QUOTE_PATH_PATTERN.test(
|
|
7164
|
+
if (VENUE_NO_QUOTE_PATH_PATTERN.test(normalizedMessage)) {
|
|
7072
7165
|
return (_g = labels == null ? void 0 : labels.venueNoQuotePath) != null ? _g : "No active quote path for this market right now. Try a different size, or wait a moment and re-quote.";
|
|
7073
7166
|
}
|
|
7074
|
-
if (QUOTED_PRICE_UNAVAILABLE_PATTERN.test(
|
|
7167
|
+
if (QUOTED_PRICE_UNAVAILABLE_PATTERN.test(normalizedMessage)) {
|
|
7075
7168
|
return (_h = labels == null ? void 0 : labels.quoteUnavailable) != null ? _h : "Quote temporarily unavailable. Please try again.";
|
|
7076
7169
|
}
|
|
7077
|
-
if (VENUE_QUOTE_UNFILLABLE_PATTERN.test(
|
|
7170
|
+
if (VENUE_QUOTE_UNFILLABLE_PATTERN.test(normalizedMessage)) {
|
|
7078
7171
|
return (_i = labels == null ? void 0 : labels.venueQuoteUnfillable) != null ? _i : "The venue couldn't fill this order at the quoted price right now. Try a smaller size, a higher slippage tolerance, or wait a moment and re-quote.";
|
|
7079
7172
|
}
|
|
7080
|
-
if (VENUE_MIN_ORDER_SIZE_PATTERN.test(
|
|
7173
|
+
if (VENUE_MIN_ORDER_SIZE_PATTERN.test(normalizedMessage)) {
|
|
7081
7174
|
return (_j = labels == null ? void 0 : labels.venueMinOrderSize) != null ? _j : "Order size is below the venue minimum. Try a larger amount.";
|
|
7082
7175
|
}
|
|
7083
|
-
if (SOURCE_BALANCE_CHANGED_PATTERN.test(
|
|
7176
|
+
if (SOURCE_BALANCE_CHANGED_PATTERN.test(normalizedMessage)) {
|
|
7084
7177
|
return (_k = labels == null ? void 0 : labels.sourceBalanceChanged) != null ? _k : "Your balance changed since the quote. Refresh and try again, or pick a smaller amount.";
|
|
7085
7178
|
}
|
|
7086
|
-
if (SOLANA_BLOCKHASH_EXPIRED_PATTERN.test(
|
|
7179
|
+
if (SOLANA_BLOCKHASH_EXPIRED_PATTERN.test(normalizedMessage)) {
|
|
7087
7180
|
return (_l = labels == null ? void 0 : labels.solanaBlockhashExpired) != null ? _l : "Solana transaction expired before submission. Please re-quote and try again.";
|
|
7088
7181
|
}
|
|
7089
|
-
if (VENUE_RATE_LIMITED_PATTERN.test(
|
|
7182
|
+
if (VENUE_RATE_LIMITED_PATTERN.test(normalizedMessage)) {
|
|
7090
7183
|
return (_m = labels == null ? void 0 : labels.venueRateLimited) != null ? _m : "The venue is rate-limiting requests right now. Please wait a moment and try again.";
|
|
7091
7184
|
}
|
|
7092
|
-
if (SERVICE_BLOCKED_ORDER_PATTERN.test(
|
|
7185
|
+
if (SERVICE_BLOCKED_ORDER_PATTERN.test(normalizedMessage)) {
|
|
7093
7186
|
return (_n = labels == null ? void 0 : labels.serviceBlockedOrder) != null ? _n : "Something on our side blocked this order. Please contact support if it keeps happening \u2014 retrying with the same quote will hit the same issue.";
|
|
7094
7187
|
}
|
|
7095
|
-
if (ALCHEMY_BALANCE_REVERT_PATTERN.test(
|
|
7096
|
-
return "Your balance changed since the quote.
|
|
7188
|
+
if (ALCHEMY_BALANCE_REVERT_PATTERN.test(normalizedMessage)) {
|
|
7189
|
+
return (_o = labels == null ? void 0 : labels.sourceBalanceChanged) != null ? _o : "Your balance changed since the quote. Refresh and try again, or pick a smaller amount.";
|
|
7097
7190
|
}
|
|
7098
|
-
const selectorMessage = lookupRevertSelectorMessage(
|
|
7191
|
+
const selectorMessage = lookupRevertSelectorMessage(normalizedMessage);
|
|
7099
7192
|
if (selectorMessage) {
|
|
7100
7193
|
return selectorMessage;
|
|
7101
7194
|
}
|
|
7102
|
-
if (ALCHEMY_POLICY_MAX_COUNT_PATTERN.test(
|
|
7195
|
+
if (ALCHEMY_POLICY_MAX_COUNT_PATTERN.test(normalizedMessage)) {
|
|
7103
7196
|
return "Sponsored execution is temporarily unavailable (sponsor policy capacity reached). Please try again in a few minutes.";
|
|
7104
7197
|
}
|
|
7105
|
-
if (ALCHEMY_SPONSORSHIP_POLICY_PATTERN.test(
|
|
7106
|
-
return "Sponsored execution is temporarily unavailable. Please try again.";
|
|
7107
|
-
}
|
|
7108
|
-
if (ALCHEMY_PREPARE_CALLS_ERROR_PATTERN.test(extractedMessage)) {
|
|
7198
|
+
if (ALCHEMY_SPONSORSHIP_POLICY_PATTERN.test(normalizedMessage) || ALCHEMY_SPONSORSHIP_ERROR_PATTERN.test(normalizedMessage) || ALCHEMY_PREPARE_CALLS_ERROR_PATTERN.test(normalizedMessage)) {
|
|
7109
7199
|
return "Sponsored execution is temporarily unavailable. Please try again.";
|
|
7110
7200
|
}
|
|
7111
|
-
const terminatedMatch =
|
|
7201
|
+
const terminatedMatch = normalizedMessage.match(VENUE_TERMINATED_STATUS_PATTERN);
|
|
7112
7202
|
if (terminatedMatch) {
|
|
7113
|
-
return friendlyTerminatedStatusMessage((
|
|
7203
|
+
return friendlyTerminatedStatusMessage((_p = terminatedMatch[1]) != null ? _p : "");
|
|
7114
7204
|
}
|
|
7115
|
-
return
|
|
7205
|
+
return normalizedMessage;
|
|
7116
7206
|
};
|
|
7117
7207
|
var resolvePlaceOrderFailureKind = ({
|
|
7118
7208
|
errorMessage,
|
|
@@ -7528,7 +7618,7 @@ var isPercentageBelowMinimum = (value, minimumValue) => {
|
|
|
7528
7618
|
};
|
|
7529
7619
|
|
|
7530
7620
|
// src/trading/place-order/index.place-order.failure.tsx
|
|
7531
|
-
var
|
|
7621
|
+
var import_jsx_runtime118 = require("react/jsx-runtime");
|
|
7532
7622
|
var resolveFailureActionHandler = ({
|
|
7533
7623
|
action,
|
|
7534
7624
|
onDone,
|
|
@@ -7541,12 +7631,12 @@ var resolveFailureActionHandler = ({
|
|
|
7541
7631
|
};
|
|
7542
7632
|
var renderPartialFailureStep = (step) => {
|
|
7543
7633
|
const isWarningStep = step.tone === "warning" || step.tone === "error";
|
|
7544
|
-
return /* @__PURE__ */ (0,
|
|
7634
|
+
return /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)(
|
|
7545
7635
|
"div",
|
|
7546
7636
|
{
|
|
7547
7637
|
className: "flex items-center gap-2 text-agg-sm leading-agg-5 text-agg-foreground",
|
|
7548
7638
|
children: [
|
|
7549
|
-
/* @__PURE__ */ (0,
|
|
7639
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
7550
7640
|
Icon,
|
|
7551
7641
|
{
|
|
7552
7642
|
name: isWarningStep ? "warning-filled" : "check-circle",
|
|
@@ -7555,8 +7645,8 @@ var renderPartialFailureStep = (step) => {
|
|
|
7555
7645
|
"aria-hidden": "true"
|
|
7556
7646
|
}
|
|
7557
7647
|
),
|
|
7558
|
-
/* @__PURE__ */ (0,
|
|
7559
|
-
step.venue ? /* @__PURE__ */ (0,
|
|
7648
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("p", { className: "min-w-0 flex-1", children: step.label }),
|
|
7649
|
+
step.venue ? /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(VenueLogo, { venue: step.venue, size: "small", className: "h-4 w-4 shrink-0" }) : null
|
|
7560
7650
|
]
|
|
7561
7651
|
},
|
|
7562
7652
|
step.id
|
|
@@ -7575,10 +7665,10 @@ var PlaceOrderFailureView = ({
|
|
|
7575
7665
|
const shouldShowPartialFailureLayout = summary.kind === "partial_fill";
|
|
7576
7666
|
const failureStepGroups = shouldShowPartialFailureLayout ? groupPlaceOrderFailureSteps(summary.steps) : [];
|
|
7577
7667
|
if (shouldShowPartialFailureLayout) {
|
|
7578
|
-
return /* @__PURE__ */ (0,
|
|
7579
|
-
/* @__PURE__ */ (0,
|
|
7580
|
-
/* @__PURE__ */ (0,
|
|
7581
|
-
/* @__PURE__ */ (0,
|
|
7668
|
+
return /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(Card, { className: cn("group/agg-order-panel", getPlaceOrderContainerClassName(), className), children: /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("div", { className: "agg-order-failure-body flex flex-col gap-6 p-5", children: [
|
|
7669
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("div", { className: "agg-order-failure-header flex flex-col gap-2", children: [
|
|
7670
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("div", { className: "agg-order-failure-market flex items-center gap-3", children: [
|
|
7671
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
7582
7672
|
RemoteImage,
|
|
7583
7673
|
{
|
|
7584
7674
|
src: (_a = summary.eventImage) != null ? _a : null,
|
|
@@ -7586,12 +7676,12 @@ var PlaceOrderFailureView = ({
|
|
|
7586
7676
|
className: "h-12 w-12 shrink-0 overflow-hidden rounded-agg-lg object-cover"
|
|
7587
7677
|
}
|
|
7588
7678
|
),
|
|
7589
|
-
/* @__PURE__ */ (0,
|
|
7679
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("p", { className: "min-w-0 flex-1 text-agg-base font-agg-bold leading-agg-6 text-agg-foreground line-clamp-2", children: summary.eventTitle })
|
|
7590
7680
|
] }),
|
|
7591
|
-
summary.eventSubtitle ? /* @__PURE__ */ (0,
|
|
7681
|
+
summary.eventSubtitle ? /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("p", { className: "text-agg-base leading-agg-6 text-agg-foreground", children: summary.eventSubtitle }) : null
|
|
7592
7682
|
] }),
|
|
7593
|
-
/* @__PURE__ */ (0,
|
|
7594
|
-
/* @__PURE__ */ (0,
|
|
7683
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("div", { className: "flex flex-col gap-4", children: failureStepGroups.map((group, groupIndex) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("div", { className: "flex flex-col gap-2", children: group.map((step) => renderPartialFailureStep(step)) }, `failure-group-${groupIndex}`)) }),
|
|
7684
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("div", { className: "flex items-center gap-4", children: summary.actions.map((action) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
7595
7685
|
Button,
|
|
7596
7686
|
{
|
|
7597
7687
|
variant: "tertiary",
|
|
@@ -7605,10 +7695,10 @@ var PlaceOrderFailureView = ({
|
|
|
7605
7695
|
)) })
|
|
7606
7696
|
] }) });
|
|
7607
7697
|
}
|
|
7608
|
-
return /* @__PURE__ */ (0,
|
|
7609
|
-
/* @__PURE__ */ (0,
|
|
7610
|
-
/* @__PURE__ */ (0,
|
|
7611
|
-
/* @__PURE__ */ (0,
|
|
7698
|
+
return /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(Card, { className: cn("group/agg-order-panel", getPlaceOrderContainerClassName(), className), children: /* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("div", { className: "agg-order-failure-body flex flex-col gap-6 p-5", children: [
|
|
7699
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("div", { className: "agg-order-failure-header flex flex-col gap-2", children: [
|
|
7700
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsxs)("div", { className: "agg-order-failure-market flex items-center gap-3", children: [
|
|
7701
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
7612
7702
|
RemoteImage,
|
|
7613
7703
|
{
|
|
7614
7704
|
src: (_b = summary.eventImage) != null ? _b : null,
|
|
@@ -7616,11 +7706,11 @@ var PlaceOrderFailureView = ({
|
|
|
7616
7706
|
className: "h-12 w-12 shrink-0 overflow-hidden rounded-agg-lg object-cover"
|
|
7617
7707
|
}
|
|
7618
7708
|
),
|
|
7619
|
-
/* @__PURE__ */ (0,
|
|
7709
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("p", { className: "min-w-0 flex-1 text-agg-base font-agg-bold leading-agg-6 text-agg-foreground line-clamp-2", children: summary.eventTitle })
|
|
7620
7710
|
] }),
|
|
7621
|
-
summary.eventSubtitle ? /* @__PURE__ */ (0,
|
|
7711
|
+
summary.eventSubtitle ? /* @__PURE__ */ (0, import_jsx_runtime118.jsx)("p", { className: "text-agg-base leading-agg-6 text-agg-foreground", children: summary.eventSubtitle }) : null
|
|
7622
7712
|
] }),
|
|
7623
|
-
/* @__PURE__ */ (0,
|
|
7713
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
7624
7714
|
InlineAlert,
|
|
7625
7715
|
{
|
|
7626
7716
|
tone: "error",
|
|
@@ -7629,7 +7719,7 @@ var PlaceOrderFailureView = ({
|
|
|
7629
7719
|
message: tradingLabels.orderFailureDescription((_c = summary.errorMessage) != null ? _c : "")
|
|
7630
7720
|
}
|
|
7631
7721
|
),
|
|
7632
|
-
/* @__PURE__ */ (0,
|
|
7722
|
+
/* @__PURE__ */ (0, import_jsx_runtime118.jsx)("div", { className: "agg-order-failure-actions flex items-center gap-3", children: summary.actions.map((action) => /* @__PURE__ */ (0, import_jsx_runtime118.jsx)(
|
|
7633
7723
|
Button,
|
|
7634
7724
|
{
|
|
7635
7725
|
variant: action.variant === "retry" ? "primary" : "secondary",
|
|
@@ -7647,7 +7737,7 @@ PlaceOrderFailureView.displayName = "PlaceOrderFailureView";
|
|
|
7647
7737
|
|
|
7648
7738
|
// src/trading/place-order/index.place-order.success.tsx
|
|
7649
7739
|
var import_react7 = require("react");
|
|
7650
|
-
var
|
|
7740
|
+
var import_jsx_runtime119 = require("react/jsx-runtime");
|
|
7651
7741
|
var resolveBuyToWinLabel = (shares) => {
|
|
7652
7742
|
if (!shares) return "$0";
|
|
7653
7743
|
return shares.startsWith("$") ? shares : `$${shares}`;
|
|
@@ -7678,10 +7768,10 @@ var PlaceOrderSuccessView = ({
|
|
|
7678
7768
|
const resolveStepIconClassName = (tone) => {
|
|
7679
7769
|
return tone === "warning" || tone === "error" ? "text-agg-warning" : "text-agg-primary";
|
|
7680
7770
|
};
|
|
7681
|
-
return /* @__PURE__ */ (0,
|
|
7682
|
-
summary.eventTitle ? /* @__PURE__ */ (0,
|
|
7683
|
-
/* @__PURE__ */ (0,
|
|
7684
|
-
/* @__PURE__ */ (0,
|
|
7771
|
+
return /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(Card, { className: cn("group/agg-order-panel", getPlaceOrderContainerClassName(), className), children: /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "agg-order-success-body flex flex-col gap-6 p-5", children: [
|
|
7772
|
+
summary.eventTitle ? /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "agg-order-success-header flex flex-col gap-2", children: [
|
|
7773
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "agg-order-success-market flex items-center gap-3", children: [
|
|
7774
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7685
7775
|
RemoteImage,
|
|
7686
7776
|
{
|
|
7687
7777
|
src: (_h = summary.eventImage) != null ? _h : null,
|
|
@@ -7689,12 +7779,12 @@ var PlaceOrderSuccessView = ({
|
|
|
7689
7779
|
className: "h-12 w-12 shrink-0 overflow-hidden rounded-agg-lg object-cover"
|
|
7690
7780
|
}
|
|
7691
7781
|
),
|
|
7692
|
-
/* @__PURE__ */ (0,
|
|
7782
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "min-w-0 flex-1 text-agg-base font-agg-bold leading-agg-6 text-agg-foreground line-clamp-2", children: summary.eventTitle })
|
|
7693
7783
|
] }),
|
|
7694
|
-
summary.eventDateLabel ? /* @__PURE__ */ (0,
|
|
7784
|
+
summary.eventDateLabel ? /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "text-agg-base leading-agg-6 text-agg-foreground", children: summary.eventDateLabel }) : null
|
|
7695
7785
|
] }) : null,
|
|
7696
|
-
executionStepGroups.length > 0 ? /* @__PURE__ */ (0,
|
|
7697
|
-
/* @__PURE__ */ (0,
|
|
7786
|
+
executionStepGroups.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "agg-order-success-timeline flex flex-col gap-2", children: [
|
|
7787
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7698
7788
|
"div",
|
|
7699
7789
|
{
|
|
7700
7790
|
"aria-hidden": !isExecutionDetailsExpanded,
|
|
@@ -7707,12 +7797,12 @@ var PlaceOrderSuccessView = ({
|
|
|
7707
7797
|
"transition-[grid-template-rows,opacity] duration-200 ease-[cubic-bezier(0.22,1,0.36,1)]"
|
|
7708
7798
|
)
|
|
7709
7799
|
),
|
|
7710
|
-
children: /* @__PURE__ */ (0,
|
|
7800
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("div", { className: "min-h-0", children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("div", { className: "flex flex-col gap-4 pb-2", children: detailedStepGroups.map((group, groupIndex) => /* @__PURE__ */ (0, import_jsx_runtime119.jsx)("div", { className: "flex flex-col gap-2", children: group.map((step) => /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
|
|
7711
7801
|
"div",
|
|
7712
7802
|
{
|
|
7713
7803
|
className: "flex items-center gap-2 text-agg-sm leading-agg-5 text-agg-foreground",
|
|
7714
7804
|
children: [
|
|
7715
|
-
/* @__PURE__ */ (0,
|
|
7805
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7716
7806
|
Icon,
|
|
7717
7807
|
{
|
|
7718
7808
|
name: resolveStepIconName(step.tone),
|
|
@@ -7721,8 +7811,8 @@ var PlaceOrderSuccessView = ({
|
|
|
7721
7811
|
"aria-hidden": "true"
|
|
7722
7812
|
}
|
|
7723
7813
|
),
|
|
7724
|
-
/* @__PURE__ */ (0,
|
|
7725
|
-
step.venue ? /* @__PURE__ */ (0,
|
|
7814
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "min-w-0 flex-1", children: step.label }),
|
|
7815
|
+
step.venue ? /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7726
7816
|
VenueLogo,
|
|
7727
7817
|
{
|
|
7728
7818
|
venue: step.venue,
|
|
@@ -7736,7 +7826,7 @@ var PlaceOrderSuccessView = ({
|
|
|
7736
7826
|
)) }, `execution-group-${groupIndex}`)) }) })
|
|
7737
7827
|
}
|
|
7738
7828
|
),
|
|
7739
|
-
finalStep ? hasExecutionDetails ? /* @__PURE__ */ (0,
|
|
7829
|
+
finalStep ? hasExecutionDetails ? /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
|
|
7740
7830
|
"button",
|
|
7741
7831
|
{
|
|
7742
7832
|
type: "button",
|
|
@@ -7748,7 +7838,7 @@ var PlaceOrderSuccessView = ({
|
|
|
7748
7838
|
),
|
|
7749
7839
|
onClick: () => setIsExecutionDetailsExpanded((currentValue) => !currentValue),
|
|
7750
7840
|
children: [
|
|
7751
|
-
/* @__PURE__ */ (0,
|
|
7841
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7752
7842
|
Icon,
|
|
7753
7843
|
{
|
|
7754
7844
|
name: resolveStepIconName(finalStep.tone),
|
|
@@ -7757,8 +7847,8 @@ var PlaceOrderSuccessView = ({
|
|
|
7757
7847
|
"aria-hidden": "true"
|
|
7758
7848
|
}
|
|
7759
7849
|
),
|
|
7760
|
-
/* @__PURE__ */ (0,
|
|
7761
|
-
/* @__PURE__ */ (0,
|
|
7850
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "min-w-0 flex-1", children: finalStep.label }),
|
|
7851
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7762
7852
|
Icon,
|
|
7763
7853
|
{
|
|
7764
7854
|
name: isExecutionDetailsExpanded ? "chevron-up" : "chevron-down",
|
|
@@ -7769,8 +7859,8 @@ var PlaceOrderSuccessView = ({
|
|
|
7769
7859
|
)
|
|
7770
7860
|
]
|
|
7771
7861
|
}
|
|
7772
|
-
) : /* @__PURE__ */ (0,
|
|
7773
|
-
/* @__PURE__ */ (0,
|
|
7862
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "flex items-center gap-2 text-agg-sm leading-agg-5 text-agg-foreground", children: [
|
|
7863
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7774
7864
|
Icon,
|
|
7775
7865
|
{
|
|
7776
7866
|
name: resolveStepIconName(finalStep.tone),
|
|
@@ -7779,34 +7869,34 @@ var PlaceOrderSuccessView = ({
|
|
|
7779
7869
|
"aria-hidden": "true"
|
|
7780
7870
|
}
|
|
7781
7871
|
),
|
|
7782
|
-
/* @__PURE__ */ (0,
|
|
7872
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "min-w-0 flex-1", children: finalStep.label })
|
|
7783
7873
|
] }) : null
|
|
7784
7874
|
] }) : null,
|
|
7785
|
-
/* @__PURE__ */ (0,
|
|
7875
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsxs)(
|
|
7786
7876
|
"div",
|
|
7787
7877
|
{
|
|
7788
7878
|
className: cn(
|
|
7789
7879
|
"agg-order-success-pill flex min-h-12 w-full items-center justify-center gap-2 rounded-agg-full px-6 py-2.5 text-center text-agg-base font-agg-bold leading-agg-6 text-agg-on-primary bg-agg-success"
|
|
7790
7880
|
),
|
|
7791
7881
|
children: [
|
|
7792
|
-
/* @__PURE__ */ (0,
|
|
7793
|
-
/* @__PURE__ */ (0,
|
|
7882
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)(Icon, { name: "success-check", size: "small", className: "h-4 w-4 shrink-0 text-current" }),
|
|
7883
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("span", { children: resolvedActionLabel })
|
|
7794
7884
|
]
|
|
7795
7885
|
}
|
|
7796
7886
|
),
|
|
7797
|
-
/* @__PURE__ */ (0,
|
|
7798
|
-
/* @__PURE__ */ (0,
|
|
7799
|
-
/* @__PURE__ */ (0,
|
|
7887
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "agg-order-success-summary flex items-center justify-between gap-4", children: [
|
|
7888
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "text-agg-base font-agg-bold leading-agg-6 text-agg-foreground", children: tradingLabels.amount(resolvedTradeSide) }),
|
|
7889
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "text-right text-[30px] font-agg-bold leading-[36px] text-agg-foreground", children: resolvedAmountLabel })
|
|
7800
7890
|
] }),
|
|
7801
|
-
/* @__PURE__ */ (0,
|
|
7802
|
-
/* @__PURE__ */ (0,
|
|
7803
|
-
/* @__PURE__ */ (0,
|
|
7891
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "agg-order-success-summary flex items-center justify-between gap-4", children: [
|
|
7892
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "text-agg-base font-agg-bold leading-agg-6 text-agg-foreground", children: tradingLabels.toWin(resolvedTradeSide) }),
|
|
7893
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "text-right text-[30px] font-agg-bold leading-[36px] text-agg-success", children: resolvedToWinLabel })
|
|
7804
7894
|
] }),
|
|
7805
|
-
summary.potentialReturnLabel ? /* @__PURE__ */ (0,
|
|
7806
|
-
/* @__PURE__ */ (0,
|
|
7807
|
-
/* @__PURE__ */ (0,
|
|
7895
|
+
summary.potentialReturnLabel ? /* @__PURE__ */ (0, import_jsx_runtime119.jsxs)("div", { className: "flex w-full flex-col items-center justify-center gap-1 overflow-hidden rounded-agg-lg border border-agg-primary/50 bg-gradient-to-b from-agg-primary/8 to-agg-primary/15 p-3 text-center", children: [
|
|
7896
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "bg-gradient-to-r from-agg-primary to-agg-primary-hover bg-clip-text text-agg-lg font-agg-bold leading-[28px] text-transparent", children: potentialReturnLabel }),
|
|
7897
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("p", { className: "text-agg-xs leading-agg-4 text-agg-foreground", children: (_i = tradingLabels.withSmartRouting) != null ? _i : "with Smart Routing" })
|
|
7808
7898
|
] }) : null,
|
|
7809
|
-
/* @__PURE__ */ (0,
|
|
7899
|
+
/* @__PURE__ */ (0, import_jsx_runtime119.jsx)("div", { className: "agg-order-success-actions flex gap-3", children: /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
7810
7900
|
Button,
|
|
7811
7901
|
{
|
|
7812
7902
|
variant: "secondary",
|
|
@@ -7822,7 +7912,7 @@ var PlaceOrderSuccessView = ({
|
|
|
7822
7912
|
PlaceOrderSuccessView.displayName = "PlaceOrderSuccessView";
|
|
7823
7913
|
|
|
7824
7914
|
// src/trading/place-order/index.tsx
|
|
7825
|
-
var
|
|
7915
|
+
var import_jsx_runtime120 = require("react/jsx-runtime");
|
|
7826
7916
|
var resolveRefetchedQuoteData = (result) => {
|
|
7827
7917
|
if (!result || typeof result !== "object" || !("data" in result)) return null;
|
|
7828
7918
|
const data = result.data;
|
|
@@ -7841,7 +7931,7 @@ var LoadingGlyph = ({
|
|
|
7841
7931
|
className,
|
|
7842
7932
|
enableAnimations
|
|
7843
7933
|
}) => {
|
|
7844
|
-
return /* @__PURE__ */ (0,
|
|
7934
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
7845
7935
|
"span",
|
|
7846
7936
|
{
|
|
7847
7937
|
"aria-hidden": "true",
|
|
@@ -7959,8 +8049,8 @@ var PlaceOrderSlippageControl = ({
|
|
|
7959
8049
|
if (!isEditing) return;
|
|
7960
8050
|
handleCommitDraft(false);
|
|
7961
8051
|
};
|
|
7962
|
-
return /* @__PURE__ */ (0,
|
|
7963
|
-
/* @__PURE__ */ (0,
|
|
8052
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { ref: containerRef, className: "agg-slippage-control w-full", onBlur: handleContainerBlur, children: [
|
|
8053
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
7964
8054
|
"button",
|
|
7965
8055
|
{
|
|
7966
8056
|
ref: triggerRef,
|
|
@@ -7978,8 +8068,8 @@ var PlaceOrderSlippageControl = ({
|
|
|
7978
8068
|
),
|
|
7979
8069
|
onClick: handleToggleEditing,
|
|
7980
8070
|
children: [
|
|
7981
|
-
/* @__PURE__ */ (0,
|
|
7982
|
-
/* @__PURE__ */ (0,
|
|
8071
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "agg-slippage-label", children: collapsedLabel }),
|
|
8072
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
7983
8073
|
Icon,
|
|
7984
8074
|
{
|
|
7985
8075
|
name: isEditing ? "chevron-up" : "pencil",
|
|
@@ -7991,7 +8081,7 @@ var PlaceOrderSlippageControl = ({
|
|
|
7991
8081
|
]
|
|
7992
8082
|
}
|
|
7993
8083
|
),
|
|
7994
|
-
/* @__PURE__ */ (0,
|
|
8084
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
7995
8085
|
"div",
|
|
7996
8086
|
{
|
|
7997
8087
|
"aria-hidden": !isEditing,
|
|
@@ -8005,10 +8095,10 @@ var PlaceOrderSlippageControl = ({
|
|
|
8005
8095
|
"transition-[grid-template-rows,opacity,margin-top] duration-300 ease-[cubic-bezier(0.22,1,0.36,1)]"
|
|
8006
8096
|
)
|
|
8007
8097
|
),
|
|
8008
|
-
children: /* @__PURE__ */ (0,
|
|
8009
|
-
/* @__PURE__ */ (0,
|
|
8010
|
-
/* @__PURE__ */ (0,
|
|
8011
|
-
/* @__PURE__ */ (0,
|
|
8098
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "min-h-0", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-slippage-editor-body flex flex-col gap-2", children: [
|
|
8099
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-slippage-input-row flex h-9 overflow-hidden rounded-agg-sm border border-agg-separator", children: [
|
|
8100
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-slippage-input-group flex min-w-0 flex-1 items-center gap-2 bg-agg-secondary px-3", children: [
|
|
8101
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8012
8102
|
"input",
|
|
8013
8103
|
{
|
|
8014
8104
|
ref: inputRef,
|
|
@@ -8023,7 +8113,7 @@ var PlaceOrderSlippageControl = ({
|
|
|
8023
8113
|
onKeyDown: handleInputKeyDown
|
|
8024
8114
|
}
|
|
8025
8115
|
),
|
|
8026
|
-
/* @__PURE__ */ (0,
|
|
8116
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8027
8117
|
"button",
|
|
8028
8118
|
{
|
|
8029
8119
|
type: "button",
|
|
@@ -8041,8 +8131,8 @@ var PlaceOrderSlippageControl = ({
|
|
|
8041
8131
|
}
|
|
8042
8132
|
)
|
|
8043
8133
|
] }),
|
|
8044
|
-
/* @__PURE__ */ (0,
|
|
8045
|
-
/* @__PURE__ */ (0,
|
|
8134
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "h-full w-px bg-agg-separator", "aria-hidden": "true" }),
|
|
8135
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8046
8136
|
"div",
|
|
8047
8137
|
{
|
|
8048
8138
|
className: "agg-slippage-suffix flex w-9 items-center justify-center bg-agg-secondary-hover text-agg-sm leading-agg-5 text-agg-muted-foreground",
|
|
@@ -8051,7 +8141,7 @@ var PlaceOrderSlippageControl = ({
|
|
|
8051
8141
|
}
|
|
8052
8142
|
)
|
|
8053
8143
|
] }),
|
|
8054
|
-
/* @__PURE__ */ (0,
|
|
8144
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8055
8145
|
"div",
|
|
8056
8146
|
{
|
|
8057
8147
|
"aria-hidden": !resolvedWarningMessage,
|
|
@@ -8065,13 +8155,13 @@ var PlaceOrderSlippageControl = ({
|
|
|
8065
8155
|
"transition-[grid-template-rows,opacity] duration-200 ease-[cubic-bezier(0.22,1,0.36,1)]"
|
|
8066
8156
|
)
|
|
8067
8157
|
),
|
|
8068
|
-
children: /* @__PURE__ */ (0,
|
|
8158
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "min-h-0", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
8069
8159
|
"div",
|
|
8070
8160
|
{
|
|
8071
8161
|
id: warningId,
|
|
8072
8162
|
className: "agg-slippage-warning-message flex items-start gap-2 text-agg-sm leading-agg-5 text-agg-foreground",
|
|
8073
8163
|
children: [
|
|
8074
|
-
/* @__PURE__ */ (0,
|
|
8164
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8075
8165
|
Icon,
|
|
8076
8166
|
{
|
|
8077
8167
|
name: "warning-filled",
|
|
@@ -8080,7 +8170,7 @@ var PlaceOrderSlippageControl = ({
|
|
|
8080
8170
|
color: "currentColor"
|
|
8081
8171
|
}
|
|
8082
8172
|
),
|
|
8083
|
-
/* @__PURE__ */ (0,
|
|
8173
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { children: resolvedWarningMessage != null ? resolvedWarningMessage : "" })
|
|
8084
8174
|
]
|
|
8085
8175
|
}
|
|
8086
8176
|
) })
|
|
@@ -8100,9 +8190,9 @@ var renderCardHeader = ({
|
|
|
8100
8190
|
onClose
|
|
8101
8191
|
}) => {
|
|
8102
8192
|
if (!headerTitle) return null;
|
|
8103
|
-
return /* @__PURE__ */ (0,
|
|
8104
|
-
/* @__PURE__ */ (0,
|
|
8105
|
-
/* @__PURE__ */ (0,
|
|
8193
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: cn("agg-order-panel-header flex flex-col gap-2", className), children: [
|
|
8194
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-market-summary flex items-center gap-3", children: [
|
|
8195
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8106
8196
|
RemoteImage,
|
|
8107
8197
|
{
|
|
8108
8198
|
src: headerImage,
|
|
@@ -8110,19 +8200,19 @@ var renderCardHeader = ({
|
|
|
8110
8200
|
className: "agg-order-market-image h-12 w-12 shrink-0 overflow-hidden rounded-agg-lg object-cover"
|
|
8111
8201
|
}
|
|
8112
8202
|
),
|
|
8113
|
-
/* @__PURE__ */ (0,
|
|
8114
|
-
onClose ? /* @__PURE__ */ (0,
|
|
8203
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-order-market-title min-w-0 flex-1 text-agg-base font-agg-bold leading-agg-6 text-agg-foreground line-clamp-2", children: headerTitle }),
|
|
8204
|
+
onClose ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8115
8205
|
"button",
|
|
8116
8206
|
{
|
|
8117
8207
|
type: "button",
|
|
8118
8208
|
className: "agg-order-close -mr-1 -mt-1 hidden shrink-0 cursor-pointer items-center justify-center p-1 text-agg-muted-foreground hover:text-agg-foreground sm:flex",
|
|
8119
8209
|
"aria-label": "Close",
|
|
8120
8210
|
onClick: onClose,
|
|
8121
|
-
children: /* @__PURE__ */ (0,
|
|
8211
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(CloseIcon, { className: "h-5 w-5" })
|
|
8122
8212
|
}
|
|
8123
8213
|
) : null
|
|
8124
8214
|
] }),
|
|
8125
|
-
headerSubtitle ? /* @__PURE__ */ (0,
|
|
8215
|
+
headerSubtitle ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-order-market-subtitle text-agg-base leading-agg-6 text-agg-foreground", children: headerSubtitle }) : null
|
|
8126
8216
|
] });
|
|
8127
8217
|
};
|
|
8128
8218
|
var PlaceOrderResolvedView = ({
|
|
@@ -8135,7 +8225,7 @@ var PlaceOrderResolvedView = ({
|
|
|
8135
8225
|
const labels = (0, import_hooks29.useLabels)();
|
|
8136
8226
|
const tradingLabels = labels.trading;
|
|
8137
8227
|
const extendedTradingLabels = tradingLabels;
|
|
8138
|
-
return /* @__PURE__ */ (0,
|
|
8228
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8139
8229
|
Card,
|
|
8140
8230
|
{
|
|
8141
8231
|
className: cn(
|
|
@@ -8144,19 +8234,19 @@ var PlaceOrderResolvedView = ({
|
|
|
8144
8234
|
classNames == null ? void 0 : classNames.root,
|
|
8145
8235
|
className
|
|
8146
8236
|
),
|
|
8147
|
-
children: /* @__PURE__ */ (0,
|
|
8148
|
-
/* @__PURE__ */ (0,
|
|
8149
|
-
/* @__PURE__ */ (0,
|
|
8237
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: cn("agg-order-panel-body flex flex-col", classNames == null ? void 0 : classNames.body), children: [
|
|
8238
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex flex-col items-center gap-6 p-8", children: [
|
|
8239
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8150
8240
|
"div",
|
|
8151
8241
|
{
|
|
8152
8242
|
className: cn(
|
|
8153
8243
|
"flex h-15 w-15 items-center justify-center rounded-full",
|
|
8154
8244
|
"bg-agg-primary/15"
|
|
8155
8245
|
),
|
|
8156
|
-
children: /* @__PURE__ */ (0,
|
|
8246
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Icon, { name: "success-check", className: cn("h-6 w-6", "text-agg-primary") })
|
|
8157
8247
|
}
|
|
8158
8248
|
),
|
|
8159
|
-
/* @__PURE__ */ (0,
|
|
8249
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
8160
8250
|
"div",
|
|
8161
8251
|
{
|
|
8162
8252
|
className: cn(
|
|
@@ -8164,31 +8254,31 @@ var PlaceOrderResolvedView = ({
|
|
|
8164
8254
|
classNames == null ? void 0 : classNames.content
|
|
8165
8255
|
),
|
|
8166
8256
|
children: [
|
|
8167
|
-
tradingState.market ? /* @__PURE__ */ (0,
|
|
8168
|
-
tradingState.winningOutcome ? /* @__PURE__ */ (0,
|
|
8257
|
+
tradingState.market ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Typography, { variant: "body", children: tradingState.market.question }) : null,
|
|
8258
|
+
tradingState.winningOutcome ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Typography, { variant: "body-large-strong", children: tradingLabels.outcome(tradingState.winningOutcome.label) }) : null
|
|
8169
8259
|
]
|
|
8170
8260
|
}
|
|
8171
8261
|
)
|
|
8172
8262
|
] }),
|
|
8173
|
-
resolvedClaim ? /* @__PURE__ */ (0,
|
|
8174
|
-
/* @__PURE__ */ (0,
|
|
8175
|
-
/* @__PURE__ */ (0,
|
|
8176
|
-
/* @__PURE__ */ (0,
|
|
8177
|
-
/* @__PURE__ */ (0,
|
|
8178
|
-
resolvedClaim.resolutionDateLabel ? /* @__PURE__ */ (0,
|
|
8179
|
-
/* @__PURE__ */ (0,
|
|
8180
|
-
/* @__PURE__ */ (0,
|
|
8263
|
+
resolvedClaim ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_jsx_runtime120.Fragment, { children: [
|
|
8264
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "h-px w-full bg-agg-separator" }),
|
|
8265
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex w-full flex-col gap-5 p-6", children: [
|
|
8266
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Typography, { variant: "body-strong", className: "text-center", children: (_a = extendedTradingLabels.resolvedEarningsTitle) != null ? _a : "Your Earnings" }),
|
|
8267
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex flex-col gap-3 text-agg-sm leading-agg-5 text-agg-foreground", children: [
|
|
8268
|
+
resolvedClaim.resolutionDateLabel ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
|
|
8269
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { children: (_b = extendedTradingLabels.resolvedResolutionDateLabel) != null ? _b : "Resolution date" }),
|
|
8270
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "font-agg-bold", children: resolvedClaim.resolutionDateLabel })
|
|
8181
8271
|
] }) : null,
|
|
8182
|
-
/* @__PURE__ */ (0,
|
|
8183
|
-
/* @__PURE__ */ (0,
|
|
8184
|
-
/* @__PURE__ */ (0,
|
|
8272
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
|
|
8273
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { children: (_c = extendedTradingLabels.resolvedSharesLabel) != null ? _c : "Shares" }),
|
|
8274
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "font-agg-bold", children: resolvedClaim.sharesLabel })
|
|
8185
8275
|
] }),
|
|
8186
|
-
/* @__PURE__ */ (0,
|
|
8187
|
-
/* @__PURE__ */ (0,
|
|
8188
|
-
/* @__PURE__ */ (0,
|
|
8276
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex items-center justify-between gap-4", children: [
|
|
8277
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { children: (_d = extendedTradingLabels.resolvedTotalPayoutLabel) != null ? _d : "Total payout" }),
|
|
8278
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "font-agg-bold", children: resolvedClaim.totalPayoutLabel })
|
|
8189
8279
|
] })
|
|
8190
8280
|
] }),
|
|
8191
|
-
resolvedClaim.onClaim ? /* @__PURE__ */ (0,
|
|
8281
|
+
resolvedClaim.onClaim ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8192
8282
|
Button,
|
|
8193
8283
|
{
|
|
8194
8284
|
size: "large",
|
|
@@ -8209,18 +8299,18 @@ var renderRouteBreakdownRow = (row) => {
|
|
|
8209
8299
|
var _a, _b;
|
|
8210
8300
|
const venueLabel = getTradingVenueLabel(row.venue);
|
|
8211
8301
|
const rowKey = `${row.venue}-${row.label}-${row.priceLabel}-${(_a = row.resultLabel) != null ? _a : ""}`;
|
|
8212
|
-
return /* @__PURE__ */ (0,
|
|
8302
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
8213
8303
|
"div",
|
|
8214
8304
|
{
|
|
8215
8305
|
className: "agg-route-breakdown-row flex items-center justify-between gap-4 text-left",
|
|
8216
8306
|
children: [
|
|
8217
|
-
/* @__PURE__ */ (0,
|
|
8218
|
-
/* @__PURE__ */ (0,
|
|
8219
|
-
/* @__PURE__ */ (0,
|
|
8307
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-route-breakdown-market flex min-w-0 items-center gap-2", children: [
|
|
8308
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(VenueLogo, { venue: row.venue, className: "size-3!", ariaLabel: venueLabel }),
|
|
8309
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-route-breakdown-label truncate text-agg-sm leading-agg-5 text-agg-foreground", children: row.label })
|
|
8220
8310
|
] }),
|
|
8221
|
-
/* @__PURE__ */ (0,
|
|
8222
|
-
/* @__PURE__ */ (0,
|
|
8223
|
-
/* @__PURE__ */ (0,
|
|
8311
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-route-breakdown-value flex shrink-0 items-center gap-2 text-agg-sm leading-agg-5", children: [
|
|
8312
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "text-agg-muted-foreground", children: row.priceLabel }),
|
|
8313
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "text-agg-foreground", children: (_b = row.resultLabel) != null ? _b : "" })
|
|
8224
8314
|
] })
|
|
8225
8315
|
]
|
|
8226
8316
|
},
|
|
@@ -8238,7 +8328,7 @@ var renderRouteCard = ({
|
|
|
8238
8328
|
var _a, _b;
|
|
8239
8329
|
const showSplitDetails = isSelected && isExpanded && card.kind === "split" && !!((_a = card.rows) == null ? void 0 : _a.length);
|
|
8240
8330
|
const ariaLabel = [card.label, card.hint, card.value].filter(Boolean).join(" ");
|
|
8241
|
-
return /* @__PURE__ */ (0,
|
|
8331
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8242
8332
|
"button",
|
|
8243
8333
|
{
|
|
8244
8334
|
type: "button",
|
|
@@ -8257,10 +8347,10 @@ var renderRouteCard = ({
|
|
|
8257
8347
|
isSelected && !card.isUnavailable ? "border border-agg-trade-highlight-border bg-linear-to-b from-agg-trade-highlight-surface-from to-agg-trade-highlight-surface-to" : "border-transparent bg-agg-secondary-hover"
|
|
8258
8348
|
),
|
|
8259
8349
|
onClick: () => onSelect(card.id),
|
|
8260
|
-
children: /* @__PURE__ */ (0,
|
|
8261
|
-
/* @__PURE__ */ (0,
|
|
8262
|
-
/* @__PURE__ */ (0,
|
|
8263
|
-
card.kind === "split" ? /* @__PURE__ */ (0,
|
|
8350
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-route-card-content relative z-10 flex flex-col gap-3", children: [
|
|
8351
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-route-card-header flex items-center justify-between gap-4", children: [
|
|
8352
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-route-card-meta flex min-w-0 gap-3 items-center", children: [
|
|
8353
|
+
card.kind === "split" ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8264
8354
|
Icon,
|
|
8265
8355
|
{
|
|
8266
8356
|
name: "sparkles-filled",
|
|
@@ -8271,7 +8361,7 @@ var renderRouteCard = ({
|
|
|
8271
8361
|
),
|
|
8272
8362
|
"aria-hidden": "true"
|
|
8273
8363
|
}
|
|
8274
|
-
) : card.venue ? /* @__PURE__ */ (0,
|
|
8364
|
+
) : card.venue ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8275
8365
|
VenueLogo,
|
|
8276
8366
|
{
|
|
8277
8367
|
venue: card.venue,
|
|
@@ -8279,10 +8369,10 @@ var renderRouteCard = ({
|
|
|
8279
8369
|
ariaLabel: getTradingVenueLabel(card.venue)
|
|
8280
8370
|
}
|
|
8281
8371
|
) : null,
|
|
8282
|
-
/* @__PURE__ */ (0,
|
|
8283
|
-
/* @__PURE__ */ (0,
|
|
8284
|
-
/* @__PURE__ */ (0,
|
|
8285
|
-
card.isUnavailable ? /* @__PURE__ */ (0,
|
|
8372
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex flex-col gap-1 min-w-0", children: [
|
|
8373
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex items-center gap-1.5", children: [
|
|
8374
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-route-card-title truncate text-agg-sm leading-agg-5 text-agg-foreground", children: card.label }),
|
|
8375
|
+
card.isUnavailable ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8286
8376
|
Icon,
|
|
8287
8377
|
{
|
|
8288
8378
|
name: "lock",
|
|
@@ -8290,7 +8380,7 @@ var renderRouteCard = ({
|
|
|
8290
8380
|
className: "shrink-0 text-agg-muted-foreground",
|
|
8291
8381
|
"aria-hidden": "true"
|
|
8292
8382
|
}
|
|
8293
|
-
) : card.kind === "split" && isSelected ? /* @__PURE__ */ (0,
|
|
8383
|
+
) : card.kind === "split" && isSelected ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8294
8384
|
Icon,
|
|
8295
8385
|
{
|
|
8296
8386
|
name: showSplitDetails ? "chevron-up" : "chevron-down",
|
|
@@ -8300,10 +8390,10 @@ var renderRouteCard = ({
|
|
|
8300
8390
|
}
|
|
8301
8391
|
) : null
|
|
8302
8392
|
] }),
|
|
8303
|
-
card.hint ? /* @__PURE__ */ (0,
|
|
8393
|
+
card.hint ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-route-card-hint text-agg-xs leading-agg-4 text-agg-muted-foreground", children: card.hint }) : null
|
|
8304
8394
|
] })
|
|
8305
8395
|
] }),
|
|
8306
|
-
/* @__PURE__ */ (0,
|
|
8396
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8307
8397
|
"p",
|
|
8308
8398
|
{
|
|
8309
8399
|
className: cn(
|
|
@@ -8315,9 +8405,9 @@ var renderRouteCard = ({
|
|
|
8315
8405
|
}
|
|
8316
8406
|
)
|
|
8317
8407
|
] }),
|
|
8318
|
-
showSplitDetails ? /* @__PURE__ */ (0,
|
|
8319
|
-
/* @__PURE__ */ (0,
|
|
8320
|
-
/* @__PURE__ */ (0,
|
|
8408
|
+
showSplitDetails ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_jsx_runtime120.Fragment, { children: [
|
|
8409
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-route-card-description text-agg-xs leading-agg-4 text-agg-foreground", children: tradingLabels.splitOrderDescription }),
|
|
8410
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "agg-route-breakdown flex flex-col gap-3", children: (_b = card.rows) == null ? void 0 : _b.map((row) => renderRouteBreakdownRow(row)) })
|
|
8321
8411
|
] }) : null
|
|
8322
8412
|
] })
|
|
8323
8413
|
}
|
|
@@ -8340,7 +8430,7 @@ var renderSubmissionSurface = ({
|
|
|
8340
8430
|
executionVenue: progressState.executionVenue,
|
|
8341
8431
|
labels: tradingLabels
|
|
8342
8432
|
});
|
|
8343
|
-
return /* @__PURE__ */ (0,
|
|
8433
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8344
8434
|
Card,
|
|
8345
8435
|
{
|
|
8346
8436
|
className: cn(
|
|
@@ -8349,31 +8439,31 @@ var renderSubmissionSurface = ({
|
|
|
8349
8439
|
classNames == null ? void 0 : classNames.root,
|
|
8350
8440
|
className
|
|
8351
8441
|
),
|
|
8352
|
-
children: /* @__PURE__ */ (0,
|
|
8442
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: cn("agg-order-submission-body flex flex-col gap-6 p-5", classNames == null ? void 0 : classNames.body), children: [
|
|
8353
8443
|
renderCardHeader({
|
|
8354
8444
|
className: classNames == null ? void 0 : classNames.header,
|
|
8355
8445
|
headerSubtitle,
|
|
8356
8446
|
headerImage,
|
|
8357
8447
|
headerTitle
|
|
8358
8448
|
}),
|
|
8359
|
-
/* @__PURE__ */ (0,
|
|
8360
|
-
/* @__PURE__ */ (0,
|
|
8361
|
-
/* @__PURE__ */ (0,
|
|
8362
|
-
/* @__PURE__ */ (0,
|
|
8449
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: cn("agg-order-panel-content flex flex-col gap-6", classNames == null ? void 0 : classNames.content), children: [
|
|
8450
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-submission-status flex h-12 w-full items-center justify-center gap-3 rounded-agg-full bg-agg-primary-hover px-8 text-agg-base font-agg-bold leading-agg-6 text-agg-on-primary", children: [
|
|
8451
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(LoadingGlyph, { enableAnimations, className: "h-4 w-4 text-current" }),
|
|
8452
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { children: actionLabel })
|
|
8363
8453
|
] }),
|
|
8364
|
-
/* @__PURE__ */ (0,
|
|
8454
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8365
8455
|
"div",
|
|
8366
8456
|
{
|
|
8367
8457
|
className: "agg-order-submission-steps agg-order-submission-group flex flex-col gap-2",
|
|
8368
8458
|
"data-testid": "agg-order-submission-steps",
|
|
8369
8459
|
children: displayRows.map((step) => {
|
|
8370
|
-
return /* @__PURE__ */ (0,
|
|
8460
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
8371
8461
|
"div",
|
|
8372
8462
|
{
|
|
8373
8463
|
className: "agg-order-submission-step flex items-center gap-2 text-agg-sm leading-agg-5 text-agg-foreground",
|
|
8374
8464
|
"data-status": step.status,
|
|
8375
8465
|
children: [
|
|
8376
|
-
step.status === "complete" ? /* @__PURE__ */ (0,
|
|
8466
|
+
step.status === "complete" ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8377
8467
|
Icon,
|
|
8378
8468
|
{
|
|
8379
8469
|
name: "check-circle",
|
|
@@ -8381,15 +8471,15 @@ var renderSubmissionSurface = ({
|
|
|
8381
8471
|
className: "h-3 w-3 shrink-0 text-agg-primary",
|
|
8382
8472
|
"aria-hidden": "true"
|
|
8383
8473
|
}
|
|
8384
|
-
) : /* @__PURE__ */ (0,
|
|
8474
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8385
8475
|
LoadingGlyph,
|
|
8386
8476
|
{
|
|
8387
8477
|
enableAnimations,
|
|
8388
8478
|
className: "h-3 w-3 shrink-0 text-agg-primary"
|
|
8389
8479
|
}
|
|
8390
8480
|
),
|
|
8391
|
-
/* @__PURE__ */ (0,
|
|
8392
|
-
step.venue ? /* @__PURE__ */ (0,
|
|
8481
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "min-w-0 flex-1", children: step.label }),
|
|
8482
|
+
step.venue ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8393
8483
|
VenueLogo,
|
|
8394
8484
|
{
|
|
8395
8485
|
venue: step.venue,
|
|
@@ -8410,7 +8500,7 @@ var renderSubmissionSurface = ({
|
|
|
8410
8500
|
}
|
|
8411
8501
|
);
|
|
8412
8502
|
};
|
|
8413
|
-
var InitiateKycButton = ({ label: label2, onOpen }) => /* @__PURE__ */ (0,
|
|
8503
|
+
var InitiateKycButton = ({ label: label2, onOpen }) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8414
8504
|
Button,
|
|
8415
8505
|
{
|
|
8416
8506
|
size: "large",
|
|
@@ -8427,35 +8517,35 @@ var KycVerifyModal = ({
|
|
|
8427
8517
|
isInitiating,
|
|
8428
8518
|
labels
|
|
8429
8519
|
}) => {
|
|
8430
|
-
return /* @__PURE__ */ (0,
|
|
8520
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8431
8521
|
Modal,
|
|
8432
8522
|
{
|
|
8433
8523
|
open,
|
|
8434
8524
|
onOpenChange: (next) => {
|
|
8435
8525
|
onOpenChange(next);
|
|
8436
8526
|
},
|
|
8437
|
-
children: /* @__PURE__ */ (0,
|
|
8438
|
-
/* @__PURE__ */ (0,
|
|
8439
|
-
/* @__PURE__ */ (0,
|
|
8440
|
-
/* @__PURE__ */ (0,
|
|
8441
|
-
/* @__PURE__ */ (0,
|
|
8527
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(Modal.Container, { maxWidth: "480px", "aria-label": labels.title, children: [
|
|
8528
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Dialog2.Title, { className: "sr-only", children: labels.title }),
|
|
8529
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Dialog2.Description, { className: "sr-only", children: labels.description }),
|
|
8530
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(Modal.Body, { classNames: { root: "sm:px-10 sm:py-12" }, children: [
|
|
8531
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8442
8532
|
"button",
|
|
8443
8533
|
{
|
|
8444
8534
|
type: "button",
|
|
8445
8535
|
className: "absolute right-8 top-7 flex items-center justify-center text-agg-foreground transition-colors hover:text-agg-foreground/80",
|
|
8446
8536
|
onClick: () => onOpenChange(false),
|
|
8447
8537
|
"aria-label": "Close",
|
|
8448
|
-
children: /* @__PURE__ */ (0,
|
|
8538
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(CloseIcon, { className: "h-6 w-6" })
|
|
8449
8539
|
}
|
|
8450
8540
|
),
|
|
8451
|
-
/* @__PURE__ */ (0,
|
|
8452
|
-
/* @__PURE__ */ (0,
|
|
8453
|
-
/* @__PURE__ */ (0,
|
|
8454
|
-
/* @__PURE__ */ (0,
|
|
8455
|
-
/* @__PURE__ */ (0,
|
|
8541
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex flex-col items-center gap-8 text-center", children: [
|
|
8542
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "flex h-[60px] w-[60px] items-center justify-center text-agg-muted-foreground", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(UserTrustIcon, { className: "h-[60px] w-[60px]" }) }),
|
|
8543
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex flex-col items-center gap-3", children: [
|
|
8544
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("h3", { className: "text-agg-2xl leading-agg-8 font-agg-bold text-agg-foreground", children: labels.title }),
|
|
8545
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-type-body text-agg-foreground", children: labels.description })
|
|
8456
8546
|
] }),
|
|
8457
|
-
/* @__PURE__ */ (0,
|
|
8458
|
-
/* @__PURE__ */ (0,
|
|
8547
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex w-full flex-col items-center gap-5", children: [
|
|
8548
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8459
8549
|
Button,
|
|
8460
8550
|
{
|
|
8461
8551
|
size: "large",
|
|
@@ -8466,7 +8556,7 @@ var KycVerifyModal = ({
|
|
|
8466
8556
|
children: labels.startVerification
|
|
8467
8557
|
}
|
|
8468
8558
|
),
|
|
8469
|
-
/* @__PURE__ */ (0,
|
|
8559
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8470
8560
|
"button",
|
|
8471
8561
|
{
|
|
8472
8562
|
type: "button",
|
|
@@ -8486,27 +8576,27 @@ var KycSuccessModal = ({
|
|
|
8486
8576
|
open,
|
|
8487
8577
|
onOpenChange,
|
|
8488
8578
|
labels
|
|
8489
|
-
}) => /* @__PURE__ */ (0,
|
|
8490
|
-
/* @__PURE__ */ (0,
|
|
8491
|
-
/* @__PURE__ */ (0,
|
|
8492
|
-
/* @__PURE__ */ (0,
|
|
8493
|
-
/* @__PURE__ */ (0,
|
|
8579
|
+
}) => /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Modal, { open, onOpenChange, children: /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(Modal.Container, { maxWidth: "480px", "aria-label": labels.title, children: [
|
|
8580
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Dialog2.Title, { className: "sr-only", children: labels.title }),
|
|
8581
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Dialog2.Description, { className: "sr-only", children: labels.description }),
|
|
8582
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(Modal.Body, { classNames: { root: "px-10 py-12" }, children: [
|
|
8583
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8494
8584
|
"button",
|
|
8495
8585
|
{
|
|
8496
8586
|
type: "button",
|
|
8497
8587
|
className: "absolute right-8 top-7 flex items-center justify-center text-agg-foreground transition-colors hover:text-agg-foreground/80",
|
|
8498
8588
|
onClick: () => onOpenChange(false),
|
|
8499
8589
|
"aria-label": "Close",
|
|
8500
|
-
children: /* @__PURE__ */ (0,
|
|
8590
|
+
children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(CloseIcon, { className: "h-6 w-6" })
|
|
8501
8591
|
}
|
|
8502
8592
|
),
|
|
8503
|
-
/* @__PURE__ */ (0,
|
|
8504
|
-
/* @__PURE__ */ (0,
|
|
8505
|
-
/* @__PURE__ */ (0,
|
|
8506
|
-
/* @__PURE__ */ (0,
|
|
8507
|
-
/* @__PURE__ */ (0,
|
|
8593
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex flex-col items-center gap-8 text-center", children: [
|
|
8594
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "flex h-[60px] w-[60px] items-center justify-center rounded-full bg-agg-success/15", children: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(SuccessCheckIcon, { className: "h-6 w-6 text-agg-success" }) }),
|
|
8595
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex flex-col items-center gap-3", children: [
|
|
8596
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("h3", { className: "text-agg-2xl leading-agg-8 font-agg-bold text-agg-foreground", children: labels.title }),
|
|
8597
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-type-body text-agg-foreground", children: labels.description })
|
|
8508
8598
|
] }),
|
|
8509
|
-
/* @__PURE__ */ (0,
|
|
8599
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
8510
8600
|
Button,
|
|
8511
8601
|
{
|
|
8512
8602
|
variant: "secondary",
|
|
@@ -8523,6 +8613,7 @@ var PlaceOrder = ({
|
|
|
8523
8613
|
className,
|
|
8524
8614
|
classNames,
|
|
8525
8615
|
eventTradingState,
|
|
8616
|
+
executionMode = "live",
|
|
8526
8617
|
isLoading = false,
|
|
8527
8618
|
isPrimaryActionDisabled = false,
|
|
8528
8619
|
isPrimaryActionLoading = false,
|
|
@@ -8531,7 +8622,6 @@ var PlaceOrder = ({
|
|
|
8531
8622
|
onClose,
|
|
8532
8623
|
onOutcomeChange,
|
|
8533
8624
|
onPrimaryAction,
|
|
8534
|
-
onSlippageChange,
|
|
8535
8625
|
onTabChange,
|
|
8536
8626
|
onSuccess,
|
|
8537
8627
|
onError,
|
|
@@ -8608,7 +8698,27 @@ var PlaceOrder = ({
|
|
|
8608
8698
|
);
|
|
8609
8699
|
const isResolvedOutcomeCtaLocked = resolvedEventTradingState.kind === "resolved" || resolvedTradingState.kind === "resolved";
|
|
8610
8700
|
const { isAuthenticated, user } = (0, import_hooks29.useAggAuthContext)();
|
|
8611
|
-
const
|
|
8701
|
+
const isPaperMode = executionMode === "paper";
|
|
8702
|
+
const liveBalanceState = (0, import_hooks29.useAggBalanceState)();
|
|
8703
|
+
const paperBalancesQuery = (0, import_hooks29.useManagedBalances)({
|
|
8704
|
+
enabled: Boolean(isAuthenticated && isPaperMode),
|
|
8705
|
+
mode: "paper"
|
|
8706
|
+
});
|
|
8707
|
+
const paperTotalBalance = (0, import_react9.useMemo)(() => {
|
|
8708
|
+
var _a2, _b2;
|
|
8709
|
+
const cash = (_b2 = (_a2 = paperBalancesQuery.balances) == null ? void 0 : _a2.cash) != null ? _b2 : [];
|
|
8710
|
+
return cash.reduce((sum, token) => {
|
|
8711
|
+
if (!token.tokenSymbol.toUpperCase().includes("USD")) return sum;
|
|
8712
|
+
return sum + token.chains.reduce((chainSum, chain) => {
|
|
8713
|
+
var _a3;
|
|
8714
|
+
const raw = Number(chain.balanceRaw);
|
|
8715
|
+
if (!Number.isFinite(raw)) return chainSum;
|
|
8716
|
+
return chainSum + raw / __pow(10, (_a3 = chain.decimals) != null ? _a3 : token.decimals);
|
|
8717
|
+
}, 0);
|
|
8718
|
+
}, 0);
|
|
8719
|
+
}, [paperBalancesQuery.balances]);
|
|
8720
|
+
const totalBalance = isPaperMode ? paperTotalBalance : liveBalanceState.totalBalance;
|
|
8721
|
+
const isBalanceLoading = isPaperMode ? paperBalancesQuery.isLoading : liveBalanceState.isLoading;
|
|
8612
8722
|
const executeManaged = (0, import_hooks29.useExecuteManaged)();
|
|
8613
8723
|
const aggClient = (0, import_hooks29.useAggClient)();
|
|
8614
8724
|
const queryClient = (0, import_hooks29.useQueryClient)();
|
|
@@ -8642,7 +8752,7 @@ var PlaceOrder = ({
|
|
|
8642
8752
|
const [internalTab, setInternalTab] = (0, import_react9.useState)("buy");
|
|
8643
8753
|
const [internalAmount, setInternalAmount] = (0, import_react9.useState)(PLACE_ORDER_DEFAULT_AMOUNT);
|
|
8644
8754
|
const [sellFilledForOutcomeId, setSellFilledForOutcomeId] = (0, import_react9.useState)(null);
|
|
8645
|
-
const [internalSlippage
|
|
8755
|
+
const [internalSlippage] = (0, import_react9.useState)(DEFAULT_SLIPPAGE_VALUE);
|
|
8646
8756
|
const [isRoutesExpanded, setIsRoutesExpanded] = (0, import_react9.useState)(false);
|
|
8647
8757
|
const [selectedRouteCardId, setSelectedRouteCardId] = (0, import_react9.useState)(null);
|
|
8648
8758
|
const [isSplitDetailOpen, setIsSplitDetailOpen] = (0, import_react9.useState)(false);
|
|
@@ -8677,7 +8787,8 @@ var PlaceOrder = ({
|
|
|
8677
8787
|
isLoading: isExecutionPositionsLoading,
|
|
8678
8788
|
isFetching: isExecutionPositionsFetching
|
|
8679
8789
|
} = (0, import_hooks29.useExecutionPositions)({
|
|
8680
|
-
enabled: Boolean(isAuthenticated && isSell)
|
|
8790
|
+
enabled: Boolean(isAuthenticated && isSell),
|
|
8791
|
+
mode: isPaperMode ? "paper" : void 0
|
|
8681
8792
|
});
|
|
8682
8793
|
const smartRoute = (0, import_hooks29.useSmartRoute)({
|
|
8683
8794
|
venueMarketOutcomeId: scopedSelectedOutcomeId,
|
|
@@ -8690,6 +8801,7 @@ var PlaceOrder = ({
|
|
|
8690
8801
|
slipCapBps: 1e6,
|
|
8691
8802
|
compareVenues: true,
|
|
8692
8803
|
tradeSide: isSell ? "sell" : "buy",
|
|
8804
|
+
mode: isPaperMode ? "paper" : void 0,
|
|
8693
8805
|
enabled: debouncedAmount > 0 && orderEligibility.canPlaceOrder
|
|
8694
8806
|
});
|
|
8695
8807
|
const currentSellableShares = (0, import_react9.useMemo)(() => {
|
|
@@ -8829,6 +8941,7 @@ var PlaceOrder = ({
|
|
|
8829
8941
|
);
|
|
8830
8942
|
const executionProgress = (0, import_hooks29.useExecutionProgress)({
|
|
8831
8943
|
orderIds: (_q = submissionProgressState == null ? void 0 : submissionProgressState.orderIds) != null ? _q : null,
|
|
8944
|
+
mode: isPaperMode ? "paper" : void 0,
|
|
8832
8945
|
enabled: ((submissionProgressState == null ? void 0 : submissionProgressState.phase) === "submitting" || (submissionProgressState == null ? void 0 : submissionProgressState.phase) === "executing") && !!((_r = submissionProgressState == null ? void 0 : submissionProgressState.orderIds) == null ? void 0 : _r.length)
|
|
8833
8946
|
});
|
|
8834
8947
|
const selectedOutcomeLabel = (_u = (_t = (_s = outcomes.find((outcome) => outcome.id === scopedSelectedOutcomeId)) == null ? void 0 : _s.label) != null ? _t : scopedSelectedOutcome == null ? void 0 : scopedSelectedOutcome.label) != null ? _u : "";
|
|
@@ -9099,7 +9212,12 @@ var PlaceOrder = ({
|
|
|
9099
9212
|
const hasEnteredAmount = internalAmount > 0;
|
|
9100
9213
|
const isQuoteLoading = hasEnteredAmount && (smartRoute.isFetching || smartRoute.isLoading);
|
|
9101
9214
|
const isInsufficientBalance = !isSell && isAuthenticated && hasEnteredAmount && !isBalanceLoading && internalAmount > totalBalance;
|
|
9102
|
-
const
|
|
9215
|
+
const isQuoteInsufficientBalance = (activeQuoteData == null ? void 0 : activeQuoteData.status) === "insufficient_balance";
|
|
9216
|
+
const shouldShowInsufficientBalanceAlert = isInsufficientBalance || isQuoteInsufficientBalance;
|
|
9217
|
+
const isBelowClientMinimum = !isSell && hasEnteredAmount && internalAmount < MIN_BUY_ORDER_AMOUNT;
|
|
9218
|
+
const isBelowVenueMinimumFromQuote = isQuoteBelowVenueMinimum(activeQuoteData);
|
|
9219
|
+
const isBelowMinimum = isBelowClientMinimum || isBelowVenueMinimumFromQuote;
|
|
9220
|
+
const belowMinimumMessage = isBelowClientMinimum ? tradingLabels.minimumOrderAmount(MIN_BUY_ORDER_AMOUNT) : tradingLabels.minOrderSizeViolated;
|
|
9103
9221
|
const quoteStatus = (0, import_react9.useMemo)(() => {
|
|
9104
9222
|
if (!orderEligibility.canPlaceOrder) return void 0;
|
|
9105
9223
|
return resolvePlaceOrderQuoteStatus({
|
|
@@ -9194,6 +9312,7 @@ var PlaceOrder = ({
|
|
|
9194
9312
|
if (!activeFeeBreakdown) return [];
|
|
9195
9313
|
return [
|
|
9196
9314
|
{
|
|
9315
|
+
kind: "amount",
|
|
9197
9316
|
label: tradingLabels.feeBreakdownVenueFees,
|
|
9198
9317
|
value: formatUsd(activeFeeBreakdown.venueFees, {
|
|
9199
9318
|
minimumFractionDigits: 2,
|
|
@@ -9201,25 +9320,25 @@ var PlaceOrder = ({
|
|
|
9201
9320
|
})
|
|
9202
9321
|
},
|
|
9203
9322
|
{
|
|
9204
|
-
|
|
9205
|
-
|
|
9323
|
+
kind: "amount",
|
|
9324
|
+
label: tradingLabels.feeBreakdownExecutionGas,
|
|
9325
|
+
value: formatUsd(activeFeeBreakdown.executionGas, {
|
|
9206
9326
|
minimumFractionDigits: 2,
|
|
9207
9327
|
maximumFractionDigits: 2
|
|
9208
9328
|
})
|
|
9209
9329
|
},
|
|
9210
9330
|
{
|
|
9211
|
-
|
|
9212
|
-
|
|
9331
|
+
kind: "amount",
|
|
9332
|
+
label: tradingLabels.feeBreakdownBridgeFees,
|
|
9333
|
+
value: formatUsd(activeFeeBreakdown.bridgeFees, {
|
|
9213
9334
|
minimumFractionDigits: 2,
|
|
9214
9335
|
maximumFractionDigits: 2
|
|
9215
9336
|
})
|
|
9216
9337
|
},
|
|
9217
9338
|
{
|
|
9218
|
-
|
|
9219
|
-
|
|
9220
|
-
|
|
9221
|
-
{ minimumFractionDigits: 2, maximumFractionDigits: 2 }
|
|
9222
|
-
)
|
|
9339
|
+
kind: "badge",
|
|
9340
|
+
label: tradingLabels.feeBreakdownAggMarket,
|
|
9341
|
+
badgeLabel: tradingLabels.feeBreakdownPlatformFeeBadge
|
|
9223
9342
|
}
|
|
9224
9343
|
];
|
|
9225
9344
|
}, [activeFeeBreakdown, tradingLabels]);
|
|
@@ -9240,8 +9359,8 @@ var PlaceOrder = ({
|
|
|
9240
9359
|
}, [selectedRouteCard, geoBlockedVenuesFromWarnings]);
|
|
9241
9360
|
const shouldShowGeoBlockBanner = isTradingBlocked || selectedRouteGeoBlocked || isPrimaryVenueGeoBlocked;
|
|
9242
9361
|
const actionLabel = `${internalTab === "buy" ? tradingLabels.buy : tradingLabels.sell} ${selectedOutcomeLabel}`.trim();
|
|
9243
|
-
const isActionDisabled = isPrimaryActionDisabled || !orderEligibility.canPlaceOrder || isActionLoading || !hasEnteredAmount || !scopedSelectedMarket || isInsufficientBalance || isBelowMinimum || isQuoteLoading || !selectedRouteCard || !selectedRouteCard.quoteData.quoteId || selectedRouteGeoBlocked || !isAuthenticated || quoteStatus !== void 0;
|
|
9244
|
-
const shouldShowSmartRouting = orderEligibility.canPlaceOrder && hasEnteredAmount && (orderedRouteCards.length > 0 || smartRoute.isFetching);
|
|
9362
|
+
const isActionDisabled = isPrimaryActionDisabled || !orderEligibility.canPlaceOrder || isActionLoading || !hasEnteredAmount || !scopedSelectedMarket || isInsufficientBalance || isQuoteInsufficientBalance || isBelowMinimum || isQuoteLoading || !selectedRouteCard || !selectedRouteCard.quoteData.quoteId || selectedRouteGeoBlocked || !isAuthenticated || quoteStatus !== void 0;
|
|
9363
|
+
const shouldShowSmartRouting = orderEligibility.canPlaceOrder && hasEnteredAmount && !isBelowMinimum && (orderedRouteCards.length > 0 || smartRoute.isFetching);
|
|
9245
9364
|
const shouldShowRouteToggle = !isQuoteLoading && orderedRouteCards.length > PLACE_ORDER_ROUTE_COLLAPSED_CARD_COUNT;
|
|
9246
9365
|
const handleReturnToOrderForm = (0, import_react9.useCallback)(() => {
|
|
9247
9366
|
const submittedSelection = submittedSelectionRef.current;
|
|
@@ -9296,16 +9415,19 @@ var PlaceOrder = ({
|
|
|
9296
9415
|
});
|
|
9297
9416
|
executionDebugAttemptIdRef.current = (_c2 = debugAttempt == null ? void 0 : debugAttempt.attemptId) != null ? _c2 : null;
|
|
9298
9417
|
if (onPrimaryAction) {
|
|
9418
|
+
const primaryActionPayload = isPaperMode ? { quoteId, mode: "paper" } : { quoteId };
|
|
9299
9419
|
debugStore == null ? void 0 : debugStore.appendEvent(debugAttempt.attemptId, {
|
|
9300
9420
|
kind: "execute_request",
|
|
9301
9421
|
label: "delegated_to_partner",
|
|
9302
|
-
data:
|
|
9422
|
+
data: primaryActionPayload
|
|
9303
9423
|
});
|
|
9304
|
-
onPrimaryAction(
|
|
9424
|
+
onPrimaryAction(primaryActionPayload);
|
|
9305
9425
|
return;
|
|
9306
9426
|
}
|
|
9307
9427
|
try {
|
|
9308
|
-
const response = yield executeManaged.mutateAsync(
|
|
9428
|
+
const response = yield executeManaged.mutateAsync(
|
|
9429
|
+
isPaperMode ? { quoteId, mode: "paper" } : { quoteId }
|
|
9430
|
+
);
|
|
9309
9431
|
if (debugAttempt) {
|
|
9310
9432
|
debugStore == null ? void 0 : debugStore.appendEvent(debugAttempt.attemptId, {
|
|
9311
9433
|
kind: "execute_response",
|
|
@@ -9350,6 +9472,7 @@ var PlaceOrder = ({
|
|
|
9350
9472
|
internalAmount,
|
|
9351
9473
|
internalSlippage,
|
|
9352
9474
|
isSell,
|
|
9475
|
+
isPaperMode,
|
|
9353
9476
|
onPrimaryAction,
|
|
9354
9477
|
scopedSelectedEvent == null ? void 0 : scopedSelectedEvent.id,
|
|
9355
9478
|
scopedSelectedMarket == null ? void 0 : scopedSelectedMarket.id,
|
|
@@ -9427,7 +9550,8 @@ var PlaceOrder = ({
|
|
|
9427
9550
|
chainBalances: chainBalancesOverride,
|
|
9428
9551
|
slipCapBps: 1e6,
|
|
9429
9552
|
compareVenues: true,
|
|
9430
|
-
tradeSide: isSell ? "sell" : "buy"
|
|
9553
|
+
tradeSide: isSell ? "sell" : "buy",
|
|
9554
|
+
mode: isPaperMode ? "paper" : void 0
|
|
9431
9555
|
});
|
|
9432
9556
|
} else {
|
|
9433
9557
|
const refetchedQuoteResult = yield smartRoute.refetch();
|
|
@@ -9442,8 +9566,10 @@ var PlaceOrder = ({
|
|
|
9442
9566
|
quoteData: refetchedQuoteData,
|
|
9443
9567
|
tradeSide: internalTab
|
|
9444
9568
|
});
|
|
9569
|
+
const originalSelectedCard = selectedRouteCardId ? orderedRouteCards.find((card) => card.id === selectedRouteCardId) : void 0;
|
|
9445
9570
|
const refreshedSelectedCard = selectedRouteCardId ? refreshedCards.find((card) => card.id === selectedRouteCardId) : void 0;
|
|
9446
|
-
|
|
9571
|
+
const venueIdentityChanged = !!originalSelectedCard && !!refreshedSelectedCard && !routeCardsHaveSameVenueIdentity(originalSelectedCard, refreshedSelectedCard);
|
|
9572
|
+
if (selectedRouteCardId && (!refreshedSelectedCard || venueIdentityChanged)) {
|
|
9447
9573
|
setSubmissionProgressState(null);
|
|
9448
9574
|
setSubmissionFeedback({
|
|
9449
9575
|
message: tradingLabels.selectedVenueUnavailable,
|
|
@@ -9473,8 +9599,10 @@ var PlaceOrder = ({
|
|
|
9473
9599
|
internalAmount,
|
|
9474
9600
|
internalTab,
|
|
9475
9601
|
isSell,
|
|
9602
|
+
isPaperMode,
|
|
9476
9603
|
onAmountChange,
|
|
9477
9604
|
orderEligibility.canPlaceOrder,
|
|
9605
|
+
orderedRouteCards,
|
|
9478
9606
|
scopedSelectedEvent == null ? void 0 : scopedSelectedEvent.venueMarkets,
|
|
9479
9607
|
scopedSelectedOutcomeId,
|
|
9480
9608
|
selectedRouteCardId,
|
|
@@ -9483,7 +9611,7 @@ var PlaceOrder = ({
|
|
|
9483
9611
|
]);
|
|
9484
9612
|
const resolvedStatusClassName = cn(classNames == null ? void 0 : classNames.root, className);
|
|
9485
9613
|
if (isLoading) {
|
|
9486
|
-
return /* @__PURE__ */ (0,
|
|
9614
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9487
9615
|
Skeleton,
|
|
9488
9616
|
{
|
|
9489
9617
|
ariaLabel: labels.common.loading,
|
|
@@ -9494,7 +9622,7 @@ var PlaceOrder = ({
|
|
|
9494
9622
|
}
|
|
9495
9623
|
if (submissionProgressState) {
|
|
9496
9624
|
if (submissionProgressState.phase === "success" && submissionProgressState.summary) {
|
|
9497
|
-
return /* @__PURE__ */ (0,
|
|
9625
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9498
9626
|
PlaceOrderSuccessView,
|
|
9499
9627
|
{
|
|
9500
9628
|
className: resolvedStatusClassName,
|
|
@@ -9506,7 +9634,7 @@ var PlaceOrder = ({
|
|
|
9506
9634
|
);
|
|
9507
9635
|
}
|
|
9508
9636
|
if (submissionProgressState.phase === "failed") {
|
|
9509
|
-
return /* @__PURE__ */ (0,
|
|
9637
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9510
9638
|
PlaceOrderFailureView,
|
|
9511
9639
|
{
|
|
9512
9640
|
className: resolvedStatusClassName,
|
|
@@ -9612,7 +9740,7 @@ var PlaceOrder = ({
|
|
|
9612
9740
|
}
|
|
9613
9741
|
});
|
|
9614
9742
|
if (!orderEligibility.canPlaceOrder && resolvedReadOnlyTradingState.kind !== "open") {
|
|
9615
|
-
return /* @__PURE__ */ (0,
|
|
9743
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9616
9744
|
PlaceOrderResolvedView,
|
|
9617
9745
|
{
|
|
9618
9746
|
tradingState: resolvedReadOnlyTradingState,
|
|
@@ -9622,8 +9750,8 @@ var PlaceOrder = ({
|
|
|
9622
9750
|
}
|
|
9623
9751
|
);
|
|
9624
9752
|
}
|
|
9625
|
-
return /* @__PURE__ */ (0,
|
|
9626
|
-
/* @__PURE__ */ (0,
|
|
9753
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_react9.Fragment, { children: [
|
|
9754
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9627
9755
|
Card,
|
|
9628
9756
|
{
|
|
9629
9757
|
className: cn(
|
|
@@ -9640,8 +9768,8 @@ var PlaceOrder = ({
|
|
|
9640
9768
|
headerTitle,
|
|
9641
9769
|
onClose
|
|
9642
9770
|
}),
|
|
9643
|
-
/* @__PURE__ */ (0,
|
|
9644
|
-
/* @__PURE__ */ (0,
|
|
9771
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: cn("agg-order-panel-content flex flex-col gap-6", classNames == null ? void 0 : classNames.content), children: [
|
|
9772
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9645
9773
|
"div",
|
|
9646
9774
|
{
|
|
9647
9775
|
className: "agg-order-tabs flex items-end border-b border-agg-separator",
|
|
@@ -9652,7 +9780,7 @@ var PlaceOrder = ({
|
|
|
9652
9780
|
{ value: "sell", label: tradingLabels.sell, ref: sellTabRef }
|
|
9653
9781
|
].map((tabItem) => {
|
|
9654
9782
|
const isActive = internalTab === tabItem.value;
|
|
9655
|
-
return /* @__PURE__ */ (0,
|
|
9783
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9656
9784
|
"button",
|
|
9657
9785
|
{
|
|
9658
9786
|
ref: tabItem.ref,
|
|
@@ -9676,7 +9804,7 @@ var PlaceOrder = ({
|
|
|
9676
9804
|
onKeyDown: (event) => handleTabKeyDown(event, tabItem.value),
|
|
9677
9805
|
children: [
|
|
9678
9806
|
tabItem.label,
|
|
9679
|
-
/* @__PURE__ */ (0,
|
|
9807
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9680
9808
|
"span",
|
|
9681
9809
|
{
|
|
9682
9810
|
"aria-hidden": "true",
|
|
@@ -9698,7 +9826,7 @@ var PlaceOrder = ({
|
|
|
9698
9826
|
})
|
|
9699
9827
|
}
|
|
9700
9828
|
),
|
|
9701
|
-
outcomes.length >= 2 ? /* @__PURE__ */ (0,
|
|
9829
|
+
outcomes.length >= 2 ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "agg-outcomes flex w-full max-w-full gap-2", children: outcomes.map((outcome, index) => {
|
|
9702
9830
|
var _a2, _b2, _c2;
|
|
9703
9831
|
const price = getDisplayOutcomePrice({
|
|
9704
9832
|
outcomeId: outcome.id,
|
|
@@ -9712,7 +9840,7 @@ var PlaceOrder = ({
|
|
|
9712
9840
|
});
|
|
9713
9841
|
const isActive = outcome.id === scopedSelectedOutcomeId;
|
|
9714
9842
|
const isPositive = resolveIsPositiveOutcome(outcome, index);
|
|
9715
|
-
return /* @__PURE__ */ (0,
|
|
9843
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9716
9844
|
"button",
|
|
9717
9845
|
{
|
|
9718
9846
|
"data-id": outcome.id,
|
|
@@ -9732,7 +9860,7 @@ var PlaceOrder = ({
|
|
|
9732
9860
|
disabled: !orderEligibility.canPlaceOrder || isResolvedOutcomeCtaLocked,
|
|
9733
9861
|
onClick: () => handleOutcomeChange(outcome.id),
|
|
9734
9862
|
children: [
|
|
9735
|
-
/* @__PURE__ */ (0,
|
|
9863
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9736
9864
|
Typography,
|
|
9737
9865
|
{
|
|
9738
9866
|
as: "span",
|
|
@@ -9741,18 +9869,18 @@ var PlaceOrder = ({
|
|
|
9741
9869
|
children: (_c2 = outcome.title) != null ? _c2 : outcome.label
|
|
9742
9870
|
}
|
|
9743
9871
|
),
|
|
9744
|
-
/* @__PURE__ */ (0,
|
|
9872
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Typography, { as: "span", variant: isActive ? "body-strong" : "body", children: formatProbabilityCents(price) })
|
|
9745
9873
|
]
|
|
9746
9874
|
},
|
|
9747
9875
|
outcome.id
|
|
9748
9876
|
);
|
|
9749
9877
|
}) }) : null,
|
|
9750
|
-
/* @__PURE__ */ (0,
|
|
9751
|
-
/* @__PURE__ */ (0,
|
|
9752
|
-
/* @__PURE__ */ (0,
|
|
9753
|
-
isAuthenticated ? isSell ? /* @__PURE__ */ (0,
|
|
9754
|
-
/* @__PURE__ */ (0,
|
|
9755
|
-
displayedCurrentSellableShares > 0 ? /* @__PURE__ */ (0,
|
|
9878
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-amount-section flex items-start justify-between gap-4", children: [
|
|
9879
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-amount-meta flex flex-col", children: [
|
|
9880
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-order-amount-label text-agg-base font-agg-bold leading-agg-6 text-agg-foreground whitespace-nowrap", children: tradingLabels.amount(internalTab) }),
|
|
9881
|
+
isAuthenticated ? isSell ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "agg-balance-value flex items-baseline gap-1.5 text-agg-sm leading-agg-5 text-agg-muted-foreground", children: isCurrentSellableSharesLoading ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(LoadingIcon, { size: "small" }) : /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(import_jsx_runtime120.Fragment, { children: [
|
|
9882
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "whitespace-pre", children: tradingLabels.shares(displayedCurrentSellableShares) }),
|
|
9883
|
+
displayedCurrentSellableShares > 0 ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9756
9884
|
"button",
|
|
9757
9885
|
{
|
|
9758
9886
|
type: "button",
|
|
@@ -9768,15 +9896,15 @@ var PlaceOrder = ({
|
|
|
9768
9896
|
children: tradingLabels.maxShares
|
|
9769
9897
|
}
|
|
9770
9898
|
) : null
|
|
9771
|
-
] }) }) : /* @__PURE__ */ (0,
|
|
9899
|
+
] }) }) : /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-balance-value flex items-center gap-2 text-agg-sm leading-agg-5 text-agg-muted-foreground", children: isBalanceLoading ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(LoadingIcon, { size: "small" }) : tradingLabels.balance(formatUsd(totalBalance)) }) : null
|
|
9772
9900
|
] }),
|
|
9773
|
-
/* @__PURE__ */ (0,
|
|
9901
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9774
9902
|
CurrencyInput,
|
|
9775
9903
|
{
|
|
9776
9904
|
value: internalAmount,
|
|
9777
9905
|
onChange: handleAmountChange,
|
|
9778
9906
|
ariaLabel: tradingLabels.amount(internalTab),
|
|
9779
|
-
isInvalid: isInsufficientBalance,
|
|
9907
|
+
isInvalid: isInsufficientBalance || isBelowMinimum,
|
|
9780
9908
|
disabled: !orderEligibility.canPlaceOrder,
|
|
9781
9909
|
prefix: internalTab === "buy" ? "$" : "",
|
|
9782
9910
|
decimalPlaces: isSell ? 6 : 2,
|
|
@@ -9790,9 +9918,9 @@ var PlaceOrder = ({
|
|
|
9790
9918
|
}
|
|
9791
9919
|
)
|
|
9792
9920
|
] }),
|
|
9793
|
-
showFeesBreakdown && hasEnteredAmount && estimatedFeesValue ? /* @__PURE__ */ (0,
|
|
9794
|
-
/* @__PURE__ */ (0,
|
|
9795
|
-
/* @__PURE__ */ (0,
|
|
9921
|
+
showFeesBreakdown && hasEnteredAmount && !isBelowMinimum && estimatedFeesValue ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-fees-section flex items-center justify-between gap-4", children: [
|
|
9922
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "flex items-center gap-1.5", children: [
|
|
9923
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9796
9924
|
Typography,
|
|
9797
9925
|
{
|
|
9798
9926
|
variant: "text-sm",
|
|
@@ -9800,17 +9928,35 @@ var PlaceOrder = ({
|
|
|
9800
9928
|
children: tradingLabels.estimatedFees
|
|
9801
9929
|
}
|
|
9802
9930
|
),
|
|
9803
|
-
feeBreakdownRows.length > 0 ? /* @__PURE__ */ (0,
|
|
9931
|
+
feeBreakdownRows.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9804
9932
|
Tooltip,
|
|
9805
9933
|
{
|
|
9806
9934
|
"aria-label": tradingLabels.estimatedFeesTooltipAria,
|
|
9807
|
-
|
|
9935
|
+
classNames: {
|
|
9936
|
+
content: cn(
|
|
9937
|
+
"min-w-[220px] max-w-[320px] rounded-[10px] px-5 py-4",
|
|
9938
|
+
"shadow-[0_12px_12px_rgba(0,0,0,0.10)]"
|
|
9939
|
+
),
|
|
9940
|
+
icon: "h-3 w-3 text-agg-muted-foreground",
|
|
9941
|
+
trigger: "h-3 w-3 text-agg-muted-foreground"
|
|
9942
|
+
},
|
|
9943
|
+
content: /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "flex w-full flex-col gap-2", children: feeBreakdownRows.map((row) => /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9808
9944
|
"div",
|
|
9809
9945
|
{
|
|
9810
|
-
className: "flex items-center justify-between gap-3 text-agg-sm leading-agg-5",
|
|
9946
|
+
className: "flex items-center justify-between gap-3 text-agg-sm font-agg-normal leading-agg-5 text-agg-foreground",
|
|
9811
9947
|
children: [
|
|
9812
|
-
/* @__PURE__ */ (0,
|
|
9813
|
-
/* @__PURE__ */ (0,
|
|
9948
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { children: row.label }),
|
|
9949
|
+
row.kind === "badge" ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9950
|
+
"span",
|
|
9951
|
+
{
|
|
9952
|
+
className: cn(
|
|
9953
|
+
"agg-fee-badge inline-flex items-center justify-center rounded-agg-sm border border-agg-primary/50",
|
|
9954
|
+
"bg-linear-to-b from-agg-primary/8 to-agg-primary/15 px-1.5 py-1",
|
|
9955
|
+
"text-agg-xs font-agg-bold leading-agg-4 text-agg-primary uppercase whitespace-nowrap"
|
|
9956
|
+
),
|
|
9957
|
+
children: row.badgeLabel
|
|
9958
|
+
}
|
|
9959
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "text-right", children: row.value })
|
|
9814
9960
|
]
|
|
9815
9961
|
},
|
|
9816
9962
|
row.label
|
|
@@ -9818,12 +9964,12 @@ var PlaceOrder = ({
|
|
|
9818
9964
|
}
|
|
9819
9965
|
) : null
|
|
9820
9966
|
] }),
|
|
9821
|
-
/* @__PURE__ */ (0,
|
|
9967
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "text-agg-sm leading-agg-5 text-agg-foreground", children: estimatedFeesValue })
|
|
9822
9968
|
] }) : null,
|
|
9823
|
-
shouldShowSmartRouting ? /* @__PURE__ */ (0,
|
|
9824
|
-
/* @__PURE__ */ (0,
|
|
9825
|
-
/* @__PURE__ */ (0,
|
|
9826
|
-
shouldShowRouteToggle && !isRoutesExpanded ? /* @__PURE__ */ (0,
|
|
9969
|
+
shouldShowSmartRouting ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-route-panel flex flex-col gap-3", children: [
|
|
9970
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-route-panel-header flex items-center justify-between gap-4", children: [
|
|
9971
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-route-panel-title text-agg-base font-agg-bold leading-agg-6 text-agg-foreground", children: tradingLabels.smartRouting }),
|
|
9972
|
+
shouldShowRouteToggle && !isRoutesExpanded ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9827
9973
|
"button",
|
|
9828
9974
|
{
|
|
9829
9975
|
type: "button",
|
|
@@ -9831,8 +9977,8 @@ var PlaceOrder = ({
|
|
|
9831
9977
|
"aria-label": tradingLabels.viewAllRoutes(orderedRouteCards.length),
|
|
9832
9978
|
onClick: () => setIsRoutesExpanded((currentValue) => !currentValue),
|
|
9833
9979
|
children: [
|
|
9834
|
-
/* @__PURE__ */ (0,
|
|
9835
|
-
/* @__PURE__ */ (0,
|
|
9980
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { children: tradingLabels.viewAllRoutes(orderedRouteCards.length) }),
|
|
9981
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9836
9982
|
Icon,
|
|
9837
9983
|
{
|
|
9838
9984
|
name: "chevron-down",
|
|
@@ -9845,7 +9991,7 @@ var PlaceOrder = ({
|
|
|
9845
9991
|
}
|
|
9846
9992
|
) : null
|
|
9847
9993
|
] }),
|
|
9848
|
-
/* @__PURE__ */ (0,
|
|
9994
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("div", { className: "agg-route-list flex flex-col gap-2", children: isQuoteLoading ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9849
9995
|
"div",
|
|
9850
9996
|
{
|
|
9851
9997
|
className: "agg-route-loading flex flex-col gap-2",
|
|
@@ -9853,12 +9999,12 @@ var PlaceOrder = ({
|
|
|
9853
9999
|
"aria-label": labels.common.loading,
|
|
9854
10000
|
"aria-live": "polite",
|
|
9855
10001
|
children: [
|
|
9856
|
-
/* @__PURE__ */ (0,
|
|
9857
|
-
/* @__PURE__ */ (0,
|
|
10002
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(PlaceOrderRouteCardSkeleton, {}),
|
|
10003
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(PlaceOrderRouteCardSkeleton, {})
|
|
9858
10004
|
]
|
|
9859
10005
|
}
|
|
9860
10006
|
) : visibleRouteCards.length > 0 ? visibleRouteCards.map((card) => {
|
|
9861
|
-
return /* @__PURE__ */ (0,
|
|
10007
|
+
return /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(import_react9.Fragment, { children: renderRouteCard({
|
|
9862
10008
|
card,
|
|
9863
10009
|
enableAnimations,
|
|
9864
10010
|
isExpanded: card.kind === "split" ? isSplitDetailOpen : isRoutesExpanded,
|
|
@@ -9868,12 +10014,12 @@ var PlaceOrder = ({
|
|
|
9868
10014
|
}) }, card.id);
|
|
9869
10015
|
}) : null })
|
|
9870
10016
|
] }) : null,
|
|
9871
|
-
hasEnteredAmount && selectedRouteCard && !isQuoteLoading && orderEligibility.canPlaceOrder ? /* @__PURE__ */ (0,
|
|
9872
|
-
/* @__PURE__ */ (0,
|
|
9873
|
-
/* @__PURE__ */ (0,
|
|
9874
|
-
/* @__PURE__ */ (0,
|
|
10017
|
+
hasEnteredAmount && selectedRouteCard && !isQuoteLoading && !isBelowMinimum && orderEligibility.canPlaceOrder ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-summary flex items-start justify-between gap-4", children: [
|
|
10018
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-summary-meta flex flex-col", children: [
|
|
10019
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-order-summary-label text-agg-base font-agg-bold leading-agg-6 text-agg-foreground", children: tradingLabels.toWin(internalTab) }),
|
|
10020
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-order-summary-hint text-agg-sm leading-agg-5 text-agg-muted-foreground", children: displayedToWinHint })
|
|
9875
10021
|
] }),
|
|
9876
|
-
/* @__PURE__ */ (0,
|
|
10022
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9877
10023
|
import_react8.default,
|
|
9878
10024
|
{
|
|
9879
10025
|
value: displayedToWinValue,
|
|
@@ -9888,7 +10034,7 @@ var PlaceOrder = ({
|
|
|
9888
10034
|
}
|
|
9889
10035
|
)
|
|
9890
10036
|
] }) : null,
|
|
9891
|
-
/* @__PURE__ */ (0,
|
|
10037
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9892
10038
|
"div",
|
|
9893
10039
|
{
|
|
9894
10040
|
className: cn(
|
|
@@ -9896,23 +10042,17 @@ var PlaceOrder = ({
|
|
|
9896
10042
|
classNames == null ? void 0 : classNames.footer
|
|
9897
10043
|
),
|
|
9898
10044
|
children: [
|
|
9899
|
-
!shouldShowGeoBlockBanner ? /* @__PURE__ */ (0,
|
|
9900
|
-
submissionFeedback ? /* @__PURE__ */ (0,
|
|
10045
|
+
!shouldShowGeoBlockBanner ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-alerts flex flex-col gap-3 empty:hidden mb-3", children: [
|
|
10046
|
+
submissionFeedback ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9901
10047
|
InlineAlert,
|
|
9902
10048
|
{
|
|
9903
10049
|
tone: submissionFeedback.tone,
|
|
9904
10050
|
message: submissionFeedback.message
|
|
9905
10051
|
}
|
|
9906
10052
|
) : null,
|
|
9907
|
-
!submissionFeedback && orderEligibility.canPlaceOrder && !isInsufficientBalance && isBelowMinimum ? /* @__PURE__ */ (0,
|
|
9908
|
-
|
|
9909
|
-
|
|
9910
|
-
tone: "error",
|
|
9911
|
-
message: tradingLabels.minimumOrderAmount(MIN_BUY_ORDER_AMOUNT)
|
|
9912
|
-
}
|
|
9913
|
-
) : null,
|
|
9914
|
-
!submissionFeedback && orderEligibility.canPlaceOrder && !isInsufficientBalance && !isBelowMinimum && quoteStatus ? /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(InlineAlert, { tone: quoteStatus.tone, message: quoteStatus.message }) : null,
|
|
9915
|
-
!submissionFeedback && orderEligibility.canPlaceOrder && !isInsufficientBalance && !isBelowMinimum && !quoteStatus && isAuthenticated && hasEnteredAmount && smartRouteErrorMessage ? /* @__PURE__ */ (0, import_jsx_runtime119.jsx)(
|
|
10053
|
+
!submissionFeedback && orderEligibility.canPlaceOrder && !isInsufficientBalance && isBelowMinimum ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(InlineAlert, { tone: "error", message: belowMinimumMessage }) : null,
|
|
10054
|
+
!submissionFeedback && orderEligibility.canPlaceOrder && !isInsufficientBalance && !isBelowMinimum && quoteStatus ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(InlineAlert, { tone: quoteStatus.tone, message: quoteStatus.message }) : null,
|
|
10055
|
+
!submissionFeedback && orderEligibility.canPlaceOrder && !isInsufficientBalance && !isBelowMinimum && !quoteStatus && isAuthenticated && hasEnteredAmount && smartRouteErrorMessage ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9916
10056
|
InlineAlert,
|
|
9917
10057
|
{
|
|
9918
10058
|
tone: "error",
|
|
@@ -9924,14 +10064,14 @@ var PlaceOrder = ({
|
|
|
9924
10064
|
}
|
|
9925
10065
|
) : null
|
|
9926
10066
|
] }) : null,
|
|
9927
|
-
!submissionFeedback && !shouldShowGeoBlockBanner && orderEligibility.canPlaceOrder &&
|
|
10067
|
+
!submissionFeedback && !shouldShowGeoBlockBanner && orderEligibility.canPlaceOrder && shouldShowInsufficientBalanceAlert ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)(
|
|
9928
10068
|
"div",
|
|
9929
10069
|
{
|
|
9930
10070
|
className: "agg-order-insufficient-balance-alert flex items-center justify-center gap-2",
|
|
9931
10071
|
role: "status",
|
|
9932
10072
|
"aria-live": "polite",
|
|
9933
10073
|
children: [
|
|
9934
|
-
/* @__PURE__ */ (0,
|
|
10074
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9935
10075
|
Icon,
|
|
9936
10076
|
{
|
|
9937
10077
|
name: "warning-filled",
|
|
@@ -9940,11 +10080,11 @@ var PlaceOrder = ({
|
|
|
9940
10080
|
"aria-hidden": "true"
|
|
9941
10081
|
}
|
|
9942
10082
|
),
|
|
9943
|
-
/* @__PURE__ */ (0,
|
|
10083
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)("span", { className: "text-agg-sm text-agg-foreground", children: tradingLabels.insufficientBalance })
|
|
9944
10084
|
]
|
|
9945
10085
|
}
|
|
9946
10086
|
) : null,
|
|
9947
|
-
!submissionFeedback && !shouldShowGeoBlockBanner && isInsufficientBalance ? /* @__PURE__ */ (0,
|
|
10087
|
+
!submissionFeedback && !shouldShowGeoBlockBanner && isInsufficientBalance ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9948
10088
|
Button,
|
|
9949
10089
|
{
|
|
9950
10090
|
size: "large",
|
|
@@ -9954,7 +10094,7 @@ var PlaceOrder = ({
|
|
|
9954
10094
|
onClick: handleDepositRequiredClick,
|
|
9955
10095
|
children: tradingLabels.deposit
|
|
9956
10096
|
}
|
|
9957
|
-
) : needsKycVerification && !submissionFeedback && !shouldShowGeoBlockBanner ? /* @__PURE__ */ (0,
|
|
10097
|
+
) : needsKycVerification && !submissionFeedback && !shouldShowGeoBlockBanner ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(InitiateKycButton, { label: tradingLabels.kycRequired, onOpen: openVerifyModal }) : !isAuthenticated ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9958
10098
|
Button,
|
|
9959
10099
|
{
|
|
9960
10100
|
size: "large",
|
|
@@ -9965,7 +10105,7 @@ var PlaceOrder = ({
|
|
|
9965
10105
|
onClick: import_hooks29.requestAggAuthChooserOpen,
|
|
9966
10106
|
children: tradingLabels.signInToTrade
|
|
9967
10107
|
}
|
|
9968
|
-
) : /* @__PURE__ */ (0,
|
|
10108
|
+
) : /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9969
10109
|
Button,
|
|
9970
10110
|
{
|
|
9971
10111
|
size: "large",
|
|
@@ -9980,8 +10120,8 @@ var PlaceOrder = ({
|
|
|
9980
10120
|
children: actionLabel
|
|
9981
10121
|
}
|
|
9982
10122
|
),
|
|
9983
|
-
!shouldShowGeoBlockBanner && internalTab === "buy" && showFeesBreakdown ? /* @__PURE__ */ (0,
|
|
9984
|
-
/* @__PURE__ */ (0,
|
|
10123
|
+
!shouldShowGeoBlockBanner && internalTab === "buy" && showFeesBreakdown ? /* @__PURE__ */ (0, import_jsx_runtime120.jsxs)("div", { className: "agg-order-platform-fee mt-1 flex items-center justify-center gap-1.5 text-agg-sm leading-agg-5 text-agg-muted-foreground", children: [
|
|
10124
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
9985
10125
|
Icon,
|
|
9986
10126
|
{
|
|
9987
10127
|
name: "shield-trust",
|
|
@@ -9990,10 +10130,10 @@ var PlaceOrder = ({
|
|
|
9990
10130
|
"aria-hidden": "true"
|
|
9991
10131
|
}
|
|
9992
10132
|
),
|
|
9993
|
-
/* @__PURE__ */ (0,
|
|
10133
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(Typography, { variant: "text-xs-caps", className: "text-agg-primary", children: tradingLabels.platformFee })
|
|
9994
10134
|
] }) : null,
|
|
9995
|
-
shouldShowGeoBlockBanner ? /* @__PURE__ */ (0,
|
|
9996
|
-
!shouldShowGeoBlockBanner ? /* @__PURE__ */ (0,
|
|
10135
|
+
shouldShowGeoBlockBanner ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)(GeoBlockBanner, { termsUrl: AGG_TERMS_OF_SERVICE_URL }) : null,
|
|
10136
|
+
!shouldShowGeoBlockBanner ? /* @__PURE__ */ (0, import_jsx_runtime120.jsx)("p", { className: "agg-order-disclaimer text-center text-agg-xs leading-agg-4 text-agg-muted-foreground", children: tradingLabels.disclaimer }) : null
|
|
9997
10137
|
]
|
|
9998
10138
|
}
|
|
9999
10139
|
)
|
|
@@ -10001,7 +10141,7 @@ var PlaceOrder = ({
|
|
|
10001
10141
|
]
|
|
10002
10142
|
}
|
|
10003
10143
|
),
|
|
10004
|
-
/* @__PURE__ */ (0,
|
|
10144
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
10005
10145
|
KycVerifyModal,
|
|
10006
10146
|
{
|
|
10007
10147
|
open: isKycVerifyModalOpen,
|
|
@@ -10018,7 +10158,7 @@ var PlaceOrder = ({
|
|
|
10018
10158
|
}
|
|
10019
10159
|
}
|
|
10020
10160
|
),
|
|
10021
|
-
/* @__PURE__ */ (0,
|
|
10161
|
+
/* @__PURE__ */ (0, import_jsx_runtime120.jsx)(
|
|
10022
10162
|
KycSuccessModal,
|
|
10023
10163
|
{
|
|
10024
10164
|
open: showKycSuccessModal,
|