From a6a91c2e4d59ab0ed4bb269cefb9caedc7c7f704 Mon Sep 17 00:00:00 2001 From: Sergey Zwezdin Date: Mon, 9 Sep 2024 09:26:16 +0300 Subject: [PATCH] fix(react-native-modals): Additional components for Bottom Sheet Modal added to export --- .changeset/cyan-schools-guess.md | 5 +++++ .../src/components/bottom-sheet/index.ts | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) create mode 100644 .changeset/cyan-schools-guess.md diff --git a/.changeset/cyan-schools-guess.md b/.changeset/cyan-schools-guess.md new file mode 100644 index 000000000..7d346a7f9 --- /dev/null +++ b/.changeset/cyan-schools-guess.md @@ -0,0 +1,5 @@ +--- +"@relab/react-native-modals": patch +--- + +Additional components for Bottom Sheet Modal added to export diff --git a/packages/react/react-native-modals/src/components/bottom-sheet/index.ts b/packages/react/react-native-modals/src/components/bottom-sheet/index.ts index 791127876..27869edea 100644 --- a/packages/react/react-native-modals/src/components/bottom-sheet/index.ts +++ b/packages/react/react-native-modals/src/components/bottom-sheet/index.ts @@ -1,6 +1,6 @@ -// export * from './flat-list-modal' +export * from './flat-list-modal' export * from './modal' -// export * from './scroll-modal' -// export * from './section-list-modal' -// export * from './virtualized-list-modal' +export * from './scroll-modal' +export * from './section-list-modal' +export * from './virtualized-list-modal' export * from './modal-base'