blume 1.0.2 → 1.0.4
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 +37 -0
- package/dist/cli/index.js +496 -295
- package/dist/cli/index.js.map +18 -17
- package/dist/types/core/config-input.d.ts +44 -22
- package/dist/types/core/config.d.ts +3 -3
- package/dist/types/core/data.d.ts +12 -0
- package/dist/types/core/i18n-ui.d.ts +136 -136
- package/dist/types/core/schema.d.ts +502 -384
- package/dist/types/core/types.d.ts +10 -0
- package/dist/types/openapi/references.d.ts +12 -7
- package/docs/advanced/api-reference.mdx +11 -3
- package/docs/advanced/custom-pages.mdx +2 -0
- package/docs/configuration/ai.mdx +6 -4
- package/docs/configuration/index.mdx +6 -8
- package/docs/configuration/seo.mdx +20 -1
- package/docs/content/components.mdx +26 -5
- package/docs/content/navigation.mdx +10 -0
- package/docs/content/syntax.mdx +116 -4
- package/package.json +1 -1
- package/skills/blume-migrate/SKILL.md +170 -0
- package/skills/blume-migrate/assets/oxfmt@0.55.0.patch +20 -0
- package/skills/blume-migrate/references/docusaurus.md +95 -0
- package/skills/blume-migrate/references/fumadocs.md +95 -0
- package/skills/blume-migrate/references/mintlify.md +155 -0
- package/skills/blume-migrate/references/monorepo.md +224 -0
- package/skills/blume-migrate/references/nextra.md +76 -0
- package/skills/blume-migrate/references/starlight.md +116 -0
- package/skills/blume-migrate/scripts/mintlify-codemod.mjs +466 -0
- package/src/ai/agent-readability.ts +3 -3
- package/src/ai/mcp/data.ts +2 -2
- package/src/astro/component-slots.ts +3 -2
- package/src/astro/generate.ts +97 -30
- package/src/astro/templates.ts +140 -53
- package/src/blume-modules.d.ts +6 -0
- package/src/components/content/Callout.astro +8 -2
- package/src/components/content/Prompt.astro +25 -13
- package/src/components/layout/Header.astro +19 -10
- package/src/components/layout/Logo.astro +13 -1
- package/src/components/layout/PageFeedback.astro +1 -1
- package/src/components/layout/PageLayout.astro +11 -11
- package/src/components/layout/Pagination.astro +6 -6
- package/src/components/layout/ReferenceLayout.astro +1 -0
- package/src/components/layout/RootLayout.astro +10 -11
- package/src/components/layout/Search.astro +1 -1
- package/src/components/layout/nav-utils.ts +9 -7
- package/src/core/config-input.ts +47 -27
- package/src/core/config.ts +3 -3
- package/src/core/data.ts +9 -1
- package/src/core/navigation.ts +55 -13
- package/src/core/schema.ts +32 -15
- package/src/core/server-features.ts +1 -1
- package/src/core/sources/watch.ts +5 -0
- package/src/core/types.ts +10 -0
- package/src/deploy/adapter-output.ts +11 -1
- package/src/markdown/index.ts +2 -0
- package/src/markdown/language-icon.ts +2 -1
- package/src/markdown/table-wrap.ts +43 -0
- package/src/og/card.ts +39 -12
- package/src/og/index.ts +1 -1
- package/src/og/logo.ts +21 -0
- package/src/openapi/references.ts +19 -16
- package/src/registry/eject.ts +11 -5
- package/src/theme/entry.ts +50 -5
|
@@ -446,7 +446,21 @@ export interface LlmsTxtConfig {
|
|
|
446
446
|
*/
|
|
447
447
|
openapi?: boolean;
|
|
448
448
|
}
|
|
449
|
-
/**
|
|
449
|
+
/** Expose the docs as an MCP server for connecting agents. */
|
|
450
|
+
export interface McpConfig {
|
|
451
|
+
/** Turn the MCP server on. Defaults to `false`. */
|
|
452
|
+
enabled?: boolean;
|
|
453
|
+
/** Optional system hint passed to connecting agents. */
|
|
454
|
+
instructions?: string;
|
|
455
|
+
/** Server name shown to clients; defaults to the site title. */
|
|
456
|
+
name?: string;
|
|
457
|
+
/** Route the server mounts at. Defaults to `/mcp`. */
|
|
458
|
+
route?: string;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* AI-facing features: the Ask AI assistant, an `llms.txt` manifest, and the
|
|
462
|
+
* hosted MCP server.
|
|
463
|
+
*/
|
|
450
464
|
export interface AiConfig {
|
|
451
465
|
/** The Ask AI chat assistant. */
|
|
452
466
|
ask?: AskConfig;
|
|
@@ -474,6 +488,8 @@ export interface AiConfig {
|
|
|
474
488
|
* ```
|
|
475
489
|
*/
|
|
476
490
|
markdownComponents?: Record<string, ComponentMarkdown>;
|
|
491
|
+
/** Expose the docs as an MCP server for agents. */
|
|
492
|
+
mcp?: McpConfig;
|
|
477
493
|
}
|
|
478
494
|
/** An arbitrary analytics `<script>`; set exactly one of `src` or `content`. */
|
|
479
495
|
export interface AnalyticsScript {
|
|
@@ -500,17 +516,6 @@ export interface AnalyticsConfig {
|
|
|
500
516
|
/** Enable Vercel Web Analytics. */
|
|
501
517
|
vercel?: boolean;
|
|
502
518
|
}
|
|
503
|
-
/** Expose the docs as an MCP server for connecting agents. */
|
|
504
|
-
export interface McpConfig {
|
|
505
|
-
/** Turn the MCP server on. Defaults to `false`. */
|
|
506
|
-
enabled?: boolean;
|
|
507
|
-
/** Optional system hint passed to connecting agents. */
|
|
508
|
-
instructions?: string;
|
|
509
|
-
/** Server name shown to clients; defaults to the site title. */
|
|
510
|
-
name?: string;
|
|
511
|
-
/** Route the server mounts at. Defaults to `/mcp`. */
|
|
512
|
-
route?: string;
|
|
513
|
-
}
|
|
514
519
|
/** A configured locale plus display metadata for the switcher. */
|
|
515
520
|
export interface LocaleConfigInput {
|
|
516
521
|
/** Locale code, e.g. `en`, `fr`, `pt-BR`. */
|
|
@@ -597,6 +602,32 @@ export interface RssConfig {
|
|
|
597
602
|
/** Content types that each get a feed at `/<type>/rss.xml`. Defaults to blog + changelog. */
|
|
598
603
|
types?: string[];
|
|
599
604
|
}
|
|
605
|
+
/** Colors used by generated Open Graph cards. Values must be hex colors. */
|
|
606
|
+
export interface OgPaletteConfig {
|
|
607
|
+
/** Fallback mark color. Defaults to the light theme accent. */
|
|
608
|
+
accent?: string;
|
|
609
|
+
/** Card background. */
|
|
610
|
+
background?: string;
|
|
611
|
+
/** Footer divider. */
|
|
612
|
+
border?: string;
|
|
613
|
+
/** Headline and `currentColor` logo color. */
|
|
614
|
+
foreground?: string;
|
|
615
|
+
/** Description and footer text. */
|
|
616
|
+
muted?: string;
|
|
617
|
+
}
|
|
618
|
+
/** Per-page Open Graph image generation. */
|
|
619
|
+
export interface OgConfig {
|
|
620
|
+
/**
|
|
621
|
+
* Generate an OG image per page. Defaults to on once a deployment `site`
|
|
622
|
+
* URL is known and off otherwise (`og:image` must be absolute). An explicit
|
|
623
|
+
* value always wins.
|
|
624
|
+
*/
|
|
625
|
+
enabled?: boolean;
|
|
626
|
+
/** Local SVG used in the generated card instead of the site logo. */
|
|
627
|
+
logo?: string;
|
|
628
|
+
/** Optional generated-card colors. */
|
|
629
|
+
palette?: OgPaletteConfig;
|
|
630
|
+
}
|
|
600
631
|
/** Discoverability: OG images, feeds, sitemap, robots, and structured data. */
|
|
601
632
|
export interface SeoConfig {
|
|
602
633
|
/**
|
|
@@ -607,14 +638,7 @@ export interface SeoConfig {
|
|
|
607
638
|
/** robots.txt `Content-Signal` usage declaration. Defaults to `true`. */
|
|
608
639
|
contentSignals?: ContentSignalsConfig;
|
|
609
640
|
/** Per-page Open Graph image generation. */
|
|
610
|
-
og?:
|
|
611
|
-
/**
|
|
612
|
-
* Generate an OG image per page. Defaults to on once a deployment `site`
|
|
613
|
-
* URL is known and off otherwise (`og:image` must be absolute). An explicit
|
|
614
|
-
* value always wins.
|
|
615
|
-
*/
|
|
616
|
-
enabled?: boolean;
|
|
617
|
-
};
|
|
641
|
+
og?: OgConfig;
|
|
618
642
|
/** Generate robots.txt (with a Sitemap reference when available). Defaults to `true`. */
|
|
619
643
|
robots?: boolean;
|
|
620
644
|
/** RSS/Atom feeds. */
|
|
@@ -829,8 +853,6 @@ export interface BlumeConfig {
|
|
|
829
853
|
logo?: LogoConfig;
|
|
830
854
|
/** Markdown / MDX rendering behavior. */
|
|
831
855
|
markdown?: MarkdownConfig;
|
|
832
|
-
/** Expose the docs as an MCP server for agents. */
|
|
833
|
-
mcp?: McpConfig;
|
|
834
856
|
/** Header, sidebar, tabs, and switchers. */
|
|
835
857
|
navigation?: NavigationConfig;
|
|
836
858
|
/** Native OpenAPI reference. */
|
|
@@ -66,9 +66,9 @@ import type { Diagnostic } from "./types.ts";
|
|
|
66
66
|
* `algolia`, `typesense`, `orama-cloud`, `mixedbread`, or `none`) plus its
|
|
67
67
|
* credential block.
|
|
68
68
|
* - `ai` — `ask` (the Ask AI chat endpoint and its provider/model), `llmsTxt`
|
|
69
|
-
* (emit `llms.txt`),
|
|
70
|
-
*
|
|
71
|
-
* -
|
|
69
|
+
* (emit `llms.txt`), `mcp` (expose the docs as an MCP server for connecting
|
|
70
|
+
* agents), and `markdownComponents` (Markdown serializers for custom
|
|
71
|
+
* components in agent-facing output).
|
|
72
72
|
*
|
|
73
73
|
* **SEO, feeds & analytics**
|
|
74
74
|
* - `seo` — `og` images, `sitemap`, `robots`, `rss` feeds, `structuredData`
|
|
@@ -13,6 +13,16 @@ export interface BlumeLogo {
|
|
|
13
13
|
svg?: string;
|
|
14
14
|
light?: string;
|
|
15
15
|
dark?: string;
|
|
16
|
+
dimensions?: {
|
|
17
|
+
dark?: {
|
|
18
|
+
height: number;
|
|
19
|
+
width: number;
|
|
20
|
+
};
|
|
21
|
+
light?: {
|
|
22
|
+
height: number;
|
|
23
|
+
width: number;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
16
26
|
alt: string;
|
|
17
27
|
href: string;
|
|
18
28
|
/** Wordmark text beside the mark; `undefined` falls back to the site title. */
|
|
@@ -108,6 +118,8 @@ export interface BlumeDataConfig {
|
|
|
108
118
|
/** Open Graph image generation. */
|
|
109
119
|
og: {
|
|
110
120
|
enabled: boolean;
|
|
121
|
+
logo?: string;
|
|
122
|
+
palette?: ResolvedConfig["seo"]["og"]["palette"];
|
|
111
123
|
};
|
|
112
124
|
/** Repository URL for header/edit links, or `null`. */
|
|
113
125
|
repoUrl: string | null;
|
|
@@ -78,10 +78,10 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
78
78
|
you: z.ZodDefault<z.ZodString>;
|
|
79
79
|
}, "strip", z.ZodTypeAny, {
|
|
80
80
|
title: string;
|
|
81
|
-
error: string;
|
|
82
81
|
label: string;
|
|
83
82
|
ai: string;
|
|
84
83
|
empty: string;
|
|
84
|
+
error: string;
|
|
85
85
|
placeholder: string;
|
|
86
86
|
send: string;
|
|
87
87
|
clear: string;
|
|
@@ -91,10 +91,10 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
91
91
|
you: string;
|
|
92
92
|
}, {
|
|
93
93
|
title?: string | undefined;
|
|
94
|
-
error?: string | undefined;
|
|
95
94
|
label?: string | undefined;
|
|
96
95
|
ai?: string | undefined;
|
|
97
96
|
empty?: string | undefined;
|
|
97
|
+
error?: string | undefined;
|
|
98
98
|
placeholder?: string | undefined;
|
|
99
99
|
send?: string | undefined;
|
|
100
100
|
clear?: string | undefined;
|
|
@@ -169,24 +169,24 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
169
169
|
toggleNavigation: z.ZodDefault<z.ZodString>;
|
|
170
170
|
toggleTheme: z.ZodDefault<z.ZodString>;
|
|
171
171
|
}, "strip", z.ZodTypeAny, {
|
|
172
|
-
deprecated: string;
|
|
173
172
|
featured: string;
|
|
174
173
|
navigation: string;
|
|
175
174
|
breadcrumb: string;
|
|
176
175
|
back: string;
|
|
177
176
|
closeNavigation: string;
|
|
177
|
+
deprecated: string;
|
|
178
178
|
githubRepository: string;
|
|
179
179
|
primary: string;
|
|
180
180
|
sections: string;
|
|
181
181
|
toggleNavigation: string;
|
|
182
182
|
toggleTheme: string;
|
|
183
183
|
}, {
|
|
184
|
-
deprecated?: string | undefined;
|
|
185
184
|
featured?: string | undefined;
|
|
186
185
|
navigation?: string | undefined;
|
|
187
186
|
breadcrumb?: string | undefined;
|
|
188
187
|
back?: string | undefined;
|
|
189
188
|
closeNavigation?: string | undefined;
|
|
189
|
+
deprecated?: string | undefined;
|
|
190
190
|
githubRepository?: string | undefined;
|
|
191
191
|
primary?: string | undefined;
|
|
192
192
|
sections?: string | undefined;
|
|
@@ -242,8 +242,8 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
242
242
|
preview: z.ZodDefault<z.ZodString>;
|
|
243
243
|
results: z.ZodDefault<z.ZodString>;
|
|
244
244
|
}, "strip", z.ZodTypeAny, {
|
|
245
|
-
error: string;
|
|
246
245
|
label: string;
|
|
246
|
+
error: string;
|
|
247
247
|
placeholder: string;
|
|
248
248
|
all: string;
|
|
249
249
|
button: string;
|
|
@@ -258,8 +258,8 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
258
258
|
preview: string;
|
|
259
259
|
results: string;
|
|
260
260
|
}, {
|
|
261
|
-
error?: string | undefined;
|
|
262
261
|
label?: string | undefined;
|
|
262
|
+
error?: string | undefined;
|
|
263
263
|
placeholder?: string | undefined;
|
|
264
264
|
all?: string | undefined;
|
|
265
265
|
button?: string | undefined;
|
|
@@ -282,41 +282,12 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
282
282
|
title?: string | undefined;
|
|
283
283
|
}>>;
|
|
284
284
|
}, "strip", z.ZodTypeAny, {
|
|
285
|
-
changelog: {
|
|
286
|
-
title: string;
|
|
287
|
-
description: string;
|
|
288
|
-
showReleases: string;
|
|
289
|
-
};
|
|
290
|
-
search: {
|
|
291
|
-
error: string;
|
|
292
|
-
label: string;
|
|
293
|
-
placeholder: string;
|
|
294
|
-
all: string;
|
|
295
|
-
button: string;
|
|
296
|
-
devOnly: string;
|
|
297
|
-
noResults: string;
|
|
298
|
-
allLanguages: string;
|
|
299
|
-
askAi: string;
|
|
300
|
-
askAiHint: string;
|
|
301
|
-
navigate: string;
|
|
302
|
-
open: string;
|
|
303
|
-
popular: string;
|
|
304
|
-
preview: string;
|
|
305
|
-
results: string;
|
|
306
|
-
};
|
|
307
|
-
page: {
|
|
308
|
-
lastUpdated: string;
|
|
309
|
-
next: string;
|
|
310
|
-
pagination: string;
|
|
311
|
-
previous: string;
|
|
312
|
-
skipToContent: string;
|
|
313
|
-
};
|
|
314
285
|
ask: {
|
|
315
286
|
title: string;
|
|
316
|
-
error: string;
|
|
317
287
|
label: string;
|
|
318
288
|
ai: string;
|
|
319
289
|
empty: string;
|
|
290
|
+
error: string;
|
|
320
291
|
placeholder: string;
|
|
321
292
|
send: string;
|
|
322
293
|
clear: string;
|
|
@@ -337,6 +308,35 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
337
308
|
thanks: string;
|
|
338
309
|
yes: string;
|
|
339
310
|
};
|
|
311
|
+
page: {
|
|
312
|
+
lastUpdated: string;
|
|
313
|
+
next: string;
|
|
314
|
+
pagination: string;
|
|
315
|
+
previous: string;
|
|
316
|
+
skipToContent: string;
|
|
317
|
+
};
|
|
318
|
+
search: {
|
|
319
|
+
label: string;
|
|
320
|
+
error: string;
|
|
321
|
+
placeholder: string;
|
|
322
|
+
all: string;
|
|
323
|
+
button: string;
|
|
324
|
+
devOnly: string;
|
|
325
|
+
noResults: string;
|
|
326
|
+
allLanguages: string;
|
|
327
|
+
askAi: string;
|
|
328
|
+
askAiHint: string;
|
|
329
|
+
navigate: string;
|
|
330
|
+
open: string;
|
|
331
|
+
popular: string;
|
|
332
|
+
preview: string;
|
|
333
|
+
results: string;
|
|
334
|
+
};
|
|
335
|
+
changelog: {
|
|
336
|
+
title: string;
|
|
337
|
+
description: string;
|
|
338
|
+
showReleases: string;
|
|
339
|
+
};
|
|
340
340
|
toc: {
|
|
341
341
|
title: string;
|
|
342
342
|
};
|
|
@@ -364,12 +364,12 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
364
364
|
untranslated: string;
|
|
365
365
|
};
|
|
366
366
|
nav: {
|
|
367
|
-
deprecated: string;
|
|
368
367
|
featured: string;
|
|
369
368
|
navigation: string;
|
|
370
369
|
breadcrumb: string;
|
|
371
370
|
back: string;
|
|
372
371
|
closeNavigation: string;
|
|
372
|
+
deprecated: string;
|
|
373
373
|
githubRepository: string;
|
|
374
374
|
primary: string;
|
|
375
375
|
sections: string;
|
|
@@ -382,41 +382,12 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
382
382
|
home: string;
|
|
383
383
|
};
|
|
384
384
|
}, {
|
|
385
|
-
changelog?: {
|
|
386
|
-
title?: string | undefined;
|
|
387
|
-
description?: string | undefined;
|
|
388
|
-
showReleases?: string | undefined;
|
|
389
|
-
} | undefined;
|
|
390
|
-
search?: {
|
|
391
|
-
error?: string | undefined;
|
|
392
|
-
label?: string | undefined;
|
|
393
|
-
placeholder?: string | undefined;
|
|
394
|
-
all?: string | undefined;
|
|
395
|
-
button?: string | undefined;
|
|
396
|
-
devOnly?: string | undefined;
|
|
397
|
-
noResults?: string | undefined;
|
|
398
|
-
allLanguages?: string | undefined;
|
|
399
|
-
askAi?: string | undefined;
|
|
400
|
-
askAiHint?: string | undefined;
|
|
401
|
-
navigate?: string | undefined;
|
|
402
|
-
open?: string | undefined;
|
|
403
|
-
popular?: string | undefined;
|
|
404
|
-
preview?: string | undefined;
|
|
405
|
-
results?: string | undefined;
|
|
406
|
-
} | undefined;
|
|
407
|
-
page?: {
|
|
408
|
-
lastUpdated?: string | undefined;
|
|
409
|
-
next?: string | undefined;
|
|
410
|
-
pagination?: string | undefined;
|
|
411
|
-
previous?: string | undefined;
|
|
412
|
-
skipToContent?: string | undefined;
|
|
413
|
-
} | undefined;
|
|
414
385
|
ask?: {
|
|
415
386
|
title?: string | undefined;
|
|
416
|
-
error?: string | undefined;
|
|
417
387
|
label?: string | undefined;
|
|
418
388
|
ai?: string | undefined;
|
|
419
389
|
empty?: string | undefined;
|
|
390
|
+
error?: string | undefined;
|
|
420
391
|
placeholder?: string | undefined;
|
|
421
392
|
send?: string | undefined;
|
|
422
393
|
clear?: string | undefined;
|
|
@@ -437,6 +408,35 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
437
408
|
thanks?: string | undefined;
|
|
438
409
|
yes?: string | undefined;
|
|
439
410
|
} | undefined;
|
|
411
|
+
page?: {
|
|
412
|
+
lastUpdated?: string | undefined;
|
|
413
|
+
next?: string | undefined;
|
|
414
|
+
pagination?: string | undefined;
|
|
415
|
+
previous?: string | undefined;
|
|
416
|
+
skipToContent?: string | undefined;
|
|
417
|
+
} | undefined;
|
|
418
|
+
search?: {
|
|
419
|
+
label?: string | undefined;
|
|
420
|
+
error?: string | undefined;
|
|
421
|
+
placeholder?: string | undefined;
|
|
422
|
+
all?: string | undefined;
|
|
423
|
+
button?: string | undefined;
|
|
424
|
+
devOnly?: string | undefined;
|
|
425
|
+
noResults?: string | undefined;
|
|
426
|
+
allLanguages?: string | undefined;
|
|
427
|
+
askAi?: string | undefined;
|
|
428
|
+
askAiHint?: string | undefined;
|
|
429
|
+
navigate?: string | undefined;
|
|
430
|
+
open?: string | undefined;
|
|
431
|
+
popular?: string | undefined;
|
|
432
|
+
preview?: string | undefined;
|
|
433
|
+
results?: string | undefined;
|
|
434
|
+
} | undefined;
|
|
435
|
+
changelog?: {
|
|
436
|
+
title?: string | undefined;
|
|
437
|
+
description?: string | undefined;
|
|
438
|
+
showReleases?: string | undefined;
|
|
439
|
+
} | undefined;
|
|
440
440
|
toc?: {
|
|
441
441
|
title?: string | undefined;
|
|
442
442
|
} | undefined;
|
|
@@ -464,12 +464,12 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
464
464
|
untranslated?: string | undefined;
|
|
465
465
|
} | undefined;
|
|
466
466
|
nav?: {
|
|
467
|
-
deprecated?: string | undefined;
|
|
468
467
|
featured?: string | undefined;
|
|
469
468
|
navigation?: string | undefined;
|
|
470
469
|
breadcrumb?: string | undefined;
|
|
471
470
|
back?: string | undefined;
|
|
472
471
|
closeNavigation?: string | undefined;
|
|
472
|
+
deprecated?: string | undefined;
|
|
473
473
|
githubRepository?: string | undefined;
|
|
474
474
|
primary?: string | undefined;
|
|
475
475
|
sections?: string | undefined;
|
|
@@ -553,10 +553,10 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
553
553
|
you: z.ZodDefault<z.ZodString>;
|
|
554
554
|
}, "strip", z.ZodTypeAny, {
|
|
555
555
|
title: string;
|
|
556
|
-
error: string;
|
|
557
556
|
label: string;
|
|
558
557
|
ai: string;
|
|
559
558
|
empty: string;
|
|
559
|
+
error: string;
|
|
560
560
|
placeholder: string;
|
|
561
561
|
send: string;
|
|
562
562
|
clear: string;
|
|
@@ -566,10 +566,10 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
566
566
|
you: string;
|
|
567
567
|
}, {
|
|
568
568
|
title?: string | undefined;
|
|
569
|
-
error?: string | undefined;
|
|
570
569
|
label?: string | undefined;
|
|
571
570
|
ai?: string | undefined;
|
|
572
571
|
empty?: string | undefined;
|
|
572
|
+
error?: string | undefined;
|
|
573
573
|
placeholder?: string | undefined;
|
|
574
574
|
send?: string | undefined;
|
|
575
575
|
clear?: string | undefined;
|
|
@@ -644,24 +644,24 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
644
644
|
toggleNavigation: z.ZodDefault<z.ZodString>;
|
|
645
645
|
toggleTheme: z.ZodDefault<z.ZodString>;
|
|
646
646
|
}, "strip", z.ZodTypeAny, {
|
|
647
|
-
deprecated: string;
|
|
648
647
|
featured: string;
|
|
649
648
|
navigation: string;
|
|
650
649
|
breadcrumb: string;
|
|
651
650
|
back: string;
|
|
652
651
|
closeNavigation: string;
|
|
652
|
+
deprecated: string;
|
|
653
653
|
githubRepository: string;
|
|
654
654
|
primary: string;
|
|
655
655
|
sections: string;
|
|
656
656
|
toggleNavigation: string;
|
|
657
657
|
toggleTheme: string;
|
|
658
658
|
}, {
|
|
659
|
-
deprecated?: string | undefined;
|
|
660
659
|
featured?: string | undefined;
|
|
661
660
|
navigation?: string | undefined;
|
|
662
661
|
breadcrumb?: string | undefined;
|
|
663
662
|
back?: string | undefined;
|
|
664
663
|
closeNavigation?: string | undefined;
|
|
664
|
+
deprecated?: string | undefined;
|
|
665
665
|
githubRepository?: string | undefined;
|
|
666
666
|
primary?: string | undefined;
|
|
667
667
|
sections?: string | undefined;
|
|
@@ -717,8 +717,8 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
717
717
|
preview: z.ZodDefault<z.ZodString>;
|
|
718
718
|
results: z.ZodDefault<z.ZodString>;
|
|
719
719
|
}, "strip", z.ZodTypeAny, {
|
|
720
|
-
error: string;
|
|
721
720
|
label: string;
|
|
721
|
+
error: string;
|
|
722
722
|
placeholder: string;
|
|
723
723
|
all: string;
|
|
724
724
|
button: string;
|
|
@@ -733,8 +733,8 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
733
733
|
preview: string;
|
|
734
734
|
results: string;
|
|
735
735
|
}, {
|
|
736
|
-
error?: string | undefined;
|
|
737
736
|
label?: string | undefined;
|
|
737
|
+
error?: string | undefined;
|
|
738
738
|
placeholder?: string | undefined;
|
|
739
739
|
all?: string | undefined;
|
|
740
740
|
button?: string | undefined;
|
|
@@ -757,41 +757,12 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
757
757
|
title?: string | undefined;
|
|
758
758
|
}>>;
|
|
759
759
|
}, "strip", z.ZodTypeAny, {
|
|
760
|
-
changelog: {
|
|
761
|
-
title: string;
|
|
762
|
-
description: string;
|
|
763
|
-
showReleases: string;
|
|
764
|
-
};
|
|
765
|
-
search: {
|
|
766
|
-
error: string;
|
|
767
|
-
label: string;
|
|
768
|
-
placeholder: string;
|
|
769
|
-
all: string;
|
|
770
|
-
button: string;
|
|
771
|
-
devOnly: string;
|
|
772
|
-
noResults: string;
|
|
773
|
-
allLanguages: string;
|
|
774
|
-
askAi: string;
|
|
775
|
-
askAiHint: string;
|
|
776
|
-
navigate: string;
|
|
777
|
-
open: string;
|
|
778
|
-
popular: string;
|
|
779
|
-
preview: string;
|
|
780
|
-
results: string;
|
|
781
|
-
};
|
|
782
|
-
page: {
|
|
783
|
-
lastUpdated: string;
|
|
784
|
-
next: string;
|
|
785
|
-
pagination: string;
|
|
786
|
-
previous: string;
|
|
787
|
-
skipToContent: string;
|
|
788
|
-
};
|
|
789
760
|
ask: {
|
|
790
761
|
title: string;
|
|
791
|
-
error: string;
|
|
792
762
|
label: string;
|
|
793
763
|
ai: string;
|
|
794
764
|
empty: string;
|
|
765
|
+
error: string;
|
|
795
766
|
placeholder: string;
|
|
796
767
|
send: string;
|
|
797
768
|
clear: string;
|
|
@@ -812,6 +783,35 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
812
783
|
thanks: string;
|
|
813
784
|
yes: string;
|
|
814
785
|
};
|
|
786
|
+
page: {
|
|
787
|
+
lastUpdated: string;
|
|
788
|
+
next: string;
|
|
789
|
+
pagination: string;
|
|
790
|
+
previous: string;
|
|
791
|
+
skipToContent: string;
|
|
792
|
+
};
|
|
793
|
+
search: {
|
|
794
|
+
label: string;
|
|
795
|
+
error: string;
|
|
796
|
+
placeholder: string;
|
|
797
|
+
all: string;
|
|
798
|
+
button: string;
|
|
799
|
+
devOnly: string;
|
|
800
|
+
noResults: string;
|
|
801
|
+
allLanguages: string;
|
|
802
|
+
askAi: string;
|
|
803
|
+
askAiHint: string;
|
|
804
|
+
navigate: string;
|
|
805
|
+
open: string;
|
|
806
|
+
popular: string;
|
|
807
|
+
preview: string;
|
|
808
|
+
results: string;
|
|
809
|
+
};
|
|
810
|
+
changelog: {
|
|
811
|
+
title: string;
|
|
812
|
+
description: string;
|
|
813
|
+
showReleases: string;
|
|
814
|
+
};
|
|
815
815
|
toc: {
|
|
816
816
|
title: string;
|
|
817
817
|
};
|
|
@@ -839,12 +839,12 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
839
839
|
untranslated: string;
|
|
840
840
|
};
|
|
841
841
|
nav: {
|
|
842
|
-
deprecated: string;
|
|
843
842
|
featured: string;
|
|
844
843
|
navigation: string;
|
|
845
844
|
breadcrumb: string;
|
|
846
845
|
back: string;
|
|
847
846
|
closeNavigation: string;
|
|
847
|
+
deprecated: string;
|
|
848
848
|
githubRepository: string;
|
|
849
849
|
primary: string;
|
|
850
850
|
sections: string;
|
|
@@ -857,41 +857,12 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
857
857
|
home: string;
|
|
858
858
|
};
|
|
859
859
|
}, {
|
|
860
|
-
changelog?: {
|
|
861
|
-
title?: string | undefined;
|
|
862
|
-
description?: string | undefined;
|
|
863
|
-
showReleases?: string | undefined;
|
|
864
|
-
} | undefined;
|
|
865
|
-
search?: {
|
|
866
|
-
error?: string | undefined;
|
|
867
|
-
label?: string | undefined;
|
|
868
|
-
placeholder?: string | undefined;
|
|
869
|
-
all?: string | undefined;
|
|
870
|
-
button?: string | undefined;
|
|
871
|
-
devOnly?: string | undefined;
|
|
872
|
-
noResults?: string | undefined;
|
|
873
|
-
allLanguages?: string | undefined;
|
|
874
|
-
askAi?: string | undefined;
|
|
875
|
-
askAiHint?: string | undefined;
|
|
876
|
-
navigate?: string | undefined;
|
|
877
|
-
open?: string | undefined;
|
|
878
|
-
popular?: string | undefined;
|
|
879
|
-
preview?: string | undefined;
|
|
880
|
-
results?: string | undefined;
|
|
881
|
-
} | undefined;
|
|
882
|
-
page?: {
|
|
883
|
-
lastUpdated?: string | undefined;
|
|
884
|
-
next?: string | undefined;
|
|
885
|
-
pagination?: string | undefined;
|
|
886
|
-
previous?: string | undefined;
|
|
887
|
-
skipToContent?: string | undefined;
|
|
888
|
-
} | undefined;
|
|
889
860
|
ask?: {
|
|
890
861
|
title?: string | undefined;
|
|
891
|
-
error?: string | undefined;
|
|
892
862
|
label?: string | undefined;
|
|
893
863
|
ai?: string | undefined;
|
|
894
864
|
empty?: string | undefined;
|
|
865
|
+
error?: string | undefined;
|
|
895
866
|
placeholder?: string | undefined;
|
|
896
867
|
send?: string | undefined;
|
|
897
868
|
clear?: string | undefined;
|
|
@@ -912,6 +883,35 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
912
883
|
thanks?: string | undefined;
|
|
913
884
|
yes?: string | undefined;
|
|
914
885
|
} | undefined;
|
|
886
|
+
page?: {
|
|
887
|
+
lastUpdated?: string | undefined;
|
|
888
|
+
next?: string | undefined;
|
|
889
|
+
pagination?: string | undefined;
|
|
890
|
+
previous?: string | undefined;
|
|
891
|
+
skipToContent?: string | undefined;
|
|
892
|
+
} | undefined;
|
|
893
|
+
search?: {
|
|
894
|
+
label?: string | undefined;
|
|
895
|
+
error?: string | undefined;
|
|
896
|
+
placeholder?: string | undefined;
|
|
897
|
+
all?: string | undefined;
|
|
898
|
+
button?: string | undefined;
|
|
899
|
+
devOnly?: string | undefined;
|
|
900
|
+
noResults?: string | undefined;
|
|
901
|
+
allLanguages?: string | undefined;
|
|
902
|
+
askAi?: string | undefined;
|
|
903
|
+
askAiHint?: string | undefined;
|
|
904
|
+
navigate?: string | undefined;
|
|
905
|
+
open?: string | undefined;
|
|
906
|
+
popular?: string | undefined;
|
|
907
|
+
preview?: string | undefined;
|
|
908
|
+
results?: string | undefined;
|
|
909
|
+
} | undefined;
|
|
910
|
+
changelog?: {
|
|
911
|
+
title?: string | undefined;
|
|
912
|
+
description?: string | undefined;
|
|
913
|
+
showReleases?: string | undefined;
|
|
914
|
+
} | undefined;
|
|
915
915
|
toc?: {
|
|
916
916
|
title?: string | undefined;
|
|
917
917
|
} | undefined;
|
|
@@ -939,12 +939,12 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
939
939
|
untranslated?: string | undefined;
|
|
940
940
|
} | undefined;
|
|
941
941
|
nav?: {
|
|
942
|
-
deprecated?: string | undefined;
|
|
943
942
|
featured?: string | undefined;
|
|
944
943
|
navigation?: string | undefined;
|
|
945
944
|
breadcrumb?: string | undefined;
|
|
946
945
|
back?: string | undefined;
|
|
947
946
|
closeNavigation?: string | undefined;
|
|
947
|
+
deprecated?: string | undefined;
|
|
948
948
|
githubRepository?: string | undefined;
|
|
949
949
|
primary?: string | undefined;
|
|
950
950
|
sections?: string | undefined;
|