@syscore/ui-library 1.21.0 → 1.22.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/client/components/icons/AlphaIcon.tsx +33 -4
- package/client/components/icons/UtilityClose.tsx +1 -1
- package/client/components/icons/UtilityCompare.tsx +18 -18
- package/client/components/icons/UtilityFeedback.tsx +3 -3
- package/client/components/icons/UtilityMessage.tsx +4 -4
- package/client/components/icons/UtilityTrash.tsx +9 -9
- package/client/components/icons/achievement-badges/BadgeCertificationGold.tsx +25 -25
- package/client/components/icons/imperative-badges/BadgeImperativePrimary.tsx +9 -9
- package/client/components/icons/imperative-badges/BadgeImperativeSecondary.tsx +13 -13
- package/client/components/ui/accordion.tsx +4 -3
- package/client/components/ui/dialog.tsx +8 -3
- package/client/components/ui/tooltip.tsx +2 -2
- package/client/global.css +52 -19
- package/dist/index.cjs.js +1 -1
- package/dist/index.es.js +145 -101
- package/package.json +10 -2
package/dist/index.es.js
CHANGED
|
@@ -276,9 +276,9 @@ const Accordion = React.forwardRef(
|
|
|
276
276
|
}
|
|
277
277
|
);
|
|
278
278
|
Accordion.displayName = "Accordion";
|
|
279
|
-
const AccordionSectionHeader = React.forwardRef(({ title, hasExpanded, onToggleAll, className }, ref) => {
|
|
279
|
+
const AccordionSectionHeader = React.forwardRef(({ title, hasExpanded, onToggleAll, className, titleClassName }, ref) => {
|
|
280
280
|
return /* @__PURE__ */ jsxs("div", { ref, className: cn(className), children: [
|
|
281
|
-
/* @__PURE__ */ jsx("h2", { children: title }),
|
|
281
|
+
/* @__PURE__ */ jsx("h2", { className: cn(titleClassName), children: title }),
|
|
282
282
|
onToggleAll && /* @__PURE__ */ jsx(
|
|
283
283
|
motion.div,
|
|
284
284
|
{
|
|
@@ -288,7 +288,6 @@ const AccordionSectionHeader = React.forwardRef(({ title, hasExpanded, onToggleA
|
|
|
288
288
|
Button,
|
|
289
289
|
{
|
|
290
290
|
size: "icon",
|
|
291
|
-
variant: "clear",
|
|
292
291
|
onClick: onToggleAll,
|
|
293
292
|
"aria-label": hasExpanded ? "Collapse all" : "Expand all",
|
|
294
293
|
children: /* @__PURE__ */ jsx(UtilityChevronDown, {})
|
|
@@ -886,7 +885,7 @@ const UtilityClose = ({ className }) => {
|
|
|
886
885
|
"div",
|
|
887
886
|
{
|
|
888
887
|
className: cn(
|
|
889
|
-
"size-4 flex items-center justify-center text-gray-500
|
|
888
|
+
"size-4 flex items-center justify-center text-gray-500 ",
|
|
890
889
|
className
|
|
891
890
|
),
|
|
892
891
|
children: /* @__PURE__ */ jsxs(
|
|
@@ -1084,7 +1083,7 @@ function TooltipContent({
|
|
|
1084
1083
|
)
|
|
1085
1084
|
}
|
|
1086
1085
|
) }),
|
|
1087
|
-
variant2 !== "simple" && !hideClose && /* @__PURE__ */ jsx(ToggleClose, {
|
|
1086
|
+
variant2 !== "simple" && !hideClose && /* @__PURE__ */ jsx(ToggleClose, {}),
|
|
1088
1087
|
children
|
|
1089
1088
|
]
|
|
1090
1089
|
}
|
|
@@ -1097,7 +1096,7 @@ function ToggleClose({ className }) {
|
|
|
1097
1096
|
{
|
|
1098
1097
|
"data-slot": "tooltip-close",
|
|
1099
1098
|
onClick: close,
|
|
1100
|
-
className
|
|
1099
|
+
className,
|
|
1101
1100
|
children: /* @__PURE__ */ jsx(UtilityClose, {})
|
|
1102
1101
|
}
|
|
1103
1102
|
);
|
|
@@ -2455,15 +2454,25 @@ function DialogContent({
|
|
|
2455
2454
|
...props,
|
|
2456
2455
|
children: /* @__PURE__ */ jsxs("div", { className: "dialog-content-wrapper", children: [
|
|
2457
2456
|
/* @__PURE__ */ jsx("div", { className: cn("dialog-content-inner", innerClassName), children }),
|
|
2458
|
-
showCloseButton && /* @__PURE__ */ jsx("div", { className: "dialog-close", children: /* @__PURE__ */ jsxs(
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2457
|
+
showCloseButton && /* @__PURE__ */ jsx("div", { className: "dialog-close", children: /* @__PURE__ */ jsxs(
|
|
2458
|
+
SheetPrimitive.Close,
|
|
2459
|
+
{
|
|
2460
|
+
"data-slot": "dialog-close",
|
|
2461
|
+
className: "absolute top-4 right-4 cursor-pointer",
|
|
2462
|
+
children: [
|
|
2463
|
+
/* @__PURE__ */ jsx(
|
|
2464
|
+
UtilityClose,
|
|
2465
|
+
{
|
|
2466
|
+
className: cn(
|
|
2467
|
+
"dialog-close-icon text-gray-400 hover:text-gray-500 transition-colors duration-200 ",
|
|
2468
|
+
closeClassName
|
|
2469
|
+
)
|
|
2470
|
+
}
|
|
2471
|
+
),
|
|
2472
|
+
/* @__PURE__ */ jsx("span", { className: "sr-only", children: "Close" })
|
|
2473
|
+
]
|
|
2474
|
+
}
|
|
2475
|
+
) })
|
|
2467
2476
|
] })
|
|
2468
2477
|
}
|
|
2469
2478
|
) }) });
|
|
@@ -6021,9 +6030,9 @@ function UtilityCompare({ className }) {
|
|
|
6021
6030
|
d: "M10.6002 5.79905C10.6002 8.44949 8.45114 10.5981 5.80011 10.5981C3.14908 10.5981 1 8.44949 1 5.79905C1 3.14861 3.14908 1 5.80011 1C8.45114 1 10.6002 3.14861 10.6002 5.79905Z",
|
|
6022
6031
|
fill: "#E0FBF5",
|
|
6023
6032
|
stroke: "currentColor",
|
|
6024
|
-
|
|
6025
|
-
|
|
6026
|
-
|
|
6033
|
+
strokeWidth: "2",
|
|
6034
|
+
strokeLinecap: "round",
|
|
6035
|
+
strokeLinejoin: "round"
|
|
6027
6036
|
}
|
|
6028
6037
|
),
|
|
6029
6038
|
/* @__PURE__ */ jsx(
|
|
@@ -6031,9 +6040,9 @@ function UtilityCompare({ className }) {
|
|
|
6031
6040
|
{
|
|
6032
6041
|
d: "M5.80078 16.998L5.80078 24.9965C5.80078 25.845 6.13793 26.6588 6.73806 27.2587C7.33819 27.8587 8.15214 28.1958 9.00086 28.1958L20.2011 28.1958",
|
|
6033
6042
|
stroke: "currentColor",
|
|
6034
|
-
|
|
6035
|
-
|
|
6036
|
-
|
|
6043
|
+
strokeWidth: "2",
|
|
6044
|
+
strokeLinecap: "round",
|
|
6045
|
+
strokeLinejoin: "round"
|
|
6037
6046
|
}
|
|
6038
6047
|
),
|
|
6039
6048
|
/* @__PURE__ */ jsx(
|
|
@@ -6041,9 +6050,9 @@ function UtilityCompare({ className }) {
|
|
|
6041
6050
|
{
|
|
6042
6051
|
d: "M10.6002 21.7971L5.80011 16.998L1 21.7971",
|
|
6043
6052
|
stroke: "currentColor",
|
|
6044
|
-
|
|
6045
|
-
|
|
6046
|
-
|
|
6053
|
+
strokeWidth: "2",
|
|
6054
|
+
strokeLinecap: "round",
|
|
6055
|
+
strokeLinejoin: "round"
|
|
6047
6056
|
}
|
|
6048
6057
|
),
|
|
6049
6058
|
/* @__PURE__ */ jsx(
|
|
@@ -6052,9 +6061,9 @@ function UtilityCompare({ className }) {
|
|
|
6052
6061
|
d: "M29.8001 28.2014C29.8001 30.8518 27.651 33.0004 24.9999 33.0004C22.3489 33.0004 20.1998 30.8518 20.1998 28.2014C20.1998 25.551 22.3489 23.4023 24.9999 23.4023C27.651 23.4023 29.8001 25.5509 29.8001 28.2014Z",
|
|
6053
6062
|
fill: "#EFF5FB",
|
|
6054
6063
|
stroke: "currentColor",
|
|
6055
|
-
|
|
6056
|
-
|
|
6057
|
-
|
|
6064
|
+
strokeWidth: "2",
|
|
6065
|
+
strokeLinecap: "round",
|
|
6066
|
+
strokeLinejoin: "round"
|
|
6058
6067
|
}
|
|
6059
6068
|
),
|
|
6060
6069
|
/* @__PURE__ */ jsx(
|
|
@@ -6062,9 +6071,9 @@ function UtilityCompare({ className }) {
|
|
|
6062
6071
|
{
|
|
6063
6072
|
d: "M25.0002 16.9946V8.99624C25.0002 8.14771 24.663 7.33394 24.0629 6.73395C23.4628 6.13395 22.6488 5.79687 21.8001 5.79687L10.5999 5.79688",
|
|
6064
6073
|
stroke: "currentColor",
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6074
|
+
strokeWidth: "2",
|
|
6075
|
+
strokeLinecap: "round",
|
|
6076
|
+
strokeLinejoin: "round"
|
|
6068
6077
|
}
|
|
6069
6078
|
),
|
|
6070
6079
|
/* @__PURE__ */ jsx(
|
|
@@ -6072,9 +6081,9 @@ function UtilityCompare({ className }) {
|
|
|
6072
6081
|
{
|
|
6073
6082
|
d: "M20.1998 12.2012L24.9999 17.0002L29.8001 12.2012",
|
|
6074
6083
|
stroke: "currentColor",
|
|
6075
|
-
|
|
6076
|
-
|
|
6077
|
-
|
|
6084
|
+
strokeWidth: "2",
|
|
6085
|
+
strokeLinecap: "round",
|
|
6086
|
+
strokeLinejoin: "round"
|
|
6078
6087
|
}
|
|
6079
6088
|
)
|
|
6080
6089
|
]
|
|
@@ -6236,11 +6245,11 @@ const UtilityMessage = ({
|
|
|
6236
6245
|
{
|
|
6237
6246
|
d: "M21 15C21 15.5304 20.7893 16.0391 20.4142 16.4142C20.0391 16.7893 19.5304 17 19 17H5.828C5.29761 17.0001 4.78899 17.2109 4.414 17.586L2.212 19.788C2.1127 19.8873 1.9862 19.9549 1.84849 19.9823C1.71077 20.0097 1.56803 19.9956 1.43831 19.9419C1.30858 19.8881 1.1977 19.7971 1.11969 19.6804C1.04167 19.5637 1.00002 19.4264 1 19.286V3C1 2.46957 1.21071 1.96086 1.58579 1.58579C1.96086 1.21071 2.46957 1 3 1H19C19.5304 1 20.0391 1.21071 20.4142 1.58579C20.7893 1.96086 21 2.46957 21 3V15Z",
|
|
6238
6247
|
fill: "currentColor",
|
|
6239
|
-
|
|
6248
|
+
fillOpacity: "0.2",
|
|
6240
6249
|
stroke: "currentColor",
|
|
6241
|
-
|
|
6242
|
-
|
|
6243
|
-
|
|
6250
|
+
strokeWidth: "2",
|
|
6251
|
+
strokeLinecap: "round",
|
|
6252
|
+
strokeLinejoin: "round"
|
|
6244
6253
|
}
|
|
6245
6254
|
)
|
|
6246
6255
|
}
|
|
@@ -7044,9 +7053,9 @@ const UtilityTrash = ({ className }) => {
|
|
|
7044
7053
|
{
|
|
7045
7054
|
d: "M11.9504 3.5498V13.3498C11.9504 13.7211 11.8029 14.0772 11.5403 14.3398C11.2778 14.6023 10.9217 14.7498 10.5504 14.7498H3.55039C3.17909 14.7498 2.82299 14.6023 2.56044 14.3398C2.29789 14.0772 2.15039 13.7211 2.15039 13.3498V3.5498",
|
|
7046
7055
|
stroke: "currentColor",
|
|
7047
|
-
|
|
7048
|
-
|
|
7049
|
-
|
|
7056
|
+
strokeWidth: "1.5",
|
|
7057
|
+
strokeLinecap: "round",
|
|
7058
|
+
strokeLinejoin: "round"
|
|
7050
7059
|
}
|
|
7051
7060
|
),
|
|
7052
7061
|
/* @__PURE__ */ jsx(
|
|
@@ -7054,9 +7063,9 @@ const UtilityTrash = ({ className }) => {
|
|
|
7054
7063
|
{
|
|
7055
7064
|
d: "M0.75 3.5498H13.35",
|
|
7056
7065
|
stroke: "currentColor",
|
|
7057
|
-
|
|
7058
|
-
|
|
7059
|
-
|
|
7066
|
+
strokeWidth: "1.5",
|
|
7067
|
+
strokeLinecap: "round",
|
|
7068
|
+
strokeLinejoin: "round"
|
|
7060
7069
|
}
|
|
7061
7070
|
),
|
|
7062
7071
|
/* @__PURE__ */ jsx(
|
|
@@ -7064,9 +7073,9 @@ const UtilityTrash = ({ className }) => {
|
|
|
7064
7073
|
{
|
|
7065
7074
|
d: "M4.25 3.55V2.15C4.25 1.7787 4.3975 1.4226 4.66005 1.16005C4.9226 0.8975 5.2787 0.75 5.65 0.75H8.45C8.8213 0.75 9.1774 0.8975 9.43995 1.16005C9.7025 1.4226 9.85 1.7787 9.85 2.15V3.55",
|
|
7066
7075
|
stroke: "currentColor",
|
|
7067
|
-
|
|
7068
|
-
|
|
7069
|
-
|
|
7076
|
+
strokeWidth: "1.5",
|
|
7077
|
+
strokeLinecap: "round",
|
|
7078
|
+
strokeLinejoin: "round"
|
|
7070
7079
|
}
|
|
7071
7080
|
)
|
|
7072
7081
|
]
|
|
@@ -7131,9 +7140,9 @@ function UtilityFeedback({ className }) {
|
|
|
7131
7140
|
d: "M29 20.162C29 20.888 28.705 21.5843 28.1799 22.0977C27.6548 22.611 26.9426 22.8995 26.2 22.8995H7.7592C7.01665 22.8996 6.30458 23.1881 5.7796 23.7015L2.6968 26.7154C2.55779 26.8513 2.38068 26.9438 2.18788 26.9813C1.99508 27.0188 1.79524 26.9996 1.61363 26.926C1.43202 26.8525 1.27678 26.728 1.16756 26.5682C1.05834 26.4084 1.00003 26.2205 1 26.0283V3.73743C1 3.01142 1.295 2.31514 1.8201 1.80178C2.3452 1.28841 3.05739 1 3.8 1H26.2C26.9426 1 27.6548 1.28841 28.1799 1.80178C28.705 2.31514 29 3.01142 29 3.73743V20.162Z",
|
|
7132
7141
|
fill: "#D6F4FB",
|
|
7133
7142
|
stroke: "#71747D",
|
|
7134
|
-
|
|
7135
|
-
|
|
7136
|
-
|
|
7143
|
+
strokeWidth: "2",
|
|
7144
|
+
strokeLinecap: "round",
|
|
7145
|
+
strokeLinejoin: "round"
|
|
7137
7146
|
}
|
|
7138
7147
|
)
|
|
7139
7148
|
}
|
|
@@ -10990,7 +10999,7 @@ const BadgeCertificationGold = ({
|
|
|
10990
10999
|
{
|
|
10991
11000
|
d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0491 46.8021 8.43565 45.1886C6.82216 43.5751 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43565 8.43562C10.0491 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8067 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5751 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8067 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
|
|
10992
11001
|
fill: "url(#paint0_linear_9834_327)",
|
|
10993
|
-
|
|
11002
|
+
fillOpacity: "0.8"
|
|
10994
11003
|
}
|
|
10995
11004
|
),
|
|
10996
11005
|
/* @__PURE__ */ jsx(
|
|
@@ -10998,8 +11007,8 @@ const BadgeCertificationGold = ({
|
|
|
10998
11007
|
{
|
|
10999
11008
|
d: "M26.8122 52.8121C24.5706 52.8121 22.2424 52.5414 20.0875 51.9133C17.9325 51.2853 15.7884 50.4839 13.8176 49.3144C11.8467 48.1449 10.0492 46.8021 8.43566 45.1886C6.82216 43.5752 5.47939 41.7884 4.30987 39.8067C3.14036 37.8359 2.33903 35.7784 1.71096 33.5368C1.08288 31.3819 0.812164 29.0537 0.812164 26.8121C0.812164 24.5706 1.08288 22.2424 1.71096 20.0874C2.33903 17.9325 3.14036 15.7884 4.30987 13.8175C5.47939 11.8467 6.82216 10.0491 8.43566 8.43562C10.0492 6.82213 11.8359 5.47936 13.8176 4.30984C15.7884 3.14033 17.8459 2.339 20.0875 1.71093C22.2424 1.08285 24.5706 0.812134 26.8122 0.812134C29.0537 0.812134 31.3819 1.08285 33.5369 1.71093C35.6918 2.339 37.8359 3.14033 39.8068 4.30984C41.7776 5.47936 43.5752 6.82213 45.1887 8.43562C46.8022 10.0491 48.1449 11.8359 49.3145 13.8175C50.484 15.7884 51.2853 17.8459 51.9134 20.0874C52.5414 22.2424 52.8122 24.5706 52.8122 26.8121C52.8122 29.0537 52.5414 31.3819 51.9134 33.5368C51.2853 35.6918 50.484 37.8359 49.3145 39.8067C48.1449 41.7776 46.8022 43.5752 45.1887 45.1886C43.5752 46.8021 41.7884 48.1449 39.8068 49.3144C37.8359 50.4839 35.7784 51.2853 33.5369 51.9133C31.3819 52.5414 29.0537 52.8121 26.8122 52.8121Z",
|
|
11000
11009
|
stroke: "white",
|
|
11001
|
-
|
|
11002
|
-
|
|
11010
|
+
strokeWidth: "1.62432",
|
|
11011
|
+
strokeLinecap: "round"
|
|
11003
11012
|
}
|
|
11004
11013
|
),
|
|
11005
11014
|
/* @__PURE__ */ jsx(
|
|
@@ -11007,8 +11016,8 @@ const BadgeCertificationGold = ({
|
|
|
11007
11016
|
{
|
|
11008
11017
|
d: "M32.6923 48.7839C30.8081 49.3362 28.7723 49.5636 26.8123 49.5636C24.8523 49.5636 22.8165 49.3254 20.9322 48.7839C19.048 48.2425 17.1638 47.5278 15.442 46.5099C13.7202 45.4919 12.1501 44.3116 10.7423 42.9039C9.33457 41.4961 8.15423 39.9259 7.13632 38.2041C6.11841 36.4824 5.41454 34.674 4.86227 32.7139C4.31 30.8297 4.0826 28.7939 4.0826 26.8339C4.0826 24.8739 4.32083 22.8381 4.86227 20.9538C5.40371 19.0696 6.11841 17.1854 7.13632 15.4636C8.15423 13.7418 9.33457 12.1717 10.7423 10.7639",
|
|
11009
11018
|
stroke: "white",
|
|
11010
|
-
|
|
11011
|
-
|
|
11019
|
+
strokeWidth: "1.62432",
|
|
11020
|
+
strokeLinecap: "round"
|
|
11012
11021
|
}
|
|
11013
11022
|
),
|
|
11014
11023
|
/* @__PURE__ */ jsx(
|
|
@@ -11016,8 +11025,8 @@ const BadgeCertificationGold = ({
|
|
|
11016
11025
|
{
|
|
11017
11026
|
d: "M49.5526 26.8231C49.5526 28.7831 49.3144 30.819 48.773 32.7032C48.2315 34.5874 47.5168 36.4716 46.4989 38.1934C45.481 39.9152 44.3007 41.4853 42.8929 42.8931",
|
|
11018
11027
|
stroke: "white",
|
|
11019
|
-
|
|
11020
|
-
|
|
11028
|
+
strokeWidth: "1.62432",
|
|
11029
|
+
strokeLinecap: "round"
|
|
11021
11030
|
}
|
|
11022
11031
|
),
|
|
11023
11032
|
/* @__PURE__ */ jsx(
|
|
@@ -11025,8 +11034,8 @@ const BadgeCertificationGold = ({
|
|
|
11025
11034
|
{
|
|
11026
11035
|
d: "M20.9323 4.86219C22.8165 4.30992 24.8523 4.08252 26.8124 4.08252C28.7724 4.08252 30.8082 4.32075 32.6924 4.86219C34.5766 5.40364 36.4608 6.11834 38.1826 7.13625C39.9044 8.15416 41.4746 9.3345 42.8823 10.7422C44.2901 12.15 45.4704 13.7202 46.4883 15.442",
|
|
11027
11036
|
stroke: "white",
|
|
11028
|
-
|
|
11029
|
-
|
|
11037
|
+
strokeWidth: "1.62432",
|
|
11038
|
+
strokeLinecap: "round"
|
|
11030
11039
|
}
|
|
11031
11040
|
),
|
|
11032
11041
|
/* @__PURE__ */ jsx(
|
|
@@ -11034,8 +11043,8 @@ const BadgeCertificationGold = ({
|
|
|
11034
11043
|
{
|
|
11035
11044
|
d: "M17.0661 43.6944C15.5825 42.8173 14.2398 41.8102 13.0378 40.5974C11.8249 39.3846 10.8179 38.0418 9.94072 36.5691C9.06359 35.0855 8.45717 33.5478 7.99153 31.8694C7.52589 30.2559 7.32014 28.5124 7.32014 26.8231",
|
|
11036
11045
|
stroke: "white",
|
|
11037
|
-
|
|
11038
|
-
|
|
11046
|
+
strokeWidth: "1.62432",
|
|
11047
|
+
strokeLinecap: "round"
|
|
11039
11048
|
}
|
|
11040
11049
|
),
|
|
11041
11050
|
/* @__PURE__ */ jsx(
|
|
@@ -11043,8 +11052,8 @@ const BadgeCertificationGold = ({
|
|
|
11043
11052
|
{
|
|
11044
11053
|
d: "M45.6327 21.7767C46.0983 23.3902 46.3041 25.1337 46.3041 26.823C46.3041 28.5123 46.0983 30.2557 45.6327 31.8692C45.167 33.4827 44.5606 35.0962 43.6835 36.5689C42.8064 38.0525 41.7993 39.3952 40.5864 40.5972C39.3736 41.8101 38.0308 42.8171 36.5581 43.6943C35.0746 44.5714 33.5369 45.1778 31.8584 45.6435",
|
|
11045
11054
|
stroke: "white",
|
|
11046
|
-
|
|
11047
|
-
|
|
11055
|
+
strokeWidth: "1.62432",
|
|
11056
|
+
strokeLinecap: "round"
|
|
11048
11057
|
}
|
|
11049
11058
|
),
|
|
11050
11059
|
/* @__PURE__ */ jsx(
|
|
@@ -11052,8 +11061,8 @@ const BadgeCertificationGold = ({
|
|
|
11052
11061
|
{
|
|
11053
11062
|
d: "M9.94115 17.0771C10.8183 15.5936 11.8254 14.2508 13.0382 13.0488C14.251 11.836 15.5938 10.8289 17.0665 9.95175C18.5501 9.07462 20.0878 8.4682 21.7662 8.00256C23.3797 7.53692 25.1232 7.33118 26.8125 7.33118C28.5017 7.33118 30.2452 7.53692 31.8587 8.00256C33.4722 8.4682 35.0857 9.07462 36.5584 9.95175C38.0419 10.8289 39.3847 11.836 40.5867 13.0488",
|
|
11054
11063
|
stroke: "white",
|
|
11055
|
-
|
|
11056
|
-
|
|
11064
|
+
strokeWidth: "1.62432",
|
|
11065
|
+
strokeLinecap: "round"
|
|
11057
11066
|
}
|
|
11058
11067
|
),
|
|
11059
11068
|
/* @__PURE__ */ jsx(
|
|
@@ -11061,8 +11070,8 @@ const BadgeCertificationGold = ({
|
|
|
11061
11070
|
{
|
|
11062
11071
|
d: "M40.8678 34.9447C40.1423 36.1792 39.2977 37.2946 38.2906 38.3016C37.2835 39.3087 36.1573 40.1534 34.9337 40.8789C33.6992 41.6044 32.4105 42.1134 31.0136 42.5032C29.6708 42.8931 28.209 43.0663 26.812 43.0663C25.4151 43.0663 23.9532 42.8931 22.6105 42.5032C21.2677 42.1134 19.9249 41.6044 18.6904 40.8789C17.4559 40.1534 16.3406 39.3087 15.3335 38.3016C14.3264 37.2946 13.4818 36.1684 12.7562 34.9447",
|
|
11063
11072
|
stroke: "white",
|
|
11064
|
-
|
|
11065
|
-
|
|
11073
|
+
strokeWidth: "1.62432",
|
|
11074
|
+
strokeLinecap: "round"
|
|
11066
11075
|
}
|
|
11067
11076
|
),
|
|
11068
11077
|
/* @__PURE__ */ jsx(
|
|
@@ -11070,8 +11079,8 @@ const BadgeCertificationGold = ({
|
|
|
11070
11079
|
{
|
|
11071
11080
|
d: "M31.014 11.1429C32.3568 11.5328 33.6995 12.0417 34.934 12.7673C36.1685 13.4928 37.2839 14.3374 38.291 15.3445C39.298 16.3516 40.1427 17.4778 40.8682 18.7015C41.5938 19.9359 42.1027 21.2246 42.4925 22.6215C42.8824 23.9643 43.0556 25.4262 43.0556 26.8231",
|
|
11072
11081
|
stroke: "white",
|
|
11073
|
-
|
|
11074
|
-
|
|
11082
|
+
strokeWidth: "1.62432",
|
|
11083
|
+
strokeLinecap: "round"
|
|
11075
11084
|
}
|
|
11076
11085
|
),
|
|
11077
11086
|
/* @__PURE__ */ jsx(
|
|
@@ -11079,8 +11088,8 @@ const BadgeCertificationGold = ({
|
|
|
11079
11088
|
{
|
|
11080
11089
|
d: "M10.5688 26.8231C10.5688 25.4262 10.742 23.9643 11.1319 22.6216C11.5217 21.2788 12.0307 19.936 12.7562 18.7015C13.4817 17.467 14.3264 16.3517 15.3335 15.3446C16.3405 14.3375 17.4667 13.4929 18.6904 12.7673",
|
|
11081
11090
|
stroke: "white",
|
|
11082
|
-
|
|
11083
|
-
|
|
11091
|
+
strokeWidth: "1.62432",
|
|
11092
|
+
strokeLinecap: "round"
|
|
11084
11093
|
}
|
|
11085
11094
|
),
|
|
11086
11095
|
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
|
|
@@ -11093,10 +11102,10 @@ const BadgeCertificationGold = ({
|
|
|
11093
11102
|
y2: "0.822974",
|
|
11094
11103
|
gradientUnits: "userSpaceOnUse",
|
|
11095
11104
|
children: [
|
|
11096
|
-
/* @__PURE__ */ jsx("stop", { offset: "0.173077",
|
|
11097
|
-
/* @__PURE__ */ jsx("stop", { offset: "0.365337",
|
|
11098
|
-
/* @__PURE__ */ jsx("stop", { offset: "0.542584",
|
|
11099
|
-
/* @__PURE__ */ jsx("stop", { offset: "0.826923",
|
|
11105
|
+
/* @__PURE__ */ jsx("stop", { offset: "0.173077", stopColor: "#EADA94" }),
|
|
11106
|
+
/* @__PURE__ */ jsx("stop", { offset: "0.365337", stopColor: "white" }),
|
|
11107
|
+
/* @__PURE__ */ jsx("stop", { offset: "0.542584", stopColor: "#F6EFD0" }),
|
|
11108
|
+
/* @__PURE__ */ jsx("stop", { offset: "0.826923", stopColor: "#EEE2AA" })
|
|
11100
11109
|
]
|
|
11101
11110
|
}
|
|
11102
11111
|
) })
|
|
@@ -12510,9 +12519,9 @@ const BadgeImperativePrimary = ({
|
|
|
12510
12519
|
{
|
|
12511
12520
|
d: "M9.68994 5.5V16.5023",
|
|
12512
12521
|
stroke: "white",
|
|
12513
|
-
|
|
12514
|
-
|
|
12515
|
-
|
|
12522
|
+
strokeWidth: "1.5",
|
|
12523
|
+
strokeLinecap: "round",
|
|
12524
|
+
strokeLinejoin: "round"
|
|
12516
12525
|
}
|
|
12517
12526
|
),
|
|
12518
12527
|
/* @__PURE__ */ jsx(
|
|
@@ -12520,9 +12529,9 @@ const BadgeImperativePrimary = ({
|
|
|
12520
12529
|
{
|
|
12521
12530
|
d: "M14.4542 8.25055L4.92627 13.7517",
|
|
12522
12531
|
stroke: "white",
|
|
12523
|
-
|
|
12524
|
-
|
|
12525
|
-
|
|
12532
|
+
strokeWidth: "1.5",
|
|
12533
|
+
strokeLinecap: "round",
|
|
12534
|
+
strokeLinejoin: "round"
|
|
12526
12535
|
}
|
|
12527
12536
|
),
|
|
12528
12537
|
/* @__PURE__ */ jsx(
|
|
@@ -12530,9 +12539,9 @@ const BadgeImperativePrimary = ({
|
|
|
12530
12539
|
{
|
|
12531
12540
|
d: "M4.92627 8.25055L14.4542 13.7517",
|
|
12532
12541
|
stroke: "white",
|
|
12533
|
-
|
|
12534
|
-
|
|
12535
|
-
|
|
12542
|
+
strokeWidth: "1.5",
|
|
12543
|
+
strokeLinecap: "round",
|
|
12544
|
+
strokeLinejoin: "round"
|
|
12536
12545
|
}
|
|
12537
12546
|
)
|
|
12538
12547
|
]
|
|
@@ -12556,7 +12565,7 @@ const BadgeImperativeSecondary = ({
|
|
|
12556
12565
|
{
|
|
12557
12566
|
d: "M19.2133 7.81921C19.2133 6.38498 18.4454 5.06051 17.2008 4.3479L11.5941 1.13788C10.3629 0.432974 8.85042 0.432974 7.61921 1.13788L2.01255 4.3479C0.767878 5.06051 0 6.38498 0 7.81921V14.1808C0 15.615 0.767878 16.9395 2.01255 17.6521L7.61921 20.8621C8.85042 21.567 10.3629 21.567 11.5941 20.8621L17.2008 17.6521C18.4454 16.9395 19.2133 15.615 19.2133 14.1808V7.81921Z",
|
|
12558
12567
|
fill: "#128BA6",
|
|
12559
|
-
|
|
12568
|
+
fillOpacity: "0.08"
|
|
12560
12569
|
}
|
|
12561
12570
|
),
|
|
12562
12571
|
/* @__PURE__ */ jsx(
|
|
@@ -12564,9 +12573,9 @@ const BadgeImperativeSecondary = ({
|
|
|
12564
12573
|
{
|
|
12565
12574
|
d: "M7.86719 1.57227C8.9445 0.955469 10.2684 0.955469 11.3457 1.57227L16.9521 4.78223C18.0412 5.40577 18.7129 6.56439 18.7129 7.81934V14.1807C18.7129 15.4356 18.0412 16.5942 16.9521 17.2178L11.3457 20.4277C10.2684 21.0445 8.9445 21.0445 7.86719 20.4277L2.26074 17.2178C1.17187 16.5942 0.5 15.4355 0.5 14.1807V7.81934C0.5 6.56452 1.17187 5.40582 2.26074 4.78223L7.86719 1.57227Z",
|
|
12566
12575
|
stroke: "#128BA6",
|
|
12567
|
-
|
|
12568
|
-
|
|
12569
|
-
|
|
12576
|
+
strokeOpacity: "0.16",
|
|
12577
|
+
strokeLinecap: "round",
|
|
12578
|
+
strokeLinejoin: "round"
|
|
12570
12579
|
}
|
|
12571
12580
|
),
|
|
12572
12581
|
/* @__PURE__ */ jsx(
|
|
@@ -12574,9 +12583,9 @@ const BadgeImperativeSecondary = ({
|
|
|
12574
12583
|
{
|
|
12575
12584
|
d: "M9.68994 5.5V16.5023",
|
|
12576
12585
|
stroke: "#0F748A",
|
|
12577
|
-
|
|
12578
|
-
|
|
12579
|
-
|
|
12586
|
+
strokeWidth: "1.5",
|
|
12587
|
+
strokeLinecap: "round",
|
|
12588
|
+
strokeLinejoin: "round"
|
|
12580
12589
|
}
|
|
12581
12590
|
),
|
|
12582
12591
|
/* @__PURE__ */ jsx(
|
|
@@ -12584,9 +12593,9 @@ const BadgeImperativeSecondary = ({
|
|
|
12584
12593
|
{
|
|
12585
12594
|
d: "M14.4542 8.25055L4.92627 13.7517",
|
|
12586
12595
|
stroke: "#0F748A",
|
|
12587
|
-
|
|
12588
|
-
|
|
12589
|
-
|
|
12596
|
+
strokeWidth: "1.5",
|
|
12597
|
+
strokeLinecap: "round",
|
|
12598
|
+
strokeLinejoin: "round"
|
|
12590
12599
|
}
|
|
12591
12600
|
),
|
|
12592
12601
|
/* @__PURE__ */ jsx(
|
|
@@ -12594,9 +12603,9 @@ const BadgeImperativeSecondary = ({
|
|
|
12594
12603
|
{
|
|
12595
12604
|
d: "M4.92627 8.25055L14.4542 13.7517",
|
|
12596
12605
|
stroke: "#0F748A",
|
|
12597
|
-
|
|
12598
|
-
|
|
12599
|
-
|
|
12606
|
+
strokeWidth: "1.5",
|
|
12607
|
+
strokeLinecap: "round",
|
|
12608
|
+
strokeLinejoin: "round"
|
|
12600
12609
|
}
|
|
12601
12610
|
)
|
|
12602
12611
|
]
|
|
@@ -13354,9 +13363,12 @@ const StandardNavigation = ({
|
|
|
13354
13363
|
};
|
|
13355
13364
|
const ALPHA_PATH = "M5.3387 0.0229882C5.37971 0.0229882 5.45295 0.0199228 5.5584 0.0137925C5.66386 0.00459714 5.74442 0 5.80007 0C6.72867 0 7.49908 0.269732 8.11131 0.809196C8.72354 1.34559 9.14097 2.09195 9.3636 3.04828C9.44855 3.47433 9.49835 3.96628 9.513 4.52414V5.16782C10.2014 4.07663 10.7287 2.85517 11.0948 1.50345C11.1505 1.29808 11.1959 1.17701 11.2311 1.14023C11.2662 1.10345 11.3761 1.08506 11.5606 1.08506C11.8535 1.08506 12 1.13563 12 1.23678C12 1.25211 11.9722 1.37778 11.9165 1.61379C11.5093 3.24751 10.7931 4.77701 9.76785 6.2023L9.53497 6.51034L9.55694 7.04368C9.59795 8.23295 9.72391 8.9318 9.93482 9.14023C9.97583 9.16782 10.0388 9.18161 10.1238 9.18161C10.32 9.15402 10.5031 9.06973 10.673 8.92874C10.8429 8.78774 10.963 8.62222 11.0333 8.43218C11.0597 8.32797 11.0948 8.26513 11.1388 8.24368C11.1798 8.22222 11.2852 8.21149 11.4551 8.21149C11.7364 8.21149 11.877 8.27739 11.877 8.40919C11.877 8.49808 11.8345 8.63142 11.7495 8.8092C11.5943 9.13103 11.3687 9.4069 11.0729 9.63678C10.777 9.8636 10.4475 9.97701 10.0842 9.97701H9.93482C8.97986 9.97701 8.3398 9.44674 8.01465 8.38621L7.95313 8.23448C7.20615 8.74942 6.79165 9.02835 6.70963 9.07126C5.66679 9.69042 4.61809 10 3.56353 10C2.56756 10 1.76346 9.70575 1.15123 9.11724C0.538997 8.52874 0.162578 7.75632 0.02197 6.8C0.0073233 6.71111 0 6.54866 0 6.31264C0 5.9295 0.02197 5.62146 0.0659099 5.38851C0.276822 4.06437 0.887587 2.8751 1.89821 1.82069C2.91175 0.769348 4.05859 0.170115 5.3387 0.0229882ZM1.83669 7.10805C1.83669 7.73946 1.9978 8.24368 2.32003 8.62069C2.64518 8.99464 3.09484 9.18161 3.66899 9.18161C4.03515 9.18161 4.44379 9.12337 4.89491 9.0069C5.6829 8.80153 6.44892 8.4046 7.19297 7.81609C7.29257 7.74253 7.38777 7.66437 7.47858 7.58161C7.56939 7.50192 7.64262 7.43295 7.69828 7.37471L7.78176 7.28276L7.76419 7.08506C7.76419 6.95326 7.75979 6.75862 7.75101 6.50115C7.74515 6.24368 7.74222 5.98927 7.74222 5.73793C7.72757 5.18008 7.71732 4.74636 7.71146 4.43678C7.70267 4.1272 7.67338 3.74866 7.62358 3.30115C7.57671 2.85364 7.5108 2.50728 7.42585 2.26207C7.3409 2.01992 7.22519 1.77471 7.07873 1.52644C6.92933 1.2751 6.73892 1.09425 6.50751 0.983908C6.27609 0.873563 6.00513 0.81839 5.69462 0.81839C4.72501 0.81839 3.87404 1.35479 3.14171 2.42759C2.79019 2.97318 2.49579 3.71647 2.25851 4.65747C1.9773 5.73333 1.83669 6.55019 1.83669 7.10805Z";
|
|
13356
13365
|
const PATH_LENGTH = 60;
|
|
13357
|
-
function AlphaIcon({
|
|
13366
|
+
function AlphaIcon({
|
|
13367
|
+
dark = false,
|
|
13368
|
+
className = ""
|
|
13369
|
+
}) {
|
|
13358
13370
|
if (dark) {
|
|
13359
|
-
return /* @__PURE__ */
|
|
13371
|
+
return /* @__PURE__ */ jsxs(
|
|
13360
13372
|
"svg",
|
|
13361
13373
|
{
|
|
13362
13374
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -13364,9 +13376,41 @@ function AlphaIcon({ dark = false }) {
|
|
|
13364
13376
|
height: "10",
|
|
13365
13377
|
viewBox: "0 0 12 10",
|
|
13366
13378
|
fill: "none",
|
|
13367
|
-
className: "mt-
|
|
13379
|
+
className: cn("mt-[6px]", className),
|
|
13368
13380
|
style: { overflow: "visible" },
|
|
13369
|
-
children:
|
|
13381
|
+
children: [
|
|
13382
|
+
/* @__PURE__ */ jsx(
|
|
13383
|
+
"path",
|
|
13384
|
+
{
|
|
13385
|
+
d: "M5.3387 0.0229882C5.37971 0.0229882 5.45295 0.0199228 5.5584 0.0137925C5.66386 0.00459714 5.74442 0 5.80007 0C6.72867 0 7.49908 0.269732 8.11131 0.809196C8.72354 1.34559 9.14097 2.09195 9.3636 3.04828C9.44855 3.47433 9.49835 3.96628 9.513 4.52414V5.16782C10.2014 4.07663 10.7287 2.85517 11.0948 1.50345C11.1505 1.29808 11.1959 1.17701 11.2311 1.14023C11.2662 1.10345 11.3761 1.08506 11.5606 1.08506C11.8535 1.08506 12 1.13563 12 1.23678C12 1.25211 11.9722 1.37778 11.9165 1.61379C11.5093 3.24751 10.7931 4.77701 9.76785 6.2023L9.53497 6.51034L9.55694 7.04368C9.59795 8.23295 9.72391 8.9318 9.93482 9.14023C9.97583 9.16782 10.0388 9.18161 10.1238 9.18161C10.32 9.15402 10.5031 9.06973 10.673 8.92874C10.8429 8.78774 10.963 8.62222 11.0333 8.43218C11.0597 8.32797 11.0948 8.26513 11.1388 8.24368C11.1798 8.22222 11.2852 8.21149 11.4551 8.21149C11.7364 8.21149 11.877 8.27739 11.877 8.40919C11.877 8.49808 11.8345 8.63142 11.7495 8.8092C11.5943 9.13103 11.3687 9.4069 11.0729 9.63678C10.777 9.8636 10.4475 9.97701 10.0842 9.97701H9.93482C8.97986 9.97701 8.3398 9.44674 8.01465 8.38621L7.95313 8.23448C7.20615 8.74942 6.79165 9.02835 6.70963 9.07126C5.66679 9.69042 4.61809 10 3.56353 10C2.56756 10 1.76346 9.70575 1.15123 9.11724C0.538997 8.52874 0.162578 7.75632 0.02197 6.8C0.0073233 6.71111 0 6.54866 0 6.31264C0 5.9295 0.02197 5.62146 0.0659099 5.38851C0.276822 4.06437 0.887587 2.8751 1.89821 1.82069C2.91175 0.769348 4.05859 0.170115 5.3387 0.0229882ZM1.83669 7.10805C1.83669 7.73946 1.9978 8.24368 2.32003 8.62069C2.64518 8.99464 3.09484 9.18161 3.66899 9.18161C4.03515 9.18161 4.44379 9.12337 4.89491 9.0069C5.6829 8.80153 6.44892 8.4046 7.19297 7.81609C7.29257 7.74253 7.38777 7.66437 7.47858 7.58161C7.56939 7.50192 7.64262 7.43295 7.69828 7.37471L7.78176 7.28276L7.76419 7.08506C7.76419 6.95326 7.75979 6.75862 7.75101 6.50115C7.74515 6.24368 7.74222 5.98927 7.74222 5.73793C7.72757 5.18008 7.71732 4.74636 7.71146 4.43678C7.70267 4.1272 7.67338 3.74866 7.62358 3.30115C7.57671 2.85364 7.5108 2.50728 7.42585 2.26207C7.3409 2.01992 7.22519 1.77471 7.07873 1.52644C6.92933 1.2751 6.73892 1.09425 6.50751 0.983908C6.27609 0.873563 6.00513 0.81839 5.69462 0.81839C4.72501 0.81839 3.87404 1.35479 3.14171 2.42759C2.79019 2.97318 2.49579 3.71647 2.25851 4.65747C1.9773 5.73333 1.83669 6.55019 1.83669 7.10805Z",
|
|
13386
|
+
fill: "url(#paint0_linear_12203_82399)"
|
|
13387
|
+
}
|
|
13388
|
+
),
|
|
13389
|
+
/* @__PURE__ */ jsx(
|
|
13390
|
+
"path",
|
|
13391
|
+
{
|
|
13392
|
+
d: "M5.3387 0.0229882C5.37971 0.0229882 5.45295 0.0199228 5.5584 0.0137925C5.66386 0.00459714 5.74442 0 5.80007 0C6.72867 0 7.49908 0.269732 8.11131 0.809196C8.72354 1.34559 9.14097 2.09195 9.3636 3.04828C9.44855 3.47433 9.49835 3.96628 9.513 4.52414V5.16782C10.2014 4.07663 10.7287 2.85517 11.0948 1.50345C11.1505 1.29808 11.1959 1.17701 11.2311 1.14023C11.2662 1.10345 11.3761 1.08506 11.5606 1.08506C11.8535 1.08506 12 1.13563 12 1.23678C12 1.25211 11.9722 1.37778 11.9165 1.61379C11.5093 3.24751 10.7931 4.77701 9.76785 6.2023L9.53497 6.51034L9.55694 7.04368C9.59795 8.23295 9.72391 8.9318 9.93482 9.14023C9.97583 9.16782 10.0388 9.18161 10.1238 9.18161C10.32 9.15402 10.5031 9.06973 10.673 8.92874C10.8429 8.78774 10.963 8.62222 11.0333 8.43218C11.0597 8.32797 11.0948 8.26513 11.1388 8.24368C11.1798 8.22222 11.2852 8.21149 11.4551 8.21149C11.7364 8.21149 11.877 8.27739 11.877 8.40919C11.877 8.49808 11.8345 8.63142 11.7495 8.8092C11.5943 9.13103 11.3687 9.4069 11.0729 9.63678C10.777 9.8636 10.4475 9.97701 10.0842 9.97701H9.93482C8.97986 9.97701 8.3398 9.44674 8.01465 8.38621L7.95313 8.23448C7.20615 8.74942 6.79165 9.02835 6.70963 9.07126C5.66679 9.69042 4.61809 10 3.56353 10C2.56756 10 1.76346 9.70575 1.15123 9.11724C0.538997 8.52874 0.162578 7.75632 0.02197 6.8C0.0073233 6.71111 0 6.54866 0 6.31264C0 5.9295 0.02197 5.62146 0.0659099 5.38851C0.276822 4.06437 0.887587 2.8751 1.89821 1.82069C2.91175 0.769348 4.05859 0.170115 5.3387 0.0229882ZM1.83669 7.10805C1.83669 7.73946 1.9978 8.24368 2.32003 8.62069C2.64518 8.99464 3.09484 9.18161 3.66899 9.18161C4.03515 9.18161 4.44379 9.12337 4.89491 9.0069C5.6829 8.80153 6.44892 8.4046 7.19297 7.81609C7.29257 7.74253 7.38777 7.66437 7.47858 7.58161C7.56939 7.50192 7.64262 7.43295 7.69828 7.37471L7.78176 7.28276L7.76419 7.08506C7.76419 6.95326 7.75979 6.75862 7.75101 6.50115C7.74515 6.24368 7.74222 5.98927 7.74222 5.73793C7.72757 5.18008 7.71732 4.74636 7.71146 4.43678C7.70267 4.1272 7.67338 3.74866 7.62358 3.30115C7.57671 2.85364 7.5108 2.50728 7.42585 2.26207C7.3409 2.01992 7.22519 1.77471 7.07873 1.52644C6.92933 1.2751 6.73892 1.09425 6.50751 0.983908C6.27609 0.873563 6.00513 0.81839 5.69462 0.81839C4.72501 0.81839 3.87404 1.35479 3.14171 2.42759C2.79019 2.97318 2.49579 3.71647 2.25851 4.65747C1.9773 5.73333 1.83669 6.55019 1.83669 7.10805Z",
|
|
13393
|
+
fill: "#282A31",
|
|
13394
|
+
fillOpacity: "0.2"
|
|
13395
|
+
}
|
|
13396
|
+
),
|
|
13397
|
+
/* @__PURE__ */ jsx("defs", { children: /* @__PURE__ */ jsxs(
|
|
13398
|
+
"linearGradient",
|
|
13399
|
+
{
|
|
13400
|
+
id: "paint0_linear_12203_82399",
|
|
13401
|
+
x1: "-3.27254",
|
|
13402
|
+
y1: "4.99923",
|
|
13403
|
+
x2: "6.36738",
|
|
13404
|
+
y2: "-2.36962",
|
|
13405
|
+
gradientUnits: "userSpaceOnUse",
|
|
13406
|
+
children: [
|
|
13407
|
+
/* @__PURE__ */ jsx("stop", { "stop-color": "#8AEFDB" }),
|
|
13408
|
+
/* @__PURE__ */ jsx("stop", { offset: "0.5", stopColor: "#D4BACE" }),
|
|
13409
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#CBE0F1" })
|
|
13410
|
+
]
|
|
13411
|
+
}
|
|
13412
|
+
) })
|
|
13413
|
+
]
|
|
13370
13414
|
}
|
|
13371
13415
|
);
|
|
13372
13416
|
}
|
|
@@ -13378,7 +13422,7 @@ function AlphaIcon({ dark = false }) {
|
|
|
13378
13422
|
height: "10",
|
|
13379
13423
|
viewBox: "0 0 12 10",
|
|
13380
13424
|
fill: "none",
|
|
13381
|
-
className: "mt-
|
|
13425
|
+
className: cn("mt-[6px]", className),
|
|
13382
13426
|
style: { overflow: "visible" },
|
|
13383
13427
|
children: [
|
|
13384
13428
|
/* @__PURE__ */ jsx("path", { d: ALPHA_PATH, fill: "url(#paint0_linear_nav)", opacity: "0.4" }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syscore/ui-library",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.22.0",
|
|
4
4
|
"description": "A comprehensive React component library built with Radix UI, Tailwind CSS, and TypeScript",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
@@ -130,5 +130,13 @@
|
|
|
130
130
|
"typecheck": "tsc",
|
|
131
131
|
"publish:npm": "npm run build:ui && npm publish"
|
|
132
132
|
},
|
|
133
|
-
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
|
|
133
|
+
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
|
|
134
|
+
"overrides": {
|
|
135
|
+
"axios": "1.13.6"
|
|
136
|
+
},
|
|
137
|
+
"pnpm": {
|
|
138
|
+
"overrides": {
|
|
139
|
+
"axios": "1.13.6"
|
|
140
|
+
}
|
|
141
|
+
}
|
|
134
142
|
}
|