Build Information
Failed to build LiteSlider, reference 0.1.1 (7f4464), with Swift 6.3 for macOS (SPM) on 1 May 2026 16:43:09 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
14 | // MARK: Callbacks
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:24:22: error: 'Binding' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
22 | /// Creates a `TouchAndDragGesture`.
23 | /// - Parameter isDragging: A binding that will be set to `true` after dragging starts, and `false` when it ends.
24 | init(isDragging: Binding<Bool>) {
| | `- error: 'Binding' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing initializer
25 | _isDragging = isDragging
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:30:20: error: 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
28 | // MARK: Gesture Body
29 |
30 | var body: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
31 | touchGesture.simultaneously(with: dragGesture)
32 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:34:36: error: 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:48:35: error: 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:31:22: error: 'simultaneously(with:)' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
28 | // MARK: Gesture Body
29 |
30 | var body: some Gesture {
| `- note: add '@available' attribute to enclosing property
31 | touchGesture.simultaneously(with: dragGesture)
| |- error: 'simultaneously(with:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:36:13: error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
| |- error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
37 | : DragGesture(minimumDistance: 0)
38 | .onChanged { value in
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:37:15: error: 'DragGesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
| |- error: 'DragGesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
38 | .onChanged { value in
39 | isDragging = true
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:37:15: error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
| |- error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
38 | .onChanged { value in
39 | isDragging = true
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:38:18: error: 'onChanged' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
38 | .onChanged { value in
| |- error: 'onChanged' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
39 | isDragging = true
40 | onStarted?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:39:21: error: setter for 'isDragging' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
38 | .onChanged { value in
39 | isDragging = true
| |- error: setter for 'isDragging' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
40 | onStarted?(value.location)
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:42:18: error: 'onEnded' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
:
40 | onStarted?(value.location)
41 | }
42 | .onEnded { _ in
| |- error: 'onEnded' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
43 | isDragging = false
44 | onEnded?()
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:43:21: error: setter for 'isDragging' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
:
41 | }
42 | .onEnded { _ in
43 | isDragging = false
| |- error: setter for 'isDragging' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
44 | onEnded?()
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:50:13: error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
| |- error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
51 | .onChanged { value in
52 | onChanged?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:50:15: error: 'DragGesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
| |- error: 'DragGesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
51 | .onChanged { value in
52 | onChanged?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:50:15: error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
| |- error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
51 | .onChanged { value in
52 | onChanged?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:51:18: error: 'onChanged' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
51 | .onChanged { value in
| |- error: 'onChanged' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
52 | onChanged?(value.location)
53 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:54:18: error: 'onEnded' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
:
52 | onChanged?(value.location)
53 | }
54 | .onEnded { _ in
| |- error: 'onEnded' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | isDragging = false
56 | onEnded?()
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:55:21: error: setter for 'isDragging' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
:
53 | }
54 | .onEnded { _ in
55 | isDragging = false
| |- error: setter for 'isDragging' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
56 | onEnded?()
57 | }
[15/21] Compiling LiteSlider TouchAndDragGesture.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:7:28: error: 'Alignment' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
| `- error: 'Alignment' is only available in macOS 10.15 or newer
8 | private let content: () -> Content
9 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:18:20: error: 'Alignment' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
14 | /// `.center`.
15 | /// - content: The content view builder.
16 | init(
| `- note: add '@available' attribute to enclosing initializer
17 | size: CGSize,
18 | alignment: Alignment = .center,
| `- error: 'Alignment' is only available in macOS 10.15 or newer
19 | @ViewBuilder content: @escaping () -> Content
20 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:19:10: error: 'ViewBuilder' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
14 | /// `.center`.
15 | /// - content: The content view builder.
16 | init(
| `- note: add '@available' attribute to enclosing initializer
17 | size: CGSize,
18 | alignment: Alignment = .center,
19 | @ViewBuilder content: @escaping () -> Content
| `- error: 'ViewBuilder' is only available in macOS 10.15 or newer
20 | ) {
21 | self.size = size
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:18:33: error: 'center' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
14 | /// `.center`.
15 | /// - content: The content view builder.
16 | init(
| `- note: add '@available' attribute to enclosing initializer
17 | size: CGSize,
18 | alignment: Alignment = .center,
| `- error: 'center' is only available in macOS 10.15 or newer
19 | @ViewBuilder content: @escaping () -> Content
20 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:26:20: error: 'View' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
24 | }
25 |
26 | var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
27 | Rectangle()
28 | .fill(Color.clear)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:5:37: error: 'View' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:27:9: error: 'Rectangle' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
24 | }
25 |
26 | var body: some View {
| `- note: add '@available' attribute to enclosing property
27 | Rectangle()
| |- error: 'Rectangle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
28 | .fill(Color.clear)
29 | .overlay(alignment: alignment) { content() }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:28:14: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
24 | }
25 |
26 | var body: some View {
| `- note: add '@available' attribute to enclosing property
27 | Rectangle()
28 | .fill(Color.clear)
| |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
29 | .overlay(alignment: alignment) { content() }
30 | .frame(width: size?.width, height: size?.height)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:28:19: error: 'Color' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
24 | }
25 |
26 | var body: some View {
| `- note: add '@available' attribute to enclosing property
27 | Rectangle()
28 | .fill(Color.clear)
| |- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
29 | .overlay(alignment: alignment) { content() }
30 | .frame(width: size?.width, height: size?.height)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:28:25: error: 'clear' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
24 | }
25 |
26 | var body: some View {
| `- note: add '@available' attribute to enclosing property
27 | Rectangle()
28 | .fill(Color.clear)
| |- error: 'clear' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
29 | .overlay(alignment: alignment) { content() }
30 | .frame(width: size?.width, height: size?.height)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:29:14: error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
24 | }
25 |
26 | var body: some View {
| `- note: add '@available' attribute to enclosing property
27 | Rectangle()
28 | .fill(Color.clear)
29 | .overlay(alignment: alignment) { content() }
| |- error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
| `- note: add 'if #available' version check
30 | .frame(width: size?.width, height: size?.height)
31 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/FixedFrameContainer.swift:30:14: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
3 | /// A container view that overlays its content on a transparent rectangle,
4 | /// allowing for alignment control and optional fixed size.
5 | struct FixedFrameContainer<Content: View>: View {
| `- note: add '@available' attribute to enclosing generic struct
6 | private let size: CGSize?
7 | private let alignment: Alignment
:
24 | }
25 |
26 | var body: some View {
| `- note: add '@available' attribute to enclosing property
27 | Rectangle()
28 | .fill(Color.clear)
29 | .overlay(alignment: alignment) { content() }
30 | .frame(width: size?.width, height: size?.height)
| |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
31 | }
32 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:12:6: error: 'Binding' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
11 |
12 | @Binding private var isDragging: Bool
| `- error: 'Binding' is only available in macOS 10.15 or newer
13 |
14 | // MARK: Callbacks
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:24:22: error: 'Binding' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
22 | /// Creates a `TouchAndDragGesture`.
23 | /// - Parameter isDragging: A binding that will be set to `true` after dragging starts, and `false` when it ends.
24 | init(isDragging: Binding<Bool>) {
| | `- error: 'Binding' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing initializer
25 | _isDragging = isDragging
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:30:20: error: 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
28 | // MARK: Gesture Body
29 |
30 | var body: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
31 | touchGesture.simultaneously(with: dragGesture)
32 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:34:36: error: 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:48:35: error: 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:31:22: error: 'simultaneously(with:)' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
28 | // MARK: Gesture Body
29 |
30 | var body: some Gesture {
| `- note: add '@available' attribute to enclosing property
31 | touchGesture.simultaneously(with: dragGesture)
| |- error: 'simultaneously(with:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
32 | }
33 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:36:13: error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
| |- error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
37 | : DragGesture(minimumDistance: 0)
38 | .onChanged { value in
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:37:15: error: 'DragGesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
| |- error: 'DragGesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
38 | .onChanged { value in
39 | isDragging = true
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:37:15: error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
| |- error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
38 | .onChanged { value in
39 | isDragging = true
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:38:18: error: 'onChanged' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
38 | .onChanged { value in
| |- error: 'onChanged' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
39 | isDragging = true
40 | onStarted?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:39:21: error: setter for 'isDragging' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
37 | : DragGesture(minimumDistance: 0)
38 | .onChanged { value in
39 | isDragging = true
| |- error: setter for 'isDragging' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
40 | onStarted?(value.location)
41 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:42:18: error: 'onEnded' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
:
40 | onStarted?(value.location)
41 | }
42 | .onEnded { _ in
| |- error: 'onEnded' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
43 | isDragging = false
44 | onEnded?()
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:43:21: error: setter for 'isDragging' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
32 | }
33 |
34 | private var touchGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
35 | isDragging
36 | ? nil
:
41 | }
42 | .onEnded { _ in
43 | isDragging = false
| |- error: setter for 'isDragging' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
44 | onEnded?()
45 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:50:13: error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
| |- error: conformance of 'Optional<Wrapped>' to 'Gesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
51 | .onChanged { value in
52 | onChanged?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:50:15: error: 'DragGesture' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
| |- error: 'DragGesture' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
51 | .onChanged { value in
52 | onChanged?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:50:15: error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
| |- error: 'init(minimumDistance:coordinateSpace:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
51 | .onChanged { value in
52 | onChanged?(value.location)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:51:18: error: 'onChanged' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
51 | .onChanged { value in
| |- error: 'onChanged' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
52 | onChanged?(value.location)
53 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:54:18: error: 'onEnded' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
:
52 | onChanged?(value.location)
53 | }
54 | .onEnded { _ in
| |- error: 'onEnded' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | isDragging = false
56 | onEnded?()
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/InteractionSupport/TouchAndDragGesture.swift:55:21: error: setter for 'isDragging' is only available in macOS 10.15 or newer
6 | /// Unlike a regular `DragGesture`, `TouchAndDragGesture` begins immediately
7 | /// on touch down (no minimum movement), making it useful for sliders or touch-sensitive UIs.
8 | struct TouchAndDragGesture: Gesture {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Bindings
:
46 | }
47 |
48 | private var dragGesture: some Gesture {
| `- note: add '@available' attribute to enclosing property
49 | isDragging
50 | ? DragGesture(minimumDistance: 0)
:
53 | }
54 | .onEnded { _ in
55 | isDragging = false
| |- error: setter for 'isDragging' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
56 | onEnded?()
57 | }
[16/21] Compiling LiteSlider LiteSliderAccessibility.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:16:15: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
12 | /// strings.
13 | /// - Returns: A view with the provided accessibility formatter applied.
14 | public func sliderAccessibilityValueFormatter(
| `- note: add '@available' attribute to enclosing instance method
15 | _ numberFormatter: NumberFormatter
16 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
17 | environment(\.liteSliderAccessibilityValueFormatter, numberFormatter)
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:32:15: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
28 | /// adjustments.
29 | /// - Returns: A view with the provided accessibility step applied.
30 | public func sliderAccessibilityValueStep(
| `- note: add '@available' attribute to enclosing instance method
31 | _ accessibilityValueStep: Double
32 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
33 | environment(\.liteSliderAccessibilityValueStep, accessibilityValueStep)
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:5:11: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:53:11: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
51 | // MARK: - EnvironmentValues
52 |
53 | extension EnvironmentValues {
| | `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
54 |
55 | var liteSliderAccessibilityValueFormatter: NumberFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:17:9: error: 'environment' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
12 | /// strings.
13 | /// - Returns: A view with the provided accessibility formatter applied.
14 | public func sliderAccessibilityValueFormatter(
| `- note: add '@available' attribute to enclosing instance method
15 | _ numberFormatter: NumberFormatter
16 | ) -> some View {
17 | environment(\.liteSliderAccessibilityValueFormatter, numberFormatter)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:33:9: error: 'environment' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
28 | /// adjustments.
29 | /// - Returns: A view with the provided accessibility step applied.
30 | public func sliderAccessibilityValueStep(
| `- note: add '@available' attribute to enclosing instance method
31 | _ accessibilityValueStep: Double
32 | ) -> some View {
33 | environment(\.liteSliderAccessibilityValueStep, accessibilityValueStep)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
34 | }
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:54:23: error: 'Color' is only available in macOS 10.15 or newer
49 | ///
50 | /// Set via `.sliderStroke(_:, lineWidth:)`
51 | public struct LiteSliderStrokeStyle: Sendable, Equatable {
| `- note: add '@available' attribute to enclosing struct
52 |
53 | /// The stroke color.
54 | public let color: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
55 |
56 | /// The width of the stroke line, in points.
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:64:24: error: 'Color' is only available in macOS 10.15 or newer
49 | ///
50 | /// Set via `.sliderStroke(_:, lineWidth:)`
51 | public struct LiteSliderStrokeStyle: Sendable, Equatable {
| `- note: add '@available' attribute to enclosing struct
52 |
53 | /// The stroke color.
:
62 | /// - color: The color of the stroke.
63 | /// - lineWidth: The width of the stroke line.
64 | public init(color: Color, lineWidth: CGFloat) {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing initializer
65 | self.color = color
66 | self.lineWidth = lineWidth
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:136:63: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
134 | ///
135 | /// Default: `300`
136 | public func sliderThickness(_ thickness: CGFloat) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
137 | environment(\.liteSliderThickness, thickness)
138 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:143:57: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
141 | ///
142 | /// Default: `30`
143 | public func sliderRadius(_ radius: CGFloat) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
144 | environment(\.liteSliderRadius, radius)
145 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:152:15: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
148 | ///
149 | /// Default: `.dynamic`
150 | public func sliderLengthBehavior(
| `- note: add '@available' attribute to enclosing instance method
151 | _ behavior: LiteSliderLengthBehavior
152 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
153 | environment(\.liteSliderLengthBehavior, behavior)
154 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:159:43: error: 'Color' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
157 | ///
158 | /// Default: `.secondary`
159 | public func sliderTrackColor(_ color: Color) -> some View {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
160 | environment(\.liteSliderTrackColor, color)
161 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:159:58: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
157 | ///
158 | /// Default: `.secondary`
159 | public func sliderTrackColor(_ color: Color) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
160 | environment(\.liteSliderTrackColor, color)
161 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:166:46: error: 'Color' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
164 | ///
165 | /// Default: `.accentColor`
166 | public func sliderProgressColor(_ color: Color) -> some View {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
167 | environment(\.liteSliderProgressColor, color)
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:166:61: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
164 | ///
165 | /// Default: `.accentColor`
166 | public func sliderProgressColor(_ color: Color) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
167 | environment(\.liteSliderProgressColor, color)
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:173:39: error: 'Color' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
171 | ///
172 | /// Default: `.clear`, `lineWidth: 0`
173 | public func sliderStroke(_ color: Color, lineWidth: CGFloat) -> some View {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
174 | environment(
175 | \.liteSliderStrokeStyle,
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:173:74: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
171 | ///
172 | /// Default: `.clear`, `lineWidth: 0`
173 | public func sliderStroke(_ color: Color, lineWidth: CGFloat) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
174 | environment(
175 | \.liteSliderStrokeStyle,
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:193:15: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
189 | /// )
190 | /// ```
191 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
192 | _ properties: ElasticDragProperties
193 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
194 | environment(\.liteSliderElasticDragProperties, properties)
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:218:15: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
212 | /// Default:
213 | /// `offsetSize: 25`, `compressionFactor: 0.1`, `expansionFactor: 0.2`
214 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
215 | offsetSize: CGFloat,
216 | compressionFactor: CGFloat,
217 | expansionFactor: CGFloat
218 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
219 | environment(
220 | \.liteSliderElasticDragProperties,
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:131:11: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:245:30: error: 'Color' is only available in macOS 10.15 or newer
242 | }
243 |
244 | private struct LiteSliderTrackColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
245 | static let defaultValue: Color = .secondary
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:245:39: error: 'secondary' is only available in macOS 10.15 or newer
242 | }
243 |
244 | private struct LiteSliderTrackColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
245 | static let defaultValue: Color = .secondary
| | `- error: 'secondary' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:249:30: error: 'Color' is only available in macOS 10.15 or newer
246 | }
247 |
248 | private struct LiteSliderProgressColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
249 | static let defaultValue: Color = .accentColor
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
250 | }
251 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:249:39: error: 'accentColor' is only available in macOS 10.15 or newer
246 | }
247 |
248 | private struct LiteSliderProgressColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
249 | static let defaultValue: Color = .accentColor
| | `- error: 'accentColor' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
250 | }
251 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:253:61: error: 'clear' is only available in macOS 10.15 or newer
250 | }
251 |
252 | private struct LiteSliderStrokeStyleKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
253 | static let defaultValue = LiteSliderStrokeStyle(color: .clear, lineWidth: 0)
| | `- error: 'clear' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
254 | }
255 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:279:31: error: 'Color' is only available in macOS 10.15 or newer
260 | // MARK: - EnvironmentValues
261 |
262 | extension EnvironmentValues {
| `- note: add '@available' attribute to enclosing extension
263 |
264 | var liteSliderThickness: CGFloat {
:
277 | }
278 |
279 | var liteSliderTrackColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
280 | get { self[LiteSliderTrackColorKey.self] }
281 | set { self[LiteSliderTrackColorKey.self] = newValue }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:284:34: error: 'Color' is only available in macOS 10.15 or newer
260 | // MARK: - EnvironmentValues
261 |
262 | extension EnvironmentValues {
| `- note: add '@available' attribute to enclosing extension
263 |
264 | var liteSliderThickness: CGFloat {
:
282 | }
283 |
284 | var liteSliderProgressColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
285 | get { self[LiteSliderProgressColorKey.self] }
286 | set { self[LiteSliderProgressColorKey.self] = newValue }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:262:11: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
260 | // MARK: - EnvironmentValues
261 |
262 | extension EnvironmentValues {
| | `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
263 |
264 | var liteSliderThickness: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:137:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
134 | ///
135 | /// Default: `300`
136 | public func sliderThickness(_ thickness: CGFloat) -> some View {
| `- note: add '@available' attribute to enclosing instance method
137 | environment(\.liteSliderThickness, thickness)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
138 | }
139 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:144:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
141 | ///
142 | /// Default: `30`
143 | public func sliderRadius(_ radius: CGFloat) -> some View {
| `- note: add '@available' attribute to enclosing instance method
144 | environment(\.liteSliderRadius, radius)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
145 | }
146 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:153:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
148 | ///
149 | /// Default: `.dynamic`
150 | public func sliderLengthBehavior(
| `- note: add '@available' attribute to enclosing instance method
151 | _ behavior: LiteSliderLengthBehavior
152 | ) -> some View {
153 | environment(\.liteSliderLengthBehavior, behavior)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
154 | }
155 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:160:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
157 | ///
158 | /// Default: `.secondary`
159 | public func sliderTrackColor(_ color: Color) -> some View {
| `- note: add '@available' attribute to enclosing instance method
160 | environment(\.liteSliderTrackColor, color)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
161 | }
162 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:167:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
164 | ///
165 | /// Default: `.accentColor`
166 | public func sliderProgressColor(_ color: Color) -> some View {
| `- note: add '@available' attribute to enclosing instance method
167 | environment(\.liteSliderProgressColor, color)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
168 | }
169 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:174:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
171 | ///
172 | /// Default: `.clear`, `lineWidth: 0`
173 | public func sliderStroke(_ color: Color, lineWidth: CGFloat) -> some View {
| `- note: add '@available' attribute to enclosing instance method
174 | environment(
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
175 | \.liteSliderStrokeStyle,
176 | .init(color: color, lineWidth: lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:194:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
189 | /// )
190 | /// ```
191 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
192 | _ properties: ElasticDragProperties
193 | ) -> some View {
194 | environment(\.liteSliderElasticDragProperties, properties)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
195 | }
196 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:219:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
212 | /// Default:
213 | /// `offsetSize: 25`, `compressionFactor: 0.1`, `expansionFactor: 0.2`
214 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
215 | offsetSize: CGFloat,
216 | compressionFactor: CGFloat,
217 | expansionFactor: CGFloat
218 | ) -> some View {
219 | environment(
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
220 | \.liteSliderElasticDragProperties,
221 | ElasticDragProperties(
[17/21] Compiling LiteSlider LiteSliderAppearance.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:16:15: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
12 | /// strings.
13 | /// - Returns: A view with the provided accessibility formatter applied.
14 | public func sliderAccessibilityValueFormatter(
| `- note: add '@available' attribute to enclosing instance method
15 | _ numberFormatter: NumberFormatter
16 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
17 | environment(\.liteSliderAccessibilityValueFormatter, numberFormatter)
18 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:32:15: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
28 | /// adjustments.
29 | /// - Returns: A view with the provided accessibility step applied.
30 | public func sliderAccessibilityValueStep(
| `- note: add '@available' attribute to enclosing instance method
31 | _ accessibilityValueStep: Double
32 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
33 | environment(\.liteSliderAccessibilityValueStep, accessibilityValueStep)
34 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:5:11: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:53:11: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
51 | // MARK: - EnvironmentValues
52 |
53 | extension EnvironmentValues {
| | `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
54 |
55 | var liteSliderAccessibilityValueFormatter: NumberFormatter {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:17:9: error: 'environment' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
12 | /// strings.
13 | /// - Returns: A view with the provided accessibility formatter applied.
14 | public func sliderAccessibilityValueFormatter(
| `- note: add '@available' attribute to enclosing instance method
15 | _ numberFormatter: NumberFormatter
16 | ) -> some View {
17 | environment(\.liteSliderAccessibilityValueFormatter, numberFormatter)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
18 | }
19 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAccessibility.swift:33:9: error: 'environment' is only available in macOS 10.15 or newer
3 | // MARK: - View Modifiers
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a `NumberFormatter` used to format the slider’s accessibility
:
28 | /// adjustments.
29 | /// - Returns: A view with the provided accessibility step applied.
30 | public func sliderAccessibilityValueStep(
| `- note: add '@available' attribute to enclosing instance method
31 | _ accessibilityValueStep: Double
32 | ) -> some View {
33 | environment(\.liteSliderAccessibilityValueStep, accessibilityValueStep)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
34 | }
35 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:54:23: error: 'Color' is only available in macOS 10.15 or newer
49 | ///
50 | /// Set via `.sliderStroke(_:, lineWidth:)`
51 | public struct LiteSliderStrokeStyle: Sendable, Equatable {
| `- note: add '@available' attribute to enclosing struct
52 |
53 | /// The stroke color.
54 | public let color: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
55 |
56 | /// The width of the stroke line, in points.
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:64:24: error: 'Color' is only available in macOS 10.15 or newer
49 | ///
50 | /// Set via `.sliderStroke(_:, lineWidth:)`
51 | public struct LiteSliderStrokeStyle: Sendable, Equatable {
| `- note: add '@available' attribute to enclosing struct
52 |
53 | /// The stroke color.
:
62 | /// - color: The color of the stroke.
63 | /// - lineWidth: The width of the stroke line.
64 | public init(color: Color, lineWidth: CGFloat) {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing initializer
65 | self.color = color
66 | self.lineWidth = lineWidth
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:136:63: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
134 | ///
135 | /// Default: `300`
136 | public func sliderThickness(_ thickness: CGFloat) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
137 | environment(\.liteSliderThickness, thickness)
138 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:143:57: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
141 | ///
142 | /// Default: `30`
143 | public func sliderRadius(_ radius: CGFloat) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
144 | environment(\.liteSliderRadius, radius)
145 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:152:15: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
148 | ///
149 | /// Default: `.dynamic`
150 | public func sliderLengthBehavior(
| `- note: add '@available' attribute to enclosing instance method
151 | _ behavior: LiteSliderLengthBehavior
152 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
153 | environment(\.liteSliderLengthBehavior, behavior)
154 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:159:43: error: 'Color' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
157 | ///
158 | /// Default: `.secondary`
159 | public func sliderTrackColor(_ color: Color) -> some View {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
160 | environment(\.liteSliderTrackColor, color)
161 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:159:58: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
157 | ///
158 | /// Default: `.secondary`
159 | public func sliderTrackColor(_ color: Color) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
160 | environment(\.liteSliderTrackColor, color)
161 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:166:46: error: 'Color' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
164 | ///
165 | /// Default: `.accentColor`
166 | public func sliderProgressColor(_ color: Color) -> some View {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
167 | environment(\.liteSliderProgressColor, color)
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:166:61: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
164 | ///
165 | /// Default: `.accentColor`
166 | public func sliderProgressColor(_ color: Color) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
167 | environment(\.liteSliderProgressColor, color)
168 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:173:39: error: 'Color' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
171 | ///
172 | /// Default: `.clear`, `lineWidth: 0`
173 | public func sliderStroke(_ color: Color, lineWidth: CGFloat) -> some View {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
174 | environment(
175 | \.liteSliderStrokeStyle,
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:173:74: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
171 | ///
172 | /// Default: `.clear`, `lineWidth: 0`
173 | public func sliderStroke(_ color: Color, lineWidth: CGFloat) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing instance method
174 | environment(
175 | \.liteSliderStrokeStyle,
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:193:15: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
189 | /// )
190 | /// ```
191 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
192 | _ properties: ElasticDragProperties
193 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
194 | environment(\.liteSliderElasticDragProperties, properties)
195 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:218:15: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
212 | /// Default:
213 | /// `offsetSize: 25`, `compressionFactor: 0.1`, `expansionFactor: 0.2`
214 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
215 | offsetSize: CGFloat,
216 | compressionFactor: CGFloat,
217 | expansionFactor: CGFloat
218 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
219 | environment(
220 | \.liteSliderElasticDragProperties,
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:131:11: error: 'View' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:245:30: error: 'Color' is only available in macOS 10.15 or newer
242 | }
243 |
244 | private struct LiteSliderTrackColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
245 | static let defaultValue: Color = .secondary
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:245:39: error: 'secondary' is only available in macOS 10.15 or newer
242 | }
243 |
244 | private struct LiteSliderTrackColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
245 | static let defaultValue: Color = .secondary
| | `- error: 'secondary' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
246 | }
247 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:249:30: error: 'Color' is only available in macOS 10.15 or newer
246 | }
247 |
248 | private struct LiteSliderProgressColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
249 | static let defaultValue: Color = .accentColor
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
250 | }
251 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:249:39: error: 'accentColor' is only available in macOS 10.15 or newer
246 | }
247 |
248 | private struct LiteSliderProgressColorKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
249 | static let defaultValue: Color = .accentColor
| | `- error: 'accentColor' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
250 | }
251 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:253:61: error: 'clear' is only available in macOS 10.15 or newer
250 | }
251 |
252 | private struct LiteSliderStrokeStyleKey: EnvironmentKey {
| `- note: add '@available' attribute to enclosing struct
253 | static let defaultValue = LiteSliderStrokeStyle(color: .clear, lineWidth: 0)
| | `- error: 'clear' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing static property
254 | }
255 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:279:31: error: 'Color' is only available in macOS 10.15 or newer
260 | // MARK: - EnvironmentValues
261 |
262 | extension EnvironmentValues {
| `- note: add '@available' attribute to enclosing extension
263 |
264 | var liteSliderThickness: CGFloat {
:
277 | }
278 |
279 | var liteSliderTrackColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
280 | get { self[LiteSliderTrackColorKey.self] }
281 | set { self[LiteSliderTrackColorKey.self] = newValue }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:284:34: error: 'Color' is only available in macOS 10.15 or newer
260 | // MARK: - EnvironmentValues
261 |
262 | extension EnvironmentValues {
| `- note: add '@available' attribute to enclosing extension
263 |
264 | var liteSliderThickness: CGFloat {
:
282 | }
283 |
284 | var liteSliderProgressColor: Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
285 | get { self[LiteSliderProgressColorKey.self] }
286 | set { self[LiteSliderProgressColorKey.self] = newValue }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:262:11: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
260 | // MARK: - EnvironmentValues
261 |
262 | extension EnvironmentValues {
| | `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
263 |
264 | var liteSliderThickness: CGFloat {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:137:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
134 | ///
135 | /// Default: `300`
136 | public func sliderThickness(_ thickness: CGFloat) -> some View {
| `- note: add '@available' attribute to enclosing instance method
137 | environment(\.liteSliderThickness, thickness)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
138 | }
139 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:144:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
141 | ///
142 | /// Default: `30`
143 | public func sliderRadius(_ radius: CGFloat) -> some View {
| `- note: add '@available' attribute to enclosing instance method
144 | environment(\.liteSliderRadius, radius)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
145 | }
146 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:153:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
148 | ///
149 | /// Default: `.dynamic`
150 | public func sliderLengthBehavior(
| `- note: add '@available' attribute to enclosing instance method
151 | _ behavior: LiteSliderLengthBehavior
152 | ) -> some View {
153 | environment(\.liteSliderLengthBehavior, behavior)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
154 | }
155 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:160:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
157 | ///
158 | /// Default: `.secondary`
159 | public func sliderTrackColor(_ color: Color) -> some View {
| `- note: add '@available' attribute to enclosing instance method
160 | environment(\.liteSliderTrackColor, color)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
161 | }
162 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:167:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
164 | ///
165 | /// Default: `.accentColor`
166 | public func sliderProgressColor(_ color: Color) -> some View {
| `- note: add '@available' attribute to enclosing instance method
167 | environment(\.liteSliderProgressColor, color)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
168 | }
169 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:174:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
171 | ///
172 | /// Default: `.clear`, `lineWidth: 0`
173 | public func sliderStroke(_ color: Color, lineWidth: CGFloat) -> some View {
| `- note: add '@available' attribute to enclosing instance method
174 | environment(
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
175 | \.liteSliderStrokeStyle,
176 | .init(color: color, lineWidth: lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:194:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
189 | /// )
190 | /// ```
191 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
192 | _ properties: ElasticDragProperties
193 | ) -> some View {
194 | environment(\.liteSliderElasticDragProperties, properties)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
195 | }
196 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearance.swift:219:9: error: 'environment' is only available in macOS 10.15 or newer
129 | // MARK: - View Modifiers
130 |
131 | extension View {
| `- note: add '@available' attribute to enclosing extension
132 |
133 | /// Sets the thickness of the slider track.
:
212 | /// Default:
213 | /// `offsetSize: 25`, `compressionFactor: 0.1`, `expansionFactor: 0.2`
214 | public func sliderElasticDrag(
| `- note: add '@available' attribute to enclosing instance method
215 | offsetSize: CGFloat,
216 | compressionFactor: CGFloat,
217 | expansionFactor: CGFloat
218 | ) -> some View {
219 | environment(
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
220 | \.liteSliderElasticDragProperties,
221 | ElasticDragProperties(
[18/21] Compiling LiteSlider LiteSlider+Track.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:48:56: error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
46 |
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
| `- error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:49:49: error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
| `- error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
50 |
51 | // MARK: View
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:21:10: error: 'Binding' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
19 | /// A binding to the current drag ratio, representing the thumb's
20 | /// position along the track from 0 to 1.
21 | @Binding var dragRatio: CGFloat
| `- error: 'Binding' is only available in macOS 10.15 or newer
22 |
23 | /// A binding indicating whether the user is actively dragging the
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:25:10: error: 'Binding' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
23 | /// A binding indicating whether the user is actively dragging the
24 | /// slider.
25 | @Binding var isDragging: Bool
| `- error: 'Binding' is only available in macOS 10.15 or newer
26 |
27 | /// An optional closure that is called when the user starts interacting
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:33:10: error: 'State' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
31 | // MARK: State
32 |
33 | @State private var dragLocation = CGPoint(x: 0, y: 0)
| `- error: 'State' is only available in macOS 10.15 or newer
34 |
35 | // MARK: Environment
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:37:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
35 | // MARK: Environment
36 |
37 | @Environment(\.liteSliderThickness) private var thickness
| `- error: 'Environment' is only available in macOS 10.15 or newer
38 | @Environment(\.liteSliderRadius) private var radius
39 | @Environment(\.liteSliderTrackColor) private var trackColor
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:38:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
36 |
37 | @Environment(\.liteSliderThickness) private var thickness
38 | @Environment(\.liteSliderRadius) private var radius
| `- error: 'Environment' is only available in macOS 10.15 or newer
39 | @Environment(\.liteSliderTrackColor) private var trackColor
40 | @Environment(\.liteSliderProgressColor) private var progressColor
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:39:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
37 | @Environment(\.liteSliderThickness) private var thickness
38 | @Environment(\.liteSliderRadius) private var radius
39 | @Environment(\.liteSliderTrackColor) private var trackColor
| `- error: 'Environment' is only available in macOS 10.15 or newer
40 | @Environment(\.liteSliderProgressColor) private var progressColor
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:40:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
38 | @Environment(\.liteSliderRadius) private var radius
39 | @Environment(\.liteSliderTrackColor) private var trackColor
40 | @Environment(\.liteSliderProgressColor) private var progressColor
| `- error: 'Environment' is only available in macOS 10.15 or newer
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
42 | @Environment(\.liteSliderElasticDragProperties)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:41:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
39 | @Environment(\.liteSliderTrackColor) private var trackColor
40 | @Environment(\.liteSliderProgressColor) private var progressColor
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
| `- error: 'Environment' is only available in macOS 10.15 or newer
42 | @Environment(\.liteSliderElasticDragProperties)
43 | private var elasticDragProperties
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:42:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
40 | @Environment(\.liteSliderProgressColor) private var progressColor
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
42 | @Environment(\.liteSliderElasticDragProperties)
| `- error: 'Environment' is only available in macOS 10.15 or newer
43 | private var elasticDragProperties
44 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:48:43: error: 'Animation' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
46 |
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
| `- error: 'Animation' is only available in macOS 10.15 or newer
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:49:36: error: 'Animation' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
| `- error: 'Animation' is only available in macOS 10.15 or newer
50 |
51 | // MARK: View
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:53:24: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:67:33: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
65 | // MARK: Subviews
66 |
67 | private var track: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
68 | let trackShapeParameters = trackShapeParameters
69 | return ZStack {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:77:19: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
78 | ZStack {
79 | BackgroundStrokeShape(trackShapeParameters)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:88:19: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
89 | ZStack {
90 | ProgressStrokeShape(trackShapeParameters)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:108:37: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:117:35: error: 'Gesture' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
115 | // MARK: Gesture
116 |
117 | private var gesture: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
118 | TouchAndDragGesture(isDragging: $isDragging)
119 | .onStarted { location in
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:54:13: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | track
56 | thumbView
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:54:32: error: 'top' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
| |- error: 'top' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | track
56 | thumbView
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:58:14: error: 'gesture(_:including:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
56 | thumbView
57 | }
58 | .gesture(gesture)
| |- error: 'gesture(_:including:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
59 | .animation(dragAnimation, value: isDragging)
60 | .animation(valueChangeAnimation, value: dragRatio)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:59:14: error: 'animation(_:value:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
:
57 | }
58 | .gesture(gesture)
59 | .animation(dragAnimation, value: isDragging)
| |- error: 'animation(_:value:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
60 | .animation(valueChangeAnimation, value: dragRatio)
61 | .animation(valueChangeAnimation, value: elasticDragMetrics)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:60:14: error: 'animation(_:value:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
:
58 | .gesture(gesture)
59 | .animation(dragAnimation, value: isDragging)
60 | .animation(valueChangeAnimation, value: dragRatio)
| |- error: 'animation(_:value:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
61 | .animation(valueChangeAnimation, value: elasticDragMetrics)
62 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:61:14: error: 'animation(_:value:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
:
59 | .animation(dragAnimation, value: isDragging)
60 | .animation(valueChangeAnimation, value: dragRatio)
61 | .animation(valueChangeAnimation, value: elasticDragMetrics)
| |- error: 'animation(_:value:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
62 |
63 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:69:20: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
65 | // MARK: Subviews
66 |
67 | private var track: some View {
| `- note: add '@available' attribute to enclosing property
68 | let trackShapeParameters = trackShapeParameters
69 | return ZStack {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
70 | background(trackShapeParameters)
71 | progress(trackShapeParameters)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:13: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:80:22: error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
| |- error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
81 | BackgroundShape(trackShapeParameters)
82 | .fill(trackColor)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:81:17: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
:
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
81 | BackgroundShape(trackShapeParameters)
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
82 | .fill(trackColor)
83 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:82:22: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
:
80 | .stroke(lineWidth: strokeStyle.lineWidth)
81 | BackgroundShape(trackShapeParameters)
82 | .fill(trackColor)
| |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
83 | }
84 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:13: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:91:22: error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
| |- error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
92 | ProgressShape(trackShapeParameters)
93 | .fill(progressColor)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:92:17: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
:
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
92 | ProgressShape(trackShapeParameters)
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
93 | .fill(progressColor)
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:93:22: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
:
91 | .stroke(lineWidth: strokeStyle.lineWidth)
92 | ProgressShape(trackShapeParameters)
93 | .fill(progressColor)
| |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
94 | }
95 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:112:18: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
111 | .offset(y: thumbValueOffset + elasticDragMetrics.thumbOffset)
112 | .frame(width: thickness, height: thickness)
| |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:111:18: error: 'offset(x:y:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
111 | .offset(y: thumbValueOffset + elasticDragMetrics.thumbOffset)
| |- error: 'offset(x:y:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
112 | .frame(width: thickness, height: thickness)
113 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:112:18: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
111 | .offset(y: thumbValueOffset + elasticDragMetrics.thumbOffset)
112 | .frame(width: thickness, height: thickness)
| |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:134:13: error: setter for 'dragLocation' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
131 | }
132 |
133 | private func updateDragLocation(for location: CGPoint) {
| `- note: add '@available' attribute to enclosing instance method
134 | dragLocation.y = length - location.y - touchLocationLength / 2
| |- error: setter for 'dragLocation' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
135 | }
136 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:140:13: error: setter for 'dragRatio' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
135 | }
136 |
137 | private func updateDragRatio() {
| `- note: add '@available' attribute to enclosing instance method
138 | let availableLength = trackGeometry.availableLength
139 | let clamped = dragLocation.y.clamped(to: 0...availableLength)
140 | dragRatio = clamped / max(1, availableLength)
| |- error: setter for 'dragRatio' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
141 | }
142 |
[19/21] Compiling LiteSlider LiteSliderTrackGeometry.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:48:56: error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
46 |
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
| `- error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:49:49: error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
| `- error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
50 |
51 | // MARK: View
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:21:10: error: 'Binding' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
19 | /// A binding to the current drag ratio, representing the thumb's
20 | /// position along the track from 0 to 1.
21 | @Binding var dragRatio: CGFloat
| `- error: 'Binding' is only available in macOS 10.15 or newer
22 |
23 | /// A binding indicating whether the user is actively dragging the
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:25:10: error: 'Binding' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
23 | /// A binding indicating whether the user is actively dragging the
24 | /// slider.
25 | @Binding var isDragging: Bool
| `- error: 'Binding' is only available in macOS 10.15 or newer
26 |
27 | /// An optional closure that is called when the user starts interacting
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:33:10: error: 'State' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
31 | // MARK: State
32 |
33 | @State private var dragLocation = CGPoint(x: 0, y: 0)
| `- error: 'State' is only available in macOS 10.15 or newer
34 |
35 | // MARK: Environment
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:37:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
35 | // MARK: Environment
36 |
37 | @Environment(\.liteSliderThickness) private var thickness
| `- error: 'Environment' is only available in macOS 10.15 or newer
38 | @Environment(\.liteSliderRadius) private var radius
39 | @Environment(\.liteSliderTrackColor) private var trackColor
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:38:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
36 |
37 | @Environment(\.liteSliderThickness) private var thickness
38 | @Environment(\.liteSliderRadius) private var radius
| `- error: 'Environment' is only available in macOS 10.15 or newer
39 | @Environment(\.liteSliderTrackColor) private var trackColor
40 | @Environment(\.liteSliderProgressColor) private var progressColor
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:39:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
37 | @Environment(\.liteSliderThickness) private var thickness
38 | @Environment(\.liteSliderRadius) private var radius
39 | @Environment(\.liteSliderTrackColor) private var trackColor
| `- error: 'Environment' is only available in macOS 10.15 or newer
40 | @Environment(\.liteSliderProgressColor) private var progressColor
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:40:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
38 | @Environment(\.liteSliderRadius) private var radius
39 | @Environment(\.liteSliderTrackColor) private var trackColor
40 | @Environment(\.liteSliderProgressColor) private var progressColor
| `- error: 'Environment' is only available in macOS 10.15 or newer
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
42 | @Environment(\.liteSliderElasticDragProperties)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:41:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
39 | @Environment(\.liteSliderTrackColor) private var trackColor
40 | @Environment(\.liteSliderProgressColor) private var progressColor
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
| `- error: 'Environment' is only available in macOS 10.15 or newer
42 | @Environment(\.liteSliderElasticDragProperties)
43 | private var elasticDragProperties
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:42:10: error: 'Environment' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
40 | @Environment(\.liteSliderProgressColor) private var progressColor
41 | @Environment(\.liteSliderStrokeStyle) private var strokeStyle
42 | @Environment(\.liteSliderElasticDragProperties)
| `- error: 'Environment' is only available in macOS 10.15 or newer
43 | private var elasticDragProperties
44 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:48:43: error: 'Animation' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
46 |
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
| `- error: 'Animation' is only available in macOS 10.15 or newer
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:49:36: error: 'Animation' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
| `- error: 'Animation' is only available in macOS 10.15 or newer
50 |
51 | // MARK: View
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:53:24: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:67:33: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
65 | // MARK: Subviews
66 |
67 | private var track: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
68 | let trackShapeParameters = trackShapeParameters
69 | return ZStack {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:77:19: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
78 | ZStack {
79 | BackgroundStrokeShape(trackShapeParameters)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:88:19: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
89 | ZStack {
90 | ProgressStrokeShape(trackShapeParameters)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:108:37: error: 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:117:35: error: 'Gesture' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
115 | // MARK: Gesture
116 |
117 | private var gesture: some Gesture {
| | `- error: 'Gesture' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
118 | TouchAndDragGesture(isDragging: $isDragging)
119 | .onStarted { location in
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:54:13: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | track
56 | thumbView
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:54:32: error: 'top' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
| |- error: 'top' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | track
56 | thumbView
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:58:14: error: 'gesture(_:including:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
56 | thumbView
57 | }
58 | .gesture(gesture)
| |- error: 'gesture(_:including:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
59 | .animation(dragAnimation, value: isDragging)
60 | .animation(valueChangeAnimation, value: dragRatio)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:59:14: error: 'animation(_:value:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
:
57 | }
58 | .gesture(gesture)
59 | .animation(dragAnimation, value: isDragging)
| |- error: 'animation(_:value:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
60 | .animation(valueChangeAnimation, value: dragRatio)
61 | .animation(valueChangeAnimation, value: elasticDragMetrics)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:60:14: error: 'animation(_:value:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
:
58 | .gesture(gesture)
59 | .animation(dragAnimation, value: isDragging)
60 | .animation(valueChangeAnimation, value: dragRatio)
| |- error: 'animation(_:value:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
61 | .animation(valueChangeAnimation, value: elasticDragMetrics)
62 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:61:14: error: 'animation(_:value:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
51 | // MARK: View
52 |
53 | var body: some View {
| `- note: add '@available' attribute to enclosing property
54 | ZStack(alignment: .top) {
55 | track
:
59 | .animation(dragAnimation, value: isDragging)
60 | .animation(valueChangeAnimation, value: dragRatio)
61 | .animation(valueChangeAnimation, value: elasticDragMetrics)
| |- error: 'animation(_:value:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
62 |
63 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:69:20: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
65 | // MARK: Subviews
66 |
67 | private var track: some View {
| `- note: add '@available' attribute to enclosing property
68 | let trackShapeParameters = trackShapeParameters
69 | return ZStack {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
70 | background(trackShapeParameters)
71 | progress(trackShapeParameters)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:13: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:80:22: error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
| |- error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
81 | BackgroundShape(trackShapeParameters)
82 | .fill(trackColor)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:81:17: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
:
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
81 | BackgroundShape(trackShapeParameters)
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
82 | .fill(trackColor)
83 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:82:22: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
:
80 | .stroke(lineWidth: strokeStyle.lineWidth)
81 | BackgroundShape(trackShapeParameters)
82 | .fill(trackColor)
| |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
83 | }
84 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:78:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
73 | }
74 |
75 | private func background(
| `- note: add '@available' attribute to enclosing instance method
76 | _ trackShapeParameters: TrackShapeParameters
77 | ) -> some View {
78 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
79 | BackgroundStrokeShape(trackShapeParameters)
80 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:13: error: 'ZStack' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: 'ZStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:91:22: error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
| |- error: 'stroke(lineWidth:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
92 | ProgressShape(trackShapeParameters)
93 | .fill(progressColor)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:92:17: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
:
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
92 | ProgressShape(trackShapeParameters)
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
93 | .fill(progressColor)
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:93:22: error: 'fill(_:style:)' is only available in macOS 14.0 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
:
91 | .stroke(lineWidth: strokeStyle.lineWidth)
92 | ProgressShape(trackShapeParameters)
93 | .fill(progressColor)
| |- error: 'fill(_:style:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
94 | }
95 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:89:20: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
84 | }
85 |
86 | private func progress(
| `- note: add '@available' attribute to enclosing instance method
87 | _ trackShapeParameters: TrackShapeParameters
88 | ) -> some View {
89 | ZStack {
| |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 | ProgressStrokeShape(trackShapeParameters)
91 | .stroke(lineWidth: strokeStyle.lineWidth)
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:112:18: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
111 | .offset(y: thumbValueOffset + elasticDragMetrics.thumbOffset)
112 | .frame(width: thickness, height: thickness)
| |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:111:18: error: 'offset(x:y:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
111 | .offset(y: thumbValueOffset + elasticDragMetrics.thumbOffset)
| |- error: 'offset(x:y:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
112 | .frame(width: thickness, height: thickness)
113 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:112:18: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
106 | }
107 |
108 | private var thumbView: some View {
| `- note: add '@available' attribute to enclosing property
109 | let elasticDragMetrics = elasticDragMetrics
110 | return thumbViewProvider?(isDragging)
111 | .offset(y: thumbValueOffset + elasticDragMetrics.thumbOffset)
112 | .frame(width: thickness, height: thickness)
| |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
113 | }
114 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:134:13: error: setter for 'dragLocation' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
131 | }
132 |
133 | private func updateDragLocation(for location: CGPoint) {
| `- note: add '@available' attribute to enclosing instance method
134 | dragLocation.y = length - location.y - touchLocationLength / 2
| |- error: setter for 'dragLocation' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
135 | }
136 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:140:13: error: setter for 'dragRatio' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
135 | }
136 |
137 | private func updateDragRatio() {
| `- note: add '@available' attribute to enclosing instance method
138 | let availableLength = trackGeometry.availableLength
139 | let clamped = dragLocation.y.clamped(to: 0...availableLength)
140 | dragRatio = clamped / max(1, availableLength)
| |- error: setter for 'dragRatio' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
141 | }
142 |
[20/21] Compiling LiteSlider LiteSliderAppearanceExtensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:7:30: error: 'Alignment' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| | `- error: 'Alignment' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:9:31: error: 'bottom' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
| |- error: 'bottom' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
10 | case .downward: return .top
11 | case .center: return .center
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:10:33: error: 'top' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
10 | case .downward: return .top
| |- error: 'top' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
11 | case .center: return .center
12 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:11:31: error: 'center' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
10 | case .downward: return .top
11 | case .center: return .center
| |- error: 'center' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
12 | }
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:14:15: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSlider OnEnded
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a closure to be called when the user finishes dragging the slider.
:
10 | ///
11 | /// Default: No action.
12 | public func onSliderDragEnded(
| `- note: add '@available' attribute to enclosing instance method
13 | _ onEnded: @escaping () -> Void
14 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
15 | environment(\.liteSliderOnEnded, onEnded)
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:5:11: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSlider OnEnded
4 |
5 | extension View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a closure to be called when the user finishes dragging the slider.
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:23:11: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
21 | }
22 |
23 | extension EnvironmentValues {
| | `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
24 |
25 | var liteSliderOnEnded: () -> Void {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:15:9: error: 'environment' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSlider OnEnded
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a closure to be called when the user finishes dragging the slider.
:
10 | ///
11 | /// Default: No action.
12 | public func onSliderDragEnded(
| `- note: add '@available' attribute to enclosing instance method
13 | _ onEnded: @escaping () -> Void
14 | ) -> some View {
15 | environment(\.liteSliderOnEnded, onEnded)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
16 | }
17 | }
[21/21] Compiling LiteSlider OnSliderDragEnded.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:7:30: error: 'Alignment' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| | `- error: 'Alignment' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:9:31: error: 'bottom' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
| |- error: 'bottom' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
10 | case .downward: return .top
11 | case .center: return .center
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:10:33: error: 'top' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
10 | case .downward: return .top
| |- error: 'top' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
11 | case .center: return .center
12 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/LiteSliderAppearanceExtensions.swift:11:31: error: 'center' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSliderExpansionDirection Helpers
4 |
5 | extension LiteSliderExpansionDirection {
| `- note: add '@available' attribute to enclosing extension
6 | /// Determines the alignment of the parent view based on the slider's expansion direction.
7 | var parentViewAlignment: Alignment {
| `- note: add '@available' attribute to enclosing property
8 | switch self {
9 | case .upward: return .bottom
10 | case .downward: return .top
11 | case .center: return .center
| |- error: 'center' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
12 | }
13 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:14:15: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSlider OnEnded
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a closure to be called when the user finishes dragging the slider.
:
10 | ///
11 | /// Default: No action.
12 | public func onSliderDragEnded(
| `- note: add '@available' attribute to enclosing instance method
13 | _ onEnded: @escaping () -> Void
14 | ) -> some View {
| `- error: 'View' is only available in macOS 10.15 or newer
15 | environment(\.liteSliderOnEnded, onEnded)
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:5:11: error: 'View' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSlider OnEnded
4 |
5 | extension View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a closure to be called when the user finishes dragging the slider.
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:23:11: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
21 | }
22 |
23 | extension EnvironmentValues {
| | `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing extension
24 |
25 | var liteSliderOnEnded: () -> Void {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Config/OnSliderDragEnded.swift:15:9: error: 'environment' is only available in macOS 10.15 or newer
3 | // MARK: - LiteSlider OnEnded
4 |
5 | extension View {
| `- note: add '@available' attribute to enclosing extension
6 |
7 | /// Sets a closure to be called when the user finishes dragging the slider.
:
10 | ///
11 | /// Default: No action.
12 | public func onSliderDragEnded(
| `- note: add '@available' attribute to enclosing instance method
13 | _ onEnded: @escaping () -> Void
14 | ) -> some View {
15 | environment(\.liteSliderOnEnded, onEnded)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
16 | }
17 | }
[22/22] Compiling LiteSlider LiteSlider+FixedLengthTrack.swift
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/TrackWrappers/LiteSlider+FixedLengthTrack.swift:20:10: error: 'Binding' is only available in macOS 10.15 or newer
9 | /// This view displays the track at a constant length, and positions the
10 | /// thumb according to the current drag ratio.
11 | struct FixedLengthTrack: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
12 |
13 | /// The vertical length of the track.
:
18 |
19 | /// A binding to the current drag ratio, from 0.0 to 1.0.
20 | @Binding var dragRatio: CGFloat
| `- error: 'Binding' is only available in macOS 10.15 or newer
21 |
22 | /// A binding that reflects whether the user is actively dragging.
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/TrackWrappers/LiteSlider+FixedLengthTrack.swift:23:10: error: 'Binding' is only available in macOS 10.15 or newer
9 | /// This view displays the track at a constant length, and positions the
10 | /// thumb according to the current drag ratio.
11 | struct FixedLengthTrack: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
12 |
13 | /// The vertical length of the track.
:
21 |
22 | /// A binding that reflects whether the user is actively dragging.
23 | @Binding var isDragging: Bool
| `- error: 'Binding' is only available in macOS 10.15 or newer
24 |
25 | @Environment(\.liteSliderThickness) private var thickness
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/TrackWrappers/LiteSlider+FixedLengthTrack.swift:25:10: error: 'Environment' is only available in macOS 10.15 or newer
9 | /// This view displays the track at a constant length, and positions the
10 | /// thumb according to the current drag ratio.
11 | struct FixedLengthTrack: View {
| |- note: add '@available' attribute to enclosing struct
| `- note: add '@available' attribute to enclosing struct
12 |
13 | /// The vertical length of the track.
:
23 | @Binding var isDragging: Bool
24 |
25 | @Environment(\.liteSliderThickness) private var thickness
| `- error: 'Environment' is only available in macOS 10.15 or newer
26 |
27 | var body: some View {
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/TrackWrappers/LiteSlider+FixedLengthTrack.swift:27:24: error: 'View' is only available in macOS 10.15 or newer
9 | /// This view displays the track at a constant length, and positions the
10 | /// thumb according to the current drag ratio.
11 | struct FixedLengthTrack: View {
| `- note: add '@available' attribute to enclosing struct
12 |
13 | /// The vertical length of the track.
:
25 | @Environment(\.liteSliderThickness) private var thickness
26 |
27 | var body: some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add '@available' attribute to enclosing property
28 | Track(
29 | length: length,
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:48:56: error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
46 |
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
| `- error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/Track/LiteSlider+Track.swift:49:49: error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
6 |
7 | /// A vertically draggable track that represents the slider's value visually.
8 | struct Track: View {
| `- note: add '@available' attribute to enclosing struct
9 |
10 | // MARK: Input
:
47 | private let touchLocationLength: CGFloat = 70
48 | private let valueChangeAnimation: Animation = .spring(duration: 0.30)
49 | private let dragAnimation: Animation = .spring(duration: 0.15)
| `- error: 'spring(duration:bounce:blendDuration:)' is only available in macOS 10.15 or newer
50 |
51 | // MARK: View
/Users/admin/builder/spi-builder-workspace/Sources/LiteSlider/TrackWrappers/LiteSlider+FixedLengthTrack.swift:35:14: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
9 | /// This view displays the track at a constant length, and positions the
10 | /// thumb according to the current drag ratio.
11 | struct FixedLengthTrack: View {
| `- note: add '@available' attribute to enclosing struct
12 |
13 | /// The vertical length of the track.
:
25 | @Environment(\.liteSliderThickness) private var thickness
26 |
27 | var body: some View {
| `- note: add '@available' attribute to enclosing property
28 | Track(
29 | length: length,
:
33 | onStartDragging: nil
34 | )
35 | .frame(width: thickness, height: length)
| |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
36 | }
37 | }
BUILD FAILURE 6.3 macosSpm