diff --git a/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md b/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md index 06d276e851..696f552eb6 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/DisclosureGroup.md @@ -8,11 +8,11 @@ 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..20732f8421 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..816acfa0e9 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..ad17e10559 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..2e85371584 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..515e914ae6 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..d63999e017 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..3421e888fd 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..c78050d34c 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..ac7c1b42a3 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..1070475abf 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VSplitView.md @@ -7,12 +7,11 @@ 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..c00d150c19 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/VStack.md @@ -7,12 +7,11 @@ 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..933b14b7f1 100644 --- a/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md +++ b/Sources/DynamicUI/DynamicUI.docc/Views/ZStack.md @@ -7,12 +7,11 @@ 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", + } + ] } ] ```