@syscore/ui-library 1.3.7 → 1.4.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/ConceptIcons.tsx +2 -74
- package/client/components/ui/hero-section.tsx +45 -0
- package/client/components/ui/navigation.tsx +237 -76
- package/client/global.css +14 -3
- package/client/lib/concept-colors.ts +115 -0
- package/client/lib/concept-icons.ts +45 -0
- package/client/ui/Card.stories.tsx +2 -98
- package/client/ui/Hero.stories.tsx +72 -0
- package/client/ui/Navigation.stories.tsx +30 -21
- package/client/ui/Panel.stories.tsx +480 -0
- package/dist/img/half-sphere.png +0 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.es.js +372 -219
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
|
@@ -26,7 +26,7 @@ import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
|
|
|
26
26
|
import * as AvatarPrimitive from "@radix-ui/react-avatar";
|
|
27
27
|
import * as ProgressPrimitive from "@radix-ui/react-progress";
|
|
28
28
|
import { DayPicker } from "react-day-picker";
|
|
29
|
-
import {
|
|
29
|
+
import { AnimatePresence, motion } from "motion/react";
|
|
30
30
|
import { Command as Command$1 } from "cmdk";
|
|
31
31
|
import * as TabsPrimitive from "@radix-ui/react-tabs";
|
|
32
32
|
import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu";
|
|
@@ -2038,50 +2038,6 @@ function Calendar({
|
|
|
2038
2038
|
);
|
|
2039
2039
|
}
|
|
2040
2040
|
Calendar.displayName = "Calendar";
|
|
2041
|
-
const UtilityClose = ({ className }) => {
|
|
2042
|
-
return /* @__PURE__ */ jsx(
|
|
2043
|
-
"div",
|
|
2044
|
-
{
|
|
2045
|
-
className: cn(
|
|
2046
|
-
"size-4 flex items-center justify-center text-gray-500",
|
|
2047
|
-
className
|
|
2048
|
-
),
|
|
2049
|
-
children: /* @__PURE__ */ jsxs(
|
|
2050
|
-
"svg",
|
|
2051
|
-
{
|
|
2052
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
2053
|
-
width: "12",
|
|
2054
|
-
height: "12",
|
|
2055
|
-
viewBox: "0 0 12 12",
|
|
2056
|
-
fill: "none",
|
|
2057
|
-
className: cn("size-3 text-inherit"),
|
|
2058
|
-
children: [
|
|
2059
|
-
/* @__PURE__ */ jsx(
|
|
2060
|
-
"path",
|
|
2061
|
-
{
|
|
2062
|
-
d: "M10.8002 1.19995L1.2002 10.8",
|
|
2063
|
-
stroke: "currentColor",
|
|
2064
|
-
strokeWidth: "1.5",
|
|
2065
|
-
strokeLinecap: "round",
|
|
2066
|
-
strokeLinejoin: "round"
|
|
2067
|
-
}
|
|
2068
|
-
),
|
|
2069
|
-
/* @__PURE__ */ jsx(
|
|
2070
|
-
"path",
|
|
2071
|
-
{
|
|
2072
|
-
d: "M1.2002 1.19995L10.8002 10.8",
|
|
2073
|
-
stroke: "currentColor",
|
|
2074
|
-
strokeWidth: "1.5",
|
|
2075
|
-
strokeLinecap: "round",
|
|
2076
|
-
strokeLinejoin: "round"
|
|
2077
|
-
}
|
|
2078
|
-
)
|
|
2079
|
-
]
|
|
2080
|
-
}
|
|
2081
|
-
)
|
|
2082
|
-
}
|
|
2083
|
-
);
|
|
2084
|
-
};
|
|
2085
2041
|
const NavLogo = ({ dark = false }) => {
|
|
2086
2042
|
return /* @__PURE__ */ jsxs(
|
|
2087
2043
|
"svg",
|
|
@@ -2170,12 +2126,257 @@ const NavBullet = ({ color }) => {
|
|
|
2170
2126
|
}
|
|
2171
2127
|
);
|
|
2172
2128
|
};
|
|
2129
|
+
const UtilityClearRegular = ({
|
|
2130
|
+
className
|
|
2131
|
+
}) => {
|
|
2132
|
+
return /* @__PURE__ */ jsx(
|
|
2133
|
+
"div",
|
|
2134
|
+
{
|
|
2135
|
+
className: cn(
|
|
2136
|
+
"size-4 flex items-center justify-center text-gray-500",
|
|
2137
|
+
className
|
|
2138
|
+
),
|
|
2139
|
+
children: /* @__PURE__ */ jsxs(
|
|
2140
|
+
"svg",
|
|
2141
|
+
{
|
|
2142
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2143
|
+
width: "14",
|
|
2144
|
+
height: "14",
|
|
2145
|
+
viewBox: "0 0 14 14",
|
|
2146
|
+
fill: "none",
|
|
2147
|
+
className: cn("size-[14px] text-inherit"),
|
|
2148
|
+
children: [
|
|
2149
|
+
/* @__PURE__ */ jsx(
|
|
2150
|
+
"path",
|
|
2151
|
+
{
|
|
2152
|
+
d: "M6.65039 12.65L0.650391 6.65L6.65039 0.65",
|
|
2153
|
+
stroke: "currentColor",
|
|
2154
|
+
strokeWidth: "1.3",
|
|
2155
|
+
strokeLinecap: "round",
|
|
2156
|
+
strokeLinejoin: "round"
|
|
2157
|
+
}
|
|
2158
|
+
),
|
|
2159
|
+
/* @__PURE__ */ jsx(
|
|
2160
|
+
"path",
|
|
2161
|
+
{
|
|
2162
|
+
d: "M12.6504 6.65H0.650391",
|
|
2163
|
+
stroke: "currentColor",
|
|
2164
|
+
strokeWidth: "1.3",
|
|
2165
|
+
strokeLinecap: "round",
|
|
2166
|
+
strokeLinejoin: "round"
|
|
2167
|
+
}
|
|
2168
|
+
)
|
|
2169
|
+
]
|
|
2170
|
+
}
|
|
2171
|
+
)
|
|
2172
|
+
}
|
|
2173
|
+
);
|
|
2174
|
+
};
|
|
2175
|
+
const StandardLogo = ({ className = "" }) => {
|
|
2176
|
+
return /* @__PURE__ */ jsxs(
|
|
2177
|
+
"svg",
|
|
2178
|
+
{
|
|
2179
|
+
width: "93",
|
|
2180
|
+
height: "18",
|
|
2181
|
+
viewBox: "0 0 93 18",
|
|
2182
|
+
fill: "none",
|
|
2183
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2184
|
+
className: cn("text-gray-700", className),
|
|
2185
|
+
children: [
|
|
2186
|
+
/* @__PURE__ */ jsx(
|
|
2187
|
+
"path",
|
|
2188
|
+
{
|
|
2189
|
+
d: "M87.4833 17.1541C84.5265 17.1541 82.2737 14.8309 82.2737 11.7333C82.2737 8.63573 84.5265 6.31253 87.4833 6.31253C89.4779 6.31253 91.1675 7.36853 92.0358 9.0112V0.281599C92.0358 0.117333 92.1531 0 92.3174 0H92.599C92.7633 0 92.8806 0.117333 92.8806 0.281599V16.7317C92.8806 16.896 92.7633 17.0133 92.599 17.0133H92.3174C92.1531 17.0133 92.0358 16.896 92.0358 16.7317V14.4555C91.1675 16.0981 89.4779 17.1541 87.4833 17.1541ZM87.5771 7.1808C85.0662 7.1808 83.1419 9.12853 83.1419 11.7333C83.1419 14.3381 85.0662 16.3093 87.5771 16.3093C90.0881 16.3093 91.9889 14.3381 91.9889 11.7333C91.9889 9.12853 90.0881 7.1808 87.5771 7.1808Z",
|
|
2190
|
+
fill: "currentColor"
|
|
2191
|
+
}
|
|
2192
|
+
),
|
|
2193
|
+
/* @__PURE__ */ jsx(
|
|
2194
|
+
"path",
|
|
2195
|
+
{
|
|
2196
|
+
d: "M75.8349 17.0133C75.6706 17.0133 75.5298 16.896 75.5298 16.7317V6.73493C75.5298 6.57067 75.6706 6.45333 75.8349 6.45333H76.1165C76.2807 6.45333 76.3981 6.57067 76.3981 6.73493V8.63573C76.8674 7.8144 78.0642 6.4064 80.7629 6.31253C80.9037 6.31253 81.0445 6.42987 81.0445 6.59413V6.94613C81.0445 7.1104 80.9271 7.20427 80.7629 7.20427C80.6925 7.1808 80.6455 7.1808 80.5751 7.1808C78.2285 7.1808 76.3981 8.77653 76.3981 10.8885V16.7317C76.3981 16.896 76.2807 17.0133 76.1165 17.0133H75.8349Z",
|
|
2197
|
+
fill: "currentColor"
|
|
2198
|
+
}
|
|
2199
|
+
),
|
|
2200
|
+
/* @__PURE__ */ jsx(
|
|
2201
|
+
"path",
|
|
2202
|
+
{
|
|
2203
|
+
d: "M66.4457 17.1541C63.4889 17.1541 61.2361 14.8309 61.2361 11.7333C61.2361 8.63573 63.4889 6.31253 66.4457 6.31253C68.4403 6.31253 70.13 7.36853 70.9982 9.0112V6.73493C70.9982 6.57067 71.1156 6.45333 71.2798 6.45333H71.5849C71.7257 6.45333 71.8665 6.57067 71.8665 6.73493V16.7317C71.8665 16.896 71.7257 17.0133 71.5849 17.0133H71.2798C71.1156 17.0133 70.9982 16.896 70.9982 16.7317V14.4555C70.13 16.0981 68.4403 17.1541 66.4457 17.1541ZM66.5396 7.1808C64.0286 7.1808 62.1044 9.12853 62.1044 11.7333C62.1044 14.3381 64.0286 16.3093 66.5396 16.3093C69.0505 16.3093 70.9513 14.3381 70.9513 11.7333C70.9513 9.12853 69.0505 7.1808 66.5396 7.1808Z",
|
|
2204
|
+
fill: "currentColor"
|
|
2205
|
+
}
|
|
2206
|
+
),
|
|
2207
|
+
/* @__PURE__ */ jsx(
|
|
2208
|
+
"path",
|
|
2209
|
+
{
|
|
2210
|
+
d: "M52.8561 17.1541C49.8993 17.1541 47.6465 14.8309 47.6465 11.7333C47.6465 8.63573 49.8993 6.31253 52.8561 6.31253C54.8507 6.31253 56.5404 7.36853 57.4086 9.0112V0.281599C57.4086 0.117333 57.526 0 57.6902 0H57.9718C58.1361 0 58.2534 0.117333 58.2534 0.281599V16.7317C58.2534 16.896 58.1361 17.0133 57.9718 17.0133H57.6902C57.526 17.0133 57.4086 16.896 57.4086 16.7317V14.4555C56.5404 16.0981 54.8507 17.1541 52.8561 17.1541ZM52.95 7.1808C50.439 7.1808 48.5148 9.12853 48.5148 11.7333C48.5148 14.3381 50.439 16.3093 52.95 16.3093C55.4609 16.3093 57.3617 14.3381 57.3617 11.7333C57.3617 9.12853 55.4609 7.1808 52.95 7.1808Z",
|
|
2211
|
+
fill: "currentColor"
|
|
2212
|
+
}
|
|
2213
|
+
),
|
|
2214
|
+
/* @__PURE__ */ jsx(
|
|
2215
|
+
"path",
|
|
2216
|
+
{
|
|
2217
|
+
d: "M35.5473 17.0133C35.383 17.0133 35.2422 16.896 35.2422 16.7317V6.73493C35.2422 6.57067 35.383 6.45333 35.5473 6.45333H35.8289C35.9931 6.45333 36.1105 6.57067 36.1105 6.73493V8.75307C36.5329 7.90827 37.7297 6.31253 40.4518 6.31253C42.9393 6.31253 44.7697 8.14293 44.7697 10.6304V16.7317C44.7697 16.896 44.6523 17.0133 44.4881 17.0133H44.2065C44.0422 17.0133 43.9249 16.896 43.9249 16.7317V10.7712C43.9249 8.70613 42.3526 7.13387 40.2875 7.13387C37.9409 7.13387 36.1105 8.75307 36.1105 10.8416V16.7317C36.1105 16.896 35.9931 17.0133 35.8289 17.0133H35.5473Z",
|
|
2218
|
+
fill: "currentColor"
|
|
2219
|
+
}
|
|
2220
|
+
),
|
|
2221
|
+
/* @__PURE__ */ jsx(
|
|
2222
|
+
"path",
|
|
2223
|
+
{
|
|
2224
|
+
d: "M26.1583 17.1541C23.2015 17.1541 20.9487 14.8309 20.9487 11.7333C20.9487 8.63573 23.2015 6.31253 26.1583 6.31253C28.153 6.31253 29.8426 7.36853 30.7109 9.0112V6.73493C30.7109 6.57067 30.8282 6.45333 30.9925 6.45333H31.2975C31.4383 6.45333 31.5791 6.57067 31.5791 6.73493V16.7317C31.5791 16.896 31.4383 17.0133 31.2975 17.0133H30.9925C30.8282 17.0133 30.7109 16.896 30.7109 16.7317V14.4555C29.8426 16.0981 28.153 17.1541 26.1583 17.1541ZM26.2522 7.1808C23.7413 7.1808 21.817 9.12853 21.817 11.7333C21.817 14.3381 23.7413 16.3093 26.2522 16.3093C28.7631 16.3093 30.6639 14.3381 30.6639 11.7333C30.6639 9.12853 28.7631 7.1808 26.2522 7.1808Z",
|
|
2225
|
+
fill: "currentColor"
|
|
2226
|
+
}
|
|
2227
|
+
),
|
|
2228
|
+
/* @__PURE__ */ jsx(
|
|
2229
|
+
"path",
|
|
2230
|
+
{
|
|
2231
|
+
d: "M13.285 7.2512C13.1208 7.2512 13.0034 7.13387 13.0034 6.9696V6.73493C13.0034 6.57067 13.1208 6.45333 13.285 6.45333H14.9277V4.41173C14.9277 4.24747 15.045 4.13013 15.2093 4.13013H15.4909C15.6552 4.13013 15.7725 4.24747 15.7725 4.41173V6.45333H18.7997C18.964 6.45333 19.0813 6.57067 19.0813 6.73493V6.9696C19.0813 7.13387 18.964 7.2512 18.7997 7.2512H15.7725V14.08C15.7725 15.2768 16.5234 16.1685 17.5325 16.1685H18.7762C18.9405 16.1685 19.0578 16.2859 19.0578 16.4501V16.7317C19.0578 16.896 18.9405 17.0133 18.7762 17.0133H17.4856C16.0306 17.0133 14.9277 15.7696 14.9277 14.1504V7.2512H13.285Z",
|
|
2232
|
+
fill: "currentColor"
|
|
2233
|
+
}
|
|
2234
|
+
),
|
|
2235
|
+
/* @__PURE__ */ jsx(
|
|
2236
|
+
"path",
|
|
2237
|
+
{
|
|
2238
|
+
d: "M9.84461 4.576C9.46915 3.0272 7.73262 1.9008 5.55022 1.9008C3.10968 1.9008 1.25581 3.28533 1.25581 5.2096C1.25581 7.29813 3.46168 7.90827 5.83182 8.47147C8.38968 9.0112 11.1587 9.83253 11.1587 12.6955C11.1587 15.3237 8.78862 17.1776 5.59715 17.1776C2.73422 17.1776 0.551815 15.6992 0.0120816 13.6576C-0.0348519 13.5168 0.0590148 13.376 0.223281 13.3291L0.598748 13.1883C0.622215 13.1883 0.645682 13.1883 0.645682 13.1883C0.763015 13.1883 0.856881 13.2587 0.903815 13.376C1.32621 15.0656 3.18008 16.2859 5.59715 16.2859C8.24888 16.2859 10.2435 14.8075 10.2435 12.7424C10.2435 10.6069 8.08462 9.90294 5.64408 9.38667C3.20355 8.82347 0.364081 8.07253 0.364081 5.23307C0.364081 2.7456 2.54648 1.03253 5.52675 1.03253C8.17848 1.03253 10.2201 2.3936 10.7598 4.2944C10.8067 4.4352 10.7129 4.576 10.5486 4.62294L10.1497 4.76373C10.0323 4.7872 9.91501 4.7168 9.84461 4.576Z",
|
|
2239
|
+
fill: "currentColor"
|
|
2240
|
+
}
|
|
2241
|
+
)
|
|
2242
|
+
]
|
|
2243
|
+
}
|
|
2244
|
+
);
|
|
2245
|
+
};
|
|
2246
|
+
const NavLink = React.forwardRef(
|
|
2247
|
+
({ href, LinkComponent, onLinkClick, children, ...props }, ref) => {
|
|
2248
|
+
if (LinkComponent) {
|
|
2249
|
+
return /* @__PURE__ */ jsx(
|
|
2250
|
+
LinkComponent,
|
|
2251
|
+
{
|
|
2252
|
+
href,
|
|
2253
|
+
className: props.className,
|
|
2254
|
+
"aria-label": props["aria-label"],
|
|
2255
|
+
children
|
|
2256
|
+
}
|
|
2257
|
+
);
|
|
2258
|
+
}
|
|
2259
|
+
if (onLinkClick) {
|
|
2260
|
+
return /* @__PURE__ */ jsx(
|
|
2261
|
+
"a",
|
|
2262
|
+
{
|
|
2263
|
+
ref,
|
|
2264
|
+
href,
|
|
2265
|
+
...props,
|
|
2266
|
+
onClick: (e) => {
|
|
2267
|
+
e.preventDefault();
|
|
2268
|
+
onLinkClick(href);
|
|
2269
|
+
},
|
|
2270
|
+
children
|
|
2271
|
+
}
|
|
2272
|
+
);
|
|
2273
|
+
}
|
|
2274
|
+
return /* @__PURE__ */ jsx("a", { ref, href, ...props, children });
|
|
2275
|
+
}
|
|
2276
|
+
);
|
|
2277
|
+
NavLink.displayName = "NavLink";
|
|
2278
|
+
const ALPHA_PATH$1 = "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";
|
|
2279
|
+
const PATH_LENGTH$1 = 60;
|
|
2280
|
+
const AlphaIcon$1 = ({ dark }) => {
|
|
2281
|
+
if (dark) {
|
|
2282
|
+
return /* @__PURE__ */ jsx(
|
|
2283
|
+
"svg",
|
|
2284
|
+
{
|
|
2285
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2286
|
+
width: "12",
|
|
2287
|
+
height: "10",
|
|
2288
|
+
viewBox: "0 0 12 10",
|
|
2289
|
+
fill: "none",
|
|
2290
|
+
className: "mt-1.5",
|
|
2291
|
+
style: { overflow: "visible" },
|
|
2292
|
+
children: /* @__PURE__ */ jsx("path", { d: ALPHA_PATH$1, fill: "currentColor" })
|
|
2293
|
+
}
|
|
2294
|
+
);
|
|
2295
|
+
}
|
|
2296
|
+
return /* @__PURE__ */ jsxs(
|
|
2297
|
+
"svg",
|
|
2298
|
+
{
|
|
2299
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2300
|
+
width: "12",
|
|
2301
|
+
height: "10",
|
|
2302
|
+
viewBox: "0 0 12 10",
|
|
2303
|
+
fill: "none",
|
|
2304
|
+
className: "mt-1.5",
|
|
2305
|
+
style: { overflow: "visible" },
|
|
2306
|
+
children: [
|
|
2307
|
+
/* @__PURE__ */ jsx(
|
|
2308
|
+
"path",
|
|
2309
|
+
{
|
|
2310
|
+
d: ALPHA_PATH$1,
|
|
2311
|
+
fill: "url(#paint0_linear_10081_30848)",
|
|
2312
|
+
opacity: "0.4"
|
|
2313
|
+
}
|
|
2314
|
+
),
|
|
2315
|
+
/* @__PURE__ */ jsx(
|
|
2316
|
+
motion.path,
|
|
2317
|
+
{
|
|
2318
|
+
d: ALPHA_PATH$1,
|
|
2319
|
+
fill: "none",
|
|
2320
|
+
stroke: "url(#stroke_gradient)",
|
|
2321
|
+
strokeWidth: "0.4",
|
|
2322
|
+
strokeLinecap: "round",
|
|
2323
|
+
strokeLinejoin: "round",
|
|
2324
|
+
initial: { strokeDashoffset: PATH_LENGTH$1 },
|
|
2325
|
+
animate: { strokeDashoffset: -PATH_LENGTH$1 },
|
|
2326
|
+
style: { strokeDasharray: `8 ${PATH_LENGTH$1 - 8}` },
|
|
2327
|
+
transition: {
|
|
2328
|
+
duration: 2,
|
|
2329
|
+
repeat: Infinity,
|
|
2330
|
+
repeatDelay: 8,
|
|
2331
|
+
ease: "linear"
|
|
2332
|
+
}
|
|
2333
|
+
}
|
|
2334
|
+
),
|
|
2335
|
+
/* @__PURE__ */ jsxs("defs", { children: [
|
|
2336
|
+
/* @__PURE__ */ jsxs(
|
|
2337
|
+
"linearGradient",
|
|
2338
|
+
{
|
|
2339
|
+
id: "paint0_linear_10081_30848",
|
|
2340
|
+
x1: "-3.27254",
|
|
2341
|
+
y1: "4.99923",
|
|
2342
|
+
x2: "6.36738",
|
|
2343
|
+
y2: "-2.36962",
|
|
2344
|
+
gradientUnits: "userSpaceOnUse",
|
|
2345
|
+
children: [
|
|
2346
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#8AEFDB" }),
|
|
2347
|
+
/* @__PURE__ */ jsx("stop", { offset: "0.5", stopColor: "#D4BACE" }),
|
|
2348
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#CBE0F1" })
|
|
2349
|
+
]
|
|
2350
|
+
}
|
|
2351
|
+
),
|
|
2352
|
+
/* @__PURE__ */ jsxs(
|
|
2353
|
+
"linearGradient",
|
|
2354
|
+
{
|
|
2355
|
+
id: "stroke_gradient",
|
|
2356
|
+
x1: "0",
|
|
2357
|
+
y1: "0",
|
|
2358
|
+
x2: "12",
|
|
2359
|
+
y2: "10",
|
|
2360
|
+
gradientUnits: "userSpaceOnUse",
|
|
2361
|
+
children: [
|
|
2362
|
+
/* @__PURE__ */ jsx("stop", { stopColor: "#8AEFDB" }),
|
|
2363
|
+
/* @__PURE__ */ jsx("stop", { offset: "0.5", stopColor: "#D4BACE" }),
|
|
2364
|
+
/* @__PURE__ */ jsx("stop", { offset: "1", stopColor: "#CBE0F1" })
|
|
2365
|
+
]
|
|
2366
|
+
}
|
|
2367
|
+
)
|
|
2368
|
+
] })
|
|
2369
|
+
]
|
|
2370
|
+
}
|
|
2371
|
+
);
|
|
2372
|
+
};
|
|
2173
2373
|
const Navigation = ({
|
|
2174
2374
|
navItems,
|
|
2175
2375
|
isStrategy = false,
|
|
2176
2376
|
Link: LinkComponent,
|
|
2177
2377
|
onLinkClick,
|
|
2178
|
-
onClose
|
|
2378
|
+
onClose,
|
|
2379
|
+
pathname
|
|
2179
2380
|
}) => {
|
|
2180
2381
|
const [isOpen, setIsOpen] = React.useState(false);
|
|
2181
2382
|
const [activeItem, setActiveItem] = React.useState(null);
|
|
@@ -2183,6 +2384,7 @@ const Navigation = ({
|
|
|
2183
2384
|
const menuRef = React.useRef(null);
|
|
2184
2385
|
const menuItemsRef = React.useRef(null);
|
|
2185
2386
|
const overlayRef = React.useRef(null);
|
|
2387
|
+
const isHomepage = pathname === "/";
|
|
2186
2388
|
const handleMouseLeave = () => {
|
|
2187
2389
|
setIsOpen(false);
|
|
2188
2390
|
setActiveItem(null);
|
|
@@ -2191,7 +2393,7 @@ const Navigation = ({
|
|
|
2191
2393
|
setIsOpen(true);
|
|
2192
2394
|
setActiveItem(index + 1);
|
|
2193
2395
|
};
|
|
2194
|
-
const
|
|
2396
|
+
const NavLink2 = ({ href, className, "aria-label": ariaLabel, children }) => {
|
|
2195
2397
|
if (LinkComponent) {
|
|
2196
2398
|
return /* @__PURE__ */ jsx(LinkComponent, { href, className, "aria-label": ariaLabel, children });
|
|
2197
2399
|
}
|
|
@@ -2230,33 +2432,45 @@ const Navigation = ({
|
|
|
2230
2432
|
),
|
|
2231
2433
|
/* @__PURE__ */ jsxs("div", { className: "navigation-container", children: [
|
|
2232
2434
|
/* @__PURE__ */ jsxs("div", { className: "navigation-logo-container", children: [
|
|
2233
|
-
|
|
2234
|
-
|
|
2435
|
+
/* @__PURE__ */ jsx(AnimatePresence, { mode: "popLayout", children: !isHomepage && /* @__PURE__ */ jsx(
|
|
2436
|
+
motion.div,
|
|
2235
2437
|
{
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2438
|
+
layout: true,
|
|
2439
|
+
initial: { opacity: 0, scale: 0.8 },
|
|
2440
|
+
animate: { opacity: 1, scale: 1 },
|
|
2441
|
+
exit: { opacity: 0, scale: 0.8 },
|
|
2442
|
+
transition: { duration: 0.2, ease: "easeOut" },
|
|
2443
|
+
style: { willChange: "transform, opacity" },
|
|
2444
|
+
children: /* @__PURE__ */ jsx(
|
|
2445
|
+
Button,
|
|
2446
|
+
{
|
|
2447
|
+
size: "icon",
|
|
2448
|
+
className: " mr-6",
|
|
2449
|
+
onClick: () => onClose == null ? void 0 : onClose(),
|
|
2450
|
+
children: /* @__PURE__ */ jsx(UtilityClearRegular, {})
|
|
2244
2451
|
}
|
|
2245
|
-
|
|
2246
|
-
children: /* @__PURE__ */ jsx(UtilityClose, { className: "navigation-close-icon" })
|
|
2452
|
+
)
|
|
2247
2453
|
}
|
|
2248
|
-
)
|
|
2454
|
+
) }),
|
|
2249
2455
|
/* @__PURE__ */ jsx(
|
|
2250
|
-
|
|
2456
|
+
motion.div,
|
|
2251
2457
|
{
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2458
|
+
layout: true,
|
|
2459
|
+
transition: { duration: 0.2, ease: "easeOut" },
|
|
2460
|
+
children: /* @__PURE__ */ jsxs(
|
|
2461
|
+
NavLink2,
|
|
2462
|
+
{
|
|
2463
|
+
href: "/",
|
|
2464
|
+
className: cn("navigation-logo-link"),
|
|
2465
|
+
"data-strategy": isStrategy,
|
|
2466
|
+
"aria-label": "Home",
|
|
2467
|
+
children: [
|
|
2468
|
+
/* @__PURE__ */ jsx(NavLogo, { dark: isStrategy }),
|
|
2469
|
+
/* @__PURE__ */ jsx(StandardLogo, { className: cn(!isStrategy ? "text-white" : "text-black") }),
|
|
2470
|
+
/* @__PURE__ */ jsx(AlphaIcon$1, { dark: isStrategy })
|
|
2471
|
+
]
|
|
2472
|
+
}
|
|
2473
|
+
)
|
|
2260
2474
|
}
|
|
2261
2475
|
)
|
|
2262
2476
|
] }),
|
|
@@ -2316,11 +2530,11 @@ const Navigation = ({
|
|
|
2316
2530
|
index + 1
|
|
2317
2531
|
)) : null }) }) : null,
|
|
2318
2532
|
/* @__PURE__ */ jsx("div", { className: "navigation-actions", children: /* @__PURE__ */ jsx(
|
|
2319
|
-
|
|
2533
|
+
NavLink2,
|
|
2320
2534
|
{
|
|
2321
2535
|
href: "/",
|
|
2322
2536
|
"aria-label": "Account link",
|
|
2323
|
-
className: "navigation-account-link",
|
|
2537
|
+
className: cn("navigation-account-link", isStrategy && "navigation-account-link--strategy"),
|
|
2324
2538
|
"data-open": isOpen,
|
|
2325
2539
|
"data-strategy": isStrategy,
|
|
2326
2540
|
children: /* @__PURE__ */ jsx(
|
|
@@ -2362,46 +2576,46 @@ const Navigation = ({
|
|
|
2362
2576
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2363
2577
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Everything" }),
|
|
2364
2578
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list navigation-tray-column-list--spacing-5", children: [
|
|
2365
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2366
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2367
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2579
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Explore WELL" }) }),
|
|
2580
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Enroll in WELL" }) }),
|
|
2581
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "What's new" }) })
|
|
2368
2582
|
] })
|
|
2369
2583
|
] }),
|
|
2370
2584
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2371
2585
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "WHY WELL" }),
|
|
2372
2586
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list navigation-tray-column-list--spacing-5", children: [
|
|
2373
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2374
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2375
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2587
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Performance" }) }),
|
|
2588
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "ROI" }) }),
|
|
2589
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Impact" }) })
|
|
2376
2590
|
] })
|
|
2377
2591
|
] }),
|
|
2378
2592
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2379
2593
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Standard" }),
|
|
2380
2594
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list navigation-tray-column-list--spacing-5", children: [
|
|
2381
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2382
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2383
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2595
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Strategies" }) }),
|
|
2596
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Themes" }) }),
|
|
2597
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Milestones" }) })
|
|
2384
2598
|
] })
|
|
2385
2599
|
] }),
|
|
2386
2600
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2387
2601
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Network" }),
|
|
2388
2602
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list navigation-tray-column-list--spacing-5", children: [
|
|
2389
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2390
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2603
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Organizations" }) }),
|
|
2604
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "People" }) })
|
|
2391
2605
|
] })
|
|
2392
2606
|
] }),
|
|
2393
2607
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2394
2608
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Solutions" }),
|
|
2395
2609
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list navigation-tray-column-list--spacing-5", children: [
|
|
2396
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2397
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2610
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Products" }) }),
|
|
2611
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Services" }) })
|
|
2398
2612
|
] })
|
|
2399
2613
|
] }),
|
|
2400
2614
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2401
2615
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Places" }),
|
|
2402
2616
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list navigation-tray-column-list--spacing-5", children: [
|
|
2403
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2404
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2617
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Locations" }) }),
|
|
2618
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Portfolios" }) })
|
|
2405
2619
|
] })
|
|
2406
2620
|
] })
|
|
2407
2621
|
] })
|
|
@@ -2424,23 +2638,23 @@ const Navigation = ({
|
|
|
2424
2638
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2425
2639
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "SUBSCRIBE" }),
|
|
2426
2640
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2427
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2641
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "WELL at scale" }) }),
|
|
2428
2642
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2429
2643
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2430
|
-
/* @__PURE__ */ jsx(
|
|
2644
|
+
/* @__PURE__ */ jsx(NavLink2, { href: "/", children: /* @__PURE__ */ jsx("span", { className: "navigation-tray-link-small", children: "Pricing" }) })
|
|
2431
2645
|
] }) }),
|
|
2432
2646
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2433
2647
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2434
|
-
/* @__PURE__ */ jsx(
|
|
2648
|
+
/* @__PURE__ */ jsx(NavLink2, { href: "/", children: /* @__PURE__ */ jsx("span", { className: "navigation-tray-link-small", children: "Leaderboard" }) })
|
|
2435
2649
|
] }) })
|
|
2436
2650
|
] })
|
|
2437
2651
|
] }),
|
|
2438
2652
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2439
2653
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Certify" }),
|
|
2440
2654
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2441
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2655
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "WELL Certification" }) }),
|
|
2442
2656
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs(
|
|
2443
|
-
|
|
2657
|
+
NavLink2,
|
|
2444
2658
|
{
|
|
2445
2659
|
href: "/",
|
|
2446
2660
|
className: "navigation-tray-link navigation-tray-link--with-badge",
|
|
@@ -2455,11 +2669,11 @@ const Navigation = ({
|
|
|
2455
2669
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2456
2670
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Get rated" }),
|
|
2457
2671
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2458
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2672
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "WELL Ratings" }) }),
|
|
2459
2673
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2460
2674
|
/* @__PURE__ */ jsx(NavBullet, { color: "#F3E7D8" }),
|
|
2461
2675
|
/* @__PURE__ */ jsx(
|
|
2462
|
-
|
|
2676
|
+
NavLink2,
|
|
2463
2677
|
{
|
|
2464
2678
|
href: "/",
|
|
2465
2679
|
className: "navigation-tray-link-small",
|
|
@@ -2470,7 +2684,7 @@ const Navigation = ({
|
|
|
2470
2684
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2471
2685
|
/* @__PURE__ */ jsx(NavBullet, { color: "#0F748A" }),
|
|
2472
2686
|
/* @__PURE__ */ jsx(
|
|
2473
|
-
|
|
2687
|
+
NavLink2,
|
|
2474
2688
|
{
|
|
2475
2689
|
href: "/",
|
|
2476
2690
|
className: "navigation-tray-link-small",
|
|
@@ -2481,7 +2695,7 @@ const Navigation = ({
|
|
|
2481
2695
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2482
2696
|
/* @__PURE__ */ jsx(NavBullet, { color: "#17AA8D" }),
|
|
2483
2697
|
/* @__PURE__ */ jsx(
|
|
2484
|
-
|
|
2698
|
+
NavLink2,
|
|
2485
2699
|
{
|
|
2486
2700
|
href: "/",
|
|
2487
2701
|
className: "navigation-tray-link-small",
|
|
@@ -2510,12 +2724,12 @@ const Navigation = ({
|
|
|
2510
2724
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2511
2725
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "JOIN" }),
|
|
2512
2726
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2513
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2514
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2727
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Membership" }) }),
|
|
2728
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Works with WELL" }) }),
|
|
2515
2729
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2516
2730
|
/* @__PURE__ */ jsx(NavBullet, { color: "#2E74AD" }),
|
|
2517
2731
|
/* @__PURE__ */ jsx(
|
|
2518
|
-
|
|
2732
|
+
NavLink2,
|
|
2519
2733
|
{
|
|
2520
2734
|
href: "/",
|
|
2521
2735
|
className: "navigation-tray-link-small",
|
|
@@ -2526,7 +2740,7 @@ const Navigation = ({
|
|
|
2526
2740
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2527
2741
|
/* @__PURE__ */ jsx(NavBullet, { color: "#149EBD" }),
|
|
2528
2742
|
/* @__PURE__ */ jsx(
|
|
2529
|
-
|
|
2743
|
+
NavLink2,
|
|
2530
2744
|
{
|
|
2531
2745
|
href: "/",
|
|
2532
2746
|
className: "navigation-tray-link-small",
|
|
@@ -2537,7 +2751,7 @@ const Navigation = ({
|
|
|
2537
2751
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2538
2752
|
/* @__PURE__ */ jsx(NavBullet, { color: "#ED896F" }),
|
|
2539
2753
|
/* @__PURE__ */ jsx(
|
|
2540
|
-
|
|
2754
|
+
NavLink2,
|
|
2541
2755
|
{
|
|
2542
2756
|
href: "/",
|
|
2543
2757
|
className: "navigation-tray-link-small",
|
|
@@ -2550,8 +2764,8 @@ const Navigation = ({
|
|
|
2550
2764
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2551
2765
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "EARN" }),
|
|
2552
2766
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2553
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2554
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2767
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "WELL AP" }) }),
|
|
2768
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "WELL Faculty" }) })
|
|
2555
2769
|
] })
|
|
2556
2770
|
] })
|
|
2557
2771
|
] })
|
|
@@ -2573,11 +2787,11 @@ const Navigation = ({
|
|
|
2573
2787
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2574
2788
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "LEARN" }),
|
|
2575
2789
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2576
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2790
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "WELL Forum" }) }),
|
|
2577
2791
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2578
2792
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2579
2793
|
/* @__PURE__ */ jsx(
|
|
2580
|
-
|
|
2794
|
+
NavLink2,
|
|
2581
2795
|
{
|
|
2582
2796
|
href: "/",
|
|
2583
2797
|
className: "navigation-tray-link-small",
|
|
@@ -2588,7 +2802,7 @@ const Navigation = ({
|
|
|
2588
2802
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2589
2803
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2590
2804
|
/* @__PURE__ */ jsx(
|
|
2591
|
-
|
|
2805
|
+
NavLink2,
|
|
2592
2806
|
{
|
|
2593
2807
|
href: "/",
|
|
2594
2808
|
className: "navigation-tray-link-small",
|
|
@@ -2599,7 +2813,7 @@ const Navigation = ({
|
|
|
2599
2813
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2600
2814
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2601
2815
|
/* @__PURE__ */ jsx(
|
|
2602
|
-
|
|
2816
|
+
NavLink2,
|
|
2603
2817
|
{
|
|
2604
2818
|
href: "/",
|
|
2605
2819
|
className: "navigation-tray-link-small",
|
|
@@ -2612,11 +2826,11 @@ const Navigation = ({
|
|
|
2612
2826
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2613
2827
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "ATTEND" }),
|
|
2614
2828
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2615
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2829
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "WELL 2025" }) }),
|
|
2616
2830
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2617
2831
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2618
2832
|
/* @__PURE__ */ jsx(
|
|
2619
|
-
|
|
2833
|
+
NavLink2,
|
|
2620
2834
|
{
|
|
2621
2835
|
href: "/",
|
|
2622
2836
|
className: "navigation-tray-link-small",
|
|
@@ -2627,7 +2841,7 @@ const Navigation = ({
|
|
|
2627
2841
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2628
2842
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2629
2843
|
/* @__PURE__ */ jsx(
|
|
2630
|
-
|
|
2844
|
+
NavLink2,
|
|
2631
2845
|
{
|
|
2632
2846
|
href: "/",
|
|
2633
2847
|
className: "navigation-tray-link-small",
|
|
@@ -2638,7 +2852,7 @@ const Navigation = ({
|
|
|
2638
2852
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2639
2853
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2640
2854
|
/* @__PURE__ */ jsx(
|
|
2641
|
-
|
|
2855
|
+
NavLink2,
|
|
2642
2856
|
{
|
|
2643
2857
|
href: "/",
|
|
2644
2858
|
className: "navigation-tray-link-small",
|
|
@@ -2651,11 +2865,11 @@ const Navigation = ({
|
|
|
2651
2865
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2652
2866
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "GUIDANCE" }),
|
|
2653
2867
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2654
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2868
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Knowledge base" }) }),
|
|
2655
2869
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2656
2870
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2657
2871
|
/* @__PURE__ */ jsx(
|
|
2658
|
-
|
|
2872
|
+
NavLink2,
|
|
2659
2873
|
{
|
|
2660
2874
|
href: "/",
|
|
2661
2875
|
className: "navigation-tray-link-small",
|
|
@@ -2666,7 +2880,7 @@ const Navigation = ({
|
|
|
2666
2880
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2667
2881
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2668
2882
|
/* @__PURE__ */ jsx(
|
|
2669
|
-
|
|
2883
|
+
NavLink2,
|
|
2670
2884
|
{
|
|
2671
2885
|
href: "/",
|
|
2672
2886
|
className: "navigation-tray-link-small",
|
|
@@ -2677,7 +2891,7 @@ const Navigation = ({
|
|
|
2677
2891
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2678
2892
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2679
2893
|
/* @__PURE__ */ jsx(
|
|
2680
|
-
|
|
2894
|
+
NavLink2,
|
|
2681
2895
|
{
|
|
2682
2896
|
href: "/",
|
|
2683
2897
|
className: "navigation-tray-link-small",
|
|
@@ -2690,11 +2904,11 @@ const Navigation = ({
|
|
|
2690
2904
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2691
2905
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Resources" }),
|
|
2692
2906
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2693
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2907
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Resource library" }) }),
|
|
2694
2908
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2695
2909
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2696
2910
|
/* @__PURE__ */ jsx(
|
|
2697
|
-
|
|
2911
|
+
NavLink2,
|
|
2698
2912
|
{
|
|
2699
2913
|
href: "/",
|
|
2700
2914
|
className: "navigation-tray-link-small",
|
|
@@ -2705,7 +2919,7 @@ const Navigation = ({
|
|
|
2705
2919
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2706
2920
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2707
2921
|
/* @__PURE__ */ jsx(
|
|
2708
|
-
|
|
2922
|
+
NavLink2,
|
|
2709
2923
|
{
|
|
2710
2924
|
href: "/",
|
|
2711
2925
|
className: "navigation-tray-link-small",
|
|
@@ -2716,7 +2930,7 @@ const Navigation = ({
|
|
|
2716
2930
|
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
2717
2931
|
/* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
2718
2932
|
/* @__PURE__ */ jsx(
|
|
2719
|
-
|
|
2933
|
+
NavLink2,
|
|
2720
2934
|
{
|
|
2721
2935
|
href: "/",
|
|
2722
2936
|
className: "navigation-tray-link-small",
|
|
@@ -2745,25 +2959,25 @@ const Navigation = ({
|
|
|
2745
2959
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2746
2960
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "About" }),
|
|
2747
2961
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2748
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2749
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2750
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2962
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "IWBI" }) }),
|
|
2963
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Research" }) }),
|
|
2964
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Advocacy" }) })
|
|
2751
2965
|
] })
|
|
2752
2966
|
] }),
|
|
2753
2967
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2754
2968
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Meet" }),
|
|
2755
2969
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2756
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2757
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2758
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2970
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Team" }) }),
|
|
2971
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Advisories" }) }),
|
|
2972
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Governance Council" }) })
|
|
2759
2973
|
] })
|
|
2760
2974
|
] }),
|
|
2761
2975
|
/* @__PURE__ */ jsxs("div", { className: "navigation-tray-column", children: [
|
|
2762
2976
|
/* @__PURE__ */ jsx("h3", { className: "navigation-tray-column-title", children: "Explore" }),
|
|
2763
2977
|
/* @__PURE__ */ jsxs("ul", { className: "navigation-tray-column-list", children: [
|
|
2764
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2765
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2766
|
-
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(
|
|
2978
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Newsroom" }) }),
|
|
2979
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Jobs" }) }),
|
|
2980
|
+
/* @__PURE__ */ jsx("li", { children: /* @__PURE__ */ jsx(NavLink2, { href: "/", className: "navigation-tray-link", children: "Blog" }) })
|
|
2767
2981
|
] })
|
|
2768
2982
|
] })
|
|
2769
2983
|
] })
|
|
@@ -4403,6 +4617,18 @@ function getPayloadConfigFromPayload(config, payload, key) {
|
|
|
4403
4617
|
}
|
|
4404
4618
|
return configLabelKey in config ? config[configLabelKey] : config[key];
|
|
4405
4619
|
}
|
|
4620
|
+
const CodeBadge = ({ code, className, style }) => {
|
|
4621
|
+
return /* @__PURE__ */ jsx(
|
|
4622
|
+
"div",
|
|
4623
|
+
{
|
|
4624
|
+
className: cn("code-badge", className),
|
|
4625
|
+
style: {
|
|
4626
|
+
...style
|
|
4627
|
+
},
|
|
4628
|
+
children: /* @__PURE__ */ jsx("span", { className: "number-small font-semibold", style: { color: "inherit" }, children: code })
|
|
4629
|
+
}
|
|
4630
|
+
);
|
|
4631
|
+
};
|
|
4406
4632
|
const Toaster = ({ ...props }) => {
|
|
4407
4633
|
const { theme = "system" } = useTheme();
|
|
4408
4634
|
return /* @__PURE__ */ jsx(
|
|
@@ -4461,7 +4687,7 @@ const conceptColors = {
|
|
|
4461
4687
|
prefix: "L",
|
|
4462
4688
|
contrast: "#7FDCC9"
|
|
4463
4689
|
},
|
|
4464
|
-
|
|
4690
|
+
"thermal-comfort": {
|
|
4465
4691
|
solid: "#3eddbf",
|
|
4466
4692
|
light: "rgba(62,221,191,0.12)",
|
|
4467
4693
|
border: "rgba(62,221,191,0.24)",
|
|
@@ -4957,8 +5183,7 @@ const IconConceptThermalComfort = ({
|
|
|
4957
5183
|
active = true,
|
|
4958
5184
|
outlined = false
|
|
4959
5185
|
}) => {
|
|
4960
|
-
|
|
4961
|
-
const conceptColor = ((_a = conceptColors.thermalComfort) == null ? void 0 : _a.contrast) || conceptColors.thermalComfort.solid;
|
|
5186
|
+
const conceptColor = conceptColors["thermal-comfort"].contrast || conceptColors["thermal-comfort"].solid;
|
|
4962
5187
|
const bgFill = outlined ? "white" : active ? conceptColor : DEFAULT_FILL;
|
|
4963
5188
|
const strokeColor = outlined ? conceptColor : active ? "white" : DEFAULT_STROKE;
|
|
4964
5189
|
return /* @__PURE__ */ jsxs(
|
|
@@ -5454,9 +5679,7 @@ const UtilityClassification = ({
|
|
|
5454
5679
|
}
|
|
5455
5680
|
);
|
|
5456
5681
|
};
|
|
5457
|
-
const
|
|
5458
|
-
className
|
|
5459
|
-
}) => {
|
|
5682
|
+
const UtilityClose = ({ className }) => {
|
|
5460
5683
|
return /* @__PURE__ */ jsx(
|
|
5461
5684
|
"div",
|
|
5462
5685
|
{
|
|
@@ -5468,18 +5691,18 @@ const UtilityClearRegular = ({
|
|
|
5468
5691
|
"svg",
|
|
5469
5692
|
{
|
|
5470
5693
|
xmlns: "http://www.w3.org/2000/svg",
|
|
5471
|
-
width: "
|
|
5472
|
-
height: "
|
|
5473
|
-
viewBox: "0 0
|
|
5694
|
+
width: "12",
|
|
5695
|
+
height: "12",
|
|
5696
|
+
viewBox: "0 0 12 12",
|
|
5474
5697
|
fill: "none",
|
|
5475
|
-
className: cn("size-
|
|
5698
|
+
className: cn("size-3 text-inherit"),
|
|
5476
5699
|
children: [
|
|
5477
5700
|
/* @__PURE__ */ jsx(
|
|
5478
5701
|
"path",
|
|
5479
5702
|
{
|
|
5480
|
-
d: "
|
|
5703
|
+
d: "M10.8002 1.19995L1.2002 10.8",
|
|
5481
5704
|
stroke: "currentColor",
|
|
5482
|
-
strokeWidth: "1.
|
|
5705
|
+
strokeWidth: "1.5",
|
|
5483
5706
|
strokeLinecap: "round",
|
|
5484
5707
|
strokeLinejoin: "round"
|
|
5485
5708
|
}
|
|
@@ -5487,9 +5710,9 @@ const UtilityClearRegular = ({
|
|
|
5487
5710
|
/* @__PURE__ */ jsx(
|
|
5488
5711
|
"path",
|
|
5489
5712
|
{
|
|
5490
|
-
d: "
|
|
5713
|
+
d: "M1.2002 1.19995L10.8002 10.8",
|
|
5491
5714
|
stroke: "currentColor",
|
|
5492
|
-
strokeWidth: "1.
|
|
5715
|
+
strokeWidth: "1.5",
|
|
5493
5716
|
strokeLinecap: "round",
|
|
5494
5717
|
strokeLinejoin: "round"
|
|
5495
5718
|
}
|
|
@@ -8788,77 +9011,6 @@ const X = ({ className = "", color = "#71747D" }) => {
|
|
|
8788
9011
|
}
|
|
8789
9012
|
);
|
|
8790
9013
|
};
|
|
8791
|
-
const StandardLogo = ({ className = "" }) => {
|
|
8792
|
-
return /* @__PURE__ */ jsxs(
|
|
8793
|
-
"svg",
|
|
8794
|
-
{
|
|
8795
|
-
width: "93",
|
|
8796
|
-
height: "18",
|
|
8797
|
-
viewBox: "0 0 93 18",
|
|
8798
|
-
fill: "none",
|
|
8799
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
8800
|
-
className: cn("text-gray-700", className),
|
|
8801
|
-
children: [
|
|
8802
|
-
/* @__PURE__ */ jsx(
|
|
8803
|
-
"path",
|
|
8804
|
-
{
|
|
8805
|
-
d: "M87.4833 17.1541C84.5265 17.1541 82.2737 14.8309 82.2737 11.7333C82.2737 8.63573 84.5265 6.31253 87.4833 6.31253C89.4779 6.31253 91.1675 7.36853 92.0358 9.0112V0.281599C92.0358 0.117333 92.1531 0 92.3174 0H92.599C92.7633 0 92.8806 0.117333 92.8806 0.281599V16.7317C92.8806 16.896 92.7633 17.0133 92.599 17.0133H92.3174C92.1531 17.0133 92.0358 16.896 92.0358 16.7317V14.4555C91.1675 16.0981 89.4779 17.1541 87.4833 17.1541ZM87.5771 7.1808C85.0662 7.1808 83.1419 9.12853 83.1419 11.7333C83.1419 14.3381 85.0662 16.3093 87.5771 16.3093C90.0881 16.3093 91.9889 14.3381 91.9889 11.7333C91.9889 9.12853 90.0881 7.1808 87.5771 7.1808Z",
|
|
8806
|
-
fill: "currentColor"
|
|
8807
|
-
}
|
|
8808
|
-
),
|
|
8809
|
-
/* @__PURE__ */ jsx(
|
|
8810
|
-
"path",
|
|
8811
|
-
{
|
|
8812
|
-
d: "M75.8349 17.0133C75.6706 17.0133 75.5298 16.896 75.5298 16.7317V6.73493C75.5298 6.57067 75.6706 6.45333 75.8349 6.45333H76.1165C76.2807 6.45333 76.3981 6.57067 76.3981 6.73493V8.63573C76.8674 7.8144 78.0642 6.4064 80.7629 6.31253C80.9037 6.31253 81.0445 6.42987 81.0445 6.59413V6.94613C81.0445 7.1104 80.9271 7.20427 80.7629 7.20427C80.6925 7.1808 80.6455 7.1808 80.5751 7.1808C78.2285 7.1808 76.3981 8.77653 76.3981 10.8885V16.7317C76.3981 16.896 76.2807 17.0133 76.1165 17.0133H75.8349Z",
|
|
8813
|
-
fill: "currentColor"
|
|
8814
|
-
}
|
|
8815
|
-
),
|
|
8816
|
-
/* @__PURE__ */ jsx(
|
|
8817
|
-
"path",
|
|
8818
|
-
{
|
|
8819
|
-
d: "M66.4457 17.1541C63.4889 17.1541 61.2361 14.8309 61.2361 11.7333C61.2361 8.63573 63.4889 6.31253 66.4457 6.31253C68.4403 6.31253 70.13 7.36853 70.9982 9.0112V6.73493C70.9982 6.57067 71.1156 6.45333 71.2798 6.45333H71.5849C71.7257 6.45333 71.8665 6.57067 71.8665 6.73493V16.7317C71.8665 16.896 71.7257 17.0133 71.5849 17.0133H71.2798C71.1156 17.0133 70.9982 16.896 70.9982 16.7317V14.4555C70.13 16.0981 68.4403 17.1541 66.4457 17.1541ZM66.5396 7.1808C64.0286 7.1808 62.1044 9.12853 62.1044 11.7333C62.1044 14.3381 64.0286 16.3093 66.5396 16.3093C69.0505 16.3093 70.9513 14.3381 70.9513 11.7333C70.9513 9.12853 69.0505 7.1808 66.5396 7.1808Z",
|
|
8820
|
-
fill: "currentColor"
|
|
8821
|
-
}
|
|
8822
|
-
),
|
|
8823
|
-
/* @__PURE__ */ jsx(
|
|
8824
|
-
"path",
|
|
8825
|
-
{
|
|
8826
|
-
d: "M52.8561 17.1541C49.8993 17.1541 47.6465 14.8309 47.6465 11.7333C47.6465 8.63573 49.8993 6.31253 52.8561 6.31253C54.8507 6.31253 56.5404 7.36853 57.4086 9.0112V0.281599C57.4086 0.117333 57.526 0 57.6902 0H57.9718C58.1361 0 58.2534 0.117333 58.2534 0.281599V16.7317C58.2534 16.896 58.1361 17.0133 57.9718 17.0133H57.6902C57.526 17.0133 57.4086 16.896 57.4086 16.7317V14.4555C56.5404 16.0981 54.8507 17.1541 52.8561 17.1541ZM52.95 7.1808C50.439 7.1808 48.5148 9.12853 48.5148 11.7333C48.5148 14.3381 50.439 16.3093 52.95 16.3093C55.4609 16.3093 57.3617 14.3381 57.3617 11.7333C57.3617 9.12853 55.4609 7.1808 52.95 7.1808Z",
|
|
8827
|
-
fill: "currentColor"
|
|
8828
|
-
}
|
|
8829
|
-
),
|
|
8830
|
-
/* @__PURE__ */ jsx(
|
|
8831
|
-
"path",
|
|
8832
|
-
{
|
|
8833
|
-
d: "M35.5473 17.0133C35.383 17.0133 35.2422 16.896 35.2422 16.7317V6.73493C35.2422 6.57067 35.383 6.45333 35.5473 6.45333H35.8289C35.9931 6.45333 36.1105 6.57067 36.1105 6.73493V8.75307C36.5329 7.90827 37.7297 6.31253 40.4518 6.31253C42.9393 6.31253 44.7697 8.14293 44.7697 10.6304V16.7317C44.7697 16.896 44.6523 17.0133 44.4881 17.0133H44.2065C44.0422 17.0133 43.9249 16.896 43.9249 16.7317V10.7712C43.9249 8.70613 42.3526 7.13387 40.2875 7.13387C37.9409 7.13387 36.1105 8.75307 36.1105 10.8416V16.7317C36.1105 16.896 35.9931 17.0133 35.8289 17.0133H35.5473Z",
|
|
8834
|
-
fill: "currentColor"
|
|
8835
|
-
}
|
|
8836
|
-
),
|
|
8837
|
-
/* @__PURE__ */ jsx(
|
|
8838
|
-
"path",
|
|
8839
|
-
{
|
|
8840
|
-
d: "M26.1583 17.1541C23.2015 17.1541 20.9487 14.8309 20.9487 11.7333C20.9487 8.63573 23.2015 6.31253 26.1583 6.31253C28.153 6.31253 29.8426 7.36853 30.7109 9.0112V6.73493C30.7109 6.57067 30.8282 6.45333 30.9925 6.45333H31.2975C31.4383 6.45333 31.5791 6.57067 31.5791 6.73493V16.7317C31.5791 16.896 31.4383 17.0133 31.2975 17.0133H30.9925C30.8282 17.0133 30.7109 16.896 30.7109 16.7317V14.4555C29.8426 16.0981 28.153 17.1541 26.1583 17.1541ZM26.2522 7.1808C23.7413 7.1808 21.817 9.12853 21.817 11.7333C21.817 14.3381 23.7413 16.3093 26.2522 16.3093C28.7631 16.3093 30.6639 14.3381 30.6639 11.7333C30.6639 9.12853 28.7631 7.1808 26.2522 7.1808Z",
|
|
8841
|
-
fill: "currentColor"
|
|
8842
|
-
}
|
|
8843
|
-
),
|
|
8844
|
-
/* @__PURE__ */ jsx(
|
|
8845
|
-
"path",
|
|
8846
|
-
{
|
|
8847
|
-
d: "M13.285 7.2512C13.1208 7.2512 13.0034 7.13387 13.0034 6.9696V6.73493C13.0034 6.57067 13.1208 6.45333 13.285 6.45333H14.9277V4.41173C14.9277 4.24747 15.045 4.13013 15.2093 4.13013H15.4909C15.6552 4.13013 15.7725 4.24747 15.7725 4.41173V6.45333H18.7997C18.964 6.45333 19.0813 6.57067 19.0813 6.73493V6.9696C19.0813 7.13387 18.964 7.2512 18.7997 7.2512H15.7725V14.08C15.7725 15.2768 16.5234 16.1685 17.5325 16.1685H18.7762C18.9405 16.1685 19.0578 16.2859 19.0578 16.4501V16.7317C19.0578 16.896 18.9405 17.0133 18.7762 17.0133H17.4856C16.0306 17.0133 14.9277 15.7696 14.9277 14.1504V7.2512H13.285Z",
|
|
8848
|
-
fill: "currentColor"
|
|
8849
|
-
}
|
|
8850
|
-
),
|
|
8851
|
-
/* @__PURE__ */ jsx(
|
|
8852
|
-
"path",
|
|
8853
|
-
{
|
|
8854
|
-
d: "M9.84461 4.576C9.46915 3.0272 7.73262 1.9008 5.55022 1.9008C3.10968 1.9008 1.25581 3.28533 1.25581 5.2096C1.25581 7.29813 3.46168 7.90827 5.83182 8.47147C8.38968 9.0112 11.1587 9.83253 11.1587 12.6955C11.1587 15.3237 8.78862 17.1776 5.59715 17.1776C2.73422 17.1776 0.551815 15.6992 0.0120816 13.6576C-0.0348519 13.5168 0.0590148 13.376 0.223281 13.3291L0.598748 13.1883C0.622215 13.1883 0.645682 13.1883 0.645682 13.1883C0.763015 13.1883 0.856881 13.2587 0.903815 13.376C1.32621 15.0656 3.18008 16.2859 5.59715 16.2859C8.24888 16.2859 10.2435 14.8075 10.2435 12.7424C10.2435 10.6069 8.08462 9.90294 5.64408 9.38667C3.20355 8.82347 0.364081 8.07253 0.364081 5.23307C0.364081 2.7456 2.54648 1.03253 5.52675 1.03253C8.17848 1.03253 10.2201 2.3936 10.7598 4.2944C10.8067 4.4352 10.7129 4.576 10.5486 4.62294L10.1497 4.76373C10.0323 4.7872 9.91501 4.7168 9.84461 4.576Z",
|
|
8855
|
-
fill: "currentColor"
|
|
8856
|
-
}
|
|
8857
|
-
)
|
|
8858
|
-
]
|
|
8859
|
-
}
|
|
8860
|
-
);
|
|
8861
|
-
};
|
|
8862
9014
|
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";
|
|
8863
9015
|
const PATH_LENGTH = 60;
|
|
8864
9016
|
const AlphaIcon = ({ dark }) => {
|
|
@@ -9006,7 +9158,7 @@ const StandardNavigation = ({
|
|
|
9006
9158
|
};
|
|
9007
9159
|
}
|
|
9008
9160
|
}, [isUserDropdownOpen]);
|
|
9009
|
-
const
|
|
9161
|
+
const NavLink2 = ({ href, className, "aria-label": ariaLabel, children }) => {
|
|
9010
9162
|
if (LinkComponent) {
|
|
9011
9163
|
return /* @__PURE__ */ jsx(LinkComponent, { href, className, "aria-label": ariaLabel, children });
|
|
9012
9164
|
}
|
|
@@ -9036,7 +9188,7 @@ const StandardNavigation = ({
|
|
|
9036
9188
|
return /* @__PURE__ */ jsxs("div", { className: "navigation-tray-bullet-item", children: [
|
|
9037
9189
|
link.bulletColor && link.bulletColor !== "" ? /* @__PURE__ */ jsx(NavBullet, { color: link.bulletColor }) : /* @__PURE__ */ jsx("div", { className: "navigation-tray-bullet" }),
|
|
9038
9190
|
/* @__PURE__ */ jsx(
|
|
9039
|
-
|
|
9191
|
+
NavLink2,
|
|
9040
9192
|
{
|
|
9041
9193
|
href,
|
|
9042
9194
|
className: "navigation-tray-link-small",
|
|
@@ -9047,7 +9199,7 @@ const StandardNavigation = ({
|
|
|
9047
9199
|
}
|
|
9048
9200
|
if (hasBadge) {
|
|
9049
9201
|
return /* @__PURE__ */ jsxs(
|
|
9050
|
-
|
|
9202
|
+
NavLink2,
|
|
9051
9203
|
{
|
|
9052
9204
|
href,
|
|
9053
9205
|
className: "navigation-tray-link navigation-tray-link--with-badge",
|
|
@@ -9059,7 +9211,7 @@ const StandardNavigation = ({
|
|
|
9059
9211
|
);
|
|
9060
9212
|
}
|
|
9061
9213
|
return /* @__PURE__ */ jsx(
|
|
9062
|
-
|
|
9214
|
+
NavLink2,
|
|
9063
9215
|
{
|
|
9064
9216
|
href,
|
|
9065
9217
|
className: isSmall ? "navigation-tray-link-small" : "navigation-tray-link",
|
|
@@ -9143,7 +9295,7 @@ const StandardNavigation = ({
|
|
|
9143
9295
|
}
|
|
9144
9296
|
) : null,
|
|
9145
9297
|
/* @__PURE__ */ jsx(
|
|
9146
|
-
|
|
9298
|
+
NavLink2,
|
|
9147
9299
|
{
|
|
9148
9300
|
href: "/",
|
|
9149
9301
|
className: cn(
|
|
@@ -9166,7 +9318,7 @@ const StandardNavigation = ({
|
|
|
9166
9318
|
className: "navigation-nav-item",
|
|
9167
9319
|
onMouseEnter: () => handleNavItemMouseEnter(index),
|
|
9168
9320
|
children: [
|
|
9169
|
-
item.href ? /* @__PURE__ */ jsx(
|
|
9321
|
+
item.href ? /* @__PURE__ */ jsx(NavLink2, { href: item.href, className: "navigation-nav-link", children: item.label }) : /* @__PURE__ */ jsx("span", { className: "navigation-nav-link", children: item.label }),
|
|
9170
9322
|
activeItem === index + 1 && /* @__PURE__ */ jsx(
|
|
9171
9323
|
motion.div,
|
|
9172
9324
|
{
|
|
@@ -9242,7 +9394,7 @@ const StandardNavigation = ({
|
|
|
9242
9394
|
) : /* @__PURE__ */ jsx("div", { className: "navigation-account-icon-placeholder", children: "User" })
|
|
9243
9395
|
}
|
|
9244
9396
|
) : /* @__PURE__ */ jsx(
|
|
9245
|
-
|
|
9397
|
+
NavLink2,
|
|
9246
9398
|
{
|
|
9247
9399
|
href: "/",
|
|
9248
9400
|
"aria-label": "Account link",
|
|
@@ -9333,6 +9485,7 @@ export {
|
|
|
9333
9485
|
ChartTooltip,
|
|
9334
9486
|
ChartTooltipContent,
|
|
9335
9487
|
Checkbox,
|
|
9488
|
+
CodeBadge,
|
|
9336
9489
|
Collapsible,
|
|
9337
9490
|
CollapsibleContent,
|
|
9338
9491
|
CollapsibleTrigger,
|