Merge branch 'main' into starter-packs

This commit is contained in:
Hailey
2024-06-05 09:13:22 -07:00
4 changed files with 3 additions and 3 deletions
+1
View File
@@ -25,6 +25,7 @@ export type ListProps<ItemT> = Omit<
onRefresh?: () => void
onItemSeen?: (item: ItemT) => void
containWeb?: boolean
desktopFixedHeight?: number | boolean
sideBorders?: boolean
// Web only prop to disable a perf optimization (which would otherwise be on).
disableContentVisibility?: boolean
+1 -1
View File
@@ -22,7 +22,7 @@ export type ListProps<ItemT> = Omit<
refreshing?: boolean
onRefresh?: () => void
onItemSeen?: (item: ItemT) => void
desktopFixedHeight: any // TODO: Better types.
desktopFixedHeight?: number | boolean
containWeb?: boolean
sideBorders?: boolean
disableContentVisibility?: boolean