Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Xcode 16 docs build #280

Merged
merged 1 commit into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion Sources/Charcoal/Charcoal.docc/Components/Balloons.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ VStack {}
## Topics

### Creating SwiftUI Balloons
- ``SwiftUI/View/charcoalBalloon(isPresenting:text:dismissAfter:action:)``

- ``SwiftUICore/View/charcoalBalloon(isPresenting:text:dismissAfter:action:)``

### Creating UIKit Balloons

- ``CharcoalBalloon/show(text:anchorView:interactionMode:spacingToScreen:gap:on:)``
10 changes: 5 additions & 5 deletions Sources/Charcoal/Charcoal.docc/Components/Buttons.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ let button = CharcoalPrimaryMButton()

### Creating SwiftUI buttons

- ``SwiftUI/View/charcoalPrimaryButton(size:isFixed:primaryColor:)``
- ``SwiftUI/View/charcoalDefaultButton(size:isFixed:)``
- ``SwiftUI/View/charcoalDefaultOverlayButton(size:isFixed:)``
- ``SwiftUI/View/charcoalLinkButton()``
- ``SwiftUI/View/charcoalNavigationButton(size:isFixed:)``
- ``SwiftUICore/View/charcoalPrimaryButton(size:isFixed:primaryColor:)``
- ``SwiftUICore/View/charcoalDefaultButton(size:isFixed:)``
- ``SwiftUICore/View/charcoalDefaultOverlayButton(size:isFixed:)``
- ``SwiftUICore/View/charcoalLinkButton()``
- ``SwiftUICore/View/charcoalNavigationButton(size:isFixed:)``

### Creating UIKit buttons

Expand Down
3 changes: 1 addition & 2 deletions Sources/Charcoal/Charcoal.docc/Components/Modals.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,4 @@ Charcoal Modals are designed to show a message in a modal container.
## Topics

### Creating SwiftUI Modals

- ``SwiftUI/View/charcoalModal(title:style:tapBackgroundToDismiss:duration:maxWidth:isPresented:actions:content:)``
- ``SwiftUICore/View/charcoalModal(title:style:tapBackgroundToDismiss:duration:maxWidth:isPresented:actions:content:)``
2 changes: 1 addition & 1 deletion Sources/Charcoal/Charcoal.docc/Components/Spinners.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CharcoalSpinner.show(spinnerSize: .medium, transparentBackground: true, interact

### Creating SwiftUI Spinners

- ``SwiftUI/View/charcoalSpinner(isPresenting:spinnerSize:transparentBackground:interactionPassthrough:)``
- ``SwiftUICore/View/charcoalSpinner(isPresenting:spinnerSize:transparentBackground:interactionPassthrough:)``

### Creating UIKit Spinners

Expand Down
2 changes: 1 addition & 1 deletion Sources/Charcoal/Charcoal.docc/Components/Switch.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ let button = CharcoalSwitch()

### Creating SwiftUI Toggle

- ``SwiftUI/View/charcoalToggle()``
- ``SwiftUICore/View/charcoalToggle()``


### Creating UIKit Switch
Expand Down
2 changes: 1 addition & 1 deletion Sources/Charcoal/Charcoal.docc/Components/Textfields.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ let textField = CharcoalTextField()

### Creating SwiftUI TextFields

- ``SwiftUI/View/charcoalTextField(label:countLabel:assistiveText:hasError:)``
- ``SwiftUICore/View/charcoalTextField(label:countLabel:assistiveText:hasError:)``

### Creating UIKit TextFields

Expand Down
4 changes: 2 additions & 2 deletions Sources/Charcoal/Charcoal.docc/Components/Toasts.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ CharcoalSnackBar.show(text: "Hello", on: view)

### Creating SwiftUI Toasts

- ``SwiftUI/View/charcoalToast(isPresenting:screenEdge:screenEdgeSpacing:text:dismissAfter:appearance:animationConfiguration:action:)``
- ``SwiftUICore/View/charcoalToast(isPresenting:screenEdge:screenEdgeSpacing:text:dismissAfter:appearance:animationConfiguration:action:)``

### Creating SwiftUI Snackbars

- ``SwiftUI/View/charcoalSnackBar(isPresenting:screenEdge:screenEdgeSpacing:text:thumbnailImage:dismissAfter:action:)``
- ``SwiftUICore/View/charcoalSnackBar(isPresenting:screenEdge:screenEdgeSpacing:text:thumbnailImage:dismissAfter:action:)``


### Creating UIKit Toasts
Expand Down
4 changes: 2 additions & 2 deletions Sources/Charcoal/Charcoal.docc/Components/Tooltips.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ CharcoalTooltip.show(text: "This is a tooltip", anchorView: view)

### Creating SwiftUI Tooltips

- ``SwiftUI/View``
- ``SwiftUI/View/charcoalTooltip(isPresenting:text:dismissAfter:)``
- ``SwiftUICore/View``
- ``SwiftUICore/View/charcoalTooltip(isPresenting:text:dismissAfter:)``

### Creating UIKit Tooltips

Expand Down
48 changes: 24 additions & 24 deletions Sources/Charcoal/Charcoal.docc/Components/Typographies.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,30 +30,30 @@ label.isBold = false

### Creating SwiftUI Typographies

- ``SwiftUI/View/charcoalTypography10Bold(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography10Regular(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography10BoldMono()``
- ``SwiftUI/View/charcoalTypography10RegularMono()``

- ``SwiftUI/View/charcoalTypography12Bold(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography12Regular(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography12BoldMono()``
- ``SwiftUI/View/charcoalTypography12RegularMono()``

- ``SwiftUI/View/charcoalTypography14Bold(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography14Regular(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography14BoldMono()``
- ``SwiftUI/View/charcoalTypography14RegularMono()``

- ``SwiftUI/View/charcoalTypography16Bold(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography16Regular(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography16BoldMono()``
- ``SwiftUI/View/charcoalTypography16RegularMono()``

- ``SwiftUI/View/charcoalTypography20Bold(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography20Regular(isSingleLine:)``
- ``SwiftUI/View/charcoalTypography20BoldMono()``
- ``SwiftUI/View/charcoalTypography20RegularMono()``
- ``SwiftUICore/View/charcoalTypography10Bold(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography10Regular(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography10BoldMono()``
- ``SwiftUICore/View/charcoalTypography10RegularMono()``

- ``SwiftUICore/View/charcoalTypography12Bold(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography12Regular(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography12BoldMono()``
- ``SwiftUICore/View/charcoalTypography12RegularMono()``

- ``SwiftUICore/View/charcoalTypography14Bold(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography14Regular(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography14BoldMono()``
- ``SwiftUICore/View/charcoalTypography14RegularMono()``

- ``SwiftUICore/View/charcoalTypography16Bold(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography16Regular(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography16BoldMono()``
- ``SwiftUICore/View/charcoalTypography16RegularMono()``

- ``SwiftUICore/View/charcoalTypography20Bold(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography20Regular(isSingleLine:)``
- ``SwiftUICore/View/charcoalTypography20BoldMono()``
- ``SwiftUICore/View/charcoalTypography20RegularMono()``


### Creating UIKit Typographies
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 0 additions & 7 deletions Sources/Charcoal/Charcoal.docc/theme-settings.json

This file was deleted.

Loading