react-native-screens 4.24.0 → 4.25.0-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -3
- package/RNScreens.podspec +13 -3
- package/android/CMakeLists.txt +7 -22
- package/android/build.gradle +9 -28
- package/android/src/fabric/java/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.kt +0 -2
- package/android/src/fabric/java/com/swmansion/rnscreens/FabricEnabledViewGroup.kt +0 -8
- package/android/src/main/java/com/swmansion/rnscreens/CustomToolbar.kt +49 -13
- package/android/src/main/java/com/swmansion/rnscreens/RNScreensPackage.kt +10 -7
- package/android/src/main/java/com/swmansion/rnscreens/Screen.kt +15 -89
- package/android/src/main/java/com/swmansion/rnscreens/ScreenContainer.kt +13 -14
- package/android/src/main/java/com/swmansion/rnscreens/ScreenContainerViewManager.kt +0 -4
- package/android/src/main/java/com/swmansion/rnscreens/ScreenFragment.kt +3 -1
- package/android/src/main/java/com/swmansion/rnscreens/ScreenModalFragment.kt +1 -2
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackFragment.kt +26 -3
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackFragmentWrapper.kt +1 -3
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackHeaderConfig.kt +36 -16
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackHeaderConfigViewManager.kt +38 -86
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackHeaderSubview.kt +1 -1
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackHeaderSubviewManager.kt +1 -6
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackViewManager.kt +16 -6
- package/android/src/main/java/com/swmansion/rnscreens/ScreenViewManager.kt +21 -61
- package/android/src/main/java/com/swmansion/rnscreens/ScreensModule.kt +13 -26
- package/android/src/main/java/com/swmansion/rnscreens/SearchBarManager.kt +7 -37
- package/android/src/main/java/com/swmansion/rnscreens/bottomsheet/SheetUtils.kt +1 -17
- package/android/src/main/java/com/swmansion/rnscreens/ext/ViewExt.kt +4 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/common/ShadowStateProxy.kt +58 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/common/colorscheme/ColorScheme.kt +7 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/common/colorscheme/ColorSchemeCoordinator.kt +120 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/common/colorscheme/ColorSchemeListener.kt +5 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/common/colorscheme/ColorSchemeProviding.kt +9 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/{tabs/image/TabsImageLoader.kt → helpers/ImageLoader.kt} +9 -8
- package/android/src/main/java/com/swmansion/rnscreens/gamma/helpers/SystemDrawable.kt +3 -2
- package/android/src/main/java/com/swmansion/rnscreens/gamma/helpers/UIManagerHelperExt.kt +11 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/scrollviewmarker/ScrollViewMarker.kt +91 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/scrollviewmarker/ScrollViewMarkerViewManager.kt +55 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/scrollviewmarker/ScrollViewSeeking.kt +13 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/StackHeaderAppBarLayout.kt +109 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/StackHeaderAppBarLayoutBehavior.kt +29 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/StackHeaderCoordinator.kt +589 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/StackHeaderCoordinatorLayout.kt +100 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/StackHeaderScrollingViewBehavior.kt +19 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/config/OnHeaderConfigAttachListener.kt +5 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/config/OnHeaderConfigChangeListener.kt +5 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/config/StackHeaderConfig.kt +163 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/config/StackHeaderConfigProviding.kt +33 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/config/StackHeaderConfigViewManager.kt +192 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/config/StackHeaderType.kt +7 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/subview/OnStackHeaderSubviewChangeListener.kt +5 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/subview/StackHeaderSubview.kt +87 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/subview/StackHeaderSubviewCollapseMode.kt +20 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/subview/StackHeaderSubviewProviding.kt +14 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/subview/StackHeaderSubviewType.kt +8 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/header/subview/StackHeaderSubviewViewManager.kt +67 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/host/StackContainer.kt +17 -5
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/host/StackHost.kt +27 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/screen/StackScreen.kt +39 -7
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/screen/StackScreenFragment.kt +3 -1
- package/android/src/main/java/com/swmansion/rnscreens/gamma/stack/screen/StackScreenViewManager.kt +72 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{TabsHostAppearanceApplicator.kt → appearance/TabsAppearanceApplicator.kt} +99 -62
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/appearance/TabsAppearanceCoordinator.kt +51 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/appearance/TabsAppearanceModel.kt +25 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/container/MenuHelpers.kt +31 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/container/TabsActionOrigin.kt +26 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/container/TabsContainer.kt +645 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/container/TabsNavigationState.kt +60 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/container/TabsNavigationStateObserver.kt +53 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/container/TabsNavigationStateObserverRegistry.kt +88 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/host/TabsHost.kt +223 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{TabsHostA11yCoordinator.kt → host/TabsHostA11yCoordinator.kt} +3 -1
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/host/TabsHostEventEmitter.kt +77 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/host/TabsHostViewManager.kt +140 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/host/event/TabsHostTabSelectedEvent.kt +49 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/host/event/TabsHostTabSelectionPreventedEvent.kt +47 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/host/event/TabsHostTabSelectionRejectedEvent.kt +56 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{TabsScreen.kt → screen/TabsScreen.kt} +25 -21
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{TabsScreenDelegate.kt → screen/TabsScreenDelegate.kt} +2 -5
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{TabsScreenEventEmitter.kt → screen/TabsScreenEventEmitter.kt} +6 -6
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{TabsScreenFragment.kt → screen/TabsScreenFragment.kt} +4 -1
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/screen/TabsScreenViewManager.kt +234 -0
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{event → screen/event}/TabsScreenDidAppearEvent.kt +1 -1
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{event → screen/event}/TabsScreenDidDisappearEvent.kt +1 -1
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{event → screen/event}/TabsScreenWillAppearEvent.kt +1 -1
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/{event → screen/event}/TabsScreenWillDisappearEvent.kt +1 -1
- package/android/src/main/java/com/swmansion/rnscreens/safearea/SafeAreaView.kt +1 -65
- package/android/src/main/java/com/swmansion/rnscreens/safearea/{paper/SafeAreaViewEdges.kt → SafeAreaViewEdges.kt} +1 -1
- package/android/src/main/java/com/swmansion/rnscreens/safearea/SafeAreaViewManager.kt +0 -9
- package/android/src/main/java/com/swmansion/rnscreens/utils/ColorUtils.kt +25 -0
- package/android/src/main/java/com/swmansion/rnscreens/utils/DimensionUtils.kt +18 -0
- package/android/src/main/java/com/swmansion/rnscreens/utils/DrawableUtils.kt +23 -0
- package/android/src/main/java/com/swmansion/rnscreens/utils/RNSLog.kt +75 -7
- package/android/src/main/java/com/swmansion/rnscreens/utils/ScreenDummyLayoutHelper.kt +118 -34
- package/android/src/main/jni/rnscreens.h +3 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSSplitScreenComponentDescriptor.h +39 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSSplitScreenShadowNode.cpp +13 -0
- package/common/cpp/react/renderer/components/rnscreens/{RNSSplitViewScreenShadowNode.h → RNSSplitScreenShadowNode.h} +7 -7
- package/common/cpp/react/renderer/components/rnscreens/{RNSSplitViewScreenState.h → RNSSplitScreenState.h} +6 -6
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderConfigComponentDescriptor.h +43 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderConfigShadowNode.cpp +21 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderConfigShadowNode.h +33 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderConfigState.cpp +13 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderConfigState.h +44 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderSubviewComponentDescriptor.h +14 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderSubviewShadowNode.cpp +30 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderSubviewShadowNode.h +37 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderSubviewState.cpp +12 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackHeaderSubviewState.h +39 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackScreenComponentDescriptor.h +42 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackScreenShadowNode.cpp +15 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackScreenShadowNode.h +30 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackScreenState.cpp +13 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSStackScreenState.h +44 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSTabsBottomAccessoryShadowNode.cpp +17 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSTabsBottomAccessoryShadowNode.h +9 -0
- package/common/cpp/react/renderer/components/rnscreens/RNSTabsHostShadowNode.cpp +6 -2
- package/common/cpp/react/renderer/components/rnscreens/RNSTabsHostShadowNode.h +7 -2
- package/ios/RCTConvert+RNScreens.h +3 -13
- package/ios/RCTConvert+RNScreens.mm +2 -67
- package/ios/RCTImageComponentView+RNSScreenStackHeaderConfig.h +2 -2
- package/ios/RCTImageComponentView+RNSScreenStackHeaderConfig.mm +0 -4
- package/ios/RNSConvert.h +6 -6
- package/ios/RNSConvert.mm +0 -14
- package/ios/RNSEnums.h +3 -3
- package/ios/RNSFullWindowOverlay.h +6 -17
- package/ios/RNSFullWindowOverlay.mm +7 -60
- package/ios/RNSModalScreen.mm +8 -17
- package/ios/RNSModule.h +2 -6
- package/ios/RNSModule.mm +2 -19
- package/ios/RNSScreen.h +13 -49
- package/ios/RNSScreen.mm +97 -339
- package/ios/RNSScreenContainer.h +2 -11
- package/ios/RNSScreenContainer.mm +6 -33
- package/ios/RNSScreenContentWrapper.h +4 -11
- package/ios/RNSScreenContentWrapper.mm +9 -38
- package/ios/RNSScreenFooter.h +4 -11
- package/ios/RNSScreenFooter.mm +7 -32
- package/ios/RNSScreenNavigationContainer.mm +5 -14
- package/ios/RNSScreenStack.h +6 -19
- package/ios/RNSScreenStack.mm +52 -181
- package/ios/RNSScreenStackAnimator.mm +1 -2
- package/ios/RNSScreenStackHeaderConfig.h +3 -60
- package/ios/RNSScreenStackHeaderConfig.mm +11 -230
- package/ios/RNSScreenStackHeaderSubview.h +2 -12
- package/ios/RNSScreenStackHeaderSubview.mm +12 -62
- package/ios/RNSSearchBar.mm +10 -6
- package/ios/bridging/RNSReactBaseView.h +0 -13
- package/ios/conversion/RNSConversions-ScrollViewMarker.h +26 -0
- package/ios/conversion/RNSConversions-ScrollViewMarker.mm +44 -0
- package/ios/conversion/RNSConversions-SplitView.mm +20 -22
- package/ios/conversion/RNSConversions-Stack.h +2 -2
- package/ios/conversion/RNSConversions-Stack.mm +2 -2
- package/ios/conversion/RNSConversions-Tabs.mm +79 -54
- package/ios/conversion/RNSConversions.h +33 -28
- package/ios/gamma/scroll-view-marker/RNSScrollViewMarkerComponentView.h +11 -0
- package/ios/gamma/scroll-view-marker/RNSScrollViewMarkerComponentView.mm +272 -0
- package/ios/gamma/scroll-view-marker/RNSScrollViewSeeking.h +15 -0
- package/ios/gamma/split/RNSSplitAppearanceApplicator.swift +194 -0
- package/ios/gamma/split/RNSSplitAppearanceCoordinator.swift +26 -0
- package/ios/gamma/split/RNSSplitAppearanceUpdateFlags.swift +11 -0
- package/ios/gamma/{split-view/RNSSplitViewHostComponentEventEmitter.h → split/RNSSplitHostComponentEventEmitter.h} +5 -5
- package/ios/gamma/{split-view/RNSSplitViewHostComponentEventEmitter.mm → split/RNSSplitHostComponentEventEmitter.mm} +4 -4
- package/ios/gamma/{split-view/RNSSplitViewHostComponentView.h → split/RNSSplitHostComponentView.h} +10 -10
- package/ios/gamma/{split-view/RNSSplitViewHostComponentView.mm → split/RNSSplitHostComponentView.mm} +83 -75
- package/ios/gamma/{split-view/RNSSplitViewHostComponentViewManager.h → split/RNSSplitHostComponentViewManager.h} +1 -1
- package/ios/gamma/split/RNSSplitHostComponentViewManager.mm +7 -0
- package/ios/gamma/{split-view/RNSSplitViewHostController.swift → split/RNSSplitHostController.swift} +82 -82
- package/ios/gamma/{split-view/RNSSplitViewNavigationController.swift → split/RNSSplitNavigationController.swift} +10 -10
- package/ios/gamma/{split-view/RNSSplitViewScreenComponentEventEmitter.h → split/RNSSplitScreenComponentEventEmitter.h} +5 -5
- package/ios/gamma/{split-view/RNSSplitViewScreenComponentEventEmitter.mm → split/RNSSplitScreenComponentEventEmitter.mm} +4 -4
- package/ios/gamma/{split-view/RNSSplitViewScreenComponentView.h → split/RNSSplitScreenComponentView.h} +17 -17
- package/ios/gamma/{split-view/RNSSplitViewScreenComponentView.mm → split/RNSSplitScreenComponentView.mm} +34 -24
- package/ios/gamma/{split-view/RNSSplitViewScreenComponentViewManager.h → split/RNSSplitScreenComponentViewManager.h} +1 -1
- package/ios/gamma/split/RNSSplitScreenComponentViewManager.mm +7 -0
- package/ios/gamma/split/RNSSplitScreenController.swift +133 -0
- package/ios/gamma/{split-view/RNSSplitViewScreenShadowStateProxy.h → split/RNSSplitScreenShadowStateProxy.h} +14 -14
- package/ios/gamma/{split-view/RNSSplitViewScreenShadowStateProxy.mm → split/RNSSplitScreenShadowStateProxy.mm} +10 -10
- package/ios/gamma/stack/host/RNSStackHostComponentView.h +1 -7
- package/ios/gamma/stack/host/RNSStackHostComponentView.mm +77 -83
- package/ios/gamma/stack/host/RNSStackNavigationController.h +13 -0
- package/ios/gamma/stack/host/RNSStackNavigationController.mm +82 -0
- package/ios/gamma/stack/host/RNSStackOperation.h +25 -0
- package/ios/gamma/stack/host/RNSStackOperation.mm +21 -0
- package/ios/gamma/stack/host/RNSStackOperationCoordinator.h +15 -0
- package/ios/gamma/stack/host/RNSStackOperationCoordinator.mm +78 -0
- package/ios/gamma/stack/screen/RNSStackScreenComponentView.h +1 -0
- package/ios/gamma/stack/screen/RNSStackScreenComponentView.mm +14 -1
- package/ios/gamma/stack/screen/RNSStackScreenController.h +15 -0
- package/ios/gamma/stack/screen/RNSStackScreenController.mm +66 -0
- package/ios/helpers/scroll-view/RNSScrollEdgeEffectApplicator.h +2 -1
- package/ios/helpers/scroll-view/RNSScrollEdgeEffectApplicator.mm +2 -1
- package/ios/safe-area/RNSSafeAreaViewComponentView.h +0 -17
- package/ios/safe-area/RNSSafeAreaViewComponentView.mm +7 -60
- package/ios/stubs/RNSGammaStubs.h +5 -2
- package/ios/stubs/RNSGammaStubs.mm +5 -2
- package/ios/tabs/RNSTabBarAppearanceCoordinator.h +2 -1
- package/ios/tabs/RNSTabBarAppearanceCoordinator.mm +1 -0
- package/ios/tabs/bottom-accessory/RNSTabsBottomAccessoryComponentView.h +4 -9
- package/ios/tabs/bottom-accessory/RNSTabsBottomAccessoryComponentView.mm +13 -15
- package/ios/tabs/bottom-accessory/RNSTabsBottomAccessoryComponentViewManager.mm +1 -1
- package/ios/tabs/bottom-accessory/RNSTabsBottomAccessoryContentComponentView.mm +10 -0
- package/ios/tabs/bottom-accessory/RNSTabsBottomAccessoryHelper.mm +34 -5
- package/ios/tabs/host/RNSTabBarController.h +196 -55
- package/ios/tabs/host/RNSTabBarController.mm +814 -53
- package/ios/tabs/host/RNSTabsHostComponentView.h +20 -16
- package/ios/tabs/host/RNSTabsHostComponentView.mm +144 -66
- package/ios/tabs/host/RNSTabsHostComponentViewManager.mm +0 -3
- package/ios/tabs/host/RNSTabsHostEventEmitter.h +49 -12
- package/ios/tabs/host/RNSTabsHostEventEmitter.mm +55 -17
- package/ios/tabs/host/RNSTabsNavigationState.h +184 -0
- package/ios/tabs/host/RNSTabsNavigationState.mm +78 -0
- package/ios/tabs/host/RNSTabsNavigationStateObserverRegistry.h +62 -0
- package/ios/tabs/host/RNSTabsNavigationStateObserverRegistry.mm +104 -0
- package/ios/tabs/screen/RNSTabsScreenComponentView.h +8 -22
- package/ios/tabs/screen/RNSTabsScreenComponentView.mm +44 -105
- package/ios/tabs/screen/RNSTabsScreenComponentViewManager.mm +1 -1
- package/ios/tabs/screen/RNSTabsScreenEventEmitter.h +1 -1
- package/ios/tabs/screen/RNSTabsScreenEventEmitter.mm +2 -2
- package/ios/tabs/screen/RNSTabsScreenViewController.h +8 -5
- package/ios/tabs/screen/RNSTabsScreenViewController.mm +18 -12
- package/ios/utils/RNSLog.swift +6 -0
- package/ios/utils/UIView+RNSUtility.h +1 -12
- package/ios/utils/UIView+RNSUtility.mm +2 -19
- package/lib/commonjs/components/ScreenStack.js +4 -1
- package/lib/commonjs/components/ScreenStack.js.map +1 -1
- package/lib/commonjs/components/ScreenStackHeaderConfig.js +8 -1
- package/lib/commonjs/components/ScreenStackHeaderConfig.js.map +1 -1
- package/lib/commonjs/components/ScreenStackItem.js +19 -7
- package/lib/commonjs/components/ScreenStackItem.js.map +1 -1
- package/lib/commonjs/components/SearchBar.js.map +1 -1
- package/lib/commonjs/components/contexts/TopInsetApplicationContext.js +33 -0
- package/lib/commonjs/components/contexts/TopInsetApplicationContext.js.map +1 -0
- package/lib/commonjs/components/gamma/scroll-view-marker/ScrollViewMarker.js +23 -0
- package/lib/commonjs/components/gamma/scroll-view-marker/ScrollViewMarker.js.map +1 -0
- package/lib/commonjs/components/gamma/scroll-view-marker/ScrollViewMarker.types.js +6 -0
- package/lib/commonjs/components/gamma/scroll-view-marker/ScrollViewMarker.types.js.map +1 -0
- package/lib/commonjs/components/gamma/scroll-view-marker/index.js +13 -0
- package/lib/commonjs/components/gamma/scroll-view-marker/index.js.map +1 -0
- package/lib/commonjs/components/gamma/split/SplitHost.js +5 -5
- package/lib/commonjs/components/gamma/split/SplitHost.js.map +1 -1
- package/lib/commonjs/components/gamma/split/SplitScreen.js +3 -3
- package/lib/commonjs/components/gamma/split/SplitScreen.js.map +1 -1
- package/lib/commonjs/components/gamma/split/index.js +2 -28
- package/lib/commonjs/components/gamma/split/index.js.map +1 -1
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.android.js +113 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.android.js.map +1 -0
- package/lib/commonjs/components/{tabs/TabsAccessoryContent.types.js → gamma/stack/header/StackHeaderConfig.android.types.js} +1 -1
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.android.types.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.d.js +2 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.d.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.ios.js +27 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.ios.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.ios.types.js +2 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.ios.types.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.types.js +6 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.types.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.web.js +10 -0
- package/lib/commonjs/components/gamma/stack/header/StackHeaderConfig.web.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/android/StackHeaderSubview.android.js +33 -0
- package/lib/commonjs/components/gamma/stack/header/android/StackHeaderSubview.android.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/android/StackHeaderSubview.android.types.js +6 -0
- package/lib/commonjs/components/gamma/stack/header/android/StackHeaderSubview.android.types.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/header/index.js +14 -0
- package/lib/commonjs/components/gamma/stack/header/index.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/{StackHost.js → host/StackHost.js} +1 -1
- package/lib/commonjs/components/gamma/stack/host/StackHost.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/host/StackHost.types.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/host/StackHost.web.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/host/index.js +14 -0
- package/lib/commonjs/components/gamma/stack/host/index.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/index.js +8 -33
- package/lib/commonjs/components/gamma/stack/index.js.map +1 -1
- package/lib/commonjs/components/gamma/stack/{StackScreen.js → screen/StackScreen.js} +2 -2
- package/lib/commonjs/components/gamma/stack/screen/StackScreen.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/screen/StackScreen.types.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/screen/StackScreen.web.js.map +1 -0
- package/lib/commonjs/components/gamma/stack/screen/index.js +14 -0
- package/lib/commonjs/components/gamma/stack/screen/index.js.map +1 -0
- package/lib/commonjs/components/helpers/PlatformUtils.js +9 -0
- package/lib/commonjs/components/helpers/PlatformUtils.js.map +1 -0
- package/lib/commonjs/components/helpers/prepareHeaderBarButtonItems.js +4 -3
- package/lib/commonjs/components/helpers/prepareHeaderBarButtonItems.js.map +1 -1
- package/lib/commonjs/components/safe-area/SafeAreaView.js +1 -2
- package/lib/commonjs/components/safe-area/SafeAreaView.js.map +1 -1
- package/lib/commonjs/components/safe-area/SafeAreaView.web.js +2 -3
- package/lib/commonjs/components/safe-area/SafeAreaView.web.js.map +1 -1
- package/lib/commonjs/components/safe-area/index.js +13 -0
- package/lib/commonjs/components/safe-area/index.js.map +1 -0
- package/lib/commonjs/components/tabs/{TabsAccessory.js → bottom-accessory/TabsBottomAccessory.js} +4 -4
- package/lib/commonjs/components/tabs/bottom-accessory/TabsBottomAccessory.js.map +1 -0
- package/lib/commonjs/components/tabs/bottom-accessory/TabsBottomAccessory.types.js +6 -0
- package/lib/commonjs/components/tabs/bottom-accessory/TabsBottomAccessory.types.js.map +1 -0
- package/lib/commonjs/components/tabs/{TabsAccessoryContent.js → bottom-accessory/TabsBottomAccessoryContent.js} +4 -4
- package/lib/commonjs/components/tabs/bottom-accessory/TabsBottomAccessoryContent.js.map +1 -0
- package/lib/commonjs/components/tabs/bottom-accessory/TabsBottomAccessoryContent.types.js +6 -0
- package/lib/commonjs/components/tabs/bottom-accessory/TabsBottomAccessoryContent.types.js.map +1 -0
- package/lib/commonjs/components/tabs/bottom-accessory/index.js +21 -0
- package/lib/commonjs/components/tabs/bottom-accessory/index.js.map +1 -0
- package/lib/commonjs/components/tabs/host/TabsHost.android.js +67 -0
- package/lib/commonjs/components/tabs/host/TabsHost.android.js.map +1 -0
- package/lib/commonjs/components/tabs/host/TabsHost.android.types.js +2 -0
- package/lib/commonjs/components/tabs/host/TabsHost.android.types.js.map +1 -0
- package/lib/commonjs/components/tabs/host/TabsHost.d.js +2 -0
- package/lib/commonjs/components/tabs/host/TabsHost.d.js.map +1 -0
- package/lib/commonjs/components/tabs/{TabsHost.js → host/TabsHost.ios.js} +42 -31
- package/lib/commonjs/components/tabs/host/TabsHost.ios.js.map +1 -0
- package/lib/commonjs/components/tabs/host/TabsHost.ios.types.js +6 -0
- package/lib/commonjs/components/tabs/host/TabsHost.ios.types.js.map +1 -0
- package/lib/commonjs/components/tabs/host/TabsHost.types.js.map +1 -0
- package/lib/commonjs/components/tabs/host/TabsHost.web.js.map +1 -0
- package/lib/commonjs/components/tabs/host/index.js +14 -0
- package/lib/commonjs/components/tabs/host/index.js.map +1 -0
- package/lib/commonjs/components/tabs/host/useTabsHost.js +31 -0
- package/lib/commonjs/components/tabs/host/useTabsHost.js.map +1 -0
- package/lib/commonjs/components/tabs/index.js +6 -8
- package/lib/commonjs/components/tabs/index.js.map +1 -1
- package/lib/commonjs/components/tabs/screen/TabsScreen.android.js +143 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.android.js.map +1 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.android.types.js +6 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.android.types.js.map +1 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.d.js +2 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.d.js.map +1 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.ios.js +165 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.ios.js.map +1 -0
- package/lib/commonjs/components/tabs/{TabsAccessory.types.js → screen/TabsScreen.ios.types.js} +1 -1
- package/lib/commonjs/components/tabs/screen/TabsScreen.ios.types.js.map +1 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.types.js.map +1 -0
- package/lib/commonjs/components/tabs/screen/TabsScreen.web.js.map +1 -0
- package/lib/commonjs/components/tabs/screen/index.js +14 -0
- package/lib/commonjs/components/tabs/screen/index.js.map +1 -0
- package/lib/commonjs/components/tabs/screen/useTabsScreen.js +54 -0
- package/lib/commonjs/components/tabs/screen/useTabsScreen.js.map +1 -0
- package/lib/commonjs/experimental/index.js +41 -19
- package/lib/commonjs/experimental/index.js.map +1 -1
- package/lib/commonjs/fabric/ModalScreenNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/ScreenNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/ScreenStackHeaderConfigNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/ScreenStackNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/SearchBarNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/gamma/ScrollViewMarkerNativeComponent.js +10 -0
- package/lib/commonjs/fabric/gamma/ScrollViewMarkerNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/gamma/{SplitViewHostNativeComponent.js → split/SplitHostNativeComponent.js} +2 -2
- package/lib/commonjs/fabric/gamma/split/SplitHostNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/gamma/{SplitViewScreenNativeComponent.js → split/SplitScreenNativeComponent.js} +2 -2
- package/lib/commonjs/fabric/gamma/split/SplitScreenNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.js +13 -0
- package/lib/commonjs/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.js +13 -0
- package/lib/commonjs/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/gamma/stack/StackHeaderSubviewAndroidNativeComponent.js +13 -0
- package/lib/commonjs/fabric/gamma/stack/StackHeaderSubviewAndroidNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/gamma/stack/StackScreenNativeComponent.js +3 -1
- package/lib/commonjs/fabric/gamma/stack/StackScreenNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/safe-area/SafeAreaViewNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/tabs/TabsBottomAccessoryNativeComponent.js +2 -1
- package/lib/commonjs/fabric/tabs/TabsBottomAccessoryNativeComponent.js.map +1 -1
- package/lib/commonjs/fabric/tabs/TabsHostAndroidNativeComponent.js +18 -0
- package/lib/commonjs/fabric/tabs/TabsHostAndroidNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/tabs/TabsHostIOSNativeComponent.js +17 -0
- package/lib/commonjs/fabric/tabs/TabsHostIOSNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/tabs/TabsScreenAndroidNativeComponent.js +17 -0
- package/lib/commonjs/fabric/tabs/TabsScreenAndroidNativeComponent.js.map +1 -0
- package/lib/commonjs/fabric/tabs/{TabsScreenNativeComponent.js → TabsScreenIOSNativeComponent.js} +9 -3
- package/lib/commonjs/fabric/tabs/TabsScreenIOSNativeComponent.js.map +1 -0
- package/lib/commonjs/flags.js +71 -12
- package/lib/commonjs/flags.js.map +1 -1
- package/lib/commonjs/index.js +13 -21
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/private/hooks/useRenderDebugInfo.js +2 -1
- package/lib/commonjs/private/hooks/useRenderDebugInfo.js.map +1 -1
- package/lib/commonjs/private/index.js +2 -8
- package/lib/commonjs/private/index.js.map +1 -1
- package/lib/commonjs/private/logging.js +27 -10
- package/lib/commonjs/private/logging.js.map +1 -1
- package/lib/module/components/ScreenStack.js +4 -1
- package/lib/module/components/ScreenStack.js.map +1 -1
- package/lib/module/components/ScreenStackHeaderConfig.js +8 -1
- package/lib/module/components/ScreenStackHeaderConfig.js.map +1 -1
- package/lib/module/components/ScreenStackItem.js +18 -6
- package/lib/module/components/ScreenStackItem.js.map +1 -1
- package/lib/module/components/SearchBar.js.map +1 -1
- package/lib/module/components/contexts/TopInsetApplicationContext.js +24 -0
- package/lib/module/components/contexts/TopInsetApplicationContext.js.map +1 -0
- package/lib/module/components/gamma/scroll-view-marker/ScrollViewMarker.js +16 -0
- package/lib/module/components/gamma/scroll-view-marker/ScrollViewMarker.js.map +1 -0
- package/lib/module/components/gamma/scroll-view-marker/ScrollViewMarker.types.js +2 -0
- package/lib/module/components/gamma/scroll-view-marker/ScrollViewMarker.types.js.map +1 -0
- package/lib/module/components/gamma/scroll-view-marker/index.js +2 -0
- package/lib/module/components/gamma/scroll-view-marker/index.js.map +1 -0
- package/lib/module/components/gamma/split/SplitHost.js +5 -5
- package/lib/module/components/gamma/split/SplitHost.js.map +1 -1
- package/lib/module/components/gamma/split/SplitScreen.js +3 -3
- package/lib/module/components/gamma/split/SplitScreen.js.map +1 -1
- package/lib/module/components/gamma/split/index.js +1 -5
- package/lib/module/components/gamma/split/index.js.map +1 -1
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.android.js +106 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.android.js.map +1 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.android.types.js +2 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.android.types.js.map +1 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.d.js +2 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.d.js.map +1 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.ios.js +21 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.ios.js.map +1 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.ios.types.js +2 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.ios.types.js.map +1 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.types.js +2 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.types.js.map +1 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.web.js +4 -0
- package/lib/module/components/gamma/stack/header/StackHeaderConfig.web.js.map +1 -0
- package/lib/module/components/gamma/stack/header/android/StackHeaderSubview.android.js +27 -0
- package/lib/module/components/gamma/stack/header/android/StackHeaderSubview.android.js.map +1 -0
- package/lib/module/components/gamma/stack/header/android/StackHeaderSubview.android.types.js +2 -0
- package/lib/module/components/gamma/stack/header/android/StackHeaderSubview.android.types.js.map +1 -0
- package/lib/module/components/gamma/stack/header/index.js +2 -0
- package/lib/module/components/gamma/stack/header/index.js.map +1 -0
- package/lib/module/components/gamma/stack/{StackHost.js → host/StackHost.js} +1 -1
- package/lib/module/components/gamma/stack/host/StackHost.js.map +1 -0
- package/lib/module/components/gamma/stack/host/StackHost.types.js.map +1 -0
- package/lib/module/components/gamma/stack/host/StackHost.web.js.map +1 -0
- package/lib/module/components/gamma/stack/host/index.js +2 -0
- package/lib/module/components/gamma/stack/host/index.js.map +1 -0
- package/lib/module/components/gamma/stack/index.js +6 -8
- package/lib/module/components/gamma/stack/index.js.map +1 -1
- package/lib/module/components/gamma/stack/{StackScreen.js → screen/StackScreen.js} +2 -2
- package/lib/module/components/gamma/stack/screen/StackScreen.js.map +1 -0
- package/lib/module/components/gamma/stack/screen/StackScreen.types.js.map +1 -0
- package/lib/module/components/gamma/stack/screen/StackScreen.web.js.map +1 -0
- package/lib/module/components/gamma/stack/screen/index.js +2 -0
- package/lib/module/components/gamma/stack/screen/index.js.map +1 -0
- package/lib/module/components/helpers/PlatformUtils.js +3 -0
- package/lib/module/components/helpers/PlatformUtils.js.map +1 -0
- package/lib/module/components/helpers/prepareHeaderBarButtonItems.js +4 -3
- package/lib/module/components/helpers/prepareHeaderBarButtonItems.js.map +1 -1
- package/lib/module/components/safe-area/SafeAreaView.js +1 -2
- package/lib/module/components/safe-area/SafeAreaView.js.map +1 -1
- package/lib/module/components/safe-area/SafeAreaView.web.js +1 -1
- package/lib/module/components/safe-area/SafeAreaView.web.js.map +1 -1
- package/lib/module/components/safe-area/index.js +2 -0
- package/lib/module/components/safe-area/index.js.map +1 -0
- package/lib/module/components/tabs/{TabsAccessory.js → bottom-accessory/TabsBottomAccessory.js} +3 -3
- package/lib/module/components/tabs/bottom-accessory/TabsBottomAccessory.js.map +1 -0
- package/lib/module/components/tabs/bottom-accessory/TabsBottomAccessory.types.js +2 -0
- package/lib/module/components/tabs/bottom-accessory/TabsBottomAccessory.types.js.map +1 -0
- package/lib/module/components/tabs/{TabsAccessoryContent.js → bottom-accessory/TabsBottomAccessoryContent.js} +3 -3
- package/lib/module/components/tabs/bottom-accessory/TabsBottomAccessoryContent.js.map +1 -0
- package/lib/module/components/tabs/bottom-accessory/TabsBottomAccessoryContent.types.js +2 -0
- package/lib/module/components/tabs/bottom-accessory/TabsBottomAccessoryContent.types.js.map +1 -0
- package/lib/module/components/tabs/bottom-accessory/index.js +3 -0
- package/lib/module/components/tabs/bottom-accessory/index.js.map +1 -0
- package/lib/module/components/tabs/host/TabsHost.android.js +62 -0
- package/lib/module/components/tabs/host/TabsHost.android.js.map +1 -0
- package/lib/module/components/tabs/host/TabsHost.android.types.js +2 -0
- package/lib/module/components/tabs/host/TabsHost.android.types.js.map +1 -0
- package/lib/module/components/tabs/host/TabsHost.d.js +2 -0
- package/lib/module/components/tabs/host/TabsHost.d.js.map +1 -0
- package/lib/module/components/tabs/host/TabsHost.ios.js +75 -0
- package/lib/module/components/tabs/host/TabsHost.ios.js.map +1 -0
- package/lib/module/components/tabs/host/TabsHost.ios.types.js +2 -0
- package/lib/module/components/tabs/host/TabsHost.ios.types.js.map +1 -0
- package/lib/module/components/tabs/host/TabsHost.types.js.map +1 -0
- package/lib/module/components/tabs/host/TabsHost.web.js.map +1 -0
- package/lib/module/components/tabs/host/index.js +2 -0
- package/lib/module/components/tabs/host/index.js.map +1 -0
- package/lib/module/components/tabs/host/useTabsHost.js +24 -0
- package/lib/module/components/tabs/host/useTabsHost.js.map +1 -0
- package/lib/module/components/tabs/index.js +3 -4
- package/lib/module/components/tabs/index.js.map +1 -1
- package/lib/module/components/tabs/screen/TabsScreen.android.js +138 -0
- package/lib/module/components/tabs/screen/TabsScreen.android.js.map +1 -0
- package/lib/module/components/tabs/screen/TabsScreen.android.types.js +2 -0
- package/lib/module/components/tabs/screen/TabsScreen.android.types.js.map +1 -0
- package/lib/module/components/tabs/screen/TabsScreen.d.js +2 -0
- package/lib/module/components/tabs/screen/TabsScreen.d.js.map +1 -0
- package/lib/module/components/tabs/screen/TabsScreen.ios.js +160 -0
- package/lib/module/components/tabs/screen/TabsScreen.ios.js.map +1 -0
- package/lib/module/components/tabs/screen/TabsScreen.ios.types.js +2 -0
- package/lib/module/components/tabs/screen/TabsScreen.ios.types.js.map +1 -0
- package/lib/module/components/tabs/screen/TabsScreen.types.js.map +1 -0
- package/lib/module/components/tabs/screen/TabsScreen.web.js.map +1 -0
- package/lib/module/components/tabs/screen/index.js +2 -0
- package/lib/module/components/tabs/screen/index.js.map +1 -0
- package/lib/module/components/tabs/screen/useTabsScreen.js +47 -0
- package/lib/module/components/tabs/screen/useTabsScreen.js.map +1 -0
- package/lib/module/experimental/index.js +5 -6
- package/lib/module/experimental/index.js.map +1 -1
- package/lib/module/fabric/ModalScreenNativeComponent.js.map +1 -1
- package/lib/module/fabric/ScreenNativeComponent.js.map +1 -1
- package/lib/module/fabric/ScreenStackHeaderConfigNativeComponent.js.map +1 -1
- package/lib/module/fabric/ScreenStackNativeComponent.js.map +1 -1
- package/lib/module/fabric/SearchBarNativeComponent.js.map +1 -1
- package/lib/module/fabric/gamma/ScrollViewMarkerNativeComponent.js +5 -0
- package/lib/module/fabric/gamma/ScrollViewMarkerNativeComponent.js.map +1 -0
- package/lib/module/fabric/gamma/{SplitViewHostNativeComponent.js → split/SplitHostNativeComponent.js} +2 -2
- package/lib/module/fabric/gamma/split/SplitHostNativeComponent.js.map +1 -0
- package/lib/module/fabric/gamma/{SplitViewScreenNativeComponent.js → split/SplitScreenNativeComponent.js} +2 -2
- package/lib/module/fabric/gamma/split/SplitScreenNativeComponent.js.map +1 -0
- package/lib/module/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.js +8 -0
- package/lib/module/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.js.map +1 -0
- package/lib/module/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.js +8 -0
- package/lib/module/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.js.map +1 -0
- package/lib/module/fabric/gamma/stack/StackHeaderSubviewAndroidNativeComponent.js +8 -0
- package/lib/module/fabric/gamma/stack/StackHeaderSubviewAndroidNativeComponent.js.map +1 -0
- package/lib/module/fabric/gamma/stack/StackScreenNativeComponent.js +3 -1
- package/lib/module/fabric/gamma/stack/StackScreenNativeComponent.js.map +1 -1
- package/lib/module/fabric/safe-area/SafeAreaViewNativeComponent.js.map +1 -1
- package/lib/module/fabric/tabs/TabsBottomAccessoryNativeComponent.js +2 -1
- package/lib/module/fabric/tabs/TabsBottomAccessoryNativeComponent.js.map +1 -1
- package/lib/module/fabric/tabs/TabsHostAndroidNativeComponent.js +17 -0
- package/lib/module/fabric/tabs/TabsHostAndroidNativeComponent.js.map +1 -0
- package/lib/module/fabric/tabs/TabsHostIOSNativeComponent.js +17 -0
- package/lib/module/fabric/tabs/TabsHostIOSNativeComponent.js.map +1 -0
- package/lib/module/fabric/tabs/TabsScreenAndroidNativeComponent.js +18 -0
- package/lib/module/fabric/tabs/TabsScreenAndroidNativeComponent.js.map +1 -0
- package/lib/module/fabric/tabs/TabsScreenIOSNativeComponent.js +20 -0
- package/lib/module/fabric/tabs/TabsScreenIOSNativeComponent.js.map +1 -0
- package/lib/module/flags.js +71 -12
- package/lib/module/flags.js.map +1 -1
- package/lib/module/index.js +5 -2
- package/lib/module/index.js.map +1 -1
- package/lib/module/private/hooks/useRenderDebugInfo.js +2 -1
- package/lib/module/private/hooks/useRenderDebugInfo.js.map +1 -1
- package/lib/module/private/index.js +1 -1
- package/lib/module/private/index.js.map +1 -1
- package/lib/module/private/logging.js +26 -8
- package/lib/module/private/logging.js.map +1 -1
- package/lib/typescript/components/DebugContainer.d.ts +1 -1
- package/lib/typescript/components/DebugContainer.d.ts.map +1 -1
- package/lib/typescript/components/FullWindowOverlay.d.ts +1 -1
- package/lib/typescript/components/FullWindowOverlay.d.ts.map +1 -1
- package/lib/typescript/components/ScreenFooter.d.ts +1 -1
- package/lib/typescript/components/ScreenFooter.d.ts.map +1 -1
- package/lib/typescript/components/ScreenStack.d.ts.map +1 -1
- package/lib/typescript/components/ScreenStackHeaderConfig.d.ts.map +1 -1
- package/lib/typescript/components/ScreenStackHeaderConfig.web.d.ts +1 -1
- package/lib/typescript/components/ScreenStackHeaderConfig.web.d.ts.map +1 -1
- package/lib/typescript/components/ScreenStackItem.d.ts +2 -2
- package/lib/typescript/components/ScreenStackItem.d.ts.map +1 -1
- package/lib/typescript/components/SearchBar.d.ts.map +1 -1
- package/lib/typescript/components/contexts/TopInsetApplicationContext.d.ts +8 -0
- package/lib/typescript/components/contexts/TopInsetApplicationContext.d.ts.map +1 -0
- package/lib/typescript/components/gamma/scroll-view-marker/ScrollViewMarker.d.ts +4 -0
- package/lib/typescript/components/gamma/scroll-view-marker/ScrollViewMarker.d.ts.map +1 -0
- package/lib/typescript/components/gamma/scroll-view-marker/ScrollViewMarker.types.d.ts +39 -0
- package/lib/typescript/components/gamma/scroll-view-marker/ScrollViewMarker.types.d.ts.map +1 -0
- package/lib/typescript/components/gamma/scroll-view-marker/index.d.ts +3 -0
- package/lib/typescript/components/gamma/scroll-view-marker/index.d.ts.map +1 -0
- package/lib/typescript/components/gamma/split/SplitHost.types.d.ts +30 -29
- package/lib/typescript/components/gamma/split/SplitHost.types.d.ts.map +1 -1
- package/lib/typescript/components/gamma/split/SplitScreen.types.d.ts +5 -5
- package/lib/typescript/components/gamma/split/SplitScreen.types.d.ts.map +1 -1
- package/lib/typescript/components/gamma/split/index.d.ts +4 -4
- package/lib/typescript/components/gamma/split/index.d.ts.map +1 -1
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.android.d.ts +8 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.android.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.android.types.d.ts +208 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.android.types.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.ios.d.ts +8 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.ios.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.ios.types.d.ts +3 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.ios.types.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.types.d.ts +50 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.types.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.web.d.ts +4 -0
- package/lib/typescript/components/gamma/stack/header/StackHeaderConfig.web.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/android/StackHeaderSubview.android.d.ts +8 -0
- package/lib/typescript/components/gamma/stack/header/android/StackHeaderSubview.android.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/android/StackHeaderSubview.android.types.d.ts +9 -0
- package/lib/typescript/components/gamma/stack/header/android/StackHeaderSubview.android.types.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/header/index.d.ts +5 -0
- package/lib/typescript/components/gamma/stack/header/index.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/host/StackHost.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/host/StackHost.types.d.ts +8 -0
- package/lib/typescript/components/gamma/stack/host/StackHost.types.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/host/StackHost.web.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/host/index.d.ts +3 -0
- package/lib/typescript/components/gamma/stack/host/index.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/index.d.ts +9 -6
- package/lib/typescript/components/gamma/stack/index.d.ts.map +1 -1
- package/lib/typescript/components/gamma/stack/screen/StackScreen.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/screen/StackScreen.types.d.ts +22 -0
- package/lib/typescript/components/gamma/stack/screen/StackScreen.types.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/screen/StackScreen.web.d.ts.map +1 -0
- package/lib/typescript/components/gamma/stack/screen/index.d.ts +3 -0
- package/lib/typescript/components/gamma/stack/screen/index.d.ts.map +1 -0
- package/lib/typescript/components/helpers/PlatformUtils.d.ts +2 -0
- package/lib/typescript/components/helpers/PlatformUtils.d.ts.map +1 -0
- package/lib/typescript/components/helpers/prepareHeaderBarButtonItems.d.ts +81 -81
- package/lib/typescript/components/helpers/prepareHeaderBarButtonItems.d.ts.map +1 -1
- package/lib/typescript/components/safe-area/SafeAreaView.d.ts +1 -2
- package/lib/typescript/components/safe-area/SafeAreaView.d.ts.map +1 -1
- package/lib/typescript/components/safe-area/SafeAreaView.types.d.ts +2 -2
- package/lib/typescript/components/safe-area/SafeAreaView.types.d.ts.map +1 -1
- package/lib/typescript/components/safe-area/SafeAreaView.web.d.ts +1 -1
- package/lib/typescript/components/safe-area/SafeAreaView.web.d.ts.map +1 -1
- package/lib/typescript/components/safe-area/index.d.ts +3 -0
- package/lib/typescript/components/safe-area/index.d.ts.map +1 -0
- package/lib/typescript/components/shared/types.d.ts +4 -0
- package/lib/typescript/components/shared/types.d.ts.map +1 -1
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessory.d.ts +7 -0
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessory.d.ts.map +1 -0
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessory.types.d.ts +9 -0
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessory.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessoryContent.d.ts +7 -0
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessoryContent.d.ts.map +1 -0
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessoryContent.types.d.ts +6 -0
- package/lib/typescript/components/tabs/bottom-accessory/TabsBottomAccessoryContent.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/bottom-accessory/index.d.ts +5 -0
- package/lib/typescript/components/tabs/bottom-accessory/index.d.ts.map +1 -0
- package/lib/typescript/components/tabs/host/TabsHost.android.d.ts +8 -0
- package/lib/typescript/components/tabs/host/TabsHost.android.d.ts.map +1 -0
- package/lib/typescript/components/tabs/host/TabsHost.android.types.d.ts +19 -0
- package/lib/typescript/components/tabs/host/TabsHost.android.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/{TabsHost.d.ts → host/TabsHost.ios.d.ts} +1 -1
- package/lib/typescript/components/tabs/host/TabsHost.ios.d.ts.map +1 -0
- package/lib/typescript/components/tabs/host/TabsHost.ios.types.d.ts +127 -0
- package/lib/typescript/components/tabs/host/TabsHost.ios.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/host/TabsHost.types.d.ts +244 -0
- package/lib/typescript/components/tabs/host/TabsHost.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/host/TabsHost.web.d.ts.map +1 -0
- package/lib/typescript/components/tabs/host/index.d.ts +5 -0
- package/lib/typescript/components/tabs/host/index.d.ts.map +1 -0
- package/lib/typescript/components/tabs/host/useTabsHost.d.ts +15 -0
- package/lib/typescript/components/tabs/host/useTabsHost.d.ts.map +1 -0
- package/lib/typescript/components/tabs/index.d.ts +6 -7
- package/lib/typescript/components/tabs/index.d.ts.map +1 -1
- package/lib/typescript/components/tabs/screen/TabsScreen.android.d.ts +8 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.android.d.ts.map +1 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.android.types.d.ts +182 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.android.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/{TabsScreen.d.ts → screen/TabsScreen.ios.d.ts} +1 -1
- package/lib/typescript/components/tabs/screen/TabsScreen.ios.d.ts.map +1 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.ios.types.d.ts +292 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.ios.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.types.d.ts +174 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.types.d.ts.map +1 -0
- package/lib/typescript/components/tabs/screen/TabsScreen.web.d.ts.map +1 -0
- package/lib/typescript/components/tabs/screen/index.d.ts +5 -0
- package/lib/typescript/components/tabs/screen/index.d.ts.map +1 -0
- package/lib/typescript/components/tabs/screen/useTabsScreen.d.ts +25 -0
- package/lib/typescript/components/tabs/screen/useTabsScreen.d.ts.map +1 -0
- package/lib/typescript/experimental/index.d.ts +4 -4
- package/lib/typescript/experimental/index.d.ts.map +1 -1
- package/lib/typescript/fabric/ModalScreenNativeComponent.d.ts +32 -27
- package/lib/typescript/fabric/ModalScreenNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/ScreenNativeComponent.d.ts +27 -27
- package/lib/typescript/fabric/ScreenNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/ScreenStackHeaderConfigNativeComponent.d.ts +32 -30
- package/lib/typescript/fabric/ScreenStackHeaderConfigNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/ScreenStackHeaderSubviewNativeComponent.d.ts +1 -1
- package/lib/typescript/fabric/ScreenStackHeaderSubviewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/ScreenStackNativeComponent.d.ts +4 -2
- package/lib/typescript/fabric/ScreenStackNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/SearchBarNativeComponent.d.ts +18 -18
- package/lib/typescript/fabric/SearchBarNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/gamma/ScrollViewMarkerNativeComponent.d.ts +11 -0
- package/lib/typescript/fabric/gamma/ScrollViewMarkerNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/gamma/{SplitViewHostNativeComponent.d.ts → split/SplitHostNativeComponent.d.ts} +6 -6
- package/lib/typescript/fabric/gamma/split/SplitHostNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/gamma/split/SplitScreenNativeComponent.d.ts +13 -0
- package/lib/typescript/fabric/gamma/split/SplitScreenNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.d.ts +20 -0
- package/lib/typescript/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.d.ts +10 -0
- package/lib/typescript/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/gamma/stack/StackHeaderSubviewAndroidNativeComponent.d.ts +10 -0
- package/lib/typescript/fabric/gamma/stack/StackHeaderSubviewAndroidNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/gamma/stack/StackScreenNativeComponent.d.ts +6 -6
- package/lib/typescript/fabric/gamma/stack/StackScreenNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/safe-area/SafeAreaViewNativeComponent.d.ts +1 -1
- package/lib/typescript/fabric/safe-area/SafeAreaViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/tabs/TabsBottomAccessoryNativeComponent.d.ts +1 -1
- package/lib/typescript/fabric/tabs/TabsBottomAccessoryNativeComponent.d.ts.map +1 -1
- package/lib/typescript/fabric/tabs/TabsHostAndroidNativeComponent.d.ts +39 -0
- package/lib/typescript/fabric/tabs/TabsHostAndroidNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/tabs/TabsHostIOSNativeComponent.d.ts +50 -0
- package/lib/typescript/fabric/tabs/TabsHostIOSNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/tabs/TabsScreenAndroidNativeComponent.d.ts +51 -0
- package/lib/typescript/fabric/tabs/TabsScreenAndroidNativeComponent.d.ts.map +1 -0
- package/lib/typescript/fabric/tabs/TabsScreenIOSNativeComponent.d.ts +68 -0
- package/lib/typescript/fabric/tabs/TabsScreenIOSNativeComponent.d.ts.map +1 -0
- package/lib/typescript/flags.d.ts +31 -2
- package/lib/typescript/flags.d.ts.map +1 -1
- package/lib/typescript/index.d.ts +3 -2
- package/lib/typescript/index.d.ts.map +1 -1
- package/lib/typescript/private/hooks/useRenderDebugInfo.d.ts.map +1 -1
- package/lib/typescript/private/index.d.ts +1 -1
- package/lib/typescript/private/index.d.ts.map +1 -1
- package/lib/typescript/private/logging.d.ts +6 -2
- package/lib/typescript/private/logging.d.ts.map +1 -1
- package/lib/typescript/types.d.ts +209 -188
- package/lib/typescript/types.d.ts.map +1 -1
- package/package.json +21 -21
- package/react-native.config.js +4 -1
- package/src/components/DebugContainer.tsx +1 -1
- package/src/components/FullWindowOverlay.tsx +1 -1
- package/src/components/ScreenFooter.tsx +1 -1
- package/src/components/ScreenStack.tsx +5 -0
- package/src/components/ScreenStackHeaderConfig.tsx +8 -0
- package/src/components/ScreenStackHeaderConfig.web.tsx +1 -1
- package/src/components/ScreenStackItem.tsx +38 -26
- package/src/components/SearchBar.tsx +3 -1
- package/src/components/contexts/TopInsetApplicationContext.ts +27 -0
- package/src/components/gamma/scroll-view-marker/ScrollViewMarker.tsx +17 -0
- package/src/components/gamma/scroll-view-marker/ScrollViewMarker.types.ts +42 -0
- package/src/components/gamma/scroll-view-marker/index.ts +3 -0
- package/src/components/gamma/split/SplitHost.tsx +9 -9
- package/src/components/gamma/split/SplitHost.types.ts +36 -40
- package/src/components/gamma/split/SplitScreen.tsx +5 -5
- package/src/components/gamma/split/SplitScreen.types.ts +13 -5
- package/src/components/gamma/split/index.ts +19 -5
- package/src/components/gamma/stack/header/StackHeaderConfig.android.tsx +166 -0
- package/src/components/gamma/stack/header/StackHeaderConfig.android.types.ts +213 -0
- package/src/components/gamma/stack/header/StackHeaderConfig.d.ts +17 -0
- package/src/components/gamma/stack/header/StackHeaderConfig.ios.tsx +18 -0
- package/src/components/gamma/stack/header/StackHeaderConfig.ios.types.ts +2 -0
- package/src/components/gamma/stack/header/StackHeaderConfig.types.ts +51 -0
- package/src/components/gamma/stack/header/StackHeaderConfig.web.tsx +5 -0
- package/src/components/gamma/stack/header/android/StackHeaderSubview.android.tsx +33 -0
- package/src/components/gamma/stack/header/android/StackHeaderSubview.android.types.ts +16 -0
- package/src/components/gamma/stack/header/index.ts +6 -0
- package/src/components/gamma/stack/{StackHost.tsx → host/StackHost.tsx} +1 -1
- package/src/components/gamma/stack/host/StackHost.types.ts +13 -0
- package/src/components/gamma/stack/host/index.ts +3 -0
- package/src/components/gamma/stack/index.ts +28 -7
- package/src/components/gamma/stack/{StackScreen.tsx → screen/StackScreen.tsx} +2 -2
- package/src/components/gamma/stack/{StackScreen.types.ts → screen/StackScreen.types.ts} +9 -9
- package/src/components/gamma/stack/screen/index.ts +3 -0
- package/src/components/helpers/PlatformUtils.ts +4 -0
- package/src/components/helpers/prepareHeaderBarButtonItems.ts +4 -2
- package/src/components/safe-area/SafeAreaView.tsx +1 -3
- package/src/components/safe-area/SafeAreaView.types.ts +2 -2
- package/src/components/safe-area/SafeAreaView.web.tsx +1 -1
- package/src/components/safe-area/index.ts +3 -0
- package/src/components/shared/types.ts +37 -0
- package/src/components/tabs/{TabsAccessory.tsx → bottom-accessory/TabsBottomAccessory.tsx} +3 -3
- package/src/components/tabs/bottom-accessory/TabsBottomAccessory.types.ts +15 -0
- package/src/components/tabs/bottom-accessory/TabsBottomAccessoryContent.tsx +19 -0
- package/src/components/tabs/bottom-accessory/TabsBottomAccessoryContent.types.ts +6 -0
- package/src/components/tabs/bottom-accessory/index.ts +5 -0
- package/src/components/tabs/host/TabsHost.android.tsx +65 -0
- package/src/components/tabs/host/TabsHost.android.types.ts +18 -0
- package/src/components/tabs/host/TabsHost.d.ts +15 -0
- package/src/components/tabs/host/TabsHost.ios.tsx +94 -0
- package/src/components/tabs/host/TabsHost.ios.types.ts +139 -0
- package/src/components/tabs/host/TabsHost.types.ts +274 -0
- package/src/components/tabs/host/index.ts +6 -0
- package/src/components/tabs/host/useTabsHost.ts +49 -0
- package/src/components/tabs/index.ts +43 -8
- package/src/components/tabs/screen/TabsScreen.android.tsx +198 -0
- package/src/components/tabs/screen/TabsScreen.android.types.ts +189 -0
- package/src/components/tabs/screen/TabsScreen.d.ts +15 -0
- package/src/components/tabs/screen/TabsScreen.ios.tsx +235 -0
- package/src/components/tabs/screen/TabsScreen.ios.types.ts +312 -0
- package/src/components/tabs/screen/TabsScreen.types.ts +202 -0
- package/src/components/tabs/screen/index.ts +6 -0
- package/src/components/tabs/screen/useTabsScreen.ts +97 -0
- package/src/experimental/index.ts +5 -8
- package/src/fabric/ModalScreenNativeComponent.ts +41 -27
- package/src/fabric/ScreenNativeComponent.ts +35 -27
- package/src/fabric/ScreenStackHeaderConfigNativeComponent.ts +36 -30
- package/src/fabric/ScreenStackHeaderSubviewNativeComponent.ts +1 -1
- package/src/fabric/ScreenStackNativeComponent.ts +7 -2
- package/src/fabric/SearchBarNativeComponent.ts +24 -18
- package/src/fabric/gamma/ScrollViewMarkerNativeComponent.ts +15 -0
- package/src/fabric/gamma/{SplitViewHostNativeComponent.ts → split/SplitHostNativeComponent.ts} +8 -6
- package/src/fabric/gamma/split/SplitScreenNativeComponent.ts +24 -0
- package/src/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.ts +39 -0
- package/src/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.ts +18 -0
- package/src/fabric/gamma/stack/StackHeaderSubviewAndroidNativeComponent.ts +27 -0
- package/src/fabric/gamma/stack/StackScreenNativeComponent.ts +11 -7
- package/src/fabric/safe-area/SafeAreaViewNativeComponent.ts +8 -6
- package/src/fabric/tabs/TabsBottomAccessoryNativeComponent.ts +4 -1
- package/src/fabric/tabs/TabsHostAndroidNativeComponent.ts +69 -0
- package/src/fabric/tabs/TabsHostIOSNativeComponent.ts +91 -0
- package/src/fabric/tabs/TabsScreenAndroidNativeComponent.ts +112 -0
- package/src/fabric/tabs/TabsScreenIOSNativeComponent.ts +171 -0
- package/src/flags.ts +94 -14
- package/src/index.tsx +6 -2
- package/src/private/hooks/useRenderDebugInfo.tsx +2 -1
- package/src/private/index.ts +1 -4
- package/src/private/logging.ts +27 -12
- package/src/types.tsx +262 -231
- package/android/src/main/java/com/swmansion/rnscreens/CustomAppBarLayout.kt +0 -25
- package/android/src/main/java/com/swmansion/rnscreens/ScreenStackHeaderConfigShadowNode.kt +0 -28
- package/android/src/main/java/com/swmansion/rnscreens/ScreensShadowNode.kt +0 -24
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/TabsHost.kt +0 -566
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/TabsHostAppearanceCoordinator.kt +0 -46
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/TabsHostEventEmitter.kt +0 -26
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/TabsHostViewManager.kt +0 -222
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/TabsScreenViewManager.kt +0 -246
- package/android/src/main/java/com/swmansion/rnscreens/gamma/tabs/event/TabsHostNativeFocusChangeEvent.kt +0 -47
- package/android/src/main/java/com/swmansion/rnscreens/safearea/paper/SafeAreaViewLocalData.kt +0 -10
- package/android/src/main/java/com/swmansion/rnscreens/safearea/paper/SafeAreaViewShadowNode.kt +0 -124
- package/android/src/main/java/com/swmansion/rnscreens/utils/PaddingBundle.kt +0 -9
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerDelegate.java +0 -37
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSSafeAreaViewManagerInterface.java +0 -20
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenContainerManagerDelegate.java +0 -27
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenContainerManagerInterface.java +0 -17
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerDelegate.java +0 -27
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenContentWrapperManagerInterface.java +0 -17
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenFooterManagerDelegate.java +0 -27
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenFooterManagerInterface.java +0 -17
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenManagerDelegate.java +0 -156
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenManagerInterface.java +0 -60
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerDelegate.java +0 -128
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenStackHeaderConfigManagerInterface.java +0 -50
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerDelegate.java +0 -39
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenStackHeaderSubviewManagerInterface.java +0 -20
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenStackManagerDelegate.java +0 -33
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSScreenStackManagerInterface.java +0 -17
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSSearchBarManagerDelegate.java +0 -107
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSSearchBarManagerInterface.java +0 -40
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSStackHostManagerDelegate.java +0 -27
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSStackHostManagerInterface.java +0 -17
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSStackScreenManagerDelegate.java +0 -39
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSStackScreenManagerInterface.java +0 -20
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSTabsHostManagerDelegate.java +0 -91
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSTabsHostManagerInterface.java +0 -37
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSTabsScreenManagerDelegate.java +0 -114
- package/android/src/paper/java/com/facebook/react/viewmanagers/RNSTabsScreenManagerInterface.java +0 -46
- package/android/src/paper/java/com/swmansion/rnscreens/FabricEnabledHeaderConfigViewGroup.kt +0 -56
- package/android/src/paper/java/com/swmansion/rnscreens/FabricEnabledHeaderSubviewViewGroup.kt +0 -19
- package/android/src/paper/java/com/swmansion/rnscreens/FabricEnabledViewGroup.kt +0 -19
- package/android/src/paper/java/com/swmansion/rnscreens/NativeProxy.kt +0 -23
- package/android/src/paper/java/com/swmansion/rnscreens/NativeScreensModuleSpec.java +0 -35
- package/common/cpp/react/renderer/components/rnscreens/RNSSplitViewScreenComponentDescriptor.h +0 -40
- package/common/cpp/react/renderer/components/rnscreens/RNSSplitViewScreenShadowNode.cpp +0 -13
- package/ios/RNSInvalidatedComponentsRegistry.h +0 -15
- package/ios/RNSInvalidatedComponentsRegistry.mm +0 -34
- package/ios/RNSViewControllerInvalidating.h +0 -15
- package/ios/RNSViewControllerInvalidator.h +0 -17
- package/ios/RNSViewControllerInvalidator.mm +0 -23
- package/ios/gamma/split-view/RNSSplitViewAppearanceApplicator.swift +0 -194
- package/ios/gamma/split-view/RNSSplitViewAppearanceCoordinator.swift +0 -26
- package/ios/gamma/split-view/RNSSplitViewAppearanceUpdateFlags.swift +0 -11
- package/ios/gamma/split-view/RNSSplitViewHostComponentViewManager.mm +0 -7
- package/ios/gamma/split-view/RNSSplitViewScreenComponentViewManager.mm +0 -7
- package/ios/gamma/split-view/RNSSplitViewScreenController.swift +0 -133
- package/ios/gamma/stack/host/RNSStackController.swift +0 -65
- package/ios/gamma/stack/screen/RNSStackScreenController.swift +0 -64
- package/ios/safe-area/paper/RNSSafeAreaViewEdges.h +0 -16
- package/ios/safe-area/paper/RNSSafeAreaViewEdges.mm +0 -37
- package/ios/safe-area/paper/RNSSafeAreaViewLocalData.h +0 -22
- package/ios/safe-area/paper/RNSSafeAreaViewLocalData.mm +0 -20
- package/ios/safe-area/paper/RNSSafeAreaViewManager.h +0 -16
- package/ios/safe-area/paper/RNSSafeAreaViewManager.mm +0 -28
- package/ios/safe-area/paper/RNSSafeAreaViewShadowView.h +0 -16
- package/ios/safe-area/paper/RNSSafeAreaViewShadowView.mm +0 -152
- package/ios/tabs/host/RNSTabBarControllerDelegate.h +0 -11
- package/ios/tabs/host/RNSTabBarControllerDelegate.mm +0 -87
- package/lib/commonjs/components/gamma/stack/StackHost.js.map +0 -1
- package/lib/commonjs/components/gamma/stack/StackHost.types.js.map +0 -1
- package/lib/commonjs/components/gamma/stack/StackHost.web.js.map +0 -1
- package/lib/commonjs/components/gamma/stack/StackScreen.js.map +0 -1
- package/lib/commonjs/components/gamma/stack/StackScreen.types.js.map +0 -1
- package/lib/commonjs/components/gamma/stack/StackScreen.web.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsAccessory.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsAccessory.types.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsAccessoryContent.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsAccessoryContent.types.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsHost.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsHost.types.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsHost.web.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsScreen.js +0 -257
- package/lib/commonjs/components/tabs/TabsScreen.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsScreen.types.js.map +0 -1
- package/lib/commonjs/components/tabs/TabsScreen.web.js.map +0 -1
- package/lib/commonjs/experimental/types.js +0 -61
- package/lib/commonjs/experimental/types.js.map +0 -1
- package/lib/commonjs/fabric/gamma/SplitViewHostNativeComponent.js.map +0 -1
- package/lib/commonjs/fabric/gamma/SplitViewScreenNativeComponent.js.map +0 -1
- package/lib/commonjs/fabric/tabs/TabsHostNativeComponent.js +0 -18
- package/lib/commonjs/fabric/tabs/TabsHostNativeComponent.js.map +0 -1
- package/lib/commonjs/fabric/tabs/TabsScreenNativeComponent.js.map +0 -1
- package/lib/module/components/gamma/stack/StackHost.js.map +0 -1
- package/lib/module/components/gamma/stack/StackHost.types.js.map +0 -1
- package/lib/module/components/gamma/stack/StackHost.web.js.map +0 -1
- package/lib/module/components/gamma/stack/StackScreen.js.map +0 -1
- package/lib/module/components/gamma/stack/StackScreen.types.js.map +0 -1
- package/lib/module/components/gamma/stack/StackScreen.web.js.map +0 -1
- package/lib/module/components/tabs/TabsAccessory.js.map +0 -1
- package/lib/module/components/tabs/TabsAccessory.types.js +0 -2
- package/lib/module/components/tabs/TabsAccessory.types.js.map +0 -1
- package/lib/module/components/tabs/TabsAccessoryContent.js.map +0 -1
- package/lib/module/components/tabs/TabsAccessoryContent.types.js +0 -2
- package/lib/module/components/tabs/TabsAccessoryContent.types.js.map +0 -1
- package/lib/module/components/tabs/TabsHost.js +0 -64
- package/lib/module/components/tabs/TabsHost.js.map +0 -1
- package/lib/module/components/tabs/TabsHost.types.js.map +0 -1
- package/lib/module/components/tabs/TabsHost.web.js.map +0 -1
- package/lib/module/components/tabs/TabsScreen.js +0 -251
- package/lib/module/components/tabs/TabsScreen.js.map +0 -1
- package/lib/module/components/tabs/TabsScreen.types.js.map +0 -1
- package/lib/module/components/tabs/TabsScreen.web.js.map +0 -1
- package/lib/module/experimental/types.js +0 -11
- package/lib/module/experimental/types.js.map +0 -1
- package/lib/module/fabric/gamma/SplitViewHostNativeComponent.js.map +0 -1
- package/lib/module/fabric/gamma/SplitViewScreenNativeComponent.js.map +0 -1
- package/lib/module/fabric/tabs/TabsHostNativeComponent.js +0 -15
- package/lib/module/fabric/tabs/TabsHostNativeComponent.js.map +0 -1
- package/lib/module/fabric/tabs/TabsScreenNativeComponent.js +0 -10
- package/lib/module/fabric/tabs/TabsScreenNativeComponent.js.map +0 -1
- package/lib/typescript/components/gamma/stack/StackHost.d.ts.map +0 -1
- package/lib/typescript/components/gamma/stack/StackHost.types.d.ts +0 -8
- package/lib/typescript/components/gamma/stack/StackHost.types.d.ts.map +0 -1
- package/lib/typescript/components/gamma/stack/StackHost.web.d.ts.map +0 -1
- package/lib/typescript/components/gamma/stack/StackScreen.d.ts.map +0 -1
- package/lib/typescript/components/gamma/stack/StackScreen.types.d.ts +0 -22
- package/lib/typescript/components/gamma/stack/StackScreen.types.d.ts.map +0 -1
- package/lib/typescript/components/gamma/stack/StackScreen.web.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsAccessory.d.ts +0 -7
- package/lib/typescript/components/tabs/TabsAccessory.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsAccessory.types.d.ts +0 -9
- package/lib/typescript/components/tabs/TabsAccessory.types.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsAccessoryContent.d.ts +0 -7
- package/lib/typescript/components/tabs/TabsAccessoryContent.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsAccessoryContent.types.d.ts +0 -6
- package/lib/typescript/components/tabs/TabsAccessoryContent.types.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsHost.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsHost.types.d.ts +0 -257
- package/lib/typescript/components/tabs/TabsHost.types.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsHost.web.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsScreen.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsScreen.types.d.ts +0 -536
- package/lib/typescript/components/tabs/TabsScreen.types.d.ts.map +0 -1
- package/lib/typescript/components/tabs/TabsScreen.web.d.ts.map +0 -1
- package/lib/typescript/experimental/types.d.ts +0 -10
- package/lib/typescript/experimental/types.d.ts.map +0 -1
- package/lib/typescript/fabric/gamma/SplitViewHostNativeComponent.d.ts.map +0 -1
- package/lib/typescript/fabric/gamma/SplitViewScreenNativeComponent.d.ts +0 -13
- package/lib/typescript/fabric/gamma/SplitViewScreenNativeComponent.d.ts.map +0 -1
- package/lib/typescript/fabric/tabs/TabsHostNativeComponent.d.ts +0 -34
- package/lib/typescript/fabric/tabs/TabsHostNativeComponent.d.ts.map +0 -1
- package/lib/typescript/fabric/tabs/TabsScreenNativeComponent.d.ts +0 -82
- package/lib/typescript/fabric/tabs/TabsScreenNativeComponent.d.ts.map +0 -1
- package/src/components/gamma/stack/StackHost.types.ts +0 -10
- package/src/components/tabs/TabsAccessory.types.ts +0 -13
- package/src/components/tabs/TabsAccessoryContent.tsx +0 -17
- package/src/components/tabs/TabsAccessoryContent.types.ts +0 -6
- package/src/components/tabs/TabsHost.tsx +0 -105
- package/src/components/tabs/TabsHost.types.ts +0 -297
- package/src/components/tabs/TabsScreen.tsx +0 -382
- package/src/components/tabs/TabsScreen.types.ts +0 -630
- package/src/experimental/types.ts +0 -10
- package/src/fabric/gamma/SplitViewScreenNativeComponent.ts +0 -24
- package/src/fabric/tabs/TabsHostNativeComponent.ts +0 -75
- package/src/fabric/tabs/TabsScreenNativeComponent.ts +0 -175
- /package/lib/commonjs/components/gamma/stack/{StackHost.types.js → host/StackHost.types.js} +0 -0
- /package/lib/commonjs/components/gamma/stack/{StackHost.web.js → host/StackHost.web.js} +0 -0
- /package/lib/commonjs/components/gamma/stack/{StackScreen.types.js → screen/StackScreen.types.js} +0 -0
- /package/lib/commonjs/components/gamma/stack/{StackScreen.web.js → screen/StackScreen.web.js} +0 -0
- /package/lib/commonjs/components/tabs/{TabsHost.types.js → host/TabsHost.types.js} +0 -0
- /package/lib/commonjs/components/tabs/{TabsHost.web.js → host/TabsHost.web.js} +0 -0
- /package/lib/commonjs/components/tabs/{TabsScreen.types.js → screen/TabsScreen.types.js} +0 -0
- /package/lib/commonjs/components/tabs/{TabsScreen.web.js → screen/TabsScreen.web.js} +0 -0
- /package/lib/module/components/gamma/stack/{StackHost.types.js → host/StackHost.types.js} +0 -0
- /package/lib/module/components/gamma/stack/{StackHost.web.js → host/StackHost.web.js} +0 -0
- /package/lib/module/components/gamma/stack/{StackScreen.types.js → screen/StackScreen.types.js} +0 -0
- /package/lib/module/components/gamma/stack/{StackScreen.web.js → screen/StackScreen.web.js} +0 -0
- /package/lib/module/components/tabs/{TabsHost.types.js → host/TabsHost.types.js} +0 -0
- /package/lib/module/components/tabs/{TabsHost.web.js → host/TabsHost.web.js} +0 -0
- /package/lib/module/components/tabs/{TabsScreen.types.js → screen/TabsScreen.types.js} +0 -0
- /package/lib/module/components/tabs/{TabsScreen.web.js → screen/TabsScreen.web.js} +0 -0
- /package/lib/typescript/components/gamma/stack/{StackHost.d.ts → host/StackHost.d.ts} +0 -0
- /package/lib/typescript/components/gamma/stack/{StackHost.web.d.ts → host/StackHost.web.d.ts} +0 -0
- /package/lib/typescript/components/gamma/stack/{StackScreen.d.ts → screen/StackScreen.d.ts} +0 -0
- /package/lib/typescript/components/gamma/stack/{StackScreen.web.d.ts → screen/StackScreen.web.d.ts} +0 -0
- /package/lib/typescript/components/tabs/{TabsHost.web.d.ts → host/TabsHost.web.d.ts} +0 -0
- /package/lib/typescript/components/tabs/{TabsScreen.web.d.ts → screen/TabsScreen.web.d.ts} +0 -0
- /package/src/components/gamma/stack/{StackHost.web.tsx → host/StackHost.web.tsx} +0 -0
- /package/src/components/gamma/stack/{StackScreen.web.tsx → screen/StackScreen.web.tsx} +0 -0
- /package/src/components/tabs/{TabsHost.web.tsx → host/TabsHost.web.tsx} +0 -0
- /package/src/components/tabs/{TabsScreen.web.tsx → screen/TabsScreen.web.tsx} +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/components/tabs/screen/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,cAAc,CAAC;AAErD,mBAAmB,oBAAoB,CAAC;AAExC,mBAAmB,4BAA4B,CAAC;AAChD,mBAAmB,wBAAwB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { type NativeSyntheticEvent } from 'react-native';
|
|
3
|
+
import type { NativeProps as TabsScreenAndroidNativeComponentProps } from '../../../fabric/tabs/TabsScreenAndroidNativeComponent';
|
|
4
|
+
import type { NativeProps as TabsScreenIOSNativeComponentProps } from '../../../fabric/tabs/TabsScreenIOSNativeComponent';
|
|
5
|
+
import type { EmptyObject, TabsScreenEventHandler } from './TabsScreen.types';
|
|
6
|
+
type TabsScreenPlatformNativeComponentProps = TabsScreenAndroidNativeComponentProps | TabsScreenIOSNativeComponentProps;
|
|
7
|
+
interface TabsScreenConfig<T> {
|
|
8
|
+
componentNodeRef: React.RefObject<React.Component<T> | null>;
|
|
9
|
+
onDidAppear?: TabsScreenEventHandler<EmptyObject> | undefined;
|
|
10
|
+
onDidDisappear?: TabsScreenEventHandler<EmptyObject> | undefined;
|
|
11
|
+
onWillAppear?: TabsScreenEventHandler<EmptyObject> | undefined;
|
|
12
|
+
onWillDisappear?: TabsScreenEventHandler<EmptyObject> | undefined;
|
|
13
|
+
screenKey: string;
|
|
14
|
+
}
|
|
15
|
+
export declare function useTabsScreen<T extends TabsScreenPlatformNativeComponentProps>({ componentNodeRef, onDidAppear, onDidDisappear, onWillAppear, onWillDisappear, screenKey, }: TabsScreenConfig<T>): {
|
|
16
|
+
componentNodeRef: React.RefObject<React.Component<T, {}, any> | null>;
|
|
17
|
+
lifecycleCallbacks: {
|
|
18
|
+
onWillAppear: (event: NativeSyntheticEvent<EmptyObject>) => void;
|
|
19
|
+
onDidAppear: (event: NativeSyntheticEvent<EmptyObject>) => void;
|
|
20
|
+
onWillDisappear: (event: NativeSyntheticEvent<EmptyObject>) => void;
|
|
21
|
+
onDidDisappear: (event: NativeSyntheticEvent<EmptyObject>) => void;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
export {};
|
|
25
|
+
//# sourceMappingURL=useTabsScreen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useTabsScreen.d.ts","sourceRoot":"","sources":["../../../../../src/components/tabs/screen/useTabsScreen.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAkB,KAAK,oBAAoB,EAAE,MAAM,cAAc,CAAC;AACzE,OAAO,KAAK,EAAE,WAAW,IAAI,qCAAqC,EAAE,MAAM,uDAAuD,CAAC;AAClI,OAAO,KAAK,EAAE,WAAW,IAAI,iCAAiC,EAAE,MAAM,mDAAmD,CAAC;AAE1H,OAAO,KAAK,EAAE,WAAW,EAAE,sBAAsB,EAAE,MAAM,oBAAoB,CAAC;AAE9E,KAAK,sCAAsC,GACvC,qCAAqC,GACrC,iCAAiC,CAAC;AAEtC,UAAU,gBAAgB,CAAC,CAAC;IAC1B,gBAAgB,EAAE,KAAK,CAAC,SAAS,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,IAAI,CAAC,CAAC;IAC7D,WAAW,CAAC,EAAE,sBAAsB,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;IAC9D,cAAc,CAAC,EAAE,sBAAsB,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;IACjE,YAAY,CAAC,EAAE,sBAAsB,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;IAC/D,eAAe,CAAC,EAAE,sBAAsB,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC;IAClE,SAAS,EAAE,MAAM,CAAC;CACnB;AAED,wBAAgB,aAAa,CAC3B,CAAC,SAAS,sCAAsC,EAChD,EACA,gBAAgB,EAChB,WAAW,EACX,cAAc,EACd,YAAY,EACZ,eAAe,EACf,SAAS,GACV,EAAE,gBAAgB,CAAC,CAAC,CAAC;;;8BAaV,oBAAoB,CAAC,WAAW,CAAC;6BAUjC,oBAAoB,CAAC,WAAW,CAAC;iCAUjC,oBAAoB,CAAC,WAAW,CAAC;gCAUjC,oBAAoB,CAAC,WAAW,CAAC;;EAwB5C"}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* ALL SYMBOLS EXPOSED FROM THIS MODULE ARE EXPERIMENTAL AND MIGHT
|
|
3
3
|
* BE SUBJECT TO BREAKING CHANGES WITHOUT NOTICE OR LIBRARY MAJOR VERSION CHANGE.
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
6
|
-
export
|
|
7
|
-
export
|
|
8
|
-
export
|
|
5
|
+
export * from '../components/gamma/stack';
|
|
6
|
+
export * from '../components/gamma/split';
|
|
7
|
+
export * from '../components/safe-area';
|
|
8
|
+
export * from '../components/gamma/scroll-view-marker';
|
|
9
9
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/experimental/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/experimental/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAIH,cAAc,2BAA2B,CAAC;AAC1C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,yBAAyB,CAAC;AACxC,cAAc,wCAAwC,CAAC"}
|
|
@@ -25,21 +25,22 @@ type StackPresentation = 'push' | 'modal' | 'transparentModal' | 'fullScreenModa
|
|
|
25
25
|
type StackAnimation = 'default' | 'flip' | 'simple_push' | 'none' | 'fade' | 'slide_from_right' | 'slide_from_left' | 'slide_from_bottom' | 'fade_from_bottom' | 'ios_from_right' | 'ios_from_left';
|
|
26
26
|
type SwipeDirection = 'vertical' | 'horizontal';
|
|
27
27
|
type ReplaceAnimation = 'pop' | 'push';
|
|
28
|
+
type ScrollEdgeEffect = 'automatic' | 'hard' | 'soft' | 'hidden';
|
|
28
29
|
type OptionalBoolean = 'undefined' | 'false' | 'true';
|
|
29
30
|
export interface NativeProps extends ViewProps {
|
|
30
|
-
onAppear?: CT.DirectEventHandler<ScreenEvent
|
|
31
|
-
onDisappear?: CT.DirectEventHandler<ScreenEvent
|
|
32
|
-
onDismissed?: CT.DirectEventHandler<ScreenDismissedEvent
|
|
33
|
-
onNativeDismissCancelled?: CT.DirectEventHandler<ScreenDismissedEvent
|
|
34
|
-
onWillAppear?: CT.DirectEventHandler<ScreenEvent
|
|
35
|
-
onWillDisappear?: CT.DirectEventHandler<ScreenEvent
|
|
36
|
-
onHeaderHeightChange?: CT.DirectEventHandler<HeaderHeightChangeEvent
|
|
37
|
-
onTransitionProgress?: CT.DirectEventHandler<TransitionProgressEvent
|
|
38
|
-
onGestureCancel?: CT.DirectEventHandler<ScreenEvent
|
|
39
|
-
onHeaderBackButtonClicked?: CT.DirectEventHandler<ScreenEvent
|
|
40
|
-
onSheetDetentChanged?: CT.DirectEventHandler<SheetDetentChangedEvent
|
|
31
|
+
onAppear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
32
|
+
onDisappear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
33
|
+
onDismissed?: CT.DirectEventHandler<ScreenDismissedEvent> | undefined;
|
|
34
|
+
onNativeDismissCancelled?: CT.DirectEventHandler<ScreenDismissedEvent> | undefined;
|
|
35
|
+
onWillAppear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
36
|
+
onWillDisappear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
37
|
+
onHeaderHeightChange?: CT.DirectEventHandler<HeaderHeightChangeEvent> | undefined;
|
|
38
|
+
onTransitionProgress?: CT.DirectEventHandler<TransitionProgressEvent> | undefined;
|
|
39
|
+
onGestureCancel?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
40
|
+
onHeaderBackButtonClicked?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
41
|
+
onSheetDetentChanged?: CT.DirectEventHandler<SheetDetentChangedEvent> | undefined;
|
|
41
42
|
screenId?: CT.WithDefault<string, ''>;
|
|
42
|
-
sheetAllowedDetents?: number[];
|
|
43
|
+
sheetAllowedDetents?: number[] | undefined;
|
|
43
44
|
sheetLargestUndimmedDetent?: CT.WithDefault<CT.Int32, -1>;
|
|
44
45
|
sheetGrabberVisible?: CT.WithDefault<boolean, false>;
|
|
45
46
|
sheetCornerRadius?: CT.WithDefault<CT.Float, -1.0>;
|
|
@@ -48,30 +49,34 @@ export interface NativeProps extends ViewProps {
|
|
|
48
49
|
sheetElevation?: CT.WithDefault<CT.Int32, 24>;
|
|
49
50
|
sheetShouldOverflowTopInset?: CT.WithDefault<boolean, false>;
|
|
50
51
|
sheetDefaultResizeAnimationEnabled?: CT.WithDefault<boolean, true>;
|
|
51
|
-
customAnimationOnSwipe?: boolean;
|
|
52
|
+
customAnimationOnSwipe?: boolean | undefined;
|
|
52
53
|
fullScreenSwipeEnabled?: CT.WithDefault<OptionalBoolean, 'undefined'>;
|
|
53
54
|
fullScreenSwipeShadowEnabled?: CT.WithDefault<boolean, true>;
|
|
54
|
-
homeIndicatorHidden?: boolean;
|
|
55
|
-
preventNativeDismiss?: boolean;
|
|
55
|
+
homeIndicatorHidden?: boolean | undefined;
|
|
56
|
+
preventNativeDismiss?: boolean | undefined;
|
|
56
57
|
gestureEnabled?: CT.WithDefault<boolean, true>;
|
|
57
|
-
statusBarColor?: ColorValue;
|
|
58
|
-
statusBarHidden?: boolean;
|
|
59
|
-
screenOrientation?: string;
|
|
60
|
-
statusBarAnimation?: string;
|
|
61
|
-
statusBarStyle?: string;
|
|
62
|
-
statusBarTranslucent?: boolean;
|
|
63
|
-
gestureResponseDistance?: GestureResponseDistanceType;
|
|
58
|
+
statusBarColor?: ColorValue | undefined;
|
|
59
|
+
statusBarHidden?: boolean | undefined;
|
|
60
|
+
screenOrientation?: string | undefined;
|
|
61
|
+
statusBarAnimation?: string | undefined;
|
|
62
|
+
statusBarStyle?: string | undefined;
|
|
63
|
+
statusBarTranslucent?: boolean | undefined;
|
|
64
|
+
gestureResponseDistance?: GestureResponseDistanceType | undefined;
|
|
64
65
|
stackPresentation?: CT.WithDefault<StackPresentation, 'push'>;
|
|
65
66
|
stackAnimation?: CT.WithDefault<StackAnimation, 'default'>;
|
|
66
67
|
transitionDuration?: CT.WithDefault<CT.Int32, 500>;
|
|
67
68
|
replaceAnimation?: CT.WithDefault<ReplaceAnimation, 'pop'>;
|
|
68
69
|
swipeDirection?: CT.WithDefault<SwipeDirection, 'horizontal'>;
|
|
69
|
-
hideKeyboardOnSwipe?: boolean;
|
|
70
|
+
hideKeyboardOnSwipe?: boolean | undefined;
|
|
70
71
|
activityState?: CT.WithDefault<CT.Float, -1.0>;
|
|
71
|
-
navigationBarColor?: ColorValue;
|
|
72
|
-
navigationBarTranslucent?: boolean;
|
|
73
|
-
navigationBarHidden?: boolean;
|
|
74
|
-
nativeBackButtonDismissalEnabled?: boolean;
|
|
72
|
+
navigationBarColor?: ColorValue | undefined;
|
|
73
|
+
navigationBarTranslucent?: boolean | undefined;
|
|
74
|
+
navigationBarHidden?: boolean | undefined;
|
|
75
|
+
nativeBackButtonDismissalEnabled?: boolean | undefined;
|
|
76
|
+
bottomScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
77
|
+
leftScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
78
|
+
rightScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
79
|
+
topScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
75
80
|
synchronousShadowStateUpdatesEnabled?: CT.WithDefault<boolean, false>;
|
|
76
81
|
}
|
|
77
82
|
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ModalScreenNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ModalScreenNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG9E,KAAK,WAAW,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;AAEhC,KAAK,oBAAoB,GAAG,QAAQ,CAAC;IACnC,YAAY,EAAE,EAAE,CAAC,KAAK,CAAC;CACxB,CAAC,CAAC;AAEH,KAAK,uBAAuB,GAAG,QAAQ,CAAC;IACtC,QAAQ,EAAE,EAAE,CAAC,MAAM,CAAC;IACpB,OAAO,EAAE,EAAE,CAAC,KAAK,CAAC;IAClB,YAAY,EAAE,EAAE,CAAC,KAAK,CAAC;CACxB,CAAC,CAAC;AAEH,KAAK,uBAAuB,GAAG,QAAQ,CAAC;IACtC,YAAY,EAAE,EAAE,CAAC,MAAM,CAAC;CACzB,CAAC,CAAC;AAEH,KAAK,uBAAuB,GAAG,QAAQ,CAAC;IACtC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC,CAAC;AAEH,KAAK,2BAA2B,GAAG,QAAQ,CAAC;IAC1C,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC;IAChB,GAAG,EAAE,EAAE,CAAC,KAAK,CAAC;IACd,GAAG,EAAE,EAAE,CAAC,KAAK,CAAC;IACd,MAAM,EAAE,EAAE,CAAC,KAAK,CAAC;CAClB,CAAC,CAAC;AAEH,KAAK,iBAAiB,GAClB,MAAM,GACN,OAAO,GACP,kBAAkB,GAClB,iBAAiB,GACjB,WAAW,GACX,WAAW,GACX,gBAAgB,GAChB,2BAA2B,CAAC;AAEhC,KAAK,cAAc,GACf,SAAS,GACT,MAAM,GACN,aAAa,GACb,MAAM,GACN,MAAM,GACN,kBAAkB,GAClB,iBAAiB,GACjB,mBAAmB,GACnB,kBAAkB,GAClB,gBAAgB,GAChB,eAAe,CAAC;AAEpB,KAAK,cAAc,GAAG,UAAU,GAAG,YAAY,CAAC;AAEhD,KAAK,gBAAgB,GAAG,KAAK,GAAG,MAAM,CAAC;AAEvC,KAAK,eAAe,GAAG,WAAW,GAAG,OAAO,GAAG,MAAM,CAAC;AAEtD,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,WAAW,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"ModalScreenNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ModalScreenNativeComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -28,19 +28,19 @@ type ReplaceAnimation = 'pop' | 'push';
|
|
|
28
28
|
type ScrollEdgeEffect = 'automatic' | 'hard' | 'soft' | 'hidden';
|
|
29
29
|
type OptionalBoolean = 'undefined' | 'false' | 'true';
|
|
30
30
|
export interface NativeProps extends ViewProps {
|
|
31
|
-
onAppear?: CT.DirectEventHandler<ScreenEvent
|
|
32
|
-
onDisappear?: CT.DirectEventHandler<ScreenEvent
|
|
33
|
-
onDismissed?: CT.DirectEventHandler<ScreenDismissedEvent
|
|
34
|
-
onNativeDismissCancelled?: CT.DirectEventHandler<ScreenDismissedEvent
|
|
35
|
-
onWillAppear?: CT.DirectEventHandler<ScreenEvent
|
|
36
|
-
onWillDisappear?: CT.DirectEventHandler<ScreenEvent
|
|
37
|
-
onHeaderHeightChange?: CT.DirectEventHandler<HeaderHeightChangeEvent
|
|
38
|
-
onTransitionProgress?: CT.DirectEventHandler<TransitionProgressEvent
|
|
39
|
-
onGestureCancel?: CT.DirectEventHandler<ScreenEvent
|
|
40
|
-
onHeaderBackButtonClicked?: CT.DirectEventHandler<ScreenEvent
|
|
41
|
-
onSheetDetentChanged?: CT.DirectEventHandler<SheetDetentChangedEvent
|
|
31
|
+
onAppear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
32
|
+
onDisappear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
33
|
+
onDismissed?: CT.DirectEventHandler<ScreenDismissedEvent> | undefined;
|
|
34
|
+
onNativeDismissCancelled?: CT.DirectEventHandler<ScreenDismissedEvent> | undefined;
|
|
35
|
+
onWillAppear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
36
|
+
onWillDisappear?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
37
|
+
onHeaderHeightChange?: CT.DirectEventHandler<HeaderHeightChangeEvent> | undefined;
|
|
38
|
+
onTransitionProgress?: CT.DirectEventHandler<TransitionProgressEvent> | undefined;
|
|
39
|
+
onGestureCancel?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
40
|
+
onHeaderBackButtonClicked?: CT.DirectEventHandler<ScreenEvent> | undefined;
|
|
41
|
+
onSheetDetentChanged?: CT.DirectEventHandler<SheetDetentChangedEvent> | undefined;
|
|
42
42
|
screenId?: CT.WithDefault<string, ''>;
|
|
43
|
-
sheetAllowedDetents?: number[];
|
|
43
|
+
sheetAllowedDetents?: number[] | undefined;
|
|
44
44
|
sheetLargestUndimmedDetent?: CT.WithDefault<CT.Int32, -1>;
|
|
45
45
|
sheetGrabberVisible?: CT.WithDefault<boolean, false>;
|
|
46
46
|
sheetCornerRadius?: CT.WithDefault<CT.Float, -1.0>;
|
|
@@ -49,30 +49,30 @@ export interface NativeProps extends ViewProps {
|
|
|
49
49
|
sheetElevation?: CT.WithDefault<CT.Int32, 24>;
|
|
50
50
|
sheetShouldOverflowTopInset?: CT.WithDefault<boolean, false>;
|
|
51
51
|
sheetDefaultResizeAnimationEnabled?: CT.WithDefault<boolean, true>;
|
|
52
|
-
customAnimationOnSwipe?: boolean;
|
|
52
|
+
customAnimationOnSwipe?: boolean | undefined;
|
|
53
53
|
fullScreenSwipeEnabled?: CT.WithDefault<OptionalBoolean, 'undefined'>;
|
|
54
54
|
fullScreenSwipeShadowEnabled?: CT.WithDefault<boolean, true>;
|
|
55
|
-
homeIndicatorHidden?: boolean;
|
|
56
|
-
preventNativeDismiss?: boolean;
|
|
55
|
+
homeIndicatorHidden?: boolean | undefined;
|
|
56
|
+
preventNativeDismiss?: boolean | undefined;
|
|
57
57
|
gestureEnabled?: CT.WithDefault<boolean, true>;
|
|
58
|
-
statusBarColor?: ColorValue;
|
|
59
|
-
statusBarHidden?: boolean;
|
|
60
|
-
screenOrientation?: string;
|
|
61
|
-
statusBarAnimation?: string;
|
|
62
|
-
statusBarStyle?: string;
|
|
63
|
-
statusBarTranslucent?: boolean;
|
|
64
|
-
gestureResponseDistance?: GestureResponseDistanceType;
|
|
58
|
+
statusBarColor?: ColorValue | undefined;
|
|
59
|
+
statusBarHidden?: boolean | undefined;
|
|
60
|
+
screenOrientation?: string | undefined;
|
|
61
|
+
statusBarAnimation?: string | undefined;
|
|
62
|
+
statusBarStyle?: string | undefined;
|
|
63
|
+
statusBarTranslucent?: boolean | undefined;
|
|
64
|
+
gestureResponseDistance?: GestureResponseDistanceType | undefined;
|
|
65
65
|
stackPresentation?: CT.WithDefault<StackPresentation, 'push'>;
|
|
66
66
|
stackAnimation?: CT.WithDefault<StackAnimation, 'default'>;
|
|
67
67
|
transitionDuration?: CT.WithDefault<CT.Int32, 500>;
|
|
68
68
|
replaceAnimation?: CT.WithDefault<ReplaceAnimation, 'pop'>;
|
|
69
69
|
swipeDirection?: CT.WithDefault<SwipeDirection, 'horizontal'>;
|
|
70
|
-
hideKeyboardOnSwipe?: boolean;
|
|
70
|
+
hideKeyboardOnSwipe?: boolean | undefined;
|
|
71
71
|
activityState?: CT.WithDefault<CT.Float, -1.0>;
|
|
72
|
-
navigationBarColor?: ColorValue;
|
|
73
|
-
navigationBarTranslucent?: boolean;
|
|
74
|
-
navigationBarHidden?: boolean;
|
|
75
|
-
nativeBackButtonDismissalEnabled?: boolean;
|
|
72
|
+
navigationBarColor?: ColorValue | undefined;
|
|
73
|
+
navigationBarTranslucent?: boolean | undefined;
|
|
74
|
+
navigationBarHidden?: boolean | undefined;
|
|
75
|
+
nativeBackButtonDismissalEnabled?: boolean | undefined;
|
|
76
76
|
bottomScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
77
77
|
leftScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
78
78
|
rightScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScreenNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG9E,KAAK,WAAW,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;AAEhC,KAAK,oBAAoB,GAAG,QAAQ,CAAC;IACnC,YAAY,EAAE,EAAE,CAAC,KAAK,CAAC;CACxB,CAAC,CAAC;AAEH,KAAK,uBAAuB,GAAG,QAAQ,CAAC;IACtC,QAAQ,EAAE,EAAE,CAAC,MAAM,CAAC;IACpB,OAAO,EAAE,EAAE,CAAC,KAAK,CAAC;IAClB,YAAY,EAAE,EAAE,CAAC,KAAK,CAAC;CACxB,CAAC,CAAC;AAEH,KAAK,uBAAuB,GAAG,QAAQ,CAAC;IACtC,YAAY,EAAE,EAAE,CAAC,MAAM,CAAC;CACzB,CAAC,CAAC;AAEH,KAAK,uBAAuB,GAAG,QAAQ,CAAC;IACtC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC;IAChB,QAAQ,EAAE,OAAO,CAAC;CACnB,CAAC,CAAC;AAEH,KAAK,2BAA2B,GAAG,QAAQ,CAAC;IAC1C,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC;IAChB,GAAG,EAAE,EAAE,CAAC,KAAK,CAAC;IACd,GAAG,EAAE,EAAE,CAAC,KAAK,CAAC;IACd,MAAM,EAAE,EAAE,CAAC,KAAK,CAAC;CAClB,CAAC,CAAC;AAEH,KAAK,iBAAiB,GAClB,MAAM,GACN,OAAO,GACP,kBAAkB,GAClB,iBAAiB,GACjB,WAAW,GACX,WAAW,GACX,gBAAgB,GAChB,2BAA2B,CAAC;AAEhC,KAAK,cAAc,GACf,SAAS,GACT,MAAM,GACN,aAAa,GACb,MAAM,GACN,MAAM,GACN,kBAAkB,GAClB,iBAAiB,GACjB,mBAAmB,GACnB,kBAAkB,GAClB,gBAAgB,GAChB,eAAe,CAAC;AAEpB,KAAK,cAAc,GAAG,UAAU,GAAG,YAAY,CAAC;AAEhD,KAAK,gBAAgB,GAAG,KAAK,GAAG,MAAM,CAAC;AAEvC,KAAK,gBAAgB,GAAG,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;AAEjE,KAAK,eAAe,GAAG,WAAW,GAAG,OAAO,GAAG,MAAM,CAAC;AAEtD,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,QAAQ,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,WAAW,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"ScreenNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenNativeComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -12,42 +12,44 @@ type BackButtonDisplayMode = 'minimal' | 'default' | 'generic';
|
|
|
12
12
|
type BlurEffect = 'none' | 'extraLight' | 'light' | 'dark' | 'regular' | 'prominent' | 'systemUltraThinMaterial' | 'systemThinMaterial' | 'systemMaterial' | 'systemThickMaterial' | 'systemChromeMaterial' | 'systemUltraThinMaterialLight' | 'systemThinMaterialLight' | 'systemMaterialLight' | 'systemThickMaterialLight' | 'systemChromeMaterialLight' | 'systemUltraThinMaterialDark' | 'systemThinMaterialDark' | 'systemMaterialDark' | 'systemThickMaterialDark' | 'systemChromeMaterialDark';
|
|
13
13
|
type UserInterfaceStyle = 'unspecified' | 'light' | 'dark';
|
|
14
14
|
export interface NativeProps extends ViewProps {
|
|
15
|
-
onAttached?: CT.DirectEventHandler<OnAttachedEvent
|
|
16
|
-
onDetached?: CT.DirectEventHandler<OnDetachedEvent
|
|
17
|
-
backgroundColor?: ColorValue;
|
|
18
|
-
backTitle?: string;
|
|
19
|
-
backTitleFontFamily?: string;
|
|
20
|
-
backTitleFontSize?: CT.Int32;
|
|
15
|
+
onAttached?: CT.DirectEventHandler<OnAttachedEvent> | undefined;
|
|
16
|
+
onDetached?: CT.DirectEventHandler<OnDetachedEvent> | undefined;
|
|
17
|
+
backgroundColor?: ColorValue | undefined;
|
|
18
|
+
backTitle?: string | undefined;
|
|
19
|
+
backTitleFontFamily?: string | undefined;
|
|
20
|
+
backTitleFontSize?: CT.Int32 | undefined;
|
|
21
21
|
backTitleVisible?: CT.WithDefault<boolean, 'true'>;
|
|
22
|
-
color?: ColorValue;
|
|
22
|
+
color?: ColorValue | undefined;
|
|
23
23
|
direction?: CT.WithDefault<DirectionType, 'ltr'>;
|
|
24
|
-
hidden?: boolean;
|
|
25
|
-
hideShadow?: boolean;
|
|
26
|
-
largeTitle?: boolean;
|
|
27
|
-
largeTitleFontFamily?: string;
|
|
28
|
-
largeTitleFontSize?: CT.Int32;
|
|
29
|
-
largeTitleFontWeight?: string;
|
|
30
|
-
largeTitleBackgroundColor?: ColorValue;
|
|
31
|
-
largeTitleHideShadow?: boolean;
|
|
32
|
-
largeTitleColor?: ColorValue;
|
|
33
|
-
translucent?: boolean;
|
|
34
|
-
title?: string;
|
|
35
|
-
titleFontFamily?: string;
|
|
36
|
-
titleFontSize?: CT.Int32;
|
|
37
|
-
titleFontWeight?: string;
|
|
38
|
-
titleColor?: ColorValue;
|
|
39
|
-
disableBackButtonMenu?: boolean;
|
|
24
|
+
hidden?: boolean | undefined;
|
|
25
|
+
hideShadow?: boolean | undefined;
|
|
26
|
+
largeTitle?: boolean | undefined;
|
|
27
|
+
largeTitleFontFamily?: string | undefined;
|
|
28
|
+
largeTitleFontSize?: CT.Int32 | undefined;
|
|
29
|
+
largeTitleFontWeight?: string | undefined;
|
|
30
|
+
largeTitleBackgroundColor?: ColorValue | undefined;
|
|
31
|
+
largeTitleHideShadow?: boolean | undefined;
|
|
32
|
+
largeTitleColor?: ColorValue | undefined;
|
|
33
|
+
translucent?: boolean | undefined;
|
|
34
|
+
title?: string | undefined;
|
|
35
|
+
titleFontFamily?: string | undefined;
|
|
36
|
+
titleFontSize?: CT.Int32 | undefined;
|
|
37
|
+
titleFontWeight?: string | undefined;
|
|
38
|
+
titleColor?: ColorValue | undefined;
|
|
39
|
+
disableBackButtonMenu?: boolean | undefined;
|
|
40
40
|
backButtonDisplayMode?: CT.WithDefault<BackButtonDisplayMode, 'default'>;
|
|
41
|
-
hideBackButton?: boolean;
|
|
42
|
-
backButtonInCustomView?: boolean;
|
|
41
|
+
hideBackButton?: boolean | undefined;
|
|
42
|
+
backButtonInCustomView?: boolean | undefined;
|
|
43
43
|
blurEffect?: CT.WithDefault<BlurEffect, 'none'>;
|
|
44
|
-
topInsetEnabled?: boolean;
|
|
45
|
-
headerLeftBarButtonItems?: CT.UnsafeMixed[];
|
|
46
|
-
headerRightBarButtonItems?: CT.UnsafeMixed[];
|
|
47
|
-
onPressHeaderBarButtonItem?: CT.DirectEventHandler<OnPressHeaderBarButtonItemEvent
|
|
48
|
-
onPressHeaderBarButtonMenuItem?: CT.DirectEventHandler<OnPressHeaderBarButtonMenuItemEvent
|
|
44
|
+
topInsetEnabled?: boolean | undefined;
|
|
45
|
+
headerLeftBarButtonItems?: CT.UnsafeMixed[] | undefined;
|
|
46
|
+
headerRightBarButtonItems?: CT.UnsafeMixed[] | undefined;
|
|
47
|
+
onPressHeaderBarButtonItem?: CT.DirectEventHandler<OnPressHeaderBarButtonItemEvent> | undefined;
|
|
48
|
+
onPressHeaderBarButtonMenuItem?: CT.DirectEventHandler<OnPressHeaderBarButtonMenuItemEvent> | undefined;
|
|
49
49
|
synchronousShadowStateUpdatesEnabled?: CT.WithDefault<boolean, false>;
|
|
50
50
|
userInterfaceStyle?: CT.WithDefault<UserInterfaceStyle, 'unspecified'>;
|
|
51
|
+
consumeTopInset?: boolean | undefined;
|
|
52
|
+
legacyTopInsetBehavior?: boolean | undefined;
|
|
51
53
|
}
|
|
52
54
|
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
53
55
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScreenStackHeaderConfigNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenStackHeaderConfigNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAE9E,KAAK,aAAa,GAAG,KAAK,GAAG,KAAK,CAAC;AAGnC,KAAK,eAAe,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;AAEpC,KAAK,eAAe,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;AAEpC,KAAK,+BAA+B,GAAG,QAAQ,CAAC;IAAE,QAAQ,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AACtE,KAAK,mCAAmC,GAAG,QAAQ,CAAC;IAAE,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC,CAAC;AAExE,KAAK,qBAAqB,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;AAE/D,KAAK,UAAU,GACX,MAAM,GACN,YAAY,GACZ,OAAO,GACP,MAAM,GACN,SAAS,GACT,WAAW,GACX,yBAAyB,GACzB,oBAAoB,GACpB,gBAAgB,GAChB,qBAAqB,GACrB,sBAAsB,GACtB,8BAA8B,GAC9B,yBAAyB,GACzB,qBAAqB,GACrB,0BAA0B,GAC1B,2BAA2B,GAC3B,6BAA6B,GAC7B,wBAAwB,GACxB,oBAAoB,GACpB,yBAAyB,GACzB,0BAA0B,CAAC;AAE/B,KAAK,kBAAkB,GAAG,aAAa,GAAG,OAAO,GAAG,MAAM,CAAC;AAE3D,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,UAAU,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,eAAe,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"ScreenStackHeaderConfigNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenStackHeaderConfigNativeComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -2,7 +2,7 @@ import type { CodegenTypes as CT, ViewProps } from 'react-native';
|
|
|
2
2
|
export type HeaderSubviewTypes = 'back' | 'right' | 'left' | 'title' | 'center' | 'searchBar';
|
|
3
3
|
export interface NativeProps extends ViewProps {
|
|
4
4
|
type?: CT.WithDefault<HeaderSubviewTypes, 'left'>;
|
|
5
|
-
hidesSharedBackground?: boolean;
|
|
5
|
+
hidesSharedBackground?: boolean | undefined;
|
|
6
6
|
synchronousShadowStateUpdatesEnabled?: CT.WithDefault<boolean, false>;
|
|
7
7
|
}
|
|
8
8
|
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScreenStackHeaderSubviewNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenStackHeaderSubviewNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAElE,MAAM,MAAM,kBAAkB,GAC1B,MAAM,GACN,OAAO,GACP,MAAM,GACN,OAAO,GACP,QAAQ,GACR,WAAW,CAAC;AAEhB,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,kBAAkB,EAAE,MAAM,CAAC,CAAC;IAClD,qBAAqB,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"ScreenStackHeaderSubviewNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenStackHeaderSubviewNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAElE,MAAM,MAAM,kBAAkB,GAC1B,MAAM,GACN,OAAO,GACP,MAAM,GACN,OAAO,GACP,QAAQ,GACR,WAAW,CAAC;AAEhB,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,IAAI,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,kBAAkB,EAAE,MAAM,CAAC,CAAC;IAClD,qBAAqB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC5C,oCAAoC,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;CACvE;;AAED,wBAKE"}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import type { CodegenTypes as CT, ViewProps } from 'react-native';
|
|
1
|
+
import type { CodegenTypes as CT, ViewProps, ColorValue } from 'react-native';
|
|
2
2
|
type FinishTransitioningEvent = Readonly<{}>;
|
|
3
3
|
export interface NativeProps extends ViewProps {
|
|
4
4
|
iosPreventReattachmentOfDismissedScreens?: CT.WithDefault<boolean, true>;
|
|
5
|
-
|
|
5
|
+
iosPreventReattachmentOfDismissedModals?: CT.WithDefault<boolean, true>;
|
|
6
|
+
nativeContainerBackgroundColor?: ColorValue | undefined;
|
|
7
|
+
onFinishTransitioning?: CT.DirectEventHandler<FinishTransitioningEvent> | undefined;
|
|
6
8
|
}
|
|
7
9
|
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
8
10
|
export default _default;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ScreenStackNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenStackNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"ScreenStackNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/ScreenStackNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,cAAc,CAAC;AAG9E,KAAK,wBAAwB,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;AAE7C,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,wCAAwC,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;IACzE,uCAAuC,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,IAAI,CAAC,CAAC;IAExE,8BAA8B,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IAExD,qBAAqB,CAAC,EAClB,EAAE,CAAC,kBAAkB,CAAC,wBAAwB,CAAC,GAC/C,SAAS,CAAC;CACf;;AAED,wBAAyE"}
|
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
import type { CodegenTypes as CT, ViewProps, ColorValue, HostComponent } from 'react-native';
|
|
2
2
|
export type SearchBarEvent = Readonly<{}>;
|
|
3
3
|
export type SearchButtonPressedEvent = Readonly<{
|
|
4
|
-
text?: string;
|
|
4
|
+
text?: string | undefined;
|
|
5
5
|
}>;
|
|
6
6
|
export type ChangeTextEvent = Readonly<{
|
|
7
|
-
text?: string;
|
|
7
|
+
text?: string | undefined;
|
|
8
8
|
}>;
|
|
9
9
|
type SearchBarPlacement = 'automatic' | 'inline' | 'stacked' | 'integrated' | 'integratedButton' | 'integratedCentered';
|
|
10
10
|
type AutoCapitalizeType = 'systemDefault' | 'none' | 'words' | 'sentences' | 'characters';
|
|
11
11
|
type OptionalBoolean = 'undefined' | 'false' | 'true';
|
|
12
12
|
export interface NativeProps extends ViewProps {
|
|
13
|
-
onSearchFocus?: CT.DirectEventHandler<SearchBarEvent> | null;
|
|
14
|
-
onSearchBlur?: CT.DirectEventHandler<SearchBarEvent> | null;
|
|
15
|
-
onSearchButtonPress?: CT.DirectEventHandler<SearchButtonPressedEvent> | null;
|
|
16
|
-
onCancelButtonPress?: CT.DirectEventHandler<SearchBarEvent> | null;
|
|
17
|
-
onChangeText?: CT.DirectEventHandler<ChangeTextEvent> | null;
|
|
13
|
+
onSearchFocus?: CT.DirectEventHandler<SearchBarEvent> | null | undefined;
|
|
14
|
+
onSearchBlur?: CT.DirectEventHandler<SearchBarEvent> | null | undefined;
|
|
15
|
+
onSearchButtonPress?: CT.DirectEventHandler<SearchButtonPressedEvent> | null | undefined;
|
|
16
|
+
onCancelButtonPress?: CT.DirectEventHandler<SearchBarEvent> | null | undefined;
|
|
17
|
+
onChangeText?: CT.DirectEventHandler<ChangeTextEvent> | null | undefined;
|
|
18
18
|
hideWhenScrolling?: CT.WithDefault<boolean, true>;
|
|
19
19
|
autoCapitalize?: CT.WithDefault<AutoCapitalizeType, 'systemDefault'>;
|
|
20
|
-
placeholder?: string;
|
|
20
|
+
placeholder?: string | undefined;
|
|
21
21
|
placement?: CT.WithDefault<SearchBarPlacement, 'automatic'>;
|
|
22
22
|
allowToolbarIntegration?: CT.WithDefault<boolean, true>;
|
|
23
23
|
obscureBackground?: CT.WithDefault<OptionalBoolean, 'undefined'>;
|
|
24
24
|
hideNavigationBar?: CT.WithDefault<OptionalBoolean, 'undefined'>;
|
|
25
|
-
cancelButtonText?: string;
|
|
26
|
-
barTintColor?: ColorValue;
|
|
27
|
-
tintColor?: ColorValue;
|
|
28
|
-
textColor?: ColorValue;
|
|
25
|
+
cancelButtonText?: string | undefined;
|
|
26
|
+
barTintColor?: ColorValue | undefined;
|
|
27
|
+
tintColor?: ColorValue | undefined;
|
|
28
|
+
textColor?: ColorValue | undefined;
|
|
29
29
|
autoFocus?: CT.WithDefault<boolean, false>;
|
|
30
|
-
disableBackButtonOverride?: boolean;
|
|
31
|
-
inputType?: string;
|
|
32
|
-
onClose?: CT.DirectEventHandler<SearchBarEvent> | null;
|
|
33
|
-
onOpen?: CT.DirectEventHandler<SearchBarEvent> | null;
|
|
34
|
-
hintTextColor?: ColorValue;
|
|
35
|
-
headerIconColor?: ColorValue;
|
|
30
|
+
disableBackButtonOverride?: boolean | undefined;
|
|
31
|
+
inputType?: string | undefined;
|
|
32
|
+
onClose?: CT.DirectEventHandler<SearchBarEvent> | null | undefined;
|
|
33
|
+
onOpen?: CT.DirectEventHandler<SearchBarEvent> | null | undefined;
|
|
34
|
+
hintTextColor?: ColorValue | undefined;
|
|
35
|
+
headerIconColor?: ColorValue | undefined;
|
|
36
36
|
shouldShowHintSearchIcon?: CT.WithDefault<boolean, true>;
|
|
37
37
|
}
|
|
38
38
|
type ComponentType = HostComponent<NativeProps>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"SearchBarNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/SearchBarNativeComponent.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EACV,YAAY,IAAI,EAAE,EAClB,SAAS,EACT,UAAU,EACV,aAAa,EACd,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,cAAc,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;AAE1C,MAAM,MAAM,wBAAwB,GAAG,QAAQ,CAAC;IAC9C,IAAI,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"SearchBarNativeComponent.d.ts","sourceRoot":"","sources":["../../../src/fabric/SearchBarNativeComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { CodegenTypes as CT, ViewProps } from 'react-native';
|
|
2
|
+
type ScrollEdgeEffect = 'automatic' | 'hard' | 'soft' | 'hidden';
|
|
3
|
+
interface NativeProps extends ViewProps {
|
|
4
|
+
leftScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
5
|
+
topScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
6
|
+
rightScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
7
|
+
bottomScrollEdgeEffect?: CT.WithDefault<ScrollEdgeEffect, 'automatic'>;
|
|
8
|
+
}
|
|
9
|
+
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
10
|
+
export default _default;
|
|
11
|
+
//# sourceMappingURL=ScrollViewMarkerNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScrollViewMarkerNativeComponent.d.ts","sourceRoot":"","sources":["../../../../src/fabric/gamma/ScrollViewMarkerNativeComponent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGlE,KAAK,gBAAgB,GAAG,WAAW,GAAG,MAAM,GAAG,MAAM,GAAG,QAAQ,CAAC;AAEjE,UAAU,WAAY,SAAQ,SAAS;IACrC,oBAAoB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;IACrE,mBAAmB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;IACpE,qBAAqB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;IACtE,sBAAsB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;CACxE;;AAED,wBAA0E"}
|
|
@@ -30,16 +30,16 @@ interface NativeProps extends ViewProps {
|
|
|
30
30
|
primaryEdge?: CT.WithDefault<SplitViewPrimaryEdge, 'leading'>;
|
|
31
31
|
showSecondaryToggleButton?: CT.WithDefault<boolean, false>;
|
|
32
32
|
displayModeButtonVisibility?: CT.WithDefault<SplitViewDisplayModeButtonVisibility, 'automatic'>;
|
|
33
|
-
columnMetrics?: ColumnMetrics;
|
|
33
|
+
columnMetrics?: ColumnMetrics | undefined;
|
|
34
34
|
orientation?: CT.WithDefault<SplitViewOrientation, 'inherit'>;
|
|
35
35
|
primaryBackgroundStyle?: CT.WithDefault<SplitViewPrimaryBackgroundStyle, 'default'>;
|
|
36
36
|
topColumnForCollapsing?: CT.WithDefault<SplitViewTopColumnForCollapsing, 'default'>;
|
|
37
37
|
presentsWithGesture?: CT.WithDefault<boolean, true>;
|
|
38
38
|
showInspector?: CT.WithDefault<boolean, false>;
|
|
39
|
-
onCollapse?: CT.DirectEventHandler<GenericEmptyEvent
|
|
40
|
-
onDisplayModeWillChange?: CT.DirectEventHandler<DisplayModeWillChangeEvent
|
|
41
|
-
onExpand?: CT.DirectEventHandler<GenericEmptyEvent
|
|
42
|
-
onInspectorHide?: CT.DirectEventHandler<GenericEmptyEvent
|
|
39
|
+
onCollapse?: CT.DirectEventHandler<GenericEmptyEvent> | undefined;
|
|
40
|
+
onDisplayModeWillChange?: CT.DirectEventHandler<DisplayModeWillChangeEvent> | undefined;
|
|
41
|
+
onExpand?: CT.DirectEventHandler<GenericEmptyEvent> | undefined;
|
|
42
|
+
onInspectorHide?: CT.DirectEventHandler<GenericEmptyEvent> | undefined;
|
|
43
43
|
}
|
|
44
44
|
type ComponentType = HostComponent<NativeProps>;
|
|
45
45
|
interface NativeCommands {
|
|
@@ -48,4 +48,4 @@ interface NativeCommands {
|
|
|
48
48
|
export declare const Commands: NativeCommands;
|
|
49
49
|
declare const _default: HostComponent<NativeProps>;
|
|
50
50
|
export default _default;
|
|
51
|
-
//# sourceMappingURL=
|
|
51
|
+
//# sourceMappingURL=SplitHostNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SplitHostNativeComponent.d.ts","sourceRoot":"","sources":["../../../../../src/fabric/gamma/split/SplitHostNativeComponent.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { CodegenTypes as CT, ViewProps } from 'react-native';
|
|
2
|
+
type GenericEmptyEvent = Readonly<{}>;
|
|
3
|
+
type SplitScreenColumnType = 'column' | 'inspector';
|
|
4
|
+
interface NativeProps extends ViewProps {
|
|
5
|
+
columnType?: CT.WithDefault<SplitScreenColumnType, 'column'>;
|
|
6
|
+
onWillAppear?: CT.DirectEventHandler<GenericEmptyEvent> | undefined;
|
|
7
|
+
onDidAppear?: CT.DirectEventHandler<GenericEmptyEvent> | undefined;
|
|
8
|
+
onWillDisappear?: CT.DirectEventHandler<GenericEmptyEvent> | undefined;
|
|
9
|
+
onDidDisappear?: CT.DirectEventHandler<GenericEmptyEvent> | undefined;
|
|
10
|
+
}
|
|
11
|
+
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
12
|
+
export default _default;
|
|
13
|
+
//# sourceMappingURL=SplitScreenNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SplitScreenNativeComponent.d.ts","sourceRoot":"","sources":["../../../../../src/fabric/gamma/split/SplitScreenNativeComponent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAIlE,KAAK,iBAAiB,GAAG,QAAQ,CAAC,EAAE,CAAC,CAAC;AAEtC,KAAK,qBAAqB,GAAG,QAAQ,GAAG,WAAW,CAAC;AAEpD,UAAU,WAAY,SAAQ,SAAS;IAErC,UAAU,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,qBAAqB,EAAE,QAAQ,CAAC,CAAC;IAG7D,YAAY,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC;IACpE,WAAW,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC;IACnE,eAAe,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC;IACvE,cAAc,CAAC,EAAE,EAAE,CAAC,kBAAkB,CAAC,iBAAiB,CAAC,GAAG,SAAS,CAAC;CACvE;;AAED,wBAEG"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type { ColorValue, CodegenTypes as CT, ImageSource, ViewProps } from 'react-native';
|
|
2
|
+
type StackHeaderTypeAndroid = 'small' | 'medium' | 'large';
|
|
3
|
+
export interface NativeProps extends ViewProps {
|
|
4
|
+
title?: string | undefined;
|
|
5
|
+
hidden?: CT.WithDefault<boolean, false>;
|
|
6
|
+
transparent?: CT.WithDefault<boolean, false>;
|
|
7
|
+
backButtonHidden?: CT.WithDefault<boolean, false>;
|
|
8
|
+
type?: CT.WithDefault<StackHeaderTypeAndroid, 'small'>;
|
|
9
|
+
backButtonTintColor?: ColorValue | undefined;
|
|
10
|
+
backButtonDrawableIconResourceName?: string | undefined;
|
|
11
|
+
backButtonImageIconResource?: ImageSource | undefined;
|
|
12
|
+
scrollFlagScroll?: CT.WithDefault<boolean, false>;
|
|
13
|
+
scrollFlagEnterAlways?: CT.WithDefault<boolean, false>;
|
|
14
|
+
scrollFlagEnterAlwaysCollapsed?: CT.WithDefault<boolean, false>;
|
|
15
|
+
scrollFlagExitUntilCollapsed?: CT.WithDefault<boolean, false>;
|
|
16
|
+
scrollFlagSnap?: CT.WithDefault<boolean, false>;
|
|
17
|
+
}
|
|
18
|
+
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
19
|
+
export default _default;
|
|
20
|
+
//# sourceMappingURL=StackHeaderConfigAndroidNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StackHeaderConfigAndroidNativeComponent.d.ts","sourceRoot":"","sources":["../../../../../src/fabric/gamma/stack/StackHeaderConfigAndroidNativeComponent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EACV,UAAU,EACV,YAAY,IAAI,EAAE,EAClB,WAAW,EACX,SAAS,EACV,MAAM,cAAc,CAAC;AAGtB,KAAK,sBAAsB,GAAG,OAAO,GAAG,QAAQ,GAAG,OAAO,CAAC;AAE3D,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IACxC,WAAW,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IAC7C,gBAAgB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IAGlD,IAAI,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,sBAAsB,EAAE,OAAO,CAAC,CAAC;IAEvD,mBAAmB,CAAC,EAAE,UAAU,GAAG,SAAS,CAAC;IAC7C,kCAAkC,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACxD,2BAA2B,CAAC,EAAE,WAAW,GAAG,SAAS,CAAC;IAEtD,gBAAgB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IAClD,qBAAqB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IACvD,8BAA8B,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IAChE,4BAA4B,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IAC9D,cAAc,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;CACjD;;AAED,wBAME"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { CodegenTypes as CT, ViewProps } from 'react-native';
|
|
2
|
+
export interface NativeProps extends ViewProps {
|
|
3
|
+
title?: string | undefined;
|
|
4
|
+
hidden?: CT.WithDefault<boolean, false>;
|
|
5
|
+
transparent?: CT.WithDefault<boolean, false>;
|
|
6
|
+
backButtonHidden?: CT.WithDefault<boolean, false>;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import("react-native").HostComponent<NativeProps>;
|
|
9
|
+
export default _default;
|
|
10
|
+
//# sourceMappingURL=StackHeaderConfigIOSNativeComponent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StackHeaderConfigIOSNativeComponent.d.ts","sourceRoot":"","sources":["../../../../../src/fabric/gamma/stack/StackHeaderConfigIOSNativeComponent.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,IAAI,EAAE,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAGlE,MAAM,WAAW,WAAY,SAAQ,SAAS;IAC5C,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,MAAM,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IACxC,WAAW,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;IAC7C,gBAAgB,CAAC,EAAE,EAAE,CAAC,WAAW,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;CAGnD;;AAED,wBAGG"}
|