update package versions

This commit is contained in:
Hailey
2024-09-29 17:38:52 -07:00
parent 63bc2d8280
commit cc3b2d925d
3 changed files with 532 additions and 537 deletions
+27 -28
View File
@@ -114,34 +114,33 @@
"emoji-mart": "^5.5.2", "emoji-mart": "^5.5.2",
"emoji-regex": "^10.4.0", "emoji-regex": "^10.4.0",
"eventemitter3": "^5.0.1", "eventemitter3": "^5.0.1",
"expo": "^52.0.0-canary-20240927-ab8a962", "expo": "^51.0.34",
"expo-modules-core": "2.0.0-canary-20240927-ab8a962", "expo-application": "^5.9.1",
"expo-application": "^6.0.0-canary-20240927-ab8a962", "expo-blur": "^13.0.2",
"expo-blur": "^14.0.0-canary-20240927-ab8a962", "expo-build-properties": "^0.12.5",
"expo-build-properties": "^1.0.0-canary-20240927-ab8a962", "expo-camera": "~15.0.16",
"expo-camera": "~16.0.0-canary-20240927-ab8a962", "expo-clipboard": "^6.0.3",
"expo-clipboard": "^7.0.0-canary-20240927-ab8a962", "expo-dev-client": "^4.0.27",
"expo-dev-client": "^5.0.0-canary-20240927-ab8a962", "expo-device": "~6.0.2",
"expo-device": "~7.0.0-canary-20240927-ab8a962", "expo-file-system": "^17.0.1",
"expo-file-system": "^18.0.0-canary-20240927-ab8a962", "expo-font": "~12.0.10",
"expo-font": "13.0.0-canary-20240927-ab8a962", "expo-haptics": "^13.0.1",
"expo-haptics": "14.0.0-canary-20240927-ab8a962", "expo-image": "~1.13.0",
"expo-image": "~2.0.0-canary-20240927-ab8a962", "expo-image-manipulator": "^12.0.5",
"expo-image-manipulator": "^13.0.0-canary-20240927-ab8a962", "expo-image-picker": "~15.0.7",
"expo-image-picker": "~16.0.0-canary-20240927-ab8a962", "expo-linear-gradient": "^13.0.2",
"expo-linear-gradient": "^14.0.0-canary-20240927-ab8a962", "expo-linking": "^6.3.1",
"expo-linking": "^7.0.0-canary-20240927-ab8a962", "expo-localization": "~15.0.3",
"expo-localization": "~16.0.0-canary-20240927-ab8a962", "expo-media-library": "~16.0.5",
"expo-media-library": "~17.0.0-canary-20240927-ab8a962", "expo-navigation-bar": "~3.0.7",
"expo-navigation-bar": "~3.0.8-canary-20240927-ab8a962", "expo-notifications": "~0.28.17",
"expo-notifications": "1.0.0-canary-20240927-ab8a962", "expo-sharing": "^12.0.1",
"expo-sharing": "^13.0.0-canary-20240927-ab8a962", "expo-splash-screen": "~0.27.6",
"expo-splash-screen": "~1.0.0-canary-20240927-ab8a962", "expo-status-bar": "~1.12.1",
"expo-status-bar": "~1.12.2-canary-20240927-ab8a962", "expo-system-ui": "~3.0.7",
"expo-system-ui": "~4.0.0-canary-20240927-ab8a962", "expo-task-manager": "~11.8.2",
"expo-task-manager": "~12.0.0-canary-20240927-ab8a962", "expo-updates": "~0.25.25",
"expo-updates": "1.0.0-canary-20240927-ab8a962", "expo-web-browser": "~13.0.3",
"expo-web-browser": "14.0.0-canary-20240927-ab8a962",
"fast-text-encoding": "^1.0.6", "fast-text-encoding": "^1.0.6",
"history": "^5.3.0", "history": "^5.3.0",
"hls.js": "^1.5.11", "hls.js": "^1.5.11",
+28 -28
View File
@@ -13,8 +13,6 @@ import BottomSheet, {
BottomSheetBackdropProps, BottomSheetBackdropProps,
BottomSheetFlatList, BottomSheetFlatList,
BottomSheetFlatListMethods, BottomSheetFlatListMethods,
BottomSheetScrollView,
BottomSheetScrollViewMethods,
BottomSheetTextInput, BottomSheetTextInput,
BottomSheetView, BottomSheetView,
useBottomSheet, useBottomSheet,
@@ -240,32 +238,34 @@ export function Inner({children, style}: DialogInnerProps) {
) )
} }
export const ScrollableInner = React.forwardRef< export const ScrollableInner = Inner
BottomSheetScrollViewMethods,
DialogInnerProps // export const ScrollableInner = React.forwardRef<
>(function ScrollableInner({children, style}, ref) { // BottomSheetScrollViewMethods,
const insets = useSafeAreaInsets() // DialogInnerProps
return ( // >(function ScrollableInner({children, style}, ref) {
<BottomSheetScrollView // const insets = useSafeAreaInsets()
keyboardShouldPersistTaps="handled" // return (
style={[ // <BottomSheetScrollView
a.flex_1, // main diff is this // keyboardShouldPersistTaps="handled"
a.p_xl, // style={[
a.h_full, // a.flex_1, // main diff is this
{ // a.p_xl,
paddingTop: 40, // a.h_full,
borderTopLeftRadius: 40, // {
borderTopRightRadius: 40, // paddingTop: 40,
}, // borderTopLeftRadius: 40,
style, // borderTopRightRadius: 40,
]} // },
contentContainerStyle={a.pb_4xl} // style,
ref={ref}> // ]}
{children} // contentContainerStyle={a.pb_4xl}
<View style={{height: insets.bottom + a.pt_5xl.paddingTop}} /> // ref={ref}>
</BottomSheetScrollView> // {children}
) // <View style={{height: insets.bottom + a.pt_5xl.paddingTop}} />
}) // </BottomSheetScrollView>
// )
// })
export const InnerFlatList = React.forwardRef< export const InnerFlatList = React.forwardRef<
BottomSheetFlatListMethods, BottomSheetFlatListMethods,
+477 -481
View File
File diff suppressed because it is too large Load Diff