blume 1.0.3 → 1.1.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 +94 -0
- package/dist/cli/index.js +13784 -10579
- package/dist/cli/index.js.map +93 -61
- package/dist/types/core/config-input.d.ts +87 -8
- package/dist/types/core/data.d.ts +21 -0
- package/dist/types/core/deployment-env.d.ts +6 -0
- package/dist/types/core/diagnostics.d.ts +23 -0
- package/dist/types/core/i18n-ui.d.ts +140 -140
- package/dist/types/core/schema.d.ts +549 -370
- package/dist/types/core/sources/types.d.ts +3 -1
- package/dist/types/core/standard-schema.d.ts +41 -0
- package/dist/types/core/types.d.ts +23 -0
- package/dist/types/og/card.d.ts +63 -0
- package/dist/types/og/dimensions.d.ts +12 -0
- package/dist/types/openapi/references.d.ts +12 -7
- package/docs/01-quickstart.mdx +1 -1
- package/docs/02-deployment.mdx +9 -1
- package/docs/advanced/api-reference.mdx +22 -3
- package/docs/advanced/changelog.mdx +1 -1
- package/docs/advanced/skills.mdx +1 -1
- package/docs/configuration/ai.mdx +1 -1
- package/docs/configuration/customization.mdx +1 -1
- package/docs/configuration/export.mdx +1 -1
- package/docs/configuration/index.mdx +21 -1
- package/docs/configuration/search.mdx +28 -1
- package/docs/configuration/seo.mdx +40 -2
- package/docs/configuration/theming.mdx +1 -1
- package/docs/content/components.mdx +15 -2
- package/docs/content/index.mdx +1 -1
- package/docs/content/meta.mdx +1 -1
- package/docs/content/navigation.mdx +11 -1
- package/docs/content/sources.mdx +1 -1
- package/docs/content/syntax.mdx +116 -4
- package/docs/reference/cli.mdx +79 -1
- package/docs/reference/frontmatter.mdx +29 -1
- package/package.json +3 -3
- 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 +156 -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 +478 -0
- package/src/ai/llms.ts +15 -0
- package/src/astro/adapter-root.ts +70 -0
- package/src/astro/component-slots.ts +3 -2
- package/src/astro/generate.ts +132 -42
- package/src/astro/index.ts +1 -0
- package/src/astro/pages.ts +18 -3
- package/src/astro/templates.ts +158 -56
- package/src/audit/agent.ts +114 -0
- package/src/audit/catalog.ts +826 -0
- package/src/audit/checks/assets.ts +177 -0
- package/src/audit/checks/content.ts +231 -0
- package/src/audit/checks/duplicates.ts +131 -0
- package/src/audit/checks/i18n.ts +246 -0
- package/src/audit/checks/indexability.ts +213 -0
- package/src/audit/checks/links.ts +223 -0
- package/src/audit/checks/llms.ts +135 -0
- package/src/audit/checks/network.ts +272 -0
- package/src/audit/checks/og-image.ts +113 -0
- package/src/audit/checks/redirects.ts +87 -0
- package/src/audit/checks/robots.ts +114 -0
- package/src/audit/checks/sitemap.ts +229 -0
- package/src/audit/checks/social.ts +238 -0
- package/src/audit/crawl.ts +259 -0
- package/src/audit/graph.ts +74 -0
- package/src/audit/html.ts +54 -0
- package/src/audit/image-size.ts +63 -0
- package/src/audit/locate.ts +33 -0
- package/src/audit/redirects.ts +74 -0
- package/src/audit/report.ts +278 -0
- package/src/audit/run.ts +198 -0
- package/src/audit/snapshot.ts +189 -0
- package/src/audit/types.ts +214 -0
- package/src/audit/url.ts +103 -0
- package/src/cli/commands/audit.ts +205 -0
- package/src/cli/commands/build.ts +51 -12
- package/src/cli/index.ts +2 -0
- package/src/components/content/Callout.astro +8 -2
- package/src/components/content/Prompt.astro +25 -13
- package/src/components/content/Tabs.astro +98 -15
- package/src/components/layout/Breadcrumbs.astro +1 -1
- package/src/components/layout/Header.astro +5 -8
- package/src/components/layout/Logo.astro +13 -1
- package/src/components/layout/PageFeedback.astro +2 -2
- package/src/components/layout/PageLayout.astro +9 -9
- package/src/components/layout/Pagination.astro +7 -7
- package/src/components/layout/RootLayout.astro +9 -11
- package/src/components/layout/Search.astro +36 -7
- package/src/components/layout/TableOfContents.astro +1 -1
- package/src/components/layout/nav-utils.ts +9 -7
- package/src/components/openapi/Authorization.astro +80 -0
- package/src/components/openapi/Operation.astro +19 -1
- package/src/components/openapi/ParametersTable.astro +1 -1
- package/src/components/openapi/security.ts +201 -0
- package/src/components/openapi/snippets.ts +42 -13
- package/src/core/config-input.ts +94 -8
- package/src/core/data.ts +18 -2
- package/src/core/deployment-env.ts +9 -0
- package/src/core/diagnostics.ts +59 -12
- package/src/core/links.ts +2 -91
- package/src/core/nav-diagnostics.ts +48 -4
- package/src/core/navigation.ts +55 -13
- package/src/core/probe.ts +136 -0
- package/src/core/project-graph.ts +8 -0
- package/src/core/schema.ts +100 -1
- package/src/core/sources/normalize.ts +198 -25
- package/src/core/sources/types.ts +3 -1
- package/src/core/sources/watch.ts +5 -0
- package/src/core/standard-schema.ts +54 -0
- package/src/core/types.ts +23 -0
- package/src/deploy/adapter-output.ts +27 -15
- package/src/deploy/headers.ts +66 -0
- package/src/deploy/redirects.ts +49 -9
- 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 +128 -36
- package/src/og/index.ts +1 -1
- package/src/og/logo.ts +21 -0
- package/src/openapi/references.ts +19 -16
- package/src/search/popular.ts +33 -0
- package/src/theme/entry.ts +56 -6
|
@@ -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,9 @@ 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
|
+
popular: string;
|
|
247
|
+
error: string;
|
|
247
248
|
placeholder: string;
|
|
248
249
|
all: string;
|
|
249
250
|
button: string;
|
|
@@ -254,12 +255,12 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
254
255
|
askAiHint: string;
|
|
255
256
|
navigate: string;
|
|
256
257
|
open: string;
|
|
257
|
-
popular: string;
|
|
258
258
|
preview: string;
|
|
259
259
|
results: string;
|
|
260
260
|
}, {
|
|
261
|
-
error?: string | undefined;
|
|
262
261
|
label?: string | undefined;
|
|
262
|
+
popular?: string | undefined;
|
|
263
|
+
error?: string | undefined;
|
|
263
264
|
placeholder?: string | undefined;
|
|
264
265
|
all?: string | undefined;
|
|
265
266
|
button?: string | undefined;
|
|
@@ -270,7 +271,6 @@ declare const uiStringsObject: z.ZodObject<{
|
|
|
270
271
|
askAiHint?: string | undefined;
|
|
271
272
|
navigate?: string | undefined;
|
|
272
273
|
open?: string | undefined;
|
|
273
|
-
popular?: string | undefined;
|
|
274
274
|
preview?: string | undefined;
|
|
275
275
|
results?: string | undefined;
|
|
276
276
|
}>>;
|
|
@@ -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
|
+
popular: string;
|
|
321
|
+
error: string;
|
|
322
|
+
placeholder: string;
|
|
323
|
+
all: string;
|
|
324
|
+
button: string;
|
|
325
|
+
devOnly: string;
|
|
326
|
+
noResults: string;
|
|
327
|
+
allLanguages: string;
|
|
328
|
+
askAi: string;
|
|
329
|
+
askAiHint: string;
|
|
330
|
+
navigate: string;
|
|
331
|
+
open: 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
|
+
popular?: string | undefined;
|
|
421
|
+
error?: string | undefined;
|
|
422
|
+
placeholder?: string | undefined;
|
|
423
|
+
all?: string | undefined;
|
|
424
|
+
button?: string | undefined;
|
|
425
|
+
devOnly?: string | undefined;
|
|
426
|
+
noResults?: string | undefined;
|
|
427
|
+
allLanguages?: string | undefined;
|
|
428
|
+
askAi?: string | undefined;
|
|
429
|
+
askAiHint?: string | undefined;
|
|
430
|
+
navigate?: string | undefined;
|
|
431
|
+
open?: 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,9 @@ 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
|
+
popular: string;
|
|
722
|
+
error: string;
|
|
722
723
|
placeholder: string;
|
|
723
724
|
all: string;
|
|
724
725
|
button: string;
|
|
@@ -729,12 +730,12 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
729
730
|
askAiHint: string;
|
|
730
731
|
navigate: string;
|
|
731
732
|
open: string;
|
|
732
|
-
popular: string;
|
|
733
733
|
preview: string;
|
|
734
734
|
results: string;
|
|
735
735
|
}, {
|
|
736
|
-
error?: string | undefined;
|
|
737
736
|
label?: string | undefined;
|
|
737
|
+
popular?: string | undefined;
|
|
738
|
+
error?: string | undefined;
|
|
738
739
|
placeholder?: string | undefined;
|
|
739
740
|
all?: string | undefined;
|
|
740
741
|
button?: string | undefined;
|
|
@@ -745,7 +746,6 @@ export declare const uiStringsSchema: z.ZodDefault<z.ZodObject<{
|
|
|
745
746
|
askAiHint?: string | undefined;
|
|
746
747
|
navigate?: string | undefined;
|
|
747
748
|
open?: string | undefined;
|
|
748
|
-
popular?: string | undefined;
|
|
749
749
|
preview?: string | undefined;
|
|
750
750
|
results?: string | undefined;
|
|
751
751
|
}>>;
|
|
@@ -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
|
+
popular: string;
|
|
796
|
+
error: string;
|
|
797
|
+
placeholder: string;
|
|
798
|
+
all: string;
|
|
799
|
+
button: string;
|
|
800
|
+
devOnly: string;
|
|
801
|
+
noResults: string;
|
|
802
|
+
allLanguages: string;
|
|
803
|
+
askAi: string;
|
|
804
|
+
askAiHint: string;
|
|
805
|
+
navigate: string;
|
|
806
|
+
open: 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
|
+
popular?: string | undefined;
|
|
896
|
+
error?: string | undefined;
|
|
897
|
+
placeholder?: string | undefined;
|
|
898
|
+
all?: string | undefined;
|
|
899
|
+
button?: string | undefined;
|
|
900
|
+
devOnly?: string | undefined;
|
|
901
|
+
noResults?: string | undefined;
|
|
902
|
+
allLanguages?: string | undefined;
|
|
903
|
+
askAi?: string | undefined;
|
|
904
|
+
askAiHint?: string | undefined;
|
|
905
|
+
navigate?: string | undefined;
|
|
906
|
+
open?: 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;
|