one 1.23.0 → 1.23.1
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 +9 -9
- package/types/fork/useLinking.native.d.ts +4 -4
- package/types/layouts/Drawer.d.ts +4 -4
- package/types/layouts/Stack.d.ts +4 -4
- package/types/layouts/Tabs.d.ts +4 -4
- package/types/ui/TabContext.d.ts +7 -7
- package/types/ui/TabRouter.d.ts +5 -5
- package/types/ui/TabRouter.d.ts.map +1 -1
- package/types/ui/Tabs.shared.d.ts +9 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "one",
|
|
3
|
-
"version": "1.23.
|
|
3
|
+
"version": "1.23.1",
|
|
4
4
|
"license": "BSD-3-Clause",
|
|
5
5
|
"sideEffects": [
|
|
6
6
|
"setup.mjs",
|
|
@@ -182,18 +182,18 @@
|
|
|
182
182
|
"@cloudflare/vite-plugin": "^1.33.1",
|
|
183
183
|
"@swc/core": "^1.14.0",
|
|
184
184
|
"@ungap/structured-clone": "^1.2.0",
|
|
185
|
-
"@vxrn/color-scheme": "1.23.
|
|
186
|
-
"@vxrn/compiler": "1.23.
|
|
187
|
-
"@vxrn/resolve": "1.23.
|
|
188
|
-
"@vxrn/tslib-lite": "1.23.
|
|
189
|
-
"@vxrn/use-isomorphic-layout-effect": "1.23.
|
|
190
|
-
"@vxrn/vite-plugin-metro": "1.23.
|
|
185
|
+
"@vxrn/color-scheme": "1.23.1",
|
|
186
|
+
"@vxrn/compiler": "1.23.1",
|
|
187
|
+
"@vxrn/resolve": "1.23.1",
|
|
188
|
+
"@vxrn/tslib-lite": "1.23.1",
|
|
189
|
+
"@vxrn/use-isomorphic-layout-effect": "1.23.1",
|
|
190
|
+
"@vxrn/vite-plugin-metro": "1.23.1",
|
|
191
191
|
"babel-dead-code-elimination": "1.0.10",
|
|
192
192
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
193
193
|
"babel-preset-expo": "~57.0.5",
|
|
194
194
|
"citty": "^0.1.6",
|
|
195
195
|
"core-js": "^3.38.1",
|
|
196
|
-
"create-vxrn": "1.23.
|
|
196
|
+
"create-vxrn": "1.23.1",
|
|
197
197
|
"escape-string-regexp": "^5.0.0",
|
|
198
198
|
"expo-linking": "~57.0.4",
|
|
199
199
|
"expo-modules-core": "~57.0.8",
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
"tsconfig-paths": "^4",
|
|
214
214
|
"use-latest-callback": "^0.2.3",
|
|
215
215
|
"vite": "^8.1.0",
|
|
216
|
-
"vxrn": "1.23.
|
|
216
|
+
"vxrn": "1.23.1",
|
|
217
217
|
"ws": "^8.21.0",
|
|
218
218
|
"xxhashjs": "^0.2.2"
|
|
219
219
|
},
|
|
@@ -15,24 +15,24 @@ export declare function useLinking(ref: React.RefObject<NavigationContainerRef<P
|
|
|
15
15
|
index: number;
|
|
16
16
|
routeNames: string[];
|
|
17
17
|
history?: unknown[];
|
|
18
|
-
routes: import("@react-navigation/
|
|
18
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
19
19
|
type: string;
|
|
20
20
|
stale: false;
|
|
21
21
|
}>, "stale" | "routes">> & Readonly<{
|
|
22
22
|
stale?: true;
|
|
23
|
-
routes: import("@react-navigation/
|
|
23
|
+
routes: import("@react-navigation/routers").PartialRoute<import("@react-navigation/routers").Route<string, object | undefined>>[];
|
|
24
24
|
}> & {
|
|
25
25
|
state?: Partial<Omit<Readonly<{
|
|
26
26
|
key: string;
|
|
27
27
|
index: number;
|
|
28
28
|
routeNames: string[];
|
|
29
29
|
history?: unknown[];
|
|
30
|
-
routes: import("@react-navigation/
|
|
30
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
31
31
|
type: string;
|
|
32
32
|
stale: false;
|
|
33
33
|
}>, "stale" | "routes">> & Readonly<{
|
|
34
34
|
stale?: true;
|
|
35
|
-
routes: import("@react-navigation/
|
|
35
|
+
routes: import("@react-navigation/routers").PartialRoute<import("@react-navigation/routers").Route<string, object | undefined>>[];
|
|
36
36
|
}> & /*elided*/ any;
|
|
37
37
|
}) | undefined>;
|
|
38
38
|
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type DrawerNavigationEventMap, type DrawerNavigationOptions } from '@react-navigation/drawer';
|
|
2
2
|
import type { DrawerNavigationState, ParamListBase } from '@react-navigation/native';
|
|
3
3
|
import React from 'react';
|
|
4
|
-
export declare const Drawer: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("@react-navigation/drawer").DrawerNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/
|
|
4
|
+
export declare const Drawer: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("@react-navigation/drawer").DrawerNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/routers").DefaultRouterOptions<string> & ({
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
layout?: ((props: {
|
|
7
7
|
state: DrawerNavigationState<ParamListBase>;
|
|
@@ -46,13 +46,13 @@ export declare const Drawer: React.ForwardRefExoticComponent<Omit<Omit<Omit<impo
|
|
|
46
46
|
payload?: object;
|
|
47
47
|
source?: string;
|
|
48
48
|
target?: string;
|
|
49
|
-
}>>(original: import("@react-navigation/
|
|
49
|
+
}>>(original: import("@react-navigation/routers").Router<DrawerNavigationState<ParamListBase>, Action>) => Partial<import("@react-navigation/routers").Router<DrawerNavigationState<ParamListBase>, Action>>) | undefined;
|
|
50
50
|
UNSTABLE_routeNamesChangeBehavior?: "firstMatch" | "lastUnhandled";
|
|
51
51
|
} & ({
|
|
52
52
|
id?: undefined;
|
|
53
53
|
} | {
|
|
54
54
|
id: string;
|
|
55
|
-
})), "children"> & Partial<Pick<Omit<import("@react-navigation/drawer").DrawerNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/
|
|
55
|
+
})), "children"> & Partial<Pick<Omit<import("@react-navigation/drawer").DrawerNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/routers").DefaultRouterOptions<string> & ({
|
|
56
56
|
children: React.ReactNode;
|
|
57
57
|
layout?: ((props: {
|
|
58
58
|
state: DrawerNavigationState<ParamListBase>;
|
|
@@ -97,7 +97,7 @@ export declare const Drawer: React.ForwardRefExoticComponent<Omit<Omit<Omit<impo
|
|
|
97
97
|
payload?: object;
|
|
98
98
|
source?: string;
|
|
99
99
|
target?: string;
|
|
100
|
-
}>>(original: import("@react-navigation/
|
|
100
|
+
}>>(original: import("@react-navigation/routers").Router<DrawerNavigationState<ParamListBase>, Action>) => Partial<import("@react-navigation/routers").Router<DrawerNavigationState<ParamListBase>, Action>>) | undefined;
|
|
101
101
|
UNSTABLE_routeNamesChangeBehavior?: "firstMatch" | "lastUnhandled";
|
|
102
102
|
} & ({
|
|
103
103
|
id?: undefined;
|
package/types/layouts/Stack.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { ParamListBase, StackNavigationState } from '@react-navigation/nati
|
|
|
2
2
|
import type { NativeStackNavigationEventMap, NativeStackNavigationOptions } from '@react-navigation/native-stack';
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { StackHeaderComponent, StackHeaderSearchBar, StackScreen } from './stack-utils';
|
|
5
|
-
export declare const Stack: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("@react-navigation/native-stack").NativeStackNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/
|
|
5
|
+
export declare const Stack: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("@react-navigation/native-stack").NativeStackNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/routers").DefaultRouterOptions<string> & ({
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
layout?: ((props: {
|
|
8
8
|
state: StackNavigationState<ParamListBase>;
|
|
@@ -43,13 +43,13 @@ export declare const Stack: React.ForwardRefExoticComponent<Omit<Omit<Omit<impor
|
|
|
43
43
|
payload?: object;
|
|
44
44
|
source?: string;
|
|
45
45
|
target?: string;
|
|
46
|
-
}>>(original: import("@react-navigation/
|
|
46
|
+
}>>(original: import("@react-navigation/routers").Router<StackNavigationState<ParamListBase>, Action>) => Partial<import("@react-navigation/routers").Router<StackNavigationState<ParamListBase>, Action>>) | undefined;
|
|
47
47
|
UNSTABLE_routeNamesChangeBehavior?: "firstMatch" | "lastUnhandled";
|
|
48
48
|
} & ({
|
|
49
49
|
id?: undefined;
|
|
50
50
|
} | {
|
|
51
51
|
id: string;
|
|
52
|
-
})), "children"> & Partial<Pick<Omit<import("@react-navigation/native-stack").NativeStackNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/
|
|
52
|
+
})), "children"> & Partial<Pick<Omit<import("@react-navigation/native-stack").NativeStackNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/routers").DefaultRouterOptions<string> & ({
|
|
53
53
|
children: React.ReactNode;
|
|
54
54
|
layout?: ((props: {
|
|
55
55
|
state: StackNavigationState<ParamListBase>;
|
|
@@ -90,7 +90,7 @@ export declare const Stack: React.ForwardRefExoticComponent<Omit<Omit<Omit<impor
|
|
|
90
90
|
payload?: object;
|
|
91
91
|
source?: string;
|
|
92
92
|
target?: string;
|
|
93
|
-
}>>(original: import("@react-navigation/
|
|
93
|
+
}>>(original: import("@react-navigation/routers").Router<StackNavigationState<ParamListBase>, Action>) => Partial<import("@react-navigation/routers").Router<StackNavigationState<ParamListBase>, Action>>) | undefined;
|
|
94
94
|
UNSTABLE_routeNamesChangeBehavior?: "firstMatch" | "lastUnhandled";
|
|
95
95
|
} & ({
|
|
96
96
|
id?: undefined;
|
package/types/layouts/Tabs.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { type BottomTabNavigationEventMap, type BottomTabNavigationOptions } from '@react-navigation/bottom-tabs';
|
|
2
2
|
import type { ParamListBase, TabNavigationState } from '@react-navigation/native';
|
|
3
3
|
import React from 'react';
|
|
4
|
-
export declare const Tabs: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("@react-navigation/bottom-tabs").BottomTabNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/
|
|
4
|
+
export declare const Tabs: React.ForwardRefExoticComponent<Omit<Omit<Omit<import("@react-navigation/bottom-tabs").BottomTabNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/routers").DefaultRouterOptions<string> & ({
|
|
5
5
|
children: React.ReactNode;
|
|
6
6
|
layout?: ((props: {
|
|
7
7
|
state: TabNavigationState<ParamListBase>;
|
|
@@ -42,13 +42,13 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<Omit<Omit<import
|
|
|
42
42
|
payload?: object;
|
|
43
43
|
source?: string;
|
|
44
44
|
target?: string;
|
|
45
|
-
}>>(original: import("@react-navigation/
|
|
45
|
+
}>>(original: import("@react-navigation/routers").Router<TabNavigationState<ParamListBase>, Action>) => Partial<import("@react-navigation/routers").Router<TabNavigationState<ParamListBase>, Action>>) | undefined;
|
|
46
46
|
UNSTABLE_routeNamesChangeBehavior?: "firstMatch" | "lastUnhandled";
|
|
47
47
|
} & ({
|
|
48
48
|
id?: undefined;
|
|
49
49
|
} | {
|
|
50
50
|
id: string;
|
|
51
|
-
})), "children"> & Partial<Pick<Omit<import("@react-navigation/bottom-tabs").BottomTabNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/
|
|
51
|
+
})), "children"> & Partial<Pick<Omit<import("@react-navigation/bottom-tabs").BottomTabNavigatorProps, "children" | "initialRouteName" | "layout" | "id" | "screenOptions" | "screenListeners" | "screenLayout" | "UNSTABLE_router" | "UNSTABLE_routeNamesChangeBehavior"> & import("@react-navigation/routers").DefaultRouterOptions<string> & ({
|
|
52
52
|
children: React.ReactNode;
|
|
53
53
|
layout?: ((props: {
|
|
54
54
|
state: TabNavigationState<ParamListBase>;
|
|
@@ -89,7 +89,7 @@ export declare const Tabs: React.ForwardRefExoticComponent<Omit<Omit<Omit<import
|
|
|
89
89
|
payload?: object;
|
|
90
90
|
source?: string;
|
|
91
91
|
target?: string;
|
|
92
|
-
}>>(original: import("@react-navigation/
|
|
92
|
+
}>>(original: import("@react-navigation/routers").Router<TabNavigationState<ParamListBase>, Action>) => Partial<import("@react-navigation/routers").Router<TabNavigationState<ParamListBase>, Action>>) | undefined;
|
|
93
93
|
UNSTABLE_routeNamesChangeBehavior?: "firstMatch" | "lastUnhandled";
|
|
94
94
|
} & ({
|
|
95
95
|
id?: undefined;
|
package/types/ui/TabContext.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export declare const TabsDescriptorsContext: import("react").Context<Record<stri
|
|
|
75
75
|
merge?: boolean;
|
|
76
76
|
} : never): void;
|
|
77
77
|
preload<RouteName extends string>(...args: RouteName extends unknown ? [screen: RouteName, params?: object | undefined] : never): void;
|
|
78
|
-
reset(state: TabNavigationState<any> | import("@react-navigation/
|
|
78
|
+
reset(state: TabNavigationState<any> | import("@react-navigation/routers").PartialState<TabNavigationState<any>>): void;
|
|
79
79
|
goBack(): void;
|
|
80
80
|
isFocused(): boolean;
|
|
81
81
|
canGoBack(): boolean;
|
|
@@ -88,7 +88,7 @@ export declare const TabsDescriptorsContext: import("react").Context<Record<stri
|
|
|
88
88
|
index: number;
|
|
89
89
|
routeNames: string[];
|
|
90
90
|
history?: unknown[];
|
|
91
|
-
routes: import("@react-navigation/
|
|
91
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
92
92
|
type: string;
|
|
93
93
|
stale: false;
|
|
94
94
|
}>, {}, {}> | undefined>(id?: string | undefined): T;
|
|
@@ -111,7 +111,7 @@ export declare const TabsNavigatorContext: import("react").Context<({
|
|
|
111
111
|
index: number;
|
|
112
112
|
routeNames: string[];
|
|
113
113
|
history?: unknown[];
|
|
114
|
-
routes: import("@react-navigation/
|
|
114
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
115
115
|
type: string;
|
|
116
116
|
stale: false;
|
|
117
117
|
}>>) => Readonly<{
|
|
@@ -151,15 +151,15 @@ export declare const TabsNavigatorContext: import("react").Context<({
|
|
|
151
151
|
index: number;
|
|
152
152
|
routeNames: string[];
|
|
153
153
|
history?: unknown[];
|
|
154
|
-
routes: import("@react-navigation/
|
|
154
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
155
155
|
type: string;
|
|
156
156
|
stale: false;
|
|
157
|
-
}> | import("@react-navigation/
|
|
157
|
+
}> | import("@react-navigation/routers").PartialState<Readonly<{
|
|
158
158
|
key: string;
|
|
159
159
|
index: number;
|
|
160
160
|
routeNames: string[];
|
|
161
161
|
history?: unknown[];
|
|
162
|
-
routes: import("@react-navigation/
|
|
162
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
163
163
|
type: string;
|
|
164
164
|
stale: false;
|
|
165
165
|
}>>): void;
|
|
@@ -173,7 +173,7 @@ export declare const TabsNavigatorContext: import("react").Context<({
|
|
|
173
173
|
index: number;
|
|
174
174
|
routeNames: string[];
|
|
175
175
|
history?: unknown[];
|
|
176
|
-
routes: import("@react-navigation/
|
|
176
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
177
177
|
type: string;
|
|
178
178
|
stale: false;
|
|
179
179
|
}>;
|
package/types/ui/TabRouter.d.ts
CHANGED
|
@@ -44,15 +44,15 @@ export declare function ExpoTabRouter(options: ExpoTabRouterOptions): Router<Tab
|
|
|
44
44
|
index: number;
|
|
45
45
|
routeNames: string[];
|
|
46
46
|
history?: unknown[];
|
|
47
|
-
routes: import("@react-navigation/
|
|
47
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
48
48
|
type: string;
|
|
49
49
|
stale: false;
|
|
50
|
-
}> | import("@react-navigation/
|
|
50
|
+
}> | import("@react-navigation/routers").PartialState<Readonly<{
|
|
51
51
|
key: string;
|
|
52
52
|
index: number;
|
|
53
53
|
routeNames: string[];
|
|
54
54
|
history?: unknown[];
|
|
55
|
-
routes: import("@react-navigation/
|
|
55
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
56
56
|
type: string;
|
|
57
57
|
stale: false;
|
|
58
58
|
}>> | (Omit<Readonly<{
|
|
@@ -60,11 +60,11 @@ export declare function ExpoTabRouter(options: ExpoTabRouterOptions): Router<Tab
|
|
|
60
60
|
index: number;
|
|
61
61
|
routeNames: string[];
|
|
62
62
|
history?: unknown[];
|
|
63
|
-
routes: import("@react-navigation/
|
|
63
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
64
64
|
type: string;
|
|
65
65
|
stale: false;
|
|
66
66
|
}>, "routes"> & {
|
|
67
|
-
routes: Omit<import("@react-navigation/
|
|
67
|
+
routes: Omit<import("@react-navigation/routers").Route<string>, "key">[];
|
|
68
68
|
})) | undefined;
|
|
69
69
|
source?: string;
|
|
70
70
|
target?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TabRouter.d.ts","sourceRoot":"","sources":["../../src/ui/TabRouter.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,sBAAsB,EAC3B,KAAK,aAAa,EAClB,KAAK,aAAa,IAAI,eAAe,EAErC,KAAK,gBAAgB,IAAI,kBAAkB,EAC3C,KAAK,MAAM,EACX,KAAK,kBAAkB,EACxB,MAAM,0BAA0B,CAAA;AAEjC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAE1C,MAAM,MAAM,oBAAoB,GAAG,kBAAkB,GAAG;IACtD,UAAU,EAAE,UAAU,CAAA;CACvB,CAAA;AAED,MAAM,MAAM,iBAAiB,GACzB,eAAe,GACf,sBAAsB,GACtB;IACE,IAAI,EAAE,SAAS,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAA;QACZ,YAAY,CAAC,EAAE,OAAO,CAAA;QACtB,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB,CAAA;CACF,CAAA;AAEL,wBAAgB,aAAa,CAAC,OAAO,EAAE,oBAAoB;;;;;;;;
|
|
1
|
+
{"version":3,"file":"TabRouter.d.ts","sourceRoot":"","sources":["../../src/ui/TabRouter.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,sBAAsB,EAC3B,KAAK,aAAa,EAClB,KAAK,aAAa,IAAI,eAAe,EAErC,KAAK,gBAAgB,IAAI,kBAAkB,EAC3C,KAAK,MAAM,EACX,KAAK,kBAAkB,EACxB,MAAM,0BAA0B,CAAA;AAEjC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,UAAU,CAAA;AAE1C,MAAM,MAAM,oBAAoB,GAAG,kBAAkB,GAAG;IACtD,UAAU,EAAE,UAAU,CAAA;CACvB,CAAA;AAED,MAAM,MAAM,iBAAiB,GACzB,eAAe,GACf,sBAAsB,GACtB;IACE,IAAI,EAAE,SAAS,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,MAAM,CAAC,EAAE,MAAM,CAAA;IACf,OAAO,EAAE;QACP,IAAI,EAAE,MAAM,CAAA;QACZ,YAAY,CAAC,EAAE,OAAO,CAAA;QACtB,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB,CAAA;CACF,CAAA;AAEL,wBAAgB,aAAa,CAAC,OAAO,EAAE,oBAAoB;;;;;;;;cAdvC,CAAC;YACV,CAAC;aACG,CAAC;WAEV,CAAA;;;;;;;;cAUO,CAAC;aAAuB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAS7B,CAAA;;;;;;;cAEoB,CAAC;;;;;;;;cAKC,CAAC;;;;;UA1BpB,SAAS;aACN,MAAM;aACN,MAAM;aACN;QACP,IAAI,EAAE,MAAM,CAAA;QACZ,YAAY,CAAC,EAAE,OAAO,CAAA;QACtB,MAAM,CAAC,EAAE,MAAM,CAAA;KAChB;GA0EN"}
|
|
@@ -27,7 +27,7 @@ export declare function useTabsWithChildren(options: UseTabsWithChildrenOptions)
|
|
|
27
27
|
index: number;
|
|
28
28
|
routeNames: string[];
|
|
29
29
|
history?: unknown[];
|
|
30
|
-
routes: import("@react-navigation/
|
|
30
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
31
31
|
type: string;
|
|
32
32
|
stale: false;
|
|
33
33
|
}>>) => Readonly<{
|
|
@@ -59,15 +59,15 @@ export declare function useTabsWithChildren(options: UseTabsWithChildrenOptions)
|
|
|
59
59
|
index: number;
|
|
60
60
|
routeNames: string[];
|
|
61
61
|
history?: unknown[];
|
|
62
|
-
routes: import("@react-navigation/
|
|
62
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
63
63
|
type: string;
|
|
64
64
|
stale: false;
|
|
65
|
-
}> | import("@react-navigation/
|
|
65
|
+
}> | import("@react-navigation/routers").PartialState<Readonly<{
|
|
66
66
|
key: string;
|
|
67
67
|
index: number;
|
|
68
68
|
routeNames: string[];
|
|
69
69
|
history?: unknown[];
|
|
70
|
-
routes: import("@react-navigation/
|
|
70
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
71
71
|
type: string;
|
|
72
72
|
stale: false;
|
|
73
73
|
}>>): void;
|
|
@@ -81,7 +81,7 @@ export declare function useTabsWithChildren(options: UseTabsWithChildrenOptions)
|
|
|
81
81
|
index: number;
|
|
82
82
|
routeNames: string[];
|
|
83
83
|
history?: unknown[];
|
|
84
|
-
routes: import("@react-navigation/
|
|
84
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
85
85
|
type: string;
|
|
86
86
|
stale: false;
|
|
87
87
|
}>;
|
|
@@ -119,7 +119,7 @@ export declare function useTabsWithChildren(options: UseTabsWithChildrenOptions)
|
|
|
119
119
|
merge?: boolean;
|
|
120
120
|
} : never): void;
|
|
121
121
|
preload<RouteName extends string>(...args: RouteName extends unknown ? [screen: RouteName, params?: object | undefined] : never): void;
|
|
122
|
-
reset(state: TabNavigationState<any> | import("@react-navigation/
|
|
122
|
+
reset(state: TabNavigationState<any> | import("@react-navigation/routers").PartialState<TabNavigationState<any>>): void;
|
|
123
123
|
goBack(): void;
|
|
124
124
|
isFocused(): boolean;
|
|
125
125
|
canGoBack(): boolean;
|
|
@@ -132,7 +132,7 @@ export declare function useTabsWithChildren(options: UseTabsWithChildrenOptions)
|
|
|
132
132
|
index: number;
|
|
133
133
|
routeNames: string[];
|
|
134
134
|
history?: unknown[];
|
|
135
|
-
routes: import("@react-navigation/
|
|
135
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
136
136
|
type: string;
|
|
137
137
|
stale: false;
|
|
138
138
|
}>, {}, {}> | undefined>(id?: string | undefined): T;
|
|
@@ -171,7 +171,7 @@ export declare function useTabsWithChildren(options: UseTabsWithChildrenOptions)
|
|
|
171
171
|
merge?: boolean;
|
|
172
172
|
} : never): void;
|
|
173
173
|
preload<RouteName extends string>(...args: RouteName extends unknown ? [screen: RouteName, params?: object | undefined] : never): void;
|
|
174
|
-
reset(state: TabNavigationState<any> | import("@react-navigation/
|
|
174
|
+
reset(state: TabNavigationState<any> | import("@react-navigation/routers").PartialState<TabNavigationState<any>>): void;
|
|
175
175
|
goBack(): void;
|
|
176
176
|
isFocused(): boolean;
|
|
177
177
|
canGoBack(): boolean;
|
|
@@ -184,7 +184,7 @@ export declare function useTabsWithChildren(options: UseTabsWithChildrenOptions)
|
|
|
184
184
|
index: number;
|
|
185
185
|
routeNames: string[];
|
|
186
186
|
history?: unknown[];
|
|
187
|
-
routes: import("@react-navigation/
|
|
187
|
+
routes: import("@react-navigation/routers").NavigationRoute<ParamListBase, string>[];
|
|
188
188
|
type: string;
|
|
189
189
|
stale: false;
|
|
190
190
|
}>, {}, {}> | undefined>(id?: string | undefined): T;
|