The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SolidDS, reference 1.2.0 (9f79be), with Swift 6.3 for macOS (SPM) on 19 Apr 2026 13:37:18 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

 80 |             ZStack {
 81 |                 Group {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:80:13: error: 'ZStack' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 78 |         }
 79 |         .background(
 80 |             ZStack {
    |             |- error: 'ZStack' is only available in macOS 10.15 or newer
    |             `- note: add 'if #available' version check
 81 |                 Group {
 82 |                     switch container.glassStyle {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:81:17: error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 79 |         .background(
 80 |             ZStack {
 81 |                 Group {
    |                 |- error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
 82 |                     switch container.glassStyle {
 83 |                     case .none:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:81:17: error: 'Group' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 79 |         .background(
 80 |             ZStack {
 81 |                 Group {
    |                 |- error: 'Group' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
 82 |                     switch container.glassStyle {
 83 |                     case .none:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:81:17: error: 'init(content:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 79 |         .background(
 80 |             ZStack {
 81 |                 Group {
    |                 |- error: 'init(content:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
 82 |                     switch container.glassStyle {
 83 |                     case .none:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:84:25: error: 'RoundedRectangle' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 82 |                     switch container.glassStyle {
 83 |                     case .none:
 84 |                         RoundedRectangle(cornerRadius: container.cornerRadius)
    |                         |- error: 'RoundedRectangle' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
 85 |                             .fill(container.background)
 86 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:85:30: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 83 |                     case .none:
 84 |                         RoundedRectangle(cornerRadius: container.cornerRadius)
 85 |                             .fill(container.background)
    |                              |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
    |                              `- note: add 'if #available' version check
 86 |
 87 |                     case .ultraThin:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:84:25: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 82 |                     switch container.glassStyle {
 83 |                     case .none:
 84 |                         RoundedRectangle(cornerRadius: container.cornerRadius)
    |                         |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
 85 |                             .fill(container.background)
 86 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:88:25: error: 'RoundedRectangle' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 86 |
 87 |                     case .ultraThin:
 88 |                         RoundedRectangle(cornerRadius: container.cornerRadius)
    |                         |- error: 'RoundedRectangle' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
 89 |                             .fill(container.background)
 90 |                             .overlay(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:89:30: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 87 |                     case .ultraThin:
 88 |                         RoundedRectangle(cornerRadius: container.cornerRadius)
 89 |                             .fill(container.background)
    |                              |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
    |                              `- note: add 'if #available' version check
 90 |                             .overlay(
 91 |                                 RoundedRectangle(cornerRadius: container.cornerRadius)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:90:30: error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 88 |                         RoundedRectangle(cornerRadius: container.cornerRadius)
 89 |                             .fill(container.background)
 90 |                             .overlay(
    |                              |- error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
    |                              `- note: add 'if #available' version check
 91 |                                 RoundedRectangle(cornerRadius: container.cornerRadius)
 92 |                                     .fill(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:91:33: error: 'RoundedRectangle' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 89 |                             .fill(container.background)
 90 |                             .overlay(
 91 |                                 RoundedRectangle(cornerRadius: container.cornerRadius)
    |                                 |- error: 'RoundedRectangle' is only available in macOS 10.15 or newer
    |                                 `- note: add 'if #available' version check
 92 |                                     .fill(
 93 |                                         LinearGradient(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:92:38: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 90 |                             .overlay(
 91 |                                 RoundedRectangle(cornerRadius: container.cornerRadius)
 92 |                                     .fill(
    |                                      |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
    |                                      `- note: add 'if #available' version check
 93 |                                         LinearGradient(
 94 |                                             colors: container.glassColors ?? [
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:93:41: error: 'LinearGradient' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 91 |                                 RoundedRectangle(cornerRadius: container.cornerRadius)
 92 |                                     .fill(
 93 |                                         LinearGradient(
    |                                         |- error: 'LinearGradient' is only available in macOS 10.15 or newer
    |                                         `- note: add 'if #available' version check
 94 |                                             colors: container.glassColors ?? [
 95 |                                                 Color.white.opacity(0.25),
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:95:49: error: 'Color' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 93 |                                         LinearGradient(
 94 |                                             colors: container.glassColors ?? [
 95 |                                                 Color.white.opacity(0.25),
    |                                                 |- error: 'Color' is only available in macOS 10.15 or newer
    |                                                 `- note: add 'if #available' version check
 96 |                                                 Color.white.opacity(0.05)
 97 |                                             ],
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:95:55: error: 'white' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 93 |                                         LinearGradient(
 94 |                                             colors: container.glassColors ?? [
 95 |                                                 Color.white.opacity(0.25),
    |                                                       |- error: 'white' is only available in macOS 10.15 or newer
    |                                                       `- note: add 'if #available' version check
 96 |                                                 Color.white.opacity(0.05)
 97 |                                             ],
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:95:61: error: 'opacity' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 93 |                                         LinearGradient(
 94 |                                             colors: container.glassColors ?? [
 95 |                                                 Color.white.opacity(0.25),
    |                                                             |- error: 'opacity' is only available in macOS 10.15 or newer
    |                                                             `- note: add 'if #available' version check
 96 |                                                 Color.white.opacity(0.05)
 97 |                                             ],
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:96:49: error: 'Color' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 94 |                                             colors: container.glassColors ?? [
 95 |                                                 Color.white.opacity(0.25),
 96 |                                                 Color.white.opacity(0.05)
    |                                                 |- error: 'Color' is only available in macOS 10.15 or newer
    |                                                 `- note: add 'if #available' version check
 97 |                                             ],
 98 |                                             startPoint: .topLeading,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:96:55: error: 'white' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 94 |                                             colors: container.glassColors ?? [
 95 |                                                 Color.white.opacity(0.25),
 96 |                                                 Color.white.opacity(0.05)
    |                                                       |- error: 'white' is only available in macOS 10.15 or newer
    |                                                       `- note: add 'if #available' version check
 97 |                                             ],
 98 |                                             startPoint: .topLeading,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:96:61: error: 'opacity' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 94 |                                             colors: container.glassColors ?? [
 95 |                                                 Color.white.opacity(0.25),
 96 |                                                 Color.white.opacity(0.05)
    |                                                             |- error: 'opacity' is only available in macOS 10.15 or newer
    |                                                             `- note: add 'if #available' version check
 97 |                                             ],
 98 |                                             startPoint: .topLeading,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:88:25: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 86 |
 87 |                     case .ultraThin:
 88 |                         RoundedRectangle(cornerRadius: container.cornerRadius)
    |                         |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
 89 |                             .fill(container.background)
 90 |                             .overlay(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:81:23: error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 79 |         .background(
 80 |             ZStack {
 81 |                 Group {
    |                       |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
    |                       `- note: add 'if #available' version check
 82 |                     switch container.glassStyle {
 83 |                     case .none:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:108:26: error: 'resizable(capInsets:resizingMode:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
106 |                 if let image = container.backgroundImage {
107 |                     image
108 |                         .resizable()
    |                          |- error: 'resizable(capInsets:resizingMode:)' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
109 |                         .scaledToFill()
110 |                         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:109:26: error: 'scaledToFill()' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
107 |                     image
108 |                         .resizable()
109 |                         .scaledToFill()
    |                          |- error: 'scaledToFill()' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
110 |                         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
111 |                         .opacity(0.9)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:110:26: error: 'clipShape(_:style:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
108 |                         .resizable()
109 |                         .scaledToFill()
110 |                         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
    |                          |- error: 'clipShape(_:style:)' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
111 |                         .opacity(0.9)
112 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:110:36: error: 'RoundedRectangle' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
108 |                         .resizable()
109 |                         .scaledToFill()
110 |                         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
    |                                    |- error: 'RoundedRectangle' is only available in macOS 10.15 or newer
    |                                    `- note: add 'if #available' version check
111 |                         .opacity(0.9)
112 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:111:26: error: 'opacity' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
109 |                         .scaledToFill()
110 |                         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
111 |                         .opacity(0.9)
    |                          |- error: 'opacity' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
112 |                 }
113 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:106:58: error: 'buildIf' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
104 |                 }
105 |
106 |                 if let image = container.backgroundImage {
    |                                                          |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                                                          `- note: add 'if #available' version check
107 |                     image
108 |                         .resizable()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:112:17: error: 'buildIf' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
110 |                         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
111 |                         .opacity(0.9)
112 |                 }
    |                 |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
113 |             }
114 |         )
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:80:20: error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 78 |         }
 79 |         .background(
 80 |             ZStack {
    |                    |- error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
    |                    `- note: add 'if #available' version check
 81 |                 Group {
 82 |                     switch container.glassStyle {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:80:20: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
 78 |         }
 79 |         .background(
 80 |             ZStack {
    |                    |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
    |                    `- note: add 'if #available' version check
 81 |                 Group {
 82 |                     switch container.glassStyle {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:115:10: error: 'clipShape(_:style:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
113 |             }
114 |         )
115 |         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
    |          |- error: 'clipShape(_:style:)' is only available in macOS 10.15 or newer
    |          `- note: add 'if #available' version check
116 |         .shadow(
117 |             color: container.shadow?.color ?? .clear,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:115:20: error: 'RoundedRectangle' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
113 |             }
114 |         )
115 |         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
    |                    |- error: 'RoundedRectangle' is only available in macOS 10.15 or newer
    |                    `- note: add 'if #available' version check
116 |         .shadow(
117 |             color: container.shadow?.color ?? .clear,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:116:10: error: 'shadow(color:radius:x:y:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
114 |         )
115 |         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
116 |         .shadow(
    |          |- error: 'shadow(color:radius:x:y:)' is only available in macOS 10.15 or newer
    |          `- note: add 'if #available' version check
117 |             color: container.shadow?.color ?? .clear,
118 |             radius: container.shadow?.radius ?? 0,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:117:48: error: 'clear' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
115 |         .clipShape(RoundedRectangle(cornerRadius: container.cornerRadius))
116 |         .shadow(
117 |             color: container.shadow?.color ?? .clear,
    |                                                |- error: 'clear' is only available in macOS 10.15 or newer
    |                                                `- note: add 'if #available' version check
118 |             radius: container.shadow?.radius ?? 0,
119 |             x: container.shadow?.x ?? 0,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:122:10: error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
120 |             y: container.shadow?.y ?? 0
121 |         )
122 |         .overlay(
    |          |- error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
    |          `- note: add 'if #available' version check
123 |             RoundedRectangle(cornerRadius: container.cornerRadius)
124 |                 .stroke(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:123:13: error: 'RoundedRectangle' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
121 |         )
122 |         .overlay(
123 |             RoundedRectangle(cornerRadius: container.cornerRadius)
    |             |- error: 'RoundedRectangle' is only available in macOS 10.15 or newer
    |             `- note: add 'if #available' version check
124 |                 .stroke(
125 |                     container.borderColor ?? .clear,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:124:18: error: 'stroke(_:lineWidth:antialiased:)' is only available in macOS 14.0 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
122 |         .overlay(
123 |             RoundedRectangle(cornerRadius: container.cornerRadius)
124 |                 .stroke(
    |                  |- error: 'stroke(_:lineWidth:antialiased:)' is only available in macOS 14.0 or newer
    |                  `- note: add 'if #available' version check
125 |                     container.borderColor ?? .clear,
126 |                     lineWidth: container.borderWidth
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:125:47: error: 'clear' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
123 |             RoundedRectangle(cornerRadius: container.cornerRadius)
124 |                 .stroke(
125 |                     container.borderColor ?? .clear,
    |                                               |- error: 'clear' is only available in macOS 10.15 or newer
    |                                               `- note: add 'if #available' version check
126 |                     lineWidth: container.borderWidth
127 |                 )
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:129:10: error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
127 |                 )
128 |         )
129 |         .overlay(alignment: .top) {
    |          |- error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
    |          `- note: add 'if #available' version check
130 |             if let divider = topDivider {
131 |                 dividerView(divider)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:129:30: error: 'top' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
127 |                 )
128 |         )
129 |         .overlay(alignment: .top) {
    |                              |- error: 'top' is only available in macOS 10.15 or newer
    |                              `- note: add 'if #available' version check
130 |             if let divider = topDivider {
131 |                 dividerView(divider)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:130:41: error: 'buildIf' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
128 |         )
129 |         .overlay(alignment: .top) {
130 |             if let divider = topDivider {
    |                                         |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                                         `- note: add 'if #available' version check
131 |                 dividerView(divider)
132 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:132:13: error: 'buildIf' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
130 |             if let divider = topDivider {
131 |                 dividerView(divider)
132 |             }
    |             |- error: 'buildIf' is only available in macOS 10.15 or newer
    |             `- note: add 'if #available' version check
133 |         }
134 |         .overlay(alignment: .bottom) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:129:35: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
127 |                 )
128 |         )
129 |         .overlay(alignment: .top) {
    |                                   |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
    |                                   `- note: add 'if #available' version check
130 |             if let divider = topDivider {
131 |                 dividerView(divider)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:134:10: error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
132 |             }
133 |         }
134 |         .overlay(alignment: .bottom) {
    |          |- error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
    |          `- note: add 'if #available' version check
135 |             if let divider = bottomDivider {
136 |                 dividerView(divider)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:134:30: error: 'bottom' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
132 |             }
133 |         }
134 |         .overlay(alignment: .bottom) {
    |                              |- error: 'bottom' is only available in macOS 10.15 or newer
    |                              `- note: add 'if #available' version check
135 |             if let divider = bottomDivider {
136 |                 dividerView(divider)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:135:44: error: 'buildIf' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
133 |         }
134 |         .overlay(alignment: .bottom) {
135 |             if let divider = bottomDivider {
    |                                            |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                                            `- note: add 'if #available' version check
136 |                 dividerView(divider)
137 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:137:13: error: 'buildIf' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
135 |             if let divider = bottomDivider {
136 |                 dividerView(divider)
137 |             }
    |             |- error: 'buildIf' is only available in macOS 10.15 or newer
    |             `- note: add 'if #available' version check
138 |         }
139 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:134:38: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
  9 |
 10 | /// A customizable progress component supporting linear and circular styles.
 11 | public struct SolidProgress: View {
    |               `- note: add '@available' attribute to enclosing struct
 12 |
 13 |     // MARK: - Input Properties (core data)
    :
 72 |
 73 |     // MARK: - Body
 74 |     public var body: some View {
    |                `- note: add '@available' attribute to enclosing property
 75 |
 76 |         VStack(spacing: 0) {
    :
132 |             }
133 |         }
134 |         .overlay(alignment: .bottom) {
    |                                      |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
    |                                      `- note: add 'if #available' version check
135 |             if let divider = bottomDivider {
136 |                 dividerView(divider)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:147:9: error: 'Group' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    |         `- note: add '@available' attribute to enclosing property
147 |         Group {
    |         |- error: 'Group' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
148 |             if orientation == .horizontal {
149 |                 horizontalLayout
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:147:9: error: 'init(content:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    |         `- note: add '@available' attribute to enclosing property
147 |         Group {
    |         |- error: 'init(content:)' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
148 |             if orientation == .horizontal {
149 |                 horizontalLayout
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:148:43: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    |         `- note: add '@available' attribute to enclosing property
147 |         Group {
148 |             if orientation == .horizontal {
    |                                           |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                                           `- note: add 'if #available' version check
149 |                 horizontalLayout
150 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:150:20: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    |         `- note: add '@available' attribute to enclosing property
147 |         Group {
148 |             if orientation == .horizontal {
149 |                 horizontalLayout
150 |             } else {
    |                    |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                    `- note: add 'if #available' version check
151 |                 verticalLayout
152 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:147:15: error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    |         `- note: add '@available' attribute to enclosing property
147 |         Group {
    |               |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
    |               `- note: add 'if #available' version check
148 |             if orientation == .horizontal {
149 |                 horizontalLayout
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:154:10: error: 'padding' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    |         `- note: add '@available' attribute to enclosing property
147 |         Group {
148 |             if orientation == .horizontal {
    :
152 |             }
153 |         }
154 |         .padding(progressStyle.padding)
    |          |- error: 'padding' is only available in macOS 10.15 or newer
    |          `- note: add 'if #available' version check
155 |         .animation(animation, value: progress.value)
156 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:155:10: error: 'animation(_:value:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    |         `- note: add '@available' attribute to enclosing property
147 |         Group {
148 |             if orientation == .horizontal {
    :
153 |         }
154 |         .padding(progressStyle.padding)
155 |         .animation(animation, value: progress.value)
    |          |- error: 'animation(_:value:)' is only available in macOS 10.15 or newer
    |          `- note: add 'if #available' version check
156 |     }
157 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:159:9: error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
    |         |- error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
160 |             switch valueConfig.position {
161 |             case .leading:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:159:9: error: 'Group' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
    |         |- error: 'Group' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
160 |             switch valueConfig.position {
161 |             case .leading:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:159:9: error: 'init(content:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
    |         |- error: 'init(content:)' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
160 |             switch valueConfig.position {
161 |             case .leading:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:162:17: error: 'HStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
161 |             case .leading:
162 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'HStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
163 |                     valueView
164 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:162:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
161 |             case .leading:
162 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
163 |                     valueView
164 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:162:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
161 |             case .leading:
162 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
163 |                     valueView
164 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:162:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
161 |             case .leading:
162 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
163 |                     valueView
164 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:167:17: error: 'HStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
165 |                 }
166 |             case .trailing:
167 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'HStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
168 |                     progressView
169 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:167:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
165 |                 }
166 |             case .trailing:
167 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
168 |                     progressView
169 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:167:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
165 |                 }
166 |             case .trailing:
167 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
168 |                     progressView
169 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:167:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
165 |                 }
166 |             case .trailing:
167 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
168 |                     progressView
169 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:172:17: error: 'VStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
170 |                 }
171 |             case .top:
172 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'VStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
173 |                     valueView
174 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:172:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
170 |                 }
171 |             case .top:
172 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
173 |                     valueView
174 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:172:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
170 |                 }
171 |             case .top:
172 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
173 |                     valueView
174 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:172:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
170 |                 }
171 |             case .top:
172 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
173 |                     valueView
174 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:177:17: error: 'VStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
175 |                 }
176 |             case .bottom:
177 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'VStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
178 |                     progressView
179 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:177:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
175 |                 }
176 |             case .bottom:
177 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
178 |                     progressView
179 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:177:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
175 |                 }
176 |             case .bottom:
177 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
178 |                     progressView
179 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:177:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
175 |                 }
176 |             case .bottom:
177 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
178 |                     progressView
179 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:182:17: error: 'ZStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
180 |                 }
181 |             case .overlayLeading:
182 |                 ZStack(alignment: .leading) {
    |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
183 |                     progressView
184 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:182:36: error: 'leading' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
180 |                 }
181 |             case .overlayLeading:
182 |                 ZStack(alignment: .leading) {
    |                                    |- error: 'leading' is only available in macOS 10.15 or newer
    |                                    `- note: add 'if #available' version check
183 |                     progressView
184 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:182:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
180 |                 }
181 |             case .overlayLeading:
182 |                 ZStack(alignment: .leading) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
183 |                     progressView
184 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:182:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
180 |                 }
181 |             case .overlayLeading:
182 |                 ZStack(alignment: .leading) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
183 |                     progressView
184 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:182:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
180 |                 }
181 |             case .overlayLeading:
182 |                 ZStack(alignment: .leading) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
183 |                     progressView
184 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:187:17: error: 'ZStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
185 |                 }
186 |             case .overlayTrailing:
187 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
188 |                     progressView
189 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:187:36: error: 'trailing' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
185 |                 }
186 |             case .overlayTrailing:
187 |                 ZStack(alignment: .trailing) {
    |                                    |- error: 'trailing' is only available in macOS 10.15 or newer
    |                                    `- note: add 'if #available' version check
188 |                     progressView
189 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:187:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
185 |                 }
186 |             case .overlayTrailing:
187 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
188 |                     progressView
189 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:187:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
185 |                 }
186 |             case .overlayTrailing:
187 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
188 |                     progressView
189 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:187:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
185 |                 }
186 |             case .overlayTrailing:
187 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
188 |                     progressView
189 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:192:17: error: 'ZStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
190 |                 }
191 |             case .overlayCenter:
192 |                 ZStack {
    |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
193 |                     progressView
194 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:192:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
190 |                 }
191 |             case .overlayCenter:
192 |                 ZStack {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
193 |                     progressView
194 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:192:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
160 |             switch valueConfig.position {
    :
190 |                 }
191 |             case .overlayCenter:
192 |                 ZStack {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
193 |                     progressView
194 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:159:15: error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
156 |     }
157 |
158 |     var horizontalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
159 |         Group {
    |               |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
    |               `- note: add 'if #available' version check
160 |             switch valueConfig.position {
161 |             case .leading:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:201:9: error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
    |         |- error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
202 |             switch valueConfig.position {
203 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:201:9: error: 'Group' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
    |         |- error: 'Group' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
202 |             switch valueConfig.position {
203 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:201:9: error: 'init(content:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
    |         |- error: 'init(content:)' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
202 |             switch valueConfig.position {
203 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:205:17: error: 'VStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
203 |
204 |             case .top:
205 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'VStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
206 |                     valueView
207 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:205:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
203 |
204 |             case .top:
205 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
206 |                     valueView
207 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:205:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
203 |
204 |             case .top:
205 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
206 |                     valueView
207 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:205:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
203 |
204 |             case .top:
205 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
206 |                     valueView
207 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:211:17: error: 'VStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
209 |
210 |             case .bottom:
211 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'VStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
212 |                     progressView
213 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:211:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
209 |
210 |             case .bottom:
211 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
212 |                     progressView
213 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:211:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
209 |
210 |             case .bottom:
211 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
212 |                     progressView
213 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:211:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
209 |
210 |             case .bottom:
211 |                 VStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
212 |                     progressView
213 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:217:17: error: 'HStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
215 |
216 |             case .leading: // LEFT of vertical bar
217 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'HStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
218 |                     valueView
219 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:220:26: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
218 |                     valueView
219 |                     progressView
220 |                         .frame(width: progressStyle.trackHeight)
    |                          |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
221 |                 }
222 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:217:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
215 |
216 |             case .leading: // LEFT of vertical bar
217 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
218 |                     valueView
219 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:217:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
215 |
216 |             case .leading: // LEFT of vertical bar
217 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
218 |                     valueView
219 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:217:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
215 |
216 |             case .leading: // LEFT of vertical bar
217 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
218 |                     valueView
219 |                     progressView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:224:17: error: 'HStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
222 |
223 |             case .trailing: // RIGHT of vertical bar
224 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'HStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
225 |                     progressView
226 |                         .frame(width: progressStyle.trackHeight)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:226:26: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
224 |                 HStack(spacing: contentSpacing) {
225 |                     progressView
226 |                         .frame(width: progressStyle.trackHeight)
    |                          |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
    |                          `- note: add 'if #available' version check
227 |                     valueView
228 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:224:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
222 |
223 |             case .trailing: // RIGHT of vertical bar
224 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
225 |                     progressView
226 |                         .frame(width: progressStyle.trackHeight)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:224:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
222 |
223 |             case .trailing: // RIGHT of vertical bar
224 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
225 |                     progressView
226 |                         .frame(width: progressStyle.trackHeight)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:224:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
222 |
223 |             case .trailing: // RIGHT of vertical bar
224 |                 HStack(spacing: contentSpacing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
225 |                     progressView
226 |                         .frame(width: progressStyle.trackHeight)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:231:17: error: 'ZStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
229 |
230 |             case .overlayLeading:
231 |                 ZStack(alignment: .leading) {
    |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
232 |                     progressView
233 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:231:36: error: 'leading' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
229 |
230 |             case .overlayLeading:
231 |                 ZStack(alignment: .leading) {
    |                                    |- error: 'leading' is only available in macOS 10.15 or newer
    |                                    `- note: add 'if #available' version check
232 |                     progressView
233 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:231:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
229 |
230 |             case .overlayLeading:
231 |                 ZStack(alignment: .leading) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
232 |                     progressView
233 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:231:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
229 |
230 |             case .overlayLeading:
231 |                 ZStack(alignment: .leading) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
232 |                     progressView
233 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:231:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
229 |
230 |             case .overlayLeading:
231 |                 ZStack(alignment: .leading) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
232 |                     progressView
233 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:237:17: error: 'ZStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
235 |
236 |             case .overlayTrailing:
237 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
238 |                     progressView
239 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:237:36: error: 'trailing' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
235 |
236 |             case .overlayTrailing:
237 |                 ZStack(alignment: .trailing) {
    |                                    |- error: 'trailing' is only available in macOS 10.15 or newer
    |                                    `- note: add 'if #available' version check
238 |                     progressView
239 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:237:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
235 |
236 |             case .overlayTrailing:
237 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
238 |                     progressView
239 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:237:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
235 |
236 |             case .overlayTrailing:
237 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
238 |                     progressView
239 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:237:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
235 |
236 |             case .overlayTrailing:
237 |                 ZStack(alignment: .trailing) {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
238 |                     progressView
239 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:243:17: error: 'ZStack' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
241 |
242 |             case .overlayCenter:
243 |                 ZStack {
    |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
244 |                     progressView
245 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:243:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
241 |
242 |             case .overlayCenter:
243 |                 ZStack {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
244 |                     progressView
245 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:243:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
202 |             switch valueConfig.position {
    :
241 |
242 |             case .overlayCenter:
243 |                 ZStack {
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
244 |                     progressView
245 |                     valueView
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:201:15: error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
198 |     }
199 |
200 |     var verticalLayout: some View {
    |         `- note: add '@available' attribute to enclosing property
201 |         Group {
    |               |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
    |               `- note: add 'if #available' version check
202 |             switch valueConfig.position {
203 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:252:9: error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
249 |     }
250 |
251 |     var valueView: some View {
    |         `- note: add '@available' attribute to enclosing property
252 |         Group {
    |         |- error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
253 |             if valueConfig.style == .capsule {
254 |                 valueCapsule
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:252:9: error: 'Group' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
249 |     }
250 |
251 |     var valueView: some View {
    |         `- note: add '@available' attribute to enclosing property
252 |         Group {
    |         |- error: 'Group' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
253 |             if valueConfig.style == .capsule {
254 |                 valueCapsule
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:252:9: error: 'init(content:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
249 |     }
250 |
251 |     var valueView: some View {
    |         `- note: add '@available' attribute to enclosing property
252 |         Group {
    |         |- error: 'init(content:)' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
253 |             if valueConfig.style == .capsule {
254 |                 valueCapsule
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:253:46: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
249 |     }
250 |
251 |     var valueView: some View {
    |         `- note: add '@available' attribute to enclosing property
252 |         Group {
253 |             if valueConfig.style == .capsule {
    |                                              |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                                              `- note: add 'if #available' version check
254 |                 valueCapsule
255 |             } else {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:255:20: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
249 |     }
250 |
251 |     var valueView: some View {
    |         `- note: add '@available' attribute to enclosing property
252 |         Group {
253 |             if valueConfig.style == .capsule {
254 |                 valueCapsule
255 |             } else {
    |                    |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                    `- note: add 'if #available' version check
256 |                 valueText
257 |             }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:252:15: error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
249 |     }
250 |
251 |     var valueView: some View {
    |         `- note: add '@available' attribute to enclosing property
252 |         Group {
    |               |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
    |               `- note: add 'if #available' version check
253 |             if valueConfig.style == .capsule {
254 |                 valueCapsule
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:262:9: error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
    |         |- error: conformance of 'Group<Content>' to 'View' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
263 |             switch progressStyle.type {
264 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:262:9: error: 'Group' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
    |         |- error: 'Group' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
263 |             switch progressStyle.type {
264 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:262:9: error: 'init(content:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
    |         |- error: 'init(content:)' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
263 |             switch progressStyle.type {
264 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:273:18: error: 'rotationEffect(_:anchor:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
271 |                     shadow: progressStyle.trackShadow
272 |                 )
273 |                 .rotationEffect(orientation == .vertical ? .degrees(-90) : .degrees(0))
    |                  |- error: 'rotationEffect(_:anchor:)' is only available in macOS 10.15 or newer
    |                  `- note: add 'if #available' version check
274 |                 .frame(
275 |                     maxWidth: orientation == .horizontal ? .infinity : nil
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:274:18: error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
272 |                 )
273 |                 .rotationEffect(orientation == .vertical ? .degrees(-90) : .degrees(0))
274 |                 .frame(
    |                  |- error: 'frame(minWidth:idealWidth:maxWidth:minHeight:idealHeight:maxHeight:alignment:)' is only available in macOS 10.15 or newer
    |                  `- note: add 'if #available' version check
275 |                     maxWidth: orientation == .horizontal ? .infinity : nil
276 |                 )
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:277:18: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
275 |                     maxWidth: orientation == .horizontal ? .infinity : nil
276 |                 )
277 |                 .frame(
    |                  |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
    |                  `- note: add 'if #available' version check
278 |                     width: orientation == .vertical ? customSettings.progressContainerHeight : nil,
279 |                     height: orientation == .vertical
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:266:17: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
264 |
265 |             case .linear:
266 |                 SolidProgressTrack(
    |                 |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
267 |                     progress: progress.value,
268 |                     height: progressStyle.trackHeight,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:285:17: error: 'ProgressView' is only available in macOS 11.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
283 |
284 |             case .circular:
285 |                 ProgressView(value: progress.value)
    |                 |- error: 'ProgressView' is only available in macOS 11.0 or newer
    |                 `- note: add 'if #available' version check
286 |                     .progressViewStyle(.circular)
287 |                     .tint(progressStyle.tint)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:285:17: error: 'init(value:total:)' is only available in macOS 11.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
283 |
284 |             case .circular:
285 |                 ProgressView(value: progress.value)
    |                 |- error: 'init(value:total:)' is only available in macOS 11.0 or newer
    |                 `- note: add 'if #available' version check
286 |                     .progressViewStyle(.circular)
287 |                     .tint(progressStyle.tint)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:286:22: error: 'progressViewStyle' is only available in macOS 11.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
284 |             case .circular:
285 |                 ProgressView(value: progress.value)
286 |                     .progressViewStyle(.circular)
    |                      |- error: 'progressViewStyle' is only available in macOS 11.0 or newer
    |                      `- note: add 'if #available' version check
287 |                     .tint(progressStyle.tint)
288 |                     .frame(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:286:41: error: 'circular' is only available in macOS 11.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
284 |             case .circular:
285 |                 ProgressView(value: progress.value)
286 |                     .progressViewStyle(.circular)
    |                                         |- error: 'circular' is only available in macOS 11.0 or newer
    |                                         `- note: add 'if #available' version check
287 |                     .tint(progressStyle.tint)
288 |                     .frame(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:287:22: error: 'tint' is only available in macOS 13.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
285 |                 ProgressView(value: progress.value)
286 |                     .progressViewStyle(.circular)
287 |                     .tint(progressStyle.tint)
    |                      |- error: 'tint' is only available in macOS 13.0 or newer
    |                      `- note: add 'if #available' version check
288 |                     .frame(
289 |                         width: circularContainerSize,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:288:22: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
286 |                     .progressViewStyle(.circular)
287 |                     .tint(progressStyle.tint)
288 |                     .frame(
    |                      |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
    |                      `- note: add 'if #available' version check
289 |                         width: circularContainerSize,
290 |                         height: circularContainerSize
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:292:22: error: 'scaleEffect(_:anchor:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
290 |                         height: circularContainerSize
291 |                     )
292 |                     .scaleEffect(circularScale)
    |                      |- error: 'scaleEffect(_:anchor:)' is only available in macOS 10.15 or newer
    |                      `- note: add 'if #available' version check
293 |             }
294 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:285:17: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
263 |             switch progressStyle.type {
    :
283 |
284 |             case .circular:
285 |                 ProgressView(value: progress.value)
    |                 |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
286 |                     .progressViewStyle(.circular)
287 |                     .tint(progressStyle.tint)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:262:15: error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
259 |     }
260 |
261 |     var progressView: some View {
    |         `- note: add '@available' attribute to enclosing property
262 |         Group {
    |               |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
    |               `- note: add 'if #available' version check
263 |             switch progressStyle.type {
264 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:300:14: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
295 |     }
296 |
297 |     var valueText: some View {
    |         `- note: add '@available' attribute to enclosing property
298 |         Text(progress.formatted)
299 |             .font(valueConfig.font)
300 |             .foregroundStyle(valueConfig.color)
    |              |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
301 |     }
302 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:298:9: error: 'Text' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
295 |     }
296 |
297 |     var valueText: some View {
    |         `- note: add '@available' attribute to enclosing property
298 |         Text(progress.formatted)
    |         |- error: 'Text' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
299 |             .font(valueConfig.font)
300 |             .foregroundStyle(valueConfig.color)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:299:14: error: 'font' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
295 |     }
296 |
297 |     var valueText: some View {
    |         `- note: add '@available' attribute to enclosing property
298 |         Text(progress.formatted)
299 |             .font(valueConfig.font)
    |              |- error: 'font' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
300 |             .foregroundStyle(valueConfig.color)
301 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:300:14: error: 'foregroundStyle' is only available in macOS 14.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
295 |     }
296 |
297 |     var valueText: some View {
    |         `- note: add '@available' attribute to enclosing property
298 |         Text(progress.formatted)
299 |             .font(valueConfig.font)
300 |             .foregroundStyle(valueConfig.color)
    |              |- error: 'foregroundStyle' is only available in macOS 14.0 or newer
    |              `- note: add 'if #available' version check
301 |     }
302 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:304:9: error: 'Text' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
    |         |- error: 'Text' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
305 |             .font(font)
306 |             .padding(capsule.padding)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:305:14: error: 'font' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    |              |- error: 'font' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
306 |             .padding(capsule.padding)
307 |             .background(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:306:14: error: 'padding' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
306 |             .padding(capsule.padding)
    |              |- error: 'padding' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
307 |             .background(
308 |                 Capsule()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:307:14: error: 'background(_:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
306 |             .padding(capsule.padding)
307 |             .background(
    |              |- error: 'background(_:alignment:)' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
308 |                 Capsule()
309 |                     .fill(capsule.background)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:308:17: error: 'Capsule' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
306 |             .padding(capsule.padding)
307 |             .background(
308 |                 Capsule()
    |                 |- error: 'Capsule' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
309 |                     .fill(capsule.background)
310 |                     .shadow(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:309:22: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
307 |             .background(
308 |                 Capsule()
309 |                     .fill(capsule.background)
    |                      |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
    |                      `- note: add 'if #available' version check
310 |                     .shadow(
311 |                         color: capsule.shadow?.color ?? .clear,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:310:22: error: 'shadow(color:radius:x:y:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
308 |                 Capsule()
309 |                     .fill(capsule.background)
310 |                     .shadow(
    |                      |- error: 'shadow(color:radius:x:y:)' is only available in macOS 10.15 or newer
    |                      `- note: add 'if #available' version check
311 |                         color: capsule.shadow?.color ?? .clear,
312 |                         radius: capsule.shadow?.radius ?? 0,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:311:58: error: 'clear' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
309 |                     .fill(capsule.background)
310 |                     .shadow(
311 |                         color: capsule.shadow?.color ?? .clear,
    |                                                          |- error: 'clear' is only available in macOS 10.15 or newer
    |                                                          `- note: add 'if #available' version check
312 |                         radius: capsule.shadow?.radius ?? 0,
313 |                         x: capsule.shadow?.x ?? 0,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:316:22: error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
314 |                         y: capsule.shadow?.y ?? 0
315 |                     )
316 |                     .overlay(
    |                      |- error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
    |                      `- note: add 'if #available' version check
317 |                         // Glass effect on top of fill
318 |                         Group {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:318:25: error: 'Group' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
316 |                     .overlay(
317 |                         // Glass effect on top of fill
318 |                         Group {
    |                         |- error: 'Group' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
319 |                             if capsule.glassStyle == .ultraThin {
320 |                                 Capsule()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:318:25: error: 'init(content:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
316 |                     .overlay(
317 |                         // Glass effect on top of fill
318 |                         Group {
    |                         |- error: 'init(content:)' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
319 |                             if capsule.glassStyle == .ultraThin {
320 |                                 Capsule()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:320:33: error: 'Capsule' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
318 |                         Group {
319 |                             if capsule.glassStyle == .ultraThin {
320 |                                 Capsule()
    |                                 |- error: 'Capsule' is only available in macOS 10.15 or newer
    |                                 `- note: add 'if #available' version check
321 |                                     .fill(
322 |                                         LinearGradient(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:321:38: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
319 |                             if capsule.glassStyle == .ultraThin {
320 |                                 Capsule()
321 |                                     .fill(
    |                                      |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
    |                                      `- note: add 'if #available' version check
322 |                                         LinearGradient(
323 |                                             colors: capsule.glassColors ?? [
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:322:41: error: 'LinearGradient' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
320 |                                 Capsule()
321 |                                     .fill(
322 |                                         LinearGradient(
    |                                         |- error: 'LinearGradient' is only available in macOS 10.15 or newer
    |                                         `- note: add 'if #available' version check
323 |                                             colors: capsule.glassColors ?? [
324 |                                                 Color.white.opacity(0.25),
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:324:49: error: 'Color' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
322 |                                         LinearGradient(
323 |                                             colors: capsule.glassColors ?? [
324 |                                                 Color.white.opacity(0.25),
    |                                                 |- error: 'Color' is only available in macOS 10.15 or newer
    |                                                 `- note: add 'if #available' version check
325 |                                                 Color.white.opacity(0.05)
326 |                                             ],
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:324:55: error: 'white' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
322 |                                         LinearGradient(
323 |                                             colors: capsule.glassColors ?? [
324 |                                                 Color.white.opacity(0.25),
    |                                                       |- error: 'white' is only available in macOS 10.15 or newer
    |                                                       `- note: add 'if #available' version check
325 |                                                 Color.white.opacity(0.05)
326 |                                             ],
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:324:61: error: 'opacity' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
322 |                                         LinearGradient(
323 |                                             colors: capsule.glassColors ?? [
324 |                                                 Color.white.opacity(0.25),
    |                                                             |- error: 'opacity' is only available in macOS 10.15 or newer
    |                                                             `- note: add 'if #available' version check
325 |                                                 Color.white.opacity(0.05)
326 |                                             ],
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:325:49: error: 'Color' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
323 |                                             colors: capsule.glassColors ?? [
324 |                                                 Color.white.opacity(0.25),
325 |                                                 Color.white.opacity(0.05)
    |                                                 |- error: 'Color' is only available in macOS 10.15 or newer
    |                                                 `- note: add 'if #available' version check
326 |                                             ],
327 |                                             startPoint: .topLeading,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:325:55: error: 'white' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
323 |                                             colors: capsule.glassColors ?? [
324 |                                                 Color.white.opacity(0.25),
325 |                                                 Color.white.opacity(0.05)
    |                                                       |- error: 'white' is only available in macOS 10.15 or newer
    |                                                       `- note: add 'if #available' version check
326 |                                             ],
327 |                                             startPoint: .topLeading,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:325:61: error: 'opacity' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
323 |                                             colors: capsule.glassColors ?? [
324 |                                                 Color.white.opacity(0.25),
325 |                                                 Color.white.opacity(0.05)
    |                                                             |- error: 'opacity' is only available in macOS 10.15 or newer
    |                                                             `- note: add 'if #available' version check
326 |                                             ],
327 |                                             startPoint: .topLeading,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:319:65: error: 'buildIf' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
317 |                         // Glass effect on top of fill
318 |                         Group {
319 |                             if capsule.glassStyle == .ultraThin {
    |                                                                 |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                                                                 `- note: add 'if #available' version check
320 |                                 Capsule()
321 |                                     .fill(
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:331:29: error: 'buildIf' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
329 |                                         )
330 |                                     )
331 |                             }
    |                             |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                             `- note: add 'if #available' version check
332 |                         }
333 |                     )
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:318:31: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
316 |                     .overlay(
317 |                         // Glass effect on top of fill
318 |                         Group {
    |                               |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
    |                               `- note: add 'if #available' version check
319 |                             if capsule.glassStyle == .ultraThin {
320 |                                 Capsule()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:334:22: error: 'background(_:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
332 |                         }
333 |                     )
334 |                     .background(
    |                      |- error: 'background(_:alignment:)' is only available in macOS 10.15 or newer
    |                      `- note: add 'if #available' version check
335 |                         // Image behind fill, clipped to capsule frame
336 |                         GeometryReader { geo in
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:336:25: error: 'GeometryReader' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
334 |                     .background(
335 |                         // Image behind fill, clipped to capsule frame
336 |                         GeometryReader { geo in
    |                         |- error: 'GeometryReader' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
337 |                             if let image = capsule.backgroundImage {
338 |                                 image
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:336:25: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
334 |                     .background(
335 |                         // Image behind fill, clipped to capsule frame
336 |                         GeometryReader { geo in
    |                         |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
    |                         `- note: add 'if #available' version check
337 |                             if let image = capsule.backgroundImage {
338 |                                 image
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:339:38: error: 'resizable(capInsets:resizingMode:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
337 |                             if let image = capsule.backgroundImage {
338 |                                 image
339 |                                     .resizable()
    |                                      |- error: 'resizable(capInsets:resizingMode:)' is only available in macOS 10.15 or newer
    |                                      `- note: add 'if #available' version check
340 |                                     .scaledToFill()
341 |                                     .frame(width: geo.size.width, height: geo.size.height)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:340:38: error: 'scaledToFill()' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
338 |                                 image
339 |                                     .resizable()
340 |                                     .scaledToFill()
    |                                      |- error: 'scaledToFill()' is only available in macOS 10.15 or newer
    |                                      `- note: add 'if #available' version check
341 |                                     .frame(width: geo.size.width, height: geo.size.height)
342 |                                     .clipShape(Capsule())
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:341:38: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
339 |                                     .resizable()
340 |                                     .scaledToFill()
341 |                                     .frame(width: geo.size.width, height: geo.size.height)
    |                                      |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
    |                                      `- note: add 'if #available' version check
342 |                                     .clipShape(Capsule())
343 |                             }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:342:38: error: 'clipShape(_:style:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
340 |                                     .scaledToFill()
341 |                                     .frame(width: geo.size.width, height: geo.size.height)
342 |                                     .clipShape(Capsule())
    |                                      |- error: 'clipShape(_:style:)' is only available in macOS 10.15 or newer
    |                                      `- note: add 'if #available' version check
343 |                             }
344 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:342:48: error: 'Capsule' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
340 |                                     .scaledToFill()
341 |                                     .frame(width: geo.size.width, height: geo.size.height)
342 |                                     .clipShape(Capsule())
    |                                                |- error: 'Capsule' is only available in macOS 10.15 or newer
    |                                                `- note: add 'if #available' version check
343 |                             }
344 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:337:68: error: 'buildIf' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
335 |                         // Image behind fill, clipped to capsule frame
336 |                         GeometryReader { geo in
337 |                             if let image = capsule.backgroundImage {
    |                                                                    |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                                                                    `- note: add 'if #available' version check
338 |                                 image
339 |                                     .resizable()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:343:29: error: 'buildIf' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
341 |                                     .frame(width: geo.size.width, height: geo.size.height)
342 |                                     .clipShape(Capsule())
343 |                             }
    |                             |- error: 'buildIf' is only available in macOS 10.15 or newer
    |                             `- note: add 'if #available' version check
344 |                         }
345 |                     )
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:336:40: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
334 |                     .background(
335 |                         // Image behind fill, clipped to capsule frame
336 |                         GeometryReader { geo in
    |                                        |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
    |                                        `- note: add 'if #available' version check
337 |                             if let image = capsule.backgroundImage {
338 |                                 image
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:347:14: error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
345 |                     )
346 |             )
347 |             .overlay(
    |              |- error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
348 |                 // Border on top
349 |                 Capsule()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:349:17: error: 'Capsule' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
347 |             .overlay(
348 |                 // Border on top
349 |                 Capsule()
    |                 |- error: 'Capsule' is only available in macOS 10.15 or newer
    |                 `- note: add 'if #available' version check
350 |                     .stroke(
351 |                         capsule.border.color,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:350:22: error: 'stroke(_:lineWidth:antialiased:)' is only available in macOS 14.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
348 |                 // Border on top
349 |                 Capsule()
350 |                     .stroke(
    |                      |- error: 'stroke(_:lineWidth:antialiased:)' is only available in macOS 14.0 or newer
    |                      `- note: add 'if #available' version check
351 |                         capsule.border.color,
352 |                         lineWidth: capsule.border.width
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:355:14: error: 'foregroundStyle' is only available in macOS 12.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
301 |     }
302 |
303 |     var valueCapsule: some View {
    |         `- note: add '@available' attribute to enclosing property
304 |         Text(progress.formatted)
305 |             .font(font)
    :
353 |                     )
354 |             )
355 |             .foregroundStyle(valueConfig.color)
    |              |- error: 'foregroundStyle' is only available in macOS 12.0 or newer
    |              `- note: add 'if #available' version check
356 |     }
357 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:359:9: error: 'Rectangle' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
356 |     }
357 |
358 |     func dividerView(_ divider: SolidProgressDivider) -> some View {
    |          `- note: add '@available' attribute to enclosing instance method
359 |         Rectangle()
    |         |- error: 'Rectangle' is only available in macOS 10.15 or newer
    |         `- note: add 'if #available' version check
360 |             .fill(divider.color)
361 |             .frame(height: divider.height)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:360:14: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
356 |     }
357 |
358 |     func dividerView(_ divider: SolidProgressDivider) -> some View {
    |          `- note: add '@available' attribute to enclosing instance method
359 |         Rectangle()
360 |             .fill(divider.color)
    |              |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
    |              `- note: add 'if #available' version check
361 |             .frame(height: divider.height)
362 |             .padding(divider.padding)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:361:14: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
356 |     }
357 |
358 |     func dividerView(_ divider: SolidProgressDivider) -> some View {
    |          `- note: add '@available' attribute to enclosing instance method
359 |         Rectangle()
360 |             .fill(divider.color)
361 |             .frame(height: divider.height)
    |              |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
362 |             .padding(divider.padding)
363 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:362:14: error: 'padding' is only available in macOS 10.15 or newer
142 | // MARK: - Subcomponents
143 |
144 | extension SolidProgress {
    | `- note: add '@available' attribute to enclosing extension
145 |
146 |     var content: some View {
    :
356 |     }
357 |
358 |     func dividerView(_ divider: SolidProgressDivider) -> some View {
    |          `- note: add '@available' attribute to enclosing instance method
359 |         Rectangle()
360 |             .fill(divider.color)
361 |             .frame(height: divider.height)
362 |             .padding(divider.padding)
    |              |- error: 'padding' is only available in macOS 10.15 or newer
    |              `- note: add 'if #available' version check
363 |     }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:407:30: error: 'caption2' is only available in macOS 11.0 or newer
364 | }
365 |
366 | private extension SolidProgress {
    |         `- note: add '@available' attribute to enclosing extension
367 |     // MARK: - Layout Computations
368 |     var progressContainerHeight: CGFloat {
    :
403 |     }
404 |
405 |     var defaultFont: Font {
    |         `- note: add '@available' attribute to enclosing property
406 |         switch size {
407 |         case .small: return .caption2.monospacedDigit()
    |                              |- error: 'caption2' is only available in macOS 11.0 or newer
    |                              `- note: add 'if #available' version check
408 |         case .medium: return .caption.monospacedDigit()
409 |         case .large: return .callout.monospacedDigit()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:407:39: error: 'monospacedDigit()' is only available in macOS 10.15 or newer
364 | }
365 |
366 | private extension SolidProgress {
    |         `- note: add '@available' attribute to enclosing extension
367 |     // MARK: - Layout Computations
368 |     var progressContainerHeight: CGFloat {
    :
403 |     }
404 |
405 |     var defaultFont: Font {
    |         `- note: add '@available' attribute to enclosing property
406 |         switch size {
407 |         case .small: return .caption2.monospacedDigit()
    |                                       |- error: 'monospacedDigit()' is only available in macOS 10.15 or newer
    |                                       `- note: add 'if #available' version check
408 |         case .medium: return .caption.monospacedDigit()
409 |         case .large: return .callout.monospacedDigit()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:408:31: error: 'caption' is only available in macOS 10.15 or newer
364 | }
365 |
366 | private extension SolidProgress {
    |         `- note: add '@available' attribute to enclosing extension
367 |     // MARK: - Layout Computations
368 |     var progressContainerHeight: CGFloat {
    :
403 |     }
404 |
405 |     var defaultFont: Font {
    |         `- note: add '@available' attribute to enclosing property
406 |         switch size {
407 |         case .small: return .caption2.monospacedDigit()
408 |         case .medium: return .caption.monospacedDigit()
    |                               |- error: 'caption' is only available in macOS 10.15 or newer
    |                               `- note: add 'if #available' version check
409 |         case .large: return .callout.monospacedDigit()
410 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:408:39: error: 'monospacedDigit()' is only available in macOS 10.15 or newer
364 | }
365 |
366 | private extension SolidProgress {
    |         `- note: add '@available' attribute to enclosing extension
367 |     // MARK: - Layout Computations
368 |     var progressContainerHeight: CGFloat {
    :
403 |     }
404 |
405 |     var defaultFont: Font {
    |         `- note: add '@available' attribute to enclosing property
406 |         switch size {
407 |         case .small: return .caption2.monospacedDigit()
408 |         case .medium: return .caption.monospacedDigit()
    |                                       |- error: 'monospacedDigit()' is only available in macOS 10.15 or newer
    |                                       `- note: add 'if #available' version check
409 |         case .large: return .callout.monospacedDigit()
410 |         }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:409:30: error: 'callout' is only available in macOS 10.15 or newer
364 | }
365 |
366 | private extension SolidProgress {
    |         `- note: add '@available' attribute to enclosing extension
367 |     // MARK: - Layout Computations
368 |     var progressContainerHeight: CGFloat {
    :
403 |     }
404 |
405 |     var defaultFont: Font {
    |         `- note: add '@available' attribute to enclosing property
406 |         switch size {
407 |         case .small: return .caption2.monospacedDigit()
408 |         case .medium: return .caption.monospacedDigit()
409 |         case .large: return .callout.monospacedDigit()
    |                              |- error: 'callout' is only available in macOS 10.15 or newer
    |                              `- note: add 'if #available' version check
410 |         }
411 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:409:38: error: 'monospacedDigit()' is only available in macOS 10.15 or newer
364 | }
365 |
366 | private extension SolidProgress {
    |         `- note: add '@available' attribute to enclosing extension
367 |     // MARK: - Layout Computations
368 |     var progressContainerHeight: CGFloat {
    :
403 |     }
404 |
405 |     var defaultFont: Font {
    |         `- note: add '@available' attribute to enclosing property
406 |         switch size {
407 |         case .small: return .caption2.monospacedDigit()
408 |         case .medium: return .caption.monospacedDigit()
409 |         case .large: return .callout.monospacedDigit()
    |                                      |- error: 'monospacedDigit()' is only available in macOS 10.15 or newer
    |                                      `- note: add 'if #available' version check
410 |         }
411 |     }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:563:57: error: type 'ImageResource' has no member 'progressBgImg'
561 |                             capsule: .init(
562 |                                 background: AnyShapeStyle(.clear),
563 |                                 backgroundImage: Image(.progressBgImg),
    |                                                         `- error: type 'ImageResource' has no member 'progressBgImg'
564 |                                 border: .init(color: AnyShapeStyle(Color.blue), width: 1),
565 |                                 glassStyle: .none
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:23:28: error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
21 |     )
22 |
23 |     public var background: AnyShapeStyle
   |                            `- error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
24 |     public var backgroundImage: Image?
25 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:24:33: error: 'Image' is only available in macOS 10.15 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
22 |
23 |     public var background: AnyShapeStyle
24 |     public var backgroundImage: Image?
   |                                 `- error: 'Image' is only available in macOS 10.15 or newer
25 |
26 |     public var border: SolidBorder
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:29:30: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
27 |
28 |     public var glassStyle: SolidProgressGlassStyle
29 |     public var glassColors: [Color]?
   |                              `- error: 'Color' is only available in macOS 10.15 or newer
30 |
31 |     public var padding: EdgeInsets
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:31:25: error: 'EdgeInsets' is only available in macOS 10.15 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
29 |     public var glassColors: [Color]?
30 |
31 |     public var padding: EdgeInsets
   |                         `- error: 'EdgeInsets' is only available in macOS 10.15 or newer
32 |
33 |     public var shadow: SolidShadow?
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:36:21: error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
33 |     public var shadow: SolidShadow?
34 |
35 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
36 |         background: AnyShapeStyle = AnyShapeStyle(.secondary.opacity(0.15)),
   |                     `- error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
37 |         backgroundImage: Image? = nil,
38 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:37:26: error: 'Image' is only available in macOS 10.15 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
33 |     public var shadow: SolidShadow?
34 |
35 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
36 |         background: AnyShapeStyle = AnyShapeStyle(.secondary.opacity(0.15)),
37 |         backgroundImage: Image? = nil,
   |                          `- error: 'Image' is only available in macOS 10.15 or newer
38 |
39 |         border: SolidBorder = .init(),
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:42:23: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
33 |     public var shadow: SolidShadow?
34 |
35 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
36 |         background: AnyShapeStyle = AnyShapeStyle(.secondary.opacity(0.15)),
37 |         backgroundImage: Image? = nil,
   :
40 |
41 |         glassStyle: SolidProgressGlassStyle = .none,
42 |         glassColors: [Color]? = nil,
   |                       `- error: 'Color' is only available in macOS 10.15 or newer
43 |
44 |         padding: EdgeInsets = SolidProgressCapsuleStyle.defaultPadding,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:44:18: error: 'EdgeInsets' is only available in macOS 10.15 or newer
11 | ///
12 | /// Encapsulates background, border, glass effect, and padding.
13 | public struct SolidProgressCapsuleStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     // MARK: - Defaults
   :
33 |     public var shadow: SolidShadow?
34 |
35 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
36 |         background: AnyShapeStyle = AnyShapeStyle(.secondary.opacity(0.15)),
37 |         backgroundImage: Image? = nil,
   :
42 |         glassColors: [Color]? = nil,
43 |
44 |         padding: EdgeInsets = SolidProgressCapsuleStyle.defaultPadding,
   |                  `- error: 'EdgeInsets' is only available in macOS 10.15 or newer
45 |
46 |         shadow: SolidShadow? = nil
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:15:28: error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
   |                            `- error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
16 |     public var backgroundImage: Image?
17 |     public var cornerRadius: CGFloat
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:16:33: error: 'Image' is only available in macOS 10.15 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
16 |     public var backgroundImage: Image?
   |                                 `- error: 'Image' is only available in macOS 10.15 or newer
17 |     public var cornerRadius: CGFloat
18 |     public var borderColor: Color?
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:18:29: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
16 |     public var backgroundImage: Image?
17 |     public var cornerRadius: CGFloat
18 |     public var borderColor: Color?
   |                             `- error: 'Color' is only available in macOS 10.15 or newer
19 |     public var borderWidth: CGFloat
20 |     public var glassStyle: SolidProgressGlassStyle
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:21:30: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
   :
19 |     public var borderWidth: CGFloat
20 |     public var glassStyle: SolidProgressGlassStyle
21 |     public var glassColors: [Color]?
   |                              `- error: 'Color' is only available in macOS 10.15 or newer
22 |     public var shadow: SolidShadow?
23 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:25:21: error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
   :
22 |     public var shadow: SolidShadow?
23 |
24 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
25 |         background: AnyShapeStyle = AnyShapeStyle(.clear),
   |                     `- error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
26 |         backgroundImage: Image? = nil,
27 |         cornerRadius: CGFloat = 0,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:26:26: error: 'Image' is only available in macOS 10.15 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
   :
22 |     public var shadow: SolidShadow?
23 |
24 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
25 |         background: AnyShapeStyle = AnyShapeStyle(.clear),
26 |         backgroundImage: Image? = nil,
   |                          `- error: 'Image' is only available in macOS 10.15 or newer
27 |         cornerRadius: CGFloat = 0,
28 |         borderColor: Color? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:28:22: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
   :
22 |     public var shadow: SolidShadow?
23 |
24 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
25 |         background: AnyShapeStyle = AnyShapeStyle(.clear),
26 |         backgroundImage: Image? = nil,
27 |         cornerRadius: CGFloat = 0,
28 |         borderColor: Color? = nil,
   |                      `- error: 'Color' is only available in macOS 10.15 or newer
29 |         borderWidth: CGFloat = 0,
30 |         glassStyle: SolidProgressGlassStyle = .none,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:31:23: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Controls background, corner radius, border, and optional glass effects.
13 | public struct SolidProgressContainerStyle {
   |               `- note: add '@available' attribute to enclosing struct
14 |
15 |     public var background: AnyShapeStyle
   :
22 |     public var shadow: SolidShadow?
23 |
24 |     public init(
   |            `- note: add '@available' attribute to enclosing initializer
25 |         background: AnyShapeStyle = AnyShapeStyle(.clear),
26 |         backgroundImage: Image? = nil,
   :
29 |         borderWidth: CGFloat = 0,
30 |         glassStyle: SolidProgressGlassStyle = .none,
31 |         glassColors: [Color]? = nil,
   |                       `- error: 'Color' is only available in macOS 10.15 or newer
32 |         shadow: SolidShadow? = nil
33 |     ) {
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Assets.xcassets
BUILD FAILURE 6.3 macosSpm