From 91346dd34d238a7cc94809121d522b9f90910f93 Mon Sep 17 00:00:00 2001 From: Tyson S Date: Fri, 24 Apr 2026 11:03:15 -0700 Subject: [PATCH] docs(svelte): add Form Composition guide and example to site nav Both docs/framework/svelte/guides/form-composition.md and examples/svelte/large-form/ already exist (added in #1713) but were never wired into docs/config.json, so they don't appear on the website. --- docs/config.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/config.json b/docs/config.json index 6b289ada6..40a65b9f2 100644 --- a/docs/config.json +++ b/docs/config.json @@ -303,6 +303,10 @@ { "label": "Linked Fields", "to": "framework/svelte/guides/linked-fields" + }, + { + "label": "Form Composition", + "to": "framework/svelte/guides/form-composition" } ] } @@ -677,6 +681,10 @@ { "label": "Standard Schema", "to": "framework/svelte/examples/standard-schema" + }, + { + "label": "Form Composition", + "to": "framework/svelte/examples/large-form" } ] }