@chankay/site-shell 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/PLAN.md +1 -1
- package/README.md +25 -7
- package/dist/constants.d.ts +0 -1
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +0 -1
- package/dist/render/footer.d.ts.map +1 -1
- package/dist/render/footer.js +2 -8
- package/dist/render/navbar.d.ts.map +1 -1
- package/dist/render/navbar.js +2 -8
- package/dist/render/styles.d.ts.map +1 -1
- package/dist/render/styles.js +4 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
package/PLAN.md
CHANGED
|
@@ -97,7 +97,7 @@ Do not add config parsing, remote data loading, schema versioning, or adapter la
|
|
|
97
97
|
Release trigger:
|
|
98
98
|
|
|
99
99
|
- create and publish a GitHub Release with tag prefix `site-shell-v*`
|
|
100
|
-
- example tag: `site-shell-
|
|
100
|
+
- example tag: `site-shell-v2.0.0`
|
|
101
101
|
|
|
102
102
|
Release workflow responsibilities:
|
|
103
103
|
|
package/README.md
CHANGED
|
@@ -8,6 +8,7 @@ Static Web Component shell for Chankay demo sites.
|
|
|
8
8
|
- fixed Chankay navbar and footer for demo sites
|
|
9
9
|
- shared token stylesheet for host apps
|
|
10
10
|
- browser-ready registration entry for static sites
|
|
11
|
+
- brand logo slot that reads from `--site-shell-brand-logo-url` or `/favicon/website-logo.svg`
|
|
11
12
|
|
|
12
13
|
## Package outputs
|
|
13
14
|
|
|
@@ -29,8 +30,22 @@ pnpm add @chankay/site-shell
|
|
|
29
30
|
- bundled demos: install the package and use either the custom element or `mountSiteShell()`
|
|
30
31
|
|
|
31
32
|
Always pin an explicit version. Do not consume `latest` implicitly.
|
|
33
|
+
Install `@chankay/brand-assets` alongside `@chankay/site-shell` when the host demo needs the shared favicon and logo files.
|
|
32
34
|
|
|
33
|
-
### 2.
|
|
35
|
+
### 2. Provide brand assets in the host app
|
|
36
|
+
|
|
37
|
+
The shell no longer embeds the brand logo as a data URL.
|
|
38
|
+
|
|
39
|
+
Preferred host setup:
|
|
40
|
+
|
|
41
|
+
- copy `@chankay/brand-assets/favicon/website-logo.svg` to `/favicon/website-logo.svg`
|
|
42
|
+
- copy the favicon files you need from `@chankay/brand-assets/favicon/*` into `/favicon/`
|
|
43
|
+
|
|
44
|
+
Optional override:
|
|
45
|
+
|
|
46
|
+
- set `--site-shell-brand-logo-url` on the custom element or a parent scope when the logo lives at a different static path
|
|
47
|
+
|
|
48
|
+
### 3. Reserve shell slots in the host demo
|
|
34
49
|
|
|
35
50
|
For the clearest layout control, reserve separate header and footer slots in the demo page:
|
|
36
51
|
|
|
@@ -42,16 +57,17 @@ For the clearest layout control, reserve separate header and footer slots in the
|
|
|
42
57
|
|
|
43
58
|
You can also use a single element with `position="both"` when the host page does not need separate mounting points.
|
|
44
59
|
|
|
45
|
-
###
|
|
60
|
+
### 4. Static demo integration
|
|
46
61
|
|
|
47
62
|
```html
|
|
48
63
|
<link
|
|
49
64
|
rel="stylesheet"
|
|
50
|
-
href="https://cdn.jsdelivr.net/npm/@chankay/site-shell@
|
|
65
|
+
href="https://cdn.jsdelivr.net/npm/@chankay/site-shell@2.0.0/dist/tokens.css"
|
|
51
66
|
/>
|
|
52
67
|
<script type="module">
|
|
53
|
-
import "https://cdn.jsdelivr.net/npm/@chankay/site-shell@
|
|
68
|
+
import "https://cdn.jsdelivr.net/npm/@chankay/site-shell@2.0.0/dist/register.js"
|
|
54
69
|
</script>
|
|
70
|
+
<link rel="icon" href="/favicon/favicon.ico" sizes="32x32" />
|
|
55
71
|
|
|
56
72
|
<chankay-site-shell
|
|
57
73
|
position="header"
|
|
@@ -62,12 +78,14 @@ You can also use a single element with `position="both"` when the host page does
|
|
|
62
78
|
<chankay-site-shell position="footer"></chankay-site-shell>
|
|
63
79
|
```
|
|
64
80
|
|
|
65
|
-
###
|
|
81
|
+
### 5. Bundled demo integration
|
|
66
82
|
|
|
67
83
|
```ts
|
|
68
84
|
import "@chankay/site-shell/register"
|
|
69
|
-
|
|
70
85
|
import { mountSiteShell } from "@chankay/site-shell"
|
|
86
|
+
import logoUrl from "@chankay/brand-assets/favicon/website-logo.svg?url"
|
|
87
|
+
|
|
88
|
+
document.documentElement.style.setProperty("--site-shell-brand-logo-url", `url("${logoUrl}")`)
|
|
71
89
|
|
|
72
90
|
mountSiteShell({
|
|
73
91
|
target: "#demo-shell-header",
|
|
@@ -82,7 +100,7 @@ mountSiteShell({
|
|
|
82
100
|
})
|
|
83
101
|
```
|
|
84
102
|
|
|
85
|
-
###
|
|
103
|
+
### 6. Optional shared token usage
|
|
86
104
|
|
|
87
105
|
Import `@chankay/site-shell/tokens.css` into the host demo when you want host content to reuse the same palette and spacing baseline as the shell.
|
|
88
106
|
|
package/dist/constants.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export declare const SITE_SHELL_TAG_NAME = "chankay-site-shell";
|
|
2
2
|
export declare const MAIN_SITE_URL = "https://chankay.com";
|
|
3
3
|
export declare const BRAND_NAME = "Chan Kay";
|
|
4
|
-
export declare const BRAND_LOGO_URL = "https://chankay.com/favicon/website-logo.svg";
|
|
5
4
|
export declare const POSTS_URL = "https://chankay.com/posts";
|
|
6
5
|
export declare const DEMOS_URL = "https://chankay.com/demos";
|
|
7
6
|
export declare const GITHUB_ICON_SVG: string;
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,uBAAuB,CAAA;AAEvD,eAAO,MAAM,aAAa,wBAAwB,CAAA;AAClD,eAAO,MAAM,UAAU,aAAa,CAAA;AACpC,eAAO,MAAM,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,mBAAmB,uBAAuB,CAAA;AAEvD,eAAO,MAAM,aAAa,wBAAwB,CAAA;AAClD,eAAO,MAAM,UAAU,aAAa,CAAA;AACpC,eAAO,MAAM,SAAS,8BAA2B,CAAA;AACjD,eAAO,MAAM,SAAS,8BAA2B,CAAA;AAEjD,eAAO,MAAM,eAAe,QAOpB,CAAA"}
|
package/dist/constants.js
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export const SITE_SHELL_TAG_NAME = "chankay-site-shell";
|
|
2
2
|
export const MAIN_SITE_URL = "https://chankay.com";
|
|
3
3
|
export const BRAND_NAME = "Chan Kay";
|
|
4
|
-
export const BRAND_LOGO_URL = `${MAIN_SITE_URL}/favicon/website-logo.svg`;
|
|
5
4
|
export const POSTS_URL = `${MAIN_SITE_URL}/posts`;
|
|
6
5
|
export const DEMOS_URL = `${MAIN_SITE_URL}/demos`;
|
|
7
6
|
export const GITHUB_ICON_SVG = `
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../src/render/footer.ts"],"names":[],"mappings":"AAEA,wBAAgB,YAAY,IAAI,MAAM,
|
|
1
|
+
{"version":3,"file":"footer.d.ts","sourceRoot":"","sources":["../../src/render/footer.ts"],"names":[],"mappings":"AAEA,wBAAgB,YAAY,IAAI,MAAM,CAmBrC"}
|
package/dist/render/footer.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BRAND_NAME, MAIN_SITE_URL } from "../constants.js";
|
|
2
2
|
export function renderFooter() {
|
|
3
3
|
const currentYear = new Date().getFullYear();
|
|
4
4
|
return `
|
|
@@ -6,13 +6,7 @@ export function renderFooter() {
|
|
|
6
6
|
<div class="site-shell-container site-shell-footer-inner">
|
|
7
7
|
<div class="site-shell-footer-bar">
|
|
8
8
|
<a class="site-shell-brand" href="${MAIN_SITE_URL}" aria-label="${BRAND_NAME} home">
|
|
9
|
-
<
|
|
10
|
-
class="site-shell-brand-logo"
|
|
11
|
-
src="${BRAND_LOGO_URL}"
|
|
12
|
-
alt="${BRAND_NAME} logo"
|
|
13
|
-
loading="lazy"
|
|
14
|
-
decoding="async"
|
|
15
|
-
/>
|
|
9
|
+
<span class="site-shell-brand-logo" aria-hidden="true"></span>
|
|
16
10
|
<span class="site-shell-brand-copy">
|
|
17
11
|
<span class="site-shell-brand-name">${BRAND_NAME}</span>
|
|
18
12
|
</span>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"navbar.d.ts","sourceRoot":"","sources":["../../src/render/navbar.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"navbar.d.ts","sourceRoot":"","sources":["../../src/render/navbar.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAA;AAiCtD,wBAAgB,YAAY,CAAC,UAAU,EAAE,mBAAmB,GAAG,MAAM,CAoBpE"}
|
package/dist/render/navbar.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { BRAND_NAME, DEMOS_URL, GITHUB_ICON_SVG, MAIN_SITE_URL, POSTS_URL } from "../constants.js";
|
|
2
2
|
import { escapeHtml } from "../utils.js";
|
|
3
3
|
function renderSiteName(siteName) {
|
|
4
4
|
if (!siteName) {
|
|
@@ -31,13 +31,7 @@ export function renderNavbar(attributes) {
|
|
|
31
31
|
<header class="site-shell-header">
|
|
32
32
|
<div class="site-shell-container site-shell-header-inner">
|
|
33
33
|
<a class="site-shell-brand" href="${MAIN_SITE_URL}" aria-label="${BRAND_NAME} home">
|
|
34
|
-
<
|
|
35
|
-
class="site-shell-brand-logo"
|
|
36
|
-
src="${BRAND_LOGO_URL}"
|
|
37
|
-
alt="${BRAND_NAME} logo"
|
|
38
|
-
loading="lazy"
|
|
39
|
-
decoding="async"
|
|
40
|
-
/>
|
|
34
|
+
<span class="site-shell-brand-logo" aria-hidden="true"></span>
|
|
41
35
|
<span class="site-shell-brand-copy">
|
|
42
36
|
<span class="site-shell-brand-name">${BRAND_NAME}</span>
|
|
43
37
|
${renderSiteName(attributes.siteName)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/render/styles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../src/render/styles.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,QA2LpB,CAAA"}
|
package/dist/render/styles.js
CHANGED
|
@@ -75,7 +75,10 @@ a {
|
|
|
75
75
|
height: 2rem;
|
|
76
76
|
flex: none;
|
|
77
77
|
display: block;
|
|
78
|
-
|
|
78
|
+
background-image: var(--site-shell-brand-logo-url, url("/favicon/website-logo.svg"));
|
|
79
|
+
background-position: center;
|
|
80
|
+
background-repeat: no-repeat;
|
|
81
|
+
background-size: contain;
|
|
79
82
|
}
|
|
80
83
|
|
|
81
84
|
.site-shell-brand-copy {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/constants.ts","../src/types.ts","../src/render/footer.ts","../src/utils.ts","../src/render/navbar.ts","../src/render/index.ts","../src/render/styles.ts","../src/custom-element/SiteShellElement.ts","../src/custom-element/register.ts","../src/mountSiteShell.ts","../src/index.ts","../src/register.ts","../../../node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@19.1.6_@types+react@19.1.8/node_modules/@types/react-dom/index.d.ts"],"fileIdsList":[[74],[72,73],[63,65,66],[60,67],[60,61,67,68,69],[60,61,63,68],[68],[60],[61,62,64],[60,61,63],[61]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"e99ad88091df61d0a77fd1282e00111210fda807fe4d7519762bb57d7bad0bae","signature":"2e45236dda72d70cea5bf3e40596e385d1eb421d50b6fc10671369e838314c8f","impliedFormat":99},{"version":"edcc3f8b316386debcb9f008b6194b9d3c33998696cb1d5c235205ca2e6f558c","signature":"9a8a559bcb086f4bc3e333149ef71dff46b93cf0773cdae8c0b4c5faf27be804","impliedFormat":99},{"version":"6862d3cba11fced61c414545cab17b1530813711de7c63d2cdf0291727a0d84a","signature":"acbe72ae3352fbad84fa443925f7fce26f117ed4dfc2113b4b0a1e426f6db830","impliedFormat":99},{"version":"0edff3826ef7e28ff6b461a29aef8118d84396fb0d492e79e22de5c7d7058a86","signature":"af903fe20d109cf03989d0502fe266f9163ca46b829e2641a00f1b70a6b1da97","impliedFormat":99},{"version":"7582d545fe1e8869cf4eee7a90390d08f5f44f855ae1a88b7831f9b87122a21d","signature":"d0cb8e659e3122d28650dfc6dac30bd04fe89282c60ddd0a923893fc13c89014","impliedFormat":99},{"version":"c901a742c0b9d9cf9ed0dd34b09ff48fd5fe564af884a076d8eeac9440b721aa","signature":"b1698bf0f700ba394e1070b75acd7dc79a3df34eda8d5e20ed6f4bf235b376c4","impliedFormat":99},{"version":"e239dc454f783e4f3428fc201f72d196973cf7f18d1590c37d05f69f60a9c6e2","signature":"e65ad01f6a564b889685ba9c6a821ce2da26ec29ee0c5747b94e8a2ab7232906","impliedFormat":99},{"version":"a1358d061f8c037d8b58d379010ae67e59d4e5d181442ba1999ae38306ef82d8","signature":"088faa800f54734d60d92ef643a136ca1faccf235d4032737084056596c49012","impliedFormat":99},{"version":"fd4a05e86f22e1a4c02502df6213a1634171d24ac6803686370f08892dde0240","signature":"614de76e71772194492b6719ce9b40b9142a2a38b2e9ab08468b6ed905ee8d47","impliedFormat":99},{"version":"99bc394e6b9f0571550f399f66ac653bbde200fb48bc57cbb0b56e8aff5ce033","signature":"3a1bd1b90385654347f09e3598b6fac29728f0bb1d8a8204ab6532c3174edb26","impliedFormat":99},{"version":"c6888953885c07f4d746e4818fc0cdbe6ad718064ff1aa3e39dbf1e289c18353","signature":"5de79f98ad5f1b2d90a277293dc1ee16fa0d54e1bf8e9473376b5903d061860d","impliedFormat":99},{"version":"66991b37b32262a827789d574ad27bf5fa4c988ba6d6abcacfb522c50e51d073","signature":"24aa3752a628df646041680962c1cf0da867913e782db99318ff4a755b2a6ac4","impliedFormat":99},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8","impliedFormat":1}],"root":[[60,71]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[75,1],[74,2],[67,3],[68,4],[70,5],[69,6],[71,7],[62,8],[65,9],[64,10],[63,11]],"latestChangedDtsFile":"./register.d.ts","version":"5.8.3"}
|
|
1
|
+
{"fileNames":["../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.8.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/constants.ts","../src/types.ts","../src/render/footer.ts","../src/utils.ts","../src/render/navbar.ts","../src/render/index.ts","../src/render/styles.ts","../src/custom-element/SiteShellElement.ts","../src/custom-element/register.ts","../src/mountSiteShell.ts","../src/index.ts","../src/register.ts","../../../node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/global.d.ts","../../../node_modules/.pnpm/csstype@3.1.3/node_modules/csstype/index.d.ts","../../../node_modules/.pnpm/@types+react@19.1.8/node_modules/@types/react/index.d.ts","../../../node_modules/.pnpm/@types+react-dom@19.1.6_@types+react@19.1.8/node_modules/@types/react-dom/index.d.ts"],"fileIdsList":[[74],[72,73],[63,65,66],[60,67],[60,61,67,68,69],[60,61,63,68],[68],[60],[61,62,64],[60,61,63],[61]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"acd8a243088d0e6386098acc821d36168a9ba84abf3d957427f7cd57b34097a0","signature":"cb635b91d14886415b133d14773ad2f054ba6eeafd6832ea0b05cca9cef23f12","impliedFormat":99},{"version":"edcc3f8b316386debcb9f008b6194b9d3c33998696cb1d5c235205ca2e6f558c","signature":"9a8a559bcb086f4bc3e333149ef71dff46b93cf0773cdae8c0b4c5faf27be804","impliedFormat":99},{"version":"a6332c5cc52cf466c98aecc76e6f0ee57a3b66c0dd8bf12ca7efd43acabe9bb4","signature":"acbe72ae3352fbad84fa443925f7fce26f117ed4dfc2113b4b0a1e426f6db830","impliedFormat":99},{"version":"0edff3826ef7e28ff6b461a29aef8118d84396fb0d492e79e22de5c7d7058a86","signature":"af903fe20d109cf03989d0502fe266f9163ca46b829e2641a00f1b70a6b1da97","impliedFormat":99},{"version":"c8f9feeff68ba0a550b2fbabc42bef6658b4a3f05d464c23de43cdc51d3d6b06","signature":"d0cb8e659e3122d28650dfc6dac30bd04fe89282c60ddd0a923893fc13c89014","impliedFormat":99},{"version":"c901a742c0b9d9cf9ed0dd34b09ff48fd5fe564af884a076d8eeac9440b721aa","signature":"b1698bf0f700ba394e1070b75acd7dc79a3df34eda8d5e20ed6f4bf235b376c4","impliedFormat":99},{"version":"3e09a49592b509622ad02a33e459f1d21b12692163334f6e6446beb8783b7ed3","signature":"e65ad01f6a564b889685ba9c6a821ce2da26ec29ee0c5747b94e8a2ab7232906","impliedFormat":99},{"version":"a1358d061f8c037d8b58d379010ae67e59d4e5d181442ba1999ae38306ef82d8","signature":"088faa800f54734d60d92ef643a136ca1faccf235d4032737084056596c49012","impliedFormat":99},{"version":"fd4a05e86f22e1a4c02502df6213a1634171d24ac6803686370f08892dde0240","signature":"614de76e71772194492b6719ce9b40b9142a2a38b2e9ab08468b6ed905ee8d47","impliedFormat":99},{"version":"99bc394e6b9f0571550f399f66ac653bbde200fb48bc57cbb0b56e8aff5ce033","signature":"3a1bd1b90385654347f09e3598b6fac29728f0bb1d8a8204ab6532c3174edb26","impliedFormat":99},{"version":"c6888953885c07f4d746e4818fc0cdbe6ad718064ff1aa3e39dbf1e289c18353","signature":"5de79f98ad5f1b2d90a277293dc1ee16fa0d54e1bf8e9473376b5903d061860d","impliedFormat":99},{"version":"66991b37b32262a827789d574ad27bf5fa4c988ba6d6abcacfb522c50e51d073","signature":"24aa3752a628df646041680962c1cf0da867913e782db99318ff4a755b2a6ac4","impliedFormat":99},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"d4d7d3f832882a4b2d611a7eaaa80c780c3342b5732090130fa9af4a40bd051e","impliedFormat":1},{"version":"a0acca63c9e39580f32a10945df231815f0fe554c074da96ba6564010ffbd2d8","impliedFormat":1}],"root":[[60,71]],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"module":199,"noUncheckedIndexedAccess":true,"outDir":"./","rootDir":"../src","skipLibCheck":true,"strict":true,"target":9,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[75,1],[74,2],[67,3],[68,4],[70,5],[69,6],[71,7],[62,8],[65,9],[64,10],[63,11]],"latestChangedDtsFile":"./register.d.ts","version":"5.8.3"}
|