@shriyanss/js-recon 1.0.0 → 1.1.0-beta.1
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/.api_gateway_config.json +1 -0
- package/.github/workflows/npm-publish.yml +35 -0
- package/.github/workflows/prettier.yaml +44 -0
- package/.prettierignore +2 -0
- package/.prettierrc +4 -0
- package/.resp_cache.json +1 -0
- package/.vscode/launch.json +27 -0
- package/CHANGELOG.md +40 -0
- package/README.md +35 -140
- package/build/api_gateway/checkFeasibility.js +32 -0
- package/build/api_gateway/checkFeasibility.js.map +1 -0
- package/build/api_gateway/checkFireWallBlocking.js +24 -0
- package/build/api_gateway/checkFireWallBlocking.js.map +1 -0
- package/build/api_gateway/genReq.js +202 -0
- package/build/api_gateway/genReq.js.map +1 -0
- package/build/api_gateway/index.js +277 -0
- package/build/api_gateway/index.js.map +1 -0
- package/build/endpoints/gen_report/gen_json.js +22 -0
- package/build/endpoints/gen_report/gen_json.js.map +1 -0
- package/build/endpoints/gen_report/gen_markdown.js +66 -0
- package/build/endpoints/gen_report/gen_markdown.js.map +1 -0
- package/build/endpoints/gen_report/utility/iterate_n_store.js +46 -0
- package/build/endpoints/gen_report/utility/iterate_n_store.js.map +1 -0
- package/build/endpoints/index.js +89 -0
- package/build/endpoints/index.js.map +1 -0
- package/build/endpoints/next_js/client_jsFilesHref.js +91 -0
- package/build/endpoints/next_js/client_jsFilesHref.js.map +1 -0
- package/build/endpoints/next_js/client_jsonParse.js +75 -0
- package/build/endpoints/next_js/client_jsonParse.js.map +1 -0
- package/build/endpoints/next_js/client_subsequentRequests.js +199 -0
- package/build/endpoints/next_js/client_subsequentRequests.js.map +1 -0
- package/build/endpoints/next_js/getWebpacks.js +45 -0
- package/build/endpoints/next_js/getWebpacks.js.map +1 -0
- package/build/globalConfig.js +11 -0
- package/build/globalConfig.js.map +1 -0
- package/build/index.js +166 -0
- package/build/index.js.map +1 -0
- package/build/lazyLoad/downloadFilesUtil.js +128 -0
- package/build/lazyLoad/downloadFilesUtil.js.map +1 -0
- package/build/lazyLoad/downloadLoadedJsUtil.js +51 -0
- package/build/lazyLoad/downloadLoadedJsUtil.js.map +1 -0
- package/build/lazyLoad/globals.js +25 -0
- package/build/lazyLoad/globals.js.map +1 -0
- package/build/lazyLoad/index.js +171 -0
- package/build/lazyLoad/index.js.map +1 -0
- package/build/lazyLoad/next_js/next_GetJSScript.js +94 -0
- package/build/lazyLoad/next_js/next_GetJSScript.js.map +1 -0
- package/build/lazyLoad/next_js/next_GetLazyResources.js +202 -0
- package/build/lazyLoad/next_js/next_GetLazyResources.js.map +1 -0
- package/build/lazyLoad/next_js/next_SubsequentRequests.js +120 -0
- package/build/lazyLoad/next_js/next_SubsequentRequests.js.map +1 -0
- package/build/lazyLoad/nuxt_js/nuxt_astParse.js +188 -0
- package/build/lazyLoad/nuxt_js/nuxt_astParse.js.map +1 -0
- package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +75 -0
- package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js.map +1 -0
- package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +94 -0
- package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js.map +1 -0
- package/build/lazyLoad/svelte/svelte_getFromPageSource.js +68 -0
- package/build/lazyLoad/svelte/svelte_getFromPageSource.js.map +1 -0
- package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js +95 -0
- package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js.map +1 -0
- package/build/map/index.js +58 -0
- package/build/map/index.js.map +1 -0
- package/build/map/next_js/getFetchInstances.js +105 -0
- package/build/map/next_js/getFetchInstances.js.map +1 -0
- package/build/map/next_js/getWebpackConnections.js +224 -0
- package/build/map/next_js/getWebpackConnections.js.map +1 -0
- package/build/map/next_js/interactive.js +32 -0
- package/build/map/next_js/interactive.js.map +1 -0
- package/build/map/next_js/interactive_helpers/commandHandler.js +190 -0
- package/build/map/next_js/interactive_helpers/commandHandler.js.map +1 -0
- package/build/map/next_js/interactive_helpers/commandHelpers.js +91 -0
- package/build/map/next_js/interactive_helpers/commandHelpers.js.map +1 -0
- package/build/map/next_js/interactive_helpers/helpMenu.js +11 -0
- package/build/map/next_js/interactive_helpers/helpMenu.js.map +1 -0
- package/build/map/next_js/interactive_helpers/keybindings.js +80 -0
- package/build/map/next_js/interactive_helpers/keybindings.js.map +1 -0
- package/build/map/next_js/interactive_helpers/printer.js +17 -0
- package/build/map/next_js/interactive_helpers/printer.js.map +1 -0
- package/build/map/next_js/interactive_helpers/ui.js +81 -0
- package/build/map/next_js/interactive_helpers/ui.js.map +1 -0
- package/build/map/next_js/resolveFetch.js +201 -0
- package/build/map/next_js/resolveFetch.js.map +1 -0
- package/build/run/index.js +62 -0
- package/build/run/index.js.map +1 -0
- package/build/strings/index.js +235 -0
- package/build/strings/index.js.map +1 -0
- package/build/strings/openapi.js +55 -0
- package/build/strings/openapi.js.map +1 -0
- package/build/strings/permutate.js +55 -0
- package/build/strings/permutate.js.map +1 -0
- package/build/strings/secrets.js +89 -0
- package/build/strings/secrets.js.map +1 -0
- package/build/techDetect/index.js +224 -0
- package/build/techDetect/index.js.map +1 -0
- package/build/utility/ai.js +69 -0
- package/build/utility/ai.js.map +1 -0
- package/build/utility/globals.js +84 -0
- package/build/utility/globals.js.map +1 -0
- package/build/utility/interfaces.js +2 -0
- package/build/utility/interfaces.js.map +1 -0
- package/build/utility/makeReq.js +265 -0
- package/build/utility/makeReq.js.map +1 -0
- package/build/utility/resolvePath.js +44 -0
- package/build/utility/resolvePath.js.map +1 -0
- package/{utility → build/utility}/runSandboxed.js +10 -13
- package/build/utility/runSandboxed.js.map +1 -0
- package/{utility → build/utility}/urlUtils.js +9 -11
- package/build/utility/urlUtils.js.map +1 -0
- package/docs/README.md +20 -0
- package/docs/api-gateway.md +68 -0
- package/docs/endpoints.md +49 -0
- package/docs/example-scenario.md +258 -0
- package/docs/interactive-mode.md +76 -0
- package/docs/lazyload.md +56 -0
- package/docs/map.md +53 -0
- package/docs/run.md +54 -0
- package/docs/strings.md +75 -0
- package/endpoints.json +77 -0
- package/extracted_urls-openapi.json +225 -0
- package/extracted_urls-swagger.json +225 -0
- package/extracted_urls.json +47 -0
- package/extracted_urls.txt +296 -0
- package/mapped.json +3413 -0
- package/output/ss0x00.com/_next/data/k7xKVnxmboK4SktY2dZWt/index.json +971 -0
- package/output/ss0x00.com/_next/static/chunks/12.7e6d2ac6e1808fc2.js +247 -0
- package/output/ss0x00.com/_next/static/chunks/128.160aa801ef0445bc.js +1074 -0
- package/output/ss0x00.com/_next/static/chunks/132.55df84f7707fc278.js +102 -0
- package/output/ss0x00.com/_next/static/chunks/142.77038c55d9ec10ba.js +96 -0
- package/output/ss0x00.com/_next/static/chunks/215.321479e91d330bfa.js +228 -0
- package/output/ss0x00.com/_next/static/chunks/229.097c396d86b4a882.js +458 -0
- package/output/ss0x00.com/_next/static/chunks/257.5fd052aa4ef06ef9.js +1327 -0
- package/output/ss0x00.com/_next/static/chunks/268.72cb3779f66db70b.js +10520 -0
- package/output/ss0x00.com/_next/static/chunks/320.57d528b0e9bf86f0.js +186 -0
- package/output/ss0x00.com/_next/static/chunks/325.302a44b604c35f17.js +88 -0
- package/output/ss0x00.com/_next/static/chunks/328.e4a0307a4fddf318.js +248 -0
- package/output/ss0x00.com/_next/static/chunks/432.3621f17504ef18f2.js +443 -0
- package/output/ss0x00.com/_next/static/chunks/44.e90dd963003a3d43.js +1094 -0
- package/output/ss0x00.com/_next/static/chunks/442.8c054f100f9e5e50.js +1082 -0
- package/output/ss0x00.com/_next/static/chunks/460.f8db9a5142598e2c.js +466 -0
- package/output/ss0x00.com/_next/static/chunks/487.05ca55420459c002.js +78 -0
- package/output/ss0x00.com/_next/static/chunks/567.1909a6b0a920114b.js +1374 -0
- package/output/ss0x00.com/_next/static/chunks/586.802fc9214d87fb29.js +752 -0
- package/output/ss0x00.com/_next/static/chunks/620.a2a3a6b94d30a4c8.js +1037 -0
- package/output/ss0x00.com/_next/static/chunks/642.6b3e487c9604cbb8.js +1628 -0
- package/output/ss0x00.com/_next/static/chunks/673.e5d77887e5c6a68c.js +1045 -0
- package/output/ss0x00.com/_next/static/chunks/684.8b8e52baca70524b.js +96 -0
- package/output/ss0x00.com/_next/static/chunks/686.79480519e5ccfb77.js +296 -0
- package/output/ss0x00.com/_next/static/chunks/756.7a3878a2e6765be7.js +504 -0
- package/output/ss0x00.com/_next/static/chunks/761.7bea7516c5d22b2a.js +1485 -0
- package/output/ss0x00.com/_next/static/chunks/794.e079ef369b41a3c5.js +1350 -0
- package/output/ss0x00.com/_next/static/chunks/826.31ba213e1d023c68.js +1031 -0
- package/output/ss0x00.com/_next/static/chunks/847.d8397a73efc81848.js +1068 -0
- package/output/ss0x00.com/_next/static/chunks/848.5feaeee1e2624aea.js +132 -0
- package/output/ss0x00.com/_next/static/chunks/850.ecc7c3c3d787ee03.js +1472 -0
- package/output/ss0x00.com/_next/static/chunks/853.50b9eb60b7d0e83c.js +1472 -0
- package/output/ss0x00.com/_next/static/chunks/856.7a7bb6c3c7bfc2ba.js +1320 -0
- package/output/ss0x00.com/_next/static/chunks/859.df4bd45c03a65f53.js +1306 -0
- package/output/ss0x00.com/_next/static/chunks/867.e8633955a147c978.js +541 -0
- package/output/ss0x00.com/_next/static/chunks/921.c3123f20a4c8d53c.js +96 -0
- package/output/ss0x00.com/_next/static/chunks/932.25cb421c466c99cb.js +999 -0
- package/output/ss0x00.com/_next/static/chunks/framework-64ad27b21261a9ce.js +9189 -0
- package/output/ss0x00.com/_next/static/chunks/main-710ab85aa9a8f10d.js +6583 -0
- package/output/ss0x00.com/_next/static/chunks/pages/5D-af5a23529ce3c337.js +486 -0
- package/output/ss0x00.com/_next/static/chunks/pages/_app-c449865c8af1faa0.js +39 -0
- package/output/ss0x00.com/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js +6383 -0
- package/output/ss0x00.com/_next/static/chunks/webpack-efff35ee26971294.js +271 -0
- package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_buildManifest.js +8 -0
- package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_ssgManifest.js +3 -0
- package/output/ss0x00.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js +82 -0
- package/package.json +50 -38
- package/strings.json +7407 -0
- package/api_gateway/checkFeasibility.js +0 -25
- package/api_gateway/checkFireWallBlocking.js +0 -17
- package/api_gateway/genReq.js +0 -214
- package/api_gateway/index.js +0 -325
- package/endpoints/index.js +0 -7
- package/globalConfig.js +0 -12
- package/index.js +0 -69
- package/lazyLoad/downloadFilesUtil.js +0 -122
- package/lazyLoad/downloadLoadedJsUtil.js +0 -54
- package/lazyLoad/globals.js +0 -15
- package/lazyLoad/index.js +0 -167
- package/lazyLoad/next_js/next_GetJSScript.js +0 -99
- package/lazyLoad/next_js/next_GetLazyResources.js +0 -201
- package/lazyLoad/next_js/next_SubsequentRequests.js +0 -138
- package/lazyLoad/nuxt_js/nuxt_astParse.js +0 -194
- package/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +0 -77
- package/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +0 -99
- package/research/firewall_bypass.md +0 -38
- package/research/next_js.md +0 -116
- package/research/nuxt_js.md +0 -125
- package/research/vue_js.md +0 -9
- package/strings/index.js +0 -145
- package/techDetect/index.js +0 -156
- package/utility/globals.js +0 -6
- package/utility/makeReq.js +0 -179
- package/utility/resolvePath.js +0 -43
|
@@ -0,0 +1,752 @@
|
|
|
1
|
+
// JS Source: https://ss0x00.com/_next/static/chunks/586.802fc9214d87fb29.js
|
|
2
|
+
"use strict";
|
|
3
|
+
(self.webpackChunk_N_E = self.webpackChunk_N_E || []).push([
|
|
4
|
+
[586],
|
|
5
|
+
{
|
|
6
|
+
8154: function (e, l, n) {
|
|
7
|
+
n.d(l, {
|
|
8
|
+
aU: function () {
|
|
9
|
+
return r.Z;
|
|
10
|
+
},
|
|
11
|
+
Xd: function () {
|
|
12
|
+
return c;
|
|
13
|
+
},
|
|
14
|
+
rU: function () {
|
|
15
|
+
return o.Z;
|
|
16
|
+
},
|
|
17
|
+
g_: function () {
|
|
18
|
+
return x;
|
|
19
|
+
},
|
|
20
|
+
});
|
|
21
|
+
var r = n(7603),
|
|
22
|
+
t = n(5893);
|
|
23
|
+
n(7294);
|
|
24
|
+
var s = n(3967),
|
|
25
|
+
a = n.n(s),
|
|
26
|
+
i = n(9754);
|
|
27
|
+
function c(e) {
|
|
28
|
+
let {
|
|
29
|
+
url: l,
|
|
30
|
+
className: n,
|
|
31
|
+
backgroundSize: r,
|
|
32
|
+
backgroundPosition: s,
|
|
33
|
+
backgroundRepeat: c,
|
|
34
|
+
opacity: o,
|
|
35
|
+
} = e;
|
|
36
|
+
return l
|
|
37
|
+
? (0, t.jsx)("div", {
|
|
38
|
+
className: a()(
|
|
39
|
+
"fixed",
|
|
40
|
+
"inset-0",
|
|
41
|
+
(0, i.G)({
|
|
42
|
+
backgroundSize: null != r ? r : "cover",
|
|
43
|
+
backgroundPosition: null != s ? s : "center",
|
|
44
|
+
backgroundRepeat: null != c ? c : "no-repeat",
|
|
45
|
+
}),
|
|
46
|
+
n,
|
|
47
|
+
),
|
|
48
|
+
style: {
|
|
49
|
+
backgroundImage: "url('".concat(l, "')"),
|
|
50
|
+
opacity: (null != o ? o : 100) * 0.01,
|
|
51
|
+
},
|
|
52
|
+
})
|
|
53
|
+
: null;
|
|
54
|
+
}
|
|
55
|
+
var o = n(4377),
|
|
56
|
+
d = n(3435),
|
|
57
|
+
u = n(6880);
|
|
58
|
+
function x(e) {
|
|
59
|
+
let {
|
|
60
|
+
elementId: l,
|
|
61
|
+
className: n,
|
|
62
|
+
label: r,
|
|
63
|
+
altText: s,
|
|
64
|
+
url: i,
|
|
65
|
+
icon: c = "facebook",
|
|
66
|
+
} = e,
|
|
67
|
+
x = d.q[c];
|
|
68
|
+
return (0, t.jsx)(u.M, {
|
|
69
|
+
content: e,
|
|
70
|
+
children: (0, t.jsxs)(o.Z, {
|
|
71
|
+
href: i,
|
|
72
|
+
"aria-label": s,
|
|
73
|
+
id: l || null,
|
|
74
|
+
className: a()(
|
|
75
|
+
"sb-component",
|
|
76
|
+
"sb-component-block",
|
|
77
|
+
"sb-component-social",
|
|
78
|
+
n,
|
|
79
|
+
),
|
|
80
|
+
children: [
|
|
81
|
+
r && (0, t.jsx)("span", { className: "sr-only", children: r }),
|
|
82
|
+
x && (0, t.jsx)(x, { className: "fill-current h-5 w-5" }),
|
|
83
|
+
],
|
|
84
|
+
}),
|
|
85
|
+
});
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
7586: function (e, l, n) {
|
|
89
|
+
n.d(l, {
|
|
90
|
+
Z: function () {
|
|
91
|
+
return z;
|
|
92
|
+
},
|
|
93
|
+
});
|
|
94
|
+
var r = n(5893),
|
|
95
|
+
t = n(7294),
|
|
96
|
+
s = n(9008),
|
|
97
|
+
a = n.n(s),
|
|
98
|
+
i = n(3967),
|
|
99
|
+
c = n.n(i),
|
|
100
|
+
o = n(1163),
|
|
101
|
+
d = n(8154),
|
|
102
|
+
u = n(487);
|
|
103
|
+
function x(e) {
|
|
104
|
+
let { className: l } = e;
|
|
105
|
+
return (0, r.jsx)("svg", {
|
|
106
|
+
className: l,
|
|
107
|
+
viewBox: "0 0 24 24",
|
|
108
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
109
|
+
children: (0, r.jsx)("path", {
|
|
110
|
+
d: "M5.293 6.707l5.293 5.293-5.293 5.293c-0.391 0.391-0.391 1.024 0 1.414s1.024 0.391 1.414 0l5.293-5.293 5.293 5.293c0.391 0.391 1.024 0.391 1.414 0s0.391-1.024 0-1.414l-5.293-5.293 5.293-5.293c0.391-0.391 0.391-1.024 0-1.414s-1.024-0.391-1.414 0l-5.293 5.293-5.293-5.293c-0.391-0.391-1.024-0.391-1.414 0s-0.391 1.024 0 1.414z",
|
|
111
|
+
}),
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
function m(e) {
|
|
115
|
+
let { className: l } = e;
|
|
116
|
+
return (0, r.jsx)("svg", {
|
|
117
|
+
className: l,
|
|
118
|
+
viewBox: "0 0 24 24",
|
|
119
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
120
|
+
children: (0, r.jsx)("path", {
|
|
121
|
+
d: "M3 13h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 7h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1zM3 19h18c0.552 0 1-0.448 1-1s-0.448-1-1-1h-18c-0.552 0-1 0.448-1 1s0.448 1 1 1z",
|
|
122
|
+
}),
|
|
123
|
+
});
|
|
124
|
+
}
|
|
125
|
+
function h(e) {
|
|
126
|
+
var l, n;
|
|
127
|
+
let {
|
|
128
|
+
headerVariant: t,
|
|
129
|
+
isSticky: s,
|
|
130
|
+
title: a,
|
|
131
|
+
isTitleVisible: i,
|
|
132
|
+
logo: o,
|
|
133
|
+
primaryLinks: u = [],
|
|
134
|
+
socialLinks: x = [],
|
|
135
|
+
styles: m = {},
|
|
136
|
+
} = e,
|
|
137
|
+
h =
|
|
138
|
+
null !==
|
|
139
|
+
(n = null === (l = m.self) || void 0 === l ? void 0 : l.width) &&
|
|
140
|
+
void 0 !== n
|
|
141
|
+
? n
|
|
142
|
+
: "narrow";
|
|
143
|
+
return (0, r.jsx)("header", {
|
|
144
|
+
className: c()(
|
|
145
|
+
"sb-component",
|
|
146
|
+
"sb-component-header",
|
|
147
|
+
s ? "sticky top-0 z-10" : "relative",
|
|
148
|
+
"border-b",
|
|
149
|
+
"border-current",
|
|
150
|
+
),
|
|
151
|
+
children: (0, r.jsxs)("div", {
|
|
152
|
+
className: c()(
|
|
153
|
+
"mx-auto",
|
|
154
|
+
(function (e) {
|
|
155
|
+
switch (e) {
|
|
156
|
+
case "narrow":
|
|
157
|
+
return "max-w-7xl";
|
|
158
|
+
case "wide":
|
|
159
|
+
return "max-w-screen-2xl";
|
|
160
|
+
case "full":
|
|
161
|
+
return "max-w-full";
|
|
162
|
+
default:
|
|
163
|
+
return null;
|
|
164
|
+
}
|
|
165
|
+
})(h),
|
|
166
|
+
{
|
|
167
|
+
"xl:border-l xl:border-r border-current": "narrow" === h,
|
|
168
|
+
"2xl:border-l 2xl:border-r border-current": "wide" === h,
|
|
169
|
+
},
|
|
170
|
+
),
|
|
171
|
+
children: [
|
|
172
|
+
(0, r.jsx)(d.rU, {
|
|
173
|
+
href: "#main",
|
|
174
|
+
className: "sr-only",
|
|
175
|
+
children: "Skip to main content",
|
|
176
|
+
}),
|
|
177
|
+
(0, r.jsx)(f, {
|
|
178
|
+
variant: t,
|
|
179
|
+
title: a,
|
|
180
|
+
isTitleVisible: i,
|
|
181
|
+
logo: o,
|
|
182
|
+
primaryLinks: u,
|
|
183
|
+
socialLinks: x,
|
|
184
|
+
}),
|
|
185
|
+
],
|
|
186
|
+
}),
|
|
187
|
+
});
|
|
188
|
+
}
|
|
189
|
+
function f(e) {
|
|
190
|
+
let { variant: l = "variant-a", ...n } = e;
|
|
191
|
+
switch (l) {
|
|
192
|
+
case "variant-a":
|
|
193
|
+
return (0, r.jsx)(j, { ...n });
|
|
194
|
+
case "variant-b":
|
|
195
|
+
return (0, r.jsx)(p, { ...n });
|
|
196
|
+
case "variant-c":
|
|
197
|
+
return (0, r.jsx)(b, { ...n });
|
|
198
|
+
default:
|
|
199
|
+
return null;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
function j(e) {
|
|
203
|
+
let { primaryLinks: l = [], socialLinks: n = [], ...t } = e;
|
|
204
|
+
return (0, r.jsxs)("div", {
|
|
205
|
+
className: "flex items-stretch relative",
|
|
206
|
+
children: [
|
|
207
|
+
(0, r.jsx)(g, { ...t }),
|
|
208
|
+
l.length > 0 &&
|
|
209
|
+
(0, r.jsx)("ul", {
|
|
210
|
+
className:
|
|
211
|
+
"hidden lg:flex divide-x divide-current border-r border-current",
|
|
212
|
+
children: (0, r.jsx)(N, { links: l, inMobileMenu: !1 }),
|
|
213
|
+
}),
|
|
214
|
+
n.length > 0 &&
|
|
215
|
+
(0, r.jsx)("ul", {
|
|
216
|
+
className: "hidden lg:flex border-l border-current ml-auto",
|
|
217
|
+
children: (0, r.jsx)(w, { links: n, inMobileMenu: !1 }),
|
|
218
|
+
}),
|
|
219
|
+
(l.length > 0 || n.length > 0) && (0, r.jsx)(v, { ...e }),
|
|
220
|
+
],
|
|
221
|
+
});
|
|
222
|
+
}
|
|
223
|
+
function p(e) {
|
|
224
|
+
let { primaryLinks: l = [], socialLinks: n = [], ...t } = e;
|
|
225
|
+
return (0, r.jsxs)("div", {
|
|
226
|
+
className: "flex items-stretch relative",
|
|
227
|
+
children: [
|
|
228
|
+
(0, r.jsx)(g, { ...t }),
|
|
229
|
+
l.length > 0 &&
|
|
230
|
+
(0, r.jsx)("ul", {
|
|
231
|
+
className:
|
|
232
|
+
"hidden lg:flex border-l border-current divide-x divide-current ml-auto",
|
|
233
|
+
children: (0, r.jsx)(N, { links: l, inMobileMenu: !1 }),
|
|
234
|
+
}),
|
|
235
|
+
n.length > 0 &&
|
|
236
|
+
(0, r.jsx)("ul", {
|
|
237
|
+
className: c()(
|
|
238
|
+
"hidden",
|
|
239
|
+
"lg:flex",
|
|
240
|
+
"border-l",
|
|
241
|
+
"border-current",
|
|
242
|
+
{ "ml-auto": 0 === l.length },
|
|
243
|
+
),
|
|
244
|
+
children: (0, r.jsx)(w, { links: n, inMobileMenu: !1 }),
|
|
245
|
+
}),
|
|
246
|
+
(l.length > 0 || n.length > 0) && (0, r.jsx)(v, { ...e }),
|
|
247
|
+
],
|
|
248
|
+
});
|
|
249
|
+
}
|
|
250
|
+
function b(e) {
|
|
251
|
+
let { primaryLinks: l = [], socialLinks: n = [], ...t } = e;
|
|
252
|
+
return (0, r.jsxs)("div", {
|
|
253
|
+
className: "flex items-stretch relative",
|
|
254
|
+
children: [
|
|
255
|
+
(0, r.jsx)(g, { ...t }),
|
|
256
|
+
n.length > 0 &&
|
|
257
|
+
(0, r.jsx)("ul", {
|
|
258
|
+
className: "hidden lg:flex border-l border-current ml-auto",
|
|
259
|
+
children: (0, r.jsx)(w, { links: n, inMobileMenu: !1 }),
|
|
260
|
+
}),
|
|
261
|
+
l.length > 0 &&
|
|
262
|
+
(0, r.jsx)("ul", {
|
|
263
|
+
className: c()(
|
|
264
|
+
"hidden",
|
|
265
|
+
"lg:flex",
|
|
266
|
+
"border-l",
|
|
267
|
+
"border-current",
|
|
268
|
+
"divide-x",
|
|
269
|
+
"divide-current",
|
|
270
|
+
{ "ml-auto": 0 === l.length },
|
|
271
|
+
),
|
|
272
|
+
children: (0, r.jsx)(N, { links: l, inMobileMenu: !1 }),
|
|
273
|
+
}),
|
|
274
|
+
(l.length > 0 || n.length > 0) && (0, r.jsx)(v, { ...e }),
|
|
275
|
+
],
|
|
276
|
+
});
|
|
277
|
+
}
|
|
278
|
+
function v(e) {
|
|
279
|
+
let { primaryLinks: l = [], socialLinks: n = [], ...s } = e,
|
|
280
|
+
[a, i] = (0, t.useState)(!1),
|
|
281
|
+
d = (0, o.useRouter)();
|
|
282
|
+
return (
|
|
283
|
+
(0, t.useEffect)(() => {
|
|
284
|
+
let e = () => {
|
|
285
|
+
i(!1);
|
|
286
|
+
};
|
|
287
|
+
return (
|
|
288
|
+
d.events.on("routeChangeStart", e),
|
|
289
|
+
() => {
|
|
290
|
+
d.events.off("routeChangeStart", e);
|
|
291
|
+
}
|
|
292
|
+
);
|
|
293
|
+
}, [d.events]),
|
|
294
|
+
(0, r.jsxs)("div", {
|
|
295
|
+
className: "ml-auto lg:hidden",
|
|
296
|
+
children: [
|
|
297
|
+
(0, r.jsxs)("button", {
|
|
298
|
+
"aria-label": "Open Menu",
|
|
299
|
+
className:
|
|
300
|
+
"border-l border-current h-10 min-h-full p-4 focus:outline-none",
|
|
301
|
+
onClick: () => i(!0),
|
|
302
|
+
children: [
|
|
303
|
+
(0, r.jsx)("span", {
|
|
304
|
+
className: "sr-only",
|
|
305
|
+
children: "Open Menu",
|
|
306
|
+
}),
|
|
307
|
+
(0, r.jsx)(m, { className: "fill-current h-6 w-6" }),
|
|
308
|
+
],
|
|
309
|
+
}),
|
|
310
|
+
(0, r.jsx)("div", {
|
|
311
|
+
className: c()(
|
|
312
|
+
"sb-header-overlay",
|
|
313
|
+
"fixed",
|
|
314
|
+
"inset-0",
|
|
315
|
+
"overflow-y-auto",
|
|
316
|
+
"z-20",
|
|
317
|
+
a ? "block" : "hidden",
|
|
318
|
+
),
|
|
319
|
+
children: (0, r.jsxs)("div", {
|
|
320
|
+
className: "flex flex-col min-h-full",
|
|
321
|
+
children: [
|
|
322
|
+
(0, r.jsxs)("div", {
|
|
323
|
+
className:
|
|
324
|
+
"border-b border-current flex items-stretch justify-between",
|
|
325
|
+
children: [
|
|
326
|
+
(0, r.jsx)(g, { ...s }),
|
|
327
|
+
(0, r.jsx)("div", {
|
|
328
|
+
className: "border-l border-current",
|
|
329
|
+
children: (0, r.jsx)("button", {
|
|
330
|
+
"aria-label": "Close Menu",
|
|
331
|
+
className: "h-10 min-h-full p-4 focus:outline-none",
|
|
332
|
+
onClick: () => i(!1),
|
|
333
|
+
children: (0, r.jsx)(x, {
|
|
334
|
+
className: "fill-current h-6 w-6",
|
|
335
|
+
}),
|
|
336
|
+
}),
|
|
337
|
+
}),
|
|
338
|
+
],
|
|
339
|
+
}),
|
|
340
|
+
(l.length > 0 || n.length > 0) &&
|
|
341
|
+
(0, r.jsxs)("div", {
|
|
342
|
+
className:
|
|
343
|
+
"flex flex-col justify-center grow px-4 py-20 space-y-12",
|
|
344
|
+
children: [
|
|
345
|
+
l.length > 0 &&
|
|
346
|
+
(0, r.jsx)("ul", {
|
|
347
|
+
className: "space-y-6",
|
|
348
|
+
children: (0, r.jsx)(N, {
|
|
349
|
+
links: l,
|
|
350
|
+
inMobileMenu: !0,
|
|
351
|
+
}),
|
|
352
|
+
}),
|
|
353
|
+
n.length > 0 &&
|
|
354
|
+
(0, r.jsx)("ul", {
|
|
355
|
+
className: "flex flex-wrap justify-center",
|
|
356
|
+
children: (0, r.jsx)(w, {
|
|
357
|
+
links: n,
|
|
358
|
+
inMobileMenu: !0,
|
|
359
|
+
}),
|
|
360
|
+
}),
|
|
361
|
+
],
|
|
362
|
+
}),
|
|
363
|
+
],
|
|
364
|
+
}),
|
|
365
|
+
}),
|
|
366
|
+
],
|
|
367
|
+
})
|
|
368
|
+
);
|
|
369
|
+
}
|
|
370
|
+
function g(e) {
|
|
371
|
+
let { title: l, isTitleVisible: n, logo: t } = e;
|
|
372
|
+
return t || (l && n)
|
|
373
|
+
? (0, r.jsx)("div", {
|
|
374
|
+
className: "border-r border-current flex items-center",
|
|
375
|
+
children: (0, r.jsxs)(d.rU, {
|
|
376
|
+
href: "/",
|
|
377
|
+
className: "sb-header-logo flex items-center h-full p-4",
|
|
378
|
+
children: [
|
|
379
|
+
t &&
|
|
380
|
+
(0, r.jsx)(u.default, {
|
|
381
|
+
...t,
|
|
382
|
+
className: c()("max-h-12", { "mr-2": n }),
|
|
383
|
+
}),
|
|
384
|
+
l &&
|
|
385
|
+
n &&
|
|
386
|
+
(0, r.jsx)("span", {
|
|
387
|
+
className: "text-base tracking-widest uppercase",
|
|
388
|
+
children: l,
|
|
389
|
+
}),
|
|
390
|
+
],
|
|
391
|
+
}),
|
|
392
|
+
})
|
|
393
|
+
: null;
|
|
394
|
+
}
|
|
395
|
+
function N(e) {
|
|
396
|
+
let { links: l, inMobileMenu: n } = e;
|
|
397
|
+
return l.map((e, l) =>
|
|
398
|
+
(0, r.jsx)(
|
|
399
|
+
"li",
|
|
400
|
+
{
|
|
401
|
+
className: c()(
|
|
402
|
+
n ? "text-center w-full" : "inline-flex items-stretch",
|
|
403
|
+
),
|
|
404
|
+
children: (0, r.jsx)(d.aU, {
|
|
405
|
+
...e,
|
|
406
|
+
className: c()(
|
|
407
|
+
n ? "text-xl" : "sb-component-link-fill p-4",
|
|
408
|
+
"font-normal",
|
|
409
|
+
"text-base",
|
|
410
|
+
"tracking-widest",
|
|
411
|
+
"uppercase",
|
|
412
|
+
),
|
|
413
|
+
}),
|
|
414
|
+
},
|
|
415
|
+
l,
|
|
416
|
+
),
|
|
417
|
+
);
|
|
418
|
+
}
|
|
419
|
+
function w(e) {
|
|
420
|
+
let { links: l, inMobileMenu: n = !1 } = e;
|
|
421
|
+
return l.map((e, l) =>
|
|
422
|
+
(0, r.jsx)(
|
|
423
|
+
"li",
|
|
424
|
+
{
|
|
425
|
+
className: c()(
|
|
426
|
+
n
|
|
427
|
+
? "border border-current -ml-px -mt-px"
|
|
428
|
+
: "inline-flex items-stretch",
|
|
429
|
+
),
|
|
430
|
+
children: (0, r.jsx)(d.g_, {
|
|
431
|
+
...e,
|
|
432
|
+
className: c()(
|
|
433
|
+
"sb-component-social-fill",
|
|
434
|
+
"text-base",
|
|
435
|
+
n ? "p-5" : "p-4",
|
|
436
|
+
),
|
|
437
|
+
}),
|
|
438
|
+
},
|
|
439
|
+
l,
|
|
440
|
+
),
|
|
441
|
+
);
|
|
442
|
+
}
|
|
443
|
+
var k = n(5576);
|
|
444
|
+
function M(e) {
|
|
445
|
+
var l, n, t, s;
|
|
446
|
+
let {
|
|
447
|
+
primaryLinks: a = [],
|
|
448
|
+
contacts: i,
|
|
449
|
+
copyrightText: o,
|
|
450
|
+
styles: u = {},
|
|
451
|
+
} = e;
|
|
452
|
+
return (0, r.jsx)("footer", {
|
|
453
|
+
className: c()(
|
|
454
|
+
"sb-component",
|
|
455
|
+
"sb-component-footer",
|
|
456
|
+
null !==
|
|
457
|
+
(t =
|
|
458
|
+
null === (l = u.self) || void 0 === l ? void 0 : l.padding) &&
|
|
459
|
+
void 0 !== t
|
|
460
|
+
? t
|
|
461
|
+
: "py-16 px-4",
|
|
462
|
+
),
|
|
463
|
+
children: (0, r.jsx)("div", {
|
|
464
|
+
className: c()(
|
|
465
|
+
"border-t-2",
|
|
466
|
+
"border-current",
|
|
467
|
+
"mx-auto",
|
|
468
|
+
(function (e) {
|
|
469
|
+
switch (e) {
|
|
470
|
+
case "narrow":
|
|
471
|
+
return "max-w-7xl";
|
|
472
|
+
case "wide":
|
|
473
|
+
return "max-w-screen-2xl";
|
|
474
|
+
case "full":
|
|
475
|
+
return "max-w-full";
|
|
476
|
+
default:
|
|
477
|
+
return null;
|
|
478
|
+
}
|
|
479
|
+
})(
|
|
480
|
+
null !==
|
|
481
|
+
(s =
|
|
482
|
+
null === (n = u.self) || void 0 === n ? void 0 : n.width) &&
|
|
483
|
+
void 0 !== s
|
|
484
|
+
? s
|
|
485
|
+
: "narrow",
|
|
486
|
+
),
|
|
487
|
+
),
|
|
488
|
+
children: (0, r.jsxs)("div", {
|
|
489
|
+
className: "flex flex-col md:flex-row md:flex-wrap",
|
|
490
|
+
children: [
|
|
491
|
+
a.length > 0 &&
|
|
492
|
+
(0, r.jsx)("div", {
|
|
493
|
+
className: c()("mt-6", i ? "w-full" : "md:mr-auto"),
|
|
494
|
+
children: (0, r.jsx)("ul", {
|
|
495
|
+
className: "flex flex-wrap max-w-5xl text-lg",
|
|
496
|
+
children: a.map((e, l) =>
|
|
497
|
+
(0, r.jsx)(
|
|
498
|
+
"li",
|
|
499
|
+
{
|
|
500
|
+
className: "mr-8 mt-2",
|
|
501
|
+
children: (0, r.jsx)(d.aU, { ...e }),
|
|
502
|
+
},
|
|
503
|
+
l,
|
|
504
|
+
),
|
|
505
|
+
),
|
|
506
|
+
}),
|
|
507
|
+
}),
|
|
508
|
+
i &&
|
|
509
|
+
(0, r.jsx)(y, {
|
|
510
|
+
...i,
|
|
511
|
+
className: c()(
|
|
512
|
+
"text-lg",
|
|
513
|
+
"space-y-4",
|
|
514
|
+
"md:max-w-3xl",
|
|
515
|
+
"md:mr-auto",
|
|
516
|
+
"md:pr-12",
|
|
517
|
+
a.length > 0 ? "mt-12 md:mt-32" : "mt-8",
|
|
518
|
+
),
|
|
519
|
+
}),
|
|
520
|
+
o &&
|
|
521
|
+
(0, r.jsx)("div", {
|
|
522
|
+
className: c()(
|
|
523
|
+
"mt-8",
|
|
524
|
+
a.length > 0 || i ? "md:self-end" : null,
|
|
525
|
+
),
|
|
526
|
+
children: (0, r.jsx)(k.ZP, {
|
|
527
|
+
options: {
|
|
528
|
+
forceInline: !0,
|
|
529
|
+
forceWrapper: !0,
|
|
530
|
+
wrapper: "p",
|
|
531
|
+
},
|
|
532
|
+
className:
|
|
533
|
+
"sb-markdown text-sm tracking-widest uppercase",
|
|
534
|
+
children: o,
|
|
535
|
+
}),
|
|
536
|
+
}),
|
|
537
|
+
],
|
|
538
|
+
}),
|
|
539
|
+
}),
|
|
540
|
+
});
|
|
541
|
+
}
|
|
542
|
+
function y(e) {
|
|
543
|
+
let {
|
|
544
|
+
phoneNumber: l,
|
|
545
|
+
phoneAltText: n,
|
|
546
|
+
email: t,
|
|
547
|
+
emailAltText: s,
|
|
548
|
+
address: a,
|
|
549
|
+
addressAltText: i,
|
|
550
|
+
elementId: c,
|
|
551
|
+
className: o,
|
|
552
|
+
} = e;
|
|
553
|
+
return (0, r.jsxs)("div", {
|
|
554
|
+
id: c || null,
|
|
555
|
+
className: o,
|
|
556
|
+
children: [
|
|
557
|
+
l &&
|
|
558
|
+
(0, r.jsx)("p", {
|
|
559
|
+
children: (0, r.jsx)("a", {
|
|
560
|
+
className: "underline hover:no-underline",
|
|
561
|
+
href: "tel:".concat(l),
|
|
562
|
+
"aria-label": n,
|
|
563
|
+
children: l,
|
|
564
|
+
}),
|
|
565
|
+
}),
|
|
566
|
+
t &&
|
|
567
|
+
(0, r.jsx)("p", {
|
|
568
|
+
children: (0, r.jsx)("a", {
|
|
569
|
+
className: "underline hover:no-underline",
|
|
570
|
+
href: "mailto:".concat(t),
|
|
571
|
+
"aria-label": s,
|
|
572
|
+
children: t,
|
|
573
|
+
}),
|
|
574
|
+
}),
|
|
575
|
+
a &&
|
|
576
|
+
(0, r.jsx)("p", {
|
|
577
|
+
children: (0, r.jsx)("a", {
|
|
578
|
+
className: "underline hover:no-underline",
|
|
579
|
+
href: "https://www.google.com/maps/search/".concat(
|
|
580
|
+
encodeURIComponent(a),
|
|
581
|
+
),
|
|
582
|
+
"aria-label": i,
|
|
583
|
+
target: "_blank",
|
|
584
|
+
rel: "noopener noreferrer",
|
|
585
|
+
children: a,
|
|
586
|
+
}),
|
|
587
|
+
}),
|
|
588
|
+
],
|
|
589
|
+
});
|
|
590
|
+
}
|
|
591
|
+
function I(e, l) {
|
|
592
|
+
let n = e.metaTitle ? e.metaTitle : e.title;
|
|
593
|
+
return (
|
|
594
|
+
l.titleSuffix &&
|
|
595
|
+
!1 !== e.addTitleSuffix &&
|
|
596
|
+
(n = "".concat(n, " - ").concat(l.titleSuffix)),
|
|
597
|
+
n
|
|
598
|
+
);
|
|
599
|
+
}
|
|
600
|
+
function _(e, l) {
|
|
601
|
+
var n, r;
|
|
602
|
+
let t = null;
|
|
603
|
+
(l.defaultSocialImage && (t = l.defaultSocialImage),
|
|
604
|
+
"PostLayout" === e.__metadata.modelName &&
|
|
605
|
+
(null === (r = e.featuredImage) || void 0 === r ? void 0 : r.url) &&
|
|
606
|
+
(t = e.featuredImage.url),
|
|
607
|
+
e.socialImage && (t = e.socialImage));
|
|
608
|
+
let s = RegExp("^(?:[a-z+]+:)?//", "i"),
|
|
609
|
+
a = null === (n = l.env) || void 0 === n ? void 0 : n.URL;
|
|
610
|
+
return t ? (a && !s.test(t) ? a + t : t) : null;
|
|
611
|
+
}
|
|
612
|
+
var S = n(6880),
|
|
613
|
+
z = (e) => {
|
|
614
|
+
var l, n;
|
|
615
|
+
let t, s, i;
|
|
616
|
+
let { global: o, ...u } = e,
|
|
617
|
+
{ site: x } = o,
|
|
618
|
+
m = I(u, x),
|
|
619
|
+
f =
|
|
620
|
+
((t = {}),
|
|
621
|
+
(null === (l = x.defaultMetaTags) || void 0 === l
|
|
622
|
+
? void 0
|
|
623
|
+
: l.length) &&
|
|
624
|
+
x.defaultMetaTags.forEach((e) => {
|
|
625
|
+
t[e.property] = e.content;
|
|
626
|
+
}),
|
|
627
|
+
(t = {
|
|
628
|
+
...t,
|
|
629
|
+
...(I(u, x) && { "og:title": I(u, x) }),
|
|
630
|
+
...(_(u, x) && { "og:image": _(u, x) }),
|
|
631
|
+
}),
|
|
632
|
+
(null === (n = u.metaTags) || void 0 === n ? void 0 : n.length) &&
|
|
633
|
+
u.metaTags.forEach((e) => {
|
|
634
|
+
t[e.property] = e.content;
|
|
635
|
+
}),
|
|
636
|
+
(s = []),
|
|
637
|
+
Object.keys(t).forEach((e) => {
|
|
638
|
+
null !== t[e] &&
|
|
639
|
+
s.push({
|
|
640
|
+
property: e,
|
|
641
|
+
content: t[e],
|
|
642
|
+
format: e.startsWith("og") ? "property" : "name",
|
|
643
|
+
});
|
|
644
|
+
}),
|
|
645
|
+
s),
|
|
646
|
+
j =
|
|
647
|
+
((i = null),
|
|
648
|
+
"PostLayout" === u.__metadata.modelName && (i = u.excerpt),
|
|
649
|
+
u.metaDescription && (i = u.metaDescription),
|
|
650
|
+
i);
|
|
651
|
+
return (0, r.jsx)(S.M, {
|
|
652
|
+
content: u,
|
|
653
|
+
children: (0, r.jsxs)("div", {
|
|
654
|
+
className: c()(
|
|
655
|
+
"sb-page",
|
|
656
|
+
(null == u ? void 0 : u.colors) || "colors-a",
|
|
657
|
+
),
|
|
658
|
+
children: [
|
|
659
|
+
(null == u ? void 0 : u.backgroundImage) &&
|
|
660
|
+
(0, r.jsx)(d.Xd, {
|
|
661
|
+
...(null == u ? void 0 : u.backgroundImage),
|
|
662
|
+
}),
|
|
663
|
+
(0, r.jsxs)("div", {
|
|
664
|
+
className: "sb-base sb-default-base-layout relative",
|
|
665
|
+
children: [
|
|
666
|
+
(0, r.jsxs)(a(), {
|
|
667
|
+
children: [
|
|
668
|
+
(0, r.jsx)("title", { children: m }),
|
|
669
|
+
j &&
|
|
670
|
+
(0, r.jsx)("meta", {
|
|
671
|
+
name: "description",
|
|
672
|
+
content: j,
|
|
673
|
+
}),
|
|
674
|
+
f.map((e) =>
|
|
675
|
+
"property" === e.format
|
|
676
|
+
? (0, r.jsx)(
|
|
677
|
+
"meta",
|
|
678
|
+
{ property: e.property, content: e.content },
|
|
679
|
+
e.property,
|
|
680
|
+
)
|
|
681
|
+
: (0, r.jsx)(
|
|
682
|
+
"meta",
|
|
683
|
+
{ name: e.property, content: e.content },
|
|
684
|
+
e.property,
|
|
685
|
+
),
|
|
686
|
+
),
|
|
687
|
+
(0, r.jsx)("meta", {
|
|
688
|
+
name: "viewport",
|
|
689
|
+
content: "width=device-width, initial-scale=1",
|
|
690
|
+
}),
|
|
691
|
+
x.favicon &&
|
|
692
|
+
(0, r.jsx)("link", { rel: "icon", href: x.favicon }),
|
|
693
|
+
],
|
|
694
|
+
}),
|
|
695
|
+
x.header &&
|
|
696
|
+
(0, r.jsx)(S.M, {
|
|
697
|
+
content: x,
|
|
698
|
+
children: (0, r.jsx)(S.M, {
|
|
699
|
+
content: x.header,
|
|
700
|
+
children: (0, r.jsx)(h, { ...x.header }),
|
|
701
|
+
}),
|
|
702
|
+
}),
|
|
703
|
+
e.children,
|
|
704
|
+
x.footer &&
|
|
705
|
+
(0, r.jsx)(S.M, {
|
|
706
|
+
content: x,
|
|
707
|
+
children: (0, r.jsx)(S.M, {
|
|
708
|
+
content: x.footer,
|
|
709
|
+
children: (0, r.jsx)(M, { ...x.footer }),
|
|
710
|
+
}),
|
|
711
|
+
}),
|
|
712
|
+
],
|
|
713
|
+
}),
|
|
714
|
+
],
|
|
715
|
+
}),
|
|
716
|
+
});
|
|
717
|
+
};
|
|
718
|
+
},
|
|
719
|
+
487: function (e, l, n) {
|
|
720
|
+
(n.r(l),
|
|
721
|
+
n.d(l, {
|
|
722
|
+
default: function () {
|
|
723
|
+
return i;
|
|
724
|
+
},
|
|
725
|
+
}));
|
|
726
|
+
var r = n(5893);
|
|
727
|
+
n(7294);
|
|
728
|
+
var t = n(3967),
|
|
729
|
+
s = n.n(t),
|
|
730
|
+
a = n(6880);
|
|
731
|
+
function i(e) {
|
|
732
|
+
let { elementId: l, className: n, url: t, altText: i = "" } = e;
|
|
733
|
+
return t
|
|
734
|
+
? (0, r.jsx)(a.M, {
|
|
735
|
+
content: e,
|
|
736
|
+
children: (0, r.jsx)("img", {
|
|
737
|
+
id: l || null,
|
|
738
|
+
className: s()(
|
|
739
|
+
"sb-component",
|
|
740
|
+
"sb-component-block",
|
|
741
|
+
"sb-component-image-block",
|
|
742
|
+
n,
|
|
743
|
+
),
|
|
744
|
+
src: t,
|
|
745
|
+
alt: i,
|
|
746
|
+
}),
|
|
747
|
+
})
|
|
748
|
+
: null;
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
},
|
|
752
|
+
]);
|