The Swift Package Index logo.Swift Package Index

Build Information

Failed to build NeoBrutalism, reference main (d0f704), with Swift 6.3 for macOS (SPM) on 16 Apr 2026 05:16:39 UTC.

Build Command

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

Build Log

23 |
24 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
25 |         TextField("Input", text: $inputValue)
26 |             .textFieldStyle(.neoBrutalism)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:24:12: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
22 |     @Previewable @State var inputValue = ""
23 |
24 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
25 |         TextField("Input", text: $inputValue)
26 |             .textFieldStyle(.neoBrutalism)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:25:9: error: 'TextField' is only available in macOS 10.15 or newer
23 |
24 |     VStack {
25 |         TextField("Input", text: $inputValue)
   |         |- error: 'TextField' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
26 |             .textFieldStyle(.neoBrutalism)
27 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:25:9: error: 'init(_:text:)' is only available in macOS 10.15 or newer
23 |
24 |     VStack {
25 |         TextField("Input", text: $inputValue)
   |         |- error: 'init(_:text:)' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
26 |             .textFieldStyle(.neoBrutalism)
27 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:25:19: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
23 |
24 |     VStack {
25 |         TextField("Input", text: $inputValue)
   |                   |- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
26 |             .textFieldStyle(.neoBrutalism)
27 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:26:14: error: 'textFieldStyle' is only available in macOS 10.15 or newer
24 |     VStack {
25 |         TextField("Input", text: $inputValue)
26 |             .textFieldStyle(.neoBrutalism)
   |              |- error: 'textFieldStyle' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
27 |
28 |         TextField("Input", text: $inputValue)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:28:9: error: 'TextField' is only available in macOS 10.15 or newer
26 |             .textFieldStyle(.neoBrutalism)
27 |
28 |         TextField("Input", text: $inputValue)
   |         |- error: 'TextField' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
29 |             .disabled(true)
30 |             .textFieldStyle(.neoBrutalism)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:28:9: error: 'init(_:text:)' is only available in macOS 10.15 or newer
26 |             .textFieldStyle(.neoBrutalism)
27 |
28 |         TextField("Input", text: $inputValue)
   |         |- error: 'init(_:text:)' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
29 |             .disabled(true)
30 |             .textFieldStyle(.neoBrutalism)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:28:19: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
26 |             .textFieldStyle(.neoBrutalism)
27 |
28 |         TextField("Input", text: $inputValue)
   |                   |- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
29 |             .disabled(true)
30 |             .textFieldStyle(.neoBrutalism)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:29:14: error: 'disabled' is only available in macOS 10.15 or newer
27 |
28 |         TextField("Input", text: $inputValue)
29 |             .disabled(true)
   |              |- error: 'disabled' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
30 |             .textFieldStyle(.neoBrutalism)
31 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:30:14: error: 'textFieldStyle' is only available in macOS 10.15 or newer
28 |         TextField("Input", text: $inputValue)
29 |             .disabled(true)
30 |             .textFieldStyle(.neoBrutalism)
   |              |- error: 'textFieldStyle' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
31 |     }
32 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:43:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
41 |
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:43:19: error: 'modifier' is only available in macOS 15.0 or newer
41 |
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:44:5: error: 'VStack' is only available in macOS 10.15 or newer
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     VStack {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
45 |         ProgressView(value: 0.0) { Text("Some Task") }
46 |             .progressViewStyle(.neoBrutalism)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:44:12: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
45 |         ProgressView(value: 0.0) { Text("Some Task") }
46 |             .progressViewStyle(.neoBrutalism)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:45:9: error: 'ProgressView' is only available in macOS 11.0 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
   |         |- error: 'ProgressView' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
46 |             .progressViewStyle(.neoBrutalism)
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:45:9: error: 'init(value:total:label:)' is only available in macOS 11.0 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
   |         |- error: 'init(value:total:label:)' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
46 |             .progressViewStyle(.neoBrutalism)
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:45:36: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
   |                                    |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                    `- note: add 'if #available' version check
46 |             .progressViewStyle(.neoBrutalism)
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:45:36: error: 'Text' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
   |                                    |- error: 'Text' is only available in macOS 10.15 or newer
   |                                    `- note: add 'if #available' version check
46 |             .progressViewStyle(.neoBrutalism)
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:45:34: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
   |                                  |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                  `- note: add 'if #available' version check
46 |             .progressViewStyle(.neoBrutalism)
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:46:14: error: 'progressViewStyle' is only available in macOS 11.0 or newer
44 |     VStack {
45 |         ProgressView(value: 0.0) { Text("Some Task") }
46 |             .progressViewStyle(.neoBrutalism)
   |              |- error: 'progressViewStyle' is only available in macOS 11.0 or newer
   |              `- note: add 'if #available' version check
47 |
48 |         ProgressView(value: 0.52)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:48:9: error: 'ProgressView' is only available in macOS 11.0 or newer
46 |             .progressViewStyle(.neoBrutalism)
47 |
48 |         ProgressView(value: 0.52)
   |         |- error: 'ProgressView' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
49 |             .progressViewStyle(.neoBrutalism)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:48:9: error: 'init(value:total:)' is only available in macOS 11.0 or newer
46 |             .progressViewStyle(.neoBrutalism)
47 |
48 |         ProgressView(value: 0.52)
   |         |- error: 'init(value:total:)' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
49 |             .progressViewStyle(.neoBrutalism)
50 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:49:14: error: 'progressViewStyle' is only available in macOS 11.0 or newer
47 |
48 |         ProgressView(value: 0.52)
49 |             .progressViewStyle(.neoBrutalism)
   |              |- error: 'progressViewStyle' is only available in macOS 11.0 or newer
   |              `- note: add 'if #available' version check
50 |
51 |         ProgressView(value: 0.2)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:51:9: error: 'ProgressView' is only available in macOS 11.0 or newer
49 |             .progressViewStyle(.neoBrutalism)
50 |
51 |         ProgressView(value: 0.2)
   |         |- error: 'ProgressView' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
52 |             .progressViewStyle(.neoBrutalism)
53 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:51:9: error: 'init(value:total:)' is only available in macOS 11.0 or newer
49 |             .progressViewStyle(.neoBrutalism)
50 |
51 |         ProgressView(value: 0.2)
   |         |- error: 'init(value:total:)' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
52 |             .progressViewStyle(.neoBrutalism)
53 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:52:14: error: 'progressViewStyle' is only available in macOS 11.0 or newer
50 |
51 |         ProgressView(value: 0.2)
52 |             .progressViewStyle(.neoBrutalism)
   |              |- error: 'progressViewStyle' is only available in macOS 11.0 or newer
   |              `- note: add 'if #available' version check
53 |
54 |         ProgressView(value: 1.0)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:54:9: error: 'ProgressView' is only available in macOS 11.0 or newer
52 |             .progressViewStyle(.neoBrutalism)
53 |
54 |         ProgressView(value: 1.0)
   |         |- error: 'ProgressView' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
55 |             .progressViewStyle(.neoBrutalism)
56 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:54:9: error: 'init(value:total:)' is only available in macOS 11.0 or newer
52 |             .progressViewStyle(.neoBrutalism)
53 |
54 |         ProgressView(value: 1.0)
   |         |- error: 'init(value:total:)' is only available in macOS 11.0 or newer
   |         `- note: add 'if #available' version check
55 |             .progressViewStyle(.neoBrutalism)
56 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Progress.swift:55:14: error: 'progressViewStyle' is only available in macOS 11.0 or newer
53 |
54 |         ProgressView(value: 1.0)
55 |             .progressViewStyle(.neoBrutalism)
   |              |- error: 'progressViewStyle' is only available in macOS 11.0 or newer
   |              `- note: add 'if #available' version check
56 |     }
57 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:44:6: error: 'Previewable()' is only available in macOS 14.0 or newer
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
45 |     VStack(spacing: 24.0) {
46 |         Text("\(value)")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:44:19: error: 'State' is only available in macOS 10.15 or newer
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
45 |     VStack(spacing: 24.0) {
46 |         Text("\(value)")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:43:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
41 |
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:43:19: error: 'modifier' is only available in macOS 15.0 or newer
41 |
42 | @available(iOS 18.0, *)
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:5: error: 'VStack' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:46:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
46 |         Text("\(value)")
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
47 |             .font(.caption)
48 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:46:9: error: 'Text' is only available in macOS 10.15 or newer
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
46 |         Text("\(value)")
   |         |- error: 'Text' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
47 |             .font(.caption)
48 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:47:14: error: 'font' is only available in macOS 10.15 or newer
45 |     VStack(spacing: 24.0) {
46 |         Text("\(value)")
47 |             .font(.caption)
   |              |- error: 'font' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
48 |
49 |         NBRadioGroup(value: $value) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:47:20: error: 'caption' is only available in macOS 10.15 or newer
45 |     VStack(spacing: 24.0) {
46 |         Text("\(value)")
47 |             .font(.caption)
   |                    |- error: 'caption' is only available in macOS 10.15 or newer
   |                    `- note: add 'if #available' version check
48 |
49 |         NBRadioGroup(value: $value) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:50:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
48 |
49 |         NBRadioGroup(value: $value) {
50 |             NBRadioItem(value: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
51 |                 Text("First")
52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:50:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
48 |
49 |         NBRadioGroup(value: $value) {
50 |             NBRadioItem(value: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
51 |                 Text("First")
52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:50:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
48 |
49 |         NBRadioGroup(value: $value) {
50 |             NBRadioItem(value: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
51 |                 Text("First")
52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:51:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
49 |         NBRadioGroup(value: $value) {
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
52 |             }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:51:17: error: 'Text' is only available in macOS 10.15 or newer
49 |         NBRadioGroup(value: $value) {
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
52 |             }
53 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:50:35: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
48 |
49 |         NBRadioGroup(value: $value) {
50 |             NBRadioItem(value: 0) {
   |                                   |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
51 |                 Text("First")
52 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:54:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 |             }
53 |
54 |             NBRadioItem(value: 1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
55 |                 Text("Second")
56 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:54:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 |             }
53 |
54 |             NBRadioItem(value: 1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
55 |                 Text("Second")
56 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:54:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 |             }
53 |
54 |             NBRadioItem(value: 1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
55 |                 Text("Second")
56 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:55:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
53 |
54 |             NBRadioItem(value: 1) {
55 |                 Text("Second")
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
56 |             }
57 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:55:17: error: 'Text' is only available in macOS 10.15 or newer
53 |
54 |             NBRadioItem(value: 1) {
55 |                 Text("Second")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
56 |             }
57 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:54:35: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 |             }
53 |
54 |             NBRadioItem(value: 1) {
   |                                   |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
55 |                 Text("Second")
56 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:49:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |             .font(.caption)
48 |
49 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
50 |             NBRadioItem(value: 0) {
51 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:60:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
58 |
59 |         NBRadioGroup(value: $value) {
60 |             Text("Radio")
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
61 |                 .font(.title)
62 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:60:13: error: 'Text' is only available in macOS 10.15 or newer
58 |
59 |         NBRadioGroup(value: $value) {
60 |             Text("Radio")
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
61 |                 .font(.title)
62 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:61:18: error: 'font' is only available in macOS 10.15 or newer
59 |         NBRadioGroup(value: $value) {
60 |             Text("Radio")
61 |                 .font(.title)
   |                  |- error: 'font' is only available in macOS 10.15 or newer
   |                  `- note: add 'if #available' version check
62 |
63 |             NBRadioItem(value: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:61:24: error: 'title' is only available in macOS 10.15 or newer
59 |         NBRadioGroup(value: $value) {
60 |             Text("Radio")
61 |                 .font(.title)
   |                        |- error: 'title' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
62 |
63 |             NBRadioItem(value: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:63:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |                 .font(.title)
62 |
63 |             NBRadioItem(value: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
64 |                 Text("First")
65 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:63:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |                 .font(.title)
62 |
63 |             NBRadioItem(value: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
64 |                 Text("First")
65 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:63:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |                 .font(.title)
62 |
63 |             NBRadioItem(value: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
64 |                 Text("First")
65 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:64:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
62 |
63 |             NBRadioItem(value: 0) {
64 |                 Text("First")
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
65 |             }
66 |             NBRadioItem(value: 1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:64:17: error: 'Text' is only available in macOS 10.15 or newer
62 |
63 |             NBRadioItem(value: 0) {
64 |                 Text("First")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
65 |             }
66 |             NBRadioItem(value: 1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:63:35: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |                 .font(.title)
62 |
63 |             NBRadioItem(value: 0) {
   |                                   |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
64 |                 Text("First")
65 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:66:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
64 |                 Text("First")
65 |             }
66 |             NBRadioItem(value: 1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
67 |                 Text("Second")
68 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:66:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
64 |                 Text("First")
65 |             }
66 |             NBRadioItem(value: 1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
67 |                 Text("Second")
68 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:66:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
64 |                 Text("First")
65 |             }
66 |             NBRadioItem(value: 1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
67 |                 Text("Second")
68 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:67:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
65 |             }
66 |             NBRadioItem(value: 1) {
67 |                 Text("Second")
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
68 |             }
69 |             NBRadioItem(value: 2) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:67:17: error: 'Text' is only available in macOS 10.15 or newer
65 |             }
66 |             NBRadioItem(value: 1) {
67 |                 Text("Second")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
68 |             }
69 |             NBRadioItem(value: 2) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:66:35: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
64 |                 Text("First")
65 |             }
66 |             NBRadioItem(value: 1) {
   |                                   |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
67 |                 Text("Second")
68 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:69:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
67 |                 Text("Second")
68 |             }
69 |             NBRadioItem(value: 2) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
70 |                 Text("Thhird")
71 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:69:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
67 |                 Text("Second")
68 |             }
69 |             NBRadioItem(value: 2) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
70 |                 Text("Thhird")
71 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:69:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
67 |                 Text("Second")
68 |             }
69 |             NBRadioItem(value: 2) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
70 |                 Text("Thhird")
71 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:70:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
68 |             }
69 |             NBRadioItem(value: 2) {
70 |                 Text("Thhird")
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
71 |             }
72 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:70:17: error: 'Text' is only available in macOS 10.15 or newer
68 |             }
69 |             NBRadioItem(value: 2) {
70 |                 Text("Thhird")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
71 |             }
72 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:69:35: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
67 |                 Text("Second")
68 |             }
69 |             NBRadioItem(value: 2) {
   |                                   |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
70 |                 Text("Thhird")
71 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:59:37: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |         }
58 |
59 |         NBRadioGroup(value: $value) {
   |                                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                     `- note: add 'if #available' version check
60 |             Text("Radio")
61 |                 .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/Radio.swift:45:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 | #Preview(traits: .modifier(NBPreviewHelper())) {
44 |     @Previewable @State var value = 0
45 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
46 |         Text("\(value)")
47 |             .font(.caption)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:42:6: error: 'Previewable()' is only available in macOS 14.0 or newer
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:42:19: error: 'State' is only available in macOS 10.15 or newer
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:41:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
39 |
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:41:19: error: 'modifier' is only available in macOS 15.0 or newer
39 |
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:43:5: error: 'VStack' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:44:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:44:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:44:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:45:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
46 |         }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:45:13: error: 'Text' is only available in macOS 10.15 or newer
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
46 |         }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:44:31: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |                               |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                               `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:48:9: error: 'Toggle' is only available in macOS 10.15 or newer
46 |         }
47 |
48 |         Toggle(isOn: .constant(false)) {
   |         |- error: 'Toggle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:48:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
46 |         }
47 |
48 |         Toggle(isOn: .constant(false)) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:49:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |
48 |         Toggle(isOn: .constant(false)) {
49 |             Text("Radio Item")
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:49:13: error: 'Text' is only available in macOS 10.15 or newer
47 |
48 |         Toggle(isOn: .constant(false)) {
49 |             Text("Radio Item")
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:48:40: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
46 |         }
47 |
48 |         Toggle(isOn: .constant(false)) {
   |                                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                        `- note: add 'if #available' version check
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:50:11: error: 'toggleStyle' is only available in macOS 10.15 or newer
48 |         Toggle(isOn: .constant(false)) {
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
   |           |- error: 'toggleStyle' is only available in macOS 10.15 or newer
   |           `- note: add 'if #available' version check
51 |
52 |         Toggle(isOn: .constant(true)) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:52:9: error: 'Toggle' is only available in macOS 10.15 or newer
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
52 |         Toggle(isOn: .constant(true)) {
   |         |- error: 'Toggle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:52:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
52 |         Toggle(isOn: .constant(true)) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:53:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
51 |
52 |         Toggle(isOn: .constant(true)) {
53 |             Text("Radio Item")
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
54 |         }.toggleStyle(.neoBrutalismRadio)
55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:53:13: error: 'Text' is only available in macOS 10.15 or newer
51 |
52 |         Toggle(isOn: .constant(true)) {
53 |             Text("Radio Item")
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
54 |         }.toggleStyle(.neoBrutalismRadio)
55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:52:39: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
52 |         Toggle(isOn: .constant(true)) {
   |                                       |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                       `- note: add 'if #available' version check
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:54:11: error: 'toggleStyle' is only available in macOS 10.15 or newer
52 |         Toggle(isOn: .constant(true)) {
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
   |           |- error: 'toggleStyle' is only available in macOS 10.15 or newer
   |           `- note: add 'if #available' version check
55 |     }
56 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioItem.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:42:6: error: 'Previewable()' is only available in macOS 14.0 or newer
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:42:19: error: 'State' is only available in macOS 10.15 or newer
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:41:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
39 |
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:41:19: error: 'modifier' is only available in macOS 15.0 or newer
39 |
40 | @available(iOS 18.0, *)
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:43:5: error: 'VStack' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:44:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:44:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:44:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:45:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
46 |         }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:45:13: error: 'Text' is only available in macOS 10.15 or newer
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
46 |         }
47 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:44:31: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
44 |         NBRadioItem(value: 0) {
   |                               |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                               `- note: add 'if #available' version check
45 |             Text("Radio Item")
46 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:48:9: error: 'Toggle' is only available in macOS 10.15 or newer
46 |         }
47 |
48 |         Toggle(isOn: .constant(false)) {
   |         |- error: 'Toggle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:48:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
46 |         }
47 |
48 |         Toggle(isOn: .constant(false)) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:49:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |
48 |         Toggle(isOn: .constant(false)) {
49 |             Text("Radio Item")
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:49:13: error: 'Text' is only available in macOS 10.15 or newer
47 |
48 |         Toggle(isOn: .constant(false)) {
49 |             Text("Radio Item")
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:48:40: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
46 |         }
47 |
48 |         Toggle(isOn: .constant(false)) {
   |                                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                        `- note: add 'if #available' version check
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:50:11: error: 'toggleStyle' is only available in macOS 10.15 or newer
48 |         Toggle(isOn: .constant(false)) {
49 |             Text("Radio Item")
50 |         }.toggleStyle(.neoBrutalismRadio)
   |           |- error: 'toggleStyle' is only available in macOS 10.15 or newer
   |           `- note: add 'if #available' version check
51 |
52 |         Toggle(isOn: .constant(true)) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:52:9: error: 'Toggle' is only available in macOS 10.15 or newer
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
52 |         Toggle(isOn: .constant(true)) {
   |         |- error: 'Toggle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:52:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
52 |         Toggle(isOn: .constant(true)) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:53:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
51 |
52 |         Toggle(isOn: .constant(true)) {
53 |             Text("Radio Item")
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
54 |         }.toggleStyle(.neoBrutalismRadio)
55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:53:13: error: 'Text' is only available in macOS 10.15 or newer
51 |
52 |         Toggle(isOn: .constant(true)) {
53 |             Text("Radio Item")
   |             |- error: 'Text' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
54 |         }.toggleStyle(.neoBrutalismRadio)
55 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:52:39: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
50 |         }.toggleStyle(.neoBrutalismRadio)
51 |
52 |         Toggle(isOn: .constant(true)) {
   |                                       |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                       `- note: add 'if #available' version check
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:54:11: error: 'toggleStyle' is only available in macOS 10.15 or newer
52 |         Toggle(isOn: .constant(true)) {
53 |             Text("Radio Item")
54 |         }.toggleStyle(.neoBrutalismRadio)
   |           |- error: 'toggleStyle' is only available in macOS 10.15 or newer
   |           `- note: add 'if #available' version check
55 |     }
56 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Radio/RadioStyle.swift:43:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 | #Preview(traits: .modifier(NBPreviewHelper())) {
42 |     @Previewable @State var value = 0
43 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
44 |         NBRadioItem(value: 0) {
45 |             Text("Radio Item")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/RoundSkeleton.swift:22:6: error: 'Previewable()' is only available in macOS 14.0 or newer
20 | @available(iOS 18.0, *)
21 | #Preview(traits: .modifier(NBPreviewHelper())) {
22 |     @Previewable @State var value = 0
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
23 |     VStack(spacing: 12.0) {
24 |         NBRoundSkeleton()
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/RoundSkeleton.swift:22:19: error: 'State' is only available in macOS 10.15 or newer
20 | @available(iOS 18.0, *)
21 | #Preview(traits: .modifier(NBPreviewHelper())) {
22 |     @Previewable @State var value = 0
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
23 |     VStack(spacing: 12.0) {
24 |         NBRoundSkeleton()
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/RoundSkeleton.swift:21:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
19 |
20 | @available(iOS 18.0, *)
21 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
22 |     @Previewable @State var value = 0
23 |     VStack(spacing: 12.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/RoundSkeleton.swift:21:19: error: 'modifier' is only available in macOS 15.0 or newer
19 |
20 | @available(iOS 18.0, *)
21 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
22 |     @Previewable @State var value = 0
23 |     VStack(spacing: 12.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/RoundSkeleton.swift:23:5: error: 'VStack' is only available in macOS 10.15 or newer
21 | #Preview(traits: .modifier(NBPreviewHelper())) {
22 |     @Previewable @State var value = 0
23 |     VStack(spacing: 12.0) {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
24 |         NBRoundSkeleton()
25 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/RoundSkeleton.swift:27:14: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
25 |
26 |         NBRoundSkeleton()
27 |             .frame(width: 120, height: 120)
   |              |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
28 |     }
29 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/TextSkeleton.swift:19:6: error: 'Previewable()' is only available in macOS 14.0 or newer
17 | @available(iOS 18.0, *)
18 | #Preview(traits: .modifier(NBPreviewHelper())) {
19 |     @Previewable @State var value = 0
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
20 |     VStack(spacing: 12.0) {
21 |         NBTextSkeleton()
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/TextSkeleton.swift:19:19: error: 'State' is only available in macOS 10.15 or newer
17 | @available(iOS 18.0, *)
18 | #Preview(traits: .modifier(NBPreviewHelper())) {
19 |     @Previewable @State var value = 0
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
20 |     VStack(spacing: 12.0) {
21 |         NBTextSkeleton()
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/TextSkeleton.swift:18:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
16 |
17 | @available(iOS 18.0, *)
18 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
19 |     @Previewable @State var value = 0
20 |     VStack(spacing: 12.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/TextSkeleton.swift:18:19: error: 'modifier' is only available in macOS 15.0 or newer
16 |
17 | @available(iOS 18.0, *)
18 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
19 |     @Previewable @State var value = 0
20 |     VStack(spacing: 12.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/TextSkeleton.swift:20:5: error: 'VStack' is only available in macOS 10.15 or newer
18 | #Preview(traits: .modifier(NBPreviewHelper())) {
19 |     @Previewable @State var value = 0
20 |     VStack(spacing: 12.0) {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
21 |         NBTextSkeleton()
22 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Skeleton/TextSkeleton.swift:24:14: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
22 |
23 |         NBTextSkeleton()
24 |             .frame(width: 120, height: 20.0)
   |              |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
25 |     }
26 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:59:6: error: 'Previewable()' is only available in macOS 14.0 or newer
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
59 |     @Previewable @State var sliderValue: CGFloat = 0.5
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
60 |
61 |     VStack {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:59:19: error: 'State' is only available in macOS 10.15 or newer
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
59 |     @Previewable @State var sliderValue: CGFloat = 0.5
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
60 |
61 |     VStack {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:58:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
56 |
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
59 |     @Previewable @State var sliderValue: CGFloat = 0.5
60 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:58:19: error: 'modifier' is only available in macOS 15.0 or newer
56 |
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
59 |     @Previewable @State var sliderValue: CGFloat = 0.5
60 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:61:5: error: 'VStack' is only available in macOS 10.15 or newer
59 |     @Previewable @State var sliderValue: CGFloat = 0.5
60 |
61 |     VStack {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
62 |         ZStack {
63 |             HStack(alignment: .center) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:62:9: error: 'ZStack' is only available in macOS 10.15 or newer
60 |
61 |     VStack {
62 |         ZStack {
   |         |- error: 'ZStack' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
63 |             HStack(alignment: .center) {
64 |                 Text("\(sliderValue, specifier: "%.2f")")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:63:13: error: 'HStack' is only available in macOS 10.15 or newer
61 |     VStack {
62 |         ZStack {
63 |             HStack(alignment: .center) {
   |             |- error: 'HStack' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
64 |                 Text("\(sliderValue, specifier: "%.2f")")
65 |                     .padding(.horizontal)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:63:32: error: 'center' is only available in macOS 10.15 or newer
61 |     VStack {
62 |         ZStack {
63 |             HStack(alignment: .center) {
   |                                |- error: 'center' is only available in macOS 10.15 or newer
   |                                `- note: add 'if #available' version check
64 |                 Text("\(sliderValue, specifier: "%.2f")")
65 |                     .padding(.horizontal)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:64:17: error: 'Text' is only available in macOS 10.15 or newer
62 |         ZStack {
63 |             HStack(alignment: .center) {
64 |                 Text("\(sliderValue, specifier: "%.2f")")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
65 |                     .padding(.horizontal)
66 |                     .frame(width: 100.0)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:64:17: error: 'init(_:tableName:bundle:comment:)' is only available in macOS 10.15 or newer
62 |         ZStack {
63 |             HStack(alignment: .center) {
64 |                 Text("\(sliderValue, specifier: "%.2f")")
   |                 |- error: 'init(_:tableName:bundle:comment:)' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
65 |                     .padding(.horizontal)
66 |                     .frame(width: 100.0)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:64:22: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
62 |         ZStack {
63 |             HStack(alignment: .center) {
64 |                 Text("\(sliderValue, specifier: "%.2f")")
   |                      |- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
   |                      `- note: add 'if #available' version check
65 |                     .padding(.horizontal)
66 |                     .frame(width: 100.0)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:64:24: error: conformance of 'CGFloat' to '_FormatSpecifiable' is only available in macOS 10.15 or newer
62 |         ZStack {
63 |             HStack(alignment: .center) {
64 |                 Text("\(sliderValue, specifier: "%.2f")")
   |                        |- error: conformance of 'CGFloat' to '_FormatSpecifiable' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
65 |                     .padding(.horizontal)
66 |                     .frame(width: 100.0)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:65:22: error: 'padding' is only available in macOS 10.15 or newer
63 |             HStack(alignment: .center) {
64 |                 Text("\(sliderValue, specifier: "%.2f")")
65 |                     .padding(.horizontal)
   |                      |- error: 'padding' is only available in macOS 10.15 or newer
   |                      `- note: add 'if #available' version check
66 |                     .frame(width: 100.0)
67 |                 NBSlider(value: $sliderValue)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Slider.swift:66:22: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
64 |                 Text("\(sliderValue, specifier: "%.2f")")
65 |                     .padding(.horizontal)
66 |                     .frame(width: 100.0)
   |                      |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |                      `- note: add 'if #available' version check
67 |                 NBSlider(value: $sliderValue)
68 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:59:6: error: 'Previewable()' is only available in macOS 14.0 or newer
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
59 |     @Previewable @State var switchState1 = true
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
60 |     @Previewable @State var switchState2 = false
61 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:59:19: error: 'State' is only available in macOS 10.15 or newer
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
59 |     @Previewable @State var switchState1 = true
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
60 |     @Previewable @State var switchState2 = false
61 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:60:6: error: 'Previewable()' is only available in macOS 14.0 or newer
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
59 |     @Previewable @State var switchState1 = true
60 |     @Previewable @State var switchState2 = false
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
61 |
62 |     VStack {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:60:19: error: 'State' is only available in macOS 10.15 or newer
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
59 |     @Previewable @State var switchState1 = true
60 |     @Previewable @State var switchState2 = false
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
61 |
62 |     VStack {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:58:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
56 |
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
59 |     @Previewable @State var switchState1 = true
60 |     @Previewable @State var switchState2 = false
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:58:19: error: 'modifier' is only available in macOS 15.0 or newer
56 |
57 | @available(iOS 18.0, *)
58 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
59 |     @Previewable @State var switchState1 = true
60 |     @Previewable @State var switchState2 = false
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:62:5: error: 'VStack' is only available in macOS 10.15 or newer
60 |     @Previewable @State var switchState2 = false
61 |
62 |     VStack {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:62:12: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
60 |     @Previewable @State var switchState2 = false
61 |
62 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:62:12: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
60 |     @Previewable @State var switchState2 = false
61 |
62 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:62:12: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
60 |     @Previewable @State var switchState2 = false
61 |
62 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:62:12: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
60 |     @Previewable @State var switchState2 = false
61 |
62 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:63:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |
62 |     VStack {
63 |         HStack {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:63:9: error: 'HStack' is only available in macOS 10.15 or newer
61 |
62 |     VStack {
63 |         HStack {
   |         |- error: 'HStack' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:63:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |
62 |     VStack {
63 |         HStack {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:63:16: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |
62 |     VStack {
63 |         HStack {
   |                |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                `- note: add 'if #available' version check
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:63:16: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |
62 |     VStack {
63 |         HStack {
   |                |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                `- note: add 'if #available' version check
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:64:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
62 |     VStack {
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
65 |                 Text("Switch")
66 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:64:13: error: 'Toggle' is only available in macOS 10.15 or newer
62 |     VStack {
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
   |             |- error: 'Toggle' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
65 |                 Text("Switch")
66 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:64:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
62 |     VStack {
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
65 |                 Text("Switch")
66 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:65:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
66 |             }
67 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:65:17: error: 'Text' is only available in macOS 10.15 or newer
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
66 |             }
67 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:64:41: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
62 |     VStack {
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
   |                                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
65 |                 Text("Switch")
66 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:63:16: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
61 |
62 |     VStack {
63 |         HStack {
   |                |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                `- note: add 'if #available' version check
64 |             Toggle(isOn: $switchState1) {
65 |                 Text("Switch")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:69:9: error: 'Toggle' is only available in macOS 10.15 or newer
67 |         }
68 |
69 |         Toggle(isOn: $switchState1) {}
   |         |- error: 'Toggle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
70 |             .disabled(true)
71 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:70:14: error: 'disabled' is only available in macOS 10.15 or newer
68 |
69 |         Toggle(isOn: $switchState1) {}
70 |             .disabled(true)
   |              |- error: 'disabled' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
71 |
72 |         Toggle(isOn: $switchState2) {}
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:72:9: error: 'Toggle' is only available in macOS 10.15 or newer
70 |             .disabled(true)
71 |
72 |         Toggle(isOn: $switchState2) {}
   |         |- error: 'Toggle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
73 |             .disabled(true)
74 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:73:14: error: 'disabled' is only available in macOS 10.15 or newer
71 |
72 |         Toggle(isOn: $switchState2) {}
73 |             .disabled(true)
   |              |- error: 'disabled' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
74 |
75 |         Toggle(isOn: $switchState2) {}
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:75:9: error: 'Toggle' is only available in macOS 10.15 or newer
73 |             .disabled(true)
74 |
75 |         Toggle(isOn: $switchState2) {}
   |         |- error: 'Toggle' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
76 |
77 |     }.toggleStyle(.neoBrutalismSwitch)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:62:12: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
60 |     @Previewable @State var switchState2 = false
61 |
62 |     VStack {
   |            |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |            `- note: add 'if #available' version check
63 |         HStack {
64 |             Toggle(isOn: $switchState1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Switch/Switch.swift:77:7: error: 'toggleStyle' is only available in macOS 10.15 or newer
75 |         Toggle(isOn: $switchState2) {}
76 |
77 |     }.toggleStyle(.neoBrutalismSwitch)
   |       |- error: 'toggleStyle' is only available in macOS 10.15 or newer
   |       `- note: add 'if #available' version check
78 | }
79 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:34:6: error: 'Previewable()' is only available in macOS 14.0 or newer
32 | @available(iOS 18.0, *)
33 | #Preview(traits: .modifier(NBPreviewHelper())) {
34 |     @Previewable @State var value = 0
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
35 |
36 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:34:19: error: 'State' is only available in macOS 10.15 or newer
32 | @available(iOS 18.0, *)
33 | #Preview(traits: .modifier(NBPreviewHelper())) {
34 |     @Previewable @State var value = 0
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
35 |
36 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:33:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
31 |
32 | @available(iOS 18.0, *)
33 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
34 |     @Previewable @State var value = 0
35 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:33:19: error: 'modifier' is only available in macOS 15.0 or newer
31 |
32 | @available(iOS 18.0, *)
33 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
34 |     @Previewable @State var value = 0
35 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:5: error: 'VStack' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:41: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |                                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:41: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |                                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:41: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |                                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:41: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |                                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:41: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |                                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:37:41: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
35 |
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
   |                                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                         `- note: add 'if #available' version check
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:39:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:39:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:39:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:39:45: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
   |                                             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                             `- note: add 'if #available' version check
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:39:45: error: 'Text' is only available in macOS 10.15 or newer
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
   |                                             |- error: 'Text' is only available in macOS 10.15 or newer
   |                                             `- note: add 'if #available' version check
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:39:43: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
   |                                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                           `- note: add 'if #available' version check
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:40:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
41 |             }
42 |             NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:40:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
41 |             }
42 |             NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:40:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
41 |             }
42 |             NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:40:45: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
   |                                             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                             `- note: add 'if #available' version check
41 |             }
42 |             NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:40:45: error: 'Text' is only available in macOS 10.15 or newer
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
   |                                             |- error: 'Text' is only available in macOS 10.15 or newer
   |                                             `- note: add 'if #available' version check
41 |             }
42 |             NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:40:43: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
38 |             NBTabsList {
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
   |                                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                           `- note: add 'if #available' version check
41 |             }
42 |             NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:38:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
36 |     VStack(spacing: 24.0) {
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
39 |                 NBTabsTrigger(tabItem: 0) { Text("First") }
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:42:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
42 |             NBFlatCard {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:42:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
42 |             NBFlatCard {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:42:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
42 |             NBFlatCard {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:42:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
40 |                 NBTabsTrigger(tabItem: 1) { Text("Second") }
41 |             }
42 |             NBFlatCard {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:43:17: error: 'ZStack' is only available in macOS 10.15 or newer
41 |             }
42 |             NBFlatCard {
43 |                 ZStack {
   |                 |- error: 'ZStack' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
44 |                     NBTabsContent(tabItem: 0) {
45 |                         Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:43:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 |             }
42 |             NBFlatCard {
43 |                 ZStack {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
44 |                     NBTabsContent(tabItem: 0) {
45 |                         Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:43:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 |             }
42 |             NBFlatCard {
43 |                 ZStack {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
44 |                     NBTabsContent(tabItem: 0) {
45 |                         Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:44:21: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |             NBFlatCard {
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
   |                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                     `- note: add 'if #available' version check
45 |                         Text("First")
46 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:44:21: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |             NBFlatCard {
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
   |                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                     `- note: add 'if #available' version check
45 |                         Text("First")
46 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:44:21: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |             NBFlatCard {
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
   |                     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                     `- note: add 'if #available' version check
45 |                         Text("First")
46 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:45:25: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
45 |                         Text("First")
   |                         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                         `- note: add 'if #available' version check
46 |                     }
47 |                     NBTabsContent(tabItem: 1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:45:25: error: 'Text' is only available in macOS 10.15 or newer
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
45 |                         Text("First")
   |                         |- error: 'Text' is only available in macOS 10.15 or newer
   |                         `- note: add 'if #available' version check
46 |                     }
47 |                     NBTabsContent(tabItem: 1) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:44:47: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
42 |             NBFlatCard {
43 |                 ZStack {
44 |                     NBTabsContent(tabItem: 0) {
   |                                               |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                               `- note: add 'if #available' version check
45 |                         Text("First")
46 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:48:25: error: 'VStack' is only available in macOS 10.15 or newer
46 |                     }
47 |                     NBTabsContent(tabItem: 1) {
48 |                         VStack {
   |                         |- error: 'VStack' is only available in macOS 10.15 or newer
   |                         `- note: add 'if #available' version check
49 |                             Text("Second")
50 |                             Text("Second")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:49:29: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
47 |                     NBTabsContent(tabItem: 1) {
48 |                         VStack {
49 |                             Text("Second")
   |                             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                             `- note: add 'if #available' version check
50 |                             Text("Second")
51 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:49:29: error: 'Text' is only available in macOS 10.15 or newer
47 |                     NBTabsContent(tabItem: 1) {
48 |                         VStack {
49 |                             Text("Second")
   |                             |- error: 'Text' is only available in macOS 10.15 or newer
   |                             `- note: add 'if #available' version check
50 |                             Text("Second")
51 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:50:29: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
48 |                         VStack {
49 |                             Text("Second")
50 |                             Text("Second")
   |                             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                             `- note: add 'if #available' version check
51 |                         }
52 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:50:29: error: 'Text' is only available in macOS 10.15 or newer
48 |                         VStack {
49 |                             Text("Second")
50 |                             Text("Second")
   |                             |- error: 'Text' is only available in macOS 10.15 or newer
   |                             `- note: add 'if #available' version check
51 |                         }
52 |                     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:48:32: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
46 |                     }
47 |                     NBTabsContent(tabItem: 1) {
48 |                         VStack {
   |                                |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                `- note: add 'if #available' version check
49 |                             Text("Second")
50 |                             Text("Second")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:48:32: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
46 |                     }
47 |                     NBTabsContent(tabItem: 1) {
48 |                         VStack {
   |                                |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                `- note: add 'if #available' version check
49 |                             Text("Second")
50 |                             Text("Second")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:43:24: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
41 |             }
42 |             NBFlatCard {
43 |                 ZStack {
   |                        |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                        `- note: add 'if #available' version check
44 |                     NBTabsContent(tabItem: 0) {
45 |                         Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:56:9: error: conformance of 'Spacer' to 'View' is only available in macOS 10.15 or newer
54 |             }
55 |         }
56 |         Spacer()
   |         |- error: conformance of 'Spacer' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
57 |     }
58 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:56:9: error: 'Spacer' is only available in macOS 10.15 or newer
54 |             }
55 |         }
56 |         Spacer()
   |         |- error: 'Spacer' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
57 |     }
58 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/Tabs.swift:36:27: error: conformance of 'Spacer' to 'View' is only available in macOS 10.15 or newer
34 |     @Previewable @State var value = 0
35 |
36 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Spacer' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
37 |         NBTabs(selectedTabItem: $value) {
38 |             NBTabsList {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:25:6: error: 'Previewable()' is only available in macOS 14.0 or newer
23 | @available(iOS 18.0, *)
24 | #Preview(traits: .modifier(NBPreviewHelper())) {
25 |     @Previewable @State var value = 0
   |      |- error: 'Previewable()' is only available in macOS 14.0 or newer
   |      `- note: add 'if #available' version check
26 |
27 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:25:19: error: 'State' is only available in macOS 10.15 or newer
23 | @available(iOS 18.0, *)
24 | #Preview(traits: .modifier(NBPreviewHelper())) {
25 |     @Previewable @State var value = 0
   |                   |- error: 'State' is only available in macOS 10.15 or newer
   |                   `- note: add 'if #available' version check
26 |
27 |     VStack(spacing: 24.0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:24:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
22 |
23 | @available(iOS 18.0, *)
24 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |  `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
25 |     @Previewable @State var value = 0
26 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:24:19: error: 'modifier' is only available in macOS 15.0 or newer
22 |
23 | @available(iOS 18.0, *)
24 | #Preview(traits: .modifier(NBPreviewHelper())) {
   |                   `- error: 'modifier' is only available in macOS 15.0 or newer
25 |     @Previewable @State var value = 0
26 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:27:5: error: 'VStack' is only available in macOS 10.15 or newer
25 |     @Previewable @State var value = 0
26 |
27 |     VStack(spacing: 24.0) {
   |     |- error: 'VStack' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:27:5: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
25 |     @Previewable @State var value = 0
26 |
27 |     VStack(spacing: 24.0) {
   |     |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |     `- note: add 'if #available' version check
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:27:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
25 |     @Previewable @State var value = 0
26 |
27 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:27:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
25 |     @Previewable @State var value = 0
26 |
27 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:27:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
25 |     @Previewable @State var value = 0
26 |
27 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:27:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
25 |     @Previewable @State var value = 0
26 |
27 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |         |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:20: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |                    |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                    `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:20: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |                    |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                    `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:29:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
30 |                 Text("First")
31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:29:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
30 |                 Text("First")
31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:29:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
   |             |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
30 |                 Text("First")
31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:30:17: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
   |                 |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
31 |             }
32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:30:17: error: 'Text' is only available in macOS 10.15 or newer
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
   |                 |- error: 'Text' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
31 |             }
32 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:29:39: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
   |                                       |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                                       `- note: add 'if #available' version check
30 |                 Text("First")
31 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:28:20: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
26 |
27 |     VStack(spacing: 24.0) {
28 |         NBFlatCard {
   |                    |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                    `- note: add 'if #available' version check
29 |             NBTabsContent(tabItem: 0) {
30 |                 Text("First")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:27:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
25 |     @Previewable @State var value = 0
26 |
27 |     VStack(spacing: 24.0) {
   |                           |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
28 |         NBFlatCard {
29 |             NBTabsContent(tabItem: 0) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Tabs/TabsContent.swift:34:6: error: 'environment' is only available in macOS 10.15 or newer
32 |         }
33 |     }
34 |     .environment(\.nbSelectedTabItem, 0)
   |      |- error: 'environment' is only available in macOS 10.15 or newer
   |      `- note: add 'if #available' version check
35 | }
36 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:11:9: error: 'Button' is only available in macOS 10.15 or newer
 5 | }
 6 |
 7 | public struct NBCheckboxToggleStyle: ToggleStyle {
   |               `- note: add '@available' attribute to enclosing struct
 8 |     @Environment(\.nbTheme) var theme: NBTheme
 9 |
10 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@available' attribute to enclosing instance method
11 |         Button {
   |         |- error: 'Button' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
12 |             withAnimation(.interactiveSpring) {
13 |                 configuration.isOn.toggle()
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:12:13: error: 'withAnimation' is only available in macOS 10.15 or newer
 5 | }
 6 |
 7 | public struct NBCheckboxToggleStyle: ToggleStyle {
   |               `- note: add '@available' attribute to enclosing struct
 8 |     @Environment(\.nbTheme) var theme: NBTheme
 9 |
10 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@available' attribute to enclosing instance method
11 |         Button {
12 |             withAnimation(.interactiveSpring) {
   |             |- error: 'withAnimation' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
13 |                 configuration.isOn.toggle()
14 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:12:28: error: 'interactiveSpring' is only available in macOS 10.15 or newer
 5 | }
 6 |
 7 | public struct NBCheckboxToggleStyle: ToggleStyle {
   |               `- note: add '@available' attribute to enclosing struct
 8 |     @Environment(\.nbTheme) var theme: NBTheme
 9 |
10 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@available' attribute to enclosing instance method
11 |         Button {
12 |             withAnimation(.interactiveSpring) {
   |                            |- error: 'interactiveSpring' is only available in macOS 10.15 or newer
   |                            `- note: add 'if #available' version check
13 |                 configuration.isOn.toggle()
14 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:13:17: error: cannot pass as inout because setter for 'isOn' is only available in macOS 10.15 or newer
 5 | }
 6 |
 7 | public struct NBCheckboxToggleStyle: ToggleStyle {
   |               `- note: add '@available' attribute to enclosing struct
 8 |     @Environment(\.nbTheme) var theme: NBTheme
 9 |
10 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@available' attribute to enclosing instance method
11 |         Button {
12 |             withAnimation(.interactiveSpring) {
13 |                 configuration.isOn.toggle()
   |                 |- error: cannot pass as inout because setter for 'isOn' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
14 |             }
15 |         } label: {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:16:13: error: 'HStack' is only available in macOS 10.15 or newer
 5 | }
 6 |
 7 | public struct NBCheckboxToggleStyle: ToggleStyle {
   |               `- note: add '@available' attribute to enclosing struct
 8 |     @Environment(\.nbTheme) var theme: NBTheme
 9 |
10 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@available' attribute to enclosing instance method
11 |         Button {
12 |             withAnimation(.interactiveSpring) {
   :
14 |             }
15 |         } label: {
16 |             HStack {
   |             |- error: 'HStack' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
17 |                 makeCheckbox(configuration: configuration)
18 |                 configuration.label
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:21:10: error: 'buttonStyle' is only available in macOS 10.15 or newer
 5 | }
 6 |
 7 | public struct NBCheckboxToggleStyle: ToggleStyle {
   |               `- note: add '@available' attribute to enclosing struct
 8 |     @Environment(\.nbTheme) var theme: NBTheme
 9 |
10 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@available' attribute to enclosing instance method
11 |         Button {
12 |             withAnimation(.interactiveSpring) {
   :
19 |             }
20 |         }
21 |         .buttonStyle(.plain)
   |          |- error: 'buttonStyle' is only available in macOS 10.15 or newer
   |          `- note: add 'if #available' version check
22 |     }
23 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:21:23: error: 'plain' is only available in macOS 10.15 or newer
 5 | }
 6 |
 7 | public struct NBCheckboxToggleStyle: ToggleStyle {
   |               `- note: add '@available' attribute to enclosing struct
 8 |     @Environment(\.nbTheme) var theme: NBTheme
 9 |
10 |     public func makeBody(configuration: Configuration) -> some View {
   |                 `- note: add '@available' attribute to enclosing instance method
11 |         Button {
12 |             withAnimation(.interactiveSpring) {
   :
19 |             }
20 |         }
21 |         .buttonStyle(.plain)
   |                       |- error: 'plain' is only available in macOS 10.15 or newer
   |                       `- note: add 'if #available' version check
22 |     }
23 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:27:9: error: 'ZStack' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
   |         |- error: 'ZStack' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
28 |             if configuration.isOn {
29 |                 theme.main
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:30:22: error: 'padding' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
29 |                 theme.main
30 |                     .padding(theme.borderWidth / 2) // Border to get the space it needs
   |                      |- error: 'padding' is only available in macOS 10.15 or newer
   |                      `- note: add 'if #available' version check
31 |             } else {
32 |                 theme.clear
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:28:35: error: 'buildEither(first:)' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   |                                   |- error: 'buildEither(first:)' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
29 |                 theme.main
30 |                     .padding(theme.borderWidth / 2) // Border to get the space it needs
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:32:17: error: conformance of 'Color' to 'View' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   :
30 |                     .padding(theme.borderWidth / 2) // Border to get the space it needs
31 |             } else {
32 |                 theme.clear
   |                 |- error: conformance of 'Color' to 'View' is only available in macOS 10.15 or newer
   |                 `- note: add 'if #available' version check
33 |             }
34 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:31:20: error: conformance of 'Color' to 'View' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
29 |                 theme.main
30 |                     .padding(theme.borderWidth / 2) // Border to get the space it needs
31 |             } else {
   |                    |- error: conformance of 'Color' to 'View' is only available in macOS 10.15 or newer
   |                    `- note: add 'if #available' version check
32 |                 theme.clear
33 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:31:20: error: 'buildEither(second:)' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
29 |                 theme.main
30 |                     .padding(theme.borderWidth / 2) // Border to get the space it needs
31 |             } else {
   |                    |- error: 'buildEither(second:)' is only available in macOS 10.15 or newer
   |                    `- note: add 'if #available' version check
32 |                 theme.clear
33 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:36:35: error: 'buildIf' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   :
34 |
35 |             // Checkbox
36 |             if configuration.isOn {
   |                                   |- error: 'buildIf' is only available in macOS 10.15 or newer
   |                                   `- note: add 'if #available' version check
37 |                 checkboxShape
38 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:38:13: error: 'buildIf' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   :
36 |             if configuration.isOn {
37 |                 checkboxShape
38 |             }
   |             |- error: 'buildIf' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
39 |         }
40 |         .overlay(
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:27:16: error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
   |                |- error: conformance of '_ConditionalContent<TrueContent, FalseContent>' to 'View' is only available in macOS 10.15 or newer
   |                `- note: add 'if #available' version check
28 |             if configuration.isOn {
29 |                 theme.main
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:27:16: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
   |                |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
   |                `- note: add 'if #available' version check
28 |             if configuration.isOn {
29 |                 theme.main
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:40:10: error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   :
38 |             }
39 |         }
40 |         .overlay(
   |          |- error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
   |          `- note: add 'if #available' version check
41 |             Rectangle()
42 |                 .stroke(theme.border, lineWidth: theme.borderWidth)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:41:13: error: 'Rectangle' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   :
39 |         }
40 |         .overlay(
41 |             Rectangle()
   |             |- error: 'Rectangle' is only available in macOS 10.15 or newer
   |             `- note: add 'if #available' version check
42 |                 .stroke(theme.border, lineWidth: theme.borderWidth)
43 |         )
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:42:18: error: 'stroke(_:lineWidth:antialiased:)' is only available in macOS 14.0 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   :
40 |         .overlay(
41 |             Rectangle()
42 |                 .stroke(theme.border, lineWidth: theme.borderWidth)
   |                  |- error: 'stroke(_:lineWidth:antialiased:)' is only available in macOS 14.0 or newer
   |                  `- note: add 'if #available' version check
43 |         )
44 |         .frame(width: theme.size, height: theme.size)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:44:10: error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
   |                  `- note: add '@available' attribute to enclosing instance method
27 |         ZStack {
28 |             if configuration.isOn {
   :
42 |                 .stroke(theme.border, lineWidth: theme.borderWidth)
43 |         )
44 |         .frame(width: theme.size, height: theme.size)
   |          |- error: 'frame(width:height:alignment:)' is only available in macOS 10.15 or newer
   |          `- note: add 'if #available' version check
45 |     }
46 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:49:14: error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
27 |         ZStack {
   :
45 |     }
46 |
47 |     private var checkboxShape: some View {
   |                 `- note: add '@available' attribute to enclosing property
48 |         NBCheckboxShape()
49 |             .stroke(theme.border, style: StrokeStyle(lineWidth: theme.borderWidth, lineCap: .round, lineJoin: .round))
   |              |- error: conformance of 'Color' to 'ShapeStyle' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
50 |     }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:49:14: error: 'stroke(_:style:antialiased:)' is only available in macOS 14.0 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
27 |         ZStack {
   :
45 |     }
46 |
47 |     private var checkboxShape: some View {
   |                 `- note: add '@available' attribute to enclosing property
48 |         NBCheckboxShape()
49 |             .stroke(theme.border, style: StrokeStyle(lineWidth: theme.borderWidth, lineCap: .round, lineJoin: .round))
   |              |- error: 'stroke(_:style:antialiased:)' is only available in macOS 14.0 or newer
   |              `- note: add 'if #available' version check
50 |     }
51 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:49:42: error: 'StrokeStyle' is only available in macOS 10.15 or newer
23 | }
24 |
25 | extension NBCheckboxToggleStyle {
   | `- note: add '@available' attribute to enclosing extension
26 |     private func makeCheckbox(configuration: Configuration) -> some View {
27 |         ZStack {
   :
45 |     }
46 |
47 |     private var checkboxShape: some View {
   |                 `- note: add '@available' attribute to enclosing property
48 |         NBCheckboxShape()
49 |             .stroke(theme.border, style: StrokeStyle(lineWidth: theme.borderWidth, lineCap: .round, lineJoin: .round))
   |                                          |- error: 'StrokeStyle' is only available in macOS 10.15 or newer
   |                                          `- note: add 'if #available' version check
50 |     }
51 | }
macro expansion #Preview:15:52: error: 'modifier' is only available in macOS 15.0 or newer
`- /Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Checbox/Checkbox.swift:73:2: note: expanded code originates here
52 |
53 | @available(iOS 18.0, *)
54 | #Preview(traits: .modifier(NBPreviewHelper())) {
   | |- note: in expansion of macro 'Preview' here
   | |- note: in expansion of macro 'Preview' here
   | `- note: in expansion of macro 'Preview' here
55 |     @Previewable @State var checkboxState1 = true
56 |     @Previewable @State var checkboxState2 = false
   :
71 |         Toggle(isOn: $checkboxState2) {}
72 |     }.toggleStyle(.neoBrutalismChecklist)
73 | }
   +--- macro expansion #Preview ---------------------------------------
   |11 |     }
   |12 |
   |13 |     static func makePreview() throws -> DeveloperToolsSupport.Preview {
   |   |                 `- note: add '@available' attribute to enclosing static method
   |14 |         if #available(iOS 18.0, *) {
   |15 |             DeveloperToolsSupport.Preview(traits: .modifier(NBPreviewHelper())) {
   |   |                                                    |- error: 'modifier' is only available in macOS 15.0 or newer
   |   |                                                    `- note: add 'if #available' version check
   |16 |                 struct __P_Previewable_Transform_Wrapper: SwiftUI.View {
   |17 |                     @State var checkboxState1 = true
   +--------------------------------------------------------------------
74 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:3:11: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
 1 | import SwiftUI
 2 |
 3 | extension EnvironmentValues {
   | |         `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
   | `- note: add '@available' attribute to enclosing extension
 4 |     @Entry var nbCollapsableDidToggle: NBCollapsableDidToggle = {}
 5 |     @Entry var nbCollapsableIsExpanded: Bool = false
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:9:6: error: 'Environment' is only available in macOS 10.15 or newer
 6 | }
 7 |
 8 | public struct NBCollapsableContent<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
 9 |     @Environment(\.nbCollapsableIsExpanded) var isExpanded
   |      `- error: 'Environment' is only available in macOS 10.15 or newer
10 |
11 |     let content: Content
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:13:18: error: 'ViewBuilder' is only available in macOS 10.15 or newer
 6 | }
 7 |
 8 | public struct NBCollapsableContent<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
 9 |     @Environment(\.nbCollapsableIsExpanded) var isExpanded
10 |
11 |     let content: Content
12 |
13 |     public init(@ViewBuilder content: () -> Content) {
   |            |     `- error: 'ViewBuilder' is only available in macOS 10.15 or newer
   |            `- note: add '@available' attribute to enclosing initializer
14 |         self.content = content()
15 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:17:27: error: 'View' is only available in macOS 10.15 or newer
 6 | }
 7 |
 8 | public struct NBCollapsableContent<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
 9 |     @Environment(\.nbCollapsableIsExpanded) var isExpanded
10 |
   :
15 |     }
16 |
17 |     public var body: some View {
   |                |          `- error: 'View' is only available in macOS 10.15 or newer
   |                `- note: add '@available' attribute to enclosing property
18 |         if isExpanded {
19 |             content
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:8:66: error: 'View' is only available in macOS 10.15 or newer
 6 | }
 7 |
 8 | public struct NBCollapsableContent<Content>: View where Content: View {
   |               |                                                  `- error: 'View' is only available in macOS 10.15 or newer
   |               `- note: add '@available' attribute to enclosing generic struct
 9 |     @Environment(\.nbCollapsableIsExpanded) var isExpanded
10 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:25:6: error: 'Environment' is only available in macOS 10.15 or newer
22 | }
23 |
24 | public struct NBCollapsibleTrigger<Trigger>: View where Trigger: View {
   |               `- note: add '@available' attribute to enclosing generic struct
25 |     @Environment(\.nbCollapsableDidToggle) var collapsableDidToggle
   |      `- error: 'Environment' is only available in macOS 10.15 or newer
26 |
27 |     let trigger: Trigger
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:29:18: error: 'ViewBuilder' is only available in macOS 10.15 or newer
22 | }
23 |
24 | public struct NBCollapsibleTrigger<Trigger>: View where Trigger: View {
   |               `- note: add '@available' attribute to enclosing generic struct
25 |     @Environment(\.nbCollapsableDidToggle) var collapsableDidToggle
26 |
27 |     let trigger: Trigger
28 |
29 |     public init(@ViewBuilder trigger: () -> Trigger) {
   |            |     `- error: 'ViewBuilder' is only available in macOS 10.15 or newer
   |            `- note: add '@available' attribute to enclosing initializer
30 |         self.trigger = trigger()
31 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:33:27: error: 'View' is only available in macOS 10.15 or newer
22 | }
23 |
24 | public struct NBCollapsibleTrigger<Trigger>: View where Trigger: View {
   |               `- note: add '@available' attribute to enclosing generic struct
25 |     @Environment(\.nbCollapsableDidToggle) var collapsableDidToggle
26 |
   :
31 |     }
32 |
33 |     public var body: some View {
   |                |          `- error: 'View' is only available in macOS 10.15 or newer
   |                `- note: add '@available' attribute to enclosing property
34 |         trigger
35 |             .contentShape(Rectangle())
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:24:66: error: 'View' is only available in macOS 10.15 or newer
22 | }
23 |
24 | public struct NBCollapsibleTrigger<Trigger>: View where Trigger: View {
   |               |                                                  `- error: 'View' is only available in macOS 10.15 or newer
   |               `- note: add '@available' attribute to enclosing generic struct
25 |     @Environment(\.nbCollapsableDidToggle) var collapsableDidToggle
26 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:44:6: error: 'Environment' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
   |      `- error: 'Environment' is only available in macOS 10.15 or newer
45 |
46 |     typealias CollapsableDidToggle = () -> Void
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:48:6: error: 'Binding' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
46 |     typealias CollapsableDidToggle = () -> Void
47 |
48 |     @Binding var isExpanded: Bool
   |      `- error: 'Binding' is only available in macOS 10.15 or newer
49 |     let content: Content
50 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:51:29: error: 'Binding' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
   :
49 |     let content: Content
50 |
51 |     public init(isExpanded: Binding<Bool>,
   |            |                `- error: 'Binding' is only available in macOS 10.15 or newer
   |            `- note: add '@available' attribute to enclosing initializer
52 |                 @ViewBuilder content: () -> Content)
53 |     {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:52:18: error: 'ViewBuilder' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
   :
49 |     let content: Content
50 |
51 |     public init(isExpanded: Binding<Bool>,
   |            `- note: add '@available' attribute to enclosing initializer
52 |                 @ViewBuilder content: () -> Content)
   |                  `- error: 'ViewBuilder' is only available in macOS 10.15 or newer
53 |     {
54 |         _isExpanded = isExpanded
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:58:27: error: 'View' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
   :
56 |     }
57 |
58 |     public var body: some View {
   |                |          `- error: 'View' is only available in macOS 10.15 or newer
   |                `- note: add '@available' attribute to enclosing property
59 |         VStack(spacing: theme.smspacing) {
60 |             content
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:43:59: error: 'View' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               |                                           `- error: 'View' is only available in macOS 10.15 or newer
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:18:23: error: 'buildIf' is only available in macOS 10.15 or newer
 6 | }
 7 |
 8 | public struct NBCollapsableContent<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
 9 |     @Environment(\.nbCollapsableIsExpanded) var isExpanded
10 |
   :
15 |     }
16 |
17 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
18 |         if isExpanded {
   |                       |- error: 'buildIf' is only available in macOS 10.15 or newer
   |                       `- note: add 'if #available' version check
19 |             content
20 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:20:9: error: 'buildIf' is only available in macOS 10.15 or newer
 6 | }
 7 |
 8 | public struct NBCollapsableContent<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
 9 |     @Environment(\.nbCollapsableIsExpanded) var isExpanded
10 |
   :
15 |     }
16 |
17 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
18 |         if isExpanded {
19 |             content
20 |         }
   |         |- error: 'buildIf' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
21 |     }
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:17:32: error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
 6 | }
 7 |
 8 | public struct NBCollapsableContent<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
 9 |     @Environment(\.nbCollapsableIsExpanded) var isExpanded
10 |
   :
15 |     }
16 |
17 |     public var body: some View {
   |                |               |- error: conformance of 'Optional<Wrapped>' to 'View' is only available in macOS 10.15 or newer
   |                |               `- note: add 'if #available' version check
   |                `- note: add '@available' attribute to enclosing property
18 |         if isExpanded {
19 |             content
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:35:14: error: 'contentShape(_:eoFill:)' is only available in macOS 10.15 or newer
22 | }
23 |
24 | public struct NBCollapsibleTrigger<Trigger>: View where Trigger: View {
   |               `- note: add '@available' attribute to enclosing generic struct
25 |     @Environment(\.nbCollapsableDidToggle) var collapsableDidToggle
26 |
   :
31 |     }
32 |
33 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
34 |         trigger
35 |             .contentShape(Rectangle())
   |              |- error: 'contentShape(_:eoFill:)' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
36 |             .onTapGesture {
37 |                 collapsableDidToggle()
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:35:27: error: 'Rectangle' is only available in macOS 10.15 or newer
22 | }
23 |
24 | public struct NBCollapsibleTrigger<Trigger>: View where Trigger: View {
   |               `- note: add '@available' attribute to enclosing generic struct
25 |     @Environment(\.nbCollapsableDidToggle) var collapsableDidToggle
26 |
   :
31 |     }
32 |
33 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
34 |         trigger
35 |             .contentShape(Rectangle())
   |                           |- error: 'Rectangle' is only available in macOS 10.15 or newer
   |                           `- note: add 'if #available' version check
36 |             .onTapGesture {
37 |                 collapsableDidToggle()
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:36:14: error: 'onTapGesture(count:perform:)' is only available in macOS 10.15 or newer
22 | }
23 |
24 | public struct NBCollapsibleTrigger<Trigger>: View where Trigger: View {
   |               `- note: add '@available' attribute to enclosing generic struct
25 |     @Environment(\.nbCollapsableDidToggle) var collapsableDidToggle
26 |
   :
31 |     }
32 |
33 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
34 |         trigger
35 |             .contentShape(Rectangle())
36 |             .onTapGesture {
   |              |- error: 'onTapGesture(count:perform:)' is only available in macOS 10.15 or newer
   |              `- note: add 'if #available' version check
37 |                 collapsableDidToggle()
38 |             }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:59:9: error: 'VStack' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
   :
56 |     }
57 |
58 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
59 |         VStack(spacing: theme.smspacing) {
   |         |- error: 'VStack' is only available in macOS 10.15 or newer
   |         `- note: add 'if #available' version check
60 |             content
61 |                 .environment(\.nbCollapsableIsExpanded, isExpanded)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:61:18: error: 'environment' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
   :
56 |     }
57 |
58 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
59 |         VStack(spacing: theme.smspacing) {
60 |             content
61 |                 .environment(\.nbCollapsableIsExpanded, isExpanded)
   |                  |- error: 'environment' is only available in macOS 10.15 or newer
   |                  `- note: add 'if #available' version check
62 |                 .environment(\.nbCollapsableDidToggle) { isExpanded.toggle() }
63 |         }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:62:18: error: 'environment' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
   :
56 |     }
57 |
58 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
59 |         VStack(spacing: theme.smspacing) {
60 |             content
61 |                 .environment(\.nbCollapsableIsExpanded, isExpanded)
62 |                 .environment(\.nbCollapsableDidToggle) { isExpanded.toggle() }
   |                  |- error: 'environment' is only available in macOS 10.15 or newer
   |                  `- note: add 'if #available' version check
63 |         }
64 |     }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:62:58: error: cannot pass as inout because setter for 'isExpanded' is only available in macOS 10.15 or newer
41 |
42 | typealias NBCollapsableDidToggle = () -> Void
43 | public struct NBCollapsable<Content>: View where Content: View {
   |               `- note: add '@available' attribute to enclosing generic struct
44 |     @Environment(\.nbTheme) var theme: NBTheme
45 |
   :
56 |     }
57 |
58 |     public var body: some View {
   |                `- note: add '@available' attribute to enclosing property
59 |         VStack(spacing: theme.smspacing) {
60 |             content
61 |                 .environment(\.nbCollapsableIsExpanded, isExpanded)
62 |                 .environment(\.nbCollapsableDidToggle) { isExpanded.toggle() }
   |                                                          |- error: cannot pass as inout because setter for 'isExpanded' is only available in macOS 10.15 or newer
   |                                                          `- note: add 'if #available' version check
63 |         }
64 |     }
macro expansion #Preview:15:52: error: 'modifier' is only available in macOS 15.0 or newer
`- /Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Collapsable.swift:96:2: note: expanded code originates here
66 |
67 | @available(iOS 18.0, *)
68 | #Preview(traits: .modifier(NBPreviewHelper())) {
   | |- note: in expansion of macro 'Preview' here
   | |- note: in expansion of macro 'Preview' here
   | `- note: in expansion of macro 'Preview' here
69 |     @Previewable @State var isExapanded = true
70 |
   :
94 |         }
95 |     }
96 | }
   +--- macro expansion #Preview ---------------------------------------
   |11 |     }
   |12 |
   |13 |     static func makePreview() throws -> DeveloperToolsSupport.Preview {
   |   |                 `- note: add '@available' attribute to enclosing static method
   |14 |         if #available(iOS 18.0, *) {
   |15 |             DeveloperToolsSupport.Preview(traits: .modifier(NBPreviewHelper())) {
   |   |                                                    |- error: 'modifier' is only available in macOS 15.0 or newer
   |   |                                                    `- note: add 'if #available' version check
   |16 |                 struct __P_Previewable_Transform_Wrapper: SwiftUI.View {
   |17 |                     @State var isExapanded = true
   +--------------------------------------------------------------------
97 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
BUILD FAILURE 6.3 macosSpm