Skip to content

Commit

Permalink
Updated documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sjavora committed Jun 28, 2023
1 parent 1d97bc8 commit a3b8945
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Plugins/CheckDocumentation/main.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ import PackagePlugin
.map(\.path)
.map(publicTypeNames(in:))
.joined()
// Discard types starting with an underscore
.filter { $0.starts(with: "_") == false }
)

let typesWithoutReference = publicTypeNames.subtracting(referencedSymbols)
Expand Down
1 change: 1 addition & 0 deletions Sources/Orbit/Orbit.docc/Components/Components.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ Our components are a collection of interface elements that can be reused across
### Information

- ``Alert``
- ``AlertInline``
- ``Badge``
- ``BadgeList``
- ``KeyValue``
Expand Down
6 changes: 1 addition & 5 deletions Sources/Orbit/Orbit.docc/Components/Extensions/Alert.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@

## Topics

### Customizing Appearance

- ``AlertStyle``

### Interaction

- ``AlertButtons``
- ``AlertButtonsBuilder``
15 changes: 15 additions & 0 deletions Sources/Orbit/Orbit.docc/Components/Extensions/AlertInline.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# ``Orbit/AlertInline``

@Metadata {
@DocumentationExtension(mergeBehavior: append)
}

## Topics

### Customizing Appearance

- ``AlertButtonStyle``

### Interaction

- ``AlertInlineButtonsBuilder``

0 comments on commit a3b8945

Please sign in to comment.