Build Information
Failed to build SolidDS, reference 1.2.0 (9f79be), with Swift 6.1 for macOS (SPM) on 30 Mar 2026 19:08:26 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
| `- 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:503:17: error: generic parameter 'V' could not be inferred
501 | }
502 | }
503 | Section("Capsule progress view") {
| `- error: generic parameter 'V' could not be inferred
504 | NavigationLink("Integer") {
505 | SolidProgress(
SwiftUI.Section.init:2:20: note: in call to initializer
1 | generic struct Section {
2 | nonisolated public init<V>(_ titleKey: LocalizedStringKey, @TableRowBuilder<V> content: () -> Content) where Parent == TableHeaderRowContent<V, Text>, Footer == EmptyTableRowContent<V>, V == Content.TableRowValue}
| `- note: in call to initializer
3 |
/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 | ) {
[26/26] Compiling SolidDS SolidProgressContainerStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:34:28: error: 'Animation' 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)
:
32 |
33 | // MARK: - Animation
34 | private let animation: Animation?
| `- error: 'Animation' is only available in macOS 10.15 or newer
35 |
36 | // MARK: - Init
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:53:20: error: 'Animation' 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)
:
35 |
36 | // MARK: - Init
37 | public init(
| `- note: add @available attribute to enclosing initializer
38 | progress: SolidProgressValue,
39 | valueConfig: SolidProgressValueConfiguration = .init(),
:
51 | bottomDivider: SolidProgressDivider? = nil,
52 |
53 | animation: Animation? = .easeInOut(duration: 0.25),
| `- error: 'Animation' is only available in macOS 10.15 or newer
54 | ) {
55 | self.progress = progress
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressValueConfiguration.swift:22:25: error: 'primary' is only available in macOS 10.15 or newer
11 | ///
12 | /// `SolidProgressValueConfiguration` defines how a progress value is positioned, styled, colored, and optionally what font to use when rendering it.
13 | public struct SolidProgressValueConfiguration {
| `- note: add @available attribute to enclosing struct
14 | public let position: SolidProgressValuePosition
15 | public let style: SolidProgressValueStyle
:
17 | public let font: Font?
18 |
19 | public init(
| `- note: add @available attribute to enclosing initializer
20 | position: SolidProgressValuePosition = .trailing,
21 | style: SolidProgressValueStyle = .simple,
22 | color: Color = .primary,
| `- error: 'primary' is only available in macOS 10.15 or newer
23 | font: Font? = nil
24 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:34:31: error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
| `- error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
36 | trackHeight: CGFloat = 4,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:34:31: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
| `- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
36 | trackHeight: CGFloat = 4,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:34:45: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
| `- error: 'Color' is only available in macOS 10.15 or newer
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
36 | trackHeight: CGFloat = 4,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:34:51: error: 'accentColor' is only available in macOS 10.15 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
| `- error: 'accentColor' is only available in macOS 10.15 or newer
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
36 | trackHeight: CGFloat = 4,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:35:37: error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
| `- error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
36 | trackHeight: CGFloat = 4,
37 | trackShadow: SolidShadow? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:35:37: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
| `- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
36 | trackHeight: CGFloat = 4,
37 | trackShadow: SolidShadow? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:35:51: error: 'Color' is only available in macOS 10.15 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
| `- error: 'Color' is only available in macOS 10.15 or newer
36 | trackHeight: CGFloat = 4,
37 | trackShadow: SolidShadow? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:35:57: error: 'secondary' is only available in macOS 10.15 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
| `- error: 'secondary' is only available in macOS 10.15 or newer
36 | trackHeight: CGFloat = 4,
37 | trackShadow: SolidShadow? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:35:67: error: 'opacity' is only available in macOS 10.15 or newer
11 | ///
12 | /// Includes colors, track size, and padding shared across all progress types.
13 | public struct SolidProgressStyle {
| `- note: add @available attribute to enclosing struct
14 |
15 | // MARK: - Defaults
:
30 | public var padding: EdgeInsets
31 |
32 | public init(
| `- note: add @available attribute to enclosing initializer
33 | type: SolidProgressType = .linear,
34 | tint: AnyShapeStyle = AnyShapeStyle(Color.accentColor),
35 | trackColor: AnyShapeStyle = AnyShapeStyle(Color.secondary.opacity(0.2)),
| `- error: 'opacity' is only available in macOS 10.15 or newer
36 | trackHeight: CGFloat = 4,
37 | trackShadow: SolidShadow? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressStyle.swift:17:45: error: 'EdgeInsets' is only available in macOS 10.15 or newer
14 |
15 | // MARK: - Defaults
16 | public enum ProgressDefaults {
| `- note: add @available attribute to enclosing enum
17 | public static let progressPadding = EdgeInsets(
| | `- error: 'EdgeInsets' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing static property
18 | top: 6,
19 | leading: 8,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:25:37: 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:25:37: error: conformance of 'Color' to 'ShapeStyle' 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),
| `- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
26 | backgroundImage: Image? = nil,
27 | cornerRadius: CGFloat = 0,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressContainerStyle.swift:25:52: error: 'clear' 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),
| `- error: 'clear' is only available in macOS 10.15 or newer
26 | backgroundImage: Image? = nil,
27 | cornerRadius: CGFloat = 0,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:36:37: 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:36:52: error: 'secondary' 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: 'secondary' 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:36:62: error: 'opacity' 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: 'opacity' is only available in macOS 12.0 or newer
37 | backgroundImage: Image? = nil,
38 |
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Styles/SolidBorder.swift:16:32: error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
9 |
10 | /// Simple wrapper for SwiftUI border settings
11 | public struct SolidBorder {
| `- note: add @available attribute to enclosing struct
12 | public var color: AnyShapeStyle
13 | public var width: CGFloat
14 |
15 | public init(
| `- note: add @available attribute to enclosing initializer
16 | color: AnyShapeStyle = AnyShapeStyle(Color.accentColor.opacity(0.3)),
| `- error: 'AnyShapeStyle' is only available in macOS 12.0 or newer
17 | width: CGFloat = 1
18 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Styles/SolidBorder.swift:16:32: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
9 |
10 | /// Simple wrapper for SwiftUI border settings
11 | public struct SolidBorder {
| `- note: add @available attribute to enclosing struct
12 | public var color: AnyShapeStyle
13 | public var width: CGFloat
14 |
15 | public init(
| `- note: add @available attribute to enclosing initializer
16 | color: AnyShapeStyle = AnyShapeStyle(Color.accentColor.opacity(0.3)),
| `- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
17 | width: CGFloat = 1
18 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Styles/SolidBorder.swift:16:46: error: 'Color' is only available in macOS 10.15 or newer
9 |
10 | /// Simple wrapper for SwiftUI border settings
11 | public struct SolidBorder {
| `- note: add @available attribute to enclosing struct
12 | public var color: AnyShapeStyle
13 | public var width: CGFloat
14 |
15 | public init(
| `- note: add @available attribute to enclosing initializer
16 | color: AnyShapeStyle = AnyShapeStyle(Color.accentColor.opacity(0.3)),
| `- error: 'Color' is only available in macOS 10.15 or newer
17 | width: CGFloat = 1
18 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Styles/SolidBorder.swift:16:52: error: 'accentColor' is only available in macOS 10.15 or newer
9 |
10 | /// Simple wrapper for SwiftUI border settings
11 | public struct SolidBorder {
| `- note: add @available attribute to enclosing struct
12 | public var color: AnyShapeStyle
13 | public var width: CGFloat
14 |
15 | public init(
| `- note: add @available attribute to enclosing initializer
16 | color: AnyShapeStyle = AnyShapeStyle(Color.accentColor.opacity(0.3)),
| `- error: 'accentColor' is only available in macOS 10.15 or newer
17 | width: CGFloat = 1
18 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Styles/SolidBorder.swift:16:64: error: 'opacity' is only available in macOS 10.15 or newer
9 |
10 | /// Simple wrapper for SwiftUI border settings
11 | public struct SolidBorder {
| `- note: add @available attribute to enclosing struct
12 | public var color: AnyShapeStyle
13 | public var width: CGFloat
14 |
15 | public init(
| `- note: add @available attribute to enclosing initializer
16 | color: AnyShapeStyle = AnyShapeStyle(Color.accentColor.opacity(0.3)),
| `- error: 'opacity' is only available in macOS 10.15 or newer
17 | width: CGFloat = 1
18 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgressCapsuleStyle.swift:16:40: 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
16 | public static let defaultPadding = EdgeInsets(
| | `- error: 'EdgeInsets' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing static property
17 | top: 4,
18 | leading: 8,
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:53:34: error: 'easeInOut(duration:)' 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)
:
35 |
36 | // MARK: - Init
37 | public init(
| `- note: add @available attribute to enclosing initializer
38 | progress: SolidProgressValue,
39 | valueConfig: SolidProgressValueConfiguration = .init(),
:
51 | bottomDivider: SolidProgressDivider? = nil,
52 |
53 | animation: Animation? = .easeInOut(duration: 0.25),
| `- error: 'easeInOut(duration:)' is only available in macOS 10.15 or newer
54 | ) {
55 | self.progress = progress
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:74:27: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
75 |
76 | VStack(spacing: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:146:23: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
147 | Group {
148 | if orientation == .horizontal {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:158:32: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
159 | Group {
160 | switch valueConfig.position {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:200:30: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
201 | Group {
202 | switch valueConfig.position {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:251:25: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
252 | Group {
253 | if valueConfig.style == .capsule {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:261:28: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
262 | Group {
263 | switch progressStyle.type {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:297:25: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
298 | Text(progress.formatted)
299 | .font(valueConfig.font)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:303:28: error: '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 {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
304 | Text(progress.formatted)
305 | .font(font)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:358:63: error: '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 {
:
356 | }
357 |
358 | func dividerView(_ divider: SolidProgressDivider) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing instance method
359 | Rectangle()
360 | .fill(divider.color)
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:401:15: error: 'Font' 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 {
:
399 |
400 | // MARK: - Typography
401 | var font: Font {
| | `- error: 'Font' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
402 | valueConfig.font ?? defaultFont
403 | }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:405:22: error: 'Font' 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 {
| | `- error: 'Font' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing property
406 | switch size {
407 | case .small: return .caption2.monospacedDigit()
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:441:31: error: 'View' is only available in macOS 10.15 or newer
438 |
439 | // MARK: - Previews
440 | struct SolidProgress_Previews: PreviewProvider {
| `- note: add @available attribute to enclosing struct
441 | static var previews: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing static property
442 | NavigationView {
443 | List {
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:76:9: error: 'VStack' 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) {
| |- error: 'VStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
77 | content
78 | }
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:79:10: error: 'background(_: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) {
77 | content
78 | }
79 | .background(
| |- error: 'background(_:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
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: 'buildExpression' is unavailable: this expression does not conform to 'View'
79 | .background(
80 | ZStack {
81 | Group {
| `- error: 'buildExpression' is unavailable: this expression does not conform to 'View'
82 | switch container.glassStyle {
83 | case .none:
SwiftUICore.ViewBuilder.buildExpression:3:22: note: 'buildExpression' has been explicitly marked unavailable here
1 | struct ViewBuilder {
2 | @available(*, unavailable, message: "this expression does not conform to 'View'")
3 | public static func buildExpression(_ invalid: Any) -> some View
| `- note: 'buildExpression' has been explicitly marked unavailable here
4 | }
5 |
/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 11.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) {
:
79 | .background(
80 | ZStack {
81 | Group {
| |- error: 'init(content:)' is only available in macOS 11.0 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: 'buildExpression' is unavailable: this expression does not conform to 'ToolbarContent' or 'CustomizableToolbarContent'
82 | switch container.glassStyle {
83 | case .none:
84 | RoundedRectangle(cornerRadius: container.cornerRadius)
| `- error: 'buildExpression' is unavailable: this expression does not conform to 'ToolbarContent' or 'CustomizableToolbarContent'
85 | .fill(container.background)
86 |
SwiftUI.ToolbarContentBuilder.buildExpression:3:22: note: 'buildExpression' has been explicitly marked unavailable here
1 | struct ToolbarContentBuilder {
2 | @available(*, unavailable, message: "this expression does not conform to 'ToolbarContent' or 'CustomizableToolbarContent'")
3 | public static func buildExpression(_ invalid: Any) -> some CustomizableToolbarContent
| `- note: 'buildExpression' has been explicitly marked unavailable here
4 | }
5 |
/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 13.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) {
:
82 | switch container.glassStyle {
83 | case .none:
84 | RoundedRectangle(cornerRadius: container.cornerRadius)
| |- error: 'buildEither(first:)' is only available in macOS 13.0 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: 'buildExpression' is unavailable: this expression does not conform to 'ToolbarContent' or 'CustomizableToolbarContent'
86 |
87 | case .ultraThin:
88 | RoundedRectangle(cornerRadius: container.cornerRadius)
| `- error: 'buildExpression' is unavailable: this expression does not conform to 'ToolbarContent' or 'CustomizableToolbarContent'
89 | .fill(container.background)
90 | .overlay(
SwiftUI.ToolbarContentBuilder.buildExpression:3:22: note: 'buildExpression' has been explicitly marked unavailable here
1 | struct ToolbarContentBuilder {
2 | @available(*, unavailable, message: "this expression does not conform to 'ToolbarContent' or 'CustomizableToolbarContent'")
3 | public static func buildExpression(_ invalid: Any) -> some CustomizableToolbarContent
| `- note: 'buildExpression' has been explicitly marked unavailable here
4 | }
5 |
/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 13.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) {
:
86 |
87 | case .ultraThin:
88 | RoundedRectangle(cornerRadius: container.cornerRadius)
| |- error: 'buildEither(second:)' is only available in macOS 13.0 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 'CustomizableToolbarContent' is only available in macOS 13.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) {
:
79 | .background(
80 | ZStack {
81 | Group {
| |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'CustomizableToolbarContent' is only available in macOS 13.0 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 '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: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
157 |
158 | var horizontalLayout: some View {
159 | Group {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
160 | switch valueConfig.position {
161 | case .leading:
/Users/admin/builder/spi-builder-workspace/Sources/SolidDS/Components/Progress/SolidProgress.swift:201:9: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
199 |
200 | var verticalLayout: some View {
201 | Group {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
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:503:17: error: generic parameter 'V' could not be inferred
501 | }
502 | }
503 | Section("Capsule progress view") {
| `- error: generic parameter 'V' could not be inferred
504 | NavigationLink("Integer") {
505 | SolidProgress(
SwiftUI.Section.init:2:20: note: in call to initializer
1 | generic struct Section {
2 | nonisolated public init<V>(_ titleKey: LocalizedStringKey, @TableRowBuilder<V> content: () -> Content) where Parent == TableHeaderRowContent<V, Text>, Footer == EmptyTableRowContent<V>, V == Content.TableRowValue}
| `- note: in call to initializer
3 |
/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.1 macosSpm