Skip to content

Commit 7400c43

Browse files
committed
update
1 parent 59e9d2b commit 7400c43

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Package.resolved

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import PackageDescription
66
let package = Package(
77
name: "d3-scrollable-menu-list",
88
platforms: [
9-
.macOS("12"), .iOS("15"), .tvOS("16"), .watchOS("7"),
9+
.macOS("12"), .iOS("15"), .tvOS("16"), .watchOS("10"),
1010
],
1111
products: [
1212
// Products define the executables and libraries a package produces, and make them visible to other packages.

Sources/d3-scrollable-menu-list/ScrollableMenuList.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import SwiftUI
1414
/// **IMenuItem** from package **d3_menu_bar**,
1515
/// ``IListModel`` and
1616
/// ``IItemTpl``
17-
@available(iOS 15.0, macOS 12.0, tvOS 16.0, watchOS 7.0, *)
17+
@available(iOS 15.0, macOS 12.0, tvOS 16.0, watchOS 10.0, *)
1818
public struct ScrollableMenuList<C: IMenuItem, M: IListModel, Content: IItemTpl>: View where M.Category == C
1919
{
2020
/// detecting scroll movement

Sources/d3-scrollable-menu-list/example/ScrollableMenuListExample.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ enum MenuItems: String, IMenuItem {
1919
}
2020

2121
/// Example view to demonstrate ``ScrollableMenuList``
22-
@available(iOS 15.0, macOS 12.0, watchOS 7.0, *)
22+
@available(iOS 15.0, macOS 12.0, watchOS 8.0, *)
2323
public struct ScrollableMenuListExample: View {
2424
let data: [ListModel]
2525

0 commit comments

Comments
 (0)