@idealyst/navigation 1.2.102 → 1.2.104
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/package.json +6 -6
- package/src/routing/types.ts +6 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@idealyst/navigation",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.104",
|
|
4
4
|
"description": "Cross-platform navigation library for React and React Native",
|
|
5
5
|
"readme": "README.md",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@idealyst/camera": "^1.2.30",
|
|
48
|
-
"@idealyst/components": "^1.2.
|
|
48
|
+
"@idealyst/components": "^1.2.104",
|
|
49
49
|
"@idealyst/microphone": "^1.2.30",
|
|
50
|
-
"@idealyst/theme": "^1.2.
|
|
50
|
+
"@idealyst/theme": "^1.2.104",
|
|
51
51
|
"@react-navigation/bottom-tabs": ">=7.0.0",
|
|
52
52
|
"@react-navigation/drawer": ">=7.0.0",
|
|
53
53
|
"@react-navigation/native": ">=7.0.0",
|
|
@@ -74,13 +74,13 @@
|
|
|
74
74
|
"@idealyst/animate": "^1.2.38",
|
|
75
75
|
"@idealyst/blur": "^1.2.40",
|
|
76
76
|
"@idealyst/camera": "^1.2.30",
|
|
77
|
-
"@idealyst/components": "^1.2.
|
|
77
|
+
"@idealyst/components": "^1.2.104",
|
|
78
78
|
"@idealyst/datagrid": "^1.2.30",
|
|
79
79
|
"@idealyst/datepicker": "^1.2.30",
|
|
80
80
|
"@idealyst/lottie": "^1.2.38",
|
|
81
|
-
"@idealyst/markdown": "^1.2.
|
|
81
|
+
"@idealyst/markdown": "^1.2.104",
|
|
82
82
|
"@idealyst/microphone": "^1.2.30",
|
|
83
|
-
"@idealyst/theme": "^1.2.
|
|
83
|
+
"@idealyst/theme": "^1.2.104",
|
|
84
84
|
"@types/react": "^19.1.8",
|
|
85
85
|
"@types/react-dom": "^19.1.6",
|
|
86
86
|
"react": "^19.1.0",
|
package/src/routing/types.ts
CHANGED
|
@@ -92,7 +92,12 @@ export type NotFoundComponentProps = {
|
|
|
92
92
|
export type BaseNavigatorParam = {
|
|
93
93
|
path: string
|
|
94
94
|
type: 'navigator'
|
|
95
|
-
|
|
95
|
+
/**
|
|
96
|
+
* Navigator options. When this navigator is nested inside a tab or drawer,
|
|
97
|
+
* you can include TabBarScreenOptions (tabBarIcon, tabBarLabel, tabBarBadge)
|
|
98
|
+
* so the parent layout can render the tab/drawer entry for this navigator.
|
|
99
|
+
*/
|
|
100
|
+
options?: TabBarScreenOptions
|
|
96
101
|
/**
|
|
97
102
|
* Handler called when an invalid route is accessed.
|
|
98
103
|
* - Return NavigateParams to redirect to a different route
|