@react-navigation/native-stack 7.0.0-rc.27 → 7.0.0-rc.29
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/lib/commonjs/navigators/createNativeStackNavigator.js +3 -1
- package/lib/commonjs/navigators/createNativeStackNavigator.js.map +1 -1
- package/lib/commonjs/views/DebugContainer.native.js +8 -10
- package/lib/commonjs/views/DebugContainer.native.js.map +1 -1
- package/lib/commonjs/views/FooterComponent.js +19 -0
- package/lib/commonjs/views/FooterComponent.js.map +1 -0
- package/lib/commonjs/views/NativeStackView.js +11 -8
- package/lib/commonjs/views/NativeStackView.js.map +1 -1
- package/lib/commonjs/views/NativeStackView.native.js +84 -95
- package/lib/commonjs/views/NativeStackView.native.js.map +1 -1
- package/lib/commonjs/views/ScreenStackContent.js +70 -0
- package/lib/commonjs/views/ScreenStackContent.js.map +1 -0
- package/lib/commonjs/views/{HeaderConfig.js → useHeaderConfigProps.js} +59 -48
- package/lib/commonjs/views/useHeaderConfigProps.js.map +1 -0
- package/lib/module/navigators/createNativeStackNavigator.js +3 -1
- package/lib/module/navigators/createNativeStackNavigator.js.map +1 -1
- package/lib/module/views/DebugContainer.native.js +9 -11
- package/lib/module/views/DebugContainer.native.js.map +1 -1
- package/lib/module/views/FooterComponent.js +14 -0
- package/lib/module/views/FooterComponent.js.map +1 -0
- package/lib/module/views/NativeStackView.js +11 -8
- package/lib/module/views/NativeStackView.js.map +1 -1
- package/lib/module/views/NativeStackView.native.js +85 -95
- package/lib/module/views/NativeStackView.native.js.map +1 -1
- package/lib/module/views/ScreenStackContent.js +63 -0
- package/lib/module/views/ScreenStackContent.js.map +1 -0
- package/lib/module/views/{HeaderConfig.js → useHeaderConfigProps.js} +59 -48
- package/lib/module/views/useHeaderConfigProps.js.map +1 -0
- package/lib/typescript/commonjs/src/index.d.ts +1 -1
- package/lib/typescript/commonjs/src/index.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/navigators/createNativeStackNavigator.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/types.d.ts +80 -18
- package/lib/typescript/commonjs/src/types.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/views/DebugContainer.d.ts +1 -1
- package/lib/typescript/commonjs/src/views/DebugContainer.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/views/DebugContainer.native.d.ts +1 -1
- package/lib/typescript/commonjs/src/views/DebugContainer.native.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/views/FooterComponent.d.ts +7 -0
- package/lib/typescript/commonjs/src/views/FooterComponent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/NativeStackView.d.ts +4 -3
- package/lib/typescript/commonjs/src/views/NativeStackView.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/views/NativeStackView.native.d.ts +4 -3
- package/lib/typescript/commonjs/src/views/NativeStackView.native.d.ts.map +1 -1
- package/lib/typescript/commonjs/src/views/ScreenStackContent.d.ts +9 -0
- package/lib/typescript/commonjs/src/views/ScreenStackContent.d.ts.map +1 -0
- package/lib/typescript/commonjs/src/views/useHeaderConfigProps.d.ts +41 -0
- package/lib/typescript/commonjs/src/views/useHeaderConfigProps.d.ts.map +1 -0
- package/lib/typescript/commonjs/tsconfig.build.tsbuildinfo +1 -1
- package/lib/typescript/module/src/index.d.ts +1 -1
- package/lib/typescript/module/src/index.d.ts.map +1 -1
- package/lib/typescript/module/src/navigators/createNativeStackNavigator.d.ts.map +1 -1
- package/lib/typescript/module/src/types.d.ts +80 -18
- package/lib/typescript/module/src/types.d.ts.map +1 -1
- package/lib/typescript/module/src/views/DebugContainer.d.ts +1 -1
- package/lib/typescript/module/src/views/DebugContainer.d.ts.map +1 -1
- package/lib/typescript/module/src/views/DebugContainer.native.d.ts +1 -1
- package/lib/typescript/module/src/views/DebugContainer.native.d.ts.map +1 -1
- package/lib/typescript/module/src/views/FooterComponent.d.ts +7 -0
- package/lib/typescript/module/src/views/FooterComponent.d.ts.map +1 -0
- package/lib/typescript/module/src/views/NativeStackView.d.ts +4 -3
- package/lib/typescript/module/src/views/NativeStackView.d.ts.map +1 -1
- package/lib/typescript/module/src/views/NativeStackView.native.d.ts +4 -3
- package/lib/typescript/module/src/views/NativeStackView.native.d.ts.map +1 -1
- package/lib/typescript/module/src/views/ScreenStackContent.d.ts +9 -0
- package/lib/typescript/module/src/views/ScreenStackContent.d.ts.map +1 -0
- package/lib/typescript/module/src/views/useHeaderConfigProps.d.ts +41 -0
- package/lib/typescript/module/src/views/useHeaderConfigProps.d.ts.map +1 -0
- package/lib/typescript/module/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +9 -9
- package/src/index.tsx +2 -0
- package/src/navigators/createNativeStackNavigator.tsx +2 -1
- package/src/types.tsx +74 -18
- package/src/views/DebugContainer.native.tsx +13 -6
- package/src/views/DebugContainer.tsx +1 -1
- package/src/views/FooterComponent.tsx +10 -0
- package/src/views/NativeStackView.native.tsx +111 -151
- package/src/views/NativeStackView.tsx +24 -12
- package/src/views/ScreenStackContent.tsx +121 -0
- package/src/views/{HeaderConfig.tsx → useHeaderConfigProps.tsx} +67 -71
- package/lib/commonjs/views/HeaderConfig.js.map +0 -1
- package/lib/module/views/HeaderConfig.js.map +0 -1
- package/lib/typescript/commonjs/src/views/HeaderConfig.d.ts +0 -11
- package/lib/typescript/commonjs/src/views/HeaderConfig.d.ts.map +0 -1
- package/lib/typescript/module/src/views/HeaderConfig.d.ts +0 -11
- package/lib/typescript/module/src/views/HeaderConfig.d.ts.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { DefaultNavigatorOptions, Descriptor, NavigationHelpers, NavigationProp, ParamListBase, Route, RouteProp, StackActionHelpers, StackNavigationState, StackRouterOptions, Theme } from '@react-navigation/native';
|
|
2
2
|
import type { ImageSourcePropType, StyleProp, TextStyle, ViewStyle } from 'react-native';
|
|
3
|
-
import type { ScreenProps, ScreenStackHeaderConfigProps, SearchBarProps
|
|
3
|
+
import type { ScreenProps, ScreenStackHeaderConfigProps, SearchBarProps } from 'react-native-screens';
|
|
4
4
|
export type NativeStackNavigationEventMap = {
|
|
5
5
|
/**
|
|
6
6
|
* Event which fires when a transition animation starts.
|
|
@@ -24,6 +24,20 @@ export type NativeStackNavigationEventMap = {
|
|
|
24
24
|
gestureCancel: {
|
|
25
25
|
data: undefined;
|
|
26
26
|
};
|
|
27
|
+
/**
|
|
28
|
+
* Event which fires when screen is in sheet presentation & it's detent changes.
|
|
29
|
+
*
|
|
30
|
+
* In payload it caries two fields:
|
|
31
|
+
*
|
|
32
|
+
* * `index` - current detent index in the `sheetAllowedDetents` array,
|
|
33
|
+
* * `stable` - on Android `false` value means that the user is dragging the sheet or it is settling; on iOS it is always `true`.
|
|
34
|
+
*/
|
|
35
|
+
sheetDetentChange: {
|
|
36
|
+
data: {
|
|
37
|
+
index: number;
|
|
38
|
+
stable: boolean;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
27
41
|
};
|
|
28
42
|
export type NativeStackNavigationProp<ParamList extends ParamListBase, RouteName extends keyof ParamList = string, NavigatorID extends string | undefined = undefined> = NavigationProp<ParamList, RouteName, NavigatorID, StackNavigationState<ParamList>, NativeStackNavigationOptions, NativeStackNavigationEventMap> & StackActionHelpers<ParamList>;
|
|
29
43
|
export type NativeStackScreenProps<ParamList extends ParamListBase, RouteName extends keyof ParamList = string, NavigatorID extends string | undefined = undefined> = {
|
|
@@ -389,6 +403,13 @@ export type NativeStackNavigationOptions = {
|
|
|
389
403
|
* Style object for the scene content.
|
|
390
404
|
*/
|
|
391
405
|
contentStyle?: StyleProp<ViewStyle>;
|
|
406
|
+
/**
|
|
407
|
+
* Style object for the screen native component. This might help to workaround
|
|
408
|
+
* some issues when using `formSheet` presentation.
|
|
409
|
+
*
|
|
410
|
+
* Only `backgroundColor` is accepted.
|
|
411
|
+
*/
|
|
412
|
+
unstable_screenStyle?: ScreenProps['unstable_screenStyle'];
|
|
392
413
|
/**
|
|
393
414
|
* Whether the gesture to dismiss should use animation provided to `animation` prop. Defaults to `false`.
|
|
394
415
|
*
|
|
@@ -447,11 +468,14 @@ export type NativeStackNavigationOptions = {
|
|
|
447
468
|
* Supported values:
|
|
448
469
|
* - "default": use the platform default animation
|
|
449
470
|
* - "fade": fade screen in or out
|
|
471
|
+
* - "fade_from_bottom" – performs a fade from bottom animation
|
|
450
472
|
* - "flip": flip the screen, requires presentation: "modal" (iOS only)
|
|
451
473
|
* - "simple_push": use the platform default animation, but without shadow and native header transition (iOS only)
|
|
452
474
|
* - "slide_from_bottom": slide in the new screen from bottom
|
|
453
475
|
* - "slide_from_right": slide in the new screen from right (Android only, uses default animation on iOS)
|
|
454
476
|
* - "slide_from_left": slide in the new screen from left (Android only, uses default animation on iOS)
|
|
477
|
+
* - "ios_from_right" - iOS like slide in animation. pushes in the new screen from right to left (Android only, resolves to default transition on iOS)
|
|
478
|
+
* - "ios_from_left" - iOS like slide in animation. pushes in the new screen from left to right (Android only, resolves to default transition on iOS)
|
|
455
479
|
* - "none": don't animate the screen
|
|
456
480
|
*
|
|
457
481
|
* Only supported on iOS and Android.
|
|
@@ -482,17 +506,32 @@ export type NativeStackNavigationOptions = {
|
|
|
482
506
|
/**
|
|
483
507
|
* Describes heights where a sheet can rest.
|
|
484
508
|
* Works only when `presentation` is set to `formSheet`.
|
|
485
|
-
* Defaults to `large`.
|
|
486
509
|
*
|
|
487
|
-
*
|
|
510
|
+
* Heights should be described as fraction (a number from `[0, 1]` interval) of screen height / maximum detent height.
|
|
511
|
+
* You can pass an array of ascending values each defining allowed sheet detent. iOS accepts any number of detents,
|
|
512
|
+
* while **Android is limited to three**.
|
|
488
513
|
*
|
|
489
|
-
*
|
|
490
|
-
*
|
|
491
|
-
* - `all` - all detent levels will be allowed
|
|
514
|
+
* There is also possibility to specify `fitToContents` literal, which intents to set the sheet height
|
|
515
|
+
* to the height of its contents.
|
|
492
516
|
*
|
|
493
|
-
*
|
|
517
|
+
* Please note that the array **must** be sorted in ascending order. This invariant is verified only in developement mode,
|
|
518
|
+
* where violation results in error.
|
|
519
|
+
*
|
|
520
|
+
* **Android is limited to up 3 values in the array** -- any surplus values, beside first three are ignored.
|
|
521
|
+
*
|
|
522
|
+
* Defaults to `[1.0]`.
|
|
494
523
|
*/
|
|
495
|
-
sheetAllowedDetents?:
|
|
524
|
+
sheetAllowedDetents?: number[] | 'fitToContents';
|
|
525
|
+
/**
|
|
526
|
+
* Integer value describing elevation of the sheet, impacting shadow on the top edge of the sheet.
|
|
527
|
+
*
|
|
528
|
+
* Not dynamic - changing it after the component is rendered won't have an effect.
|
|
529
|
+
*
|
|
530
|
+
* Defaults to `24`.
|
|
531
|
+
*
|
|
532
|
+
* @platform Android
|
|
533
|
+
*/
|
|
534
|
+
sheetElevation?: number;
|
|
496
535
|
/**
|
|
497
536
|
* Whether the sheet should expand to larger detent when scrolling.
|
|
498
537
|
* Works only when `presentation` is set to `formSheet`.
|
|
@@ -508,10 +547,20 @@ export type NativeStackNavigationOptions = {
|
|
|
508
547
|
* If set to non-negative value it will try to render sheet with provided radius, else it will apply system default.
|
|
509
548
|
*
|
|
510
549
|
* If left unset system default is used.
|
|
511
|
-
*
|
|
512
|
-
* @platform ios
|
|
513
550
|
*/
|
|
514
551
|
sheetCornerRadius?: number;
|
|
552
|
+
/**
|
|
553
|
+
* Index of the detent the sheet should expand to after being opened.
|
|
554
|
+
* Works only when `stackPresentation` is set to `formSheet`.
|
|
555
|
+
*
|
|
556
|
+
* If the specified index is out of bounds of `sheetAllowedDetents` array, in dev environment more error will be thrown,
|
|
557
|
+
* in production the value will be reset to default value.
|
|
558
|
+
*
|
|
559
|
+
* Additionaly there is `last` value available, when set the sheet will expand initially to last (largest) detent.
|
|
560
|
+
*
|
|
561
|
+
* Defaults to `0` - which represents first detent in the detents array.
|
|
562
|
+
*/
|
|
563
|
+
sheetInitialDetentIndex?: number | 'last';
|
|
515
564
|
/**
|
|
516
565
|
* Boolean indicating whether the sheet shows a grabber at the top.
|
|
517
566
|
* Works only when `presentation` is set to `formSheet`.
|
|
@@ -522,19 +571,19 @@ export type NativeStackNavigationOptions = {
|
|
|
522
571
|
sheetGrabberVisible?: boolean;
|
|
523
572
|
/**
|
|
524
573
|
* The largest sheet detent for which a view underneath won't be dimmed.
|
|
525
|
-
* Works only when `presentation` is
|
|
574
|
+
* Works only when `presentation` is set to `formSheet`.
|
|
526
575
|
*
|
|
527
|
-
*
|
|
576
|
+
* This prop can be set to an number, which indicates index of detent in `sheetAllowedDetents` array for which
|
|
577
|
+
* there won't be a dimming view beneath the sheet.
|
|
528
578
|
*
|
|
529
|
-
*
|
|
530
|
-
* - `medium` - the view underneath will be dimmed only when detent level is `large`
|
|
531
|
-
* - `all` - the view underneath will be dimmed for any detent level
|
|
579
|
+
* Additionaly there are following options available:
|
|
532
580
|
*
|
|
533
|
-
*
|
|
581
|
+
* * `none` - there will be dimming view for all detents levels,
|
|
582
|
+
* * `last` - there won't be a dimming view for any detent level.
|
|
534
583
|
*
|
|
535
|
-
*
|
|
584
|
+
* Defaults to `none`, indicating that the dimming view should be always present.
|
|
536
585
|
*/
|
|
537
|
-
|
|
586
|
+
sheetLargestUndimmedDetentIndex?: number | 'none' | 'last';
|
|
538
587
|
/**
|
|
539
588
|
* The display orientation to use for the screen.
|
|
540
589
|
*
|
|
@@ -559,6 +608,19 @@ export type NativeStackNavigationOptions = {
|
|
|
559
608
|
* Only supported on iOS and Android.
|
|
560
609
|
*/
|
|
561
610
|
freezeOnBlur?: boolean;
|
|
611
|
+
/**
|
|
612
|
+
* Footer component that can be used alongside formSheet stack presentation style.
|
|
613
|
+
*
|
|
614
|
+
* This option is provided, because due to implementation details it might be problematic
|
|
615
|
+
* to implement such layout with JS-only code.
|
|
616
|
+
*
|
|
617
|
+
* Please note that this prop is marked as unstable and might be subject of breaking changes,
|
|
618
|
+
* including removal, in particular when we find solution that will make implementing it with JS
|
|
619
|
+
* straightforward.
|
|
620
|
+
*
|
|
621
|
+
* @platform android
|
|
622
|
+
*/
|
|
623
|
+
unstable_sheetFooter?: () => React.ReactNode;
|
|
562
624
|
};
|
|
563
625
|
export type NativeStackNavigatorProps = DefaultNavigatorOptions<ParamListBase, string | undefined, StackNavigationState<ParamListBase>, NativeStackNavigationOptions, NativeStackNavigationEventMap, NativeStackNavigationProp<ParamListBase>> & StackRouterOptions & NativeStackNavigationConfig;
|
|
564
626
|
export type NativeStackDescriptor = Descriptor<NativeStackNavigationOptions, NativeStackNavigationProp<ParamListBase>, RouteProp<ParamListBase>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/types.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACV,uBAAuB,EACvB,UAAU,EACV,iBAAiB,EACjB,cAAc,EACd,aAAa,EACb,KAAK,EACL,SAAS,EACT,kBAAkB,EAClB,oBAAoB,EACpB,kBAAkB,EAClB,KAAK,EACN,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EACV,mBAAmB,EACnB,SAAS,EACT,SAAS,EACT,SAAS,EACV,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,EACV,WAAW,EACX,4BAA4B,EAC5B,cAAc,
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../src/types.tsx"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { type ViewProps } from 'react-native';
|
|
3
|
-
import type
|
|
3
|
+
import { type StackPresentationTypes } from 'react-native-screens';
|
|
4
4
|
type ContainerProps = ViewProps & {
|
|
5
5
|
stackPresentation: StackPresentationTypes;
|
|
6
6
|
children: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugContainer.d.ts","sourceRoot":"","sources":["../../../../../src/views/DebugContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"DebugContainer.d.ts","sourceRoot":"","sources":["../../../../../src/views/DebugContainer.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAQ,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EAAE,KAAK,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAEnE,KAAK,cAAc,GAAG,SAAS,GAAG;IAChC,iBAAiB,EAAE,sBAAsB,CAAC;IAC1C,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF,wBAAgB,cAAc,CAAC,KAAK,EAAE,cAAc,2CAInD"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { type ViewProps } from 'react-native';
|
|
3
|
-
import type
|
|
3
|
+
import { type StackPresentationTypes } from 'react-native-screens';
|
|
4
4
|
type ContainerProps = ViewProps & {
|
|
5
5
|
stackPresentation: StackPresentationTypes;
|
|
6
6
|
children: React.ReactNode;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"DebugContainer.native.d.ts","sourceRoot":"","sources":["../../../../../src/views/DebugContainer.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,
|
|
1
|
+
{"version":3,"file":"DebugContainer.native.d.ts","sourceRoot":"","sources":["../../../../../src/views/DebugContainer.native.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAY,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAGxD,OAAO,EAEL,KAAK,sBAAsB,EAC5B,MAAM,sBAAsB,CAAC;AAE9B,KAAK,cAAc,GAAG,SAAS,GAAG;IAChC,iBAAiB,EAAE,sBAAsB,CAAC;IAC1C,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B,CAAC;AAEF;;;;GAIG;AACH,eAAO,IAAI,cAAc,UAAW,cAAc,4CAEjD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"FooterComponent.d.ts","sourceRoot":"","sources":["../../../../../src/views/FooterComponent.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,KAAK,WAAW,GAAG;IACjB,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CAC5B,CAAC;AAEF,wBAAgB,eAAe,CAAC,EAAE,QAAQ,EAAE,EAAE,WAAW,2CAExD"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { type ParamListBase, type StackNavigationState } from '@react-navigation/native';
|
|
2
|
-
import type { NativeStackDescriptorMap, NativeStackNavigationHelpers } from '../types';
|
|
1
|
+
import { type ParamListBase, type RouteProp, type StackNavigationState } from '@react-navigation/native';
|
|
2
|
+
import type { NativeStackDescriptor, NativeStackDescriptorMap, NativeStackNavigationHelpers } from '../types';
|
|
3
3
|
type Props = {
|
|
4
4
|
state: StackNavigationState<ParamListBase>;
|
|
5
5
|
navigation: NativeStackNavigationHelpers;
|
|
6
6
|
descriptors: NativeStackDescriptorMap;
|
|
7
|
+
describe: (route: RouteProp<ParamListBase>, placeholder: boolean) => NativeStackDescriptor;
|
|
7
8
|
};
|
|
8
|
-
export declare function NativeStackView({ state, descriptors }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare function NativeStackView({ state, descriptors, describe }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export {};
|
|
10
11
|
//# sourceMappingURL=NativeStackView.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NativeStackView.d.ts","sourceRoot":"","sources":["../../../../../src/views/NativeStackView.tsx"],"names":[],"mappings":"AASA,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,oBAAoB,EAG1B,MAAM,0BAA0B,CAAC;AAIlC,OAAO,KAAK,EACV,wBAAwB,EACxB,4BAA4B,EAC7B,MAAM,UAAU,CAAC;AAGlB,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,oBAAoB,CAAC,aAAa,CAAC,CAAC;IAE3C,UAAU,EAAE,4BAA4B,CAAC;IACzC,WAAW,EAAE,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"NativeStackView.d.ts","sourceRoot":"","sources":["../../../../../src/views/NativeStackView.tsx"],"names":[],"mappings":"AASA,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,SAAS,EACd,KAAK,oBAAoB,EAG1B,MAAM,0BAA0B,CAAC;AAIlC,OAAO,KAAK,EACV,qBAAqB,EACrB,wBAAwB,EACxB,4BAA4B,EAC7B,MAAM,UAAU,CAAC;AAGlB,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,oBAAoB,CAAC,aAAa,CAAC,CAAC;IAE3C,UAAU,EAAE,4BAA4B,CAAC;IACzC,WAAW,EAAE,wBAAwB,CAAC;IACtC,QAAQ,EAAE,CACR,KAAK,EAAE,SAAS,CAAC,aAAa,CAAC,EAC/B,WAAW,EAAE,OAAO,KACjB,qBAAqB,CAAC;CAC5B,CAAC;AAOF,wBAAgB,eAAe,CAAC,EAAE,KAAK,EAAE,WAAW,EAAE,QAAQ,EAAE,EAAE,KAAK,2CA8ItE"}
|
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
import { type ParamListBase, type StackNavigationState } from '@react-navigation/native';
|
|
2
|
-
import type { NativeStackDescriptorMap, NativeStackNavigationHelpers } from '../types';
|
|
1
|
+
import { type ParamListBase, type RouteProp, type StackNavigationState } from '@react-navigation/native';
|
|
2
|
+
import type { NativeStackDescriptor, NativeStackDescriptorMap, NativeStackNavigationHelpers } from '../types';
|
|
3
3
|
type Props = {
|
|
4
4
|
state: StackNavigationState<ParamListBase>;
|
|
5
5
|
navigation: NativeStackNavigationHelpers;
|
|
6
6
|
descriptors: NativeStackDescriptorMap;
|
|
7
|
+
describe: (route: RouteProp<ParamListBase>, placeholder: boolean) => NativeStackDescriptor;
|
|
7
8
|
};
|
|
8
|
-
export declare function NativeStackView({ state, navigation, descriptors }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export declare function NativeStackView({ state, navigation, descriptors, describe, }: Props): import("react/jsx-runtime").JSX.Element;
|
|
9
10
|
export {};
|
|
10
11
|
//# sourceMappingURL=NativeStackView.native.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NativeStackView.native.d.ts","sourceRoot":"","sources":["../../../../../src/views/NativeStackView.native.tsx"],"names":[],"mappings":"AAQA,OAAO,EAGL,KAAK,aAAa,
|
|
1
|
+
{"version":3,"file":"NativeStackView.native.d.ts","sourceRoot":"","sources":["../../../../../src/views/NativeStackView.native.tsx"],"names":[],"mappings":"AAQA,OAAO,EAGL,KAAK,aAAa,EAClB,KAAK,SAAS,EAEd,KAAK,oBAAoB,EAG1B,MAAM,0BAA0B,CAAC;AAgBlC,OAAO,KAAK,EACV,qBAAqB,EACrB,wBAAwB,EACxB,4BAA4B,EAC7B,MAAM,UAAU,CAAC;AAoalB,KAAK,KAAK,GAAG;IACX,KAAK,EAAE,oBAAoB,CAAC,aAAa,CAAC,CAAC;IAC3C,UAAU,EAAE,4BAA4B,CAAC;IACzC,WAAW,EAAE,wBAAwB,CAAC;IACtC,QAAQ,EAAE,CACR,KAAK,EAAE,SAAS,CAAC,aAAa,CAAC,EAC/B,WAAW,EAAE,OAAO,KACjB,qBAAqB,CAAC;CAC5B,CAAC;AAEF,wBAAgB,eAAe,CAAC,EAC9B,KAAK,EACL,UAAU,EACV,WAAW,EACX,QAAQ,GACT,EAAE,KAAK,2CAsHP"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type StyleProp, type ViewStyle } from 'react-native';
|
|
2
|
+
import { type ScreenProps, type ScreenStackHeaderConfigProps } from 'react-native-screens';
|
|
3
|
+
type Props = Omit<ScreenProps, 'enabled' | 'isNativeStack' | 'hasLargeHeader'> & {
|
|
4
|
+
headerConfig?: ScreenStackHeaderConfigProps;
|
|
5
|
+
contentStyle?: StyleProp<ViewStyle>;
|
|
6
|
+
};
|
|
7
|
+
export declare function ScreenStackContent({ children, headerConfig, activityState, stackPresentation, contentStyle, ...rest }: Props): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=ScreenStackContent.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScreenStackContent.d.ts","sourceRoot":"","sources":["../../../../../src/views/ScreenStackContent.tsx"],"names":[],"mappings":"AACA,OAAO,EAEL,KAAK,SAAS,EAEd,KAAK,SAAS,EACf,MAAM,cAAc,CAAC;AACtB,OAAO,EAEL,KAAK,WAAW,EAGhB,KAAK,4BAA4B,EAClC,MAAM,sBAAsB,CAAC;AAK9B,KAAK,KAAK,GAAG,IAAI,CACf,WAAW,EACX,SAAS,GAAG,eAAe,GAAG,gBAAgB,CAC/C,GAAG;IACF,YAAY,CAAC,EAAE,4BAA4B,CAAC;IAC5C,YAAY,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CACrC,CAAC;AAEF,wBAAgB,kBAAkB,CAAC,EACjC,QAAQ,EACR,YAAY,EACZ,aAAa,EACb,iBAAiB,EACjB,YAAY,EACZ,GAAG,IAAI,EACR,EAAE,KAAK,2CA2EP"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import { type Route } from '@react-navigation/native';
|
|
2
|
+
import type { NativeStackNavigationOptions } from '../types';
|
|
3
|
+
type Props = NativeStackNavigationOptions & {
|
|
4
|
+
headerTopInsetEnabled: boolean;
|
|
5
|
+
headerHeight: number;
|
|
6
|
+
route: Route<string>;
|
|
7
|
+
canGoBack: boolean;
|
|
8
|
+
};
|
|
9
|
+
export declare function useHeaderConfigProps({ headerBackImageSource, headerBackButtonDisplayMode, headerBackButtonMenuEnabled, headerBackTitle, headerBackTitleStyle, headerBackVisible, headerShadowVisible, headerLargeStyle, headerLargeTitle, headerLargeTitleShadowVisible, headerLargeTitleStyle, headerBackground, headerLeft, headerRight, headerShown, headerStyle, headerBlurEffect, headerTintColor, headerTitle, headerTitleAlign, headerTitleStyle, headerTransparent, headerSearchBarOptions, headerTopInsetEnabled, route, title, canGoBack, }: Props): {
|
|
10
|
+
readonly backButtonInCustomView: boolean;
|
|
11
|
+
readonly backgroundColor: string;
|
|
12
|
+
readonly backTitle: string | undefined;
|
|
13
|
+
readonly backTitleVisible: boolean | undefined;
|
|
14
|
+
readonly backButtonDisplayMode: import("react-native-screens").BackButtonDisplayMode | undefined;
|
|
15
|
+
readonly backTitleFontFamily: string | undefined;
|
|
16
|
+
readonly backTitleFontSize: number | undefined;
|
|
17
|
+
readonly blurEffect: import("react-native-screens").BlurEffectTypes | undefined;
|
|
18
|
+
readonly color: string;
|
|
19
|
+
readonly direction: import("@react-navigation/native").LocaleDirection;
|
|
20
|
+
readonly disableBackButtonMenu: boolean;
|
|
21
|
+
readonly hidden: boolean;
|
|
22
|
+
readonly hideBackButton: boolean;
|
|
23
|
+
readonly hideShadow: boolean | undefined;
|
|
24
|
+
readonly largeTitle: boolean | undefined;
|
|
25
|
+
readonly largeTitleBackgroundColor: string | undefined;
|
|
26
|
+
readonly largeTitleColor: string | undefined;
|
|
27
|
+
readonly largeTitleFontFamily: string | undefined;
|
|
28
|
+
readonly largeTitleFontSize: number | undefined;
|
|
29
|
+
readonly largeTitleFontWeight: string | undefined;
|
|
30
|
+
readonly largeTitleHideShadow: boolean;
|
|
31
|
+
readonly title: string;
|
|
32
|
+
readonly titleColor: string | undefined;
|
|
33
|
+
readonly titleFontFamily: string | undefined;
|
|
34
|
+
readonly titleFontSize: number | undefined;
|
|
35
|
+
readonly titleFontWeight: string;
|
|
36
|
+
readonly topInsetEnabled: boolean;
|
|
37
|
+
readonly translucent: boolean;
|
|
38
|
+
readonly children: import("react/jsx-runtime").JSX.Element;
|
|
39
|
+
};
|
|
40
|
+
export {};
|
|
41
|
+
//# sourceMappingURL=useHeaderConfigProps.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"useHeaderConfigProps.d.ts","sourceRoot":"","sources":["../../../../../src/views/useHeaderConfigProps.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,KAAK,EAAuB,MAAM,0BAA0B,CAAC;AAY3E,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,UAAU,CAAC;AAG7D,KAAK,KAAK,GAAG,4BAA4B,GAAG;IAC1C,qBAAqB,EAAE,OAAO,CAAC;IAC/B,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IACrB,SAAS,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,wBAAgB,oBAAoB,CAAC,EACnC,qBAAqB,EACrB,2BAA2B,EAC3B,2BAA2B,EAC3B,eAAe,EACf,oBAAoB,EACpB,iBAAiB,EACjB,mBAAmB,EACnB,gBAAgB,EAChB,gBAAgB,EAChB,6BAA6B,EAC7B,qBAAqB,EACrB,gBAAgB,EAChB,UAAU,EACV,WAAW,EACX,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,eAAe,EACf,WAAW,EACX,gBAAgB,EAChB,gBAAgB,EAChB,iBAAiB,EACjB,sBAAsB,EACtB,qBAAqB,EACrB,KAAK,EACL,KAAK,EACL,SAAS,GACV,EAAE,KAAK;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6PP"}
|