blume 0.6.7 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +618 -0
- package/LICENSE +21 -0
- package/README.md +107 -0
- package/dist/cli/index.js +2609 -1041
- package/dist/cli/index.js.map +110 -103
- package/dist/types/ai/component-markdown.d.ts +34 -0
- package/dist/types/components/content/youtube.d.ts +18 -0
- package/dist/types/core/base-path.d.ts +47 -0
- package/dist/types/core/config-input.d.ts +110 -12
- package/dist/types/core/config.d.ts +6 -4
- package/dist/types/core/data.d.ts +4 -0
- package/dist/types/core/i18n-ui.d.ts +477 -135
- package/dist/types/core/schema.d.ts +309 -195
- package/dist/types/core/sources/types.d.ts +2 -0
- package/dist/types/core/types.d.ts +6 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/openapi/references.d.ts +60 -0
- package/docs/01-quickstart.mdx +5 -2
- package/docs/02-deployment.mdx +24 -9
- package/docs/03-faq.mdx +46 -16
- package/docs/advanced/custom-pages.mdx +1 -1
- package/docs/advanced/skills.mdx +1 -1
- package/docs/configuration/ai.mdx +49 -10
- package/docs/configuration/customization.mdx +11 -0
- package/docs/configuration/index.mdx +33 -3
- package/docs/configuration/seo.mdx +2 -2
- package/docs/content/components.mdx +30 -3
- package/docs/content/i18n.mdx +1 -1
- package/docs/content/islands.mdx +8 -0
- package/docs/content/navigation.mdx +3 -3
- package/docs/content/sources.mdx +1 -1
- package/docs/content/syntax.mdx +17 -2
- package/docs/index.mdx +2 -2
- package/docs/reference/cli.mdx +8 -6
- package/package.json +15 -4
- package/skills/blume/SKILL.md +5 -3
- package/skills/blume-update-docs/SKILL.md +3 -2
- package/src/ai/agent-readability.ts +11 -5
- package/src/ai/ask-context.ts +7 -2
- package/src/ai/ask-data.ts +3 -0
- package/src/ai/ask.ts +12 -7
- package/src/ai/component-markdown.ts +461 -0
- package/src/ai/llms.ts +143 -23
- package/src/ai/markdown.ts +35 -6
- package/src/ai/mcp/data.ts +33 -8
- package/src/ai/mcp/discovery.ts +10 -3
- package/src/ai/mcp/server.ts +24 -7
- package/src/ai/visibility.ts +74 -0
- package/src/astro/component-slots.ts +16 -4
- package/src/astro/examples.ts +12 -7
- package/src/astro/generate.ts +393 -189
- package/src/astro/index.ts +5 -1
- package/src/astro/integration.ts +9 -5
- package/src/astro/islands.ts +11 -5
- package/src/astro/markdown-negotiation.ts +2 -2
- package/src/astro/pages.ts +89 -22
- package/src/astro/templates.ts +259 -25
- package/src/blume-modules.d.ts +8 -0
- package/src/cli/commands/build.ts +131 -38
- package/src/cli/commands/check.ts +1 -1
- package/src/cli/commands/dev.ts +71 -17
- package/src/cli/commands/doctor.ts +2 -2
- package/src/cli/commands/eject.ts +47 -19
- package/src/cli/commands/init.ts +120 -180
- package/src/cli/commands/preview.ts +4 -1
- package/src/cli/commands/validate.ts +44 -2
- package/src/cli/dev-lock.ts +34 -19
- package/src/cli/eject-scripts.ts +72 -0
- package/src/cli/env.ts +15 -5
- package/src/cli/init/questions.ts +158 -0
- package/src/cli/init/scaffold.ts +380 -0
- package/src/cli/required-secrets.ts +2 -1
- package/src/components/content/AccordionItem.astro +23 -4
- package/src/components/content/Badge.astro +3 -1
- package/src/components/content/Card.astro +4 -2
- package/src/components/content/CodeBlock.astro +3 -0
- package/src/components/content/Component.astro +30 -16
- package/src/components/content/Diff.astro +3 -1
- package/src/components/content/Step.astro +10 -1
- package/src/components/content/Tabs.astro +15 -3
- package/src/components/content/Tile.astro +2 -1
- package/src/components/content/Tooltip.astro +3 -1
- package/src/components/content/Update.astro +9 -2
- package/src/components/content/auto-type-table.ts +25 -9
- package/src/components/content/base-href.ts +33 -0
- package/src/components/content/changelog-element.ts +9 -2
- package/src/components/content/diff.ts +12 -6
- package/src/components/content/mermaid-element.ts +10 -2
- package/src/components/index.ts +23 -1
- package/src/components/islands/AskAI.astro +5 -2
- package/src/components/islands/ask-ai.tsx +68 -12
- package/src/components/islands/base-path.ts +28 -0
- package/src/components/islands/hooks.ts +44 -9
- package/src/components/layout/Banner.astro +12 -3
- package/src/components/layout/Breadcrumbs.astro +2 -1
- package/src/components/layout/Favicon.astro +3 -2
- package/src/components/layout/Header.astro +15 -5
- package/src/components/layout/LanguageSwitcher.astro +2 -1
- package/src/components/layout/Logo.astro +13 -4
- package/src/components/layout/NavSelector.astro +2 -1
- package/src/components/layout/NavTree.astro +22 -7
- package/src/components/layout/PageActions.astro +25 -10
- package/src/components/layout/PageFeedback.astro +4 -1
- package/src/components/layout/PageLayout.astro +51 -9
- package/src/components/layout/Pagination.astro +3 -2
- package/src/components/layout/ReferenceLayout.astro +8 -1
- package/src/components/layout/RootLayout.astro +74 -13
- package/src/components/layout/Search.astro +107 -27
- package/src/components/layout/nav-utils.ts +18 -10
- package/src/components/layout/search/algolia.ts +11 -2
- package/src/components/layout/search/endpoint.ts +11 -5
- package/src/components/layout/search/orama-cloud.ts +8 -2
- package/src/components/layout/search/pagefind.ts +3 -0
- package/src/components/layout/search/types.ts +5 -1
- package/src/components/layout/search/typesense.ts +4 -1
- package/src/components/layout/toc-element.ts +8 -2
- package/src/components/openapi/ApiTagOperations.astro +2 -1
- package/src/components/openapi/Operation.astro +47 -40
- package/src/components/openapi/RequestPanel.astro +8 -2
- package/src/components/openapi/helpers.ts +71 -3
- package/src/components/openapi/panel.ts +1 -1
- package/src/components/openapi/snippets.ts +25 -11
- package/src/core/base-path.ts +94 -0
- package/src/core/builtin-tags.ts +2 -0
- package/src/core/component-overrides.ts +103 -74
- package/src/core/config-input.ts +118 -17
- package/src/core/config.ts +8 -5
- package/src/core/content.ts +2 -0
- package/src/core/data.ts +4 -0
- package/src/core/diagnostics.ts +54 -34
- package/src/core/gitignore.ts +4 -1
- package/src/core/graph.ts +166 -88
- package/src/core/i18n-ui.ts +63 -3
- package/src/core/last-modified.ts +15 -6
- package/src/core/links.ts +69 -25
- package/src/core/manifest.ts +62 -45
- package/src/core/nav-diagnostics.ts +1 -1
- package/src/core/navigation.ts +144 -58
- package/src/core/package-json.ts +17 -2
- package/src/core/project-graph.ts +25 -15
- package/src/core/schema.ts +605 -620
- package/src/core/sources/assets.ts +6 -1
- package/src/core/sources/filesystem.ts +4 -0
- package/src/core/sources/github-releases.ts +2 -1
- package/src/core/sources/mdx-remote.ts +76 -63
- package/src/core/sources/normalize.ts +236 -91
- package/src/core/sources/notion.ts +27 -18
- package/src/core/sources/types.ts +2 -0
- package/src/core/tsconfig-aliases.ts +59 -30
- package/src/core/types.ts +6 -1
- package/src/core/ui-packs/ar.ts +1 -0
- package/src/core/ui-packs/bg.ts +1 -0
- package/src/core/ui-packs/bn.ts +1 -0
- package/src/core/ui-packs/ca.ts +1 -0
- package/src/core/ui-packs/cs.ts +1 -0
- package/src/core/ui-packs/da.ts +1 -0
- package/src/core/ui-packs/de.ts +1 -0
- package/src/core/ui-packs/el.ts +1 -0
- package/src/core/ui-packs/es.ts +1 -0
- package/src/core/ui-packs/fa.ts +1 -0
- package/src/core/ui-packs/fi.ts +1 -0
- package/src/core/ui-packs/fr.ts +2 -1
- package/src/core/ui-packs/he.ts +1 -0
- package/src/core/ui-packs/hi.ts +1 -0
- package/src/core/ui-packs/hr.ts +1 -0
- package/src/core/ui-packs/hu.ts +1 -0
- package/src/core/ui-packs/id.ts +1 -0
- package/src/core/ui-packs/it.ts +1 -0
- package/src/core/ui-packs/ja.ts +1 -0
- package/src/core/ui-packs/ko.ts +1 -0
- package/src/core/ui-packs/nl.ts +1 -0
- package/src/core/ui-packs/no.ts +1 -0
- package/src/core/ui-packs/pl.ts +1 -0
- package/src/core/ui-packs/pt-br.ts +1 -0
- package/src/core/ui-packs/pt.ts +1 -0
- package/src/core/ui-packs/ro.ts +1 -0
- package/src/core/ui-packs/ru.ts +1 -0
- package/src/core/ui-packs/sk.ts +1 -0
- package/src/core/ui-packs/sr.ts +1 -0
- package/src/core/ui-packs/sv.ts +1 -0
- package/src/core/ui-packs/th.ts +1 -0
- package/src/core/ui-packs/tr.ts +1 -0
- package/src/core/ui-packs/uk.ts +1 -0
- package/src/core/ui-packs/vi.ts +1 -0
- package/src/core/ui-packs/zh-tw.ts +1 -0
- package/src/core/ui-packs/zh.ts +1 -0
- package/src/deploy/adapter-output.ts +18 -8
- package/src/deploy/redirects.ts +25 -2
- package/src/deploy/robots.ts +6 -1
- package/src/deploy/rss.ts +10 -3
- package/src/deploy/sitemap.ts +59 -13
- package/src/index.ts +5 -0
- package/src/markdown/base-links.ts +60 -0
- package/src/markdown/code-title.ts +11 -14
- package/src/markdown/index.ts +46 -9
- package/src/markdown/inline-code.ts +14 -4
- package/src/markdown/package-commands.ts +10 -4
- package/src/markdown/themes.ts +24 -0
- package/src/openapi/model.ts +15 -5
- package/src/openapi/parse.ts +21 -0
- package/src/openapi/references.ts +75 -21
- package/src/openapi/render-mdx.ts +11 -6
- package/src/openapi/scalar.ts +32 -16
- package/src/openapi/source.ts +59 -10
- package/src/registry/eject.ts +247 -19
- package/src/registry/registry.ts +0 -3
- package/src/search/build.ts +3 -0
- package/src/search/documents.ts +36 -4
- package/src/search/sync/typesense.ts +6 -4
- package/src/seo/jsonld.ts +28 -17
- package/src/theme/entry.ts +85 -20
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
|
-
import { UI_PACKS } from "./ui-packs/index.ts";
|
|
3
2
|
/**
|
|
4
3
|
* Translatable UI chrome strings.
|
|
5
4
|
*
|
|
@@ -16,13 +15,19 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
16
15
|
connectMcp: z.ZodDefault<z.ZodString>;
|
|
17
16
|
copied: z.ZodDefault<z.ZodString>;
|
|
18
17
|
copyClaudeCode: z.ZodDefault<z.ZodString>;
|
|
18
|
+
copyCode: z.ZodDefault<z.ZodString>;
|
|
19
19
|
copyCodex: z.ZodDefault<z.ZodString>;
|
|
20
20
|
copyMarkdown: z.ZodDefault<z.ZodString>;
|
|
21
21
|
copyServerUrl: z.ZodDefault<z.ZodString>;
|
|
22
22
|
edit: z.ZodDefault<z.ZodString>;
|
|
23
|
+
export: z.ZodDefault<z.ZodString>;
|
|
24
|
+
exportEpub: z.ZodDefault<z.ZodString>;
|
|
25
|
+
exportPdf: z.ZodDefault<z.ZodString>;
|
|
26
|
+
generating: z.ZodDefault<z.ZodString>;
|
|
23
27
|
openInChat: z.ZodDefault<z.ZodString>;
|
|
24
28
|
scrollToTop: z.ZodDefault<z.ZodString>;
|
|
25
29
|
}, "strip", z.ZodTypeAny, {
|
|
30
|
+
export: string;
|
|
26
31
|
addToCursor: string;
|
|
27
32
|
addToVscode: string;
|
|
28
33
|
askAI: string;
|
|
@@ -34,8 +39,13 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
34
39
|
edit: string;
|
|
35
40
|
openInChat: string;
|
|
36
41
|
scrollToTop: string;
|
|
42
|
+
copyCode: string;
|
|
37
43
|
copyCodex: string;
|
|
44
|
+
exportEpub: string;
|
|
45
|
+
exportPdf: string;
|
|
46
|
+
generating: string;
|
|
38
47
|
}, {
|
|
48
|
+
export?: string | undefined;
|
|
39
49
|
addToCursor?: string | undefined;
|
|
40
50
|
addToVscode?: string | undefined;
|
|
41
51
|
askAI?: string | undefined;
|
|
@@ -47,9 +57,14 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
47
57
|
edit?: string | undefined;
|
|
48
58
|
openInChat?: string | undefined;
|
|
49
59
|
scrollToTop?: string | undefined;
|
|
60
|
+
copyCode?: string | undefined;
|
|
50
61
|
copyCodex?: string | undefined;
|
|
62
|
+
exportEpub?: string | undefined;
|
|
63
|
+
exportPdf?: string | undefined;
|
|
64
|
+
generating?: string | undefined;
|
|
51
65
|
}>>;
|
|
52
66
|
ask: z.ZodDefault<z.ZodObject<{
|
|
67
|
+
ai: z.ZodDefault<z.ZodString>;
|
|
53
68
|
clear: z.ZodDefault<z.ZodString>;
|
|
54
69
|
close: z.ZodDefault<z.ZodString>;
|
|
55
70
|
copy: z.ZodDefault<z.ZodString>;
|
|
@@ -60,28 +75,54 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
60
75
|
send: z.ZodDefault<z.ZodString>;
|
|
61
76
|
tip: z.ZodDefault<z.ZodString>;
|
|
62
77
|
title: z.ZodDefault<z.ZodString>;
|
|
78
|
+
you: z.ZodDefault<z.ZodString>;
|
|
63
79
|
}, "strip", z.ZodTypeAny, {
|
|
64
|
-
|
|
80
|
+
title: string;
|
|
65
81
|
error: string;
|
|
66
82
|
label: string;
|
|
83
|
+
ai: string;
|
|
84
|
+
empty: string;
|
|
67
85
|
placeholder: string;
|
|
68
86
|
send: string;
|
|
69
|
-
title: string;
|
|
70
87
|
clear: string;
|
|
71
88
|
close: string;
|
|
72
89
|
copy: string;
|
|
73
90
|
tip: string;
|
|
91
|
+
you: string;
|
|
74
92
|
}, {
|
|
75
|
-
|
|
93
|
+
title?: string | undefined;
|
|
76
94
|
error?: string | undefined;
|
|
77
95
|
label?: string | undefined;
|
|
96
|
+
ai?: string | undefined;
|
|
97
|
+
empty?: string | undefined;
|
|
78
98
|
placeholder?: string | undefined;
|
|
79
99
|
send?: string | undefined;
|
|
80
|
-
title?: string | undefined;
|
|
81
100
|
clear?: string | undefined;
|
|
82
101
|
close?: string | undefined;
|
|
83
102
|
copy?: string | undefined;
|
|
84
103
|
tip?: string | undefined;
|
|
104
|
+
you?: string | undefined;
|
|
105
|
+
}>>;
|
|
106
|
+
banner: z.ZodDefault<z.ZodObject<{
|
|
107
|
+
dismiss: z.ZodDefault<z.ZodString>;
|
|
108
|
+
}, "strip", z.ZodTypeAny, {
|
|
109
|
+
dismiss: string;
|
|
110
|
+
}, {
|
|
111
|
+
dismiss?: string | undefined;
|
|
112
|
+
}>>;
|
|
113
|
+
changelog: z.ZodDefault<z.ZodObject<{
|
|
114
|
+
showReleases: z.ZodDefault<z.ZodString>;
|
|
115
|
+
}, "strip", z.ZodTypeAny, {
|
|
116
|
+
showReleases: string;
|
|
117
|
+
}, {
|
|
118
|
+
showReleases?: string | undefined;
|
|
119
|
+
}>>;
|
|
120
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
121
|
+
diagramError: z.ZodDefault<z.ZodString>;
|
|
122
|
+
}, "strip", z.ZodTypeAny, {
|
|
123
|
+
diagramError: string;
|
|
124
|
+
}, {
|
|
125
|
+
diagramError?: string | undefined;
|
|
85
126
|
}>>;
|
|
86
127
|
feedback: z.ZodDefault<z.ZodObject<{
|
|
87
128
|
no: z.ZodDefault<z.ZodString>;
|
|
@@ -109,6 +150,40 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
109
150
|
label?: string | undefined;
|
|
110
151
|
untranslated?: string | undefined;
|
|
111
152
|
}>>;
|
|
153
|
+
nav: z.ZodDefault<z.ZodObject<{
|
|
154
|
+
back: z.ZodDefault<z.ZodString>;
|
|
155
|
+
closeNavigation: z.ZodDefault<z.ZodString>;
|
|
156
|
+
deprecated: z.ZodDefault<z.ZodString>;
|
|
157
|
+
featured: z.ZodDefault<z.ZodString>;
|
|
158
|
+
githubRepository: z.ZodDefault<z.ZodString>;
|
|
159
|
+
navigation: z.ZodDefault<z.ZodString>;
|
|
160
|
+
primary: z.ZodDefault<z.ZodString>;
|
|
161
|
+
sections: z.ZodDefault<z.ZodString>;
|
|
162
|
+
toggleNavigation: z.ZodDefault<z.ZodString>;
|
|
163
|
+
toggleTheme: z.ZodDefault<z.ZodString>;
|
|
164
|
+
}, "strip", z.ZodTypeAny, {
|
|
165
|
+
deprecated: string;
|
|
166
|
+
featured: string;
|
|
167
|
+
navigation: string;
|
|
168
|
+
back: string;
|
|
169
|
+
closeNavigation: string;
|
|
170
|
+
githubRepository: string;
|
|
171
|
+
primary: string;
|
|
172
|
+
sections: string;
|
|
173
|
+
toggleNavigation: string;
|
|
174
|
+
toggleTheme: string;
|
|
175
|
+
}, {
|
|
176
|
+
deprecated?: string | undefined;
|
|
177
|
+
featured?: string | undefined;
|
|
178
|
+
navigation?: string | undefined;
|
|
179
|
+
back?: string | undefined;
|
|
180
|
+
closeNavigation?: string | undefined;
|
|
181
|
+
githubRepository?: string | undefined;
|
|
182
|
+
primary?: string | undefined;
|
|
183
|
+
sections?: string | undefined;
|
|
184
|
+
toggleNavigation?: string | undefined;
|
|
185
|
+
toggleTheme?: string | undefined;
|
|
186
|
+
}>>;
|
|
112
187
|
notFound: z.ZodDefault<z.ZodObject<{
|
|
113
188
|
description: z.ZodDefault<z.ZodString>;
|
|
114
189
|
home: z.ZodDefault<z.ZodString>;
|
|
@@ -140,25 +215,49 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
140
215
|
}>>;
|
|
141
216
|
search: z.ZodDefault<z.ZodObject<{
|
|
142
217
|
allLanguages: z.ZodDefault<z.ZodString>;
|
|
218
|
+
askAi: z.ZodDefault<z.ZodString>;
|
|
219
|
+
askAiHint: z.ZodDefault<z.ZodString>;
|
|
143
220
|
button: z.ZodDefault<z.ZodString>;
|
|
144
221
|
devOnly: z.ZodDefault<z.ZodString>;
|
|
222
|
+
error: z.ZodDefault<z.ZodString>;
|
|
145
223
|
label: z.ZodDefault<z.ZodString>;
|
|
224
|
+
navigate: z.ZodDefault<z.ZodString>;
|
|
146
225
|
noResults: z.ZodDefault<z.ZodString>;
|
|
226
|
+
open: z.ZodDefault<z.ZodString>;
|
|
147
227
|
placeholder: z.ZodDefault<z.ZodString>;
|
|
228
|
+
popular: z.ZodDefault<z.ZodString>;
|
|
229
|
+
preview: z.ZodDefault<z.ZodString>;
|
|
230
|
+
results: z.ZodDefault<z.ZodString>;
|
|
148
231
|
}, "strip", z.ZodTypeAny, {
|
|
232
|
+
error: string;
|
|
149
233
|
label: string;
|
|
150
234
|
placeholder: string;
|
|
151
235
|
button: string;
|
|
152
236
|
devOnly: string;
|
|
153
237
|
noResults: string;
|
|
154
238
|
allLanguages: string;
|
|
239
|
+
askAi: string;
|
|
240
|
+
askAiHint: string;
|
|
241
|
+
navigate: string;
|
|
242
|
+
open: string;
|
|
243
|
+
popular: string;
|
|
244
|
+
preview: string;
|
|
245
|
+
results: string;
|
|
155
246
|
}, {
|
|
247
|
+
error?: string | undefined;
|
|
156
248
|
label?: string | undefined;
|
|
157
249
|
placeholder?: string | undefined;
|
|
158
250
|
button?: string | undefined;
|
|
159
251
|
devOnly?: string | undefined;
|
|
160
252
|
noResults?: string | undefined;
|
|
161
253
|
allLanguages?: string | undefined;
|
|
254
|
+
askAi?: string | undefined;
|
|
255
|
+
askAiHint?: string | undefined;
|
|
256
|
+
navigate?: string | undefined;
|
|
257
|
+
open?: string | undefined;
|
|
258
|
+
popular?: string | undefined;
|
|
259
|
+
preview?: string | undefined;
|
|
260
|
+
results?: string | undefined;
|
|
162
261
|
}>>;
|
|
163
262
|
toc: z.ZodDefault<z.ZodObject<{
|
|
164
263
|
title: z.ZodDefault<z.ZodString>;
|
|
@@ -168,31 +267,50 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
168
267
|
title?: string | undefined;
|
|
169
268
|
}>>;
|
|
170
269
|
}, "strip", z.ZodTypeAny, {
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
270
|
+
changelog: {
|
|
271
|
+
showReleases: string;
|
|
272
|
+
};
|
|
273
|
+
search: {
|
|
274
|
+
error: string;
|
|
275
|
+
label: string;
|
|
276
|
+
placeholder: string;
|
|
277
|
+
button: string;
|
|
278
|
+
devOnly: string;
|
|
279
|
+
noResults: string;
|
|
280
|
+
allLanguages: string;
|
|
281
|
+
askAi: string;
|
|
282
|
+
askAiHint: string;
|
|
283
|
+
navigate: string;
|
|
284
|
+
open: string;
|
|
285
|
+
popular: string;
|
|
286
|
+
preview: string;
|
|
287
|
+
results: string;
|
|
288
|
+
};
|
|
289
|
+
page: {
|
|
290
|
+
lastUpdated: string;
|
|
291
|
+
next: string;
|
|
292
|
+
previous: string;
|
|
293
|
+
skipToContent: string;
|
|
184
294
|
};
|
|
185
295
|
ask: {
|
|
186
|
-
|
|
296
|
+
title: string;
|
|
187
297
|
error: string;
|
|
188
298
|
label: string;
|
|
299
|
+
ai: string;
|
|
300
|
+
empty: string;
|
|
189
301
|
placeholder: string;
|
|
190
302
|
send: string;
|
|
191
|
-
title: string;
|
|
192
303
|
clear: string;
|
|
193
304
|
close: string;
|
|
194
305
|
copy: string;
|
|
195
306
|
tip: string;
|
|
307
|
+
you: string;
|
|
308
|
+
};
|
|
309
|
+
content: {
|
|
310
|
+
diagramError: string;
|
|
311
|
+
};
|
|
312
|
+
banner: {
|
|
313
|
+
dismiss: string;
|
|
196
314
|
};
|
|
197
315
|
feedback: {
|
|
198
316
|
no: string;
|
|
@@ -200,26 +318,43 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
200
318
|
thanks: string;
|
|
201
319
|
yes: string;
|
|
202
320
|
};
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
untranslated: string;
|
|
321
|
+
toc: {
|
|
322
|
+
title: string;
|
|
206
323
|
};
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
324
|
+
actions: {
|
|
325
|
+
export: string;
|
|
326
|
+
addToCursor: string;
|
|
327
|
+
addToVscode: string;
|
|
328
|
+
askAI: string;
|
|
329
|
+
connectMcp: string;
|
|
330
|
+
copied: string;
|
|
331
|
+
copyClaudeCode: string;
|
|
332
|
+
copyMarkdown: string;
|
|
333
|
+
copyServerUrl: string;
|
|
334
|
+
edit: string;
|
|
335
|
+
openInChat: string;
|
|
336
|
+
scrollToTop: string;
|
|
337
|
+
copyCode: string;
|
|
338
|
+
copyCodex: string;
|
|
339
|
+
exportEpub: string;
|
|
340
|
+
exportPdf: string;
|
|
341
|
+
generating: string;
|
|
212
342
|
};
|
|
213
|
-
|
|
343
|
+
languageSwitcher: {
|
|
214
344
|
label: string;
|
|
215
|
-
|
|
216
|
-
button: string;
|
|
217
|
-
devOnly: string;
|
|
218
|
-
noResults: string;
|
|
219
|
-
allLanguages: string;
|
|
345
|
+
untranslated: string;
|
|
220
346
|
};
|
|
221
|
-
|
|
222
|
-
|
|
347
|
+
nav: {
|
|
348
|
+
deprecated: string;
|
|
349
|
+
featured: string;
|
|
350
|
+
navigation: string;
|
|
351
|
+
back: string;
|
|
352
|
+
closeNavigation: string;
|
|
353
|
+
githubRepository: string;
|
|
354
|
+
primary: string;
|
|
355
|
+
sections: string;
|
|
356
|
+
toggleNavigation: string;
|
|
357
|
+
toggleTheme: string;
|
|
223
358
|
};
|
|
224
359
|
notFound: {
|
|
225
360
|
title: string;
|
|
@@ -227,31 +362,50 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
227
362
|
home: string;
|
|
228
363
|
};
|
|
229
364
|
}, {
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
365
|
+
changelog?: {
|
|
366
|
+
showReleases?: string | undefined;
|
|
367
|
+
} | undefined;
|
|
368
|
+
search?: {
|
|
369
|
+
error?: string | undefined;
|
|
370
|
+
label?: string | undefined;
|
|
371
|
+
placeholder?: string | undefined;
|
|
372
|
+
button?: string | undefined;
|
|
373
|
+
devOnly?: string | undefined;
|
|
374
|
+
noResults?: string | undefined;
|
|
375
|
+
allLanguages?: string | undefined;
|
|
376
|
+
askAi?: string | undefined;
|
|
377
|
+
askAiHint?: string | undefined;
|
|
378
|
+
navigate?: string | undefined;
|
|
379
|
+
open?: string | undefined;
|
|
380
|
+
popular?: string | undefined;
|
|
381
|
+
preview?: string | undefined;
|
|
382
|
+
results?: string | undefined;
|
|
383
|
+
} | undefined;
|
|
384
|
+
page?: {
|
|
385
|
+
lastUpdated?: string | undefined;
|
|
386
|
+
next?: string | undefined;
|
|
387
|
+
previous?: string | undefined;
|
|
388
|
+
skipToContent?: string | undefined;
|
|
243
389
|
} | undefined;
|
|
244
390
|
ask?: {
|
|
245
|
-
|
|
391
|
+
title?: string | undefined;
|
|
246
392
|
error?: string | undefined;
|
|
247
393
|
label?: string | undefined;
|
|
394
|
+
ai?: string | undefined;
|
|
395
|
+
empty?: string | undefined;
|
|
248
396
|
placeholder?: string | undefined;
|
|
249
397
|
send?: string | undefined;
|
|
250
|
-
title?: string | undefined;
|
|
251
398
|
clear?: string | undefined;
|
|
252
399
|
close?: string | undefined;
|
|
253
400
|
copy?: string | undefined;
|
|
254
401
|
tip?: string | undefined;
|
|
402
|
+
you?: string | undefined;
|
|
403
|
+
} | undefined;
|
|
404
|
+
content?: {
|
|
405
|
+
diagramError?: string | undefined;
|
|
406
|
+
} | undefined;
|
|
407
|
+
banner?: {
|
|
408
|
+
dismiss?: string | undefined;
|
|
255
409
|
} | undefined;
|
|
256
410
|
feedback?: {
|
|
257
411
|
no?: string | undefined;
|
|
@@ -259,26 +413,43 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
259
413
|
thanks?: string | undefined;
|
|
260
414
|
yes?: string | undefined;
|
|
261
415
|
} | undefined;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
untranslated?: string | undefined;
|
|
416
|
+
toc?: {
|
|
417
|
+
title?: string | undefined;
|
|
265
418
|
} | undefined;
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
419
|
+
actions?: {
|
|
420
|
+
export?: string | undefined;
|
|
421
|
+
addToCursor?: string | undefined;
|
|
422
|
+
addToVscode?: string | undefined;
|
|
423
|
+
askAI?: string | undefined;
|
|
424
|
+
connectMcp?: string | undefined;
|
|
425
|
+
copied?: string | undefined;
|
|
426
|
+
copyClaudeCode?: string | undefined;
|
|
427
|
+
copyMarkdown?: string | undefined;
|
|
428
|
+
copyServerUrl?: string | undefined;
|
|
429
|
+
edit?: string | undefined;
|
|
430
|
+
openInChat?: string | undefined;
|
|
431
|
+
scrollToTop?: string | undefined;
|
|
432
|
+
copyCode?: string | undefined;
|
|
433
|
+
copyCodex?: string | undefined;
|
|
434
|
+
exportEpub?: string | undefined;
|
|
435
|
+
exportPdf?: string | undefined;
|
|
436
|
+
generating?: string | undefined;
|
|
271
437
|
} | undefined;
|
|
272
|
-
|
|
438
|
+
languageSwitcher?: {
|
|
273
439
|
label?: string | undefined;
|
|
274
|
-
|
|
275
|
-
button?: string | undefined;
|
|
276
|
-
devOnly?: string | undefined;
|
|
277
|
-
noResults?: string | undefined;
|
|
278
|
-
allLanguages?: string | undefined;
|
|
440
|
+
untranslated?: string | undefined;
|
|
279
441
|
} | undefined;
|
|
280
|
-
|
|
281
|
-
|
|
442
|
+
nav?: {
|
|
443
|
+
deprecated?: string | undefined;
|
|
444
|
+
featured?: string | undefined;
|
|
445
|
+
navigation?: string | undefined;
|
|
446
|
+
back?: string | undefined;
|
|
447
|
+
closeNavigation?: string | undefined;
|
|
448
|
+
githubRepository?: string | undefined;
|
|
449
|
+
primary?: string | undefined;
|
|
450
|
+
sections?: string | undefined;
|
|
451
|
+
toggleNavigation?: string | undefined;
|
|
452
|
+
toggleTheme?: string | undefined;
|
|
282
453
|
} | undefined;
|
|
283
454
|
notFound?: {
|
|
284
455
|
title?: string | undefined;
|
|
@@ -294,13 +465,19 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
294
465
|
connectMcp: z.ZodDefault<z.ZodString>;
|
|
295
466
|
copied: z.ZodDefault<z.ZodString>;
|
|
296
467
|
copyClaudeCode: z.ZodDefault<z.ZodString>;
|
|
468
|
+
copyCode: z.ZodDefault<z.ZodString>;
|
|
297
469
|
copyCodex: z.ZodDefault<z.ZodString>;
|
|
298
470
|
copyMarkdown: z.ZodDefault<z.ZodString>;
|
|
299
471
|
copyServerUrl: z.ZodDefault<z.ZodString>;
|
|
300
472
|
edit: z.ZodDefault<z.ZodString>;
|
|
473
|
+
export: z.ZodDefault<z.ZodString>;
|
|
474
|
+
exportEpub: z.ZodDefault<z.ZodString>;
|
|
475
|
+
exportPdf: z.ZodDefault<z.ZodString>;
|
|
476
|
+
generating: z.ZodDefault<z.ZodString>;
|
|
301
477
|
openInChat: z.ZodDefault<z.ZodString>;
|
|
302
478
|
scrollToTop: z.ZodDefault<z.ZodString>;
|
|
303
479
|
}, "strip", z.ZodTypeAny, {
|
|
480
|
+
export: string;
|
|
304
481
|
addToCursor: string;
|
|
305
482
|
addToVscode: string;
|
|
306
483
|
askAI: string;
|
|
@@ -312,8 +489,13 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
312
489
|
edit: string;
|
|
313
490
|
openInChat: string;
|
|
314
491
|
scrollToTop: string;
|
|
492
|
+
copyCode: string;
|
|
315
493
|
copyCodex: string;
|
|
494
|
+
exportEpub: string;
|
|
495
|
+
exportPdf: string;
|
|
496
|
+
generating: string;
|
|
316
497
|
}, {
|
|
498
|
+
export?: string | undefined;
|
|
317
499
|
addToCursor?: string | undefined;
|
|
318
500
|
addToVscode?: string | undefined;
|
|
319
501
|
askAI?: string | undefined;
|
|
@@ -325,9 +507,14 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
325
507
|
edit?: string | undefined;
|
|
326
508
|
openInChat?: string | undefined;
|
|
327
509
|
scrollToTop?: string | undefined;
|
|
510
|
+
copyCode?: string | undefined;
|
|
328
511
|
copyCodex?: string | undefined;
|
|
512
|
+
exportEpub?: string | undefined;
|
|
513
|
+
exportPdf?: string | undefined;
|
|
514
|
+
generating?: string | undefined;
|
|
329
515
|
}>>;
|
|
330
516
|
ask: z.ZodDefault<z.ZodObject<{
|
|
517
|
+
ai: z.ZodDefault<z.ZodString>;
|
|
331
518
|
clear: z.ZodDefault<z.ZodString>;
|
|
332
519
|
close: z.ZodDefault<z.ZodString>;
|
|
333
520
|
copy: z.ZodDefault<z.ZodString>;
|
|
@@ -338,28 +525,54 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
338
525
|
send: z.ZodDefault<z.ZodString>;
|
|
339
526
|
tip: z.ZodDefault<z.ZodString>;
|
|
340
527
|
title: z.ZodDefault<z.ZodString>;
|
|
528
|
+
you: z.ZodDefault<z.ZodString>;
|
|
341
529
|
}, "strip", z.ZodTypeAny, {
|
|
342
|
-
|
|
530
|
+
title: string;
|
|
343
531
|
error: string;
|
|
344
532
|
label: string;
|
|
533
|
+
ai: string;
|
|
534
|
+
empty: string;
|
|
345
535
|
placeholder: string;
|
|
346
536
|
send: string;
|
|
347
|
-
title: string;
|
|
348
537
|
clear: string;
|
|
349
538
|
close: string;
|
|
350
539
|
copy: string;
|
|
351
540
|
tip: string;
|
|
541
|
+
you: string;
|
|
352
542
|
}, {
|
|
353
|
-
|
|
543
|
+
title?: string | undefined;
|
|
354
544
|
error?: string | undefined;
|
|
355
545
|
label?: string | undefined;
|
|
546
|
+
ai?: string | undefined;
|
|
547
|
+
empty?: string | undefined;
|
|
356
548
|
placeholder?: string | undefined;
|
|
357
549
|
send?: string | undefined;
|
|
358
|
-
title?: string | undefined;
|
|
359
550
|
clear?: string | undefined;
|
|
360
551
|
close?: string | undefined;
|
|
361
552
|
copy?: string | undefined;
|
|
362
553
|
tip?: string | undefined;
|
|
554
|
+
you?: string | undefined;
|
|
555
|
+
}>>;
|
|
556
|
+
banner: z.ZodDefault<z.ZodObject<{
|
|
557
|
+
dismiss: z.ZodDefault<z.ZodString>;
|
|
558
|
+
}, "strip", z.ZodTypeAny, {
|
|
559
|
+
dismiss: string;
|
|
560
|
+
}, {
|
|
561
|
+
dismiss?: string | undefined;
|
|
562
|
+
}>>;
|
|
563
|
+
changelog: z.ZodDefault<z.ZodObject<{
|
|
564
|
+
showReleases: z.ZodDefault<z.ZodString>;
|
|
565
|
+
}, "strip", z.ZodTypeAny, {
|
|
566
|
+
showReleases: string;
|
|
567
|
+
}, {
|
|
568
|
+
showReleases?: string | undefined;
|
|
569
|
+
}>>;
|
|
570
|
+
content: z.ZodDefault<z.ZodObject<{
|
|
571
|
+
diagramError: z.ZodDefault<z.ZodString>;
|
|
572
|
+
}, "strip", z.ZodTypeAny, {
|
|
573
|
+
diagramError: string;
|
|
574
|
+
}, {
|
|
575
|
+
diagramError?: string | undefined;
|
|
363
576
|
}>>;
|
|
364
577
|
feedback: z.ZodDefault<z.ZodObject<{
|
|
365
578
|
no: z.ZodDefault<z.ZodString>;
|
|
@@ -387,6 +600,40 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
387
600
|
label?: string | undefined;
|
|
388
601
|
untranslated?: string | undefined;
|
|
389
602
|
}>>;
|
|
603
|
+
nav: z.ZodDefault<z.ZodObject<{
|
|
604
|
+
back: z.ZodDefault<z.ZodString>;
|
|
605
|
+
closeNavigation: z.ZodDefault<z.ZodString>;
|
|
606
|
+
deprecated: z.ZodDefault<z.ZodString>;
|
|
607
|
+
featured: z.ZodDefault<z.ZodString>;
|
|
608
|
+
githubRepository: z.ZodDefault<z.ZodString>;
|
|
609
|
+
navigation: z.ZodDefault<z.ZodString>;
|
|
610
|
+
primary: z.ZodDefault<z.ZodString>;
|
|
611
|
+
sections: z.ZodDefault<z.ZodString>;
|
|
612
|
+
toggleNavigation: z.ZodDefault<z.ZodString>;
|
|
613
|
+
toggleTheme: z.ZodDefault<z.ZodString>;
|
|
614
|
+
}, "strip", z.ZodTypeAny, {
|
|
615
|
+
deprecated: string;
|
|
616
|
+
featured: string;
|
|
617
|
+
navigation: string;
|
|
618
|
+
back: string;
|
|
619
|
+
closeNavigation: string;
|
|
620
|
+
githubRepository: string;
|
|
621
|
+
primary: string;
|
|
622
|
+
sections: string;
|
|
623
|
+
toggleNavigation: string;
|
|
624
|
+
toggleTheme: string;
|
|
625
|
+
}, {
|
|
626
|
+
deprecated?: string | undefined;
|
|
627
|
+
featured?: string | undefined;
|
|
628
|
+
navigation?: string | undefined;
|
|
629
|
+
back?: string | undefined;
|
|
630
|
+
closeNavigation?: string | undefined;
|
|
631
|
+
githubRepository?: string | undefined;
|
|
632
|
+
primary?: string | undefined;
|
|
633
|
+
sections?: string | undefined;
|
|
634
|
+
toggleNavigation?: string | undefined;
|
|
635
|
+
toggleTheme?: string | undefined;
|
|
636
|
+
}>>;
|
|
390
637
|
notFound: z.ZodDefault<z.ZodObject<{
|
|
391
638
|
description: z.ZodDefault<z.ZodString>;
|
|
392
639
|
home: z.ZodDefault<z.ZodString>;
|
|
@@ -418,25 +665,49 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
418
665
|
}>>;
|
|
419
666
|
search: z.ZodDefault<z.ZodObject<{
|
|
420
667
|
allLanguages: z.ZodDefault<z.ZodString>;
|
|
668
|
+
askAi: z.ZodDefault<z.ZodString>;
|
|
669
|
+
askAiHint: z.ZodDefault<z.ZodString>;
|
|
421
670
|
button: z.ZodDefault<z.ZodString>;
|
|
422
671
|
devOnly: z.ZodDefault<z.ZodString>;
|
|
672
|
+
error: z.ZodDefault<z.ZodString>;
|
|
423
673
|
label: z.ZodDefault<z.ZodString>;
|
|
674
|
+
navigate: z.ZodDefault<z.ZodString>;
|
|
424
675
|
noResults: z.ZodDefault<z.ZodString>;
|
|
676
|
+
open: z.ZodDefault<z.ZodString>;
|
|
425
677
|
placeholder: z.ZodDefault<z.ZodString>;
|
|
678
|
+
popular: z.ZodDefault<z.ZodString>;
|
|
679
|
+
preview: z.ZodDefault<z.ZodString>;
|
|
680
|
+
results: z.ZodDefault<z.ZodString>;
|
|
426
681
|
}, "strip", z.ZodTypeAny, {
|
|
682
|
+
error: string;
|
|
427
683
|
label: string;
|
|
428
684
|
placeholder: string;
|
|
429
685
|
button: string;
|
|
430
686
|
devOnly: string;
|
|
431
687
|
noResults: string;
|
|
432
688
|
allLanguages: string;
|
|
689
|
+
askAi: string;
|
|
690
|
+
askAiHint: string;
|
|
691
|
+
navigate: string;
|
|
692
|
+
open: string;
|
|
693
|
+
popular: string;
|
|
694
|
+
preview: string;
|
|
695
|
+
results: string;
|
|
433
696
|
}, {
|
|
697
|
+
error?: string | undefined;
|
|
434
698
|
label?: string | undefined;
|
|
435
699
|
placeholder?: string | undefined;
|
|
436
700
|
button?: string | undefined;
|
|
437
701
|
devOnly?: string | undefined;
|
|
438
702
|
noResults?: string | undefined;
|
|
439
703
|
allLanguages?: string | undefined;
|
|
704
|
+
askAi?: string | undefined;
|
|
705
|
+
askAiHint?: string | undefined;
|
|
706
|
+
navigate?: string | undefined;
|
|
707
|
+
open?: string | undefined;
|
|
708
|
+
popular?: string | undefined;
|
|
709
|
+
preview?: string | undefined;
|
|
710
|
+
results?: string | undefined;
|
|
440
711
|
}>>;
|
|
441
712
|
toc: z.ZodDefault<z.ZodObject<{
|
|
442
713
|
title: z.ZodDefault<z.ZodString>;
|
|
@@ -446,31 +717,50 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
446
717
|
title?: string | undefined;
|
|
447
718
|
}>>;
|
|
448
719
|
}, "strip", z.ZodTypeAny, {
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
720
|
+
changelog: {
|
|
721
|
+
showReleases: string;
|
|
722
|
+
};
|
|
723
|
+
search: {
|
|
724
|
+
error: string;
|
|
725
|
+
label: string;
|
|
726
|
+
placeholder: string;
|
|
727
|
+
button: string;
|
|
728
|
+
devOnly: string;
|
|
729
|
+
noResults: string;
|
|
730
|
+
allLanguages: string;
|
|
731
|
+
askAi: string;
|
|
732
|
+
askAiHint: string;
|
|
733
|
+
navigate: string;
|
|
734
|
+
open: string;
|
|
735
|
+
popular: string;
|
|
736
|
+
preview: string;
|
|
737
|
+
results: string;
|
|
738
|
+
};
|
|
739
|
+
page: {
|
|
740
|
+
lastUpdated: string;
|
|
741
|
+
next: string;
|
|
742
|
+
previous: string;
|
|
743
|
+
skipToContent: string;
|
|
462
744
|
};
|
|
463
745
|
ask: {
|
|
464
|
-
|
|
746
|
+
title: string;
|
|
465
747
|
error: string;
|
|
466
748
|
label: string;
|
|
749
|
+
ai: string;
|
|
750
|
+
empty: string;
|
|
467
751
|
placeholder: string;
|
|
468
752
|
send: string;
|
|
469
|
-
title: string;
|
|
470
753
|
clear: string;
|
|
471
754
|
close: string;
|
|
472
755
|
copy: string;
|
|
473
756
|
tip: string;
|
|
757
|
+
you: string;
|
|
758
|
+
};
|
|
759
|
+
content: {
|
|
760
|
+
diagramError: string;
|
|
761
|
+
};
|
|
762
|
+
banner: {
|
|
763
|
+
dismiss: string;
|
|
474
764
|
};
|
|
475
765
|
feedback: {
|
|
476
766
|
no: string;
|
|
@@ -478,26 +768,43 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
478
768
|
thanks: string;
|
|
479
769
|
yes: string;
|
|
480
770
|
};
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
untranslated: string;
|
|
771
|
+
toc: {
|
|
772
|
+
title: string;
|
|
484
773
|
};
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
774
|
+
actions: {
|
|
775
|
+
export: string;
|
|
776
|
+
addToCursor: string;
|
|
777
|
+
addToVscode: string;
|
|
778
|
+
askAI: string;
|
|
779
|
+
connectMcp: string;
|
|
780
|
+
copied: string;
|
|
781
|
+
copyClaudeCode: string;
|
|
782
|
+
copyMarkdown: string;
|
|
783
|
+
copyServerUrl: string;
|
|
784
|
+
edit: string;
|
|
785
|
+
openInChat: string;
|
|
786
|
+
scrollToTop: string;
|
|
787
|
+
copyCode: string;
|
|
788
|
+
copyCodex: string;
|
|
789
|
+
exportEpub: string;
|
|
790
|
+
exportPdf: string;
|
|
791
|
+
generating: string;
|
|
490
792
|
};
|
|
491
|
-
|
|
793
|
+
languageSwitcher: {
|
|
492
794
|
label: string;
|
|
493
|
-
|
|
494
|
-
button: string;
|
|
495
|
-
devOnly: string;
|
|
496
|
-
noResults: string;
|
|
497
|
-
allLanguages: string;
|
|
795
|
+
untranslated: string;
|
|
498
796
|
};
|
|
499
|
-
|
|
500
|
-
|
|
797
|
+
nav: {
|
|
798
|
+
deprecated: string;
|
|
799
|
+
featured: string;
|
|
800
|
+
navigation: string;
|
|
801
|
+
back: string;
|
|
802
|
+
closeNavigation: string;
|
|
803
|
+
githubRepository: string;
|
|
804
|
+
primary: string;
|
|
805
|
+
sections: string;
|
|
806
|
+
toggleNavigation: string;
|
|
807
|
+
toggleTheme: string;
|
|
501
808
|
};
|
|
502
809
|
notFound: {
|
|
503
810
|
title: string;
|
|
@@ -505,31 +812,50 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
505
812
|
home: string;
|
|
506
813
|
};
|
|
507
814
|
}, {
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
815
|
+
changelog?: {
|
|
816
|
+
showReleases?: string | undefined;
|
|
817
|
+
} | undefined;
|
|
818
|
+
search?: {
|
|
819
|
+
error?: string | undefined;
|
|
820
|
+
label?: string | undefined;
|
|
821
|
+
placeholder?: string | undefined;
|
|
822
|
+
button?: string | undefined;
|
|
823
|
+
devOnly?: string | undefined;
|
|
824
|
+
noResults?: string | undefined;
|
|
825
|
+
allLanguages?: string | undefined;
|
|
826
|
+
askAi?: string | undefined;
|
|
827
|
+
askAiHint?: string | undefined;
|
|
828
|
+
navigate?: string | undefined;
|
|
829
|
+
open?: string | undefined;
|
|
830
|
+
popular?: string | undefined;
|
|
831
|
+
preview?: string | undefined;
|
|
832
|
+
results?: string | undefined;
|
|
833
|
+
} | undefined;
|
|
834
|
+
page?: {
|
|
835
|
+
lastUpdated?: string | undefined;
|
|
836
|
+
next?: string | undefined;
|
|
837
|
+
previous?: string | undefined;
|
|
838
|
+
skipToContent?: string | undefined;
|
|
521
839
|
} | undefined;
|
|
522
840
|
ask?: {
|
|
523
|
-
|
|
841
|
+
title?: string | undefined;
|
|
524
842
|
error?: string | undefined;
|
|
525
843
|
label?: string | undefined;
|
|
844
|
+
ai?: string | undefined;
|
|
845
|
+
empty?: string | undefined;
|
|
526
846
|
placeholder?: string | undefined;
|
|
527
847
|
send?: string | undefined;
|
|
528
|
-
title?: string | undefined;
|
|
529
848
|
clear?: string | undefined;
|
|
530
849
|
close?: string | undefined;
|
|
531
850
|
copy?: string | undefined;
|
|
532
851
|
tip?: string | undefined;
|
|
852
|
+
you?: string | undefined;
|
|
853
|
+
} | undefined;
|
|
854
|
+
content?: {
|
|
855
|
+
diagramError?: string | undefined;
|
|
856
|
+
} | undefined;
|
|
857
|
+
banner?: {
|
|
858
|
+
dismiss?: string | undefined;
|
|
533
859
|
} | undefined;
|
|
534
860
|
feedback?: {
|
|
535
861
|
no?: string | undefined;
|
|
@@ -537,26 +863,43 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
537
863
|
thanks?: string | undefined;
|
|
538
864
|
yes?: string | undefined;
|
|
539
865
|
} | undefined;
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
untranslated?: string | undefined;
|
|
866
|
+
toc?: {
|
|
867
|
+
title?: string | undefined;
|
|
543
868
|
} | undefined;
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
869
|
+
actions?: {
|
|
870
|
+
export?: string | undefined;
|
|
871
|
+
addToCursor?: string | undefined;
|
|
872
|
+
addToVscode?: string | undefined;
|
|
873
|
+
askAI?: string | undefined;
|
|
874
|
+
connectMcp?: string | undefined;
|
|
875
|
+
copied?: string | undefined;
|
|
876
|
+
copyClaudeCode?: string | undefined;
|
|
877
|
+
copyMarkdown?: string | undefined;
|
|
878
|
+
copyServerUrl?: string | undefined;
|
|
879
|
+
edit?: string | undefined;
|
|
880
|
+
openInChat?: string | undefined;
|
|
881
|
+
scrollToTop?: string | undefined;
|
|
882
|
+
copyCode?: string | undefined;
|
|
883
|
+
copyCodex?: string | undefined;
|
|
884
|
+
exportEpub?: string | undefined;
|
|
885
|
+
exportPdf?: string | undefined;
|
|
886
|
+
generating?: string | undefined;
|
|
549
887
|
} | undefined;
|
|
550
|
-
|
|
888
|
+
languageSwitcher?: {
|
|
551
889
|
label?: string | undefined;
|
|
552
|
-
|
|
553
|
-
button?: string | undefined;
|
|
554
|
-
devOnly?: string | undefined;
|
|
555
|
-
noResults?: string | undefined;
|
|
556
|
-
allLanguages?: string | undefined;
|
|
890
|
+
untranslated?: string | undefined;
|
|
557
891
|
} | undefined;
|
|
558
|
-
|
|
559
|
-
|
|
892
|
+
nav?: {
|
|
893
|
+
deprecated?: string | undefined;
|
|
894
|
+
featured?: string | undefined;
|
|
895
|
+
navigation?: string | undefined;
|
|
896
|
+
back?: string | undefined;
|
|
897
|
+
closeNavigation?: string | undefined;
|
|
898
|
+
githubRepository?: string | undefined;
|
|
899
|
+
primary?: string | undefined;
|
|
900
|
+
sections?: string | undefined;
|
|
901
|
+
toggleNavigation?: string | undefined;
|
|
902
|
+
toggleTheme?: string | undefined;
|
|
560
903
|
} | undefined;
|
|
561
904
|
notFound?: {
|
|
562
905
|
title?: string | undefined;
|
|
@@ -566,7 +909,6 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
566
909
|
}>>;
|
|
567
910
|
/** A fully-resolved dictionary; every key present. */
|
|
568
911
|
export type UIStrings = z.infer<typeof uiStringsObject>;
|
|
569
|
-
/** The English baseline, derived from the schema defaults. */
|
|
570
912
|
export declare const EN_UI: UIStrings;
|
|
571
913
|
/**
|
|
572
914
|
* A partial override: `{ group: { key: "translation" } }`. Validated loosely
|
|
@@ -583,7 +925,7 @@ export declare const uiLocaleOverridesSchema: z.ZodRecord<z.ZodString, z.ZodReco
|
|
|
583
925
|
* pack so adopters get translated chrome out of the box. Re-exported here so the
|
|
584
926
|
* resolver and existing imports keep a single entry point.
|
|
585
927
|
*/
|
|
586
|
-
export { UI_PACKS };
|
|
928
|
+
export { UI_PACKS } from "./ui-packs/index.ts";
|
|
587
929
|
/**
|
|
588
930
|
* Resolve the active dictionary for a locale. Layers, in order:
|
|
589
931
|
* English baseline ← default-locale pack ← default-locale override ←
|