Build Information
Failed to build NeoBrutalism, reference main (d0f704), with Swift 6.1 for macOS (SPM) on 9 Oct 2025 00:53:32 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
82 | }
83 | .nbDrawer(isPresented: $isShowingSheet) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
84 | VStack(spacing: 16) {
85 | Text("The Unbreakable Vow")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:84:9: error: 'VStack' is only available in macOS 10.15 or newer
82 | }
83 | .nbDrawer(isPresented: $isShowingSheet) {
84 | VStack(spacing: 16) {
| |- error: 'VStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
85 | Text("The Unbreakable Vow")
86 | .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:84:29: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
82 | }
83 | .nbDrawer(isPresented: $isShowingSheet) {
84 | VStack(spacing: 16) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
85 | Text("The Unbreakable Vow")
86 | .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:85:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
83 | .nbDrawer(isPresented: $isShowingSheet) {
84 | VStack(spacing: 16) {
85 | Text("The Unbreakable Vow")
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
86 | .font(.title)
87 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:85:13: error: 'Text' is only available in macOS 10.15 or newer
83 | .nbDrawer(isPresented: $isShowingSheet) {
84 | VStack(spacing: 16) {
85 | Text("The Unbreakable Vow")
| |- error: 'Text' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
86 | .font(.title)
87 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:86:18: error: 'font' is only available in macOS 10.15 or newer
84 | VStack(spacing: 16) {
85 | Text("The Unbreakable Vow")
86 | .font(.title)
| |- error: 'font' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
87 |
88 | Text("By tapping 'I Agree', you solemnly swear that you are up to no good.")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:86:24: error: 'title' is only available in macOS 10.15 or newer
84 | VStack(spacing: 16) {
85 | Text("The Unbreakable Vow")
86 | .font(.title)
| |- error: 'title' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
87 |
88 | Text("By tapping 'I Agree', you solemnly swear that you are up to no good.")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:88:13: error: 'Text' is only available in macOS 10.15 or newer
86 | .font(.title)
87 |
88 | Text("By tapping 'I Agree', you solemnly swear that you are up to no good.")
| |- error: 'Text' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
89 | .padding(2.0)
90 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:89:18: error: 'padding' is only available in macOS 10.15 or newer
87 |
88 | Text("By tapping 'I Agree', you solemnly swear that you are up to no good.")
89 | .padding(2.0)
| |- error: 'padding' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
90 |
91 | Button("I Agree") {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:91:13: error: 'Button' is only available in macOS 10.15 or newer
89 | .padding(2.0)
90 |
91 | Button("I Agree") {
| |- error: 'Button' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
92 | isShowingSheet.toggle()
93 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:91:13: error: 'init(_:action:)' is only available in macOS 10.15 or newer
89 | .padding(2.0)
90 |
91 | Button("I Agree") {
| |- error: 'init(_:action:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
92 | isShowingSheet.toggle()
93 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:91:20: error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
89 | .padding(2.0)
90 |
91 | Button("I Agree") {
| |- error: 'LocalizedStringKey' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
92 | isShowingSheet.toggle()
93 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:92:17: error: cannot pass as inout because setter for 'isShowingSheet' is only available in macOS 10.15 or newer
90 |
91 | Button("I Agree") {
92 | isShowingSheet.toggle()
| |- error: cannot pass as inout because setter for 'isShowingSheet' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
93 | }
94 | .buttonStyle(.neoBrutalism())
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:94:14: error: 'buttonStyle' is only available in macOS 10.15 or newer
92 | isShowingSheet.toggle()
93 | }
94 | .buttonStyle(.neoBrutalism())
| |- error: 'buttonStyle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
95 | .padding(.top)
96 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:95:14: error: 'padding' is only available in macOS 10.15 or newer
93 | }
94 | .buttonStyle(.neoBrutalism())
95 | .padding(.top)
| |- error: 'padding' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
96 | }
97 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Drawer.swift:84:29: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
82 | }
83 | .nbDrawer(isPresented: $isShowingSheet) {
84 | VStack(spacing: 16) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
85 | Text("The Unbreakable Vow")
86 | .font(.title)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:52:2: error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
50 |
51 | @available(iOS 18.0, *)
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
| `- error: 'Preview(_:traits:_:body:)' is only available in macOS 14.0 or newer
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:52:19: error: 'modifier' is only available in macOS 15.0 or newer
50 |
51 | @available(iOS 18.0, *)
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
| `- error: 'modifier' is only available in macOS 15.0 or newer
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:53:5: error: 'VStack' is only available in macOS 10.15 or newer
51 | @available(iOS 18.0, *)
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | VStack(spacing: 24.0) {
| |- error: 'VStack' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
54 | NBFlatCard {
55 | Text("some text")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:53:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
51 | @available(iOS 18.0, *)
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | 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
54 | NBFlatCard {
55 | Text("some text")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:53:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
51 | @available(iOS 18.0, *)
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | 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
54 | NBFlatCard {
55 | Text("some text")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:54:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | Text("some text")
56 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:54:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | Text("some text")
56 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:54:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | Text("some text")
56 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:55:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
55 | Text("some text")
| |- 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/FlatCard.swift:55:13: error: 'Text' is only available in macOS 10.15 or newer
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
55 | Text("some text")
| |- 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/FlatCard.swift:54:20: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | VStack(spacing: 24.0) {
54 | NBFlatCard {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
55 | Text("some text")
56 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:58:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
56 | }
57 |
58 | NBFlatCard(type: .neutral) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
59 | Text("Some other text")
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:58:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
56 | }
57 |
58 | NBFlatCard(type: .neutral) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
59 | Text("Some other text")
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:58:9: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
56 | }
57 |
58 | NBFlatCard(type: .neutral) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
59 | Text("Some other text")
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:58:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
56 | }
57 |
58 | NBFlatCard(type: .neutral) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
59 | Text("Some other text")
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:59:13: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
57 |
58 | NBFlatCard(type: .neutral) {
59 | Text("Some other text")
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
60 | }
61 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:59:13: error: 'Text' is only available in macOS 10.15 or newer
57 |
58 | NBFlatCard(type: .neutral) {
59 | Text("Some other text")
| |- error: 'Text' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
60 | }
61 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:58:36: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
56 | }
57 |
58 | NBFlatCard(type: .neutral) {
| |- error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
59 | Text("Some other text")
60 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:53:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
51 | @available(iOS 18.0, *)
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | 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
54 | NBFlatCard {
55 | Text("some text")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/FlatCard.swift:53:27: error: conformance of 'Text' to 'View' is only available in macOS 10.15 or newer
51 | @available(iOS 18.0, *)
52 | #Preview(traits: .modifier(NBPreviewHelper())) {
53 | 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
54 | NBFlatCard {
55 | Text("some text")
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.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 inputValue = ""
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
23 |
24 | VStack {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.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 inputValue = ""
| |- error: 'State' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
23 |
24 | VStack {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.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 inputValue = ""
23 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.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 inputValue = ""
23 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Components/Input.swift:24:5: error: 'VStack' is only available in macOS 10.15 or newer
22 | @Previewable @State var inputValue = ""
23 |
24 | VStack {
| |- error: 'VStack' 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: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: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: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: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: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: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: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: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: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: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: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: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: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: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: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/Common/NeoBrutalismBoxModifier.swift:11:14: error: 'cornerRadius(_:antialiased:)' is only available in macOS 10.15 or newer
1 | import SwiftUI
2 |
3 | struct NBBoxModifier: ViewModifier {
| `- note: add @available attribute to enclosing struct
4 | @Environment(\.nbTheme) var theme: NBTheme
5 |
6 | public let elevated: Bool
7 |
8 | func body(content: Content) -> some View {
| `- note: add @available attribute to enclosing instance method
9 | content
10 | // .foregroundStyle(theme.text)
11 | .cornerRadius(theme.borderRadius)
| |- error: 'cornerRadius(_:antialiased:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
12 | .shadow(
13 | color: theme.border,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/NeoBrutalismBoxModifier.swift:12:14: error: 'shadow(color:radius:x:y:)' is only available in macOS 10.15 or newer
1 | import SwiftUI
2 |
3 | struct NBBoxModifier: ViewModifier {
| `- note: add @available attribute to enclosing struct
4 | @Environment(\.nbTheme) var theme: NBTheme
5 |
6 | public let elevated: Bool
7 |
8 | func body(content: Content) -> some View {
| `- note: add @available attribute to enclosing instance method
9 | content
10 | // .foregroundStyle(theme.text)
11 | .cornerRadius(theme.borderRadius)
12 | .shadow(
| |- error: 'shadow(color:radius:x:y:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
13 | color: theme.border,
14 | radius: 0.0,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/NeoBrutalismBoxModifier.swift:18:14: error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
1 | import SwiftUI
2 |
3 | struct NBBoxModifier: ViewModifier {
| `- note: add @available attribute to enclosing struct
4 | @Environment(\.nbTheme) var theme: NBTheme
5 |
6 | public let elevated: Bool
7 |
8 | func body(content: Content) -> some View {
| `- note: add @available attribute to enclosing instance method
9 | content
10 | // .foregroundStyle(theme.text)
:
16 | y: elevated ? theme.boxShadowY : 0.0
17 | )
18 | .overlay(
| |- error: 'overlay(_:alignment:)' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
19 | RoundedRectangle(cornerRadius: theme.borderRadius, style: .circular)
20 | .stroke(theme.border, lineWidth: theme.borderWidth)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/NeoBrutalismBoxModifier.swift:19:17: error: 'RoundedRectangle' is only available in macOS 10.15 or newer
1 | import SwiftUI
2 |
3 | struct NBBoxModifier: ViewModifier {
| `- note: add @available attribute to enclosing struct
4 | @Environment(\.nbTheme) var theme: NBTheme
5 |
6 | public let elevated: Bool
7 |
8 | func body(content: Content) -> some View {
| `- note: add @available attribute to enclosing instance method
9 | content
10 | // .foregroundStyle(theme.text)
:
17 | )
18 | .overlay(
19 | RoundedRectangle(cornerRadius: theme.borderRadius, style: .circular)
| |- error: 'RoundedRectangle' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
20 | .stroke(theme.border, lineWidth: theme.borderWidth)
21 | )
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/NeoBrutalismBoxModifier.swift:20:22: error: 'stroke(_:lineWidth:antialiased:)' is only available in macOS 14.0 or newer
1 | import SwiftUI
2 |
3 | struct NBBoxModifier: ViewModifier {
| `- note: add @available attribute to enclosing struct
4 | @Environment(\.nbTheme) var theme: NBTheme
5 |
6 | public let elevated: Bool
7 |
8 | func body(content: Content) -> some View {
| `- note: add @available attribute to enclosing instance method
9 | content
10 | // .foregroundStyle(theme.text)
:
18 | .overlay(
19 | RoundedRectangle(cornerRadius: theme.borderRadius, style: .circular)
20 | .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
21 | )
22 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/NeoBrutalismBoxModifier.swift:27:9: error: conformance of 'ModifiedContent<Content, Modifier>' to 'View' is only available in macOS 10.15 or newer
23 | }
24 |
25 | public extension View {
| `- note: add @available attribute to enclosing extension
26 | func nbBox(elevated: Bool = true) -> some View {
| `- note: add @available attribute to enclosing instance method
27 | modifier(NBBoxModifier(elevated: elevated))
| |- error: conformance of 'ModifiedContent<Content, Modifier>' to 'View' 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/Common/NeoBrutalismBoxModifier.swift:27:9: error: 'modifier' is only available in macOS 10.15 or newer
23 | }
24 |
25 | public extension View {
| `- note: add @available attribute to enclosing extension
26 | func nbBox(elevated: Bool = true) -> some View {
| `- note: add @available attribute to enclosing instance method
27 | modifier(NBBoxModifier(elevated: elevated))
| |- error: 'modifier' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
28 | }
29 | }
macro expansion #Preview:15:52: error: 'modifier' is only available in macOS 15.0 or newer
`- /Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/NeoBrutalismBoxModifier.swift:50:2: note: expanded code originates here
48 |
49 | }.padding()
50 | }
+--- 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 | func __b_buildView(@SwiftUI.ViewBuilder body: () -> any SwiftUI.View) -> any SwiftUI.View {
|17 | body()
+--------------------------------------------------------------------
51 |
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:3:18: error: 'EnvironmentValues' is only available in macOS 10.15 or newer
1 | import SwiftUI
2 |
3 | public extension EnvironmentValues {
| | `- error: 'EnvironmentValues' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing extension
4 | @Entry var nbTheme: NBTheme = .default
5 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:8:44: error: 'View' is only available in macOS 10.15 or newer
5 | }
6 |
7 | public extension View {
| `- note: add @available attribute to enclosing extension
8 | func nbTheme(_ theme: NBTheme) -> some View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing instance method
9 | environment(\.nbTheme, theme)
10 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:7:18: error: 'View' is only available in macOS 10.15 or newer
5 | }
6 |
7 | public extension View {
| | `- error: 'View' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing extension
8 | func nbTheme(_ theme: NBTheme) -> some View {
9 | environment(\.nbTheme, theme)
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:34:45: error: 'clear' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
32 | public private(set) var mainText: Color
33 |
34 | public private(set) var clear: Color = .clear
| `- error: 'clear' is only available in macOS 10.15 or newer
35 |
36 | // MARK: Spacings
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:16:35: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
16 | public private(set) var main: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
17 |
18 | /* white and secondary black - main color when the UI element should be emphasised */
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:19:33: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
17 |
18 | /* white and secondary black - main color when the UI element should be emphasised */
19 | public private(set) var bw: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
20 |
21 | public private(set) var overlay: Color
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:21:38: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
19 | public private(set) var bw: Color
20 |
21 | public private(set) var overlay: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
22 |
23 | public private(set) var background: Color
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:23:41: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
21 | public private(set) var overlay: Color
22 |
23 | public private(set) var background: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
24 |
25 | public private(set) var blank: Color
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:25:36: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
23 | public private(set) var background: Color
24 |
25 | public private(set) var blank: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
26 |
27 | public private(set) var border: Color
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:27:37: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
25 | public private(set) var blank: Color
26 |
27 | public private(set) var border: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
28 |
29 | public private(set) var text: Color
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:29:35: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
27 | public private(set) var border: Color
28 |
29 | public private(set) var text: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
30 |
31 | /* text that is placed on background with main color */
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:32:39: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
30 |
31 | /* text that is placed on background with main color */
32 | public private(set) var mainText: Color
| `- error: 'Color' is only available in macOS 10.15 or newer
33 |
34 | public private(set) var clear: Color = .clear
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:34:36: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
32 | public private(set) var mainText: Color
33 |
34 | public private(set) var clear: Color = .clear
| `- error: 'Color' is only available in macOS 10.15 or newer
35 |
36 | // MARK: Spacings
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:180:56: error: cannot find type 'UIColor' in scope
178 | public extension Color {
179 | init(
180 | light lightColor: @escaping @autoclosure () -> UIColor,
| `- error: cannot find type 'UIColor' in scope
181 | dark darkColor: @escaping @autoclosure () -> UIColor
182 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:180:27: error: @escaping attribute only applies to function types
178 | public extension Color {
179 | init(
180 | light lightColor: @escaping @autoclosure () -> UIColor,
| `- error: @escaping attribute only applies to function types
181 | dark darkColor: @escaping @autoclosure () -> UIColor
182 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:181:54: error: cannot find type 'UIColor' in scope
179 | init(
180 | light lightColor: @escaping @autoclosure () -> UIColor,
181 | dark darkColor: @escaping @autoclosure () -> UIColor
| `- error: cannot find type 'UIColor' in scope
182 | ) {
183 | self.init(UIColor(light: lightColor(), dark: darkColor()))
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:181:25: error: @escaping attribute only applies to function types
179 | init(
180 | light lightColor: @escaping @autoclosure () -> UIColor,
181 | dark darkColor: @escaping @autoclosure () -> UIColor
| `- error: @escaping attribute only applies to function types
182 | ) {
183 | self.init(UIColor(light: lightColor(), dark: darkColor()))
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:61:23: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
59 | // MARK: Themes
60 |
61 | public static let `default`: NBTheme = .init(
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
62 | main: Color(
63 | light: .rgb(0.533, 0.667, 0.933),
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:102:15: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
103 | bw: Color? = nil,
104 | overlay: Color? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:103:13: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
103 | bw: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
104 | overlay: Color? = nil,
105 | background: Color? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:104:18: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
103 | bw: Color? = nil,
104 | overlay: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
105 | background: Color? = nil,
106 | blank: Color? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:105:21: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
103 | bw: Color? = nil,
104 | overlay: Color? = nil,
105 | background: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
106 | blank: Color? = nil,
107 | border: Color? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:106:16: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
103 | bw: Color? = nil,
104 | overlay: Color? = nil,
105 | background: Color? = nil,
106 | blank: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
107 | border: Color? = nil,
108 | text: Color? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:107:17: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
103 | bw: Color? = nil,
:
105 | background: Color? = nil,
106 | blank: Color? = nil,
107 | border: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
108 | text: Color? = nil,
109 | mainText: Color? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:108:15: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
103 | bw: Color? = nil,
:
106 | blank: Color? = nil,
107 | border: Color? = nil,
108 | text: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
109 | mainText: Color? = nil,
110 | smsize: CGFloat? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:109:19: error: 'Color' is only available in macOS 10.15 or newer
11 | }
12 |
13 | public struct NBTheme: Sendable {
| `- note: add @available attribute to enclosing struct
14 | // MARK: Color
15 |
:
99 | )
100 |
101 | public func updateBy(
| `- note: add @available attribute to enclosing instance method
102 | main: Color? = nil,
103 | bw: Color? = nil,
:
107 | border: Color? = nil,
108 | text: Color? = nil,
109 | mainText: Color? = nil,
| `- error: 'Color' is only available in macOS 10.15 or newer
110 | smsize: CGFloat? = nil,
111 | size: CGFloat? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:150:18: error: cannot find type 'UIColor' in scope
148 | }
149 |
150 | public extension UIColor {
| `- error: cannot find type 'UIColor' in scope
151 | convenience init(
152 | light lightColor: @escaping @autoclosure () -> UIColor,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:178:18: error: 'Color' is only available in macOS 10.15 or newer
176 | }
177 |
178 | public extension Color {
| | `- error: 'Color' is only available in macOS 10.15 or newer
| `- note: add @available attribute to enclosing extension
179 | init(
180 | light lightColor: @escaping @autoclosure () -> UIColor,
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:9:9: error: 'environment' is only available in macOS 10.15 or newer
5 | }
6 |
7 | public extension View {
| `- note: add @available attribute to enclosing extension
8 | func nbTheme(_ theme: NBTheme) -> some View {
| `- note: add @available attribute to enclosing instance method
9 | environment(\.nbTheme, theme)
| |- error: 'environment' is only available in macOS 10.15 or newer
| `- note: add 'if #available' version check
10 | }
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:183:19: error: cannot find 'UIColor' in scope
181 | dark darkColor: @escaping @autoclosure () -> UIColor
182 | ) {
183 | self.init(UIColor(light: lightColor(), dark: darkColor()))
| `- error: cannot find 'UIColor' in scope
184 | }
185 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:152:56: error: cannot find type 'UIColor' in scope
150 | public extension UIColor {
151 | convenience init(
152 | light lightColor: @escaping @autoclosure () -> UIColor,
| `- error: cannot find type 'UIColor' in scope
153 | dark darkColor: @escaping @autoclosure () -> UIColor
154 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:152:27: error: @escaping attribute only applies to function types
150 | public extension UIColor {
151 | convenience init(
152 | light lightColor: @escaping @autoclosure () -> UIColor,
| `- error: @escaping attribute only applies to function types
153 | dark darkColor: @escaping @autoclosure () -> UIColor
154 | ) {
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:153:54: error: cannot find type 'UIColor' in scope
151 | convenience init(
152 | light lightColor: @escaping @autoclosure () -> UIColor,
153 | dark darkColor: @escaping @autoclosure () -> UIColor
| `- error: cannot find type 'UIColor' in scope
154 | ) {
155 | self.init { traitCollection in
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:153:25: error: @escaping attribute only applies to function types
151 | convenience init(
152 | light lightColor: @escaping @autoclosure () -> UIColor,
153 | dark darkColor: @escaping @autoclosure () -> UIColor
| `- error: @escaping attribute only applies to function types
154 | ) {
155 | self.init { traitCollection in
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:169:75: error: cannot find type 'UIColor' in scope
167 | }
168 |
169 | static func rgb(_ red: CGFloat, _ green: CGFloat, _ blue: CGFloat) -> UIColor {
| `- error: cannot find type 'UIColor' in scope
170 | return .rgba(red, green, blue, 1.0)
171 | }
/Users/admin/builder/spi-builder-workspace/Sources/NeoBrutalism/Common/Theme.swift:173:94: error: cannot find type 'UIColor' in scope
171 | }
172 |
173 | static func rgba(_ red: CGFloat, _ green: CGFloat, _ blue: CGFloat, _ alpha: CGFloat) -> UIColor {
| `- error: cannot find type 'UIColor' in scope
174 | return .init(red: red, green: green, blue: blue, alpha: alpha)
175 | }
warning: 'spi-builder-workspace': found 116 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_off_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radioItem_unselected_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/textSkeleton_customSize_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_neutral_noShadow_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_default_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_0_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_neutral_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_100_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radio_singleSelection_secondSelected_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/roundSkeleton_default_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_multiline_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_default_pressed_reverse_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_with_icon_in_header_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_off_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_longText_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_only_main_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_with_icon_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_enabled_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLargeLabel_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_with_icon_in_header_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_default_full_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_on_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_longText_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_empty_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_long_text_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radioItem_unselected_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_on_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_on_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_on_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_enabled_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radio_withLabel_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_default_full_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_52_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_neutral_full_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_off_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_default_noShadow_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_20_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_on_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_52_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radioItem_selected_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_with_long_content_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/textSkeleton_default_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_default_noShadow_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_on_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLargeLabel_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/roundSkeleton_default_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_filled_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_empty_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radio_withLabel_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_multiline_text_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_header_and_main_only_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_on_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SliderTests/slider_0_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_20_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_on_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_off_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_on_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_0_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_neutral_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_default_pressed_reverse_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_on_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_on_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_off_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLargeLabel_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_off_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_multiline_text_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_off_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_off_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_filled_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_off_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_default_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_with_long_content_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_on_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_off_disabled_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_neutral_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_with_icon_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ProgressTests/progress_100_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_neutral_reverse_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_default_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_with_icon_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_long_text_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radio_singleSelection_secondSelected_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/textSkeleton_default_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_off_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_off_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_on_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLargeLabel_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_default_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radio_singleSelection_firstSelected_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/textSkeleton_customSize_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SliderTests/slider_48_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_with_icon_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SliderTests/slider_100_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switchWithLabel_on_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_off_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_only_main_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_off_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SwitchTests/switch_on_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_off_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/FlatCardTests/flatCard_multiline_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_disabled_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_header_and_main_only_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CardTests/card_neutral_full_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radio_singleSelection_firstSelected_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SliderTests/slider_100_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_neutral_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checbox_on_disabled_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_neutral_noShadow_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/InputTests/input_disabled_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/ButtonTests/button_neutral_reverse_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/RadioTests/radioItem_selected_min-size_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/roundSkeleton_customSize_min-height_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SkeletonTests/roundSkeleton_customSize_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/CheckboxTests/checboxWithLabel_off_min-size_dark.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SliderTests/slider_48_min-height_light.1.png
/Users/admin/builder/spi-builder-workspace/Tests/NeoBrutalismTests/__Snapshots__/SliderTests/slider_0_min-height_light.1.png
BUILD FAILURE 6.1 macosSpm