@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.
Files changed (198) hide show
  1. package/.api_gateway_config.json +1 -0
  2. package/.github/workflows/npm-publish.yml +35 -0
  3. package/.github/workflows/prettier.yaml +44 -0
  4. package/.prettierignore +2 -0
  5. package/.prettierrc +4 -0
  6. package/.resp_cache.json +1 -0
  7. package/.vscode/launch.json +27 -0
  8. package/CHANGELOG.md +40 -0
  9. package/README.md +35 -140
  10. package/build/api_gateway/checkFeasibility.js +32 -0
  11. package/build/api_gateway/checkFeasibility.js.map +1 -0
  12. package/build/api_gateway/checkFireWallBlocking.js +24 -0
  13. package/build/api_gateway/checkFireWallBlocking.js.map +1 -0
  14. package/build/api_gateway/genReq.js +202 -0
  15. package/build/api_gateway/genReq.js.map +1 -0
  16. package/build/api_gateway/index.js +277 -0
  17. package/build/api_gateway/index.js.map +1 -0
  18. package/build/endpoints/gen_report/gen_json.js +22 -0
  19. package/build/endpoints/gen_report/gen_json.js.map +1 -0
  20. package/build/endpoints/gen_report/gen_markdown.js +66 -0
  21. package/build/endpoints/gen_report/gen_markdown.js.map +1 -0
  22. package/build/endpoints/gen_report/utility/iterate_n_store.js +46 -0
  23. package/build/endpoints/gen_report/utility/iterate_n_store.js.map +1 -0
  24. package/build/endpoints/index.js +89 -0
  25. package/build/endpoints/index.js.map +1 -0
  26. package/build/endpoints/next_js/client_jsFilesHref.js +91 -0
  27. package/build/endpoints/next_js/client_jsFilesHref.js.map +1 -0
  28. package/build/endpoints/next_js/client_jsonParse.js +75 -0
  29. package/build/endpoints/next_js/client_jsonParse.js.map +1 -0
  30. package/build/endpoints/next_js/client_subsequentRequests.js +199 -0
  31. package/build/endpoints/next_js/client_subsequentRequests.js.map +1 -0
  32. package/build/endpoints/next_js/getWebpacks.js +45 -0
  33. package/build/endpoints/next_js/getWebpacks.js.map +1 -0
  34. package/build/globalConfig.js +11 -0
  35. package/build/globalConfig.js.map +1 -0
  36. package/build/index.js +166 -0
  37. package/build/index.js.map +1 -0
  38. package/build/lazyLoad/downloadFilesUtil.js +128 -0
  39. package/build/lazyLoad/downloadFilesUtil.js.map +1 -0
  40. package/build/lazyLoad/downloadLoadedJsUtil.js +51 -0
  41. package/build/lazyLoad/downloadLoadedJsUtil.js.map +1 -0
  42. package/build/lazyLoad/globals.js +25 -0
  43. package/build/lazyLoad/globals.js.map +1 -0
  44. package/build/lazyLoad/index.js +171 -0
  45. package/build/lazyLoad/index.js.map +1 -0
  46. package/build/lazyLoad/next_js/next_GetJSScript.js +94 -0
  47. package/build/lazyLoad/next_js/next_GetJSScript.js.map +1 -0
  48. package/build/lazyLoad/next_js/next_GetLazyResources.js +202 -0
  49. package/build/lazyLoad/next_js/next_GetLazyResources.js.map +1 -0
  50. package/build/lazyLoad/next_js/next_SubsequentRequests.js +120 -0
  51. package/build/lazyLoad/next_js/next_SubsequentRequests.js.map +1 -0
  52. package/build/lazyLoad/nuxt_js/nuxt_astParse.js +188 -0
  53. package/build/lazyLoad/nuxt_js/nuxt_astParse.js.map +1 -0
  54. package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +75 -0
  55. package/build/lazyLoad/nuxt_js/nuxt_getFromPageSource.js.map +1 -0
  56. package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +94 -0
  57. package/build/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js.map +1 -0
  58. package/build/lazyLoad/svelte/svelte_getFromPageSource.js +68 -0
  59. package/build/lazyLoad/svelte/svelte_getFromPageSource.js.map +1 -0
  60. package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js +95 -0
  61. package/build/lazyLoad/svelte/svelte_stringAnalysisJSFiles.js.map +1 -0
  62. package/build/map/index.js +58 -0
  63. package/build/map/index.js.map +1 -0
  64. package/build/map/next_js/getFetchInstances.js +105 -0
  65. package/build/map/next_js/getFetchInstances.js.map +1 -0
  66. package/build/map/next_js/getWebpackConnections.js +224 -0
  67. package/build/map/next_js/getWebpackConnections.js.map +1 -0
  68. package/build/map/next_js/interactive.js +32 -0
  69. package/build/map/next_js/interactive.js.map +1 -0
  70. package/build/map/next_js/interactive_helpers/commandHandler.js +190 -0
  71. package/build/map/next_js/interactive_helpers/commandHandler.js.map +1 -0
  72. package/build/map/next_js/interactive_helpers/commandHelpers.js +91 -0
  73. package/build/map/next_js/interactive_helpers/commandHelpers.js.map +1 -0
  74. package/build/map/next_js/interactive_helpers/helpMenu.js +11 -0
  75. package/build/map/next_js/interactive_helpers/helpMenu.js.map +1 -0
  76. package/build/map/next_js/interactive_helpers/keybindings.js +80 -0
  77. package/build/map/next_js/interactive_helpers/keybindings.js.map +1 -0
  78. package/build/map/next_js/interactive_helpers/printer.js +17 -0
  79. package/build/map/next_js/interactive_helpers/printer.js.map +1 -0
  80. package/build/map/next_js/interactive_helpers/ui.js +81 -0
  81. package/build/map/next_js/interactive_helpers/ui.js.map +1 -0
  82. package/build/map/next_js/resolveFetch.js +201 -0
  83. package/build/map/next_js/resolveFetch.js.map +1 -0
  84. package/build/run/index.js +62 -0
  85. package/build/run/index.js.map +1 -0
  86. package/build/strings/index.js +235 -0
  87. package/build/strings/index.js.map +1 -0
  88. package/build/strings/openapi.js +55 -0
  89. package/build/strings/openapi.js.map +1 -0
  90. package/build/strings/permutate.js +55 -0
  91. package/build/strings/permutate.js.map +1 -0
  92. package/build/strings/secrets.js +89 -0
  93. package/build/strings/secrets.js.map +1 -0
  94. package/build/techDetect/index.js +224 -0
  95. package/build/techDetect/index.js.map +1 -0
  96. package/build/utility/ai.js +69 -0
  97. package/build/utility/ai.js.map +1 -0
  98. package/build/utility/globals.js +84 -0
  99. package/build/utility/globals.js.map +1 -0
  100. package/build/utility/interfaces.js +2 -0
  101. package/build/utility/interfaces.js.map +1 -0
  102. package/build/utility/makeReq.js +265 -0
  103. package/build/utility/makeReq.js.map +1 -0
  104. package/build/utility/resolvePath.js +44 -0
  105. package/build/utility/resolvePath.js.map +1 -0
  106. package/{utility → build/utility}/runSandboxed.js +10 -13
  107. package/build/utility/runSandboxed.js.map +1 -0
  108. package/{utility → build/utility}/urlUtils.js +9 -11
  109. package/build/utility/urlUtils.js.map +1 -0
  110. package/docs/README.md +20 -0
  111. package/docs/api-gateway.md +68 -0
  112. package/docs/endpoints.md +49 -0
  113. package/docs/example-scenario.md +258 -0
  114. package/docs/interactive-mode.md +76 -0
  115. package/docs/lazyload.md +56 -0
  116. package/docs/map.md +53 -0
  117. package/docs/run.md +54 -0
  118. package/docs/strings.md +75 -0
  119. package/endpoints.json +77 -0
  120. package/extracted_urls-openapi.json +225 -0
  121. package/extracted_urls-swagger.json +225 -0
  122. package/extracted_urls.json +47 -0
  123. package/extracted_urls.txt +296 -0
  124. package/mapped.json +3413 -0
  125. package/output/ss0x00.com/_next/data/k7xKVnxmboK4SktY2dZWt/index.json +971 -0
  126. package/output/ss0x00.com/_next/static/chunks/12.7e6d2ac6e1808fc2.js +247 -0
  127. package/output/ss0x00.com/_next/static/chunks/128.160aa801ef0445bc.js +1074 -0
  128. package/output/ss0x00.com/_next/static/chunks/132.55df84f7707fc278.js +102 -0
  129. package/output/ss0x00.com/_next/static/chunks/142.77038c55d9ec10ba.js +96 -0
  130. package/output/ss0x00.com/_next/static/chunks/215.321479e91d330bfa.js +228 -0
  131. package/output/ss0x00.com/_next/static/chunks/229.097c396d86b4a882.js +458 -0
  132. package/output/ss0x00.com/_next/static/chunks/257.5fd052aa4ef06ef9.js +1327 -0
  133. package/output/ss0x00.com/_next/static/chunks/268.72cb3779f66db70b.js +10520 -0
  134. package/output/ss0x00.com/_next/static/chunks/320.57d528b0e9bf86f0.js +186 -0
  135. package/output/ss0x00.com/_next/static/chunks/325.302a44b604c35f17.js +88 -0
  136. package/output/ss0x00.com/_next/static/chunks/328.e4a0307a4fddf318.js +248 -0
  137. package/output/ss0x00.com/_next/static/chunks/432.3621f17504ef18f2.js +443 -0
  138. package/output/ss0x00.com/_next/static/chunks/44.e90dd963003a3d43.js +1094 -0
  139. package/output/ss0x00.com/_next/static/chunks/442.8c054f100f9e5e50.js +1082 -0
  140. package/output/ss0x00.com/_next/static/chunks/460.f8db9a5142598e2c.js +466 -0
  141. package/output/ss0x00.com/_next/static/chunks/487.05ca55420459c002.js +78 -0
  142. package/output/ss0x00.com/_next/static/chunks/567.1909a6b0a920114b.js +1374 -0
  143. package/output/ss0x00.com/_next/static/chunks/586.802fc9214d87fb29.js +752 -0
  144. package/output/ss0x00.com/_next/static/chunks/620.a2a3a6b94d30a4c8.js +1037 -0
  145. package/output/ss0x00.com/_next/static/chunks/642.6b3e487c9604cbb8.js +1628 -0
  146. package/output/ss0x00.com/_next/static/chunks/673.e5d77887e5c6a68c.js +1045 -0
  147. package/output/ss0x00.com/_next/static/chunks/684.8b8e52baca70524b.js +96 -0
  148. package/output/ss0x00.com/_next/static/chunks/686.79480519e5ccfb77.js +296 -0
  149. package/output/ss0x00.com/_next/static/chunks/756.7a3878a2e6765be7.js +504 -0
  150. package/output/ss0x00.com/_next/static/chunks/761.7bea7516c5d22b2a.js +1485 -0
  151. package/output/ss0x00.com/_next/static/chunks/794.e079ef369b41a3c5.js +1350 -0
  152. package/output/ss0x00.com/_next/static/chunks/826.31ba213e1d023c68.js +1031 -0
  153. package/output/ss0x00.com/_next/static/chunks/847.d8397a73efc81848.js +1068 -0
  154. package/output/ss0x00.com/_next/static/chunks/848.5feaeee1e2624aea.js +132 -0
  155. package/output/ss0x00.com/_next/static/chunks/850.ecc7c3c3d787ee03.js +1472 -0
  156. package/output/ss0x00.com/_next/static/chunks/853.50b9eb60b7d0e83c.js +1472 -0
  157. package/output/ss0x00.com/_next/static/chunks/856.7a7bb6c3c7bfc2ba.js +1320 -0
  158. package/output/ss0x00.com/_next/static/chunks/859.df4bd45c03a65f53.js +1306 -0
  159. package/output/ss0x00.com/_next/static/chunks/867.e8633955a147c978.js +541 -0
  160. package/output/ss0x00.com/_next/static/chunks/921.c3123f20a4c8d53c.js +96 -0
  161. package/output/ss0x00.com/_next/static/chunks/932.25cb421c466c99cb.js +999 -0
  162. package/output/ss0x00.com/_next/static/chunks/framework-64ad27b21261a9ce.js +9189 -0
  163. package/output/ss0x00.com/_next/static/chunks/main-710ab85aa9a8f10d.js +6583 -0
  164. package/output/ss0x00.com/_next/static/chunks/pages/5D-af5a23529ce3c337.js +486 -0
  165. package/output/ss0x00.com/_next/static/chunks/pages/_app-c449865c8af1faa0.js +39 -0
  166. package/output/ss0x00.com/_next/static/chunks/polyfills-78c92fac7aa8fdd8.js +6383 -0
  167. package/output/ss0x00.com/_next/static/chunks/webpack-efff35ee26971294.js +271 -0
  168. package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_buildManifest.js +8 -0
  169. package/output/ss0x00.com/_next/static/k7xKVnxmboK4SktY2dZWt/_ssgManifest.js +3 -0
  170. package/output/ss0x00.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js +82 -0
  171. package/package.json +50 -38
  172. package/strings.json +7407 -0
  173. package/api_gateway/checkFeasibility.js +0 -25
  174. package/api_gateway/checkFireWallBlocking.js +0 -17
  175. package/api_gateway/genReq.js +0 -214
  176. package/api_gateway/index.js +0 -325
  177. package/endpoints/index.js +0 -7
  178. package/globalConfig.js +0 -12
  179. package/index.js +0 -69
  180. package/lazyLoad/downloadFilesUtil.js +0 -122
  181. package/lazyLoad/downloadLoadedJsUtil.js +0 -54
  182. package/lazyLoad/globals.js +0 -15
  183. package/lazyLoad/index.js +0 -167
  184. package/lazyLoad/next_js/next_GetJSScript.js +0 -99
  185. package/lazyLoad/next_js/next_GetLazyResources.js +0 -201
  186. package/lazyLoad/next_js/next_SubsequentRequests.js +0 -138
  187. package/lazyLoad/nuxt_js/nuxt_astParse.js +0 -194
  188. package/lazyLoad/nuxt_js/nuxt_getFromPageSource.js +0 -77
  189. package/lazyLoad/nuxt_js/nuxt_stringAnalysisJSFiles.js +0 -99
  190. package/research/firewall_bypass.md +0 -38
  191. package/research/next_js.md +0 -116
  192. package/research/nuxt_js.md +0 -125
  193. package/research/vue_js.md +0 -9
  194. package/strings/index.js +0 -145
  195. package/techDetect/index.js +0 -156
  196. package/utility/globals.js +0 -6
  197. package/utility/makeReq.js +0 -179
  198. package/utility/resolvePath.js +0 -43
