From 4f381aefa261078b13ee3d0226124462e8c23afe Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:43:13 +0100 Subject: [PATCH 01/18] Fix typos and indentation --- .../DynamicUI.docc/Views/DisclosureGroup.md | 8 ++--- .../DynamicUI/DynamicUI.docc/Views/Group.md | 11 +++--- .../DynamicUI.docc/Views/GroupBox.md | 11 +++--- .../DynamicUI.docc/Views/HSplitView.md | 11 +++--- .../DynamicUI/DynamicUI.docc/Views/HStack.md | 11 +++--- .../DynamicUI/DynamicUI.docc/Views/List.md | 11 +++--- .../DynamicUI.docc/Views/NavigationView.md | 11 +++--- .../DynamicUI/DynamicUI.docc/Views/Picker.md | 35 +++++++++---------- .../DynamicUI.docc/Views/ScrollView.md | 11 +++--- .../DynamicUI/DynamicUI.docc/Views/Section.md | 11 +++--- .../DynamicUI.docc/Views/VSplitView.md | 8 ++--- .../DynamicUI/DynamicUI.docc/Views/VStack.md | 8 ++--- .../DynamicUI/DynamicUI.docc/Views/ZStack.md | 8 ++--- 13 files changed, 73 insertions(+), 82 deletions(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md b/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md index 06d276e851..e6d29f6b4d 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md @@ -8,10 +8,10 @@ This example demonstrates how to define a `DisclosureGroup` using DynamicUI's JS "type": "DisclosureGroup", "title": "Title", "children": [ - { - "type": "Text", - "title": "Content goes here", - } + { + "type": "Text", + "title": "Content goes here", + } ] } ] diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/Group.md b/Sources/DynamicUI/DynamicUI.docc/Views/Group.md index bcf0d7472e..3b25740b3a 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/Group.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/Group.md @@ -7,12 +7,11 @@ This example demonstrates how to define a `Group` using DynamicUI's JSON schema. { "type": "Group", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md b/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md index d71f9e3219..77e15991b0 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md @@ -7,12 +7,11 @@ This example demonstrates how to define a `GroupBox` using DynamicUI's JSON sche { "type": "GroupBox", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md b/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md index eb16782f82..dec0b8fe59 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md @@ -7,12 +7,11 @@ This example demonstrates how to define a `HSplitView` using DynamicUI's JSON sc { "type": "HSplitView", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md index 7b619bf6f9..6bd9aad156 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md @@ -7,12 +7,11 @@ This example demonstrates how to define a `HStack` using DynamicUI's JSON schema { "type": "HStack", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/List.md b/Sources/DynamicUI/DynamicUI.docc/Views/List.md index 4a05161786..9d901d33f0 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/List.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/List.md @@ -7,12 +7,11 @@ This example demonstrates how to define a `List` using DynamicUI's JSON schema. { "type": "List", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md b/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md index d2aa7b24c1..bc25b933ec 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md @@ -7,12 +7,11 @@ This example demonstrates how to define a `NavigationView` using DynamicUI's JSO { "type": "NavigationView", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md b/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md index 4dfe52789e..f458ef04b9 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md @@ -7,24 +7,23 @@ This example demonstrates how to define a `Picker` using DynamicUI's JSON schema { "type": "Picker", "children": [ - { - "identifier": "item1", - "type": "Text", - "title": "Item 1" - }, - { - "identifier": "item2", - "type": "Text", - "title": "Item 2", - "disabled": true - }, - { - "identifier": "item3", - "type": "Text", - "title": "Item 3" - } - ] - } + { + "identifier": "item1", + "type": "Text", + "title": "Item 1" + }, + { + "identifier": "item2", + "type": "Text", + "title": "Item 2", + "disabled": true + }, + { + "identifier": "item3", + "type": "Text", + "title": "Item 3" + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md b/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md index e5a3ffb8e1..cc32f68d93 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md @@ -7,12 +7,11 @@ This example demonstrates how to define a `ScrollView` using DynamicUI's JSON sc { "type": "ScrollView", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/Section.md b/Sources/DynamicUI/DynamicUI.docc/Views/Section.md index 222f44cc8a..fd2c57d8a9 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/Section.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/Section.md @@ -8,12 +8,11 @@ This example demonstrates how to define a `Section` using DynamicUI's JSON schem "type": "Section", "title": "Section Title", "children": [ - { - "type": "Text", - "title": "Content goes here", - } - ] - } + { + "type": "Text", + "title": "Content goes here", + } + ] } ] ``` diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md b/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md index 13226b0f08..d6c1c31f8f 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md @@ -7,10 +7,10 @@ This example demonstrates how to define a `VSplitView` using DynamicUI's JSON sc { "type": "VSplitView", "children": [ - { - "type": "Text", - "title": "Content goes here", - } + { + "type": "Text", + "title": "Content goes here", + } ] } } diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md index df1944b8ac..322167c946 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md @@ -7,10 +7,10 @@ This example demonstrates how to define a `VStack` using DynamicUI's JSON schema { "type": "VStack", "children": [ - { - "type": "Text", - "title": "Content goes here", - } + { + "type": "Text", + "title": "Content goes here", + } ] } } diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md index 093ed630c5..60b3ba6a8b 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md @@ -7,10 +7,10 @@ This example demonstrates how to define a `ZStack` using DynamicUI's JSON schema { "type": "ZStack", "children": [ - { - "type": "Text", - "title": "Content goes here", - } + { + "type": "Text", + "title": "Content goes here", + } ] } } From 4450aa4692e01a9f03503be6ffc57a2361ee856c Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:46:35 +0100 Subject: [PATCH 02/18] Update Sources/DynamicUI/DynamicUI.docc/Views/VStack.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/VStack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md index 322167c946..112f477091 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `VStack` using DynamicUI's JSON schema "type": "Text", "title": "Content goes here", } - ] + ] } } ] From ee9201d64513f7cd06af32421a08442b7575d420 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:46:41 +0100 Subject: [PATCH 03/18] Update Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md b/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md index d6c1c31f8f..3c8cbd0e2d 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `VSplitView` using DynamicUI's JSON sc "type": "Text", "title": "Content goes here", } - ] + ] } } ] From 44e069f19251ed074aceb4c936203f08dde34e81 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:46:48 +0100 Subject: [PATCH 04/18] Update Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md index 60b3ba6a8b..d90221fedd 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `ZStack` using DynamicUI's JSON schema "type": "Text", "title": "Content goes here", } - ] + ] } } ] From 6fcc7a6b9f9cd8ec46ed678969a69c84fb6d01b1 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:58:53 +0100 Subject: [PATCH 05/18] Update Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md b/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md index 77e15991b0..816acfa0e9 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/GroupBox.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `GroupBox` using DynamicUI's JSON sche "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 165339f029e361334b5a73ecce2b2b044e0b1e26 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:59:06 +0100 Subject: [PATCH 06/18] Update Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md b/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md index cc32f68d93..c78050d34c 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/ScrollView.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `ScrollView` using DynamicUI's JSON sc "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 411312a1baa74e2c4156291d533982c8d33b7486 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:59:15 +0100 Subject: [PATCH 07/18] Update Sources/DynamicUI/DynamicUI.docc/Views/Picker.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/Picker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md b/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md index f458ef04b9..3421e888fd 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/Picker.md @@ -23,7 +23,7 @@ This example demonstrates how to define a `Picker` using DynamicUI's JSON schema "type": "Text", "title": "Item 3" } - ] + ] } ] ``` From 2223a455c75a244db8c1e031dfa69d02e771e44b Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 16:59:42 +0100 Subject: [PATCH 08/18] Update Sources/DynamicUI/DynamicUI.docc/Views/List.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/List.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/List.md b/Sources/DynamicUI/DynamicUI.docc/Views/List.md index 9d901d33f0..515e914ae6 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/List.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/List.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `List` using DynamicUI's JSON schema. "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 64aa229e8b5375031bc2243f3382cb5a15956446 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:00:29 +0100 Subject: [PATCH 09/18] Update Sources/DynamicUI/DynamicUI.docc/Views/HStack.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/HStack.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md index 6bd9aad156..2e85371584 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/HStack.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `HStack` using DynamicUI's JSON schema "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 13388240ffff2d4e1834f6041c18106635ac26e2 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:00:38 +0100 Subject: [PATCH 10/18] Update Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md b/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md index e6d29f6b4d..696f552eb6 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md @@ -12,7 +12,7 @@ This example demonstrates how to define a `DisclosureGroup` using DynamicUI's JS "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 40f5e1239d394b514985bd24f9cd400d77f16479 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:00:53 +0100 Subject: [PATCH 11/18] Update Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md b/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md index bc25b933ec..d63999e017 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/NavigationView.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `NavigationView` using DynamicUI's JSO "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 906a32b3ac69add39b20cc8a07e54c0c6c405ee4 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:01:25 +0100 Subject: [PATCH 12/18] Update Sources/DynamicUI/DynamicUI.docc/Views/VStack.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/VStack.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md index 112f477091..c00d150c19 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md @@ -12,7 +12,6 @@ This example demonstrates how to define a `VStack` using DynamicUI's JSON schema "title": "Content goes here", } ] - } } ] ``` From 6badb4940ebb562fa1358be57d58a7881bd9e08b Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:01:34 +0100 Subject: [PATCH 13/18] Update Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md b/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md index d90221fedd..933b14b7f1 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md @@ -12,7 +12,6 @@ This example demonstrates how to define a `ZStack` using DynamicUI's JSON schema "title": "Content goes here", } ] - } } ] ``` From 2e8a37dddf7b93fe9a269de417f43a29588454b7 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:01:56 +0100 Subject: [PATCH 14/18] Update Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md b/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md index dec0b8fe59..5597a93e80 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `HSplitView` using DynamicUI's JSON sc "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 02017e0bdd310183a342630b23059ce73bf81200 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:03:07 +0100 Subject: [PATCH 15/18] Update Sources/DynamicUI/DynamicUI.docc/Views/Section.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/Section.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/Section.md b/Sources/DynamicUI/DynamicUI.docc/Views/Section.md index fd2c57d8a9..ac7c1b42a3 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/Section.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/Section.md @@ -12,7 +12,7 @@ This example demonstrates how to define a `Section` using DynamicUI's JSON schem "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 71221c1aaab69d38ac36d82f5a55d0335c9ccaea Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:03:15 +0100 Subject: [PATCH 16/18] Update Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md b/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md index 5597a93e80..ad17e10559 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/HSplitView.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `HSplitView` using DynamicUI's JSON sc "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From 4a8426930a97a958960cb1c30d34c2b0688e2e63 Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:03:24 +0100 Subject: [PATCH 17/18] Update Sources/DynamicUI/DynamicUI.docc/Views/Group.md Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- Sources/DynamicUI/DynamicUI.docc/Views/Group.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/Group.md b/Sources/DynamicUI/DynamicUI.docc/Views/Group.md index 3b25740b3a..20732f8421 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/Group.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/Group.md @@ -11,7 +11,7 @@ This example demonstrates how to define a `Group` using DynamicUI's JSON schema. "type": "Text", "title": "Content goes here", } - ] + ] } ] ``` From cbf1007ad6b0ad7e083b5c29203b697938eba96c Mon Sep 17 00:00:00 2001 From: Wesley de Groot Date: Sat, 20 Dec 2025 17:05:10 +0100 Subject: [PATCH 18/18] Fix typo --- Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md | 1 - 1 file changed, 1 deletion(-) diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md b/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md index 3c8cbd0e2d..1070475abf 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md @@ -12,7 +12,6 @@ This example demonstrates how to define a `VSplitView` using DynamicUI's JSON sc "title": "Content goes here", } ] - } } ] ```