nebula-cms 0.1.0 → 0.1.3
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/.github/workflows/ci.yml +5 -9
- package/.github/workflows/publish.yml +34 -0
- package/package.json +5 -1
- package/playground/node_modules/.bin/astro +2 -2
- package/playground/node_modules/.vite/deps/@astrojs_svelte_client__js.js +20 -15
- package/playground/node_modules/.vite/deps/@astrojs_svelte_client__js.js.map +1 -1
- package/playground/node_modules/.vite/deps/_metadata.json +43 -43
- package/playground/node_modules/.vite/deps/{chunk-GKDKFWC5.js → chunk-FPEUJ7DG.js} +2 -2
- package/playground/node_modules/.vite/deps/{chunk-ALJIOON6.js → chunk-MHDZ3SK7.js} +10 -10
- package/playground/node_modules/.vite/deps/{chunk-G3C2FXJT.js → chunk-RBDTDTPY.js} +2 -2
- package/playground/node_modules/.vite/deps/{chunk-JICYXBFU.js → chunk-RJGEXL5C.js} +4 -4
- package/playground/node_modules/.vite/deps/{chunk-KCUTL6DD.js → chunk-YL4MIWGJ.js} +62 -62
- package/playground/node_modules/.vite/deps/{chunk-KCUTL6DD.js.map → chunk-YL4MIWGJ.js.map} +3 -3
- package/playground/node_modules/.vite/deps/{chunk-HNCLEOC5.js → chunk-ZOV3DWEJ.js} +43 -43
- package/playground/node_modules/.vite/deps/chunk-ZOV3DWEJ.js.map +7 -0
- package/playground/node_modules/.vite/deps/svelte.js +4 -4
- package/playground/node_modules/.vite/deps/svelte_attachments.js +4 -4
- package/playground/node_modules/.vite/deps/svelte_events.js +2 -2
- package/playground/node_modules/.vite/deps/svelte_internal_client.js +4 -4
- package/playground/node_modules/.vite/deps/svelte_legacy.js +3 -3
- package/playground/node_modules/.vite/deps/svelte_motion.js +6 -6
- package/playground/node_modules/.vite/deps/svelte_reactivity.js +6 -6
- package/playground/node_modules/.vite/deps/svelte_reactivity_window.js +5 -5
- package/playground/node_modules/.vite/deps/svelte_store.js +1 -1
- package/.claude/settings.local.json +0 -42
- package/playground/.claude/settings.local.json +0 -5
- package/playground/node_modules/.bin/rollup +0 -21
- package/playground/node_modules/.bin/tsc +0 -21
- package/playground/node_modules/.bin/tsserver +0 -21
- package/playground/node_modules/.bin/vite +0 -21
- package/playground/node_modules/.vite/_svelte_metadata.json +0 -1
- package/playground/node_modules/.vite/deps/chunk-HNCLEOC5.js.map +0 -7
- /package/playground/node_modules/.vite/deps/{chunk-GKDKFWC5.js.map → chunk-FPEUJ7DG.js.map} +0 -0
- /package/playground/node_modules/.vite/deps/{chunk-ALJIOON6.js.map → chunk-MHDZ3SK7.js.map} +0 -0
- /package/playground/node_modules/.vite/deps/{chunk-G3C2FXJT.js.map → chunk-RBDTDTPY.js.map} +0 -0
- /package/playground/node_modules/.vite/deps/{chunk-JICYXBFU.js.map → chunk-RJGEXL5C.js.map} +0 -0
package/.github/workflows/ci.yml
CHANGED
|
@@ -9,23 +9,19 @@ jobs:
|
|
|
9
9
|
test:
|
|
10
10
|
runs-on: ubuntu-latest
|
|
11
11
|
steps:
|
|
12
|
-
- uses: actions/checkout@
|
|
13
|
-
|
|
14
|
-
- uses:
|
|
15
|
-
|
|
16
|
-
- uses: actions/setup-node@v4
|
|
12
|
+
- uses: actions/checkout@v6
|
|
13
|
+
- uses: pnpm/action-setup@v5
|
|
14
|
+
- uses: actions/setup-node@v6
|
|
17
15
|
with:
|
|
18
|
-
node-version:
|
|
16
|
+
node-version: 24
|
|
19
17
|
cache: pnpm
|
|
18
|
+
registry-url: https://registry.npmjs.org
|
|
20
19
|
|
|
21
20
|
- name: Install dependencies
|
|
22
21
|
run: pnpm install
|
|
23
|
-
|
|
24
22
|
- name: Install Playwright browsers
|
|
25
23
|
run: pnpm exec playwright install --with-deps chromium
|
|
26
|
-
|
|
27
24
|
- name: Lint
|
|
28
25
|
run: pnpm lint
|
|
29
|
-
|
|
30
26
|
- name: Test
|
|
31
27
|
run: pnpm test
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
name: Publish Package
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write # Required for OIDC
|
|
10
|
+
contents: read
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
publish:
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
steps:
|
|
16
|
+
- uses: actions/checkout@v6
|
|
17
|
+
- uses: pnpm/action-setup@v5
|
|
18
|
+
- uses: actions/setup-node@v6
|
|
19
|
+
with:
|
|
20
|
+
node-version: 24
|
|
21
|
+
cache: pnpm
|
|
22
|
+
registry-url: https://registry.npmjs.org
|
|
23
|
+
- name: Install dependencies
|
|
24
|
+
run: pnpm install
|
|
25
|
+
- name: Install Playwright browsers
|
|
26
|
+
run: pnpm exec playwright install --with-deps chromium
|
|
27
|
+
- name: Lint
|
|
28
|
+
run: pnpm lint
|
|
29
|
+
- name: Test
|
|
30
|
+
run: pnpm test
|
|
31
|
+
- name: Build
|
|
32
|
+
run: pnpm build
|
|
33
|
+
- name: Publish
|
|
34
|
+
run: pnpm publish --no-git-checks
|
package/package.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nebula-cms",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "A native CMS for Astro",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/Snugug/nebula-cms"
|
|
9
|
+
},
|
|
6
10
|
"exports": {
|
|
7
11
|
".": {
|
|
8
12
|
"types": "./dist/astro/index.d.ts",
|
|
@@ -10,9 +10,9 @@ case `uname` in
|
|
|
10
10
|
esac
|
|
11
11
|
|
|
12
12
|
if [ -z "$NODE_PATH" ]; then
|
|
13
|
-
export NODE_PATH="/
|
|
13
|
+
export NODE_PATH="/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/astro@6.1.0_rollup@4.60.0_typescript@5.9.3/node_modules/astro/bin/node_modules:/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/astro@6.1.0_rollup@4.60.0_typescript@5.9.3/node_modules/astro/node_modules:/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/astro@6.1.0_rollup@4.60.0_typescript@5.9.3/node_modules:/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/node_modules"
|
|
14
14
|
else
|
|
15
|
-
export NODE_PATH="/
|
|
15
|
+
export NODE_PATH="/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/astro@6.1.0_rollup@4.60.0_typescript@5.9.3/node_modules/astro/bin/node_modules:/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/astro@6.1.0_rollup@4.60.0_typescript@5.9.3/node_modules/astro/node_modules:/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/astro@6.1.0_rollup@4.60.0_typescript@5.9.3/node_modules:/home/runner/work/nebula-cms/nebula-cms/node_modules/.pnpm/node_modules:$NODE_PATH"
|
|
16
16
|
fi
|
|
17
17
|
if [ -x "$basedir/node" ]; then
|
|
18
18
|
exec "$basedir/node" "$basedir/../astro/bin/astro.mjs" "$@"
|
|
@@ -1,18 +1,14 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createRawSnippet
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-ZOV3DWEJ.js";
|
|
4
4
|
import "./chunk-CNYJBM5F.js";
|
|
5
5
|
import {
|
|
6
6
|
hydrate,
|
|
7
7
|
mount,
|
|
8
8
|
unmount
|
|
9
|
-
} from "./chunk-
|
|
10
|
-
import "./chunk-
|
|
11
|
-
import
|
|
12
|
-
proxy,
|
|
13
|
-
strict_equals,
|
|
14
|
-
tag_proxy
|
|
15
|
-
} from "./chunk-KCUTL6DD.js";
|
|
9
|
+
} from "./chunk-MHDZ3SK7.js";
|
|
10
|
+
import "./chunk-RBDTDTPY.js";
|
|
11
|
+
import "./chunk-YL4MIWGJ.js";
|
|
16
12
|
import "./chunk-DBPNBGEI.js";
|
|
17
13
|
import "./chunk-ZP4UNCSN.js";
|
|
18
14
|
import "./chunk-BUSYA2B4.js";
|
|
@@ -27,34 +23,43 @@ var client_svelte_default = (element) => {
|
|
|
27
23
|
let renderFns = {};
|
|
28
24
|
for (const [key, value] of Object.entries(slotted)) {
|
|
29
25
|
_$$slots ??= {};
|
|
30
|
-
if (
|
|
26
|
+
if (key === "default") {
|
|
31
27
|
_$$slots.default = true;
|
|
32
|
-
children = createRawSnippet(() => ({
|
|
28
|
+
children = createRawSnippet(() => ({
|
|
29
|
+
render: () => `<astro-slot>${value}</astro-slot>`
|
|
30
|
+
}));
|
|
33
31
|
} else {
|
|
34
32
|
_$$slots[key] = createRawSnippet(() => ({
|
|
35
33
|
render: () => `<astro-slot name="${key}">${value}</astro-slot>`
|
|
36
34
|
}));
|
|
37
35
|
}
|
|
38
|
-
if (
|
|
39
|
-
renderFns.children = createRawSnippet(() => ({
|
|
36
|
+
if (key === "default") {
|
|
37
|
+
renderFns.children = createRawSnippet(() => ({
|
|
38
|
+
render: () => `<astro-slot>${value}</astro-slot>`
|
|
39
|
+
}));
|
|
40
40
|
} else {
|
|
41
41
|
renderFns[key] = createRawSnippet(() => ({
|
|
42
42
|
render: () => `<astro-slot name="${key}">${value}</astro-slot>`
|
|
43
43
|
}));
|
|
44
44
|
}
|
|
45
45
|
}
|
|
46
|
-
const resolvedProps = {
|
|
46
|
+
const resolvedProps = {
|
|
47
|
+
...props,
|
|
48
|
+
children,
|
|
49
|
+
$$slots: _$$slots,
|
|
50
|
+
...renderFns
|
|
51
|
+
};
|
|
47
52
|
if (existingApplications.has(element)) {
|
|
48
53
|
existingApplications.get(element).setProps(resolvedProps);
|
|
49
54
|
} else {
|
|
50
|
-
const component = createComponent(Component, element, resolvedProps,
|
|
55
|
+
const component = createComponent(Component, element, resolvedProps, client !== "only");
|
|
51
56
|
existingApplications.set(element, component);
|
|
52
57
|
element.addEventListener("astro:unmount", () => component.destroy(), { once: true });
|
|
53
58
|
}
|
|
54
59
|
};
|
|
55
60
|
};
|
|
56
61
|
function createComponent(Component, target, props, shouldHydrate) {
|
|
57
|
-
let propsState =
|
|
62
|
+
let propsState = $state(props);
|
|
58
63
|
const bootstrap = shouldHydrate ? hydrate : mount;
|
|
59
64
|
if (!shouldHydrate) {
|
|
60
65
|
target.innerHTML = "";
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
"version": 3,
|
|
3
3
|
"sources": ["../../../../node_modules/.pnpm/@astrojs+svelte@8.0.3_astro@6.1.0_rollup@4.60.0_typescript@5.9.3__svelte@5.54.1_typescript@5.9.3/node_modules/@astrojs/svelte/dist/client.svelte.js"],
|
|
4
4
|
"sourcesContent": ["import { createRawSnippet, hydrate, mount, unmount } from \"svelte\";\nconst existingApplications = /* @__PURE__ */ new WeakMap();\nvar client_svelte_default = (element) => {\n return async (Component, props, slotted, { client }) => {\n if (!element.hasAttribute(\"ssr\")) return;\n let children = void 0;\n let _$$slots = void 0;\n let renderFns = {};\n for (const [key, value] of Object.entries(slotted)) {\n _$$slots ??= {};\n if (key === \"default\") {\n _$$slots.default = true;\n children = createRawSnippet(() => ({\n render: () => `<astro-slot>${value}</astro-slot>`\n }));\n } else {\n _$$slots[key] = createRawSnippet(() => ({\n render: () => `<astro-slot name=\"${key}\">${value}</astro-slot>`\n }));\n }\n if (key === \"default\") {\n renderFns.children = createRawSnippet(() => ({\n render: () => `<astro-slot>${value}</astro-slot>`\n }));\n } else {\n renderFns[key] = createRawSnippet(() => ({\n render: () => `<astro-slot name=\"${key}\">${value}</astro-slot>`\n }));\n }\n }\n const resolvedProps = {\n ...props,\n children,\n $$slots: _$$slots,\n ...renderFns\n };\n if (existingApplications.has(element)) {\n existingApplications.get(element).setProps(resolvedProps);\n } else {\n const component = createComponent(Component, element, resolvedProps, client !== \"only\");\n existingApplications.set(element, component);\n element.addEventListener(\"astro:unmount\", () => component.destroy(), { once: true });\n }\n };\n};\nfunction createComponent(Component, target, props, shouldHydrate) {\n let propsState = $state(props);\n const bootstrap = shouldHydrate ? hydrate : mount;\n if (!shouldHydrate) {\n target.innerHTML = \"\";\n }\n const component = bootstrap(Component, { target, props: propsState });\n return {\n setProps(newProps) {\n Object.assign(propsState, newProps);\n for (const key in propsState) {\n if (!(key in newProps)) {\n delete propsState[key];\n }\n }\n },\n destroy() {\n unmount(component);\n }\n };\n}\nexport {\n client_svelte_default as default\n};\n"],
|
|
5
|
-
"mappings": "
|
|
5
|
+
"mappings": ";;;;;;;;;;;;;;;;AACA,IAAM,uBAAuC,oBAAI,QAAQ;AACzD,IAAI,wBAAwB,CAAC,YAAY;AACvC,SAAO,OAAO,WAAW,OAAO,SAAS,EAAE,OAAO,MAAM;AACtD,QAAI,CAAC,QAAQ,aAAa,KAAK,EAAG;AAClC,QAAI,WAAW;AACf,QAAI,WAAW;AACf,QAAI,YAAY,CAAC;AACjB,eAAW,CAAC,KAAK,KAAK,KAAK,OAAO,QAAQ,OAAO,GAAG;AAClD,mBAAa,CAAC;AACd,UAAI,QAAQ,WAAW;AACrB,iBAAS,UAAU;AACnB,mBAAW,iBAAiB,OAAO;AAAA,UACjC,QAAQ,MAAM,eAAe,KAAK;AAAA,QACpC,EAAE;AAAA,MACJ,OAAO;AACL,iBAAS,GAAG,IAAI,iBAAiB,OAAO;AAAA,UACtC,QAAQ,MAAM,qBAAqB,GAAG,KAAK,KAAK;AAAA,QAClD,EAAE;AAAA,MACJ;AACA,UAAI,QAAQ,WAAW;AACrB,kBAAU,WAAW,iBAAiB,OAAO;AAAA,UAC3C,QAAQ,MAAM,eAAe,KAAK;AAAA,QACpC,EAAE;AAAA,MACJ,OAAO;AACL,kBAAU,GAAG,IAAI,iBAAiB,OAAO;AAAA,UACvC,QAAQ,MAAM,qBAAqB,GAAG,KAAK,KAAK;AAAA,QAClD,EAAE;AAAA,MACJ;AAAA,IACF;AACA,UAAM,gBAAgB;AAAA,MACpB,GAAG;AAAA,MACH;AAAA,MACA,SAAS;AAAA,MACT,GAAG;AAAA,IACL;AACA,QAAI,qBAAqB,IAAI,OAAO,GAAG;AACrC,2BAAqB,IAAI,OAAO,EAAE,SAAS,aAAa;AAAA,IAC1D,OAAO;AACL,YAAM,YAAY,gBAAgB,WAAW,SAAS,eAAe,WAAW,MAAM;AACtF,2BAAqB,IAAI,SAAS,SAAS;AAC3C,cAAQ,iBAAiB,iBAAiB,MAAM,UAAU,QAAQ,GAAG,EAAE,MAAM,KAAK,CAAC;AAAA,IACrF;AAAA,EACF;AACF;AACA,SAAS,gBAAgB,WAAW,QAAQ,OAAO,eAAe;AAChE,MAAI,aAAa,OAAO,KAAK;AAC7B,QAAM,YAAY,gBAAgB,UAAU;AAC5C,MAAI,CAAC,eAAe;AAClB,WAAO,YAAY;AAAA,EACrB;AACA,QAAM,YAAY,UAAU,WAAW,EAAE,QAAQ,OAAO,WAAW,CAAC;AACpE,SAAO;AAAA,IACL,SAAS,UAAU;AACjB,aAAO,OAAO,YAAY,QAAQ;AAClC,iBAAW,OAAO,YAAY;AAC5B,YAAI,EAAE,OAAO,WAAW;AACtB,iBAAO,WAAW,GAAG;AAAA,QACvB;AAAA,MACF;AAAA,IACF;AAAA,IACA,UAAU;AACR,cAAQ,SAAS;AAAA,IACnB;AAAA,EACF;AACF;",
|
|
6
6
|
"names": []
|
|
7
7
|
}
|
|
@@ -1,154 +1,154 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hash": "
|
|
3
|
-
"configHash": "
|
|
2
|
+
"hash": "45948616",
|
|
3
|
+
"configHash": "85af5f44",
|
|
4
4
|
"lockfileHash": "72ffd4a5",
|
|
5
|
-
"browserHash": "
|
|
5
|
+
"browserHash": "f4052818",
|
|
6
6
|
"optimized": {
|
|
7
7
|
"smol-toml": {
|
|
8
8
|
"src": "../../../../node_modules/.pnpm/smol-toml@1.6.1/node_modules/smol-toml/dist/index.js",
|
|
9
9
|
"file": "smol-toml.js",
|
|
10
|
-
"fileHash": "
|
|
11
|
-
"needsInterop": false
|
|
12
|
-
},
|
|
13
|
-
"@astrojs/svelte/client.js": {
|
|
14
|
-
"src": "../../../../node_modules/.pnpm/@astrojs+svelte@8.0.3_astro@6.1.0_rollup@4.60.0_typescript@5.9.3__svelte@5.54.1_typescript@5.9.3/node_modules/@astrojs/svelte/dist/client.svelte.js",
|
|
15
|
-
"file": "@astrojs_svelte_client__js.js",
|
|
16
|
-
"fileHash": "95b61b60",
|
|
10
|
+
"fileHash": "f9ef84ed",
|
|
17
11
|
"needsInterop": false
|
|
18
12
|
},
|
|
19
13
|
"svelte": {
|
|
20
14
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/index-client.js",
|
|
21
15
|
"file": "svelte.js",
|
|
22
|
-
"fileHash": "
|
|
16
|
+
"fileHash": "0452368f",
|
|
23
17
|
"needsInterop": false
|
|
24
18
|
},
|
|
25
19
|
"svelte/animate": {
|
|
26
20
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/animate/index.js",
|
|
27
21
|
"file": "svelte_animate.js",
|
|
28
|
-
"fileHash": "
|
|
22
|
+
"fileHash": "8465cde2",
|
|
29
23
|
"needsInterop": false
|
|
30
24
|
},
|
|
31
25
|
"svelte/attachments": {
|
|
32
26
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/attachments/index.js",
|
|
33
27
|
"file": "svelte_attachments.js",
|
|
34
|
-
"fileHash": "
|
|
28
|
+
"fileHash": "5e4c4508",
|
|
35
29
|
"needsInterop": false
|
|
36
30
|
},
|
|
37
31
|
"svelte/easing": {
|
|
38
32
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/easing/index.js",
|
|
39
33
|
"file": "svelte_easing.js",
|
|
40
|
-
"fileHash": "
|
|
34
|
+
"fileHash": "541c855b",
|
|
41
35
|
"needsInterop": false
|
|
42
36
|
},
|
|
43
37
|
"svelte/internal": {
|
|
44
38
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/internal/index.js",
|
|
45
39
|
"file": "svelte_internal.js",
|
|
46
|
-
"fileHash": "
|
|
40
|
+
"fileHash": "c1211831",
|
|
47
41
|
"needsInterop": true
|
|
48
42
|
},
|
|
49
43
|
"svelte/internal/client": {
|
|
50
44
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/internal/client/index.js",
|
|
51
45
|
"file": "svelte_internal_client.js",
|
|
52
|
-
"fileHash": "
|
|
46
|
+
"fileHash": "ecd816c2",
|
|
53
47
|
"needsInterop": false
|
|
54
48
|
},
|
|
55
49
|
"svelte/internal/disclose-version": {
|
|
56
50
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/internal/disclose-version.js",
|
|
57
51
|
"file": "svelte_internal_disclose-version.js",
|
|
58
|
-
"fileHash": "
|
|
52
|
+
"fileHash": "f62a3eb1",
|
|
59
53
|
"needsInterop": false
|
|
60
54
|
},
|
|
61
55
|
"svelte/internal/flags/async": {
|
|
62
56
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/internal/flags/async.js",
|
|
63
57
|
"file": "svelte_internal_flags_async.js",
|
|
64
|
-
"fileHash": "
|
|
58
|
+
"fileHash": "4b7590f6",
|
|
65
59
|
"needsInterop": false
|
|
66
60
|
},
|
|
67
61
|
"svelte/internal/flags/legacy": {
|
|
68
62
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/internal/flags/legacy.js",
|
|
69
63
|
"file": "svelte_internal_flags_legacy.js",
|
|
70
|
-
"fileHash": "
|
|
64
|
+
"fileHash": "a4b72000",
|
|
71
65
|
"needsInterop": false
|
|
72
66
|
},
|
|
73
67
|
"svelte/internal/flags/tracing": {
|
|
74
68
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/internal/flags/tracing.js",
|
|
75
69
|
"file": "svelte_internal_flags_tracing.js",
|
|
76
|
-
"fileHash": "
|
|
70
|
+
"fileHash": "f9114017",
|
|
77
71
|
"needsInterop": false
|
|
78
72
|
},
|
|
79
73
|
"svelte/legacy": {
|
|
80
74
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/legacy/legacy-client.js",
|
|
81
75
|
"file": "svelte_legacy.js",
|
|
82
|
-
"fileHash": "
|
|
76
|
+
"fileHash": "9ef110c4",
|
|
83
77
|
"needsInterop": false
|
|
84
78
|
},
|
|
85
79
|
"svelte/motion": {
|
|
86
80
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/motion/index.js",
|
|
87
81
|
"file": "svelte_motion.js",
|
|
88
|
-
"fileHash": "
|
|
82
|
+
"fileHash": "cc1b44ed",
|
|
89
83
|
"needsInterop": false
|
|
90
84
|
},
|
|
91
85
|
"svelte/reactivity": {
|
|
92
86
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/reactivity/index-client.js",
|
|
93
87
|
"file": "svelte_reactivity.js",
|
|
94
|
-
"fileHash": "
|
|
88
|
+
"fileHash": "f79d2a8a",
|
|
95
89
|
"needsInterop": false
|
|
96
90
|
},
|
|
97
91
|
"svelte/reactivity/window": {
|
|
98
92
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/reactivity/window/index.js",
|
|
99
93
|
"file": "svelte_reactivity_window.js",
|
|
100
|
-
"fileHash": "
|
|
94
|
+
"fileHash": "f0bbc3aa",
|
|
101
95
|
"needsInterop": false
|
|
102
96
|
},
|
|
103
97
|
"svelte/store": {
|
|
104
98
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/store/index-client.js",
|
|
105
99
|
"file": "svelte_store.js",
|
|
106
|
-
"fileHash": "
|
|
100
|
+
"fileHash": "06e2fc9f",
|
|
107
101
|
"needsInterop": false
|
|
108
102
|
},
|
|
109
103
|
"svelte/transition": {
|
|
110
104
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/transition/index.js",
|
|
111
105
|
"file": "svelte_transition.js",
|
|
112
|
-
"fileHash": "
|
|
106
|
+
"fileHash": "7df9eb25",
|
|
113
107
|
"needsInterop": false
|
|
114
108
|
},
|
|
115
109
|
"svelte/events": {
|
|
116
110
|
"src": "../../../../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/events/index.js",
|
|
117
111
|
"file": "svelte_events.js",
|
|
118
|
-
"fileHash": "
|
|
112
|
+
"fileHash": "8eda0439",
|
|
119
113
|
"needsInterop": false
|
|
120
114
|
},
|
|
121
115
|
"svelte > clsx": {
|
|
122
116
|
"src": "../../../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs",
|
|
123
117
|
"file": "svelte___clsx.js",
|
|
124
|
-
"fileHash": "
|
|
118
|
+
"fileHash": "916f89fe",
|
|
125
119
|
"needsInterop": false
|
|
126
120
|
},
|
|
127
121
|
"astro > aria-query": {
|
|
128
122
|
"src": "../../../../node_modules/.pnpm/aria-query@5.3.2/node_modules/aria-query/lib/index.js",
|
|
129
123
|
"file": "astro___aria-query.js",
|
|
130
|
-
"fileHash": "
|
|
124
|
+
"fileHash": "4e5a28d6",
|
|
131
125
|
"needsInterop": true
|
|
132
126
|
},
|
|
133
127
|
"astro > axobject-query": {
|
|
134
128
|
"src": "../../../../node_modules/.pnpm/axobject-query@4.1.0/node_modules/axobject-query/lib/index.js",
|
|
135
129
|
"file": "astro___axobject-query.js",
|
|
136
|
-
"fileHash": "
|
|
130
|
+
"fileHash": "e32b6205",
|
|
137
131
|
"needsInterop": true
|
|
138
132
|
},
|
|
139
133
|
"astro > html-escaper": {
|
|
140
134
|
"src": "../../../../node_modules/.pnpm/html-escaper@3.0.3/node_modules/html-escaper/esm/index.js",
|
|
141
135
|
"file": "astro___html-escaper.js",
|
|
142
|
-
"fileHash": "
|
|
136
|
+
"fileHash": "01cedad3",
|
|
137
|
+
"needsInterop": false
|
|
138
|
+
},
|
|
139
|
+
"@astrojs/svelte/client.js": {
|
|
140
|
+
"src": "../../../../node_modules/.pnpm/@astrojs+svelte@8.0.3_astro@6.1.0_rollup@4.60.0_typescript@5.9.3__svelte@5.54.1_typescript@5.9.3/node_modules/@astrojs/svelte/dist/client.svelte.js",
|
|
141
|
+
"file": "@astrojs_svelte_client__js.js",
|
|
142
|
+
"fileHash": "c45511bb",
|
|
143
143
|
"needsInterop": false
|
|
144
144
|
}
|
|
145
145
|
},
|
|
146
146
|
"chunks": {
|
|
147
|
-
"chunk-
|
|
148
|
-
"file": "chunk-
|
|
147
|
+
"chunk-RJGEXL5C": {
|
|
148
|
+
"file": "chunk-RJGEXL5C.js"
|
|
149
149
|
},
|
|
150
|
-
"chunk-
|
|
151
|
-
"file": "chunk-
|
|
150
|
+
"chunk-FPEUJ7DG": {
|
|
151
|
+
"file": "chunk-FPEUJ7DG.js"
|
|
152
152
|
},
|
|
153
153
|
"chunk-AJXJMYAF": {
|
|
154
154
|
"file": "chunk-AJXJMYAF.js"
|
|
@@ -156,20 +156,20 @@
|
|
|
156
156
|
"chunk-ZREFNRZZ": {
|
|
157
157
|
"file": "chunk-ZREFNRZZ.js"
|
|
158
158
|
},
|
|
159
|
-
"chunk-
|
|
160
|
-
"file": "chunk-
|
|
159
|
+
"chunk-ZOV3DWEJ": {
|
|
160
|
+
"file": "chunk-ZOV3DWEJ.js"
|
|
161
161
|
},
|
|
162
162
|
"chunk-CNYJBM5F": {
|
|
163
163
|
"file": "chunk-CNYJBM5F.js"
|
|
164
164
|
},
|
|
165
|
-
"chunk-
|
|
166
|
-
"file": "chunk-
|
|
165
|
+
"chunk-MHDZ3SK7": {
|
|
166
|
+
"file": "chunk-MHDZ3SK7.js"
|
|
167
167
|
},
|
|
168
|
-
"chunk-
|
|
169
|
-
"file": "chunk-
|
|
168
|
+
"chunk-RBDTDTPY": {
|
|
169
|
+
"file": "chunk-RBDTDTPY.js"
|
|
170
170
|
},
|
|
171
|
-
"chunk-
|
|
172
|
-
"file": "chunk-
|
|
171
|
+
"chunk-YL4MIWGJ": {
|
|
172
|
+
"file": "chunk-YL4MIWGJ.js"
|
|
173
173
|
},
|
|
174
174
|
"chunk-DBPNBGEI": {
|
|
175
175
|
"file": "chunk-DBPNBGEI.js"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
createSubscriber
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-YL4MIWGJ.js";
|
|
4
4
|
|
|
5
5
|
// ../node_modules/.pnpm/svelte@5.54.1/node_modules/svelte/src/reactivity/reactive-value.js
|
|
6
6
|
var ReactiveValue = class {
|
|
@@ -24,4 +24,4 @@ var ReactiveValue = class {
|
|
|
24
24
|
export {
|
|
25
25
|
ReactiveValue
|
|
26
26
|
};
|
|
27
|
-
//# sourceMappingURL=chunk-
|
|
27
|
+
//# sourceMappingURL=chunk-FPEUJ7DG.js.map
|
|
@@ -3,7 +3,7 @@ import {
|
|
|
3
3
|
handle_event_propagation,
|
|
4
4
|
on,
|
|
5
5
|
root_event_handles
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-RBDTDTPY.js";
|
|
7
7
|
import {
|
|
8
8
|
COMMENT_NODE,
|
|
9
9
|
DIRTY,
|
|
@@ -59,7 +59,7 @@ import {
|
|
|
59
59
|
set_hydrating,
|
|
60
60
|
set_signal_status,
|
|
61
61
|
user_pre_effect
|
|
62
|
-
} from "./chunk-
|
|
62
|
+
} from "./chunk-YL4MIWGJ.js";
|
|
63
63
|
import {
|
|
64
64
|
hydration_mismatch,
|
|
65
65
|
legacy_recursive_reactive_block,
|
|
@@ -963,6 +963,13 @@ function createBubbler() {
|
|
|
963
963
|
}
|
|
964
964
|
|
|
965
965
|
export {
|
|
966
|
+
hash,
|
|
967
|
+
is_void,
|
|
968
|
+
is_capture_event,
|
|
969
|
+
can_delegate_event,
|
|
970
|
+
normalize_attribute,
|
|
971
|
+
is_raw_text_element,
|
|
972
|
+
sanitize_location,
|
|
966
973
|
create_trusted_html,
|
|
967
974
|
create_fragment_from_html,
|
|
968
975
|
assign_nodes,
|
|
@@ -975,13 +982,6 @@ export {
|
|
|
975
982
|
comment,
|
|
976
983
|
append,
|
|
977
984
|
props_id,
|
|
978
|
-
hash,
|
|
979
|
-
is_void,
|
|
980
|
-
is_capture_event,
|
|
981
|
-
can_delegate_event,
|
|
982
|
-
normalize_attribute,
|
|
983
|
-
is_raw_text_element,
|
|
984
|
-
sanitize_location,
|
|
985
985
|
should_intro,
|
|
986
986
|
set_should_intro,
|
|
987
987
|
set_text,
|
|
@@ -1002,4 +1002,4 @@ export {
|
|
|
1002
1002
|
handlers,
|
|
1003
1003
|
createBubbler
|
|
1004
1004
|
};
|
|
1005
|
-
//# sourceMappingURL=chunk-
|
|
1005
|
+
//# sourceMappingURL=chunk-MHDZ3SK7.js.map
|
|
@@ -9,7 +9,7 @@ import {
|
|
|
9
9
|
set_active_reaction,
|
|
10
10
|
teardown,
|
|
11
11
|
without_reactive_context
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-YL4MIWGJ.js";
|
|
13
13
|
import {
|
|
14
14
|
event_handler_invalid
|
|
15
15
|
} from "./chunk-DBPNBGEI.js";
|
|
@@ -201,4 +201,4 @@ export {
|
|
|
201
201
|
handle_event_propagation,
|
|
202
202
|
apply
|
|
203
203
|
};
|
|
204
|
-
//# sourceMappingURL=chunk-
|
|
204
|
+
//# sourceMappingURL=chunk-RBDTDTPY.js.map
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import {
|
|
2
2
|
ReactiveValue
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FPEUJ7DG.js";
|
|
4
4
|
import {
|
|
5
5
|
on
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-RBDTDTPY.js";
|
|
7
7
|
import {
|
|
8
8
|
active_reaction,
|
|
9
9
|
get2 as get,
|
|
@@ -16,7 +16,7 @@ import {
|
|
|
16
16
|
tag,
|
|
17
17
|
update_version,
|
|
18
18
|
user_derived
|
|
19
|
-
} from "./chunk-
|
|
19
|
+
} from "./chunk-YL4MIWGJ.js";
|
|
20
20
|
import {
|
|
21
21
|
true_default
|
|
22
22
|
} from "./chunk-DBPNBGEI.js";
|
|
@@ -685,4 +685,4 @@ export {
|
|
|
685
685
|
SvelteURL,
|
|
686
686
|
MediaQuery
|
|
687
687
|
};
|
|
688
|
-
//# sourceMappingURL=chunk-
|
|
688
|
+
//# sourceMappingURL=chunk-RJGEXL5C.js.map
|