@leadertechie/personal-site-kit 0.1.0-alpha.10 → 0.1.0-alpha.12
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/api/website-api.d.ts.map +1 -1
- package/dist/api.js +2 -2
- package/dist/chunks/{index-_AMi6ort.js → index-B2jGIzSi.js} +8 -3
- package/dist/chunks/{site-store-Vqmjjz9c.js → site-store-CGV9c2DI.js} +4 -1
- package/dist/chunks/{template-C1tMqlPY.js → template-Ccxil4s-.js} +1 -1
- package/dist/chunks/{website-api-CuyeBej-.js → website-api-DTaVHBO_.js} +19 -12
- package/dist/index.js +4 -4
- package/dist/prerender/template.d.ts.map +1 -1
- package/dist/prerender/website-prerender.d.ts +4 -0
- package/dist/prerender/website-prerender.d.ts.map +1 -1
- package/dist/prerender.js +30 -10
- package/dist/shared/config/index.d.ts.map +1 -1
- package/dist/shared.js +2 -2
- package/dist/ui/footer/index.d.ts.map +1 -1
- package/dist/ui.js +1 -1
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"website-api.d.ts","sourceRoot":"","sources":["../../src/api/website-api.ts"],"names":[],"mappings":"AAWA,MAAM,MAAM,UAAU,GAAG,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,KAAK,OAAO,CAAC,QAAQ,CAAC,CAAC;AAE3E,qBAAa,UAAU;IACrB,OAAO,CAAC,cAAc,CAAiC;IAEhD,eAAe,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU;IAIzD,OAAO,CAAC,cAAc;IAOtB,OAAO,CAAC,mBAAmB;
|
|
1
|
+
{"version":3,"file":"website-api.d.ts","sourceRoot":"","sources":["../../src/api/website-api.ts"],"names":[],"mappings":"AAWA,MAAM,MAAM,UAAU,GAAG,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,KAAK,OAAO,CAAC,QAAQ,CAAC,CAAC;AAE3E,qBAAa,UAAU;IACrB,OAAO,CAAC,cAAc,CAAiC;IAEhD,eAAe,CAAC,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU;IAIzD,OAAO,CAAC,cAAc;IAOtB,OAAO,CAAC,mBAAmB;IAoB3B,OAAO,CAAC,UAAU;IAqBL,KAAK,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,QAAQ,CAAC;CA0FlE"}
|
package/dist/api.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { W as WebsiteAPI } from "./chunks/website-api-
|
|
2
|
-
import { A, B, M, R, c, a, g, b, d, h, e, r, s, v } from "./chunks/website-api-
|
|
1
|
+
import { W as WebsiteAPI } from "./chunks/website-api-DTaVHBO_.js";
|
|
2
|
+
import { A, B, M, R, c, a, g, b, d, h, e, r, s, v } from "./chunks/website-api-DTaVHBO_.js";
|
|
3
3
|
const defaultAPI = new WebsiteAPI();
|
|
4
4
|
export {
|
|
5
5
|
A as AUTH_KV,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { css, html, LitElement } from "lit";
|
|
2
2
|
import { customElement, property, state } from "lit/decorators.js";
|
|
3
|
-
import { S as SiteStore } from "./site-store-
|
|
3
|
+
import { S as SiteStore } from "./site-store-CGV9c2DI.js";
|
|
4
4
|
import { MarkdownPipeline } from "@leadertechie/r2tohtml";
|
|
5
5
|
const aboutmeStyles = css`
|
|
6
6
|
:host {
|
|
@@ -2280,11 +2280,16 @@ class FooterComponent extends (_a$2 = LitElement, _copyright_dec = [property({ t
|
|
|
2280
2280
|
__privateAdd$2(this, _footerLinks, __runInitializers$2(_init$2, 12, this, [])), __runInitializers$2(_init$2, 15, this);
|
|
2281
2281
|
}
|
|
2282
2282
|
render() {
|
|
2283
|
+
const links = this.footerLinks && this.footerLinks.length > 0 ? this.footerLinks : [
|
|
2284
|
+
{ text: "LinkedIn", link: "https://linkedin.com" },
|
|
2285
|
+
{ text: "GitHub", link: "https://github.com" },
|
|
2286
|
+
{ text: "Email", link: "mailto:you@example.com" }
|
|
2287
|
+
];
|
|
2283
2288
|
return html`
|
|
2284
2289
|
<div class="footer-content">
|
|
2285
|
-
<span>© ${this.copyright}</span>
|
|
2290
|
+
<span>© ${this.copyright || "2026 Personal Site"}</span>
|
|
2286
2291
|
<span class="links">
|
|
2287
|
-
${
|
|
2292
|
+
${links.map(
|
|
2288
2293
|
(link) => {
|
|
2289
2294
|
const isExternal = link.link.startsWith("http") || link.link.startsWith("mailto:");
|
|
2290
2295
|
return html`<a
|
|
@@ -21,7 +21,10 @@ async function initializeConfig(infra) {
|
|
|
21
21
|
const res = await fetch(`${activeConfig.apiUrl}/api/static`);
|
|
22
22
|
if (res.ok) {
|
|
23
23
|
const remoteStatic = await res.json().catch(() => ({}));
|
|
24
|
-
|
|
24
|
+
const filteredStatic = Object.fromEntries(
|
|
25
|
+
Object.entries(remoteStatic).filter(([_, v]) => v != null && v !== "")
|
|
26
|
+
);
|
|
27
|
+
activeConfig = { ...activeConfig, ...filteredStatic };
|
|
25
28
|
}
|
|
26
29
|
} catch (e) {
|
|
27
30
|
console.warn("Failed to load static details from R2, using defaults.");
|
|
@@ -804,24 +804,31 @@ class WebsiteAPI {
|
|
|
804
804
|
return response;
|
|
805
805
|
}
|
|
806
806
|
addAdminCORSHeaders(response, origin) {
|
|
807
|
-
const
|
|
808
|
-
|
|
809
|
-
|
|
807
|
+
const isLocal = origin && (origin.includes("localhost") || origin.includes("127.0.0.1"));
|
|
808
|
+
if (isLocal) {
|
|
809
|
+
response.headers.set("Access-Control-Allow-Origin", origin);
|
|
810
|
+
response.headers.set("Access-Control-Allow-Credentials", "true");
|
|
811
|
+
}
|
|
810
812
|
response.headers.set("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS");
|
|
811
813
|
response.headers.set("Access-Control-Allow-Headers", "Content-Type, Authorization, X-Session-Token");
|
|
812
814
|
return response;
|
|
813
815
|
}
|
|
814
816
|
handleCORS(origin) {
|
|
815
|
-
const
|
|
817
|
+
const isLocal = origin && (origin.includes("localhost") || origin.includes("127.0.0.1"));
|
|
818
|
+
const allowOrigin = isLocal ? origin : "*";
|
|
819
|
+
const headers = {
|
|
820
|
+
"Access-Control-Allow-Origin": allowOrigin,
|
|
821
|
+
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
|
|
822
|
+
"Access-Control-Allow-Headers": "Content-Type, Authorization, X-Session-Token",
|
|
823
|
+
"Access-Control-Max-Age": "86400"
|
|
824
|
+
};
|
|
825
|
+
if (isLocal) {
|
|
826
|
+
headers["Access-Control-Allow-Credentials"] = "true";
|
|
827
|
+
}
|
|
816
828
|
return new Response(null, {
|
|
817
|
-
status:
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, OPTIONS",
|
|
821
|
-
"Access-Control-Allow-Headers": "Content-Type, Authorization, X-Session-Token",
|
|
822
|
-
"Access-Control-Allow-Credentials": "true",
|
|
823
|
-
"Access-Control-Max-Age": "86400"
|
|
824
|
-
}
|
|
829
|
+
status: 204,
|
|
830
|
+
// No content for OPTIONS
|
|
831
|
+
headers
|
|
825
832
|
});
|
|
826
833
|
}
|
|
827
834
|
async fetch(request, env) {
|
package/dist/index.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { A, B, M, R, W, c, a, g, b, d, h, e, r, s, v } from "./chunks/website-api-
|
|
1
|
+
import { A, B, M, R, W, c, a, g, b, d, h, e, r, s, v } from "./chunks/website-api-DTaVHBO_.js";
|
|
2
2
|
import { WebsitePrerender } from "./prerender.js";
|
|
3
|
-
import { A as A2, a as a2, b as b2, c as c2, d as d2, e as e2, f, g as g2, h as h2, i, B as B2, F, M as M2, j, S, k } from "./chunks/index-
|
|
4
|
-
import { S as S2, g as g3, i as i2, r as r2 } from "./chunks/site-store-
|
|
5
|
-
import { R as R2, T, W as W2, b as b3, c as c3, g as g4, r as r3 } from "./chunks/template-
|
|
3
|
+
import { A as A2, a as a2, b as b2, c as c2, d as d2, e as e2, f, g as g2, h as h2, i, B as B2, F, M as M2, j, S, k } from "./chunks/index-B2jGIzSi.js";
|
|
4
|
+
import { S as S2, g as g3, i as i2, r as r2 } from "./chunks/site-store-CGV9c2DI.js";
|
|
5
|
+
import { R as R2, T, W as W2, b as b3, c as c3, g as g4, r as r3 } from "./chunks/template-Ccxil4s-.js";
|
|
6
6
|
export {
|
|
7
7
|
A as AUTH_KV,
|
|
8
8
|
A2 as AdminAboutMeSection,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"template.d.ts","sourceRoot":"","sources":["../../src/prerender/template.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAyBD,eAAO,MAAM,kBAAkB,GAAU,2EAOtC,aAAa,KAAG,OAAO,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"template.d.ts","sourceRoot":"","sources":["../../src/prerender/template.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAyBD,eAAO,MAAM,kBAAkB,GAAU,2EAOtC,aAAa,KAAG,OAAO,CAAC,MAAM,CA0BhC,CAAC"}
|
|
@@ -6,6 +6,9 @@ export interface PrerenderOptions {
|
|
|
6
6
|
siteTitle?: string;
|
|
7
7
|
copyright?: string;
|
|
8
8
|
templateRenderer?: (props: TemplateProps) => Promise<string> | string;
|
|
9
|
+
apiHandler?: {
|
|
10
|
+
fetch: (request: Request, env: any, ctx: any) => Promise<Response> | Response;
|
|
11
|
+
};
|
|
9
12
|
}
|
|
10
13
|
export declare class WebsitePrerender {
|
|
11
14
|
private routes;
|
|
@@ -14,6 +17,7 @@ export declare class WebsitePrerender {
|
|
|
14
17
|
private siteTitle;
|
|
15
18
|
private copyright;
|
|
16
19
|
private templateRenderer;
|
|
20
|
+
private apiHandler?;
|
|
17
21
|
constructor(options?: PrerenderOptions);
|
|
18
22
|
private fetchStaticDetails;
|
|
19
23
|
private fetchAboutMeData;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"website-prerender.d.ts","sourceRoot":"","sources":["../../src/prerender/website-prerender.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,aAAa,EAAE,MAAM,YAAY,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,EAAuB,MAAM,gBAAgB,CAAC;AAE1E,MAAM,WAAW,gBAAgB;IAC/B,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,kBAAkB,CAAC,EAAE,WAAW,EAAE,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,OAAO,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"website-prerender.d.ts","sourceRoot":"","sources":["../../src/prerender/website-prerender.ts"],"names":[],"mappings":"AAAA,OAAO,EAAsB,aAAa,EAAE,MAAM,YAAY,CAAC;AAC/D,OAAO,EAAE,WAAW,EAAE,MAAM,EAAuB,MAAM,gBAAgB,CAAC;AAE1E,MAAM,WAAW,gBAAgB;IAC/B,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB,kBAAkB,CAAC,EAAE,WAAW,EAAE,CAAC;IACnC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gBAAgB,CAAC,EAAE,CAAC,KAAK,EAAE,aAAa,KAAK,OAAO,CAAC,MAAM,CAAC,GAAG,MAAM,CAAC;IACtE,UAAU,CAAC,EAAE;QAAE,KAAK,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,KAAK,OAAO,CAAC,QAAQ,CAAC,GAAG,QAAQ,CAAA;KAAE,CAAC;CAChG;AAED,qBAAa,gBAAgB;IAC3B,OAAO,CAAC,MAAM,CAAW;IACzB,OAAO,CAAC,kBAAkB,CAAgB;IAC1C,OAAO,CAAC,WAAW,CAAgB;IACnC,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,SAAS,CAAS;IAC1B,OAAO,CAAC,gBAAgB,CAAqD;IAC7E,OAAO,CAAC,UAAU,CAAC,CAAoF;gBAE3F,OAAO,GAAE,gBAAqB;YAmB5B,kBAAkB;YAiClB,gBAAgB;IAajB,KAAK,CAAC,OAAO,EAAE,OAAO,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,GAAG,OAAO,CAAC,QAAQ,CAAC;CA4F5E"}
|
package/dist/prerender.js
CHANGED
|
@@ -35,6 +35,7 @@ const createHtmlTemplate = async ({
|
|
|
35
35
|
<html lang="en" data-theme="light">
|
|
36
36
|
<head>
|
|
37
37
|
<meta charset="UTF-8" />
|
|
38
|
+
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; img-src 'self' data: https:; style-src 'self' 'unsafe-inline'; script-src 'self' 'unsafe-inline'; connect-src 'self' https: http://localhost:* http://127.0.0.1:*; font-src 'self' data: https:;" />
|
|
38
39
|
<link rel="icon" type="image/svg+xml" href="/api/logo" />
|
|
39
40
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
40
41
|
<title>${title}</title>
|
|
@@ -300,12 +301,19 @@ class WebsitePrerender {
|
|
|
300
301
|
this.siteTitle = options.siteTitle || "My Personal Website";
|
|
301
302
|
this.copyright = options.copyright || "2026 My Personal Website";
|
|
302
303
|
this.templateRenderer = options.templateRenderer || createHtmlTemplate;
|
|
304
|
+
this.apiHandler = options.apiHandler;
|
|
303
305
|
}
|
|
304
|
-
async fetchStaticDetails(apiUrl) {
|
|
306
|
+
async fetchStaticDetails(apiUrl, env) {
|
|
305
307
|
try {
|
|
306
|
-
|
|
307
|
-
if (
|
|
308
|
-
const
|
|
308
|
+
let data;
|
|
309
|
+
if (this.apiHandler) {
|
|
310
|
+
const res = await this.apiHandler.fetch(new Request(`${apiUrl}/api/static`), env, {});
|
|
311
|
+
if (res.ok) data = await res.json();
|
|
312
|
+
} else {
|
|
313
|
+
const res = await fetch(`${apiUrl}/api/static`);
|
|
314
|
+
if (res.ok) data = await res.json();
|
|
315
|
+
}
|
|
316
|
+
if (data) {
|
|
309
317
|
this.siteTitle = data.siteTitle || this.siteTitle;
|
|
310
318
|
this.copyright = data.copyright || this.copyright;
|
|
311
319
|
const normalizeUrl = (url) => {
|
|
@@ -323,10 +331,15 @@ class WebsitePrerender {
|
|
|
323
331
|
} catch (e) {
|
|
324
332
|
}
|
|
325
333
|
}
|
|
326
|
-
async fetchAboutMeData(apiUrl) {
|
|
334
|
+
async fetchAboutMeData(apiUrl, env) {
|
|
327
335
|
try {
|
|
328
|
-
|
|
329
|
-
|
|
336
|
+
if (this.apiHandler) {
|
|
337
|
+
const res = await this.apiHandler.fetch(new Request(`${apiUrl}/api/aboutme`), env, {});
|
|
338
|
+
if (res.ok) return await res.json();
|
|
339
|
+
} else {
|
|
340
|
+
const res = await fetch(`${apiUrl}/api/aboutme`);
|
|
341
|
+
if (res.ok) return await res.json();
|
|
342
|
+
}
|
|
330
343
|
} catch (e) {
|
|
331
344
|
}
|
|
332
345
|
return null;
|
|
@@ -334,9 +347,12 @@ class WebsitePrerender {
|
|
|
334
347
|
async fetch(request, env, ctx) {
|
|
335
348
|
const apiUrl = env?.API_URL || "https://api.example.com";
|
|
336
349
|
const baseSiteUrl = env?.BASE_SITE_URL || "https://site.example.com";
|
|
337
|
-
await this.fetchStaticDetails(apiUrl);
|
|
350
|
+
await this.fetchStaticDetails(apiUrl, env);
|
|
338
351
|
const url = new URL(request.url);
|
|
339
352
|
if (url.pathname.startsWith("/api/")) {
|
|
353
|
+
if (this.apiHandler) {
|
|
354
|
+
return this.apiHandler.fetch(request, env, ctx);
|
|
355
|
+
}
|
|
340
356
|
return fetch(`${apiUrl}${url.pathname}${url.search}`);
|
|
341
357
|
}
|
|
342
358
|
if (url.pathname.startsWith("/images/")) {
|
|
@@ -347,12 +363,16 @@ class WebsitePrerender {
|
|
|
347
363
|
return new Response(image.body, {
|
|
348
364
|
headers: {
|
|
349
365
|
"content-type": image.httpMetadata?.contentType || "image/jpeg",
|
|
350
|
-
"cache-control": "public, max-age=86400"
|
|
366
|
+
"cache-control": "public, max-age=86400",
|
|
367
|
+
"access-control-allow-origin": "*"
|
|
351
368
|
}
|
|
352
369
|
});
|
|
353
370
|
}
|
|
354
371
|
} catch (e) {
|
|
355
372
|
}
|
|
373
|
+
if (this.apiHandler) {
|
|
374
|
+
return this.apiHandler.fetch(request, env, ctx);
|
|
375
|
+
}
|
|
356
376
|
return new Response("Not found", { status: 404 });
|
|
357
377
|
}
|
|
358
378
|
if (url.pathname.startsWith("/assets/") || url.pathname === "/logo.png" || url.pathname === "/favicon.ico") {
|
|
@@ -389,7 +409,7 @@ class WebsitePrerender {
|
|
|
389
409
|
}
|
|
390
410
|
let hydrationScript = "";
|
|
391
411
|
if (url.pathname === "/about-me" || url.pathname === "/about-me/") {
|
|
392
|
-
const aboutMeData = await this.fetchAboutMeData(apiUrl);
|
|
412
|
+
const aboutMeData = await this.fetchAboutMeData(apiUrl, env);
|
|
393
413
|
if (aboutMeData) {
|
|
394
414
|
hydrationScript = `<script>window.__HYDRATION_DATA__ = ${JSON.stringify(aboutMeData)};<\/script>`;
|
|
395
415
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/shared/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAiB,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7E,cAAc,SAAS,CAAC;AAkBxB,wBAAsB,gBAAgB,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,GAAG,OAAO,CAAC,aAAa,CAAC,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/shared/config/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAiB,aAAa,EAAE,MAAM,SAAS,CAAC;AAE7E,cAAc,SAAS,CAAC;AAkBxB,wBAAsB,gBAAgB,CAAC,KAAK,CAAC,EAAE,OAAO,CAAC,oBAAoB,CAAC,GAAG,OAAO,CAAC,aAAa,CAAC,CAsBpG;AAED,wBAAsB,aAAa,IAAI,OAAO,CAAC,aAAa,CAAC,CAW5D;AAED,wBAAgB,SAAS,IAAI,aAAa,CAEzC"}
|
package/dist/shared.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { S, g, i, r } from "./chunks/site-store-
|
|
2
|
-
import { R, T, W, b, c, g as g2, r as r2 } from "./chunks/template-
|
|
1
|
+
import { S, g, i, r } from "./chunks/site-store-CGV9c2DI.js";
|
|
2
|
+
import { R, T, W, b, c, g as g2, r as r2 } from "./chunks/template-Ccxil4s-.js";
|
|
3
3
|
export {
|
|
4
4
|
R as Router,
|
|
5
5
|
S as SiteStore,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui/footer/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAa,MAAM,KAAK,CAAC;AAG5C,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAInE,qBACa,eAAgB,SAAQ,UAAU;IAC7C,MAAM,CAAC,MAAM,0BAAgB;IAG7B,QAAQ,CAAC,SAAS,SAAM;IAGxB,QAAQ,CAAC,WAAW,EAAE,WAAW,EAAE,CAAM;IAEzC,MAAM;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ui/footer/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAa,MAAM,KAAK,CAAC;AAG5C,OAAO,EAAE,WAAW,EAAE,MAAM,sCAAsC,CAAC;AAInE,qBACa,eAAgB,SAAQ,UAAU;IAC7C,MAAM,CAAC,MAAM,0BAAgB;IAG7B,QAAQ,CAAC,SAAS,SAAM;IAGxB,QAAQ,CAAC,WAAW,EAAE,WAAW,EAAE,CAAM;IAEzC,MAAM;CA2BP"}
|
package/dist/ui.js
CHANGED
package/package.json
CHANGED