diff --git a/src/components/ModalSheetView/ModalSheetView.tsx b/src/components/ModalSheetView/ModalSheetView.tsx index ac1f4ca4..10f2c629 100644 --- a/src/components/ModalSheetView/ModalSheetView.tsx +++ b/src/components/ModalSheetView/ModalSheetView.tsx @@ -3,7 +3,7 @@ import { StyleSheet } from 'react-native'; import { Helpers } from 'react-native-ios-utilities'; import type { ModalSheetViewProps, ModalSheetViewRef } from './ModalSheetViewTypes'; -import type { ModalSheetViewContentProps } from './ModalSheetViewContentTypes'; +import type { ModalSheetViewContentProps } from '../ModalSheetViewContent'; import type { ModalSheetContentMap } from './ModalSheetContentMap'; import { RNIModalSheetView, type RNIModalSheetViewRef } from '../../native_components/RNIModalSheetVIew'; diff --git a/src/components/ModalSheetView/index.ts b/src/components/ModalSheetView/index.ts index de8822ba..bed07314 100644 --- a/src/components/ModalSheetView/index.ts +++ b/src/components/ModalSheetView/index.ts @@ -1,7 +1,3 @@ - export * from './ModalSheetView'; -export * from './ModalSheetViewMainContent'; - export type * from './ModalSheetViewTypes'; -export type * from './ModalSheetViewContentTypes'; diff --git a/src/components/ModalSheetView/ModalSheetViewContent.tsx b/src/components/ModalSheetViewContent/ModalSheetViewContent.tsx similarity index 95% rename from src/components/ModalSheetView/ModalSheetViewContent.tsx rename to src/components/ModalSheetViewContent/ModalSheetViewContent.tsx index c26944e2..dbef4d85 100644 --- a/src/components/ModalSheetView/ModalSheetViewContent.tsx +++ b/src/components/ModalSheetViewContent/ModalSheetViewContent.tsx @@ -3,9 +3,8 @@ import { StyleSheet, View, type StyleProp, type ViewStyle } from 'react-native'; import { RNIWrapperView, type StateViewID } from 'react-native-ios-utilities'; -import { DEFAULT_SHEET_CONTENT_ENTRY } from './ModalSheetContentMap'; +import { DEFAULT_SHEET_CONTENT_ENTRY } from '../ModalSheetView/ModalSheetContentMap'; import type { ModalSheetViewContentProps } from './ModalSheetViewContentTypes'; - import { IS_USING_NEW_ARCH } from '../../constants/LibEnv'; diff --git a/src/components/ModalSheetView/ModalSheetViewContentTypes.tsx b/src/components/ModalSheetViewContent/ModalSheetViewContentTypes.tsx similarity index 89% rename from src/components/ModalSheetView/ModalSheetViewContentTypes.tsx rename to src/components/ModalSheetViewContent/ModalSheetViewContentTypes.tsx index dcaadf5d..035ad8fc 100644 --- a/src/components/ModalSheetView/ModalSheetViewContentTypes.tsx +++ b/src/components/ModalSheetViewContent/ModalSheetViewContentTypes.tsx @@ -2,7 +2,7 @@ import type { ViewStyle } from 'react-native'; import type { RNIWrapperViewProps } from 'react-native-ios-utilities'; import type { RNIModalSheetViewProps } from "../../native_components/RNIModalSheetVIew"; -import type { ModalSheetContentMap } from "./ModalSheetContentMap"; +import type { ModalSheetContentMap } from "../ModalSheetView/ModalSheetContentMap"; export type ModalSheetViewContentInheritedProps = Pick