@@ -0,0 +1,504 @@
1
+ // JS Source: https://ss0x00.com/_next/static/chunks/756.7a3878a2e6765be7.js
2
+ "use strict";
3
+ (self.webpackChunk_N_E = self.webpackChunk_N_E || []).push([
4
+ [756],
5
+ {
6
+ 6756: function (e, l, t) {
7
+ t.r(l);
8
+ var n = t(5893);
9
+ t(7294);
10
+ var s = t(3967),
11
+ r = t.n(s),
12
+ a = t(3491),
13
+ i = t(2826),
14
+ d = t(7586),
15
+ o = t(9754);
16
+ function c(e) {
17
+ let { sections: l } = e;
18
+ return 0 === l.length
19
+ ? null
20
+ : (0, n.jsx)("div", {
21
+ children: l.map((e, l) => (0, n.jsx)(a.B, { ...e }, l)),
22
+ });
23
+ }
24
+ l.default = (e) => {
25
+ var l, t, s, a, u, m;
26
+ let { global: h, ...x } = e,
27
+ {
28
+ title: f,
29
+ topSections: v = [],
30
+ bottomSections: p = [],
31
+ items: b,
32
+ projectFeed: j,
33
+ styles: g = {},
34
+ } = x;
35
+ return (0, n.jsx)(d.Z, {
36
+ ...e,
37
+ children: (0, n.jsxs)("main", {
38
+ id: "main",
39
+ className: "layout page-layout",
40
+ children: [
41
+ f &&
42
+ (0, n.jsx)("div", {
43
+ className: r()(
44
+ "flex",
45
+ "py-12",
46
+ "lg:py-16",
47
+ "px-4",
48
+ (0, o.G)({
49
+ justifyContent:
50
+ null !==
51
+ (u =
52
+ null == j
53
+ ? void 0
54
+ : null === (t = j.styles) || void 0 === t
55
+ ? void 0
56
+ : null === (l = t.self) || void 0 === l
57
+ ? void 0
58
+ : l.justifyContent) && void 0 !== u
59
+ ? u
60
+ : "center",
61
+ }),
62
+ ),
63
+ children: (0, n.jsx)("h1", {
64
+ className: r()(
65
+ "w-full",
66
+ (0, o.G)({
67
+ width:
68
+ null !==
69
+ (m =
70
+ null == j
71
+ ? void 0
72
+ : null === (a = j.styles) || void 0 === a
73
+ ? void 0
74
+ : null === (s = a.self) || void 0 === s
75
+ ? void 0
76
+ : s.width) && void 0 !== m
77
+ ? m
78
+ : "wide",
79
+ }),
80
+ (null == g ? void 0 : g.title)
81
+ ? (0, o.G)(null == g ? void 0 : g.title)
82
+ : null,
83
+ ),
84
+ children: f,
85
+ }),
86
+ }),
87
+ (0, n.jsx)(c, { sections: v }),
88
+ (0, n.jsx)(i.default, { ...j, projects: b }),
89
+ (0, n.jsx)(c, { sections: p }),
90
+ ],
91
+ }),
92
+ });
93
+ };
94
+ },
95
+ 2826: function (e, l, t) {
96
+ (t.r(l),
97
+ t.d(l, {
98
+ default: function () {
99
+ return h;
100
+ },
101
+ }));
102
+ var n = t(5893);
103
+ t(7294);
104
+ var s = t(3967),
105
+ r = t.n(s),
106
+ a = t(7484),
107
+ i = t.n(a),
108
+ d = t(9754),
109
+ o = t(6319),
110
+ c = t(8154),
111
+ u = t(487),
112
+ m = t(5517);
113
+ function h(e) {
114
+ let {
115
+ type: l,
116
+ elementId: t,
117
+ colors: s,
118
+ variant: a,
119
+ title: i,
120
+ subtitle: c,
121
+ actions: u = [],
122
+ projects: m = [],
123
+ showDate: h,
124
+ showDescription: v,
125
+ showFeaturedImage: p,
126
+ showReadMoreLink: b,
127
+ styles: j = {},
128
+ } = e;
129
+ return (0, n.jsxs)(o.Z, {
130
+ type: l,
131
+ elementId: t,
132
+ colors: s,
133
+ styles: j.self,
134
+ children: [
135
+ i &&
136
+ (0, n.jsx)("h2", {
137
+ className: r()(j.title ? (0, d.G)(j.title) : null),
138
+ children: i,
139
+ }),
140
+ c &&
141
+ (0, n.jsx)("p", {
142
+ className: r()(
143
+ "text-lg",
144
+ "sm:text-xl",
145
+ j.subtitle ? (0, d.G)(j.subtitle) : null,
146
+ { "mt-6": i },
147
+ ),
148
+ children: c,
149
+ }),
150
+ (0, n.jsx)(f, {
151
+ variant: a,
152
+ projects: m,
153
+ showDate: h,
154
+ showDescription: v,
155
+ showFeaturedImage: p,
156
+ showReadMoreLink: b,
157
+ hasTopMargin: !!(i || c),
158
+ }),
159
+ (0, n.jsx)(x, { actions: u, styles: j.actions }),
160
+ ],
161
+ });
162
+ }
163
+ function x(e) {
164
+ let { actions: l = [], styles: t = {} } = e;
165
+ return 0 === l.length
166
+ ? null
167
+ : (0, n.jsx)("div", {
168
+ className: "mt-10 overflow-x-hidden",
169
+ children: (0, n.jsx)("div", {
170
+ className: r()(
171
+ "flex",
172
+ "flex-wrap",
173
+ "items-center",
174
+ "-mx-2",
175
+ (0, d.G)(t),
176
+ ),
177
+ children: l.map((e, l) =>
178
+ (0, n.jsx)(
179
+ c.aU,
180
+ { ...e, className: "my-2 mx-2 lg:whitespace-nowrap" },
181
+ l,
182
+ ),
183
+ ),
184
+ }),
185
+ });
186
+ }
187
+ function f(e) {
188
+ let { variant: l = "variant-a" } = e;
189
+ switch (l) {
190
+ case "variant-a":
191
+ case "variant-b":
192
+ case "variant-c":
193
+ return (0, n.jsx)(v, { ...e });
194
+ case "variant-d":
195
+ return (0, n.jsx)(p, { ...e });
196
+ default:
197
+ return null;
198
+ }
199
+ }
200
+ function v(e) {
201
+ let {
202
+ variant: l = "variant-a",
203
+ projects: t = [],
204
+ showDate: s,
205
+ showDescription: a,
206
+ showFeaturedImage: i,
207
+ showReadMoreLink: d,
208
+ hasTopMargin: o,
209
+ } = e;
210
+ return 0 === t.length
211
+ ? null
212
+ : (0, n.jsx)("div", {
213
+ className: r()("grid", "gap-y-12", {
214
+ "md:grid-cols-2": "variant-a" === l,
215
+ "md:grid-cols-3": "variant-b" === l,
216
+ "justify-center": "variant-c" === l,
217
+ "gap-x-6 lg:gap-x-8": "variant-a" === l || "variant-b",
218
+ "mt-12": o,
219
+ }),
220
+ children: t.map((e, l) =>
221
+ (0, n.jsx)(
222
+ c.rU,
223
+ {
224
+ href: e,
225
+ className: "sb-project-feed-item block group",
226
+ children: (0, n.jsxs)("article", {
227
+ className: "border-b border-current pb-10 max-w-3xl",
228
+ children: [
229
+ i &&
230
+ e.featuredImage &&
231
+ (0, n.jsx)("div", {
232
+ className:
233
+ "h-0 w-full mb-6 pt-2/3 relative overflow-hidden",
234
+ children: (0, n.jsx)(u.default, {
235
+ ...e.featuredImage,
236
+ className:
237
+ "absolute left-0 top-0 h-full w-full object-cover transition-transform duration-500 group-hover:scale-105",
238
+ }),
239
+ }),
240
+ s &&
241
+ e.date &&
242
+ (0, n.jsx)("div", {
243
+ className: "mb-3",
244
+ children: (0, n.jsx)(b, { date: e.date }),
245
+ }),
246
+ (0, n.jsx)("h3", { children: e.title }),
247
+ a &&
248
+ e.description &&
249
+ (0, n.jsx)("p", {
250
+ className: "text-lg mt-5",
251
+ children: e.description,
252
+ }),
253
+ d &&
254
+ (0, n.jsx)("div", {
255
+ className: "mt-8",
256
+ children: (0, n.jsxs)("span", {
257
+ className:
258
+ "sb-component sb-component-block sb-component-button sb-component-button-secondary sb-component-button-icon",
259
+ children: [
260
+ (0, n.jsx)("span", {
261
+ className: "sr-only",
262
+ children: "Read more",
263
+ }),
264
+ (0, n.jsx)(m.Z, {
265
+ className: "fill-current h-5 w-5",
266
+ }),
267
+ ],
268
+ }),
269
+ }),
270
+ ],
271
+ }),
272
+ },
273
+ l,
274
+ ),
275
+ ),
276
+ });
277
+ }
278
+ function p(e) {
279
+ let {
280
+ projects: l = [],
281
+ showDate: t,
282
+ showDescription: s,
283
+ showFeaturedImage: a,
284
+ showReadMoreLink: i,
285
+ hasTopMargin: d,
286
+ } = e;
287
+ return 0 === l.length
288
+ ? null
289
+ : (0, n.jsx)("div", {
290
+ className: r()("grid", "gap-y-8", { "mt-12": d }),
291
+ children: l.map((e, l) =>
292
+ (0, n.jsx)(
293
+ c.rU,
294
+ {
295
+ href: e,
296
+ className: "sb-project-feed-item block group",
297
+ children: (0, n.jsx)("article", {
298
+ className:
299
+ "border-b border-current pb-10 md:pb-12 md:px-4",
300
+ children: (0, n.jsxs)("div", {
301
+ className: "md:flex md:items-center",
302
+ children: [
303
+ a &&
304
+ e.featuredImage &&
305
+ (0, n.jsx)("div", {
306
+ className:
307
+ "mb-8 md:shrink-0 md:self-stretch md:w-48 md:mb-0 md:mr-8",
308
+ children: (0, n.jsx)("div", {
309
+ className:
310
+ "block h-0 w-full pt-2/3 relative overflow-hidden md:h-24 md:min-h-full md:pt-0",
311
+ children: (0, n.jsx)(u.default, {
312
+ ...e.featuredImage,
313
+ className:
314
+ "absolute left-0 top-0 h-full w-full object-cover transition-transform duration-500 group-hover:scale-105",
315
+ }),
316
+ }),
317
+ }),
318
+ (0, n.jsxs)("div", {
319
+ className: r()(
320
+ "md:grow",
321
+ a && e.featuredImage ? null : "md:ml-12",
322
+ ),
323
+ children: [
324
+ t &&
325
+ e.date &&
326
+ (0, n.jsx)("div", {
327
+ className: "mb-3",
328
+ children: (0, n.jsx)(b, { date: e.date }),
329
+ }),
330
+ (0, n.jsx)("h3", { children: e.title }),
331
+ s &&
332
+ e.description &&
333
+ (0, n.jsx)("p", {
334
+ className: "text-lg mt-5",
335
+ children: e.description,
336
+ }),
337
+ ],
338
+ }),
339
+ i &&
340
+ (0, n.jsx)("div", {
341
+ className: "mt-8 md:mt-0 md:mx-8",
342
+ children: (0, n.jsxs)("span", {
343
+ className:
344
+ "sb-component sb-component-block sb-component-button sb-component-button-secondary sb-component-button-icon",
345
+ children: [
346
+ (0, n.jsx)("span", {
347
+ className: "sr-only",
348
+ children: "Read more",
349
+ }),
350
+ (0, n.jsx)(m.Z, {
351
+ className:
352
+ "fill-current h-5 w-5 md:h-8 md:w-8",
353
+ }),
354
+ ],
355
+ }),
356
+ }),
357
+ ],
358
+ }),
359
+ }),
360
+ },
361
+ l,
362
+ ),
363
+ ),
364
+ });
365
+ }
366
+ function b(e) {
367
+ let { date: l } = e,
368
+ t = i()(l).format("YYYY-MM-DD HH:mm:ss"),
369
+ s = i()(l).format("MM-DD-YYYY");
370
+ return (0, n.jsx)("time", { dateTime: t, children: s });
371
+ }
372
+ },
373
+ 6319: function (e, l, t) {
374
+ t.d(l, {
375
+ Z: function () {
376
+ return i;
377
+ },
378
+ });
379
+ var n = t(5893);
380
+ t(7294);
381
+ var s = t(3967),
382
+ r = t.n(s),
383
+ a = t(9754);
384
+ function i(e) {
385
+ let { backgroundSize: l = "full", ...t } = e;
386
+ return "inset" === l
387
+ ? (0, n.jsx)(d, { ...t })
388
+ : (0, n.jsx)(o, { ...t });
389
+ }
390
+ function d(e) {
391
+ var l, t, s, i;
392
+ let {
393
+ type: d,
394
+ elementId: o,
395
+ colors: c = "colors-f",
396
+ styles: u = {},
397
+ children: m,
398
+ } = e,
399
+ h = d && d.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
400
+ return (0, n.jsx)("div", {
401
+ id: o || null,
402
+ className: r()(
403
+ "sb-component",
404
+ "sb-component-section",
405
+ h && "sb-component-".concat(h),
406
+ "flex",
407
+ (0, a.G)({
408
+ justifyContent:
409
+ null !== (l = u.justifyContent) && void 0 !== l ? l : "center",
410
+ }),
411
+ u.margin,
412
+ ),
413
+ children: (0, n.jsx)("div", {
414
+ className: r()(
415
+ c,
416
+ "flex",
417
+ "flex-col",
418
+ "justify-center",
419
+ "relative",
420
+ "w-full",
421
+ (0, a.G)({
422
+ width: null !== (t = u.width) && void 0 !== t ? t : "wide",
423
+ }),
424
+ (0, a.G)({
425
+ height: null !== (s = u.height) && void 0 !== s ? s : "auto",
426
+ }),
427
+ null !== (i = u.padding) && void 0 !== i ? i : "py-12 px-4",
428
+ u.borderColor,
429
+ u.borderStyle ? (0, a.G)({ borderStyle: u.borderStyle }) : null,
430
+ u.borderRadius
431
+ ? (0, a.G)({ borderRadius: u.borderRadius })
432
+ : null,
433
+ ),
434
+ style: {
435
+ borderWidth: u.borderWidth
436
+ ? "".concat(u.borderWidth, "px")
437
+ : null,
438
+ },
439
+ children: (0, n.jsx)("div", {
440
+ className: "relative w-full",
441
+ children: m,
442
+ }),
443
+ }),
444
+ });
445
+ }
446
+ function o(e) {
447
+ var l, t, s, i;
448
+ let {
449
+ type: d,
450
+ elementId: o,
451
+ colors: c = "colors-f",
452
+ styles: u = {},
453
+ children: m,
454
+ } = e,
455
+ h = d && d.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
456
+ return (0, n.jsx)("div", {
457
+ id: o || null,
458
+ className: r()(
459
+ "sb-component",
460
+ "sb-component-section",
461
+ h && "sb-component-".concat(h),
462
+ c,
463
+ "flex",
464
+ "flex-col",
465
+ "justify-center",
466
+ (0, a.G)({
467
+ height: null !== (l = u.height) && void 0 !== l ? l : "auto",
468
+ }),
469
+ u.margin,
470
+ null !== (t = u.padding) && void 0 !== t ? t : "py-12 px-4",
471
+ u.borderColor,
472
+ u.borderStyle ? (0, a.G)({ borderStyle: u.borderStyle }) : null,
473
+ u.borderRadius ? (0, a.G)({ borderRadius: u.borderRadius }) : null,
474
+ ),
475
+ style: {
476
+ borderWidth: u.borderWidth ? "".concat(u.borderWidth, "px") : null,
477
+ },
478
+ children: (0, n.jsx)("div", {
479
+ className: r()(
480
+ "flex",
481
+ "w-full",
482
+ (0, a.G)({
483
+ justifyContent:
484
+ null !== (s = u.justifyContent) && void 0 !== s
485
+ ? s
486
+ : "center",
487
+ }),
488
+ ),
489
+ children: (0, n.jsx)("div", {
490
+ className: r()(
491
+ "relative",
492
+ "w-full",
493
+ (0, a.G)({
494
+ width: null !== (i = u.width) && void 0 !== i ? i : "wide",
495
+ }),
496
+ ),
497
+ children: m,
498
+ }),
499
+ }),
500
+ });
501
+ }
502
+ },
503
+ },
504
+ ]);