@geowiki/design-system 0.16.9-dev.5 → 0.16.9-dev.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +47 -22
- package/dist/index.js +864 -838
- package/dist/index.mjs +527 -504
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -6043,81 +6043,30 @@ var DesignResultTag = ({ tag, name }) => {
|
|
|
6043
6043
|
) : null;
|
|
6044
6044
|
};
|
|
6045
6045
|
|
|
6046
|
-
// src/components/DesignElements/
|
|
6047
|
-
import { v4 as v42 } from "uuid";
|
|
6048
|
-
import { jsx as jsx112, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
6049
|
-
var TagsGroup = ({ label, tags, variant }) => {
|
|
6050
|
-
return /* @__PURE__ */ jsx112("div", { children: tags && (tags == null ? void 0 : tags.length) > 0 && /* @__PURE__ */ jsxs42("div", { className: "w-[41.25rem] items-start max-md:flex-wrap max-md:max-w-full", children: [
|
|
6051
|
-
/* @__PURE__ */ jsx112(Caption, { className: "text-grey", children: label }),
|
|
6052
|
-
/* @__PURE__ */ jsx112("div", { className: "pt-2 flex flex-wrap gap-1 lg:pt-4", children: tags == null ? void 0 : tags.map((tag) => /* @__PURE__ */ jsx112(DesignSimpleTag, { tag, variant }, v42())) })
|
|
6053
|
-
] }) });
|
|
6054
|
-
};
|
|
6055
|
-
|
|
6056
|
-
// src/components/DesignElements/TestWeight.tsx
|
|
6046
|
+
// src/components/DesignElements/ResourceTag.tsx
|
|
6057
6047
|
import { cva as cva13 } from "class-variance-authority";
|
|
6058
|
-
import { jsx as
|
|
6059
|
-
var
|
|
6060
|
-
|
|
6061
|
-
|
|
6062
|
-
|
|
6063
|
-
|
|
6064
|
-
|
|
6065
|
-
|
|
6066
|
-
|
|
6067
|
-
|
|
6068
|
-
|
|
6069
|
-
|
|
6070
|
-
|
|
6048
|
+
import { jsx as jsx112 } from "react/jsx-runtime";
|
|
6049
|
+
var tagVariants = cva13(
|
|
6050
|
+
"justify-center self-start px-4 py-2 mr-2 mt-1 text-sm font-medium text-white whitespace-nowrap rounded-[40px] first-letter:capitalize",
|
|
6051
|
+
{
|
|
6052
|
+
variants: {
|
|
6053
|
+
variant: {
|
|
6054
|
+
topic: "bg-tag-dark-blue",
|
|
6055
|
+
audience: "bg-tag-dark-green",
|
|
6056
|
+
keyword: "bg-tag-blue",
|
|
6057
|
+
language: "bg-tag-orange",
|
|
6058
|
+
resourceType: "bg-sky-500"
|
|
6059
|
+
}
|
|
6060
|
+
},
|
|
6061
|
+
defaultVariants: {
|
|
6062
|
+
variant: "topic"
|
|
6071
6063
|
}
|
|
6072
|
-
},
|
|
6073
|
-
defaultVariants: {
|
|
6074
|
-
variant: "weight400"
|
|
6075
6064
|
}
|
|
6076
|
-
|
|
6077
|
-
var
|
|
6078
|
-
return /* @__PURE__ */
|
|
6079
|
-
"div",
|
|
6080
|
-
{
|
|
6081
|
-
className: cn(weightVariants({ variant }), className),
|
|
6082
|
-
"data-component": "TestWeight",
|
|
6083
|
-
children: text
|
|
6084
|
-
}
|
|
6085
|
-
);
|
|
6086
|
-
};
|
|
6087
|
-
|
|
6088
|
-
// src/components/DesignElements/ThreeColumn.tsx
|
|
6089
|
-
import { jsx as jsx114, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
6090
|
-
var ThreeColumn = ({ tag, content, TagClassName }) => {
|
|
6091
|
-
return /* @__PURE__ */ jsxs43("div", { className: "lg:container mx-auto lg:flex lg:gap-5 lg:justify-between lg:pr-20 lg:pt-20 w-full", children: [
|
|
6092
|
-
/* @__PURE__ */ jsx114(Body18, { className: `pt-5 lg:w-[15%] lg:pt-0 ${TagClassName}`, children: tag }),
|
|
6093
|
-
/* @__PURE__ */ jsx114("div", { className: "lg:w-[50%] max-md:max-w-[41.25rem]", children: content }),
|
|
6094
|
-
/* @__PURE__ */ jsx114("div", { className: "lg:w-[15%]" })
|
|
6095
|
-
] });
|
|
6096
|
-
};
|
|
6097
|
-
|
|
6098
|
-
// src/components/DesignElements/VersionDisplay.tsx
|
|
6099
|
-
import { useEffect as useEffect6, useState as useState8 } from "react";
|
|
6100
|
-
import { jsxs as jsxs44 } from "react/jsx-runtime";
|
|
6101
|
-
var VersionDisplay = () => {
|
|
6102
|
-
const [version, setVersion] = useState8();
|
|
6103
|
-
useEffect6(() => {
|
|
6104
|
-
fetch("/version.json").then((res) => {
|
|
6105
|
-
if (!res.ok)
|
|
6106
|
-
throw new Error("Version file not found");
|
|
6107
|
-
return res.json();
|
|
6108
|
-
}).then((data) => setVersion(data.version)).catch(() => setVersion(void 0));
|
|
6109
|
-
}, []);
|
|
6110
|
-
if (!version)
|
|
6111
|
-
return null;
|
|
6112
|
-
return /* @__PURE__ */ jsxs44("div", { className: "text-grey text-sm lg:text-base font-normal leading-[130%]", children: [
|
|
6113
|
-
"Version: ",
|
|
6114
|
-
version
|
|
6115
|
-
] });
|
|
6065
|
+
);
|
|
6066
|
+
var ResourceTag = ({ tag, type }) => {
|
|
6067
|
+
return /* @__PURE__ */ jsx112("span", { className: cn(tagVariants({ variant: type })), children: tag });
|
|
6116
6068
|
};
|
|
6117
6069
|
|
|
6118
|
-
// src/components/DesignElements/header.tsx
|
|
6119
|
-
import { useState as useState12 } from "react";
|
|
6120
|
-
|
|
6121
6070
|
// ../../node_modules/react-aria/dist/private/utils/domHelpers.mjs
|
|
6122
6071
|
var $d447af545b77c9f1$export$b204af158042fbac = (el) => {
|
|
6123
6072
|
var _a;
|
|
@@ -7935,7 +7884,7 @@ function m9(u11, t11) {
|
|
|
7935
7884
|
|
|
7936
7885
|
// ../../node_modules/@floating-ui/react/dist/floating-ui.react.mjs
|
|
7937
7886
|
import * as React45 from "react";
|
|
7938
|
-
import { useLayoutEffect as useLayoutEffect2, useEffect as
|
|
7887
|
+
import { useLayoutEffect as useLayoutEffect2, useEffect as useEffect7, useRef as useRef4 } from "react";
|
|
7939
7888
|
|
|
7940
7889
|
// ../../node_modules/@floating-ui/utils/dist/floating-ui.utils.dom.mjs
|
|
7941
7890
|
function hasWindow() {
|
|
@@ -9672,7 +9621,7 @@ var ARROW_UP = "ArrowUp";
|
|
|
9672
9621
|
var ARROW_DOWN = "ArrowDown";
|
|
9673
9622
|
var ARROW_LEFT = "ArrowLeft";
|
|
9674
9623
|
var ARROW_RIGHT = "ArrowRight";
|
|
9675
|
-
var index2 = typeof document !== "undefined" ? useLayoutEffect2 :
|
|
9624
|
+
var index2 = typeof document !== "undefined" ? useLayoutEffect2 : useEffect7;
|
|
9676
9625
|
var horizontalKeys = [ARROW_LEFT, ARROW_RIGHT];
|
|
9677
9626
|
var verticalKeys = [ARROW_UP, ARROW_DOWN];
|
|
9678
9627
|
var allKeys = [...horizontalKeys, ...verticalKeys];
|
|
@@ -11198,87 +11147,10 @@ var Rt = I(mt);
|
|
|
11198
11147
|
var Ct = I(Et);
|
|
11199
11148
|
var no = Object.assign(bt, { Button: gt, Backdrop: At, Overlay: St, Panel: Rt, Group: Ct });
|
|
11200
11149
|
|
|
11201
|
-
// src/components/DesignElements/header.tsx
|
|
11202
|
-
import { Bars3Icon, XMarkIcon as XMarkIcon2 } from "@heroicons/react/24/outline";
|
|
11203
|
-
import { ChevronDownIcon } from "@heroicons/react/20/solid";
|
|
11204
|
-
import { Link as Link2 } from "@geowiki/core";
|
|
11205
|
-
|
|
11206
|
-
// src/components/Elements/ImageElement.tsx
|
|
11207
|
-
import { Image as Image2 } from "@geowiki/core";
|
|
11208
|
-
import { jsx as jsx115 } from "react/jsx-runtime";
|
|
11209
|
-
var ImageElement = ({
|
|
11210
|
-
src,
|
|
11211
|
-
width,
|
|
11212
|
-
height,
|
|
11213
|
-
alt = "Image",
|
|
11214
|
-
className,
|
|
11215
|
-
// = "relative w-full h-full",
|
|
11216
|
-
showPlaceholder = true
|
|
11217
|
-
//shimmer, toBase64,
|
|
11218
|
-
//cmsImageUrlPath
|
|
11219
|
-
}) => {
|
|
11220
|
-
if (width && height) {
|
|
11221
|
-
if (!showPlaceholder)
|
|
11222
|
-
return /* @__PURE__ */ jsx115(
|
|
11223
|
-
Image2,
|
|
11224
|
-
{
|
|
11225
|
-
className,
|
|
11226
|
-
src,
|
|
11227
|
-
alt,
|
|
11228
|
-
width,
|
|
11229
|
-
height,
|
|
11230
|
-
quality: 90,
|
|
11231
|
-
priority: true
|
|
11232
|
-
}
|
|
11233
|
-
);
|
|
11234
|
-
return /* @__PURE__ */ jsx115(
|
|
11235
|
-
Image2,
|
|
11236
|
-
{
|
|
11237
|
-
className,
|
|
11238
|
-
src,
|
|
11239
|
-
alt,
|
|
11240
|
-
placeholder: `data:image/svg+xml;base64,${toBase64(shimmer(700, 490))}`,
|
|
11241
|
-
width,
|
|
11242
|
-
height,
|
|
11243
|
-
quality: 90,
|
|
11244
|
-
priority: true
|
|
11245
|
-
}
|
|
11246
|
-
);
|
|
11247
|
-
}
|
|
11248
|
-
if (!showPlaceholder)
|
|
11249
|
-
return /* @__PURE__ */ jsx115(
|
|
11250
|
-
Image2,
|
|
11251
|
-
{
|
|
11252
|
-
className,
|
|
11253
|
-
src,
|
|
11254
|
-
alt,
|
|
11255
|
-
layout: "fill",
|
|
11256
|
-
objectFit: "cover",
|
|
11257
|
-
quality: 90,
|
|
11258
|
-
priority: true
|
|
11259
|
-
}
|
|
11260
|
-
);
|
|
11261
|
-
return /* @__PURE__ */ jsx115("div", { className, children: /* @__PURE__ */ jsx115(
|
|
11262
|
-
Image2,
|
|
11263
|
-
{
|
|
11264
|
-
className: "rounded-xl",
|
|
11265
|
-
src,
|
|
11266
|
-
placeholder: `data:image/svg+xml;base64,${toBase64(shimmer(700, 490))}`,
|
|
11267
|
-
alt: src,
|
|
11268
|
-
quality: 90,
|
|
11269
|
-
fill: true,
|
|
11270
|
-
style: {
|
|
11271
|
-
objectFit: "cover"
|
|
11272
|
-
},
|
|
11273
|
-
priority: true
|
|
11274
|
-
}
|
|
11275
|
-
) });
|
|
11276
|
-
};
|
|
11277
|
-
|
|
11278
11150
|
// src/components/DesignElements/Notification.tsx
|
|
11279
11151
|
import { Fragment as Fragment3 } from "react";
|
|
11280
11152
|
import { XMarkIcon } from "@heroicons/react/24/outline";
|
|
11281
|
-
import { jsx as
|
|
11153
|
+
import { jsx as jsx113, jsxs as jsxs42 } from "react/jsx-runtime";
|
|
11282
11154
|
var Notification = ({
|
|
11283
11155
|
title,
|
|
11284
11156
|
description,
|
|
@@ -11286,8 +11158,8 @@ var Notification = ({
|
|
|
11286
11158
|
setOpen,
|
|
11287
11159
|
icon
|
|
11288
11160
|
}) => {
|
|
11289
|
-
return /* @__PURE__ */
|
|
11290
|
-
/* @__PURE__ */
|
|
11161
|
+
return /* @__PURE__ */ jsx113(Xe.Root, { show: open, as: Fragment3, "data-component": "Notification", children: /* @__PURE__ */ jsxs42(Pt, { as: "div", className: "relative z-10", onClose: setOpen, children: [
|
|
11162
|
+
/* @__PURE__ */ jsx113(
|
|
11291
11163
|
Xe.Child,
|
|
11292
11164
|
{
|
|
11293
11165
|
as: Fragment3,
|
|
@@ -11297,10 +11169,10 @@ var Notification = ({
|
|
|
11297
11169
|
leave: "ease-in duration-200",
|
|
11298
11170
|
leaveFrom: "opacity-100",
|
|
11299
11171
|
leaveTo: "opacity-0",
|
|
11300
|
-
children: /* @__PURE__ */
|
|
11172
|
+
children: /* @__PURE__ */ jsx113("div", { className: "fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" })
|
|
11301
11173
|
}
|
|
11302
11174
|
),
|
|
11303
|
-
/* @__PURE__ */
|
|
11175
|
+
/* @__PURE__ */ jsx113("div", { className: "fixed z-10 inset-0 overflow-y-auto text-black", children: /* @__PURE__ */ jsx113("div", { className: "flex items-center justify-center min-h-full p-4 text-center ", children: /* @__PURE__ */ jsx113(
|
|
11304
11176
|
Xe.Child,
|
|
11305
11177
|
{
|
|
11306
11178
|
as: Fragment3,
|
|
@@ -11310,21 +11182,21 @@ var Notification = ({
|
|
|
11310
11182
|
leave: "ease-in duration-200",
|
|
11311
11183
|
leaveFrom: "opacity-100 translate-y-0 sm:scale-100",
|
|
11312
11184
|
leaveTo: "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95",
|
|
11313
|
-
children: /* @__PURE__ */
|
|
11314
|
-
/* @__PURE__ */
|
|
11185
|
+
children: /* @__PURE__ */ jsxs42(Pt.Panel, { className: "relative bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all py-8 max-w-4xl w-full p-10", children: [
|
|
11186
|
+
/* @__PURE__ */ jsx113("div", { className: "absolute top-0 right-0 pt-10 pr-10", children: /* @__PURE__ */ jsxs42(
|
|
11315
11187
|
"button",
|
|
11316
11188
|
{
|
|
11317
11189
|
type: "button",
|
|
11318
11190
|
className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 ",
|
|
11319
11191
|
onClick: () => setOpen(false),
|
|
11320
11192
|
children: [
|
|
11321
|
-
/* @__PURE__ */
|
|
11322
|
-
/* @__PURE__ */
|
|
11193
|
+
/* @__PURE__ */ jsx113("span", { className: "sr-only", children: "Close" }),
|
|
11194
|
+
/* @__PURE__ */ jsx113(XMarkIcon, { className: "h-6 w-6", "aria-hidden": "true" })
|
|
11323
11195
|
]
|
|
11324
11196
|
}
|
|
11325
11197
|
) }),
|
|
11326
|
-
/* @__PURE__ */
|
|
11327
|
-
/* @__PURE__ */
|
|
11198
|
+
/* @__PURE__ */ jsxs42("div", { className: "flex flex-col items-center text-center max-w-[90rem]", children: [
|
|
11199
|
+
/* @__PURE__ */ jsx113("div", { className: "flex justify-center items-center px-14 w-40 h-40 bg-accent-light-purple rounded-full max-md:px-5", children: icon === "computer" ? /* @__PURE__ */ jsx113(
|
|
11328
11200
|
"svg",
|
|
11329
11201
|
{
|
|
11330
11202
|
width: "40",
|
|
@@ -11332,7 +11204,7 @@ var Notification = ({
|
|
|
11332
11204
|
viewBox: "0 0 40 40",
|
|
11333
11205
|
fill: "none",
|
|
11334
11206
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11335
|
-
children: /* @__PURE__ */
|
|
11207
|
+
children: /* @__PURE__ */ jsx113(
|
|
11336
11208
|
"path",
|
|
11337
11209
|
{
|
|
11338
11210
|
d: "M35 23.3333C35 26.6667 33.3333 28.3333 30 28.3333H23.3333V33.75H27.5C28.1833 33.75 28.75 34.3167 28.75 35C28.75 35.6833 28.1833 36.25 27.5 36.25H12.5C11.8167 36.25 11.25 35.6833 11.25 35C11.25 34.3167 11.8167 33.75 12.5 33.75H16.6667V28.3333H10C6.66667 28.3333 5 26.6667 5 23.3333C5 23.1033 5.18667 22.9167 5.41667 22.9167H34.5833C34.8133 22.9167 35 23.1033 35 23.3333ZM30 5H10C6.66667 5 5 6.66667 5 10V20C5 20.23 5.18667 20.4167 5.41667 20.4167H34.5833C34.8133 20.4167 35 20.23 35 20V10C35 6.66667 33.3333 5 30 5Z",
|
|
@@ -11340,7 +11212,7 @@ var Notification = ({
|
|
|
11340
11212
|
}
|
|
11341
11213
|
)
|
|
11342
11214
|
}
|
|
11343
|
-
) : /* @__PURE__ */
|
|
11215
|
+
) : /* @__PURE__ */ jsx113(
|
|
11344
11216
|
"svg",
|
|
11345
11217
|
{
|
|
11346
11218
|
width: "49",
|
|
@@ -11348,7 +11220,7 @@ var Notification = ({
|
|
|
11348
11220
|
viewBox: "0 0 49 48",
|
|
11349
11221
|
fill: "none",
|
|
11350
11222
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11351
|
-
children: /* @__PURE__ */
|
|
11223
|
+
children: /* @__PURE__ */ jsx113(
|
|
11352
11224
|
"path",
|
|
11353
11225
|
{
|
|
11354
11226
|
d: "M36.5 10H12.5C8.5 10 6.5 12 6.5 16V34C6.5 38 8.5 40 12.5 40H36.5C40.5 40 42.5 38 42.5 34V16C42.5 12 40.5 10 36.5 10ZM36.3818 19.212L26.5581 26.356C25.9421 26.804 25.22 27.028 24.5 27.028C23.78 27.028 23.0559 26.804 22.4419 26.358L12.6182 19.212C11.9482 18.726 11.8001 17.786 12.2881 17.116C12.7741 16.448 13.7078 16.296 14.3838 16.786L24.208 23.93C24.384 24.056 24.6179 24.058 24.7939 23.93L34.6182 16.786C35.2922 16.296 36.2279 16.448 36.7139 17.116C37.2019 17.788 37.0518 18.726 36.3818 19.212Z",
|
|
@@ -11357,8 +11229,8 @@ var Notification = ({
|
|
|
11357
11229
|
)
|
|
11358
11230
|
}
|
|
11359
11231
|
) }),
|
|
11360
|
-
/* @__PURE__ */
|
|
11361
|
-
/* @__PURE__ */
|
|
11232
|
+
/* @__PURE__ */ jsx113(H5Design, { className: "pt-8 pb-6", children: title }),
|
|
11233
|
+
/* @__PURE__ */ jsx113(Body16, { children: description })
|
|
11362
11234
|
] })
|
|
11363
11235
|
] })
|
|
11364
11236
|
}
|
|
@@ -11366,8 +11238,180 @@ var Notification = ({
|
|
|
11366
11238
|
] }) });
|
|
11367
11239
|
};
|
|
11368
11240
|
|
|
11241
|
+
// src/components/DesignElements/Link/SimpleLink.tsx
|
|
11242
|
+
import { Link as Link2 } from "@geowiki/core";
|
|
11243
|
+
import { jsx as jsx114 } from "react/jsx-runtime";
|
|
11244
|
+
var SimpleLink = ({ link }) => {
|
|
11245
|
+
return /* @__PURE__ */ jsx114(
|
|
11246
|
+
Link2,
|
|
11247
|
+
{
|
|
11248
|
+
href: link.href,
|
|
11249
|
+
target: link.isNewTab ? "_blank" : "_self",
|
|
11250
|
+
rel: "noreferrer",
|
|
11251
|
+
children: /* @__PURE__ */ jsx114(
|
|
11252
|
+
DesignButton,
|
|
11253
|
+
{
|
|
11254
|
+
variant: link.isNewTab ? "externalLink" : "internalLink",
|
|
11255
|
+
className: "h-auto p-0 flex self-start lg:p-0",
|
|
11256
|
+
children: link.title
|
|
11257
|
+
}
|
|
11258
|
+
)
|
|
11259
|
+
}
|
|
11260
|
+
);
|
|
11261
|
+
};
|
|
11262
|
+
|
|
11263
|
+
// src/components/DesignElements/TagsGroup.tsx
|
|
11264
|
+
import { v4 as v42 } from "uuid";
|
|
11265
|
+
import { jsx as jsx115, jsxs as jsxs43 } from "react/jsx-runtime";
|
|
11266
|
+
var TagsGroup = ({ label, tags, variant }) => {
|
|
11267
|
+
return /* @__PURE__ */ jsx115("div", { children: tags && (tags == null ? void 0 : tags.length) > 0 && /* @__PURE__ */ jsxs43("div", { className: "w-[41.25rem] items-start max-md:flex-wrap max-md:max-w-full", children: [
|
|
11268
|
+
/* @__PURE__ */ jsx115(Caption, { className: "text-grey", children: label }),
|
|
11269
|
+
/* @__PURE__ */ jsx115("div", { className: "pt-2 flex flex-wrap gap-1 lg:pt-4", children: tags == null ? void 0 : tags.map((tag) => /* @__PURE__ */ jsx115(DesignSimpleTag, { tag, variant }, v42())) })
|
|
11270
|
+
] }) });
|
|
11271
|
+
};
|
|
11272
|
+
|
|
11273
|
+
// src/components/DesignElements/TestWeight.tsx
|
|
11274
|
+
import { cva as cva14 } from "class-variance-authority";
|
|
11275
|
+
import { jsx as jsx116 } from "react/jsx-runtime";
|
|
11276
|
+
var weightVariants = cva14("text-[1.375rem] leading-[120%]", {
|
|
11277
|
+
variants: {
|
|
11278
|
+
variant: {
|
|
11279
|
+
weight100: "font-thin",
|
|
11280
|
+
weight200: "font-extralight",
|
|
11281
|
+
weight300: "font-light",
|
|
11282
|
+
weight400: "font-normal",
|
|
11283
|
+
weight500: "font-medium",
|
|
11284
|
+
weight600: "font-semibold",
|
|
11285
|
+
weight700: "font-bold",
|
|
11286
|
+
weight800: "font-extrabold",
|
|
11287
|
+
weight900: "font-black"
|
|
11288
|
+
}
|
|
11289
|
+
},
|
|
11290
|
+
defaultVariants: {
|
|
11291
|
+
variant: "weight400"
|
|
11292
|
+
}
|
|
11293
|
+
});
|
|
11294
|
+
var TestWeight = ({ text, variant, className }) => {
|
|
11295
|
+
return /* @__PURE__ */ jsx116(
|
|
11296
|
+
"div",
|
|
11297
|
+
{
|
|
11298
|
+
className: cn(weightVariants({ variant }), className),
|
|
11299
|
+
"data-component": "TestWeight",
|
|
11300
|
+
children: text
|
|
11301
|
+
}
|
|
11302
|
+
);
|
|
11303
|
+
};
|
|
11304
|
+
|
|
11305
|
+
// src/components/DesignElements/ThreeColumn.tsx
|
|
11306
|
+
import { jsx as jsx117, jsxs as jsxs44 } from "react/jsx-runtime";
|
|
11307
|
+
var ThreeColumn = ({ tag, content, TagClassName }) => {
|
|
11308
|
+
return /* @__PURE__ */ jsxs44("div", { className: "lg:container mx-auto lg:flex lg:gap-5 lg:justify-between lg:pr-20 lg:pt-20 w-full", children: [
|
|
11309
|
+
/* @__PURE__ */ jsx117(Body18, { className: `pt-5 lg:w-[15%] lg:pt-0 ${TagClassName}`, children: tag }),
|
|
11310
|
+
/* @__PURE__ */ jsx117("div", { className: "lg:w-[50%] max-md:max-w-[41.25rem]", children: content }),
|
|
11311
|
+
/* @__PURE__ */ jsx117("div", { className: "lg:w-[15%]" })
|
|
11312
|
+
] });
|
|
11313
|
+
};
|
|
11314
|
+
|
|
11315
|
+
// src/components/DesignElements/VersionDisplay.tsx
|
|
11316
|
+
import { useEffect as useEffect9, useState as useState11 } from "react";
|
|
11317
|
+
import { jsxs as jsxs45 } from "react/jsx-runtime";
|
|
11318
|
+
var VersionDisplay = () => {
|
|
11319
|
+
const [version, setVersion] = useState11();
|
|
11320
|
+
useEffect9(() => {
|
|
11321
|
+
fetch("/version.json").then((res) => {
|
|
11322
|
+
if (!res.ok)
|
|
11323
|
+
throw new Error("Version file not found");
|
|
11324
|
+
return res.json();
|
|
11325
|
+
}).then((data) => setVersion(data.version)).catch(() => setVersion(void 0));
|
|
11326
|
+
}, []);
|
|
11327
|
+
if (!version)
|
|
11328
|
+
return null;
|
|
11329
|
+
return /* @__PURE__ */ jsxs45("div", { className: "text-grey text-sm lg:text-base font-normal leading-[130%]", children: [
|
|
11330
|
+
"Version: ",
|
|
11331
|
+
version
|
|
11332
|
+
] });
|
|
11333
|
+
};
|
|
11334
|
+
|
|
11335
|
+
// src/components/DesignElements/header.tsx
|
|
11336
|
+
import { useState as useState12 } from "react";
|
|
11337
|
+
import { Bars3Icon, XMarkIcon as XMarkIcon2 } from "@heroicons/react/24/outline";
|
|
11338
|
+
import { ChevronDownIcon } from "@heroicons/react/20/solid";
|
|
11339
|
+
import { Link as Link3 } from "@geowiki/core";
|
|
11340
|
+
|
|
11341
|
+
// src/components/Elements/ImageElement.tsx
|
|
11342
|
+
import { Image as Image2 } from "@geowiki/core";
|
|
11343
|
+
import { jsx as jsx118 } from "react/jsx-runtime";
|
|
11344
|
+
var ImageElement = ({
|
|
11345
|
+
src,
|
|
11346
|
+
width,
|
|
11347
|
+
height,
|
|
11348
|
+
alt = "Image",
|
|
11349
|
+
className,
|
|
11350
|
+
// = "relative w-full h-full",
|
|
11351
|
+
showPlaceholder = true
|
|
11352
|
+
//shimmer, toBase64,
|
|
11353
|
+
//cmsImageUrlPath
|
|
11354
|
+
}) => {
|
|
11355
|
+
if (width && height) {
|
|
11356
|
+
if (!showPlaceholder)
|
|
11357
|
+
return /* @__PURE__ */ jsx118(
|
|
11358
|
+
Image2,
|
|
11359
|
+
{
|
|
11360
|
+
className,
|
|
11361
|
+
src,
|
|
11362
|
+
alt,
|
|
11363
|
+
width,
|
|
11364
|
+
height,
|
|
11365
|
+
quality: 90,
|
|
11366
|
+
priority: true
|
|
11367
|
+
}
|
|
11368
|
+
);
|
|
11369
|
+
return /* @__PURE__ */ jsx118(
|
|
11370
|
+
Image2,
|
|
11371
|
+
{
|
|
11372
|
+
className,
|
|
11373
|
+
src,
|
|
11374
|
+
alt,
|
|
11375
|
+
placeholder: `data:image/svg+xml;base64,${toBase64(shimmer(700, 490))}`,
|
|
11376
|
+
width,
|
|
11377
|
+
height,
|
|
11378
|
+
quality: 90,
|
|
11379
|
+
priority: true
|
|
11380
|
+
}
|
|
11381
|
+
);
|
|
11382
|
+
}
|
|
11383
|
+
if (!showPlaceholder)
|
|
11384
|
+
return /* @__PURE__ */ jsx118(
|
|
11385
|
+
Image2,
|
|
11386
|
+
{
|
|
11387
|
+
className,
|
|
11388
|
+
src,
|
|
11389
|
+
alt,
|
|
11390
|
+
layout: "fill",
|
|
11391
|
+
objectFit: "cover",
|
|
11392
|
+
quality: 90,
|
|
11393
|
+
priority: true
|
|
11394
|
+
}
|
|
11395
|
+
);
|
|
11396
|
+
return /* @__PURE__ */ jsx118("div", { className, children: /* @__PURE__ */ jsx118(
|
|
11397
|
+
Image2,
|
|
11398
|
+
{
|
|
11399
|
+
className: "rounded-xl",
|
|
11400
|
+
src,
|
|
11401
|
+
placeholder: `data:image/svg+xml;base64,${toBase64(shimmer(700, 490))}`,
|
|
11402
|
+
alt: src,
|
|
11403
|
+
quality: 90,
|
|
11404
|
+
fill: true,
|
|
11405
|
+
style: {
|
|
11406
|
+
objectFit: "cover"
|
|
11407
|
+
},
|
|
11408
|
+
priority: true
|
|
11409
|
+
}
|
|
11410
|
+
) });
|
|
11411
|
+
};
|
|
11412
|
+
|
|
11369
11413
|
// src/components/DesignElements/header.tsx
|
|
11370
|
-
import { Fragment as Fragment4, jsx as
|
|
11414
|
+
import { Fragment as Fragment4, jsx as jsx119, jsxs as jsxs46 } from "react/jsx-runtime";
|
|
11371
11415
|
var DesignHeader = ({
|
|
11372
11416
|
branding,
|
|
11373
11417
|
mainMenu,
|
|
@@ -11397,15 +11441,15 @@ var DesignHeader = ({
|
|
|
11397
11441
|
"data-component": "DesignHeader",
|
|
11398
11442
|
className: hasStickyNavBar ? "fixed w-full bg-white" : "lg:container mx-auto",
|
|
11399
11443
|
children: [
|
|
11400
|
-
/* @__PURE__ */
|
|
11444
|
+
/* @__PURE__ */ jsx119("div", { children: /* @__PURE__ */ jsxs46(
|
|
11401
11445
|
"nav",
|
|
11402
11446
|
{
|
|
11403
11447
|
className: "flex items-center justify-between p-4 lg:px-12 min-h-12",
|
|
11404
11448
|
"aria-label": "Global",
|
|
11405
11449
|
children: [
|
|
11406
|
-
/* @__PURE__ */
|
|
11407
|
-
/* @__PURE__ */
|
|
11408
|
-
/* @__PURE__ */
|
|
11450
|
+
/* @__PURE__ */ jsx119("div", { className: "hidden lg:flex lg:flex-1 md:flex md:flex-1", children: /* @__PURE__ */ jsxs46(Link3, { href: rootPath, className: "-m-1.5 min-h-16", children: [
|
|
11451
|
+
/* @__PURE__ */ jsx119("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: branding.title }),
|
|
11452
|
+
/* @__PURE__ */ jsx119(
|
|
11409
11453
|
ImageElement,
|
|
11410
11454
|
{
|
|
11411
11455
|
src: branding.logo,
|
|
@@ -11417,10 +11461,10 @@ var DesignHeader = ({
|
|
|
11417
11461
|
}
|
|
11418
11462
|
)
|
|
11419
11463
|
] }) }),
|
|
11420
|
-
/* @__PURE__ */
|
|
11421
|
-
/* @__PURE__ */ jsxs46(
|
|
11422
|
-
/* @__PURE__ */
|
|
11423
|
-
/* @__PURE__ */
|
|
11464
|
+
/* @__PURE__ */ jsx119("div", { className: "flex lg:hidden md:hidden w-full", children: /* @__PURE__ */ jsxs46("div", { className: "flex items-center justify-between w-full", children: [
|
|
11465
|
+
/* @__PURE__ */ jsxs46(Link3, { href: rootPath, className: "flex-shrink-0", children: [
|
|
11466
|
+
/* @__PURE__ */ jsx119("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: branding.title }),
|
|
11467
|
+
/* @__PURE__ */ jsx119(
|
|
11424
11468
|
ImageElement,
|
|
11425
11469
|
{
|
|
11426
11470
|
src: branding.logo,
|
|
@@ -11438,8 +11482,8 @@ var DesignHeader = ({
|
|
|
11438
11482
|
className: "flex items-center justify-center h-12 w-12 rounded-lg bg-gray-100 hover:bg-gray-200 transition-colors duration-200",
|
|
11439
11483
|
onClick: () => setMobileMenuOpen(true),
|
|
11440
11484
|
children: [
|
|
11441
|
-
/* @__PURE__ */
|
|
11442
|
-
/* @__PURE__ */
|
|
11485
|
+
/* @__PURE__ */ jsx119("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: "Open main menu" }),
|
|
11486
|
+
/* @__PURE__ */ jsx119(
|
|
11443
11487
|
Bars3Icon,
|
|
11444
11488
|
{
|
|
11445
11489
|
className: `h-8 w-8 border-2 text-gray-700`,
|
|
@@ -11459,18 +11503,18 @@ var DesignHeader = ({
|
|
|
11459
11503
|
fill: "none",
|
|
11460
11504
|
onClick: () => setMobileMenuOpen(true),
|
|
11461
11505
|
children: [
|
|
11462
|
-
/* @__PURE__ */
|
|
11463
|
-
/* @__PURE__ */
|
|
11464
|
-
/* @__PURE__ */
|
|
11506
|
+
/* @__PURE__ */ jsx119("circle", { cx: "20", cy: "20", r: "19.25", fill: "black", stroke: "black", strokeWidth: "1.5" }),
|
|
11507
|
+
/* @__PURE__ */ jsx119("path", { d: "M10 14C10 13.448 10.448 13 11 13H29C29.552 13 30 13.448 30 14C30 14.552 29.552 15 29 15H11C10.448 15 10 14.552 10 14ZM29 19H11C10.448 19 10 19.448 10 20C10 20.552 10.448 21 11 21H29C29.552 21 30 20.552 30 20C30 19.448 29.552 19 29 19ZM29 25H11C10.448 25 10 25.448 10 26C10 26.552 10.448 27 11 27H29C29.552 27 30 26.552 30 26C30 25.448 29.552 25 29 25Z", fill: "white" }),
|
|
11508
|
+
/* @__PURE__ */ jsx119("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: "Open main menu" })
|
|
11465
11509
|
]
|
|
11466
11510
|
}
|
|
11467
11511
|
)
|
|
11468
11512
|
] }) }),
|
|
11469
|
-
/* @__PURE__ */
|
|
11513
|
+
/* @__PURE__ */ jsx119(no.Group, { className: "hidden lg:flex lg:items-center lg:gap-x-6 grid-cols-1 flex items-center gap-6 text-base font-medium", children: mainMenu.map(
|
|
11470
11514
|
(menuItem) => menuItem.subMenu ? /* @__PURE__ */ jsxs46(no, { children: [
|
|
11471
11515
|
/* @__PURE__ */ jsxs46(no.Button, { className: "flex items-center gap-x-1 text-base font-medium outline-none border-none", children: [
|
|
11472
11516
|
menuItem.text,
|
|
11473
|
-
/* @__PURE__ */
|
|
11517
|
+
/* @__PURE__ */ jsx119(
|
|
11474
11518
|
ChevronDownIcon,
|
|
11475
11519
|
{
|
|
11476
11520
|
className: "h-6 w-6 flex-none text-black",
|
|
@@ -11478,12 +11522,12 @@ var DesignHeader = ({
|
|
|
11478
11522
|
}
|
|
11479
11523
|
)
|
|
11480
11524
|
] }),
|
|
11481
|
-
/* @__PURE__ */
|
|
11525
|
+
/* @__PURE__ */ jsx119(no.Panel, { className: "absolute mt-3 bg-white overflow-hidden bg-neutral-content rounded-lg ring-1 ring-gray-900/5 z-[401]", children: /* @__PURE__ */ jsx119("div", { className: "p-4 space-y-4 ", children: menuItem.subMenu.map((subItem) => /* @__PURE__ */ jsx119(
|
|
11482
11526
|
"div",
|
|
11483
11527
|
{
|
|
11484
11528
|
className: "group relative flex rounded-lg text-sm leading-tight",
|
|
11485
|
-
children: /* @__PURE__ */
|
|
11486
|
-
|
|
11529
|
+
children: /* @__PURE__ */ jsx119(
|
|
11530
|
+
Link3,
|
|
11487
11531
|
{
|
|
11488
11532
|
href: subItem.link,
|
|
11489
11533
|
className: "block font-medium min-w-[120px] hover:font-semibold ",
|
|
@@ -11494,8 +11538,8 @@ var DesignHeader = ({
|
|
|
11494
11538
|
},
|
|
11495
11539
|
subItem.text
|
|
11496
11540
|
)) }) })
|
|
11497
|
-
] }, menuItem.text) : /* @__PURE__ */
|
|
11498
|
-
|
|
11541
|
+
] }, menuItem.text) : /* @__PURE__ */ jsx119("div", { children: /* @__PURE__ */ jsx119(
|
|
11542
|
+
Link3,
|
|
11499
11543
|
{
|
|
11500
11544
|
href: menuItem.link,
|
|
11501
11545
|
className: "text-base font-medium leading-tight",
|
|
@@ -11504,9 +11548,9 @@ var DesignHeader = ({
|
|
|
11504
11548
|
}
|
|
11505
11549
|
) }, menuItem.text)
|
|
11506
11550
|
) }),
|
|
11507
|
-
/* @__PURE__ */
|
|
11551
|
+
/* @__PURE__ */ jsx119("div", { className: "hidden lg:flex lg:flex-1 lg:justify-end gap-8", children: canLogin && /* @__PURE__ */ jsxs46(Fragment4, { children: [
|
|
11508
11552
|
sessionStatus === "unauthenticated" && /* @__PURE__ */ jsxs46(Fragment4, { children: [
|
|
11509
|
-
/* @__PURE__ */
|
|
11553
|
+
/* @__PURE__ */ jsx119(
|
|
11510
11554
|
DesignButton,
|
|
11511
11555
|
{
|
|
11512
11556
|
variant: "secondary",
|
|
@@ -11515,8 +11559,8 @@ var DesignHeader = ({
|
|
|
11515
11559
|
children: "Login"
|
|
11516
11560
|
}
|
|
11517
11561
|
),
|
|
11518
|
-
canSignup && /* @__PURE__ */
|
|
11519
|
-
|
|
11562
|
+
canSignup && /* @__PURE__ */ jsx119(DesignButton, { variant: "secondary", size: "sm", children: /* @__PURE__ */ jsx119(
|
|
11563
|
+
Link3,
|
|
11520
11564
|
{
|
|
11521
11565
|
href: `${isFeatureEnabled ? "/signup" : "/register"}`,
|
|
11522
11566
|
children: "Sign up"
|
|
@@ -11524,15 +11568,15 @@ var DesignHeader = ({
|
|
|
11524
11568
|
) })
|
|
11525
11569
|
] }),
|
|
11526
11570
|
sessionStatus === "authenticated" && /* @__PURE__ */ jsxs46(Fragment4, { children: [
|
|
11527
|
-
isAdmin && /* @__PURE__ */
|
|
11528
|
-
|
|
11571
|
+
isAdmin && /* @__PURE__ */ jsx119(
|
|
11572
|
+
Link3,
|
|
11529
11573
|
{
|
|
11530
11574
|
href: `${isFeatureEnabled ? "/admin/cluster" : "/admin"} `,
|
|
11531
11575
|
className: "rounded-full flex-col items-center justify-center disabled:pointer-events-none hover:brightness-90 text-primary border border-primary py-2.5 px-5 text-base font-medium",
|
|
11532
11576
|
children: "Admin"
|
|
11533
11577
|
}
|
|
11534
11578
|
),
|
|
11535
|
-
/* @__PURE__ */
|
|
11579
|
+
/* @__PURE__ */ jsx119(
|
|
11536
11580
|
DesignButton,
|
|
11537
11581
|
{
|
|
11538
11582
|
variant: "secondary",
|
|
@@ -11554,12 +11598,12 @@ var DesignHeader = ({
|
|
|
11554
11598
|
open: mobileMenuOpen,
|
|
11555
11599
|
onClose: setMobileMenuOpen,
|
|
11556
11600
|
children: [
|
|
11557
|
-
/* @__PURE__ */
|
|
11601
|
+
/* @__PURE__ */ jsx119("div", { className: "fixed inset-0 z-10" }),
|
|
11558
11602
|
/* @__PURE__ */ jsxs46(Pt.Panel, { className: "fixed inset-y-0 right-0 z-10 flex w-full flex-col bg-white shadow-xl sm:max-w-sm", children: [
|
|
11559
11603
|
/* @__PURE__ */ jsxs46("div", { className: "flex items-center justify-between p-4", children: [
|
|
11560
|
-
/* @__PURE__ */ jsxs46(
|
|
11561
|
-
/* @__PURE__ */
|
|
11562
|
-
/* @__PURE__ */
|
|
11604
|
+
/* @__PURE__ */ jsxs46(Link3, { href: rootPath, className: "flex-shrink-0", children: [
|
|
11605
|
+
/* @__PURE__ */ jsx119("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: branding.title }),
|
|
11606
|
+
/* @__PURE__ */ jsx119(
|
|
11563
11607
|
ImageElement,
|
|
11564
11608
|
{
|
|
11565
11609
|
src: branding.logo,
|
|
@@ -11579,20 +11623,20 @@ var DesignHeader = ({
|
|
|
11579
11623
|
className: "flex items-center justify-center h-12 w-12 rounded-lg bg-gray-100 hover:bg-gray-200 transition-colors duration-200",
|
|
11580
11624
|
onClick: () => setMobileMenuOpen(false),
|
|
11581
11625
|
children: [
|
|
11582
|
-
/* @__PURE__ */
|
|
11583
|
-
/* @__PURE__ */
|
|
11626
|
+
/* @__PURE__ */ jsx119("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: "Close menu" }),
|
|
11627
|
+
/* @__PURE__ */ jsx119(XMarkIcon2, { className: `h-8 w-8 text-gray-700`, "aria-hidden": "true" })
|
|
11584
11628
|
]
|
|
11585
11629
|
}
|
|
11586
11630
|
),
|
|
11587
11631
|
mobile_menu_color == "dark" && /* @__PURE__ */ jsxs46("svg", { xmlns: "http://www.w3.org/2000/svg", width: "40", height: "40", viewBox: "0 0 40 40", fill: "none", onClick: () => setMobileMenuOpen(false), children: [
|
|
11588
|
-
/* @__PURE__ */
|
|
11589
|
-
/* @__PURE__ */
|
|
11590
|
-
/* @__PURE__ */
|
|
11632
|
+
/* @__PURE__ */ jsx119("circle", { cx: "20", cy: "20", r: "19.25", fill: "black", stroke: "black", strokeWidth: "1.5" }),
|
|
11633
|
+
/* @__PURE__ */ jsx119("path", { d: "M21.414 20.0002L26.707 14.7072C27.098 14.3172 27.098 13.6832 26.707 13.2932C26.316 12.9022 25.684 12.9022 25.293 13.2932L20 18.5862L14.707 13.2932C14.316 12.9022 13.684 12.9022 13.293 13.2932C12.902 13.6832 12.902 14.3172 13.293 14.7072L18.586 20.0002L13.293 25.2933C12.902 25.6833 12.902 26.3172 13.293 26.7072C13.488 26.9022 13.744 27.0002 14 27.0002C14.256 27.0002 14.512 26.9022 14.707 26.7072L20 21.4142L25.293 26.7072C25.488 26.9022 25.744 27.0002 26 27.0002C26.256 27.0002 26.512 26.9022 26.707 26.7072C27.098 26.3172 27.098 25.6833 26.707 25.2933L21.414 20.0002Z", fill: "white" }),
|
|
11634
|
+
/* @__PURE__ */ jsx119("span", { className: "sr-only", style: { position: "absolute", width: "1px", height: "1px", overflow: "hidden", clip: "rect(0, 0, 0, 0)" }, children: "Close menu" })
|
|
11591
11635
|
] })
|
|
11592
11636
|
] }),
|
|
11593
11637
|
/* @__PURE__ */ jsxs46("div", { className: "flex-1 flex flex-col p-6", children: [
|
|
11594
|
-
!mainMenu.some((menuItem) => menuItem.text === "Home") && /* @__PURE__ */
|
|
11595
|
-
|
|
11638
|
+
!mainMenu.some((menuItem) => menuItem.text === "Home") && /* @__PURE__ */ jsx119("div", { className: "py-2", children: /* @__PURE__ */ jsx119(
|
|
11639
|
+
Link3,
|
|
11596
11640
|
{
|
|
11597
11641
|
href: rootPath,
|
|
11598
11642
|
className: "block text-lg font-semibold text-gray-900 hover:text-gray-700 transition-colors duration-200",
|
|
@@ -11604,7 +11648,7 @@ var DesignHeader = ({
|
|
|
11604
11648
|
(menuItem) => menuItem.subMenu ? /* @__PURE__ */ jsxs46(no, { className: "relative", children: [
|
|
11605
11649
|
/* @__PURE__ */ jsxs46(no.Button, { className: "flex w-full justify-between items-center text-lg font-semibold text-gray-900 hover:text-gray-700 transition-colors duration-200 outline-none border-none py-2", children: [
|
|
11606
11650
|
menuItem.text,
|
|
11607
|
-
/* @__PURE__ */
|
|
11651
|
+
/* @__PURE__ */ jsx119(
|
|
11608
11652
|
ChevronDownIcon,
|
|
11609
11653
|
{
|
|
11610
11654
|
className: "h-5 w-5 flex-none text-gray-500",
|
|
@@ -11612,8 +11656,8 @@ var DesignHeader = ({
|
|
|
11612
11656
|
}
|
|
11613
11657
|
)
|
|
11614
11658
|
] }),
|
|
11615
|
-
/* @__PURE__ */
|
|
11616
|
-
|
|
11659
|
+
/* @__PURE__ */ jsx119(no.Panel, { className: "relative mt-2 ml-4", children: /* @__PURE__ */ jsx119("div", { className: "space-y-3", children: menuItem.subMenu.map((subItem) => /* @__PURE__ */ jsx119("div", { children: /* @__PURE__ */ jsx119(
|
|
11660
|
+
Link3,
|
|
11617
11661
|
{
|
|
11618
11662
|
href: subItem.link,
|
|
11619
11663
|
className: "block text-base text-gray-600 hover:text-gray-900 hover:font-medium transition-colors duration-200 py-1",
|
|
@@ -11622,8 +11666,8 @@ var DesignHeader = ({
|
|
|
11622
11666
|
children: subItem.text
|
|
11623
11667
|
}
|
|
11624
11668
|
) }, subItem.text)) }) })
|
|
11625
|
-
] }, menuItem.text) : /* @__PURE__ */
|
|
11626
|
-
|
|
11669
|
+
] }, menuItem.text) : /* @__PURE__ */ jsx119("div", { children: /* @__PURE__ */ jsx119(
|
|
11670
|
+
Link3,
|
|
11627
11671
|
{
|
|
11628
11672
|
href: menuItem.link,
|
|
11629
11673
|
className: "block text-lg font-semibold text-gray-900 hover:text-gray-700 transition-colors duration-200 py-2",
|
|
@@ -11635,7 +11679,7 @@ var DesignHeader = ({
|
|
|
11635
11679
|
),
|
|
11636
11680
|
canLogin && /* @__PURE__ */ jsxs46("div", { className: "pt-6 mt-auto", children: [
|
|
11637
11681
|
sessionStatus === "unauthenticated" && /* @__PURE__ */ jsxs46("div", { className: "flex gap-4 mb-4", children: [
|
|
11638
|
-
/* @__PURE__ */
|
|
11682
|
+
/* @__PURE__ */ jsx119(
|
|
11639
11683
|
"button",
|
|
11640
11684
|
{
|
|
11641
11685
|
type: "button",
|
|
@@ -11647,8 +11691,8 @@ var DesignHeader = ({
|
|
|
11647
11691
|
children: "Login"
|
|
11648
11692
|
}
|
|
11649
11693
|
),
|
|
11650
|
-
canSignup && /* @__PURE__ */
|
|
11651
|
-
|
|
11694
|
+
canSignup && /* @__PURE__ */ jsx119(
|
|
11695
|
+
Link3,
|
|
11652
11696
|
{
|
|
11653
11697
|
href: `${isFeatureEnabled ? "/signup" : "/register"}`,
|
|
11654
11698
|
className: "text-base font-medium text-gray-900 hover:text-gray-700 transition-colors duration-200",
|
|
@@ -11658,8 +11702,8 @@ var DesignHeader = ({
|
|
|
11658
11702
|
)
|
|
11659
11703
|
] }),
|
|
11660
11704
|
sessionStatus === "authenticated" && /* @__PURE__ */ jsxs46("div", { className: "space-y-3 mb-4", children: [
|
|
11661
|
-
isAdmin && /* @__PURE__ */
|
|
11662
|
-
|
|
11705
|
+
isAdmin && /* @__PURE__ */ jsx119(
|
|
11706
|
+
Link3,
|
|
11663
11707
|
{
|
|
11664
11708
|
href: `${isFeatureEnabled ? "/admin/cluster" : "/admin"}`,
|
|
11665
11709
|
className: "block text-base font-medium text-gray-900 hover:text-gray-700 transition-colors duration-200",
|
|
@@ -11667,7 +11711,7 @@ var DesignHeader = ({
|
|
|
11667
11711
|
children: "Admin"
|
|
11668
11712
|
}
|
|
11669
11713
|
),
|
|
11670
|
-
/* @__PURE__ */
|
|
11714
|
+
/* @__PURE__ */ jsx119(
|
|
11671
11715
|
"button",
|
|
11672
11716
|
{
|
|
11673
11717
|
type: "button",
|
|
@@ -11681,9 +11725,9 @@ var DesignHeader = ({
|
|
|
11681
11725
|
)
|
|
11682
11726
|
] })
|
|
11683
11727
|
] }),
|
|
11684
|
-
/* @__PURE__ */
|
|
11685
|
-
/* @__PURE__ */
|
|
11686
|
-
|
|
11728
|
+
/* @__PURE__ */ jsx119("div", { className: "pt-4 mt-auto border-t-2", children: /* @__PURE__ */ jsxs46("div", { className: "flex flex-wrap gap-4 text-base text-gray-600", children: [
|
|
11729
|
+
/* @__PURE__ */ jsx119(
|
|
11730
|
+
Link3,
|
|
11687
11731
|
{
|
|
11688
11732
|
href: privacy_policy_url != null ? privacy_policy_url : "/",
|
|
11689
11733
|
className: "hover:text-gray-900 transition-colors duration-200",
|
|
@@ -11691,8 +11735,8 @@ var DesignHeader = ({
|
|
|
11691
11735
|
children: "Privacy Policy"
|
|
11692
11736
|
}
|
|
11693
11737
|
),
|
|
11694
|
-
/* @__PURE__ */
|
|
11695
|
-
|
|
11738
|
+
/* @__PURE__ */ jsx119(
|
|
11739
|
+
Link3,
|
|
11696
11740
|
{
|
|
11697
11741
|
href: termsUrl != null ? termsUrl : "/",
|
|
11698
11742
|
className: "hover:text-gray-900 transition-colors duration-200",
|
|
@@ -11700,8 +11744,8 @@ var DesignHeader = ({
|
|
|
11700
11744
|
children: "Terms of Use"
|
|
11701
11745
|
}
|
|
11702
11746
|
),
|
|
11703
|
-
showLanguageSwitcher && /* @__PURE__ */
|
|
11704
|
-
|
|
11747
|
+
showLanguageSwitcher && /* @__PURE__ */ jsx119(
|
|
11748
|
+
Link3,
|
|
11705
11749
|
{
|
|
11706
11750
|
href: "/page/language",
|
|
11707
11751
|
className: "hover:text-gray-900 transition-colors duration-200",
|
|
@@ -11711,7 +11755,7 @@ var DesignHeader = ({
|
|
|
11711
11755
|
)
|
|
11712
11756
|
] }) })
|
|
11713
11757
|
] }),
|
|
11714
|
-
/* @__PURE__ */
|
|
11758
|
+
/* @__PURE__ */ jsx119(
|
|
11715
11759
|
Notification,
|
|
11716
11760
|
{
|
|
11717
11761
|
title: "Please login to your account on your desktop",
|
|
@@ -11732,7 +11776,7 @@ var DesignHeader = ({
|
|
|
11732
11776
|
|
|
11733
11777
|
// src/components/Elements/HTMLView.tsx
|
|
11734
11778
|
import parse from "html-react-parser";
|
|
11735
|
-
import { jsx as
|
|
11779
|
+
import { jsx as jsx120, jsxs as jsxs47 } from "react/jsx-runtime";
|
|
11736
11780
|
var HtmlView = (props) => {
|
|
11737
11781
|
const options = {
|
|
11738
11782
|
replace: (domNode) => {
|
|
@@ -11748,7 +11792,7 @@ var HtmlView = (props) => {
|
|
|
11748
11792
|
data = data.replace(match, imageHtml);
|
|
11749
11793
|
});
|
|
11750
11794
|
}
|
|
11751
|
-
return /* @__PURE__ */
|
|
11795
|
+
return /* @__PURE__ */ jsx120("span", { children: parse(data) });
|
|
11752
11796
|
}
|
|
11753
11797
|
}
|
|
11754
11798
|
};
|
|
@@ -11766,8 +11810,8 @@ var HtmlView = (props) => {
|
|
|
11766
11810
|
|
|
11767
11811
|
// src/components/DesignElements/ResourcesQuickFind.tsx
|
|
11768
11812
|
import { useState as useState13 } from "react";
|
|
11769
|
-
import { Link as
|
|
11770
|
-
import { Fragment as Fragment5, jsx as
|
|
11813
|
+
import { Link as Link4 } from "@geowiki/core";
|
|
11814
|
+
import { Fragment as Fragment5, jsx as jsx121, jsxs as jsxs48 } from "react/jsx-runtime";
|
|
11771
11815
|
var ResourcesQuickFind = (props) => {
|
|
11772
11816
|
const [selectedParent, setSelectedParent] = useState13();
|
|
11773
11817
|
const [selectedChild, setSelectedChild] = useState13();
|
|
@@ -11787,9 +11831,9 @@ var ResourcesQuickFind = (props) => {
|
|
|
11787
11831
|
});
|
|
11788
11832
|
return updatedArray;
|
|
11789
11833
|
};
|
|
11790
|
-
return /* @__PURE__ */
|
|
11791
|
-
/* @__PURE__ */
|
|
11792
|
-
/* @__PURE__ */
|
|
11834
|
+
return /* @__PURE__ */ jsx121("section", { id: props.id, className: `flex justify-center items-center mt-6 p-5 rounded-xl lg:mt-12 lg:px-16 lg:py-20 ${props.background_color}`, children: /* @__PURE__ */ jsx121("div", { className: "lg:container mx-auto w-full max-w-[1116px] ", children: /* @__PURE__ */ jsxs48("div", { className: "lg:flex lg:gap-5 ", children: [
|
|
11835
|
+
/* @__PURE__ */ jsx121("div", { className: "flex flex-col lg:w-[57%] ", children: /* @__PURE__ */ jsxs48("div", { className: "flex flex-col text-gray-900 space-y-4 lg:space-y-6 lg:mt-2.5", children: [
|
|
11836
|
+
/* @__PURE__ */ jsx121(
|
|
11793
11837
|
HtmlView,
|
|
11794
11838
|
{
|
|
11795
11839
|
cssClass: "m-0 pt-2 lg:pt-0",
|
|
@@ -11800,14 +11844,14 @@ var ResourcesQuickFind = (props) => {
|
|
|
11800
11844
|
) : props.title
|
|
11801
11845
|
}
|
|
11802
11846
|
),
|
|
11803
|
-
/* @__PURE__ */
|
|
11804
|
-
props.resource_finder_text && props.resource_finder_url && /* @__PURE__ */
|
|
11847
|
+
/* @__PURE__ */ jsx121(Body18, { className: "lg:w-[65%]", children: props.description }),
|
|
11848
|
+
props.resource_finder_text && props.resource_finder_url && /* @__PURE__ */ jsx121(
|
|
11805
11849
|
DesignButton,
|
|
11806
11850
|
{
|
|
11807
11851
|
className: "h-auto p-0 lg:p-0 self-start",
|
|
11808
11852
|
variant: "internalLink",
|
|
11809
|
-
children: /* @__PURE__ */
|
|
11810
|
-
|
|
11853
|
+
children: /* @__PURE__ */ jsx121(
|
|
11854
|
+
Link4,
|
|
11811
11855
|
{
|
|
11812
11856
|
href: props.resource_finder_url,
|
|
11813
11857
|
target: "_self",
|
|
@@ -11818,8 +11862,8 @@ var ResourcesQuickFind = (props) => {
|
|
|
11818
11862
|
}
|
|
11819
11863
|
)
|
|
11820
11864
|
] }) }),
|
|
11821
|
-
/* @__PURE__ */
|
|
11822
|
-
/* @__PURE__ */
|
|
11865
|
+
/* @__PURE__ */ jsx121("div", { className: "pt-6 flex flex-col lg:ml-5 lg:pt-0 " + (!props.right_panel_default_width ? "" : "w-full lg:w-[43%]"), children: /* @__PURE__ */ jsx121("form", { className: `flex flex-col grow w-full lg:w-full text-base font-medium leading-5 text-gray-900 rounded-xl bg-white bg-opacity-${props.background_opacity} lg:min-w-[24rem]`, children: props.parent_list && /* @__PURE__ */ jsx121("div", { className: "w-full flex-col flex justify-center", children: /* @__PURE__ */ jsxs48("div", { className: " w-full lg:w-[20rem] p-8 bg-opacity-40 rounded-xl", children: [
|
|
11866
|
+
/* @__PURE__ */ jsx121(Body16m, { className: "pb-1", children: props.parent_list_title }),
|
|
11823
11867
|
/* @__PURE__ */ jsxs48(
|
|
11824
11868
|
DesignSelect,
|
|
11825
11869
|
{
|
|
@@ -11827,8 +11871,8 @@ var ResourcesQuickFind = (props) => {
|
|
|
11827
11871
|
handleParentChange(v6);
|
|
11828
11872
|
},
|
|
11829
11873
|
children: [
|
|
11830
|
-
/* @__PURE__ */
|
|
11831
|
-
/* @__PURE__ */
|
|
11874
|
+
/* @__PURE__ */ jsx121(DesignSelectTrigger, { className: "w-full lg:w-80 bg-white", children: /* @__PURE__ */ jsx121(DesignSelectValue, { placeholder: "Select one" }) }),
|
|
11875
|
+
/* @__PURE__ */ jsx121(DesignSelectContent, { children: /* @__PURE__ */ jsx121(DesignSelectGroup, { children: props.parent_list.map((audience) => /* @__PURE__ */ jsx121(
|
|
11832
11876
|
DesignSelectItem,
|
|
11833
11877
|
{
|
|
11834
11878
|
value: audience.key,
|
|
@@ -11840,7 +11884,7 @@ var ResourcesQuickFind = (props) => {
|
|
|
11840
11884
|
}
|
|
11841
11885
|
),
|
|
11842
11886
|
props.child_list && /* @__PURE__ */ jsxs48(Fragment5, { children: [
|
|
11843
|
-
/* @__PURE__ */
|
|
11887
|
+
/* @__PURE__ */ jsx121(Body16m, { className: "pb-1 pt-8", children: props.child_list_title }),
|
|
11844
11888
|
/* @__PURE__ */ jsxs48(
|
|
11845
11889
|
DesignSelect,
|
|
11846
11890
|
{
|
|
@@ -11848,8 +11892,8 @@ var ResourcesQuickFind = (props) => {
|
|
|
11848
11892
|
handleChildChange(v6);
|
|
11849
11893
|
},
|
|
11850
11894
|
children: [
|
|
11851
|
-
/* @__PURE__ */
|
|
11852
|
-
/* @__PURE__ */
|
|
11895
|
+
/* @__PURE__ */ jsx121(DesignSelectTrigger, { className: "w-full lg:w-80 bg-white", children: /* @__PURE__ */ jsx121(DesignSelectValue, { placeholder: "Select one" }) }),
|
|
11896
|
+
/* @__PURE__ */ jsx121(DesignSelectContent, { children: /* @__PURE__ */ jsx121(DesignSelectGroup, { children: updateChild().map((topic) => /* @__PURE__ */ jsx121(
|
|
11853
11897
|
DesignSelectItem,
|
|
11854
11898
|
{
|
|
11855
11899
|
value: topic.key,
|
|
@@ -11868,8 +11912,8 @@ var ResourcesQuickFind = (props) => {
|
|
|
11868
11912
|
href: selectedParent ? props.parent_list.filter((x6) => x6.key == selectedParent)[0].link : "#",
|
|
11869
11913
|
target: "_blank",
|
|
11870
11914
|
children: [
|
|
11871
|
-
/* @__PURE__ */
|
|
11872
|
-
/* @__PURE__ */
|
|
11915
|
+
/* @__PURE__ */ jsx121("div", { className: "inline-flex justify-start items-start gap-1.5", children: /* @__PURE__ */ jsx121("div", { className: "justify-center text-white text-lg font-medium", children: "Download" }) }),
|
|
11916
|
+
/* @__PURE__ */ jsx121("div", { className: "w-6 h-6", children: /* @__PURE__ */ jsx121("div", { className: "w-3.5 h-5bg-white", children: /* @__PURE__ */ jsx121("svg", { width: "14", height: "20", viewBox: "0 0 14 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx121("path", { d: "M1.29297 10.707C0.901969 10.316 0.901969 9.68397 1.29297 9.29297C1.68397 8.90197 2.31603 8.90197 2.70703 9.29297L6 12.5859V1C6 0.448 6.447 0 7 0C7.553 0 8 0.448 8 1V12.5859L11.293 9.29297C11.684 8.90197 12.316 8.90197 12.707 9.29297C13.098 9.68397 13.098 10.316 12.707 10.707L7.70801 15.7061C7.61501 15.7991 7.50508 15.8721 7.38208 15.9231C7.26008 15.9741 7.13 16 7 16C6.87 16 6.73992 15.9731 6.61792 15.9231C6.49492 15.8721 6.38499 15.7991 6.29199 15.7061L1.29297 10.707ZM13 18H1C0.447 18 0 18.448 0 19C0 19.552 0.447 20 1 20H13C13.553 20 14 19.552 14 19C14 18.448 13.553 18 13 18Z", fill: "white" }) }) }) })
|
|
11873
11917
|
]
|
|
11874
11918
|
}
|
|
11875
11919
|
)
|
|
@@ -11879,23 +11923,23 @@ var ResourcesQuickFind = (props) => {
|
|
|
11879
11923
|
|
|
11880
11924
|
// src/components/DesignElements/FAQItem.tsx
|
|
11881
11925
|
import { MinusSmallIcon, PlusSmallIcon } from "@heroicons/react/24/outline";
|
|
11882
|
-
import { Fragment as Fragment6, jsx as
|
|
11926
|
+
import { Fragment as Fragment6, jsx as jsx122, jsxs as jsxs49 } from "react/jsx-runtime";
|
|
11883
11927
|
var FAQItem = ({ faqs, backgroundColor }) => {
|
|
11884
|
-
return /* @__PURE__ */
|
|
11928
|
+
return /* @__PURE__ */ jsx122("div", { className: "mx-auto", "data-component": "FAQItem", children: /* @__PURE__ */ jsx122("dl", { children: faqs.map((faq) => /* @__PURE__ */ jsx122(
|
|
11885
11929
|
We2,
|
|
11886
11930
|
{
|
|
11887
11931
|
as: "div",
|
|
11888
11932
|
className: "border-0 border-b border-zinc-300",
|
|
11889
11933
|
children: ({ open }) => /* @__PURE__ */ jsxs49(Fragment6, { children: [
|
|
11890
|
-
/* @__PURE__ */
|
|
11891
|
-
/* @__PURE__ */
|
|
11892
|
-
/* @__PURE__ */
|
|
11934
|
+
/* @__PURE__ */ jsx122("dt", { children: /* @__PURE__ */ jsxs49(We2.Button, { className: "pt-6 flex w-full items-start justify-between text-left lg:pt-8", children: [
|
|
11935
|
+
/* @__PURE__ */ jsx122(Body20m, { className: `${open ? "pb-0" : "pb-6 lg:pb-8"}`, children: faq.question }),
|
|
11936
|
+
/* @__PURE__ */ jsx122("span", { className: "ml-6 flex h-7 items-center", children: open ? /* @__PURE__ */ jsx122(
|
|
11893
11937
|
MinusSmallIcon,
|
|
11894
11938
|
{
|
|
11895
11939
|
className: "h-6 w-6",
|
|
11896
11940
|
"aria-hidden": "true"
|
|
11897
11941
|
}
|
|
11898
|
-
) : /* @__PURE__ */
|
|
11942
|
+
) : /* @__PURE__ */ jsx122(PlusSmallIcon, { className: "h-6 w-6", "aria-hidden": "true" }) })
|
|
11899
11943
|
] }) }),
|
|
11900
11944
|
/* @__PURE__ */ jsxs49(
|
|
11901
11945
|
We2.Panel,
|
|
@@ -11903,8 +11947,8 @@ var FAQItem = ({ faqs, backgroundColor }) => {
|
|
|
11903
11947
|
as: "dd",
|
|
11904
11948
|
className: `pr-10 ${faq.hint ? "pt-6 pb-8 space-y-6" : "py-6"}`,
|
|
11905
11949
|
children: [
|
|
11906
|
-
/* @__PURE__ */
|
|
11907
|
-
/* @__PURE__ */
|
|
11950
|
+
/* @__PURE__ */ jsx122(Body16, { children: faq.hint }),
|
|
11951
|
+
/* @__PURE__ */ jsx122(
|
|
11908
11952
|
Body18,
|
|
11909
11953
|
{
|
|
11910
11954
|
className: (backgroundColor == null ? void 0 : backgroundColor.includes("text-white")) ? "text-white" : "text-zinc-500",
|
|
@@ -11921,11 +11965,11 @@ var FAQItem = ({ faqs, backgroundColor }) => {
|
|
|
11921
11965
|
};
|
|
11922
11966
|
|
|
11923
11967
|
// src/components/DesignElements/FaqComponent.tsx
|
|
11924
|
-
import { jsx as
|
|
11968
|
+
import { jsx as jsx123, jsxs as jsxs50 } from "react/jsx-runtime";
|
|
11925
11969
|
var FaqComponent = (props) => {
|
|
11926
11970
|
return /* @__PURE__ */ jsxs50("div", { id: props.id, children: [
|
|
11927
|
-
/* @__PURE__ */
|
|
11928
|
-
/* @__PURE__ */
|
|
11971
|
+
/* @__PURE__ */ jsx123("a", { href: "#faq" }),
|
|
11972
|
+
/* @__PURE__ */ jsx123(
|
|
11929
11973
|
"div",
|
|
11930
11974
|
{
|
|
11931
11975
|
className: `${props.backgroundColor} rounded-xl `,
|
|
@@ -11936,15 +11980,15 @@ var FaqComponent = (props) => {
|
|
|
11936
11980
|
className: `container mx-auto flex flex-col lg:flex-row justify-between py-6 lg:px-12 lg:pt-20 lg:pb-14 lg:mt-10 ${props.backgroundColor === "" ? "px-0 mt-2" : " px-5 mt-6 "}`,
|
|
11937
11981
|
children: [
|
|
11938
11982
|
/* @__PURE__ */ jsxs50(Body18, { className: "w-[15%] pb-2 lg:pb-0", children: [
|
|
11939
|
-
/* @__PURE__ */
|
|
11940
|
-
/* @__PURE__ */
|
|
11983
|
+
/* @__PURE__ */ jsx123("span", { className: "hidden md:block", children: props.subtitle }),
|
|
11984
|
+
/* @__PURE__ */ jsx123("span", { className: "block md:hidden", children: "FAQs" })
|
|
11941
11985
|
] }),
|
|
11942
11986
|
/* @__PURE__ */ jsxs50("div", { className: "lg:w-[50%]", children: [
|
|
11943
|
-
/* @__PURE__ */
|
|
11944
|
-
/* @__PURE__ */
|
|
11945
|
-
props.faqs && /* @__PURE__ */
|
|
11987
|
+
/* @__PURE__ */ jsx123(H3Design, { className: "pb-4", children: props.title }),
|
|
11988
|
+
/* @__PURE__ */ jsx123(Body18, { children: props.description }),
|
|
11989
|
+
props.faqs && /* @__PURE__ */ jsx123(FAQItem, { faqs: props.faqs, backgroundColor: props.backgroundColor })
|
|
11946
11990
|
] }),
|
|
11947
|
-
/* @__PURE__ */
|
|
11991
|
+
/* @__PURE__ */ jsx123("div", { className: "hidden lg:w-[15%] lg:inline" })
|
|
11948
11992
|
]
|
|
11949
11993
|
}
|
|
11950
11994
|
)
|
|
@@ -11954,13 +11998,13 @@ var FaqComponent = (props) => {
|
|
|
11954
11998
|
};
|
|
11955
11999
|
|
|
11956
12000
|
// src/components/DesignElements/footer.tsx
|
|
11957
|
-
import { jsx as
|
|
12001
|
+
import { jsx as jsx124, jsxs as jsxs51 } from "react/jsx-runtime";
|
|
11958
12002
|
var DesignFooter = (props) => {
|
|
11959
12003
|
var _a, _b, _c;
|
|
11960
12004
|
return /* @__PURE__ */ jsxs51("footer", { "data-component": "DesignFooter", children: [
|
|
11961
12005
|
props.branding.logo && props.branding.title && /* @__PURE__ */ jsxs51("div", { className: "bg-neutral-100 rounded-tl-3xl rounded-tr-3xl lg:px-12 px-4 mt-20", children: [
|
|
11962
12006
|
/* @__PURE__ */ jsxs51("div", { className: "container mx-auto flex flex-col lg:flex-row items-center lg:items-start justify-between pt-12 gap-4", children: [
|
|
11963
|
-
props.branding.logo && /* @__PURE__ */
|
|
12007
|
+
props.branding.logo && /* @__PURE__ */ jsx124(
|
|
11964
12008
|
ImageElement,
|
|
11965
12009
|
{
|
|
11966
12010
|
src: props.branding.logo,
|
|
@@ -11971,21 +12015,21 @@ var DesignFooter = (props) => {
|
|
|
11971
12015
|
},
|
|
11972
12016
|
props.branding.logo
|
|
11973
12017
|
),
|
|
11974
|
-
/* @__PURE__ */
|
|
12018
|
+
/* @__PURE__ */ jsx124("div", { className: "text-center text-primary text-sm lg:text-lg font-semibold capitalize leading-[130%]", children: props.branding.title })
|
|
11975
12019
|
] }),
|
|
11976
|
-
props.navigation && props.navigation.length > 0 && /* @__PURE__ */
|
|
11977
|
-
/* @__PURE__ */
|
|
11978
|
-
/* @__PURE__ */
|
|
12020
|
+
props.navigation && props.navigation.length > 0 && /* @__PURE__ */ jsx124("div", { className: "pt-12 lg:pt-20 pb-8 lg:pb-16 container mx-auto", children: /* @__PURE__ */ jsx124("div", { className: "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8", children: (_a = props.navigation) == null ? void 0 : _a.map((category) => /* @__PURE__ */ jsxs51("div", { children: [
|
|
12021
|
+
/* @__PURE__ */ jsx124(Body18m, { className: "mb-4", children: category.category }),
|
|
12022
|
+
/* @__PURE__ */ jsx124("ul", { role: "list", className: "space-y-4", children: category.items.map((item) => /* @__PURE__ */ jsx124("li", { children: /* @__PURE__ */ jsx124("a", { href: item.href, children: /* @__PURE__ */ jsx124(Body18, { children: item.name }) }) }, item.name)) })
|
|
11979
12023
|
] }, category.category)) }) }),
|
|
11980
|
-
props.navigation && props.navigation.length > 0 && props.bottomMenu && props.bottomMenu.length > 0 && /* @__PURE__ */
|
|
11981
|
-
/* @__PURE__ */
|
|
11982
|
-
/* @__PURE__ */
|
|
12024
|
+
props.navigation && props.navigation.length > 0 && props.bottomMenu && props.bottomMenu.length > 0 && /* @__PURE__ */ jsx124("div", { className: "border-t border-neutral-300" }),
|
|
12025
|
+
/* @__PURE__ */ jsx124("div", { className: "container mx-auto flex justify-between items-center py-6 lg:pt-10 lg:pb-16 ", children: props.bottomMenu && props.bottomMenu.length > 0 && /* @__PURE__ */ jsxs51("div", { className: "w-full items-center justify-between lg:flex", children: [
|
|
12026
|
+
/* @__PURE__ */ jsx124("div", { className: "flex-wrap flex gap-x-5 gap-y-2 lg:gap-y-0 lg:gap-x-6", children: (_b = props.bottomMenu) == null ? void 0 : _b.map((item) => /* @__PURE__ */ jsxs51(
|
|
11983
12027
|
"a",
|
|
11984
12028
|
{
|
|
11985
12029
|
href: item.href,
|
|
11986
12030
|
className: `text-lg font-normal leading-[130%] flex items-center justify-center ${item.name === "Contact" ? "hidden lg:block" : ""}`,
|
|
11987
12031
|
children: [
|
|
11988
|
-
item.name == "Language" && /* @__PURE__ */
|
|
12032
|
+
item.name == "Language" && /* @__PURE__ */ jsx124("div", { className: "hidden lg:block lg:pr-2", children: /* @__PURE__ */ jsxs51(
|
|
11989
12033
|
"svg",
|
|
11990
12034
|
{
|
|
11991
12035
|
width: "33",
|
|
@@ -11994,14 +12038,14 @@ var DesignFooter = (props) => {
|
|
|
11994
12038
|
fill: "none",
|
|
11995
12039
|
xmlns: "http://www.w3.org/2000/svg",
|
|
11996
12040
|
children: [
|
|
11997
|
-
/* @__PURE__ */
|
|
12041
|
+
/* @__PURE__ */ jsx124(
|
|
11998
12042
|
"path",
|
|
11999
12043
|
{
|
|
12000
12044
|
d: "M1.94995 22.212C0.729951 20.892 0 19.121 0 17.001C0 12 4.03 9 9 9C13.97 9 18 12 18 17.001C18 22.002 13.97 25.002 9 25.002C7.72 25.002 6.50991 24.802 5.40991 24.422C4.06991 25.852 1.87996 26.0419 0.459961 25.9919C0.0299609 25.9819 -0.160078 25.432 0.169922 25.152C1.25992 24.273 1.79995 23.173 1.94995 22.212Z",
|
|
12001
12045
|
fill: "#101010"
|
|
12002
12046
|
}
|
|
12003
12047
|
),
|
|
12004
|
-
/* @__PURE__ */
|
|
12048
|
+
/* @__PURE__ */ jsx124(
|
|
12005
12049
|
"path",
|
|
12006
12050
|
{
|
|
12007
12051
|
d: "M32.1439 17.7628L32.144 17.7626L32.1536 17.7707C32.8223 18.3382 32.4564 19.4679 31.5552 19.4917C30.1893 19.5395 27.9612 19.3819 26.4556 17.9925C25.3814 18.3278 24.2185 18.502 23 18.502C20.4179 18.502 18.0475 17.7227 16.3137 16.2589C14.5716 14.7881 13.5 12.6476 13.5 10.001C13.5 7.35432 14.5716 5.2139 16.3137 3.74307C18.0475 2.27927 20.4179 1.5 23 1.5C25.5821 1.5 27.9525 2.27927 29.6863 3.74307C31.4284 5.2139 32.5 7.35432 32.5 10.001C32.5 12.1433 31.7925 13.968 30.5872 15.3614C30.7637 16.1483 31.2398 17.0337 32.1439 17.7628Z",
|
|
@@ -12009,14 +12053,14 @@ var DesignFooter = (props) => {
|
|
|
12009
12053
|
stroke: "white"
|
|
12010
12054
|
}
|
|
12011
12055
|
),
|
|
12012
|
-
/* @__PURE__ */
|
|
12056
|
+
/* @__PURE__ */ jsx124(
|
|
12013
12057
|
"path",
|
|
12014
12058
|
{
|
|
12015
12059
|
d: "M27 6.5H23.5V6C23.5 5.86739 23.4473 5.74021 23.3536 5.64645C23.2598 5.55268 23.1326 5.5 23 5.5C22.8674 5.5 22.7402 5.55268 22.6464 5.64645C22.5527 5.74021 22.5 5.86739 22.5 6V6.5H19C18.8674 6.5 18.7402 6.55268 18.6464 6.64645C18.5527 6.74021 18.5 6.86739 18.5 7C18.5 7.13261 18.5527 7.25979 18.6464 7.35355C18.7402 7.44732 18.8674 7.5 19 7.5H24.9411C24.7163 8.99882 24.0272 10.3894 22.9707 11.4761C22.2391 10.7254 21.6799 9.82414 21.332 8.83521C21.2882 8.71015 21.1965 8.60761 21.0771 8.5501C20.9577 8.49259 20.8204 8.48481 20.6953 8.52848C20.5702 8.57215 20.4675 8.66369 20.4098 8.78299C20.3522 8.9023 20.3442 9.03962 20.3877 9.16479C20.7796 10.2786 21.4072 11.2948 22.2278 12.1439C21.3816 12.8114 20.3955 13.2789 19.3433 13.5115C19.2229 13.5379 19.1165 13.6078 19.0445 13.7078C18.9726 13.8079 18.9401 13.9309 18.9533 14.0535C18.9664 14.176 19.0244 14.2893 19.116 14.3717C19.2077 14.4541 19.3265 14.4998 19.4497 14.5C19.4858 14.5 19.5218 14.4961 19.5571 14.4885C20.8104 14.2121 21.9807 13.6435 22.9726 12.8291C23.9671 13.6428 25.1389 14.2112 26.3936 14.4885C26.5227 14.5157 26.6574 14.4907 26.7682 14.419C26.879 14.3472 26.9569 14.2346 26.985 14.1057C27.0131 13.9767 26.9891 13.8419 26.9182 13.7305C26.8473 13.6192 26.7352 13.5405 26.6064 13.5114C25.5511 13.2792 24.5617 12.8121 23.7117 12.1449C24.934 10.8754 25.7172 9.2474 25.9462 7.5H27C27.1326 7.5 27.2598 7.44732 27.3536 7.35355C27.4473 7.25979 27.5 7.13261 27.5 7C27.5 6.86739 27.4473 6.74021 27.3536 6.64645C27.2598 6.55268 27.1326 6.5 27 6.5Z",
|
|
12016
12060
|
fill: "white"
|
|
12017
12061
|
}
|
|
12018
12062
|
),
|
|
12019
|
-
/* @__PURE__ */
|
|
12063
|
+
/* @__PURE__ */ jsx124(
|
|
12020
12064
|
"path",
|
|
12021
12065
|
{
|
|
12022
12066
|
d: "M10.48 18.88H6.98L6.29 20.5H4.95L8.1 13.5H9.38L12.54 20.5H11.18L10.48 18.88ZM10.05 17.86L8.73 14.8L7.42 17.86H10.05Z",
|
|
@@ -12026,18 +12070,18 @@ var DesignFooter = (props) => {
|
|
|
12026
12070
|
]
|
|
12027
12071
|
}
|
|
12028
12072
|
) }),
|
|
12029
|
-
/* @__PURE__ */
|
|
12073
|
+
/* @__PURE__ */ jsx124(Body18, { children: item.name })
|
|
12030
12074
|
]
|
|
12031
12075
|
},
|
|
12032
12076
|
item.name
|
|
12033
12077
|
)) }),
|
|
12034
|
-
props.socialLinks && props.socialLinks.length > 0 && /* @__PURE__ */
|
|
12078
|
+
props.socialLinks && props.socialLinks.length > 0 && /* @__PURE__ */ jsx124("div", { className: "flex-wrap flex gap-x-6 gap-y-2 pt-4 lg:gap-y-0 lg:pt-0", children: props.socialLinks.map((socialLink) => /* @__PURE__ */ jsx124(
|
|
12035
12079
|
"a",
|
|
12036
12080
|
{
|
|
12037
12081
|
href: socialLink.href,
|
|
12038
12082
|
target: socialLink.isNewTab ? "_blank" : "_self",
|
|
12039
12083
|
className: "text-lg font-normal leading-[130%] flex items-center justify-center",
|
|
12040
|
-
children: /* @__PURE__ */
|
|
12084
|
+
children: /* @__PURE__ */ jsx124(Body18, { children: socialLink.name })
|
|
12041
12085
|
},
|
|
12042
12086
|
socialLink.name
|
|
12043
12087
|
)) })
|
|
@@ -12045,8 +12089,8 @@ var DesignFooter = (props) => {
|
|
|
12045
12089
|
] }),
|
|
12046
12090
|
/* @__PURE__ */ jsxs51("div", { className: "bg-white py-6 lg:py-10 space-y-4 px-4 lg:px-0", children: [
|
|
12047
12091
|
(props.footerLogoPath || props.footerText || props.imagesPaths) && /* @__PURE__ */ jsxs51("div", { className: "container mx-auto flex flex-col lg:flex-row gap-3 lg:gap-5 justify-between", children: [
|
|
12048
|
-
/* @__PURE__ */
|
|
12049
|
-
props.footerLogoPath && /* @__PURE__ */
|
|
12092
|
+
/* @__PURE__ */ jsx124("div", { className: "flex flex-col lg:flex-row items-center lg:items-start gap-4 lg:space-x-4", children: /* @__PURE__ */ jsxs51("div", { className: "flex flex-col gap-4 items-start text-sm leading-5 text-grey lg:flex-row lg:gap-5 lg:items-center", children: [
|
|
12093
|
+
props.footerLogoPath && /* @__PURE__ */ jsx124(
|
|
12050
12094
|
ImageElement,
|
|
12051
12095
|
{
|
|
12052
12096
|
src: props.footerLogoPath,
|
|
@@ -12055,9 +12099,9 @@ var DesignFooter = (props) => {
|
|
|
12055
12099
|
className: "h-10 lg:h-16 w-auto"
|
|
12056
12100
|
}
|
|
12057
12101
|
),
|
|
12058
|
-
props.footerText && /* @__PURE__ */
|
|
12102
|
+
props.footerText && /* @__PURE__ */ jsx124("p", { className: "text-left max-w-full text-xs lg:text-sm lg:max-w-md", children: props.footerText })
|
|
12059
12103
|
] }) }),
|
|
12060
|
-
/* @__PURE__ */
|
|
12104
|
+
/* @__PURE__ */ jsx124("div", { className: "flex flex-wrap gap-3 justify-start items-center lg:justify-end lg:gap-4 ", children: (_c = props.imagesPaths) == null ? void 0 : _c.map((path) => /* @__PURE__ */ jsx124(
|
|
12061
12105
|
ImageElement,
|
|
12062
12106
|
{
|
|
12063
12107
|
src: path,
|
|
@@ -12077,7 +12121,7 @@ var DesignFooter = (props) => {
|
|
|
12077
12121
|
(/* @__PURE__ */ new Date()).getFullYear(),
|
|
12078
12122
|
" "
|
|
12079
12123
|
] }),
|
|
12080
|
-
/* @__PURE__ */
|
|
12124
|
+
/* @__PURE__ */ jsx124(VersionDisplay, {})
|
|
12081
12125
|
] })
|
|
12082
12126
|
] })
|
|
12083
12127
|
] });
|
|
@@ -12086,8 +12130,8 @@ var BasicFooter = (props) => {
|
|
|
12086
12130
|
return /* @__PURE__ */ jsxs51("div", { className: "w-full bg-zinc-100 md:bg-white rounded-tl-3xl rounded-tr-3xl overflow-hidden mt-20", children: [
|
|
12087
12131
|
/* @__PURE__ */ jsxs51("div", { className: "w-full bg-zinc-100 md:p-12 p-8 md:flex justify-between items-center", children: [
|
|
12088
12132
|
/* @__PURE__ */ jsxs51("div", { className: "flex gap-6 justify-center md:justify-start", children: [
|
|
12089
|
-
/* @__PURE__ */
|
|
12090
|
-
/* @__PURE__ */
|
|
12133
|
+
/* @__PURE__ */ jsx124("a", { className: "text-gray-900 text-lg font-normal leading-6", href: props.privacy_policy_url, children: "Privacy policy" }),
|
|
12134
|
+
/* @__PURE__ */ jsx124("a", { className: "text-gray-900 text-lg font-normal leading-6", href: props.termsUrl, children: "Terms of Use" })
|
|
12091
12135
|
] }),
|
|
12092
12136
|
/* @__PURE__ */ jsxs51("div", { className: "hidden md:flex gap-6", children: [
|
|
12093
12137
|
/* @__PURE__ */ jsxs51("div", { className: "text-zinc-500 text-base font-normal leading-5", children: [
|
|
@@ -12101,8 +12145,8 @@ var BasicFooter = (props) => {
|
|
|
12101
12145
|
] })
|
|
12102
12146
|
] }),
|
|
12103
12147
|
/* @__PURE__ */ jsxs51("div", { className: "w-full bg-white flex flex-row items-center justify-center gap-4", children: [
|
|
12104
|
-
/* @__PURE__ */ jsx122("a", { href: "https://iiasa.ac.at/", target: "_blank", className: "mt-5 mb-5 ml-10 flex", children: /* @__PURE__ */ jsx122("img", { id: "image0_539_1532", src: "data:image/png;base64,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" }) }),
|
|
12105
|
-
props.showGeoWiki && /* @__PURE__ */
|
|
12148
|
+
/* @__PURE__ */ jsx124("a", { href: "https://iiasa.ac.at/", target: "_blank", className: "mt-5 mb-5 ml-10 flex", children: /* @__PURE__ */ jsx124("img", { id: "image0_539_1532", src: "data:image/png;base64,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" }) }),
|
|
12149
|
+
props.showGeoWiki && /* @__PURE__ */ jsx124("a", { href: "https://www.geo-wiki.org/", target: "_blank", className: "mt-5 mb-5 mr-10 flex", children: /* @__PURE__ */ jsx124("img", { id: "image0_539_1533", src: "data:image/png;base64,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" }) })
|
|
12106
12150
|
] }),
|
|
12107
12151
|
/* @__PURE__ */ jsxs51("div", { className: "flex items-center md:hidden justify-center gap-6 h-20", children: [
|
|
12108
12152
|
/* @__PURE__ */ jsxs51("div", { className: "text-zinc-500 text-base font-normal leading-5", children: [
|
|
@@ -12123,60 +12167,60 @@ import { useState as useState15 } from "react";
|
|
|
12123
12167
|
// src/components/DesignElements/AppItemPopUpView.tsx
|
|
12124
12168
|
import { Fragment as Fragment8 } from "react";
|
|
12125
12169
|
import { XMarkIcon as XMarkIcon3 } from "@heroicons/react/24/outline";
|
|
12126
|
-
import { Link as
|
|
12170
|
+
import { Link as Link5 } from "@geowiki/core";
|
|
12127
12171
|
|
|
12128
12172
|
// src/components/Icons/ResourceIcon.tsx
|
|
12129
|
-
import { Fragment as Fragment7, jsx as
|
|
12173
|
+
import { Fragment as Fragment7, jsx as jsx125 } from "react/jsx-runtime";
|
|
12130
12174
|
var ResourceIcon = ({
|
|
12131
12175
|
type
|
|
12132
12176
|
}) => {
|
|
12133
12177
|
switch (type) {
|
|
12134
12178
|
case "Collection":
|
|
12135
|
-
return /* @__PURE__ */
|
|
12179
|
+
return /* @__PURE__ */ jsx125(GridDividersIcon, { className: "bg-tag-yellow w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12136
12180
|
case "Dataset":
|
|
12137
|
-
return /* @__PURE__ */
|
|
12181
|
+
return /* @__PURE__ */ jsx125(ChartLineDotsIcon, { className: "bg-tag-turquoise w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12138
12182
|
case "Event":
|
|
12139
|
-
return /* @__PURE__ */
|
|
12183
|
+
return /* @__PURE__ */ jsx125(CalendarIcon, { className: "bg-tag-orange w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12140
12184
|
case "Image":
|
|
12141
|
-
return /* @__PURE__ */
|
|
12185
|
+
return /* @__PURE__ */ jsx125(ImageIcon, { className: "bg-tag-turquoise w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12142
12186
|
case "InteractiveResource":
|
|
12143
|
-
return /* @__PURE__ */
|
|
12187
|
+
return /* @__PURE__ */ jsx125(DesktopCodeIcon, { className: "bg-tag-light-purple w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12144
12188
|
case "MovingImage":
|
|
12145
|
-
return /* @__PURE__ */
|
|
12189
|
+
return /* @__PURE__ */ jsx125(VideoPlayIcon, { className: "bg-tag-pink w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12146
12190
|
case "PhysicalObject":
|
|
12147
|
-
return /* @__PURE__ */
|
|
12191
|
+
return /* @__PURE__ */ jsx125(CpuIcon, { className: "bg-tag-purple w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12148
12192
|
case "Service":
|
|
12149
|
-
return /* @__PURE__ */
|
|
12193
|
+
return /* @__PURE__ */ jsx125(UserGroupIcon, { className: "bg-tag-dark-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12150
12194
|
case "Software":
|
|
12151
|
-
return /* @__PURE__ */
|
|
12195
|
+
return /* @__PURE__ */ jsx125(HardDriveIcon, { className: "bg-tag-dark-green w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12152
12196
|
case "Sound":
|
|
12153
|
-
return /* @__PURE__ */
|
|
12197
|
+
return /* @__PURE__ */ jsx125(HeadphonesIcon, { className: "bg-tag-dark-purple w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12154
12198
|
case "StillImage":
|
|
12155
|
-
return /* @__PURE__ */
|
|
12199
|
+
return /* @__PURE__ */ jsx125(CameraIcon, { className: "bg-tag-light-green w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12156
12200
|
case "TextBook":
|
|
12157
|
-
return /* @__PURE__ */
|
|
12201
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12158
12202
|
case "TextGuidelines":
|
|
12159
|
-
return /* @__PURE__ */
|
|
12203
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12160
12204
|
case "TextGuideline":
|
|
12161
|
-
return /* @__PURE__ */
|
|
12205
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12162
12206
|
case "TextCaseStudy":
|
|
12163
|
-
return /* @__PURE__ */
|
|
12207
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12164
12208
|
case "TextReport":
|
|
12165
|
-
return /* @__PURE__ */
|
|
12209
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12166
12210
|
case "TextPolicyBrief":
|
|
12167
|
-
return /* @__PURE__ */
|
|
12211
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12168
12212
|
case "TextScientificPublication":
|
|
12169
|
-
return /* @__PURE__ */
|
|
12213
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12170
12214
|
case "TextOther":
|
|
12171
|
-
return /* @__PURE__ */
|
|
12215
|
+
return /* @__PURE__ */ jsx125(BookTextIcon, { className: "bg-tag-blue w-[40px] h-[40px] lg:w-[48px] lg:h-[48px] p-3 rounded-[8px] fill-white" });
|
|
12172
12216
|
default:
|
|
12173
|
-
return /* @__PURE__ */
|
|
12217
|
+
return /* @__PURE__ */ jsx125(Fragment7, { children: "Not found" });
|
|
12174
12218
|
}
|
|
12175
12219
|
};
|
|
12176
12220
|
|
|
12177
12221
|
// src/components/DesignElements/ExpandableText.tsx
|
|
12178
12222
|
import { useState as useState14 } from "react";
|
|
12179
|
-
import { jsx as
|
|
12223
|
+
import { jsx as jsx126, jsxs as jsxs52 } from "react/jsx-runtime";
|
|
12180
12224
|
var ExpandableText = ({ text, maxLength = 120, show_read_more = false, no_word_wrap = true }) => {
|
|
12181
12225
|
const [expanded, setExpanded] = useState14(false);
|
|
12182
12226
|
if (text.length <= maxLength || maxLength == 0) {
|
|
@@ -12191,7 +12235,7 @@ var ExpandableText = ({ text, maxLength = 120, show_read_more = false, no_word_w
|
|
|
12191
12235
|
return /* @__PURE__ */ jsxs52("div", { className: "text-zinc-500 " + (no_word_wrap ? "whitespace-normal" : "whitespace-nowrap"), children: [
|
|
12192
12236
|
expanded ? text : safeText + "\u2026",
|
|
12193
12237
|
" ",
|
|
12194
|
-
show_read_more && /* @__PURE__ */
|
|
12238
|
+
show_read_more && /* @__PURE__ */ jsx126(
|
|
12195
12239
|
"button",
|
|
12196
12240
|
{
|
|
12197
12241
|
onClick: () => setExpanded(!expanded),
|
|
@@ -12202,42 +12246,18 @@ var ExpandableText = ({ text, maxLength = 120, show_read_more = false, no_word_w
|
|
|
12202
12246
|
] });
|
|
12203
12247
|
};
|
|
12204
12248
|
|
|
12205
|
-
// src/components/DesignElements/ResourceTag.tsx
|
|
12206
|
-
import { cva as cva14 } from "class-variance-authority";
|
|
12207
|
-
import { jsx as jsx125 } from "react/jsx-runtime";
|
|
12208
|
-
var tagVariants = cva14(
|
|
12209
|
-
"justify-center self-start px-4 py-2 mr-2 mt-1 text-sm font-medium text-white whitespace-nowrap rounded-[40px] first-letter:capitalize",
|
|
12210
|
-
{
|
|
12211
|
-
variants: {
|
|
12212
|
-
variant: {
|
|
12213
|
-
topic: "bg-tag-dark-blue",
|
|
12214
|
-
audience: "bg-tag-dark-green",
|
|
12215
|
-
keyword: "bg-tag-blue",
|
|
12216
|
-
language: "bg-tag-orange",
|
|
12217
|
-
resourceType: "bg-sky-500"
|
|
12218
|
-
}
|
|
12219
|
-
},
|
|
12220
|
-
defaultVariants: {
|
|
12221
|
-
variant: "topic"
|
|
12222
|
-
}
|
|
12223
|
-
}
|
|
12224
|
-
);
|
|
12225
|
-
var ResourceTag = ({ tag, type }) => {
|
|
12226
|
-
return /* @__PURE__ */ jsx125("span", { className: cn(tagVariants({ variant: type })), children: tag });
|
|
12227
|
-
};
|
|
12228
|
-
|
|
12229
12249
|
// src/components/DesignElements/AppItemPopUpView.tsx
|
|
12230
|
-
import { Fragment as Fragment9, jsx as
|
|
12250
|
+
import { Fragment as Fragment9, jsx as jsx127, jsxs as jsxs53 } from "react/jsx-runtime";
|
|
12231
12251
|
var DetailRow = ({ label, value }) => {
|
|
12232
|
-
return /* @__PURE__ */
|
|
12233
|
-
/* @__PURE__ */
|
|
12234
|
-
/* @__PURE__ */
|
|
12252
|
+
return /* @__PURE__ */ jsx127(Fragment9, { children: /* @__PURE__ */ jsxs53("div", { className: "flex gap-2 lg:gap-5 lg:justify-between py-4 max-md:flex-wrap max-md:max-w-full lg:py-6 border-0 border-b border-grey-light", children: [
|
|
12253
|
+
/* @__PURE__ */ jsx127(Body16, { className: "text-grey", children: label }),
|
|
12254
|
+
/* @__PURE__ */ jsx127(Body16m, { className: "lg:text-righ max-md:max-w-full", children: value })
|
|
12235
12255
|
] }) });
|
|
12236
12256
|
};
|
|
12237
12257
|
var KeyValues = ({ name, keyValues, kind }) => {
|
|
12238
12258
|
return /* @__PURE__ */ jsxs53(Fragment9, { children: [
|
|
12239
|
-
/* @__PURE__ */
|
|
12240
|
-
/* @__PURE__ */
|
|
12259
|
+
/* @__PURE__ */ jsx127(Caption, { className: "text-grey", children: name }),
|
|
12260
|
+
/* @__PURE__ */ jsx127("div", { className: "flex items-center flex-wrap text-sm font-medium whitespace-nowrap mt-2 mb-6 lg:mt-4 lg:mb-10", children: keyValues.map((keyValue, index3) => /* @__PURE__ */ jsx127(ResourceTag, { tag: keyValue.value, type: kind }, index3)) })
|
|
12241
12261
|
] });
|
|
12242
12262
|
};
|
|
12243
12263
|
function AppItemPopUpView({
|
|
@@ -12273,8 +12293,8 @@ function AppItemPopUpView({
|
|
|
12273
12293
|
const currentTypes = ((_a = types == null ? void 0 : types.find((type) => type.key === resource.resourceType)) == null ? void 0 : _a.value) || resource.resourceType;
|
|
12274
12294
|
const link = (resource == null ? void 0 : resource.link) || "";
|
|
12275
12295
|
const linkText = link.length > 70 ? `${link.slice(0, 70)}...` : link;
|
|
12276
|
-
return /* @__PURE__ */
|
|
12277
|
-
/* @__PURE__ */
|
|
12296
|
+
return /* @__PURE__ */ jsx127(Xe.Root, { show: open, as: Fragment8, "data-component": "AppItemPopUpView", children: /* @__PURE__ */ jsxs53(Pt, { as: "div", className: "relative z-10", onClose: setOpen, children: [
|
|
12297
|
+
/* @__PURE__ */ jsx127(
|
|
12278
12298
|
Xe.Child,
|
|
12279
12299
|
{
|
|
12280
12300
|
as: Fragment8,
|
|
@@ -12284,10 +12304,10 @@ function AppItemPopUpView({
|
|
|
12284
12304
|
leave: "ease-in duration-200",
|
|
12285
12305
|
leaveFrom: "opacity-100",
|
|
12286
12306
|
leaveTo: "opacity-0",
|
|
12287
|
-
children: /* @__PURE__ */
|
|
12307
|
+
children: /* @__PURE__ */ jsx127("div", { className: "fixed inset-0 bg-gray-500 bg-opacity-75 transition-opacity" })
|
|
12288
12308
|
}
|
|
12289
12309
|
),
|
|
12290
|
-
/* @__PURE__ */
|
|
12310
|
+
/* @__PURE__ */ jsx127("div", { className: "fixed z-10 inset-0 overflow-y-auto text-black", children: /* @__PURE__ */ jsx127("div", { className: "flex items-end sm:items-center justify-center min-h-full p-4 text-center sm:p-0", children: /* @__PURE__ */ jsx127(
|
|
12291
12311
|
Xe.Child,
|
|
12292
12312
|
{
|
|
12293
12313
|
as: Fragment8,
|
|
@@ -12302,15 +12322,15 @@ function AppItemPopUpView({
|
|
|
12302
12322
|
{
|
|
12303
12323
|
className: is_small ? `relative bg-white rounded-lg text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:max-w-xl sm:w-full sm:p-10` : `relative bg-white rounded-lg px-4 pt-5 pb-4 text-left overflow-hidden shadow-xl transform transition-all sm:my-8 sm:max-w-4xl sm:w-full sm:p-10`,
|
|
12304
12324
|
children: [
|
|
12305
|
-
/* @__PURE__ */
|
|
12325
|
+
/* @__PURE__ */ jsx127("div", { className: "absolute top-0 right-0 " + (is_small ? "pr-2 pt-1 lg:pt-5 lg:pr-5" : "lg:pt-10 lg:pr-10"), children: /* @__PURE__ */ jsxs53(
|
|
12306
12326
|
"button",
|
|
12307
12327
|
{
|
|
12308
12328
|
type: "button",
|
|
12309
12329
|
className: " rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 ",
|
|
12310
12330
|
onClick: () => setOpen(false),
|
|
12311
12331
|
children: [
|
|
12312
|
-
/* @__PURE__ */
|
|
12313
|
-
/* @__PURE__ */
|
|
12332
|
+
/* @__PURE__ */ jsx127("span", { className: "sr-only", children: "Close" }),
|
|
12333
|
+
/* @__PURE__ */ jsx127(
|
|
12314
12334
|
XMarkIcon3,
|
|
12315
12335
|
{
|
|
12316
12336
|
className: "h-4 w-4 lg:h-6 lg:w-6",
|
|
@@ -12323,38 +12343,38 @@ function AppItemPopUpView({
|
|
|
12323
12343
|
/* @__PURE__ */ jsxs53("div", { className: is_small ? "p-5 mt-2 lg:mt-0 lg:mx-0 lg:p-0" : "p-5 lg:px-6 lg:py-2", children: [
|
|
12324
12344
|
/* @__PURE__ */ jsxs53("div", { children: [
|
|
12325
12345
|
/* @__PURE__ */ jsxs53("div", { className: "flex space-x-2 lg:block lg:space-x-0", children: [
|
|
12326
|
-
resource.resourceType && /* @__PURE__ */
|
|
12327
|
-
currentTypes && /* @__PURE__ */
|
|
12346
|
+
resource.resourceType && /* @__PURE__ */ jsx127(ResourceIcon, { type: resource.resourceType }),
|
|
12347
|
+
currentTypes && /* @__PURE__ */ jsx127(Body16sb, { className: "self-start mt-[10px] text-primary lg:mt-4", children: currentTypes })
|
|
12328
12348
|
] }),
|
|
12329
|
-
resource.imgUrl && /* @__PURE__ */
|
|
12330
|
-
/* @__PURE__ */
|
|
12331
|
-
/* @__PURE__ */
|
|
12332
|
-
/* @__PURE__ */
|
|
12349
|
+
resource.imgUrl && /* @__PURE__ */ jsx127("img", { src: resource.imgUrl, className: "w-full h-48 object-cover rounded-xl" }),
|
|
12350
|
+
/* @__PURE__ */ jsx127(H3Design, { className: "mt-6", children: resource.title }),
|
|
12351
|
+
/* @__PURE__ */ jsx127(Body16, { className: is_small ? "mt-4" : "mt-6", children: is_small ? /* @__PURE__ */ jsx127(ExpandableText, { text: resource.description, maxLength: 250, show_read_more: true }) : resource.description }),
|
|
12352
|
+
/* @__PURE__ */ jsx127("div", { className: is_small ? "whitespace-nowrap mt-6" : "whitespace-nowrap mt-6 lg:mt-8", children: /* @__PURE__ */ jsx127(Link5, { href: link, target: "_blank", children: /* @__PURE__ */ jsxs53(
|
|
12333
12353
|
DesignButton,
|
|
12334
12354
|
{
|
|
12335
12355
|
variant: "externalLink",
|
|
12336
12356
|
className: "p-0 lg:p-0 ",
|
|
12337
12357
|
children: [
|
|
12338
|
-
window.innerWidth < 700 && /* @__PURE__ */
|
|
12339
|
-
window.innerWidth > 700 && /* @__PURE__ */
|
|
12358
|
+
window.innerWidth < 700 && /* @__PURE__ */ jsx127(ExpandableText, { text: linkText, maxLength: 35, no_word_wrap: false }),
|
|
12359
|
+
window.innerWidth > 700 && /* @__PURE__ */ jsx127(ExpandableText, { text: linkText, maxLength: 50, no_word_wrap: false })
|
|
12340
12360
|
]
|
|
12341
12361
|
}
|
|
12342
12362
|
) }) }),
|
|
12343
|
-
resource.statistics && /* @__PURE__ */
|
|
12344
|
-
return /* @__PURE__ */
|
|
12345
|
-
/* @__PURE__ */
|
|
12346
|
-
/* @__PURE__ */
|
|
12363
|
+
resource.statistics && /* @__PURE__ */ jsx127("div", { className: "flex w-full flex-col gap-6 mt-10", children: (_b = resource.statistics) == null ? void 0 : _b.map((x6) => {
|
|
12364
|
+
return /* @__PURE__ */ jsx127("div", { className: "border-b-2", children: /* @__PURE__ */ jsxs53("div", { className: "flex justify-between items-center w-full gap-14 lg:mb-6 mb-2", children: [
|
|
12365
|
+
/* @__PURE__ */ jsx127("div", { className: "text-zinc-500 text-base font-normal leading-5", children: x6.name }),
|
|
12366
|
+
/* @__PURE__ */ jsx127("div", { className: "text-right text-gray-900 text-base font-medium leading-5", children: x6.value })
|
|
12347
12367
|
] }) });
|
|
12348
12368
|
}) }),
|
|
12349
12369
|
currentTypes && resource.publisher && /* @__PURE__ */ jsxs53("div", { className: "my-6 lg:my-10", children: [
|
|
12350
|
-
currentTypes && /* @__PURE__ */
|
|
12370
|
+
currentTypes && /* @__PURE__ */ jsx127(
|
|
12351
12371
|
DetailRow,
|
|
12352
12372
|
{
|
|
12353
12373
|
label: "Resource type:",
|
|
12354
12374
|
value: currentTypes
|
|
12355
12375
|
}
|
|
12356
12376
|
),
|
|
12357
|
-
resource.publisher && /* @__PURE__ */
|
|
12377
|
+
resource.publisher && /* @__PURE__ */ jsx127(
|
|
12358
12378
|
DetailRow,
|
|
12359
12379
|
{
|
|
12360
12380
|
label: "Publisher",
|
|
@@ -12362,7 +12382,7 @@ function AppItemPopUpView({
|
|
|
12362
12382
|
}
|
|
12363
12383
|
)
|
|
12364
12384
|
] }),
|
|
12365
|
-
(currentTopics == null ? void 0 : currentTopics.length) > 0 && /* @__PURE__ */
|
|
12385
|
+
(currentTopics == null ? void 0 : currentTopics.length) > 0 && /* @__PURE__ */ jsx127(
|
|
12366
12386
|
KeyValues,
|
|
12367
12387
|
{
|
|
12368
12388
|
name: "Topic",
|
|
@@ -12373,7 +12393,7 @@ function AppItemPopUpView({
|
|
|
12373
12393
|
kind: "topic"
|
|
12374
12394
|
}
|
|
12375
12395
|
),
|
|
12376
|
-
(currentAudiences == null ? void 0 : currentAudiences.length) > 0 && /* @__PURE__ */
|
|
12396
|
+
(currentAudiences == null ? void 0 : currentAudiences.length) > 0 && /* @__PURE__ */ jsx127(
|
|
12377
12397
|
KeyValues,
|
|
12378
12398
|
{
|
|
12379
12399
|
name: "Audience",
|
|
@@ -12385,8 +12405,8 @@ function AppItemPopUpView({
|
|
|
12385
12405
|
}
|
|
12386
12406
|
),
|
|
12387
12407
|
(resource == null ? void 0 : resource.keywords) && ((_c = resource == null ? void 0 : resource.keywords) == null ? void 0 : _c.length) > 0 && /* @__PURE__ */ jsxs53("div", { children: [
|
|
12388
|
-
/* @__PURE__ */
|
|
12389
|
-
/* @__PURE__ */
|
|
12408
|
+
/* @__PURE__ */ jsx127(Caption, { className: "self-start lg:mt-10 tracking-wider text-grey", children: "Keywords" }),
|
|
12409
|
+
/* @__PURE__ */ jsx127("div", { className: "flex items-center flex-wrap mt-2 mb-6 lg:mt-4 lg:mb-10", children: (_d = resource.keywords) == null ? void 0 : _d.map((keyword, index3) => /* @__PURE__ */ jsx127(
|
|
12390
12410
|
ResourceTag,
|
|
12391
12411
|
{
|
|
12392
12412
|
tag: keyword,
|
|
@@ -12395,7 +12415,7 @@ function AppItemPopUpView({
|
|
|
12395
12415
|
index3
|
|
12396
12416
|
)) })
|
|
12397
12417
|
] }),
|
|
12398
|
-
(currentLanguages == null ? void 0 : currentLanguages.length) > 0 && /* @__PURE__ */
|
|
12418
|
+
(currentLanguages == null ? void 0 : currentLanguages.length) > 0 && /* @__PURE__ */ jsx127(
|
|
12399
12419
|
KeyValues,
|
|
12400
12420
|
{
|
|
12401
12421
|
name: "Language",
|
|
@@ -12407,11 +12427,11 @@ function AppItemPopUpView({
|
|
|
12407
12427
|
}
|
|
12408
12428
|
)
|
|
12409
12429
|
] }),
|
|
12410
|
-
showResourcesButton && /* @__PURE__ */
|
|
12411
|
-
|
|
12430
|
+
showResourcesButton && /* @__PURE__ */ jsx127("div", { className: "flex w-full justify-center", children: /* @__PURE__ */ jsx127(
|
|
12431
|
+
Link5,
|
|
12412
12432
|
{
|
|
12413
12433
|
href: `/resources/resource-finder?topic=${selectedTopic}&audience=${selectedAudience}`,
|
|
12414
|
-
children: /* @__PURE__ */
|
|
12434
|
+
children: /* @__PURE__ */ jsx127(DesignButton, { children: "View all Resources" })
|
|
12415
12435
|
}
|
|
12416
12436
|
) })
|
|
12417
12437
|
] })
|
|
@@ -12425,7 +12445,7 @@ function AppItemPopUpView({
|
|
|
12425
12445
|
var AppItemPopUpView_default = AppItemPopUpView;
|
|
12426
12446
|
|
|
12427
12447
|
// src/components/DesignElements/AppItem.tsx
|
|
12428
|
-
import { jsx as
|
|
12448
|
+
import { jsx as jsx128, jsxs as jsxs54 } from "react/jsx-runtime";
|
|
12429
12449
|
var AppItem = (props) => {
|
|
12430
12450
|
var _a;
|
|
12431
12451
|
const [open, setOpen] = useState15(false);
|
|
@@ -12434,20 +12454,20 @@ var AppItem = (props) => {
|
|
|
12434
12454
|
setOpen(true);
|
|
12435
12455
|
}, children: [
|
|
12436
12456
|
/* @__PURE__ */ jsxs54("div", { className: "w-full h-64 relative overflow-hidden rounded-xl", children: [
|
|
12437
|
-
/* @__PURE__ */
|
|
12438
|
-
/* @__PURE__ */
|
|
12439
|
-
/* @__PURE__ */
|
|
12440
|
-
/* @__PURE__ */
|
|
12441
|
-
/* @__PURE__ */
|
|
12457
|
+
/* @__PURE__ */ jsx128("img", { className: "absolute w-full h-64 rounded-xl object-cover", src: props.item.logoUrl }),
|
|
12458
|
+
/* @__PURE__ */ jsx128("div", { className: "inset-0 absolute bg-black/40 rounded-xl" }),
|
|
12459
|
+
/* @__PURE__ */ jsx128("div", { className: "left-4 md:left-6 top-44 absolute justify-start text-white text-base font-medium leading-5", children: props.item.locationType }),
|
|
12460
|
+
/* @__PURE__ */ jsx128("div", { className: "w-80 left-4 md:left-6 top-48 mt-2 absolute justify-start text-white text-xl font-semibold leading-7", children: (_a = props.item) == null ? void 0 : _a.name }),
|
|
12461
|
+
/* @__PURE__ */ jsx128(
|
|
12442
12462
|
"a",
|
|
12443
12463
|
{
|
|
12444
12464
|
className: "w-14 h-14 bottom-4 right-6 md:bottom-2 md:right-8 lg:bottom-0 -mb-3 lg:right-10 absolute origin-top-left -rotate-45 bg-primary rounded-full hidden md:block md:pointer-events-auto hover:cursor-pointer",
|
|
12445
12465
|
onClick: () => setOpen(true),
|
|
12446
|
-
children: /* @__PURE__ */
|
|
12466
|
+
children: /* @__PURE__ */ jsx128("div", { className: "w-4 h-4 left-[40px] top-[16px] absolute origin-top-left rotate-90", children: /* @__PURE__ */ jsx128("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx128("path", { d: "M19.092 5.22341V15.1215C19.092 15.3973 18.9802 15.6476 18.7992 15.8286C18.6182 16.0096 18.3679 16.1214 18.0921 16.1214C17.5391 16.1214 17.0922 15.6745 17.0922 15.1215V7.63613L6.07127 18.6571C5.68024 19.0481 5.04738 19.0474 4.65705 18.6571C4.26673 18.2667 4.26602 17.6339 4.65705 17.2428L15.678 6.22192L8.19259 6.22192C7.63963 6.22192 7.19269 5.77498 7.19269 5.22203C7.19269 4.66907 7.63963 4.22213 8.19259 4.22213L18.0907 4.22213C18.2222 4.22213 18.3516 4.24822 18.4746 4.29913C18.7186 4.40024 18.9139 4.59552 19.015 4.83947C19.0659 4.96251 19.092 5.09188 19.092 5.22341Z", fill: "white" }) }) })
|
|
12447
12467
|
}
|
|
12448
12468
|
)
|
|
12449
12469
|
] }),
|
|
12450
|
-
/* @__PURE__ */
|
|
12470
|
+
/* @__PURE__ */ jsx128(AppItemPopUpView_default, { resource: {
|
|
12451
12471
|
title: props.item.name,
|
|
12452
12472
|
description: props.item.description,
|
|
12453
12473
|
imgUrl: props.item.logoUrl,
|
|
@@ -12463,19 +12483,19 @@ var AppItem = (props) => {
|
|
|
12463
12483
|
};
|
|
12464
12484
|
|
|
12465
12485
|
// src/components/DesignElements/AppItemsList.tsx
|
|
12466
|
-
import { jsx as
|
|
12486
|
+
import { jsx as jsx129, jsxs as jsxs55 } from "react/jsx-runtime";
|
|
12467
12487
|
var AppItemsList = (props) => {
|
|
12468
12488
|
var _a;
|
|
12469
12489
|
return /* @__PURE__ */ jsxs55("div", { className: "w-full relative mt-10 pt-5", id: props.id, children: [
|
|
12470
|
-
/* @__PURE__ */
|
|
12471
|
-
/* @__PURE__ */
|
|
12472
|
-
/* @__PURE__ */
|
|
12490
|
+
/* @__PURE__ */ jsx129("div", { className: "justify-start text-black text-lg font-normal leading-6 mb-2", children: props.name }),
|
|
12491
|
+
/* @__PURE__ */ jsx129("div", { className: "justify-center text-gray-900 text-3xl md:text-5xl font-light", children: props.title }),
|
|
12492
|
+
/* @__PURE__ */ jsx129("div", { className: "md:grid md:grid-cols-3 gap-4 md:mt-12 mt-5", children: props.allItems && ((_a = props.allItems) == null ? void 0 : _a.map((x6, index3) => /* @__PURE__ */ jsx129(AppItem, { item: x6 }, index3))) })
|
|
12473
12493
|
] });
|
|
12474
12494
|
};
|
|
12475
12495
|
|
|
12476
12496
|
// src/components/Elements/button.tsx
|
|
12477
12497
|
import classNames4 from "classnames";
|
|
12478
|
-
import { jsx as
|
|
12498
|
+
import { jsx as jsx130 } from "react/jsx-runtime";
|
|
12479
12499
|
var OldButton = ({
|
|
12480
12500
|
label,
|
|
12481
12501
|
appearance,
|
|
@@ -12484,7 +12504,7 @@ var OldButton = ({
|
|
|
12484
12504
|
loading = false,
|
|
12485
12505
|
type
|
|
12486
12506
|
}) => {
|
|
12487
|
-
return /* @__PURE__ */
|
|
12507
|
+
return /* @__PURE__ */ jsx130("button", { onClick: handleClick, type, children: /* @__PURE__ */ jsx130(
|
|
12488
12508
|
"div",
|
|
12489
12509
|
{
|
|
12490
12510
|
className: classNames4(
|
|
@@ -12522,9 +12542,9 @@ var OldButton = ({
|
|
|
12522
12542
|
|
|
12523
12543
|
// src/components/Elements/button-link.tsx
|
|
12524
12544
|
import classNames5 from "classnames";
|
|
12525
|
-
import { jsx as
|
|
12545
|
+
import { jsx as jsx131 } from "react/jsx-runtime";
|
|
12526
12546
|
var ButtonContent = ({ button, appearance, compact: compact2 }) => {
|
|
12527
|
-
return /* @__PURE__ */
|
|
12547
|
+
return /* @__PURE__ */ jsx131(
|
|
12528
12548
|
"div",
|
|
12529
12549
|
{
|
|
12530
12550
|
className: classNames5(
|
|
@@ -12564,7 +12584,7 @@ var ButtonLink = ({
|
|
|
12564
12584
|
appearance,
|
|
12565
12585
|
compact: compact2 = false
|
|
12566
12586
|
}) => {
|
|
12567
|
-
return /* @__PURE__ */
|
|
12587
|
+
return /* @__PURE__ */ jsx131(ButtonContent, { button, appearance, compact: compact2 });
|
|
12568
12588
|
};
|
|
12569
12589
|
|
|
12570
12590
|
// src/components/Elements/Error.tsx
|
|
@@ -12578,10 +12598,10 @@ var ErrorMessage = (props) => {
|
|
|
12578
12598
|
};
|
|
12579
12599
|
|
|
12580
12600
|
// src/components/Elements/feature-disabled.tsx
|
|
12581
|
-
import { jsx as
|
|
12601
|
+
import { jsx as jsx132, jsxs as jsxs57 } from "react/jsx-runtime";
|
|
12582
12602
|
var FeatureDisabled = () => {
|
|
12583
|
-
return /* @__PURE__ */
|
|
12584
|
-
/* @__PURE__ */
|
|
12603
|
+
return /* @__PURE__ */ jsx132("div", { className: "container mx-auto", children: /* @__PURE__ */ jsx132("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ jsxs57("div", { className: "relative block w-full border-2 border-gray-300 border-dashed rounded-lg p-12 text-center hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500", children: [
|
|
12604
|
+
/* @__PURE__ */ jsx132(
|
|
12585
12605
|
"svg",
|
|
12586
12606
|
{
|
|
12587
12607
|
className: "mx-auto h-12 w-12 text-gray-400",
|
|
@@ -12589,7 +12609,7 @@ var FeatureDisabled = () => {
|
|
|
12589
12609
|
fill: "none",
|
|
12590
12610
|
viewBox: "0 0 24 24",
|
|
12591
12611
|
stroke: "currentColor",
|
|
12592
|
-
children: /* @__PURE__ */
|
|
12612
|
+
children: /* @__PURE__ */ jsx132(
|
|
12593
12613
|
"path",
|
|
12594
12614
|
{
|
|
12595
12615
|
strokeLinecap: "round",
|
|
@@ -12600,13 +12620,13 @@ var FeatureDisabled = () => {
|
|
|
12600
12620
|
)
|
|
12601
12621
|
}
|
|
12602
12622
|
),
|
|
12603
|
-
/* @__PURE__ */
|
|
12623
|
+
/* @__PURE__ */ jsx132("span", { className: "mt-2 block text-sm font-medium ", children: "This feature is disabled for your site." })
|
|
12604
12624
|
] }) }) });
|
|
12605
12625
|
};
|
|
12606
12626
|
|
|
12607
12627
|
// src/components/Elements/IframeViewer.tsx
|
|
12608
12628
|
import { useEffect as useEffect10, useRef as useRef5 } from "react";
|
|
12609
|
-
import { jsx as
|
|
12629
|
+
import { jsx as jsx133 } from "react/jsx-runtime";
|
|
12610
12630
|
var IframeViewer = ({ html, className }) => {
|
|
12611
12631
|
const containerRef = useRef5(null);
|
|
12612
12632
|
useEffect10(() => {
|
|
@@ -12636,28 +12656,28 @@ var IframeViewer = ({ html, className }) => {
|
|
|
12636
12656
|
});
|
|
12637
12657
|
}
|
|
12638
12658
|
}, [html]);
|
|
12639
|
-
return /* @__PURE__ */
|
|
12659
|
+
return /* @__PURE__ */ jsx133("div", { ref: containerRef, className: className != null ? className : "" });
|
|
12640
12660
|
};
|
|
12641
12661
|
|
|
12642
12662
|
// src/components/Elements/loader.tsx
|
|
12643
|
-
import { jsx as
|
|
12663
|
+
import { jsx as jsx134, jsxs as jsxs58 } from "react/jsx-runtime";
|
|
12644
12664
|
var LoaderFull = ({
|
|
12645
12665
|
showInCenter = true,
|
|
12646
12666
|
cssClass = null
|
|
12647
12667
|
}) => {
|
|
12648
|
-
return /* @__PURE__ */
|
|
12668
|
+
return /* @__PURE__ */ jsx134(
|
|
12649
12669
|
"div",
|
|
12650
12670
|
{
|
|
12651
12671
|
className: showInCenter ? "w-full min-h-screen flex items-center justify-center " + (cssClass !== null ? cssClass : "z-[1000] fixed top-0 left-0") : "w-full flex items-center justify-center " + (cssClass !== null ? cssClass : "z-[1000] fixed top-0 left-0"),
|
|
12652
|
-
children: /* @__PURE__ */
|
|
12672
|
+
children: /* @__PURE__ */ jsx134(
|
|
12653
12673
|
"svg",
|
|
12654
12674
|
{
|
|
12655
12675
|
viewBox: "0 0 38 38",
|
|
12656
12676
|
className: "animate-spin h-20 w-20 stroke-current text-black-600 mr-2",
|
|
12657
12677
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12658
|
-
children: /* @__PURE__ */
|
|
12659
|
-
/* @__PURE__ */
|
|
12660
|
-
/* @__PURE__ */
|
|
12678
|
+
children: /* @__PURE__ */ jsx134("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsxs58("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
|
|
12679
|
+
/* @__PURE__ */ jsx134("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
|
|
12680
|
+
/* @__PURE__ */ jsx134("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ jsx134(
|
|
12661
12681
|
"animateTransform",
|
|
12662
12682
|
{
|
|
12663
12683
|
attributeName: "transform",
|
|
@@ -12676,17 +12696,17 @@ var LoaderFull = ({
|
|
|
12676
12696
|
};
|
|
12677
12697
|
|
|
12678
12698
|
// src/components/Elements/LocalLoader.tsx
|
|
12679
|
-
import { jsx as
|
|
12699
|
+
import { jsx as jsx135, jsxs as jsxs59 } from "react/jsx-runtime";
|
|
12680
12700
|
var LocalLoader = () => {
|
|
12681
|
-
return /* @__PURE__ */
|
|
12701
|
+
return /* @__PURE__ */ jsx135("div", { className: "flex items-center justify-center ", children: /* @__PURE__ */ jsx135(
|
|
12682
12702
|
"svg",
|
|
12683
12703
|
{
|
|
12684
12704
|
viewBox: "0 0 38 38",
|
|
12685
12705
|
className: "animate-spin h-20 w-20 stroke-current text-black-600 mr-2",
|
|
12686
12706
|
xmlns: "http://www.w3.org/2000/svg",
|
|
12687
|
-
children: /* @__PURE__ */
|
|
12688
|
-
/* @__PURE__ */
|
|
12689
|
-
/* @__PURE__ */
|
|
12707
|
+
children: /* @__PURE__ */ jsx135("g", { fill: "none", fillRule: "evenodd", children: /* @__PURE__ */ jsxs59("g", { transform: "translate(1 1)", strokeWidth: "2", children: [
|
|
12708
|
+
/* @__PURE__ */ jsx135("circle", { strokeOpacity: ".5", cx: "18", cy: "18", r: "18" }),
|
|
12709
|
+
/* @__PURE__ */ jsx135("path", { d: "M36 18c0-9.94-8.06-18-18-18", children: /* @__PURE__ */ jsx135(
|
|
12690
12710
|
"animateTransform",
|
|
12691
12711
|
{
|
|
12692
12712
|
attributeName: "transform",
|
|
@@ -12703,9 +12723,9 @@ var LocalLoader = () => {
|
|
|
12703
12723
|
};
|
|
12704
12724
|
|
|
12705
12725
|
// src/components/Elements/MediaEmbedItem.tsx
|
|
12706
|
-
import { jsx as
|
|
12726
|
+
import { jsx as jsx136 } from "react/jsx-runtime";
|
|
12707
12727
|
var MediaEmbedItem = ({ alt, src }) => {
|
|
12708
|
-
return /* @__PURE__ */
|
|
12728
|
+
return /* @__PURE__ */ jsx136(
|
|
12709
12729
|
"img",
|
|
12710
12730
|
{
|
|
12711
12731
|
alt,
|
|
@@ -12716,10 +12736,10 @@ var MediaEmbedItem = ({ alt, src }) => {
|
|
|
12716
12736
|
};
|
|
12717
12737
|
|
|
12718
12738
|
// src/components/Elements/permission-disabled.tsx
|
|
12719
|
-
import { jsx as
|
|
12739
|
+
import { jsx as jsx137, jsxs as jsxs60 } from "react/jsx-runtime";
|
|
12720
12740
|
var PermissionDisabled = () => {
|
|
12721
|
-
return /* @__PURE__ */
|
|
12722
|
-
/* @__PURE__ */
|
|
12741
|
+
return /* @__PURE__ */ jsx137("div", { className: "container mx-auto", children: /* @__PURE__ */ jsx137("div", { className: "max-w-3xl mx-auto", children: /* @__PURE__ */ jsxs60("div", { className: "relative block w-full border-2 border-gray-300 border-dashed rounded-lg p-12 text-center hover:border-gray-400 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-primary-500", children: [
|
|
12742
|
+
/* @__PURE__ */ jsx137(
|
|
12723
12743
|
"svg",
|
|
12724
12744
|
{
|
|
12725
12745
|
className: "mx-auto h-12 w-12 text-gray-400",
|
|
@@ -12727,7 +12747,7 @@ var PermissionDisabled = () => {
|
|
|
12727
12747
|
fill: "none",
|
|
12728
12748
|
viewBox: "0 0 24 24",
|
|
12729
12749
|
stroke: "currentColor",
|
|
12730
|
-
children: /* @__PURE__ */
|
|
12750
|
+
children: /* @__PURE__ */ jsx137(
|
|
12731
12751
|
"path",
|
|
12732
12752
|
{
|
|
12733
12753
|
strokeLinecap: "round",
|
|
@@ -12738,38 +12758,38 @@ var PermissionDisabled = () => {
|
|
|
12738
12758
|
)
|
|
12739
12759
|
}
|
|
12740
12760
|
),
|
|
12741
|
-
/* @__PURE__ */
|
|
12761
|
+
/* @__PURE__ */ jsx137("span", { className: "mt-2 block text-sm font-medium ", children: "Permission denied" })
|
|
12742
12762
|
] }) }) });
|
|
12743
12763
|
};
|
|
12744
12764
|
|
|
12745
12765
|
// src/components/Elements/ShowLargeText.tsx
|
|
12746
|
-
import { jsx as
|
|
12766
|
+
import { jsx as jsx138, jsxs as jsxs61 } from "react/jsx-runtime";
|
|
12747
12767
|
var ShowLargeText = (props) => {
|
|
12748
12768
|
return /* @__PURE__ */ jsxs61(
|
|
12749
12769
|
"div",
|
|
12750
12770
|
{
|
|
12751
12771
|
className: props.colSpan != null ? "sm:col-span-" + props.colSpan : "sm:col-span-1",
|
|
12752
12772
|
children: [
|
|
12753
|
-
/* @__PURE__ */
|
|
12754
|
-
/* @__PURE__ */
|
|
12773
|
+
/* @__PURE__ */ jsx138("dt", { className: "text-sm font-bold", children: props.label }),
|
|
12774
|
+
/* @__PURE__ */ jsx138("dd", { className: "mt-1 text-sm", children: props.value })
|
|
12755
12775
|
]
|
|
12756
12776
|
}
|
|
12757
12777
|
);
|
|
12758
12778
|
};
|
|
12759
12779
|
|
|
12760
12780
|
// src/components/Elements/ShowShortText.tsx
|
|
12761
|
-
import { jsx as
|
|
12781
|
+
import { jsx as jsx139, jsxs as jsxs62 } from "react/jsx-runtime";
|
|
12762
12782
|
var ShowShortText = (props) => {
|
|
12763
12783
|
return /* @__PURE__ */ jsxs62("div", { className: "sm:col-span-1", children: [
|
|
12764
|
-
/* @__PURE__ */
|
|
12765
|
-
/* @__PURE__ */
|
|
12784
|
+
/* @__PURE__ */ jsx139("dt", { className: "text-sm font-bold", children: props.label }),
|
|
12785
|
+
/* @__PURE__ */ jsx139("dd", { className: "mt-1 text-sm", children: props.value })
|
|
12766
12786
|
] });
|
|
12767
12787
|
};
|
|
12768
12788
|
|
|
12769
12789
|
// src/components/Elements/SizedImage.tsx
|
|
12770
|
-
import { jsx as
|
|
12790
|
+
import { jsx as jsx140 } from "react/jsx-runtime";
|
|
12771
12791
|
var SizedImage = (props) => {
|
|
12772
|
-
return /* @__PURE__ */
|
|
12792
|
+
return /* @__PURE__ */ jsx140(
|
|
12773
12793
|
"img",
|
|
12774
12794
|
{
|
|
12775
12795
|
className: props.className,
|
|
@@ -12782,19 +12802,19 @@ var SizedImage = (props) => {
|
|
|
12782
12802
|
};
|
|
12783
12803
|
|
|
12784
12804
|
// src/components/Elements/UnderConstruction.tsx
|
|
12785
|
-
import { jsx as
|
|
12805
|
+
import { jsx as jsx141, jsxs as jsxs63 } from "react/jsx-runtime";
|
|
12786
12806
|
var UnderConstruction = () => {
|
|
12787
|
-
return /* @__PURE__ */
|
|
12788
|
-
/* @__PURE__ */
|
|
12789
|
-
/* @__PURE__ */
|
|
12790
|
-
/* @__PURE__ */
|
|
12791
|
-
/* @__PURE__ */
|
|
12807
|
+
return /* @__PURE__ */ jsx141("div", { className: " min-h-screen px-4 py-16 sm:px-6 sm:py-24 md:grid md:place-items-center lg:px-8", children: /* @__PURE__ */ jsx141("div", { className: "max-w-max mx-auto", children: /* @__PURE__ */ jsxs63("main", { className: "sm:flex", children: [
|
|
12808
|
+
/* @__PURE__ */ jsx141("p", { className: "text-4xl font-extrabold text-primary-600 sm:text-5xl", children: "recodo.io" }),
|
|
12809
|
+
/* @__PURE__ */ jsx141("div", { className: "sm:ml-6", children: /* @__PURE__ */ jsxs63("div", { className: "sm:border-l sm:border-gray-200 sm:pl-6", children: [
|
|
12810
|
+
/* @__PURE__ */ jsx141("h1", { className: "text-4xl font-extrabold tracking-tight sm:text-5xl", children: "Under Construction" }),
|
|
12811
|
+
/* @__PURE__ */ jsx141("p", { className: "mt-4 text-xl ", children: "Please check back later." })
|
|
12792
12812
|
] }) })
|
|
12793
12813
|
] }) }) });
|
|
12794
12814
|
};
|
|
12795
12815
|
|
|
12796
12816
|
// src/components/Elements/FeaturedItemWithBannerImage.tsx
|
|
12797
|
-
import { jsx as
|
|
12817
|
+
import { jsx as jsx142, jsxs as jsxs64 } from "react/jsx-runtime";
|
|
12798
12818
|
var FeaturedItemWithBannerImage = (props) => {
|
|
12799
12819
|
var _a, _b, _c, _d;
|
|
12800
12820
|
return /* @__PURE__ */ jsxs64("div", { className: "w-full h-full mt-15 pointer-events-auto md:pointer-events-none", onClick: () => {
|
|
@@ -12802,23 +12822,23 @@ var FeaturedItemWithBannerImage = (props) => {
|
|
|
12802
12822
|
window.open(props.itemDetails.externalWebsiteLink, "_blank");
|
|
12803
12823
|
}, children: [
|
|
12804
12824
|
/* @__PURE__ */ jsxs64("div", { className: "hidden md:block relative", children: [
|
|
12805
|
-
/* @__PURE__ */
|
|
12806
|
-
props.itemDetails.externalWebsiteLink && /* @__PURE__ */
|
|
12807
|
-
/* @__PURE__ */
|
|
12808
|
-
/* @__PURE__ */
|
|
12825
|
+
/* @__PURE__ */ jsx142("img", { src: (_a = props.featuredItem[0]) == null ? void 0 : _a.landscapeBannerUrl, className: "relative w-full object-contain rounded-xl mt-6 lg:mt-12 " }),
|
|
12826
|
+
props.itemDetails.externalWebsiteLink && /* @__PURE__ */ jsx142("a", { className: "hidden md:block md:pointer-events-auto absolute featuredItemButton ml-5 h-24 rounded-tr-xl", target: "_blank", href: (_b = props.itemDetails) == null ? void 0 : _b.externalWebsiteLink, children: /* @__PURE__ */ jsx142("div", { className: "w-auto h-14 bg-primary rounded-[40px] flex items-center justify-center", children: /* @__PURE__ */ jsxs64("div", { className: "inline-flex gap-2", children: [
|
|
12827
|
+
/* @__PURE__ */ jsx142("div", { className: "text-white text-base text-lg font-medium ml-6", children: "View Quest" }),
|
|
12828
|
+
/* @__PURE__ */ jsx142("svg", { width: "13", height: "13", viewBox: "0 0 15 15", fill: "none", xmlns: "http://www.w3.org/2000/svg", className: "-rotate-1 mt-2 mr-6", children: /* @__PURE__ */ jsx142("path", { d: "M14.728 1.00124V10.8994C14.728 11.1751 14.6162 11.4254 14.4352 11.6065C14.2542 11.7875 14.0038 11.8992 13.7281 11.8992C13.1751 11.8992 12.7282 11.4523 12.7282 10.8994V3.41396L1.70725 14.4349C1.31622 14.8259 0.683362 14.8252 0.293039 14.4349C-0.0972836 14.0446 -0.0979906 13.4117 0.293039 13.0207L11.314 1.99975L3.82857 1.99975C3.27562 1.99975 2.82868 1.55281 2.82868 0.999856C2.82868 0.446899 3.27562 -3.6872e-05 3.82857 -3.67244e-05L13.7267 -3.66612e-05C13.8582 -3.69984e-05 13.9876 0.0260465 14.1106 0.0769579C14.3546 0.178074 14.5498 0.373349 14.651 0.617301C14.7019 0.740338 14.728 0.869715 14.728 1.00124Z", fill: "white" }) })
|
|
12809
12829
|
] }) }) })
|
|
12810
12830
|
] }),
|
|
12811
|
-
((_c = props.featuredItem[0]) == null ? void 0 : _c.portraitBannerUrl) && /* @__PURE__ */
|
|
12812
|
-
/* @__PURE__ */
|
|
12813
|
-
/* @__PURE__ */
|
|
12831
|
+
((_c = props.featuredItem[0]) == null ? void 0 : _c.portraitBannerUrl) && /* @__PURE__ */ jsx142("div", { className: "md:hidden", children: /* @__PURE__ */ jsxs64("div", { className: "w-full relative pt-10", children: [
|
|
12832
|
+
/* @__PURE__ */ jsx142("div", { className: "justify-start text-black text-lg font-normal leading-6 mb-2", children: "Feature Quest" }),
|
|
12833
|
+
/* @__PURE__ */ jsx142("img", { src: (_d = props.featuredItem[0]) == null ? void 0 : _d.portraitBannerUrl, className: "w-full h-full overflow-hidden rounded-xl object-cover mt-5" })
|
|
12814
12834
|
] }) })
|
|
12815
12835
|
] });
|
|
12816
12836
|
};
|
|
12817
12837
|
|
|
12818
12838
|
// src/components/Hero/HeroImage.tsx
|
|
12819
|
-
import { jsx as
|
|
12839
|
+
import { jsx as jsx143 } from "react/jsx-runtime";
|
|
12820
12840
|
var HeroImage = ({ path, cmsUrl }) => {
|
|
12821
|
-
return /* @__PURE__ */
|
|
12841
|
+
return /* @__PURE__ */ jsx143(
|
|
12822
12842
|
"div",
|
|
12823
12843
|
{
|
|
12824
12844
|
className: "w-full bg-center bg-cover hero-geo-wiki rounded-xl overflow-hidden",
|
|
@@ -12833,9 +12853,9 @@ var HeroImage = ({ path, cmsUrl }) => {
|
|
|
12833
12853
|
import { useEffect as useEffect11, useState as useState16 } from "react";
|
|
12834
12854
|
|
|
12835
12855
|
// src/components/HeadingTextBlocks/H1BodyButton.tsx
|
|
12836
|
-
import { Link as
|
|
12856
|
+
import { Link as Link6 } from "@geowiki/core";
|
|
12837
12857
|
import parse2 from "html-react-parser";
|
|
12838
|
-
import { jsx as
|
|
12858
|
+
import { jsx as jsx144, jsxs as jsxs65 } from "react/jsx-runtime";
|
|
12839
12859
|
var HtmlView2 = (props) => {
|
|
12840
12860
|
const options = {
|
|
12841
12861
|
replace: (domNode) => {
|
|
@@ -12849,7 +12869,7 @@ var HtmlView2 = (props) => {
|
|
|
12849
12869
|
data = data.replace(match, imageHtml);
|
|
12850
12870
|
});
|
|
12851
12871
|
}
|
|
12852
|
-
return /* @__PURE__ */
|
|
12872
|
+
return /* @__PURE__ */ jsx144("span", { children: parse2(data) });
|
|
12853
12873
|
}
|
|
12854
12874
|
}
|
|
12855
12875
|
};
|
|
@@ -12879,34 +12899,34 @@ var H1BodyButton = (props) => {
|
|
|
12879
12899
|
className: "px-0 container mx-auto mt-6 lg:mt-10 flex justify-start",
|
|
12880
12900
|
"data-component-name": "H1BodyButton",
|
|
12881
12901
|
children: [
|
|
12882
|
-
/* @__PURE__ */
|
|
12902
|
+
/* @__PURE__ */ jsx144("div", { className: "hidden lg:block lg:w-1/4" }),
|
|
12883
12903
|
/* @__PURE__ */ jsxs65("div", { className: "w-full max-w-3xl lg:px-5", children: [
|
|
12884
|
-
isNeedParse && /* @__PURE__ */
|
|
12904
|
+
isNeedParse && /* @__PURE__ */ jsx144(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
|
|
12885
12905
|
!isNeedParse && /* @__PURE__ */ jsxs65(H1Design, { children: [
|
|
12886
12906
|
props.title,
|
|
12887
12907
|
" "
|
|
12888
12908
|
] }),
|
|
12889
|
-
props.textBody && /* @__PURE__ */
|
|
12909
|
+
props.textBody && /* @__PURE__ */ jsx144(
|
|
12890
12910
|
HtmlView2,
|
|
12891
12911
|
{
|
|
12892
12912
|
cssClass: "m-0 text-base lg:text-lg leading-[130%] pt-4 lg:pt-6",
|
|
12893
12913
|
html: addLinksStyles(props.textBody)
|
|
12894
12914
|
}
|
|
12895
12915
|
),
|
|
12896
|
-
((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */
|
|
12897
|
-
|
|
12916
|
+
((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ jsx144("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ jsx144(
|
|
12917
|
+
Link6,
|
|
12898
12918
|
{
|
|
12899
12919
|
href: props.button.link,
|
|
12900
12920
|
target: props.button.isNewTab ? "_blank" : "_self",
|
|
12901
12921
|
rel: "noreferrer",
|
|
12902
|
-
children: props.button.isNewTab ? /* @__PURE__ */
|
|
12922
|
+
children: props.button.isNewTab ? /* @__PURE__ */ jsx144(
|
|
12903
12923
|
DesignButton,
|
|
12904
12924
|
{
|
|
12905
12925
|
variant: "externalLink",
|
|
12906
12926
|
className: "h-auto p-0 lg:p-0",
|
|
12907
12927
|
children: props.button.text
|
|
12908
12928
|
}
|
|
12909
|
-
) : /* @__PURE__ */
|
|
12929
|
+
) : /* @__PURE__ */ jsx144(DesignButton, { children: props.button.text })
|
|
12910
12930
|
}
|
|
12911
12931
|
) })
|
|
12912
12932
|
] })
|
|
@@ -12929,51 +12949,51 @@ var H1BodyButtonWithApp = (props) => {
|
|
|
12929
12949
|
className: "px-0 container mx-auto mt-2 lg:mt-10 flex justify-start",
|
|
12930
12950
|
"data-component-name": "H1BodyButton",
|
|
12931
12951
|
children: [
|
|
12932
|
-
/* @__PURE__ */
|
|
12952
|
+
/* @__PURE__ */ jsx144("div", { className: "hidden lg:block lg:w-1/4" }),
|
|
12933
12953
|
/* @__PURE__ */ jsxs65("div", { className: "max-w-3xl lg:px-5", children: [
|
|
12934
|
-
isNeedParse && /* @__PURE__ */
|
|
12954
|
+
isNeedParse && /* @__PURE__ */ jsx144(HtmlView2, { cssClass: "m-0", html: parseTitle(props.title, "H1") }),
|
|
12935
12955
|
!isNeedParse && /* @__PURE__ */ jsxs65(BigLandingTitle, { children: [
|
|
12936
12956
|
props.title,
|
|
12937
12957
|
" "
|
|
12938
12958
|
] }),
|
|
12939
|
-
props.textBody && /* @__PURE__ */
|
|
12959
|
+
props.textBody && /* @__PURE__ */ jsx144(
|
|
12940
12960
|
HtmlView2,
|
|
12941
12961
|
{
|
|
12942
12962
|
cssClass: "m-0 text-base lg:text-lg leading-[130%] pt-4 lg:pt-6",
|
|
12943
12963
|
html: addLinksStyles(props.textBody)
|
|
12944
12964
|
}
|
|
12945
12965
|
),
|
|
12946
|
-
((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */
|
|
12947
|
-
|
|
12966
|
+
((_a = props.button) == null ? void 0 : _a.text) && ((_b = props.button) == null ? void 0 : _b.link) && /* @__PURE__ */ jsx144("div", { className: "pt-4 lg:pt-6", children: /* @__PURE__ */ jsx144(
|
|
12967
|
+
Link6,
|
|
12948
12968
|
{
|
|
12949
12969
|
href: props.button.link,
|
|
12950
12970
|
target: props.button.isNewTab ? "_blank" : "_self",
|
|
12951
12971
|
rel: "noreferrer",
|
|
12952
|
-
children: props.button.isNewTab ? /* @__PURE__ */
|
|
12972
|
+
children: props.button.isNewTab ? /* @__PURE__ */ jsx144(
|
|
12953
12973
|
DesignButton,
|
|
12954
12974
|
{
|
|
12955
12975
|
variant: "externalLink",
|
|
12956
12976
|
className: "h-auto p-0 lg:p-0",
|
|
12957
12977
|
children: props.button.text
|
|
12958
12978
|
}
|
|
12959
|
-
) : /* @__PURE__ */
|
|
12979
|
+
) : /* @__PURE__ */ jsx144(DesignButton, { children: props.button.text })
|
|
12960
12980
|
}
|
|
12961
12981
|
) }),
|
|
12962
12982
|
props.show_app_stores && /* @__PURE__ */ jsxs65("div", { className: "mt-6 gap-3 lg:gap-2 flex flex-row md:px-0", children: [
|
|
12963
|
-
/* @__PURE__ */
|
|
12983
|
+
/* @__PURE__ */ jsx144("a", { href: props.google_marketplace_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ jsxs65("svg", { xmlns: "http://www.w3.org/2000/svg", className: "w-full md:w-auto h-auto", viewBox: "0 0 180 53", fill: "none", children: [
|
|
12964
12984
|
/* @__PURE__ */ jsxs65("g", { clipPath: "url(#clip0_5955_146)", children: [
|
|
12965
|
-
/* @__PURE__ */
|
|
12966
|
-
/* @__PURE__ */
|
|
12967
|
-
/* @__PURE__ */
|
|
12968
|
-
/* @__PURE__ */
|
|
12969
|
-
/* @__PURE__ */
|
|
12970
|
-
/* @__PURE__ */
|
|
12971
|
-
/* @__PURE__ */
|
|
12972
|
-
/* @__PURE__ */
|
|
12985
|
+
/* @__PURE__ */ jsx144("path", { d: "M173.33 53H6.66992C3.00332 53 0.00341797 50.0188 0.00341797 46.3751V6.62585C0.00341797 2.98215 3.00332 0.000976562 6.66992 0.000976562H173.33C176.997 0.000976562 179.996 2.98215 179.996 6.62585V46.3751C179.996 50.0188 176.997 53 173.33 53Z", fill: "#100F0D" }),
|
|
12986
|
+
/* @__PURE__ */ jsx144("path", { d: "M173.33 0.000976562H6.66992C3.00332 0.000976562 0.00341797 2.98215 0.00341797 6.62585V46.3751C0.00341797 50.0188 3.00332 53 6.66992 53H173.33C176.997 53 179.996 50.0188 179.996 46.3751V6.62585C179.996 2.98215 176.997 0.000976562 173.33 0.000976562ZM173.33 1.06042C176.418 1.06042 178.93 3.55723 178.93 6.62585V46.3751C178.93 49.4437 176.418 51.9405 173.33 51.9405H6.66992C3.58202 51.9405 1.07062 49.4437 1.07062 46.3751V6.62585C1.07062 3.55723 3.58202 1.06042 6.66992 1.06042H173.33Z", fill: "#A2A2A1" }),
|
|
12987
|
+
/* @__PURE__ */ jsx144("path", { d: "M142.58 39.7504H145.068V23.1854H142.58V39.7504ZM164.989 29.1529L162.137 36.3342H162.052L159.092 29.1529H156.412L160.852 39.1899L158.32 44.7733H160.915L167.756 29.1534L164.989 29.1529ZM150.879 37.8688C150.066 37.8688 148.928 37.4635 148.928 36.462C148.928 35.1836 150.344 34.6934 151.566 34.6934C152.659 34.6934 153.175 34.9274 153.839 35.2473C153.646 36.7818 152.316 37.8688 150.879 37.8688ZM151.18 28.7906C149.379 28.7906 147.514 29.5794 146.742 31.3268L148.95 32.2429C149.422 31.3268 150.3 31.0287 151.223 31.0287C152.51 31.0287 153.818 31.7952 153.839 33.1595V33.3298C153.388 33.074 152.423 32.6906 151.244 32.6906C148.863 32.6906 146.44 33.9901 146.44 36.4196C146.44 38.6359 148.392 40.0638 150.579 40.0638C152.251 40.0638 153.175 39.3179 153.752 38.4439H153.839V39.7232H156.241V33.3721C156.241 30.4313 154.031 28.7906 151.18 28.7906ZM135.804 31.1694H132.266V25.4917H135.804C137.664 25.4917 138.72 27.0217 138.72 28.3305C138.72 29.6141 137.664 31.1694 135.804 31.1694ZM135.74 23.1858H129.779V39.7508H132.266V33.4753H135.74C138.498 33.4753 141.208 31.4919 141.208 28.3311C141.208 25.1709 138.498 23.1858 135.74 23.1858ZM103.233 37.8716C101.514 37.8716 100.076 36.441 100.076 34.4779C100.076 32.492 101.514 31.0412 103.233 31.0412C104.93 31.0412 106.262 32.4921 106.262 34.4779C106.262 36.441 104.93 37.8716 103.233 37.8716ZM106.09 30.0802H106.004C105.446 29.4187 104.371 28.8209 103.019 28.8209C100.183 28.8209 97.5839 31.2975 97.5839 34.4779C97.5839 37.6366 100.183 40.0914 103.019 40.0914C104.371 40.0914 105.446 39.4936 106.004 38.811H106.09V39.6214C106.09 41.7782 104.93 42.9303 103.061 42.9303C101.537 42.9303 100.592 41.8418 100.205 40.9241L98.0356 41.8205C98.658 43.3141 100.311 45.1506 103.061 45.1506C105.983 45.1506 108.453 43.4425 108.453 39.2798V29.1623H106.09L106.09 30.0802ZM110.172 39.7499H112.663V23.1849H110.172V39.7499ZM116.336 34.2854C116.272 32.108 118.034 30.9982 119.301 30.9982C120.289 30.9982 121.126 31.4894 121.406 32.1933L116.336 34.2854ZM124.069 32.4066C123.596 31.1479 122.157 28.8209 119.215 28.8209C116.293 28.8209 113.866 31.1049 113.866 34.4562C113.866 37.6155 116.272 40.0915 119.493 40.0915C122.092 40.0915 123.596 38.5124 124.22 37.5942L122.286 36.3133C121.642 37.2527 120.762 37.8717 119.493 37.8717C118.227 37.8717 117.324 37.2952 116.745 36.1638L124.327 33.0475L124.069 32.4066ZM63.6598 30.5501V32.9407H69.4163C69.2444 34.2855 68.7934 35.2672 68.1059 35.9504C67.2679 36.7827 65.9576 37.7008 63.6597 37.7008C60.1154 37.7008 57.3447 34.862 57.3447 31.3399C57.3447 27.8178 60.1154 24.9786 63.6597 24.9786C65.5715 24.9786 66.9674 25.7259 67.9985 26.6864L69.6959 24.9997C68.2563 23.6338 66.3449 22.5879 63.6597 22.5879C58.8045 22.5879 54.7234 26.5156 54.7234 31.3399C54.7234 36.1637 58.8045 40.0915 63.6597 40.0915C66.2799 40.0915 68.2564 39.2376 69.8027 37.6367C71.3923 36.0571 71.8865 33.8372 71.8865 32.0439C71.8865 31.4895 71.8432 30.9772 71.7573 30.5501H63.6598ZM78.4318 37.8716C76.713 37.8716 75.2308 36.4627 75.2308 34.4562C75.2308 32.4284 76.713 31.0413 78.4318 31.0413C80.1499 31.0413 81.6321 32.4284 81.6321 34.4562C81.6321 36.4627 80.1499 37.8716 78.4318 37.8716ZM78.4318 28.8209C75.2948 28.8209 72.7391 31.1902 72.7391 34.4562C72.7391 37.7008 75.2948 40.0915 78.4318 40.0915C81.5676 40.0915 84.1238 37.7008 84.1238 34.4562C84.1238 31.1902 81.5676 28.8209 78.4318 28.8209ZM90.8488 37.8716C89.1312 37.8716 87.6485 36.4627 87.6485 34.4562C87.6485 32.4284 89.1313 31.0413 90.8488 31.0413C92.5676 31.0413 94.0493 32.4284 94.0493 34.4562C94.0493 36.4627 92.5676 37.8716 90.8488 37.8716ZM90.8488 28.8209C87.713 28.8209 85.1573 31.1902 85.1573 34.4562C85.1573 37.7008 87.713 40.0915 90.8488 40.0915C93.9858 40.0915 96.5415 37.7008 96.5415 34.4562C96.5415 31.1902 93.9858 28.8209 90.8488 28.8209Z", fill: "white" }),
|
|
12988
|
+
/* @__PURE__ */ jsx144("path", { d: "M27.622 25.7372L13.428 40.7092C13.4285 40.7122 13.4296 40.7148 13.4301 40.718C13.8654 42.3438 15.3597 43.5409 17.1331 43.5409C17.842 43.5409 18.5076 43.3504 19.0784 43.0161L19.1237 42.9897L35.1017 33.8272L27.622 25.7372Z", fill: "#EB3131" }),
|
|
12989
|
+
/* @__PURE__ */ jsx144("path", { d: "M41.9831 23.1884L41.9695 23.1791L35.0713 19.2051L27.2996 26.0775L35.0983 33.8265L41.9601 29.892C43.1631 29.2466 43.9798 27.9863 43.9798 26.5329C43.9798 25.09 43.1742 23.8359 41.9831 23.1884Z", fill: "#F6B60B" }),
|
|
12990
|
+
/* @__PURE__ */ jsx144("path", { d: "M13.4261 12.2927C13.3407 12.6054 13.2959 12.933 13.2959 13.2731V39.7298C13.2959 40.0693 13.3402 40.398 13.4266 40.7096L28.1106 26.1202L13.4261 12.2927Z", fill: "#5778C5" }),
|
|
12991
|
+
/* @__PURE__ */ jsx144("path", { d: "M27.727 26.5016L35.0743 19.2024L19.1143 10.0067C18.5342 9.66144 17.8571 9.46216 17.1326 9.46216C15.3592 9.46216 13.8629 10.6614 13.4275 12.2891C13.427 12.2907 13.427 12.2918 13.427 12.2932L27.727 26.5016Z", fill: "#3BAD49" }),
|
|
12992
|
+
/* @__PURE__ */ jsx144("path", { d: "M63.193 12.9606H59.3035V13.9171H62.2181C62.1389 14.6976 61.8263 15.3104 61.2993 15.7555C60.7722 16.2007 60.0993 16.4243 59.3035 16.4243C58.4306 16.4243 57.691 16.122 57.0849 15.5217C56.491 14.9089 56.189 14.1511 56.189 13.2381C56.189 12.3252 56.491 11.5674 57.0849 10.9547C57.691 10.3543 58.4306 10.0541 59.3035 10.0541C59.7515 10.0541 60.1785 10.1307 60.5701 10.2984C60.9618 10.466 61.2763 10.7 61.5222 11.0003L62.2618 10.2653C61.9263 9.88636 61.5014 9.59658 60.9742 9.38539C60.4471 9.17419 59.8972 9.07282 59.3034 9.07282C58.1389 9.07282 57.1515 9.47442 56.3452 10.2757C55.5389 11.0789 55.1348 12.0685 55.1348 13.2382C55.1348 14.4078 55.5389 15.3996 56.3452 16.2008C57.1514 17.0019 58.1389 17.4037 59.3034 17.4037C60.5263 17.4037 61.5013 17.0144 62.2513 16.2235C62.9116 15.5653 63.2491 14.675 63.2491 13.5612C63.2491 13.3728 63.2263 13.1718 63.193 12.9606ZM64.6998 9.2507V17.2255H69.385V16.2462H65.731V13.7164H69.0268V12.7599H65.731V10.2321H69.385V9.25067L64.6998 9.2507ZM75.9548 10.2321V9.2507H70.4403V10.2321H72.682V17.2255H73.7132V10.2321H75.9548ZM80.9473 9.2507H79.9161V17.2255H80.9473V9.2507ZM87.7539 10.2321V9.2507H82.2395V10.2321H84.481V17.2255H85.5122V10.2321H87.7539ZM98.1599 10.288C97.364 9.47436 96.3891 9.07275 95.2245 9.07275C94.0579 9.07275 93.083 9.47435 92.2871 10.2756C91.4912 11.0665 91.0997 12.0581 91.0997 13.2381C91.0997 14.4181 91.4912 15.4098 92.2871 16.2008C93.0829 17.0018 94.0579 17.4036 95.2245 17.4036C96.3786 17.4036 97.364 17.0019 98.1599 16.2008C98.9557 15.4099 99.3473 14.4182 99.3473 13.2381C99.3473 12.0684 98.9557 11.0788 98.1599 10.288ZM93.0267 10.9546C93.6204 10.3543 94.3496 10.054 95.2245 10.054C96.0974 10.054 96.8266 10.3543 97.4099 10.9546C98.0036 11.5446 98.2952 12.3147 98.2952 13.2381C98.2952 14.1636 98.0036 14.9315 97.4099 15.5216C96.8265 16.122 96.0974 16.4242 95.2245 16.4242C94.3495 16.4242 93.6204 16.122 93.0267 15.5216C92.4453 14.9192 92.1537 14.1635 92.1537 13.2381C92.1537 12.3147 92.4453 11.557 93.0267 10.9546ZM101.797 12.2589L101.754 10.7206H101.797L105.876 17.2254H106.953V9.25062H105.922V13.917L105.966 15.4553H105.922L102.022 9.25062H100.766V17.2254H101.797V12.2589Z", fill: "white", stroke: "white", strokeWidth: "0.26666", strokeMiterlimit: "10" })
|
|
12973
12993
|
] }),
|
|
12974
|
-
/* @__PURE__ */
|
|
12994
|
+
/* @__PURE__ */ jsx144("defs", { children: /* @__PURE__ */ jsx144("clipPath", { id: "clip0_5955_146", children: /* @__PURE__ */ jsx144("rect", { width: "180", height: "53", fill: "white" }) }) })
|
|
12975
12995
|
] }) }),
|
|
12976
|
-
/* @__PURE__ */
|
|
12996
|
+
/* @__PURE__ */ jsx144("a", { href: props.apple_store_link, target: "_blank", className: "w-full h-full", children: /* @__PURE__ */ jsxs65(
|
|
12977
12997
|
"svg",
|
|
12978
12998
|
{
|
|
12979
12999
|
xmlns: "http://www.w3.org/2000/svg",
|
|
@@ -12983,33 +13003,33 @@ var H1BodyButtonWithApp = (props) => {
|
|
|
12983
13003
|
onClick: () => props.apple_store_link,
|
|
12984
13004
|
children: [
|
|
12985
13005
|
/* @__PURE__ */ jsxs65("g", { clipPath: "url(#clip0_5955_114)", children: [
|
|
12986
|
-
/* @__PURE__ */
|
|
12987
|
-
/* @__PURE__ */
|
|
12988
|
-
/* @__PURE__ */
|
|
12989
|
-
/* @__PURE__ */
|
|
12990
|
-
/* @__PURE__ */
|
|
12991
|
-
/* @__PURE__ */
|
|
12992
|
-
/* @__PURE__ */
|
|
12993
|
-
/* @__PURE__ */
|
|
12994
|
-
/* @__PURE__ */
|
|
12995
|
-
/* @__PURE__ */
|
|
12996
|
-
/* @__PURE__ */
|
|
12997
|
-
/* @__PURE__ */
|
|
12998
|
-
/* @__PURE__ */
|
|
12999
|
-
/* @__PURE__ */
|
|
13000
|
-
/* @__PURE__ */
|
|
13001
|
-
/* @__PURE__ */
|
|
13002
|
-
/* @__PURE__ */
|
|
13003
|
-
/* @__PURE__ */
|
|
13004
|
-
/* @__PURE__ */
|
|
13005
|
-
/* @__PURE__ */
|
|
13006
|
-
/* @__PURE__ */
|
|
13007
|
-
/* @__PURE__ */
|
|
13008
|
-
/* @__PURE__ */
|
|
13009
|
-
/* @__PURE__ */
|
|
13010
|
-
/* @__PURE__ */
|
|
13006
|
+
/* @__PURE__ */ jsx144("path", { d: "M173.596 53H6.30533C2.82933 53 0 50.1804 0 46.7288V6.26195C0 2.809 2.82933 0 6.30533 0H173.596C177.071 0 180 2.809 180 6.26195V46.7288C180 50.1804 177.071 53 173.596 53Z", fill: "#A6A6A6" }),
|
|
13007
|
+
/* @__PURE__ */ jsx144("path", { d: "M178.709 46.73C178.709 49.5337 176.424 51.8048 173.597 51.8048H6.30543C3.4801 51.8048 1.18677 49.5337 1.18677 46.73V6.26057C1.18677 3.4582 3.4801 1.1792 6.30543 1.1792H173.596C176.424 1.1792 178.708 3.4582 178.708 6.26057L178.709 46.73Z", fill: "black" }),
|
|
13008
|
+
/* @__PURE__ */ jsx144("path", { d: "M40.1707 26.2137C40.132 21.9432 43.6894 19.8656 43.852 19.7689C41.8374 16.8499 38.7147 16.4511 37.6174 16.4193C34.9947 16.145 32.4507 17.9788 31.1147 17.9788C29.752 17.9788 27.6947 16.4458 25.4774 16.4909C22.624 16.5346 19.9547 18.1763 18.4907 20.7256C15.4694 25.9235 17.7227 33.5622 20.6174 37.7637C22.0654 39.8215 23.7574 42.119 25.972 42.0382C28.1387 41.9494 28.948 40.6655 31.5627 40.6655C34.1534 40.6655 34.9134 42.0382 37.172 41.9865C39.4974 41.9494 40.9614 39.9195 42.3587 37.8432C44.032 35.4847 44.704 33.162 44.7307 33.0428C44.676 33.0242 40.2147 31.3322 40.1707 26.2137Z", fill: "white" }),
|
|
13009
|
+
/* @__PURE__ */ jsx144("path", { d: "M35.9041 13.6555C37.0694 12.2072 37.8667 10.237 37.6454 8.23755C35.9587 8.31175 33.8494 9.39692 32.6347 10.8133C31.5601 12.0615 30.6001 14.1073 30.8481 16.0312C32.7427 16.1716 34.6881 15.0812 35.9041 13.6555Z", fill: "white" }),
|
|
13010
|
+
/* @__PURE__ */ jsx144("path", { d: "M71.5266 41.7427H68.4986L66.84 36.5633H61.0746L59.4946 41.7427H56.5466L62.2586 24.1096H65.7866L71.5266 41.7427ZM66.34 34.3903L64.84 29.7859C64.6813 29.3155 64.384 28.2078 63.9453 26.4641H63.892C63.7173 27.2141 63.436 28.3218 63.0493 29.7859L61.576 34.3903H66.34Z", fill: "white" }),
|
|
13011
|
+
/* @__PURE__ */ jsx144("path", { d: "M86.2159 35.2291C86.2159 37.3915 85.6279 39.1008 84.4519 40.3555C83.3985 41.4725 82.0905 42.0303 80.5292 42.0303C78.8439 42.0303 77.6332 41.4288 76.8959 40.2257H76.8425V46.9236H73.9999V33.2138C73.9999 31.8543 73.9639 30.4591 73.8945 29.0281H76.3945L76.5532 31.0434H76.6065C77.5545 29.525 78.9932 28.7671 80.9239 28.7671C82.4332 28.7671 83.6932 29.3594 84.7012 30.5452C85.7119 31.7324 86.2159 33.2933 86.2159 35.2291ZM83.3199 35.3325C83.3199 34.0949 83.0399 33.0747 82.4772 32.2717C81.8625 31.4343 81.0372 31.0156 80.0025 31.0156C79.3012 31.0156 78.6639 31.2488 78.0945 31.7086C77.5239 32.1723 77.1505 32.7779 76.9759 33.5278C76.8879 33.8776 76.8439 34.1638 76.8439 34.3891V36.5091C76.8439 37.4339 77.1292 38.2143 77.6999 38.8517C78.2705 39.489 79.0119 39.807 79.9239 39.807C80.9945 39.807 81.8279 39.3962 82.4239 38.5774C83.0212 37.7572 83.3199 36.676 83.3199 35.3325Z", fill: "white" }),
|
|
13012
|
+
/* @__PURE__ */ jsx144("path", { d: "M100.932 35.2291C100.932 37.3915 100.344 39.1008 99.1667 40.3555C98.1147 41.4725 96.8067 42.0303 95.2454 42.0303C93.5601 42.0303 92.3494 41.4288 91.6134 40.2257H91.5601V46.9236H88.7174V33.2138C88.7174 31.8543 88.6814 30.4591 88.6121 29.0281H91.1121L91.2707 31.0434H91.3241C92.2707 29.525 93.7094 28.7671 95.6414 28.7671C97.1494 28.7671 98.4094 29.3594 99.4201 30.5452C100.427 31.7324 100.932 33.2933 100.932 35.2291ZM98.0361 35.3325C98.0361 34.0949 97.7547 33.0747 97.1921 32.2717C96.5774 31.4343 95.7547 31.0156 94.7187 31.0156C94.0161 31.0156 93.3801 31.2488 92.8094 31.7086C92.2387 32.1723 91.8667 32.7779 91.6921 33.5278C91.6054 33.8776 91.5601 34.1638 91.5601 34.3891V36.5091C91.5601 37.4339 91.8454 38.2143 92.4134 38.8517C92.9841 39.4877 93.7254 39.807 94.6401 39.807C95.7107 39.807 96.5441 39.3962 97.1401 38.5774C97.7374 37.7572 98.0361 36.676 98.0361 35.3325Z", fill: "white" }),
|
|
13013
|
+
/* @__PURE__ */ jsx144("path", { d: "M117.385 36.7979C117.385 38.2978 116.861 39.5181 115.809 40.4602C114.653 41.4897 113.044 42.0038 110.976 42.0038C109.067 42.0038 107.536 41.6381 106.377 40.9054L107.036 38.5509C108.284 39.3008 109.653 39.6771 111.145 39.6771C112.216 39.6771 113.049 39.436 113.648 38.9563C114.244 38.4767 114.541 37.8327 114.541 37.0298C114.541 36.3143 114.296 35.7114 113.804 35.2225C113.315 34.7335 112.497 34.2791 111.356 33.859C108.249 32.7076 106.697 31.0209 106.697 28.8028C106.697 27.3533 107.241 26.1648 108.331 25.2399C109.416 24.3137 110.864 23.8513 112.675 23.8513C114.289 23.8513 115.631 24.1309 116.701 24.6887L115.991 26.9916C114.991 26.451 113.86 26.1807 112.595 26.1807C111.595 26.1807 110.813 26.4258 110.253 26.9134C109.78 27.3493 109.543 27.8806 109.543 28.51C109.543 29.207 109.813 29.7833 110.357 30.2365C110.831 30.6552 111.691 31.1083 112.939 31.5973C114.465 32.2081 115.587 32.9223 116.308 33.7411C117.027 34.5573 117.385 35.5789 117.385 36.7979Z", fill: "white" }),
|
|
13014
|
+
/* @__PURE__ */ jsx144("path", { d: "M126.784 31.1482H123.651V37.3214C123.651 38.8915 124.203 39.6759 125.309 39.6759C125.817 39.6759 126.239 39.6322 126.572 39.5447L126.651 41.6899C126.091 41.8979 125.353 42.0026 124.44 42.0026C123.317 42.0026 122.44 41.6621 121.807 40.9823C121.176 40.3013 120.859 39.1591 120.859 37.5546V31.1455H118.992V29.0255H120.859V26.6975L123.651 25.8601V29.0255H126.784V31.1482Z", fill: "white" }),
|
|
13015
|
+
/* @__PURE__ */ jsx144("path", { d: "M140.921 35.2807C140.921 37.2351 140.359 38.8396 139.236 40.0944C138.059 41.3863 136.496 42.0302 134.548 42.0302C132.671 42.0302 131.176 41.4115 130.061 40.1739C128.947 38.9364 128.389 37.3742 128.389 35.4914C128.389 33.5211 128.963 31.9072 130.113 30.6525C131.261 29.3964 132.811 28.7683 134.759 28.7683C136.636 28.7683 138.147 29.3871 139.287 30.626C140.377 31.8277 140.921 33.3793 140.921 35.2807ZM137.972 35.3721C137.972 34.1995 137.72 33.1938 137.209 32.3551C136.613 31.3401 135.761 30.834 134.657 30.834C133.515 30.834 132.647 31.3415 132.051 32.3551C131.54 33.1951 131.288 34.2167 131.288 35.4251C131.288 36.5977 131.54 37.6034 132.051 38.4408C132.665 39.4558 133.524 39.9619 134.632 39.9619C135.717 39.9619 136.569 39.4452 137.184 38.4143C137.708 37.5597 137.972 36.5434 137.972 35.3721Z", fill: "white" }),
|
|
13016
|
+
/* @__PURE__ */ jsx144("path", { d: "M150.161 31.5125C149.88 31.4608 149.58 31.4343 149.265 31.4343C148.265 31.4343 147.492 31.8093 146.948 32.5606C146.475 33.2231 146.237 34.0605 146.237 35.0714V41.7428H143.396L143.423 33.0323C143.423 31.5668 143.387 30.2325 143.316 29.0294H145.792L145.896 31.4621H145.975C146.275 30.6261 146.748 29.953 147.396 29.4481C148.029 28.9937 148.713 28.7671 149.451 28.7671C149.713 28.7671 149.951 28.7856 150.161 28.8188V31.5125Z", fill: "white" }),
|
|
13017
|
+
/* @__PURE__ */ jsx144("path", { d: "M162.875 34.7838C162.875 35.29 162.841 35.7166 162.771 36.0651H154.243C154.276 37.3212 154.688 38.2818 155.48 38.9443C156.199 39.5366 157.128 39.8334 158.269 39.8334C159.532 39.8334 160.684 39.6333 161.72 39.2319L162.165 41.1929C160.955 41.7176 159.525 41.9786 157.876 41.9786C155.892 41.9786 154.335 41.3982 153.201 40.2389C152.071 39.0795 151.504 37.5226 151.504 35.5696C151.504 33.6523 152.031 32.0557 153.085 30.7823C154.189 29.4229 155.681 28.7432 157.559 28.7432C159.403 28.7432 160.799 29.4229 161.747 30.7823C162.497 31.8622 162.875 33.1978 162.875 34.7838ZM160.164 34.0511C160.183 33.2137 159.997 32.4903 159.612 31.8794C159.12 31.0937 158.364 30.7015 157.347 30.7015C156.417 30.7015 155.661 31.0844 155.084 31.8529C154.611 32.4638 154.329 33.1965 154.243 34.0498L160.164 34.0511Z", fill: "white" }),
|
|
13018
|
+
/* @__PURE__ */ jsx144("path", { d: "M65.4 13.262C65.4 14.8215 64.9293 15.9955 63.9893 16.7839C63.1186 17.5113 61.8813 17.8757 60.2786 17.8757C59.484 17.8757 58.804 17.8412 58.2346 17.7723V9.25124C58.9773 9.13199 59.7773 9.07104 60.6413 9.07104C62.168 9.07104 63.3186 9.40097 64.0946 10.0608C64.964 10.8068 65.4 11.8734 65.4 13.262ZM63.9266 13.3004C63.9266 12.2895 63.6573 11.5143 63.1186 10.9737C62.58 10.4345 61.7933 10.1642 60.7573 10.1642C60.3173 10.1642 59.9426 10.1933 59.632 10.2543V16.7322C59.804 16.7587 60.1186 16.7706 60.576 16.7706C61.6453 16.7706 62.4706 16.4751 63.052 15.8842C63.6333 15.2932 63.9266 14.432 63.9266 13.3004Z", fill: "white" }),
|
|
13019
|
+
/* @__PURE__ */ jsx144("path", { d: "M73.2119 14.6241C73.2119 15.5847 72.9359 16.3718 72.3839 16.9892C71.8052 17.6239 71.0386 17.9406 70.0812 17.9406C69.1586 17.9406 68.4239 17.6371 67.8759 17.0276C67.3292 16.4195 67.0559 15.6523 67.0559 14.7274C67.0559 13.7602 67.3372 12.9665 67.9026 12.3504C68.4679 11.7343 69.2279 11.4255 70.1852 11.4255C71.1079 11.4255 71.8492 11.729 72.4106 12.3371C72.9439 12.9281 73.2119 13.6913 73.2119 14.6241ZM71.7626 14.6691C71.7626 14.0928 71.6372 13.5985 71.3879 13.1865C71.0946 12.6883 70.6772 12.4392 70.1346 12.4392C69.5732 12.4392 69.1466 12.6883 68.8532 13.1865C68.6026 13.5985 68.4786 14.1007 68.4786 14.6943C68.4786 15.2707 68.6039 15.7649 68.8532 16.177C69.1559 16.6752 69.5772 16.9243 70.1212 16.9243C70.6546 16.9243 71.0732 16.6712 71.3746 16.1637C71.6332 15.7437 71.7626 15.2455 71.7626 14.6691Z", fill: "white" }),
|
|
13020
|
+
/* @__PURE__ */ jsx144("path", { d: "M83.6867 11.5527L81.7201 17.7988H80.4401L79.6254 15.0865C79.4187 14.4094 79.2507 13.7363 79.1201 13.0685H79.0947C78.9734 13.7549 78.8054 14.4267 78.5894 15.0865L77.7241 17.7988H76.4294L74.5801 11.5527H76.0161L76.7267 14.5221C76.8987 15.2243 77.0401 15.8934 77.1534 16.5268H77.1787C77.2827 16.0047 77.4547 15.3396 77.6974 14.5353L78.5894 11.5541H79.7281L80.5827 14.4717C80.7894 15.1832 80.9574 15.8683 81.0867 16.5281H81.1254C81.2201 15.8855 81.3627 15.2005 81.5521 14.4717L82.3147 11.5541H83.6867V11.5527Z", fill: "white" }),
|
|
13021
|
+
/* @__PURE__ */ jsx144("path", { d: "M90.9307 17.7989H89.5334V14.2214C89.5334 13.119 89.112 12.5678 88.2667 12.5678C87.852 12.5678 87.5174 12.7188 87.2574 13.0222C87.0001 13.3257 86.8694 13.6834 86.8694 14.0928V17.7975H85.472V13.3376C85.472 12.789 85.4547 12.1941 85.4214 11.5502H86.6494L86.7147 12.5267H86.7534C86.9161 12.2233 87.1587 11.9728 87.4774 11.7728C87.8561 11.5396 88.28 11.4216 88.744 11.4216C89.3307 11.4216 89.8187 11.6098 90.2067 11.9874C90.6894 12.4498 90.9307 13.1402 90.9307 14.0571V17.7989Z", fill: "white" }),
|
|
13022
|
+
/* @__PURE__ */ jsx144("path", { d: "M94.7839 17.7988H93.3879V8.68677H94.7839V17.7988Z", fill: "white" }),
|
|
13023
|
+
/* @__PURE__ */ jsx144("path", { d: "M103.011 14.6241C103.011 15.5847 102.735 16.3718 102.183 16.9892C101.604 17.6239 100.836 17.9406 99.8801 17.9406C98.9561 17.9406 98.2214 17.6371 97.6747 17.0276C97.1281 16.4195 96.8547 15.6523 96.8547 14.7274C96.8547 13.7602 97.1361 12.9665 97.7014 12.3504C98.2667 11.7343 99.0267 11.4255 99.9827 11.4255C100.907 11.4255 101.647 11.729 102.209 12.3371C102.743 12.9281 103.011 13.6913 103.011 14.6241ZM101.56 14.6691C101.56 14.0928 101.435 13.5985 101.185 13.1865C100.893 12.6883 100.475 12.4392 99.9334 12.4392C99.3707 12.4392 98.9441 12.6883 98.6521 13.1865C98.4014 13.5985 98.2774 14.1007 98.2774 14.6943C98.2774 15.2707 98.4027 15.7649 98.6521 16.177C98.9547 16.6752 99.3761 16.9243 99.9201 16.9243C100.453 16.9243 100.871 16.6712 101.172 16.1637C101.432 15.7437 101.56 15.2455 101.56 14.6691Z", fill: "white" }),
|
|
13024
|
+
/* @__PURE__ */ jsx144("path", { d: "M109.773 17.7988H108.519L108.415 17.0793H108.376C107.947 17.653 107.335 17.9406 106.54 17.9406C105.947 17.9406 105.467 17.7511 105.105 17.3748C104.777 17.0329 104.613 16.6076 104.613 16.1028C104.613 15.3396 104.933 14.7579 105.577 14.3551C106.22 13.9523 107.124 13.7549 108.288 13.7642V13.6476C108.288 12.8247 107.853 12.414 106.983 12.414C106.363 12.414 105.816 12.569 105.344 12.8764L105.06 11.9648C105.644 11.6057 106.365 11.4255 107.216 11.4255C108.859 11.4255 109.683 12.2868 109.683 14.0093V16.3095C109.683 16.9336 109.713 17.4304 109.773 17.7988ZM108.323 15.6523V14.689C106.781 14.6625 106.011 15.0825 106.011 15.9478C106.011 16.2737 106.099 16.5175 106.279 16.6805C106.459 16.8435 106.688 16.9243 106.961 16.9243C107.268 16.9243 107.555 16.8276 107.816 16.6354C108.079 16.442 108.24 16.1969 108.3 15.8961C108.315 15.8285 108.323 15.7464 108.323 15.6523Z", fill: "white" }),
|
|
13025
|
+
/* @__PURE__ */ jsx144("path", { d: "M117.713 17.7988H116.473L116.408 16.7958H116.369C115.973 17.559 115.299 17.9406 114.351 17.9406C113.593 17.9406 112.963 17.6451 112.463 17.0541C111.963 16.4632 111.713 15.696 111.713 14.7539C111.713 13.743 111.984 12.9241 112.528 12.2987C113.055 11.7157 113.7 11.4242 114.468 11.4242C115.312 11.4242 115.903 11.7064 116.239 12.2722H116.265V8.68677H117.664V16.116C117.664 16.7242 117.68 17.2847 117.713 17.7988ZM116.265 15.1647V14.1232C116.265 13.943 116.252 13.7973 116.227 13.686C116.148 13.3521 115.979 13.0712 115.721 12.8446C115.461 12.618 115.148 12.5041 114.787 12.5041C114.265 12.5041 113.857 12.7095 113.557 13.1215C113.26 13.5336 113.109 14.0596 113.109 14.7023C113.109 15.3197 113.252 15.8206 113.539 16.2061C113.841 16.6169 114.249 16.8223 114.76 16.8223C115.219 16.8223 115.585 16.6513 115.864 16.3082C116.133 15.9915 116.265 15.6099 116.265 15.1647Z", fill: "white" }),
|
|
13026
|
+
/* @__PURE__ */ jsx144("path", { d: "M129.664 14.6241C129.664 15.5847 129.388 16.3718 128.836 16.9892C128.257 17.6239 127.492 17.9406 126.533 17.9406C125.612 17.9406 124.877 17.6371 124.328 17.0276C123.781 16.4195 123.508 15.6523 123.508 14.7274C123.508 13.7602 123.789 12.9665 124.355 12.3504C124.92 11.7343 125.68 11.4255 126.639 11.4255C127.56 11.4255 128.303 11.729 128.863 12.3371C129.396 12.9281 129.664 13.6913 129.664 14.6241ZM128.216 14.6691C128.216 14.0928 128.091 13.5985 127.841 13.1865C127.547 12.6883 127.131 12.4392 126.587 12.4392C126.027 12.4392 125.6 12.6883 125.305 13.1865C125.055 13.5985 124.931 14.1007 124.931 14.6943C124.931 15.2707 125.056 15.7649 125.305 16.177C125.608 16.6752 126.029 16.9243 126.573 16.9243C127.107 16.9243 127.527 16.6712 127.828 16.1637C128.085 15.7437 128.216 15.2455 128.216 14.6691Z", fill: "white" }),
|
|
13027
|
+
/* @__PURE__ */ jsx144("path", { d: "M137.177 17.7989H135.781V14.2214C135.781 13.119 135.36 12.5678 134.513 12.5678C134.099 12.5678 133.764 12.7188 133.505 13.0222C133.247 13.3257 133.117 13.6834 133.117 14.0928V17.7975H131.719V13.3376C131.719 12.789 131.703 12.1941 131.669 11.5502H132.896L132.961 12.5267H133C133.164 12.2233 133.407 11.9728 133.724 11.7728C134.104 11.5396 134.527 11.4216 134.992 11.4216C135.577 11.4216 136.065 11.6098 136.453 11.9874C136.937 12.4498 137.177 13.1402 137.177 14.0571V17.7989Z", fill: "white" }),
|
|
13028
|
+
/* @__PURE__ */ jsx144("path", { d: "M146.581 12.593H145.043V15.6272C145.043 16.3984 145.316 16.784 145.857 16.784C146.108 16.784 146.316 16.7628 146.48 16.719L146.516 17.7724C146.24 17.8758 145.877 17.9274 145.431 17.9274C144.879 17.9274 144.449 17.7605 144.139 17.4266C143.827 17.0927 143.672 16.5309 143.672 15.7425V12.593H142.753V11.5529H143.672V10.4081L145.041 9.99731V11.5515H146.58L146.581 12.593Z", fill: "white" }),
|
|
13029
|
+
/* @__PURE__ */ jsx144("path", { d: "M153.979 17.7988H152.58V14.2478C152.58 13.1282 152.159 12.5677 151.315 12.5677C150.667 12.5677 150.224 12.8923 149.981 13.5416C149.94 13.678 149.916 13.845 149.916 14.0411V17.7975H148.52V8.68677H149.916V12.4511H149.943C150.383 11.7661 151.013 11.4242 151.831 11.4242C152.409 11.4242 152.888 11.6124 153.268 11.99C153.741 12.4604 153.979 13.16 153.979 14.0848V17.7988Z", fill: "white" }),
|
|
13030
|
+
/* @__PURE__ */ jsx144("path", { d: "M161.609 14.3802C161.609 14.6293 161.591 14.8387 161.557 15.0096H157.367C157.385 15.6271 157.585 16.0974 157.973 16.4234C158.328 16.7149 158.785 16.8606 159.345 16.8606C159.965 16.8606 160.531 16.7626 161.04 16.5652L161.259 17.5298C160.663 17.7868 159.961 17.9153 159.149 17.9153C158.176 17.9153 157.409 17.6305 156.855 17.0607C156.297 16.491 156.021 15.7264 156.021 14.7671C156.021 13.8251 156.279 13.0407 156.797 12.4153C157.339 11.7475 158.071 11.4136 158.995 11.4136C159.899 11.4136 160.585 11.7475 161.049 12.4153C161.424 12.9453 161.609 13.6011 161.609 14.3802ZM160.276 14.0212C160.287 13.6091 160.195 13.254 160.005 12.9545C159.763 12.569 159.393 12.3755 158.893 12.3755C158.437 12.3755 158.065 12.5637 157.781 12.9413C157.549 13.2421 157.412 13.6011 157.367 14.0212H160.276Z", fill: "white" })
|
|
13011
13031
|
] }),
|
|
13012
|
-
/* @__PURE__ */
|
|
13032
|
+
/* @__PURE__ */ jsx144("defs", { children: /* @__PURE__ */ jsx144("clipPath", { id: "clip0_5955_114", children: /* @__PURE__ */ jsx144("rect", { width: "180", height: "53", fill: "white" }) }) })
|
|
13013
13033
|
]
|
|
13014
13034
|
}
|
|
13015
13035
|
) })
|
|
@@ -13021,7 +13041,7 @@ var H1BodyButtonWithApp = (props) => {
|
|
|
13021
13041
|
};
|
|
13022
13042
|
|
|
13023
13043
|
// src/components/Hero/HeroImageRightWithAppButtons.tsx
|
|
13024
|
-
import { jsx as
|
|
13044
|
+
import { jsx as jsx145, jsxs as jsxs66 } from "react/jsx-runtime";
|
|
13025
13045
|
var HeroImageRightWithAppButtons = (props) => {
|
|
13026
13046
|
const [description, setDescription] = useState16(props.description);
|
|
13027
13047
|
useEffect11(() => {
|
|
@@ -13031,8 +13051,8 @@ var HeroImageRightWithAppButtons = (props) => {
|
|
|
13031
13051
|
setDescription(desc);
|
|
13032
13052
|
}
|
|
13033
13053
|
}, [props.description]);
|
|
13034
|
-
return /* @__PURE__ */
|
|
13035
|
-
/* @__PURE__ */
|
|
13054
|
+
return /* @__PURE__ */ jsx145("div", { children: /* @__PURE__ */ jsx145("div", { className: "lg:mt-10", children: /* @__PURE__ */ jsx145("div", { className: "justify-end", children: /* @__PURE__ */ jsxs66("div", { className: "flex gap-5 max-md:flex-col max-md:gap-0", children: [
|
|
13055
|
+
/* @__PURE__ */ jsx145("div", { className: "flex flex-col w-[50%] max-md:ml-0 max-md:w-full lg:pr-5", children: /* @__PURE__ */ jsx145("div", { className: "flex flex-col self-stretch lg:pr-5 my-auto max-md:max-w-full", children: props.title && props.description && /* @__PURE__ */ jsx145(
|
|
13036
13056
|
H1BodyButtonWithApp,
|
|
13037
13057
|
{
|
|
13038
13058
|
title: props.title,
|
|
@@ -13042,7 +13062,7 @@ var HeroImageRightWithAppButtons = (props) => {
|
|
|
13042
13062
|
apple_store_link: props.app_store_link
|
|
13043
13063
|
}
|
|
13044
13064
|
) }) }),
|
|
13045
|
-
/* @__PURE__ */
|
|
13065
|
+
/* @__PURE__ */ jsx145("div", { className: "flex flex-col ml-5 w-[50%] max-md:ml-0 max-md:w-full", children: /* @__PURE__ */ jsx145("div", { className: "flex overflow-hidden relative min-h-[430px] flex-col grow justify-center lg:min-h-[784px] max-md:mt-6 max-md:max-w-full", children: /* @__PURE__ */ jsx145(
|
|
13046
13066
|
ImageElement,
|
|
13047
13067
|
{
|
|
13048
13068
|
src: props.path,
|
|
@@ -13053,16 +13073,16 @@ var HeroImageRightWithAppButtons = (props) => {
|
|
|
13053
13073
|
};
|
|
13054
13074
|
|
|
13055
13075
|
// src/components/Panel/Horizontal.tsx
|
|
13056
|
-
import { jsx as
|
|
13076
|
+
import { jsx as jsx146 } from "react/jsx-runtime";
|
|
13057
13077
|
var PanelHorizontal = ({
|
|
13058
13078
|
children
|
|
13059
13079
|
}) => {
|
|
13060
|
-
return /* @__PURE__ */
|
|
13080
|
+
return /* @__PURE__ */ jsx146("div", { className: "panel-horizontal", children });
|
|
13061
13081
|
};
|
|
13062
13082
|
|
|
13063
13083
|
// src/components/HeadingTextBlocks/H2BodyButton.tsx
|
|
13064
|
-
import { Link as
|
|
13065
|
-
import { jsx as
|
|
13084
|
+
import { Link as Link7 } from "@geowiki/core";
|
|
13085
|
+
import { jsx as jsx147, jsxs as jsxs67 } from "react/jsx-runtime";
|
|
13066
13086
|
var H2BodyButton = (props) => {
|
|
13067
13087
|
var _a;
|
|
13068
13088
|
const isNeedParse = /<em>(.*?)<\/em>/g.test(props.title);
|
|
@@ -13078,9 +13098,9 @@ var H2BodyButton = (props) => {
|
|
|
13078
13098
|
id: props.id,
|
|
13079
13099
|
className: `${props.noContainer ? `lg:ml-8` : `lg:container`} mx-auto flex flex-col lg:flex-row justify-between mt-4 lg:pt-20 ${props.bottomPadding && `lg:mb-${props.bottomPadding}`}`,
|
|
13080
13100
|
children: [
|
|
13081
|
-
/* @__PURE__ */
|
|
13101
|
+
/* @__PURE__ */ jsx147("div", { className: "flex flex-col lg:w-[14%]", children: /* @__PURE__ */ jsx147(Body18, { children: props.tag }) }),
|
|
13082
13102
|
/* @__PURE__ */ jsxs67("div", { className: "flex flex-col lg:w-[51%] space-y-4 lg:space-y-6", children: [
|
|
13083
|
-
isNeedParse && /* @__PURE__ */
|
|
13103
|
+
isNeedParse && /* @__PURE__ */ jsx147(
|
|
13084
13104
|
HtmlView,
|
|
13085
13105
|
{
|
|
13086
13106
|
cssClass: "m-0 pt-2 lg:pt-0",
|
|
@@ -13091,24 +13111,24 @@ var H2BodyButton = (props) => {
|
|
|
13091
13111
|
props.title,
|
|
13092
13112
|
" "
|
|
13093
13113
|
] }),
|
|
13094
|
-
/* @__PURE__ */
|
|
13114
|
+
/* @__PURE__ */ jsx147(
|
|
13095
13115
|
HtmlView,
|
|
13096
13116
|
{
|
|
13097
13117
|
cssClass: "m-0 text-base lg:text-lg leading-[130%] lg:mt-4",
|
|
13098
13118
|
html: addLinksStyles(props.textBody)
|
|
13099
13119
|
}
|
|
13100
13120
|
),
|
|
13101
|
-
((_a = props.button) == null ? void 0 : _a.text) && props.button.link && /* @__PURE__ */
|
|
13102
|
-
|
|
13121
|
+
((_a = props.button) == null ? void 0 : _a.text) && props.button.link && /* @__PURE__ */ jsx147("div", { children: /* @__PURE__ */ jsx147(
|
|
13122
|
+
Link7,
|
|
13103
13123
|
{
|
|
13104
13124
|
href: props.button.link,
|
|
13105
13125
|
target: props.button.isNewTab ? "_blank" : "_self",
|
|
13106
13126
|
rel: "noreferrer",
|
|
13107
|
-
children: /* @__PURE__ */
|
|
13127
|
+
children: /* @__PURE__ */ jsx147(DesignButton, { children: props.button.text })
|
|
13108
13128
|
}
|
|
13109
13129
|
) })
|
|
13110
13130
|
] }),
|
|
13111
|
-
/* @__PURE__ */
|
|
13131
|
+
/* @__PURE__ */ jsx147("div", { className: "hidden lg:w-[15%] lg:inline" })
|
|
13112
13132
|
]
|
|
13113
13133
|
}
|
|
13114
13134
|
);
|
|
@@ -13361,6 +13381,7 @@ export {
|
|
|
13361
13381
|
NavigationMenuTrigger,
|
|
13362
13382
|
NavigationMenuViewport,
|
|
13363
13383
|
NoResults,
|
|
13384
|
+
Notification,
|
|
13364
13385
|
ObservationPin,
|
|
13365
13386
|
OldButton,
|
|
13366
13387
|
OldCustomInput,
|
|
@@ -13377,6 +13398,7 @@ export {
|
|
|
13377
13398
|
Progress,
|
|
13378
13399
|
RadioGroup4 as RadioGroup,
|
|
13379
13400
|
RadioGroupItem,
|
|
13401
|
+
ResourceTag,
|
|
13380
13402
|
ResourcesIcon,
|
|
13381
13403
|
ResourcesQuickFind,
|
|
13382
13404
|
ScrollArea,
|
|
@@ -13404,6 +13426,7 @@ export {
|
|
|
13404
13426
|
SheetTrigger,
|
|
13405
13427
|
ShowLargeText,
|
|
13406
13428
|
ShowShortText,
|
|
13429
|
+
SimpleLink,
|
|
13407
13430
|
SizedImage,
|
|
13408
13431
|
Skeleton,
|
|
13409
13432
|
Slider,
|