Build Information
Failed to build OversizeUI, reference main (8125b1), with Swift 6.1 for macOS (SPM) on 23 Feb 2026 00:22:41 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64Build Log
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[166/170] Compiling OversizeUI ScrollArrow.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[167/170] Compiling OversizeUI EmptyStateView.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[168/170] Compiling OversizeUI ErrorView.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[169/170] Compiling OversizeUI SuccessView.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[170/170] Compiling OversizeUI resource_bundle_accessor.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/148] Compiling OversizeUI FieldPositionEnvironment.swift
[3/148] Compiling OversizeUI IconStyleEnvironment.swift
[4/148] Compiling OversizeUI LoadingEnvironment.swift
[5/148] Compiling OversizeUI MultiSelectStyleEnvironment.swift
[6/148] Compiling OversizeUI PlatformEnvironment.swift
[7/148] Compiling OversizeUI PortraitEnvironment.swift
[8/148] Compiling OversizeUI PremiumEnvironment.swift
[9/148] Compiling OversizeUI RadiusEnvironment.swift
[10/148] Compiling OversizeUI RowContentMarginsEnvironment.swift
[11/148] Compiling OversizeUI ScreenEnvironment.swift
[12/148] Compiling OversizeUI SectionTitleMarginsEnvironment.swift
[13/148] Compiling OversizeUI SectionViewStyleEnvironment.swift
[14/148] Compiling OversizeUI SegmentedPickerMarginsEnvironment.swift
[15/148] Compiling OversizeUI SelectPickerStyleEnvironment.swift
[16/148] Compiling OversizeUI SurfaceContentMarginsEnvironment.swift
[17/148] Compiling OversizeUI SurfaceElevationEnvironment.swift
[18/164] Compiling OversizeUI SegmentedControlPreview.swift
[19/164] Compiling OversizeUI MultiSelect.swift
[20/164] Compiling OversizeUI MultiSelectPicker.swift
[21/164] Compiling OversizeUI Select.swift
[22/164] Compiling OversizeUI SelectPicker.swift
[23/164] Compiling OversizeUI LeadingVStack.swift
[24/164] Compiling OversizeUI MaterialSurface.swift
[25/164] Compiling OversizeUI Surface.swift
[26/164] Compiling OversizeUI Switch.swift
[27/164] Compiling OversizeUI TextBox.swift
[28/164] Compiling OversizeUI TextEditorPlaceholderViewModifier.swift
[29/164] Compiling OversizeUI FieldHelperViewModifier.swift
[30/164] Compiling OversizeUI FieldTitleViewModifier.swift
[31/164] Compiling OversizeUI LabeledTextFieldStyle.swift
[32/164] Compiling OversizeUI TextFieldExtended.swift
[33/164] Compiling OversizeUI TextFieldValidationModifier.swift
[34/164] Compiling OversizeUI Snackbar.swift
[35/164] Compiling OversizeUI CheckboxStyle.swift
[36/164] Compiling OversizeUI RadioStyle.swift
[37/164] Compiling OversizeUI URLField.swift
[38/164] Compiling OversizeUI Appearance.swift
[39/164] Compiling OversizeUI Theme.swift
[40/164] Compiling OversizeUI ThemeSettings.swift
[41/164] Compiling OversizeUI Colors.swift
[42/164] Compiling OversizeUI EdgeSpaceInsets.swift
[43/164] Compiling OversizeUI Elevation.swift
[44/164] Compiling OversizeUI AccentEnvironment.swift
[45/164] Compiling OversizeUI BorderedEnvironment.swift
[46/164] Compiling OversizeUI ControlBorderShapeEnvironment.swift
[47/164] Compiling OversizeUI ControlPaddingEnvironment.swift
[48/164] Compiling OversizeUI ElevationEnvironment.swift
[49/164] Compiling OversizeUI FieldLabelPositionEnvironment.swift
[50/164] Compiling OversizeUI SurfaceRadiusEnvironment.swift
[51/164] Compiling OversizeUI ThemeEnvironment.swift
[52/164] Compiling OversizeUI IconSizes.swift
[53/164] Compiling OversizeUI Icons.swift
[54/164] Compiling OversizeUI Illustrations.swift
[55/164] Compiling OversizeUI Palette.swift
[56/164] Compiling OversizeUI ScrollOffsetPreferenceKey.swift
[57/164] Compiling OversizeUI SizePreferenceKey.swift
[58/164] Compiling OversizeUI Shadow.swift
[59/164] Compiling OversizeUI Space.swift
[60/164] Compiling OversizeUI Typography.swift
[61/164] Compiling OversizeUI Validation.swift
[62/164] Compiling OversizeUI ColorOverlay.swift
[63/164] Compiling OversizeUI DelayTask.swift
[64/164] Compiling OversizeUI IsEmpty.swift
[65/164] Compiling OversizeUI BadgeDeprecated.swift
[66/164] Compiling OversizeUI BarButton.swift
[67/164] Compiling OversizeUI ColorsDeprecated.swift
[68/164] Compiling OversizeUI ContentViewDeprecated.swift
[69/164] Compiling OversizeUI ControlPaddingDeprecated.swift
[70/164] Compiling OversizeUI FieldHelperDeprecated.swift
[71/164] Compiling OversizeUI HalfSheet.swift
[72/164] Compiling OversizeUI Icon.swift
[73/164] Compiling OversizeUI IconsNames.swift
[74/164] Compiling OversizeUI ModalNavigationBar.swift
[75/164] Compiling OversizeUI PageView.swift
[76/164] Compiling OversizeUI Page.swift
[77/164] Compiling OversizeUI RowContentMarginsDeprecated.swift
[78/164] Compiling OversizeUI ScrollViewOffset.swift
[79/164] Compiling OversizeUI SectionTitleMarginsDeprecated.swift
[80/164] Compiling OversizeUI SegmentedPickerMarginsDeprecated.swift
[81/164] Compiling OversizeUI ShadowDeprecated.swift
[82/164] Compiling OversizeUI PageIndexView.swift
[83/164] Compiling OversizeUI PhoneField.swift
[84/164] Compiling OversizeUI PremiumLabel.swift
[85/164] Compiling OversizeUI PriceField.swift
[86/164] Compiling OversizeUI Radio.swift
[87/164] Compiling OversizeUI RadioPicker.swift
[88/164] Compiling OversizeUI Row.swift
[89/164] Compiling OversizeUI RowButton.swift
[90/164] Compiling OversizeUI RowButtonStyle.swift
[91/164] Compiling OversizeUI RowTitle.swift
[92/164] Compiling OversizeUI ScrollViewHeader.swift
[93/164] Compiling OversizeUI ScrollViewWithOffset.swift
[94/164] Compiling OversizeUI SectionView.swift
[95/164] Compiling OversizeUI SegmentedControl.swift
[96/164] Compiling OversizeUI SegmentedControlStyle.swift
[97/164] Compiling OversizeUI SegmentedControl+Extensions.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[98/164] Emitting module OversizeUI
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
[99/164] Compiling OversizeUI DateField.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[100/164] Compiling OversizeUI DatePickerSheet.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[101/164] Compiling OversizeUI MonthYearPickerSheet.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[102/164] Compiling OversizeUI Separator.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[103/164] Compiling OversizeUI GridSelect.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[104/164] Compiling OversizeUI GridSelectStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[105/164] Compiling OversizeUI HUD.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[106/164] Compiling OversizeUI HUDContent.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[107/164] Compiling OversizeUI EmojiPicker.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[108/164] Compiling OversizeUI IconPicker.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[109/164] Compiling OversizeUI KeyboardToolbar.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[110/164] Compiling OversizeUI MenuLabelStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[111/164] Compiling OversizeUI RowLabelStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[112/164] Compiling OversizeUI ToolbarLabelStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[113/164] Compiling OversizeUI LoaderOverlayView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[114/164] Compiling OversizeUI BarButtonMenuStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[115/164] Compiling OversizeUI NoticeView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/DateField/MonthYearPickerSheet.swift:74:32: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
72 | }
73 |
74 | public var body: some View {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
75 | VStack(spacing: .zero) {
76 | ScrollView(.horizontal) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Label/ToolbarLabelStyle.swift:29:31: error: reference to member 'glassProminent' cannot be resolved without a contextual type
27 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
28 | Button(configuration)
29 | .buttonStyle(.glassProminent)
| `- error: reference to member 'glassProminent' cannot be resolved without a contextual type
30 | } else {
31 | Button(configuration)
[116/164] Compiling OversizeUI SurfaceContentMarginsDeprecated.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[117/164] Compiling OversizeUI SurfaceDeprecated.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[118/164] Compiling OversizeUI View+NavigationView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[119/164] Compiling OversizeUI Color+RawRepresentable.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[120/164] Compiling OversizeUI Image+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[121/164] Compiling OversizeUI Padding.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[122/164] Compiling OversizeUI Preview.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[123/164] Compiling OversizeUI Spacing.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[124/164] Compiling OversizeUI Text+Extensions.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[125/164] Compiling OversizeUI View+Alignment.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[126/164] Compiling OversizeUI View+Available.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[127/164] Compiling OversizeUI View+Background.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[128/164] Compiling OversizeUI View+CornerRadius.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[129/164] Compiling OversizeUI View+Cursor.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[130/164] Compiling OversizeUI View+IconOnSurface.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[131/164] Compiling OversizeUI View+If.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:13: error: cannot find 'safeAreaBar' in scope
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:73:32: error: cannot infer contextual base in reference to member 'top'
71 | func safeAreaBarTop(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
72 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
73 | safeAreaBar(edge: .top, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'top'
74 | } else {
75 | safeAreaInset(edge: .top, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:13: error: cannot find 'safeAreaBar' in scope
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot find 'safeAreaBar' in scope
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Extensions/View/View+Available.swift:82:32: error: cannot infer contextual base in reference to member 'bottom'
80 | func safeAreaBarBottom(alignment: HorizontalAlignment = .center, spacing: CGFloat? = nil, @ViewBuilder content: @escaping () -> some View) -> some View {
81 | if #available(iOS 26.0, macOS 26.0, tvOS 26.0, watchOS 26.0, *) {
82 | safeAreaBar(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
| `- error: cannot infer contextual base in reference to member 'bottom'
83 | } else {
84 | safeAreaInset(edge: .bottom, alignment: alignment, spacing: spacing, content: content)
[132/164] Compiling OversizeUI Avatar.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[133/164] Compiling OversizeUI AvatarModifiers.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[134/164] Compiling OversizeUI AvatarPreview.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[135/164] Compiling OversizeUI Background.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[136/164] Compiling OversizeUI Badge.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[137/164] Compiling OversizeUI Button.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[138/164] Compiling OversizeUI FieldButtonStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[139/164] Compiling OversizeUI IconButtonStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[140/164] Compiling OversizeUI ScaleButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[141/164] Compiling OversizeUI Checkbox.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[142/164] Compiling OversizeUI ColorSelector.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[143/164] Compiling OversizeUI ColorSelectorStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[144/164] Compiling OversizeUI AnyColorSelectorStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[145/164] Compiling OversizeUI GridColorSelectorStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[146/164] Compiling OversizeUI HorizontalColorSelectorStyle.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[147/164] Compiling OversizeUI ContentView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[148/164] Compiling OversizeUI ContentViewActionsBuilder.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Avatar/AvatarPreview.swift:38:32: warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
36 | Avatar(avatar: Image("Avatar", bundle: .module))
37 |
38 | Avatar(icon: Image(IconsNames.image.rawValue, bundle: .module))
| `- warning: 'IconsNames' is deprecated: Use Image.Base icons from Icons.swift instead
39 | }
40 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:26: error: value of type 'some View' has no member 'glassEffect'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: value of type 'some View' has no member 'glassEffect'
129 | }, else: {
130 | $0
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Controls/Button/Button.swift:128:39: error: cannot infer contextual base in reference to member 'clear'
126 | $0
127 | .background(background(for: configuration.role))
128 | .glassEffect(.clear.interactive())
| `- error: cannot infer contextual base in reference to member 'clear'
129 | }, else: {
130 | $0
[149/164] Compiling OversizeUI View+OnChange.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[150/164] Compiling OversizeUI View+Platform.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[151/164] Compiling OversizeUI View+SizeReader.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[152/164] Compiling OversizeUI CalendarLayoutView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[153/164] Compiling OversizeUI CoverLayoutView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[154/164] Compiling OversizeUI CoverLayoutViewModifier.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[155/164] Compiling OversizeUI LayoutView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[156/164] Compiling OversizeUI ListLayoutView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[157/164] Compiling OversizeUI LibraryContent.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[158/164] Compiling OversizeUI AnyShape.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[159/164] Compiling OversizeUI RoundedRectangleCorner.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[160/164] Compiling OversizeUI ScrollArrow.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[161/164] Compiling OversizeUI EmptyStateView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[162/164] Compiling OversizeUI ErrorView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[163/164] Compiling OversizeUI SuccessView.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
[164/164] Compiling OversizeUI resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:338:6: error: 'Previewable()' is only available in macOS 14.0 or newer
336 | @available(watchOS, unavailable)
337 | #Preview("Custom Day View") {
338 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
339 |
340 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:362:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
360 | background: { Color.backgroundSecondary }
361 | )
362 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
363 | }
364 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:371:6: error: 'Previewable()' is only available in macOS 14.0 or newer
369 | @available(watchOS, unavailable)
370 | #Preview("Default Day View") {
371 | @Previewable @State var selection = Date()
| |- error: 'Previewable()' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
372 |
373 | return NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:395:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
393 | background: { Color.backgroundSecondary }
394 | )
395 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
396 | }
397 | }
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:85:10: error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
83 | }
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
| |- error: 'toolbarTitleDisplayMode' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
86 | .sensoryFeedback(.selection, trigger: selection)
87 | .sheet(isPresented: $isShowMonthPicker) {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:86:10: error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
47 | }
48 |
49 | public var body: some View {
| `- note: add @available attribute to enclosing property
50 | ScrollView {
51 | ScrollViewOffsetTracker {
:
84 | .background(background.ignoresSafeArea())
85 | .toolbarTitleDisplayMode(.inline)
86 | .sensoryFeedback(.selection, trigger: selection)
| |- error: 'sensoryFeedback(_:trigger:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
87 | .sheet(isPresented: $isShowMonthPicker) {
88 | NavigationStack {
/Users/admin/builder/spi-builder-workspace/Sources/OversizeUI/Layouts/CalendarLayout/CalendarLayoutView.swift:165:14: error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
96 | }
97 |
98 | public var calendarView: some View {
| `- note: add @available attribute to enclosing property
99 | VStack(spacing: .zero) {
100 | LazyVGrid(columns: columns, spacing: 0) {
:
163 | .frame(height: calendarHeight)
164 | .onAppear { prepareCalendar() }
165 | .onChange(of: selection) { _, newValue in
| |- error: 'onChange(of:initial:_:)' is only available in macOS 14.0 or newer
| `- note: add 'if #available' version check
166 | let newMonth = calendar.date(
167 | from: calendar.dateComponents([.year, .month], from: newValue)
BUILD FAILURE 6.1 macosSpm