toiljs 0.0.11 → 0.0.14

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 (120) hide show
  1. package/README.md +3 -1
  2. package/build/cli/.tsbuildinfo +1 -1
  3. package/build/cli/configure.js +10 -4
  4. package/build/cli/create.js +58 -30
  5. package/build/cli/diagnostics.d.ts +55 -0
  6. package/build/cli/diagnostics.js +333 -0
  7. package/build/cli/doctor.d.ts +6 -0
  8. package/build/cli/doctor.js +249 -0
  9. package/build/cli/index.js +26 -0
  10. package/build/cli/proc.d.ts +5 -0
  11. package/build/cli/proc.js +20 -0
  12. package/build/cli/ui.d.ts +1 -0
  13. package/build/cli/ui.js +1 -0
  14. package/build/cli/update.d.ts +7 -0
  15. package/build/cli/update.js +117 -0
  16. package/build/cli/updates.d.ts +10 -0
  17. package/build/cli/updates.js +45 -0
  18. package/build/client/.tsbuildinfo +1 -1
  19. package/build/client/dev/error-overlay.js +1 -1
  20. package/build/client/head/metadata.js +3 -1
  21. package/build/client/index.d.ts +5 -1
  22. package/build/client/index.js +2 -0
  23. package/build/client/navigation/navigation.js +1 -1
  24. package/build/client/routing/Router.js +2 -2
  25. package/build/client/search/search.d.ts +26 -0
  26. package/build/client/search/search.js +101 -0
  27. package/build/client/search/use-page-search.d.ts +8 -0
  28. package/build/client/search/use-page-search.js +21 -0
  29. package/build/compiler/.tsbuildinfo +1 -1
  30. package/build/compiler/generate.js +33 -24
  31. package/build/compiler/index.d.ts +2 -0
  32. package/build/compiler/index.js +1 -0
  33. package/build/compiler/pages.d.ts +8 -0
  34. package/build/compiler/pages.js +37 -0
  35. package/build/compiler/plugin.js +3 -1
  36. package/build/compiler/prerender.d.ts +1 -0
  37. package/build/compiler/prerender.js +11 -5
  38. package/build/compiler/seo.js +10 -3
  39. package/build/io/.tsbuildinfo +1 -1
  40. package/examples/basic/client/components/Header.tsx +43 -41
  41. package/examples/basic/client/components/HoneycombBackground.tsx +223 -230
  42. package/examples/basic/client/public/index.html +18 -16
  43. package/examples/basic/client/routes/(legal)/privacy.tsx +18 -19
  44. package/examples/basic/client/routes/(legal)/terms.tsx +15 -16
  45. package/examples/basic/client/routes/about.tsx +21 -22
  46. package/examples/basic/client/routes/blog/[id].tsx +26 -18
  47. package/examples/basic/client/routes/features/actions.tsx +67 -67
  48. package/examples/basic/client/routes/features/error/index.tsx +27 -27
  49. package/examples/basic/client/routes/features/head.tsx +38 -38
  50. package/examples/basic/client/routes/features/index.tsx +83 -75
  51. package/examples/basic/client/routes/features/realtime.tsx +34 -32
  52. package/examples/basic/client/routes/features/script.tsx +31 -31
  53. package/examples/basic/client/routes/features/seo.tsx +39 -39
  54. package/examples/basic/client/routes/features/template/index.tsx +20 -20
  55. package/examples/basic/client/routes/features/template/template.tsx +16 -18
  56. package/examples/basic/client/routes/gallery/@modal/(.)photo/[id].tsx +23 -23
  57. package/examples/basic/client/routes/gallery/index.tsx +42 -42
  58. package/examples/basic/client/routes/gallery/photo/[id].tsx +18 -18
  59. package/examples/basic/client/routes/get-started.tsx +157 -84
  60. package/examples/basic/client/routes/index.tsx +137 -96
  61. package/examples/basic/client/routes/loader-demo/index.tsx +59 -52
  62. package/examples/basic/client/routes/search.tsx +61 -0
  63. package/examples/basic/client/routes/test.tsx +7 -8
  64. package/examples/basic/client/styles/main.css +624 -552
  65. package/package.json +2 -2
  66. package/presets/eslint.js +10 -3
  67. package/src/cli/configure.ts +363 -353
  68. package/src/cli/create.ts +563 -530
  69. package/src/cli/diagnostics.ts +421 -0
  70. package/src/cli/doctor.ts +318 -0
  71. package/src/cli/features.ts +166 -160
  72. package/src/cli/index.ts +242 -211
  73. package/src/cli/proc.ts +30 -0
  74. package/src/cli/ui.ts +111 -103
  75. package/src/cli/update.ts +150 -0
  76. package/src/cli/updates.ts +69 -0
  77. package/src/client/components/Image.tsx +91 -89
  78. package/src/client/dev/error-overlay.tsx +193 -197
  79. package/src/client/head/metadata.ts +94 -92
  80. package/src/client/index.ts +79 -64
  81. package/src/client/navigation/Link.tsx +94 -100
  82. package/src/client/navigation/navigation.ts +215 -218
  83. package/src/client/routing/Router.tsx +210 -193
  84. package/src/client/routing/hooks.ts +110 -114
  85. package/src/client/routing/lazy.ts +77 -81
  86. package/src/client/search/search.ts +189 -0
  87. package/src/client/search/use-page-search.ts +73 -0
  88. package/src/compiler/config.ts +173 -171
  89. package/src/compiler/fonts.ts +89 -87
  90. package/src/compiler/generate.ts +45 -27
  91. package/src/compiler/image-report.ts +88 -85
  92. package/src/compiler/index.ts +2 -0
  93. package/src/compiler/pages.ts +70 -0
  94. package/src/compiler/plugin.ts +51 -47
  95. package/src/compiler/prerender.ts +152 -130
  96. package/src/compiler/routes.ts +132 -131
  97. package/src/compiler/seo.ts +381 -356
  98. package/src/compiler/vite.ts +155 -145
  99. package/src/io/FastSet.ts +99 -96
  100. package/test/configure.test.ts +94 -90
  101. package/test/doctor.test.ts +140 -0
  102. package/test/dom/Image.test.tsx +73 -46
  103. package/test/dom/Script.test.tsx +48 -45
  104. package/test/dom/action.test.tsx +146 -129
  105. package/test/dom/error-overlay.test.tsx +1 -1
  106. package/test/dom/loader.test.tsx +2 -2
  107. package/test/dom/revalidate.test.tsx +1 -1
  108. package/test/dom/route-head.test.tsx +1 -2
  109. package/test/dom/router-loading.test.tsx +1 -1
  110. package/test/dom/slot.test.tsx +131 -109
  111. package/test/dom/view-transitions.test.tsx +53 -51
  112. package/test/features.test.ts +149 -142
  113. package/test/fonts.test.ts +28 -26
  114. package/test/head.test.ts +45 -35
  115. package/test/metadata.test.ts +42 -41
  116. package/test/pages.test.ts +105 -0
  117. package/test/prerender.test.ts +54 -46
  118. package/test/search.test.ts +114 -0
  119. package/test/seo.test.ts +30 -8
  120. package/test/update.test.ts +44 -0
package/build/cli/ui.js CHANGED
@@ -34,6 +34,7 @@ export function success(s) {
34
34
  return rgb(ACCENT, s);
35
35
  }
36
36
  export const danger = pc.red;
37
+ export const warn = pc.yellow;
37
38
  function lerp(a, b, t) {
38
39
  return Math.round(a + (b - a) * t);
39
40
  }
@@ -0,0 +1,7 @@
1
+ export interface UpdateOptions {
2
+ readonly root?: string;
3
+ readonly cwd: string;
4
+ readonly yes?: boolean;
5
+ readonly target?: string;
6
+ }
7
+ export declare function runUpdate(opts: UpdateOptions): Promise<void>;
@@ -0,0 +1,117 @@
1
+ import fs from 'node:fs';
2
+ import path from 'node:path';
3
+ import { cancel, intro, isCancel, multiselect, note, outro, spinner } from '@clack/prompts';
4
+ import { capture, run } from './proc.js';
5
+ import { buildRows, parseNcuJson } from './updates.js';
6
+ import { accent, danger, dim, success, warn } from './ui.js';
7
+ function detectPackageManager(root) {
8
+ if (fs.existsSync(path.join(root, 'pnpm-lock.yaml')))
9
+ return { name: 'pnpm', ncuName: 'pnpm' };
10
+ if (fs.existsSync(path.join(root, 'yarn.lock')))
11
+ return { name: 'yarn', ncuName: 'yarn' };
12
+ if (fs.existsSync(path.join(root, 'bun.lockb')))
13
+ return { name: 'bun', ncuName: 'bun' };
14
+ return { name: 'npm', ncuName: 'npm' };
15
+ }
16
+ function readDependencies(pkgPath) {
17
+ const parsed = JSON.parse(fs.readFileSync(pkgPath, 'utf8'));
18
+ if (typeof parsed !== 'object' || parsed === null)
19
+ return {};
20
+ const pkg = parsed;
21
+ const merge = (v) => {
22
+ if (typeof v !== 'object' || v === null)
23
+ return {};
24
+ const out = {};
25
+ for (const [k, val] of Object.entries(v))
26
+ if (typeof val === 'string')
27
+ out[k] = val;
28
+ return out;
29
+ };
30
+ return { ...merge(pkg.dependencies), ...merge(pkg.devDependencies) };
31
+ }
32
+ function bumpColor(bump, text) {
33
+ if (bump === 'major')
34
+ return danger(text);
35
+ if (bump === 'minor')
36
+ return warn(text);
37
+ if (bump === 'patch')
38
+ return success(text);
39
+ return dim(text);
40
+ }
41
+ function rowLine(row) {
42
+ return `${row.name} ${dim(row.from)} ${dim('->')} ${bumpColor(row.bump, row.to)}`;
43
+ }
44
+ const TARGETS = new Set(['latest', 'minor', 'patch', 'newest', 'greatest']);
45
+ export async function runUpdate(opts) {
46
+ const root = path.resolve(opts.root ?? opts.cwd);
47
+ const pkgPath = path.join(root, 'package.json');
48
+ if (!fs.existsSync(pkgPath)) {
49
+ throw new Error('No package.json here. Run from your project root or pass --root <dir>.');
50
+ }
51
+ const currentDeps = readDependencies(pkgPath);
52
+ const pm = detectPackageManager(root);
53
+ const target = opts.target && TARGETS.has(opts.target) ? opts.target : 'latest';
54
+ const ncuArgs = (extra) => [
55
+ '--yes',
56
+ 'npm-check-updates',
57
+ '--packageManager',
58
+ pm.ncuName,
59
+ '--target',
60
+ target,
61
+ ...extra,
62
+ ];
63
+ intro(accent('toiljs update'));
64
+ const s = spinner();
65
+ s.start('Checking the registry for updates');
66
+ const res = await capture('npx', ncuArgs(['--jsonUpgraded']), root);
67
+ if (res.code !== 0 && res.stdout.indexOf('{') === -1) {
68
+ s.stop('Could not check for updates');
69
+ note(dim(res.stderr.trim() || 'npm-check-updates failed.'), 'Error');
70
+ process.exitCode = 1;
71
+ return;
72
+ }
73
+ const rows = buildRows(parseNcuJson(res.stdout), currentDeps);
74
+ if (rows.length === 0) {
75
+ s.stop('Everything is up to date');
76
+ outro(success('Nothing to update.'));
77
+ return;
78
+ }
79
+ s.stop(`${String(rows.length)} update${rows.length === 1 ? '' : 's'} available`);
80
+ const counts = { major: 0, minor: 0, patch: 0, other: 0 };
81
+ for (const r of rows)
82
+ counts[r.bump]++;
83
+ note(rows.map(rowLine).join('\n'), `${danger(`${String(counts.major)} major`)} ${warn(`${String(counts.minor)} minor`)} ${success(`${String(counts.patch)} patch`)}`);
84
+ let selected;
85
+ if (opts.yes) {
86
+ selected = rows.map((r) => r.name);
87
+ }
88
+ else {
89
+ const answer = await multiselect({
90
+ message: 'Select packages to update (space to toggle, enter to confirm)',
91
+ options: rows.map((r) => ({
92
+ value: r.name,
93
+ label: r.name,
94
+ hint: `${r.from} -> ${r.to}`,
95
+ })),
96
+ initialValues: rows.map((r) => r.name),
97
+ required: false,
98
+ });
99
+ if (isCancel(answer)) {
100
+ cancel('Update cancelled.');
101
+ return;
102
+ }
103
+ selected = answer;
104
+ }
105
+ if (selected.length === 0) {
106
+ outro(dim('No packages selected.'));
107
+ return;
108
+ }
109
+ s.start('Updating package.json');
110
+ const applyAll = selected.length === rows.length;
111
+ await run('npx', ncuArgs(applyAll ? ['-u'] : ['-u', '--filter', selected.join(' ')]), root);
112
+ s.stop('package.json updated');
113
+ s.start(`Installing with ${pm.name}`);
114
+ await run(pm.name, ['install'], root);
115
+ s.stop('Dependencies installed');
116
+ outro(success(`Updated ${String(selected.length)} package${selected.length === 1 ? '' : 's'}.`));
117
+ }
@@ -0,0 +1,10 @@
1
+ export type Bump = 'major' | 'minor' | 'patch' | 'other';
2
+ export interface UpdateRow {
3
+ readonly name: string;
4
+ readonly from: string;
5
+ readonly to: string;
6
+ readonly bump: Bump;
7
+ }
8
+ export declare function classifyBump(from: string, to: string): Bump;
9
+ export declare function parseNcuJson(stdout: string): Record<string, string>;
10
+ export declare function buildRows(upgraded: Record<string, string>, currentDeps: Record<string, string>): UpdateRow[];
@@ -0,0 +1,45 @@
1
+ function parseVersion(v) {
2
+ const m = /(\d+)(?:\.(\d+))?(?:\.(\d+))?/.exec(v);
3
+ if (!m)
4
+ return [0, 0, 0];
5
+ return [Number(m[1]), Number(m[2] ?? 0), Number(m[3] ?? 0)];
6
+ }
7
+ export function classifyBump(from, to) {
8
+ const [fa, fb, fc] = parseVersion(from);
9
+ const [ta, tb, tc] = parseVersion(to);
10
+ if (ta !== fa)
11
+ return 'major';
12
+ if (tb !== fb)
13
+ return 'minor';
14
+ if (tc !== fc)
15
+ return 'patch';
16
+ return 'other';
17
+ }
18
+ export function parseNcuJson(stdout) {
19
+ const start = stdout.indexOf('{');
20
+ const end = stdout.lastIndexOf('}');
21
+ if (start === -1 || end <= start)
22
+ return {};
23
+ try {
24
+ const parsed = JSON.parse(stdout.slice(start, end + 1));
25
+ if (typeof parsed !== 'object' || parsed === null)
26
+ return {};
27
+ const out = {};
28
+ for (const [k, v] of Object.entries(parsed))
29
+ if (typeof v === 'string')
30
+ out[k] = v;
31
+ return out;
32
+ }
33
+ catch {
34
+ return {};
35
+ }
36
+ }
37
+ const SEVERITY = { major: 0, minor: 1, patch: 2, other: 3 };
38
+ export function buildRows(upgraded, currentDeps) {
39
+ return Object.entries(upgraded)
40
+ .map(([name, to]) => {
41
+ const from = currentDeps[name] ?? '?';
42
+ return { name, from, to, bump: classifyBump(from, to) };
43
+ })
44
+ .sort((a, b) => SEVERITY[a.bump] - SEVERITY[b.bump] || a.name.localeCompare(b.name));
45
+ }
@@ -1 +1 @@
1
- {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.es2025.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/@types/react-dom/client.d.ts","../../src/client/dev/error-overlay.tsx","../../node_modules/@types/react-dom/index.d.ts","../../src/client/navigation/scroll.ts","../../src/client/types.ts","../../src/client/navigation/navigation.ts","../../src/client/routing/match.ts","../../src/client/navigation/prefetch.ts","../../src/client/routing/error-boundary.tsx","../../src/client/head/head.ts","../../src/client/head/metadata.ts","../../src/client/routing/loader.ts","../../src/client/routing/params-context.ts","../../src/client/routing/hooks.ts","../../src/client/routing/lazy.ts","../../src/client/routing/slot-context.ts","../../src/client/routing/router.tsx","../../src/client/routing/mount.tsx","../../src/client/navigation/link.tsx","../../src/client/navigation/navlink.tsx","../../src/client/routing/action.ts","../../src/client/channel/channel.ts","../../src/client/components/image.tsx","../../src/client/components/script.tsx","../../src/client/components/form.tsx","../../src/client/components/slot.tsx","../../src/client/index.ts"],"fileIdsList":[[92],[90,91],[92,93],[92,93,114],[92,93,109],[93,100,103],[93,98,99,100,101,103,104,105,107,110,111,112,113,114,115,116,117,118,119],[92,93,98,99,101],[92,93,96,97,98],[92,93,107,112],[93,98,100],[93],[92,93,98,99,105],[92,93,98],[92,93,98,99,100,101,105,106],[92,93,98,99,100,103,104],[93,94,95,98,99,101,110],[92,93,100],[92,93,97,98,99,100,102,103,105,106,107,108,109]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"bd7dee3446a5b94651d58000ddfda40296f073e9372891f65003a524b4620697","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","impliedFormat":1},{"version":"b67e06170394a344f1ccc387cae700680cca78bb859c0a52be80ff58fba2b253","signature":"9f8a4a6f0fa33835fe10847c3313103535a4aa19ab49260497e23bb938197acc"},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"ee8a149229af2834098b2776d0de116b0ead67ecefb18d06ef9638ad0ebe7286","signature":"2b2db01796f774852b44cacad054f31b9e63a3c4ed787d12c1dd75c75e602bef"},{"version":"1684064f1b0252907917f0c1a684ac3e2f2cb0b83f88d3362e38d3f3cf74b8ad","signature":"d86aae3a61fb2a3734379428044eefd6b048996f3a1a1cd7e57bb94d3d36b02b"},{"version":"10401d7a6c4ded98d79969e15073c84513bf1207d39db79573dd96eae6f2b360","signature":"07a133f6bd32dbfd81aa6cbbd0eed2b4e26c920cb00508a58506897ef443f17f"},{"version":"4545a2b4483788cc65b488100c61f20ebdb08c22c7344572885ec14826d2f24b","signature":"b9f112f8e9a593f362dd5f434f8f997385dd62f15e2d2fb6d316e5d0d9942a51"},{"version":"d46f90a72c5370fdf90115c2c3a3c1b6f344cbac30e176eb92a083823233b2bb","signature":"09d6078412069edc1a6faad02c5846365d560ea26b03f0cd960137bd30ae4df9","affectsGlobalScope":true},{"version":"4ffbc79d3bf30be74fd9258569c6012cdbfee5a9249fed04b8e9072bcebd29e9","signature":"9382f138465c4775c54940f2a3d4334a083a6fc9a622a7c926c5f8233228cbae"},{"version":"635b1d7f9277daa21f877a84911e298ccd45c0961ef240da48102909ecace4cf","signature":"2100acdf9780bbfaa7c7c41109ea60464c7e17af1fb6ab3aa89e860ad1c3f350"},{"version":"6983e75e16b4526e1af5d3d9e9e346628e555f560ce8b80ef64e540c18be75a4","signature":"008b61907cfba2dd062cbbf6aa6b790714c9f10bbbeff1af4cac610e3bcf688f"},{"version":"564dfb7b5db8da37501a9bc4a5bda849817d061fcbd02d4c811211d238836261","signature":"197426b39a1ee9b5dc05020bd7285c804a9c57358104677cdd68986edb7ecf0b"},{"version":"b823a47f674739ef4f8930b4fc7961da84deed0125827758c3eccf6b0f667943","signature":"c8525f0be940a19f3d03f06b6e43d4bea21ba910db62fb5024ecc671bcc23932"},{"version":"2c0cbb2ed8f231d80a32f595fe0adbd906c081e42848adc652b0df12c1c8d287","signature":"b47403a7e6e239e43bf3b91e224e38b4c8345da2dc9967a2a1682996e1d48829"},{"version":"b344d5ea5bc36bef1134760ef821888da449e01299a7a70251d5655aee8630e9","signature":"c6384012cac726d5b05237d2bd2c9c9da0893feaf54ab1dd0042fe141b9e5bd8"},{"version":"8ff6ca449f20c1d1bc8338fa1017ca8b45d0766cab6fa11e7fce8aa670cbd80c","signature":"994bfb8326dca5c985462ba74b5c64146aef0e3ea7bbbbf265ad426d884fbc9e"},{"version":"77115c7ceff79d31107af36683dc422ca54e6b44520b9756b7771b530b31b8d1","signature":"00dd4ce0458ebf64e2e0617d4bc04f3a9a569bc388f3a20c1c4416d465e99245"},{"version":"5889d61cffb3a390c141cce41c0b115302ab5a5760533839f106c41f07671a3d","signature":"e5f0e0e21621bb3e87958857cc9695abf011fb257bd249abd42ae97b3b61e1d0"},{"version":"72c523c9b0127251b64147e37068b9cbdd179dc4449a96e23c181e30c5c0d019","signature":"5cf43ceac60fba7927af9ce9b27fb6031854fc923263b78c353fb986857218b9"},{"version":"8bec5d913b66865ea88ced047c96b2f048c8343ca8e142e8c37942f6f9d62a35","signature":"0caa217adbbdb001facd9aeb363fa2a446eabbeb4e5af2c1f2c3d1ef4bbffc6e"},{"version":"5a86d3602f726666a25128f4710406135d5a52dcba3c1b47d6c5f244490e706b","signature":"63bfd9f3fbbcb2dc649dd7303b9fdcf5680c25e217228a5abe005674bfc8bed5"},{"version":"934d2d6e26d57425550744e36443449d1d1d7e2e5d91e03afb1ca27290d4a158","signature":"bbaa85a96900ee24d770ce38f7807d2d3cc2ca203e223cd4080447680910992e"},{"version":"a650fb96a89259216aba12555fc6774235188f2d0a0730c5fb64e0783f360b82","signature":"7302ddfa6ab62295a7ad2cf47cc8b933be587d161d5b818aba3e85d7af69e59e"},{"version":"f4d4df48a8a99b91545aaed8ad1beaaef5c314aa5d8d55029d80910960dc93a5","signature":"d9ce1372a43589027af010d0293b17099bf27089071c6d12ce30eb94b70191af"},{"version":"296c26ce70323317972ec25f9d5cfe79cb99f576423c81798f906d52e7c48432","signature":"dbb3eab27a108491f80873c1031ddc0b1a16c47f4c32e2ec2e70b83e9cee161b"},{"version":"49ccdd12861c01e002d1278b952c68ae68c8f8d73f7148f6fd62fe266c607b09","signature":"8aec088c8b901c6fe9e7fe22785892138849af77a640d12b7015ec52a95aa27c"},{"version":"f592e84ce2f73d6b30f83f62abf096b6591b27ee7b45b6232eccc00c28cd6325","signature":"d8c2f798462fc3da86e02a8e0ad1f45d98ea0c66d40c34c0790d9abc563ee5d7"}],"root":[95,[97,120]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noImplicitAny":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"../../src/client","skipLibCheck":true,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"suppressImplicitAnyIndexErrors":false,"target":99,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[94,1],[96,1],[92,2],[93,1],[115,3],[118,4],[116,3],[117,3],[119,5],[95,3],[103,3],[104,6],[120,7],[112,8],[99,9],[113,10],[101,11],[97,12],[114,13],[102,14],[107,15],[108,14],[105,16],[100,12],[111,17],[106,18],[110,19],[109,3],[98,3]],"version":"6.0.3"}
1
+ {"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.es2024.d.ts","../../node_modules/typescript/lib/lib.es2025.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../node_modules/typescript/lib/lib.es2025.collection.d.ts","../../node_modules/typescript/lib/lib.es2025.float16.d.ts","../../node_modules/typescript/lib/lib.es2025.intl.d.ts","../../node_modules/typescript/lib/lib.es2025.iterator.d.ts","../../node_modules/typescript/lib/lib.es2025.promise.d.ts","../../node_modules/typescript/lib/lib.es2025.regexp.d.ts","../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.date.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.esnext.temporal.d.ts","../../node_modules/typescript/lib/lib.esnext.typedarrays.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/react/jsx-runtime.d.ts","../../node_modules/@types/react-dom/client.d.ts","../../src/client/dev/error-overlay.tsx","../../node_modules/@types/react-dom/index.d.ts","../../src/client/navigation/scroll.ts","../../src/client/types.ts","../../src/client/navigation/navigation.ts","../../src/client/routing/match.ts","../../src/client/navigation/prefetch.ts","../../src/client/routing/error-boundary.tsx","../../src/client/head/head.ts","../../src/client/head/metadata.ts","../../src/client/routing/loader.ts","../../src/client/routing/params-context.ts","../../src/client/routing/hooks.ts","../../src/client/routing/lazy.ts","../../src/client/routing/slot-context.ts","../../src/client/routing/router.tsx","../../src/client/routing/mount.tsx","../../src/client/navigation/link.tsx","../../src/client/navigation/navlink.tsx","../../src/client/routing/action.ts","../../src/client/channel/channel.ts","../../src/client/search/search.ts","../../src/client/search/use-page-search.ts","../../src/client/components/image.tsx","../../src/client/components/script.tsx","../../src/client/components/form.tsx","../../src/client/components/slot.tsx","../../src/client/index.ts"],"fileIdsList":[[92],[90,91],[92,93],[92,93,114],[92,93,109],[93,100,103],[93,98,99,100,101,103,104,105,107,110,111,112,113,114,115,116,117,118,119,120,121],[92,93,98,99,101],[92,93,96,97,98],[92,93,107,112],[93,98,100],[93],[92,93,98,99,105],[92,93,98],[92,93,98,99,100,101,105,106],[92,93,98,99,100,103,104],[93,94,95,98,99,101,110],[92,93,100],[92,93,97,98,99,100,102,103,105,106,107,108,109],[93,104],[92,93,98,99,116]],"fileInfos":[{"version":"bcd24271a113971ba9eb71ff8cb01bc6b0f872a85c23fdbe5d93065b375933cd","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f88bedbeb09c6f5a6645cb24c7c55f1aa22d19ae96c8e6959cbd8b85a707bc6","impliedFormat":1},{"version":"7fe93b39b810eadd916be8db880dd7f0f7012a5cc6ffb62de8f62a2117fa6f1f","impliedFormat":1},{"version":"bb0074cc08b84a2374af33d8bf044b80851ccc9e719a5e202eacf40db2c31600","impliedFormat":1},{"version":"1a7daebe4f45fb03d9ec53d60008fbf9ac45a697fdc89e4ce218bc94b94f94d6","impliedFormat":1},{"version":"f94b133a3cb14a288803be545ac2683e0d0ff6661bcd37e31aaaec54fc382aed","impliedFormat":1},{"version":"f59d0650799f8782fd74cf73c19223730c6d1b9198671b1c5b3a38e1188b5953","impliedFormat":1},{"version":"8a15b4607d9a499e2dbeed9ec0d3c0d7372c850b2d5f1fb259e8f6d41d468a84","impliedFormat":1},{"version":"26e0fe14baee4e127f4365d1ae0b276f400562e45e19e35fd2d4c296684715e6","impliedFormat":1},{"version":"1e9332c23e9a907175e0ffc6a49e236f97b48838cc8aec9ce7e4cec21e544b65","impliedFormat":1},{"version":"3753fbc1113dc511214802a2342280a8b284ab9094f6420e7aa171e868679f91","impliedFormat":1},{"version":"999ca32883495a866aa5737fe1babc764a469e4cde6ee6b136a4b9ae68853e4b","impliedFormat":1},{"version":"17f13ecb98cbc39243f2eee1f16d45cd8ec4706b03ee314f1915f1a8b42f6984","impliedFormat":1},{"version":"d6b1eba8496bdd0eed6fc8a685768fe01b2da4a0388b5fe7df558290bffcf32f","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f57fc4404ff020bc45b9c620aff2b40f700b95fe31164024c453a5e3c163c54","impliedFormat":1},{"version":"eadcffda2aa84802c73938e589b9e58248d74c59cb7fcbca6474e3435ac15504","affectsGlobalScope":true,"impliedFormat":1},{"version":"105ba8ff7ba746404fe1a2e189d1d3d2e0eb29a08c18dded791af02f29fb4711","affectsGlobalScope":true,"impliedFormat":1},{"version":"00343ca5b2e3d48fa5df1db6e32ea2a59afab09590274a6cccb1dbae82e60c7c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ebd9f816d4002697cb2864bea1f0b70a103124e18a8cd9645eeccc09bdf80ab4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2c1afac30a01772cd2a9a298a7ce7706b5892e447bb46bdbeef720f7b5da77ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"7b0225f483e4fa685625ebe43dd584bb7973bbd84e66a6ba7bbe175ee1048b4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0a4b8ac6ce74679c1da2b3795296f5896e31c38e888469a8e0f99dc3305de60","affectsGlobalScope":true,"impliedFormat":1},{"version":"3084a7b5f569088e0146533a00830e206565de65cae2239509168b11434cd84f","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5079c53f0f141a0698faa903e76cb41cd664e3efb01cc17a5c46ec2eb0bef42","affectsGlobalScope":true,"impliedFormat":1},{"version":"32cafbc484dea6b0ab62cf8473182bbcb23020d70845b406f80b7526f38ae862","affectsGlobalScope":true,"impliedFormat":1},{"version":"fca4cdcb6d6c5ef18a869003d02c9f0fd95df8cfaf6eb431cd3376bc034cad36","affectsGlobalScope":true,"impliedFormat":1},{"version":"b93ec88115de9a9dc1b602291b85baf825c85666bf25985cc5f698073892b467","affectsGlobalScope":true,"impliedFormat":1},{"version":"f5c06dcc3fe849fcb297c247865a161f995cc29de7aa823afdd75aaaddc1419b","affectsGlobalScope":true,"impliedFormat":1},{"version":"b77e16112127a4b169ef0b8c3a4d730edf459c5f25fe52d5e436a6919206c4d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"fbffd9337146eff822c7c00acbb78b01ea7ea23987f6c961eba689349e744f8c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a995c0e49b721312f74fdfb89e4ba29bd9824c770bbb4021d74d2bf560e4c6bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"c7b3542146734342e440a84b213384bfa188835537ddbda50d30766f0593aff9","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce6180fa19b1cccd07ee7f7dbb9a367ac19c0ed160573e4686425060b6df7f57","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f02e2476bccb9dbe21280d6090f0df17d2f66b74711489415a8aa4df73c9675","affectsGlobalScope":true,"impliedFormat":1},{"version":"45e3ab34c1c013c8ab2dc1ba4c80c780744b13b5676800ae2e3be27ae862c40c","affectsGlobalScope":true,"impliedFormat":1},{"version":"805c86f6cca8d7702a62a844856dbaa2a3fd2abef0536e65d48732441dde5b5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e42e397f1a5a77994f0185fd1466520691456c772d06bf843e5084ceb879a0ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"f4c2b41f90c95b1c532ecc874bd3c111865793b23aebcc1c3cbbabcd5d76ffb0","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab26191cfad5b66afa11b8bf935ef1cd88fabfcb28d30b2dfa6fad877d050332","affectsGlobalScope":true,"impliedFormat":1},{"version":"2088bc26531e38fb05eedac2951480db5309f6be3fa4a08d2221abb0f5b4200d","affectsGlobalScope":true,"impliedFormat":1},{"version":"cb9d366c425fea79716a8fb3af0d78e6b22ebbab3bd64d25063b42dc9f531c1e","affectsGlobalScope":true,"impliedFormat":1},{"version":"500934a8089c26d57ebdb688fc9757389bb6207a3c8f0674d68efa900d2abb34","affectsGlobalScope":true,"impliedFormat":1},{"version":"689da16f46e647cef0d64b0def88910e818a5877ca5379ede156ca3afb780ac3","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc21cc8b6fee4f4c2440d08035b7ea3c06b3511314c8bab6bef7a92de58a2593","affectsGlobalScope":true,"impliedFormat":1},{"version":"7ca53d13d2957003abb47922a71866ba7cb2068f8d154877c596d63c359fed25","affectsGlobalScope":true,"impliedFormat":1},{"version":"54725f8c4df3d900cb4dac84b64689ce29548da0b4e9b7c2de61d41c79293611","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5594bc3076ac29e6c1ebda77939bc4c8833de72f654b6e376862c0473199323","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f3eb332c2d73e729f3364fcc0c2b375e72a121e8157d25a82d67a138c83a95c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6f4427f9642ce8d500970e4e69d1397f64072ab73b97e476b4002a646ac743b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"48915f327cd1dea4d7bd358d9dc7732f58f9e1626a29cc0c05c8c692419d9bb7","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7bf9377723203b5a6a4b920164df22d56a43f593269ba6ae1fdc97774b68855","affectsGlobalScope":true,"impliedFormat":1},{"version":"db9709688f82c9e5f65a119c64d835f906efe5f559d08b11642d56eb85b79357","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b25b8c874acd1a4cf8444c3617e037d444d19080ac9f634b405583fd10ce1f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"37be57d7c90cf1f8112ee2636a068d8fd181289f82b744160ec56a7dc158a9f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"a917a49ac94cd26b754ab84e113369a75d1a47a710661d7cd25e961cc797065f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d3261badeb7843d157ef3e6f5d1427d0eeb0af0cf9df84a62cfd29fd47ac86e","affectsGlobalScope":true,"impliedFormat":1},{"version":"195daca651dde22f2167ac0d0a05e215308119a3100f5e6268e8317d05a92526","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b11e4285cd2bb164a4dc09248bdec69e9842517db4ca47c1ba913011e44ff2f","affectsGlobalScope":true,"impliedFormat":1},{"version":"0508571a52475e245b02bc50fa1394065a0a3d05277fbf5120c3784b85651799","affectsGlobalScope":true,"impliedFormat":1},{"version":"8f9af488f510c3015af3cc8c267a9e9d96c4dd38a1fdff0e11dc5a544711415b","affectsGlobalScope":true,"impliedFormat":1},{"version":"fc611fea8d30ea72c6bbfb599c9b4d393ce22e2f5bfef2172534781e7d138104","affectsGlobalScope":true,"impliedFormat":1},{"version":"0bd714129fca875f7d4c477a1a392200b0bcd13fb2e80928cd334b63830ea047","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2c9037ae6cd2c52d80ceef0b3c5ffdb488627d71529cf4f63776daf11161c9a","affectsGlobalScope":true,"impliedFormat":1},{"version":"135d5cf4d345f59f1a9caadfafcd858d3d9cc68290db616cc85797224448cccc","affectsGlobalScope":true,"impliedFormat":1},{"version":"bc238c3f81c2984751932b6aab223cd5b830e0ac6cad76389e5e9d2ffc03287d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4a07f9b76d361f572620927e5735b77d6d2101c23cdd94383eb5b706e7b36357","affectsGlobalScope":true,"impliedFormat":1},{"version":"7c4e8dc6ab834cc6baa0227e030606d29e3e8449a9f67cdf5605ea5493c4db29","affectsGlobalScope":true,"impliedFormat":1},{"version":"de7ba0fd02e06cd9a5bd4ab441ed0e122735786e67dde1e849cced1cd8b46b78","affectsGlobalScope":true,"impliedFormat":1},{"version":"6148e4e88d720a06855071c3db02069434142a8332cf9c182cda551adedf3156","affectsGlobalScope":true,"impliedFormat":1},{"version":"d63dba625b108316a40c95a4425f8d4294e0deeccfd6c7e59d819efa19e23409","affectsGlobalScope":true,"impliedFormat":1},{"version":"0568d6befee03dd435bed4fc25c4e46865b24bdcb8c563fdc21f580a2c301904","affectsGlobalScope":true,"impliedFormat":1},{"version":"30d62269b05b584741f19a5369852d5d34895aa2ac4fd948956f886d15f9cc0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"f128dae7c44d8f35ee42e0a437000a57c9f06cc04f8b4fb42eebf44954d53dc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"ffbe6d7b295306b2ba88030f65b74c107d8d99bdcf596ea99c62a02f606108b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"996fb27b15277369c68a4ba46ed138b4e9e839a02fb4ec756f7997629242fd9f","affectsGlobalScope":true,"impliedFormat":1},{"version":"79b712591b270d4778c89706ca2cfc56ddb8c3f895840e477388f1710dc5eda9","affectsGlobalScope":true,"impliedFormat":1},{"version":"20884846cef428b992b9bd032e70a4ef88e349263f63aeddf04dda837a7dba26","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fcab789c73a97cd43828ee3cc94a61264cf24d4c44472ce64ced0e0f148bdb2","affectsGlobalScope":true,"impliedFormat":1},{"version":"db59a81f070c1880ad645b2c0275022baa6a0c4f0acdc58d29d349c6efcf0903","affectsGlobalScope":true,"impliedFormat":1},{"version":"673294292640f5722b700e7d814e17aaf7d93f83a48a2c9b38f33cbc940ad8b0","affectsGlobalScope":true,"impliedFormat":1},{"version":"d786b48f934cbca483b3c6d0a798cb43bbb4ada283e76fb22c28e53ae05b9e69","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ecb8e347cb6b2a8927c09b86263663289418df375f5e68e11a0ae683776978f","affectsGlobalScope":true,"impliedFormat":1},{"version":"142efd4ce210576f777dc34df121777be89eda476942d6d6663b03dcb53be3ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"379bc41580c2d774f82e828c70308f24a005b490c25ba34d679d84bcf05c3d9d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ed484fb2aa8a1a23d0277056ec3336e0a0b52f9b8d6a961f338a642faf43235d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ffedae1d1c2d53fdbca1c96d3c7dda544281f7d262f99b6880634f8fd8d9820","affectsGlobalScope":true,"impliedFormat":1},{"version":"83a730b125d477dd264df8ba479afab27a3dae7152b005c214ab94dc7ee44fd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"1ce14b81c5cc821994aa8ec1d42b220dd41b27fcc06373bce3958af7421b77d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3a048b3e9302ef9a34ef4ebb9aecfb28b66abb3bce577206a79fee559c230da","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e29f41b158de217f94cb9676bf9cbd0cd9b5a46e1985141ed36e075c52bf6ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"bd7dee3446a5b94651d58000ddfda40296f073e9372891f65003a524b4620697","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"bc03c3c352f689e38c0ddd50c39b1e65d59273991bfc8858a9e3c0ebb79c023b","impliedFormat":1},{"version":"a716a86c8c76742b47f4e7475ba3219188f2151979d1c55a027e275852890c45","signature":"9f8a4a6f0fa33835fe10847c3313103535a4aa19ab49260497e23bb938197acc"},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"ee8a149229af2834098b2776d0de116b0ead67ecefb18d06ef9638ad0ebe7286","signature":"2b2db01796f774852b44cacad054f31b9e63a3c4ed787d12c1dd75c75e602bef"},{"version":"1684064f1b0252907917f0c1a684ac3e2f2cb0b83f88d3362e38d3f3cf74b8ad","signature":"d86aae3a61fb2a3734379428044eefd6b048996f3a1a1cd7e57bb94d3d36b02b"},{"version":"ea3728b01d2575f1b383ebdc58f56d006c9f7d3d408b05416759df19126c8911","signature":"07a133f6bd32dbfd81aa6cbbd0eed2b4e26c920cb00508a58506897ef443f17f"},{"version":"4545a2b4483788cc65b488100c61f20ebdb08c22c7344572885ec14826d2f24b","signature":"b9f112f8e9a593f362dd5f434f8f997385dd62f15e2d2fb6d316e5d0d9942a51"},{"version":"d46f90a72c5370fdf90115c2c3a3c1b6f344cbac30e176eb92a083823233b2bb","signature":"09d6078412069edc1a6faad02c5846365d560ea26b03f0cd960137bd30ae4df9","affectsGlobalScope":true},{"version":"4ffbc79d3bf30be74fd9258569c6012cdbfee5a9249fed04b8e9072bcebd29e9","signature":"9382f138465c4775c54940f2a3d4334a083a6fc9a622a7c926c5f8233228cbae"},{"version":"635b1d7f9277daa21f877a84911e298ccd45c0961ef240da48102909ecace4cf","signature":"2100acdf9780bbfaa7c7c41109ea60464c7e17af1fb6ab3aa89e860ad1c3f350"},{"version":"a8e3c8077c3204a7f88c2e5c9e0a11dbbf89de7736b901e4ab0fdcee3c015252","signature":"008b61907cfba2dd062cbbf6aa6b790714c9f10bbbeff1af4cac610e3bcf688f"},{"version":"564dfb7b5db8da37501a9bc4a5bda849817d061fcbd02d4c811211d238836261","signature":"197426b39a1ee9b5dc05020bd7285c804a9c57358104677cdd68986edb7ecf0b"},{"version":"b823a47f674739ef4f8930b4fc7961da84deed0125827758c3eccf6b0f667943","signature":"c8525f0be940a19f3d03f06b6e43d4bea21ba910db62fb5024ecc671bcc23932"},{"version":"8829818558c8f86bf5fac39bb3ab3c683b93c698fff0717cceceeb292849bbf4","signature":"b47403a7e6e239e43bf3b91e224e38b4c8345da2dc9967a2a1682996e1d48829"},{"version":"bdf04d4dd9ed94c85da1be565643ef5fad4212b7a545da8f4792deb4cf426665","signature":"c6384012cac726d5b05237d2bd2c9c9da0893feaf54ab1dd0042fe141b9e5bd8"},{"version":"8ff6ca449f20c1d1bc8338fa1017ca8b45d0766cab6fa11e7fce8aa670cbd80c","signature":"994bfb8326dca5c985462ba74b5c64146aef0e3ea7bbbbf265ad426d884fbc9e"},{"version":"09549171f4eca3cb29097163a9371c02298e61d02cd12bb161f9b41eb677c86f","signature":"00dd4ce0458ebf64e2e0617d4bc04f3a9a569bc388f3a20c1c4416d465e99245"},{"version":"5889d61cffb3a390c141cce41c0b115302ab5a5760533839f106c41f07671a3d","signature":"e5f0e0e21621bb3e87958857cc9695abf011fb257bd249abd42ae97b3b61e1d0"},{"version":"9c613530527e7eddd1ef9fade0ee8fe5a6f9ac40bb7b454ff1e03530cafde053","signature":"5cf43ceac60fba7927af9ce9b27fb6031854fc923263b78c353fb986857218b9"},{"version":"8bec5d913b66865ea88ced047c96b2f048c8343ca8e142e8c37942f6f9d62a35","signature":"0caa217adbbdb001facd9aeb363fa2a446eabbeb4e5af2c1f2c3d1ef4bbffc6e"},{"version":"5a86d3602f726666a25128f4710406135d5a52dcba3c1b47d6c5f244490e706b","signature":"63bfd9f3fbbcb2dc649dd7303b9fdcf5680c25e217228a5abe005674bfc8bed5"},{"version":"934d2d6e26d57425550744e36443449d1d1d7e2e5d91e03afb1ca27290d4a158","signature":"bbaa85a96900ee24d770ce38f7807d2d3cc2ca203e223cd4080447680910992e"},{"version":"7ef8ebe7a41a41bbc487bdacb11f5d5ea98dd939cd2d9f49f72b4665bfc7818b","signature":"b43c263b28c6f20a6d7066e22f6906fe51605b6a4b7709a3c47d7cf6c0ccf93e"},{"version":"9708aa48c6d4b4585f90bf895e19db6e5ba1324a0bf7d7d12eb9d19eded02875","signature":"ea9768ee8ae2400a4352956f0937ff7ce12640c4de3c69d6e71e8a2f954ad58a"},{"version":"c1765ec7c06443b1c353c2bb94b99b3b5a423acd7ee15bb434f7697d955111a8","signature":"7302ddfa6ab62295a7ad2cf47cc8b933be587d161d5b818aba3e85d7af69e59e"},{"version":"f4d4df48a8a99b91545aaed8ad1beaaef5c314aa5d8d55029d80910960dc93a5","signature":"d9ce1372a43589027af010d0293b17099bf27089071c6d12ce30eb94b70191af"},{"version":"296c26ce70323317972ec25f9d5cfe79cb99f576423c81798f906d52e7c48432","signature":"dbb3eab27a108491f80873c1031ddc0b1a16c47f4c32e2ec2e70b83e9cee161b"},{"version":"49ccdd12861c01e002d1278b952c68ae68c8f8d73f7148f6fd62fe266c607b09","signature":"8aec088c8b901c6fe9e7fe22785892138849af77a640d12b7015ec52a95aa27c"},{"version":"b0deee63596a2b6eae6f15e9c749f457b19193c4bd7a1e12be6631e7bff0fafd","signature":"fbf09bd600d727f9b55ca83a7631c3554da2e367ffb904981dda443f22daf7aa"}],"root":[95,[97,122]],"options":{"allowJs":true,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noImplicitAny":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"../../src/client","skipLibCheck":true,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"suppressImplicitAnyIndexErrors":false,"target":99,"tsBuildInfoFile":"./.tsbuildinfo"},"referencedMap":[[94,1],[96,1],[92,2],[93,1],[115,3],[120,4],[118,3],[119,3],[121,5],[95,3],[103,3],[104,6],[122,7],[112,8],[99,9],[113,10],[101,11],[97,12],[114,13],[102,14],[107,15],[108,14],[105,16],[100,12],[111,17],[106,18],[110,19],[109,3],[116,20],[117,21],[98,3]],"version":"6.0.3"}
@@ -115,7 +115,7 @@ export function DevErrorOverlay() {
115
115
  const devError = useSyncExternalStore(subscribe, () => current, () => null);
116
116
  if (!devError)
117
117
  return null;
118
- return (_jsx("div", { style: overlayStyle, role: "alert", children: _jsxs("div", { style: panelStyle, children: [_jsxs("p", { style: titleStyle, children: [SOURCE_LABEL[devError.source], ", ", devError.error.name, ": ", devError.error.message] }), devError.error.stack !== undefined && _jsx("pre", { style: preStyle, children: devError.error.stack }), devError.componentStack !== undefined && (_jsx("pre", { style: { ...preStyle, color: '#8b9ab4' }, children: devError.componentStack })), _jsxs("div", { style: { marginTop: '1.25rem' }, children: [_jsx("button", { type: "button", style: buttonStyle, onClick: () => {
118
+ return (_jsx("div", { style: overlayStyle, role: "alert", children: _jsxs("div", { style: panelStyle, children: [_jsxs("p", { style: titleStyle, children: [SOURCE_LABEL[devError.source], ", ", devError.error.name, ": ", devError.error.message] }), devError.error.stack !== undefined && (_jsx("pre", { style: preStyle, children: devError.error.stack })), devError.componentStack !== undefined && (_jsx("pre", { style: { ...preStyle, color: '#8b9ab4' }, children: devError.componentStack })), _jsxs("div", { style: { marginTop: '1.25rem' }, children: [_jsx("button", { type: "button", style: buttonStyle, onClick: () => {
119
119
  setDevError(null);
120
120
  }, children: "Dismiss" }), _jsx("button", { type: "button", style: buttonStyle, onClick: () => {
121
121
  window.location.reload();
@@ -4,7 +4,9 @@ export function resolveMetadata(metadata) {
4
4
  meta.push({ name: 'description', content: metadata.description });
5
5
  }
6
6
  if (metadata.keywords !== undefined) {
7
- const content = typeof metadata.keywords === 'string' ? metadata.keywords : metadata.keywords.join(', ');
7
+ const content = typeof metadata.keywords === 'string'
8
+ ? metadata.keywords
9
+ : metadata.keywords.join(', ');
8
10
  meta.push({ name: 'keywords', content });
9
11
  }
10
12
  if (metadata.robots !== undefined)
@@ -21,7 +21,11 @@ export type { Channel, ChannelOptions, ChannelHook, ChannelData } from './channe
21
21
  export { useHead, useTitle, Head, mergeHead } from './head/head.js';
22
22
  export type { HeadSpec, MetaTag, LinkTag, ResolvedHead } from './head/head.js';
23
23
  export { resolveMetadata } from './head/metadata.js';
24
- export type { Metadata, GenerateMetadata, GenerateMetadataArgs, OpenGraph } from './head/metadata.js';
24
+ export type { Metadata, GenerateMetadata, GenerateMetadataArgs, OpenGraph, } from './head/metadata.js';
25
+ export { searchPages, registerPages, getPages, pagePath } from './search/search.js';
26
+ export type { PageMeta, PageSearchResult, PageSearchOptions, SearchField, SearchHints, } from './search/search.js';
27
+ export { usePageSearch } from './search/use-page-search.js';
28
+ export type { PageSearch } from './search/use-page-search.js';
25
29
  export { Image } from './components/Image.js';
26
30
  export type { ImageProps } from './components/Image.js';
27
31
  export { Script } from './components/Script.js';
@@ -11,6 +11,8 @@ export { matchRoute } from './routing/match.js';
11
11
  export { connectChannel, useChannel, resolveChannelUrl } from './channel/channel.js';
12
12
  export { useHead, useTitle, Head, mergeHead } from './head/head.js';
13
13
  export { resolveMetadata } from './head/metadata.js';
14
+ export { searchPages, registerPages, getPages, pagePath } from './search/search.js';
15
+ export { usePageSearch } from './search/use-page-search.js';
14
16
  export { Image } from './components/Image.js';
15
17
  export { Script } from './components/Script.js';
16
18
  export { Form } from './components/Form.js';
@@ -1,6 +1,6 @@
1
1
  import { startTransition } from 'react';
2
2
  import { flushSync } from 'react-dom';
3
- import { enableManualScrollRestoration, planScroll, rememberScroll, } from './scroll.js';
3
+ import { enableManualScrollRestoration, planScroll, rememberScroll } from './scroll.js';
4
4
  const listeners = new Set();
5
5
  let popstateBound = false;
6
6
  let viewTransitions = false;
@@ -13,7 +13,7 @@ import { applyScroll } from '../navigation/scroll.js';
13
13
  function RoutePage(props) {
14
14
  const { Component, data, head } = readRouteData(props.route, props.params, props.dataKey, props.epoch);
15
15
  useRouteHead(head);
16
- return _jsx(LoaderDataContext.Provider, { value: data, children: createElement(Component) });
16
+ return (_jsx(LoaderDataContext.Provider, { value: data, children: createElement(Component) }));
17
17
  }
18
18
  function renderMatched(matched, params, pathname, epoch, keyPrefix) {
19
19
  const search = typeof window === 'undefined' ? '' : window.location.search;
@@ -33,7 +33,7 @@ function renderMatched(matched, params, pathname, epoch, keyPrefix) {
33
33
  content = (_jsx(Suspense, { fallback: null, children: _jsx(NestedLayout, { children: content }) }));
34
34
  }
35
35
  if (matched.errorComponent) {
36
- content = _jsx(ErrorBoundary, { fallback: errorComponent(matched.errorComponent), children: content });
36
+ content = (_jsx(ErrorBoundary, { fallback: errorComponent(matched.errorComponent), children: content }));
37
37
  }
38
38
  return content;
39
39
  }
@@ -0,0 +1,26 @@
1
+ import type { Metadata } from '../head/metadata.js';
2
+ export interface SearchHints {
3
+ readonly title?: string;
4
+ readonly description?: string;
5
+ readonly keywords?: string | readonly string[];
6
+ }
7
+ export interface PageMeta {
8
+ readonly path: string;
9
+ readonly dynamic: boolean;
10
+ readonly metadata: Metadata;
11
+ }
12
+ export type SearchField = 'title' | 'description' | 'keywords' | 'path' | 'openGraph';
13
+ export interface PageSearchOptions {
14
+ readonly limit?: number;
15
+ readonly includeDynamic?: boolean;
16
+ readonly fields?: readonly SearchField[];
17
+ }
18
+ export interface PageSearchResult {
19
+ readonly page: PageMeta;
20
+ readonly score: number;
21
+ readonly matches: readonly SearchField[];
22
+ }
23
+ export declare function registerPages(pages: readonly PageMeta[]): void;
24
+ export declare function getPages(): readonly PageMeta[];
25
+ export declare function pagePath(target: string | PageMeta | PageSearchResult): string;
26
+ export declare function searchPages(query: string, options?: PageSearchOptions): PageSearchResult[];
@@ -0,0 +1,101 @@
1
+ const FIELD_WEIGHT = {
2
+ title: 10,
3
+ path: 6,
4
+ keywords: 5,
5
+ description: 3,
6
+ openGraph: 2,
7
+ };
8
+ const ALL_FIELDS = [
9
+ 'title',
10
+ 'description',
11
+ 'keywords',
12
+ 'path',
13
+ 'openGraph',
14
+ ];
15
+ let registry = [];
16
+ export function registerPages(pages) {
17
+ registry = pages;
18
+ }
19
+ export function getPages() {
20
+ return registry;
21
+ }
22
+ export function pagePath(target) {
23
+ if (typeof target === 'string')
24
+ return target;
25
+ return 'page' in target ? target.page.path : target.path;
26
+ }
27
+ function keywordsText(keywords) {
28
+ if (keywords === undefined)
29
+ return '';
30
+ return typeof keywords === 'string' ? keywords : keywords.join(' ');
31
+ }
32
+ function fieldText(page, field) {
33
+ const m = page.metadata;
34
+ switch (field) {
35
+ case 'title':
36
+ return m.title ?? '';
37
+ case 'description':
38
+ return m.description ?? '';
39
+ case 'keywords':
40
+ return keywordsText(m.keywords);
41
+ case 'path':
42
+ return page.path.replace(/[/:*\-_]+/g, ' ').trim();
43
+ case 'openGraph': {
44
+ const og = m.openGraph;
45
+ if (!og)
46
+ return '';
47
+ return [og.title, og.description, og.siteName, og.type].filter(Boolean).join(' ');
48
+ }
49
+ }
50
+ }
51
+ function isWordStart(text, index) {
52
+ return index === 0 || !/[a-z0-9]/i.test(text[index - 1]);
53
+ }
54
+ function scoreTerm(text, term, weight) {
55
+ const index = text.indexOf(term);
56
+ if (index === -1)
57
+ return 0;
58
+ if (text === term)
59
+ return weight * 3;
60
+ if (index === 0)
61
+ return weight * 1.6;
62
+ if (isWordStart(text, index))
63
+ return weight * 1.2;
64
+ return weight;
65
+ }
66
+ export function searchPages(query, options = {}) {
67
+ const terms = query.toLowerCase().split(/\s+/).filter(Boolean);
68
+ if (terms.length === 0)
69
+ return [];
70
+ const fields = options.fields ?? ALL_FIELDS;
71
+ const results = [];
72
+ for (const page of registry) {
73
+ if (page.dynamic && !options.includeDynamic)
74
+ continue;
75
+ const texts = fields.map((field) => ({
76
+ field,
77
+ text: fieldText(page, field).toLowerCase(),
78
+ }));
79
+ const matched = new Set();
80
+ let score = 0;
81
+ const allTermsMatch = terms.every((term) => {
82
+ let termScore = 0;
83
+ for (const { field, text } of texts) {
84
+ if (!text)
85
+ continue;
86
+ const s = scoreTerm(text, term, FIELD_WEIGHT[field]);
87
+ if (s > 0) {
88
+ termScore += s;
89
+ matched.add(field);
90
+ }
91
+ }
92
+ score += termScore;
93
+ return termScore > 0;
94
+ });
95
+ if (allTermsMatch && score > 0) {
96
+ results.push({ page, score, matches: [...matched] });
97
+ }
98
+ }
99
+ results.sort((a, b) => b.score - a.score || a.page.path.localeCompare(b.page.path));
100
+ return options.limit !== undefined ? results.slice(0, options.limit) : results;
101
+ }
@@ -0,0 +1,8 @@
1
+ import { type NavigateOptions } from '../navigation/navigation.js';
2
+ import { type PageMeta, type PageSearchOptions, type PageSearchResult } from './search.js';
3
+ export interface PageSearch {
4
+ readonly results: readonly PageSearchResult[];
5
+ readonly pages: readonly PageMeta[];
6
+ readonly goTo: (target: string | PageMeta | PageSearchResult, options?: NavigateOptions) => void;
7
+ }
8
+ export declare function usePageSearch(query: string, options?: PageSearchOptions): PageSearch;
@@ -0,0 +1,21 @@
1
+ import { useMemo } from 'react';
2
+ import { navigate } from '../navigation/navigation.js';
3
+ import { getPages, pagePath, searchPages, } from './search.js';
4
+ function isNavigable(path) {
5
+ return !/[:*]/.test(path);
6
+ }
7
+ export function usePageSearch(query, options = {}) {
8
+ const { limit, includeDynamic, fields } = options;
9
+ const fieldsKey = fields?.join(',');
10
+ const results = useMemo(() => searchPages(query, { limit, includeDynamic, fields }), [query, limit, includeDynamic, fieldsKey]);
11
+ return useMemo(() => ({
12
+ results,
13
+ pages: getPages(),
14
+ goTo(target, navOptions) {
15
+ const path = pagePath(target);
16
+ if (typeof target !== 'string' && !isNavigable(path))
17
+ return;
18
+ navigate(path, navOptions);
19
+ },
20
+ }), [results]);
21
+ }