@planningcenter/chat-react-native 3.43.1-qa-858.1 → 3.44.0-rc.0
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/build/components/display/platform_modal_header_buttons.d.ts +14 -42
- package/build/components/display/platform_modal_header_buttons.d.ts.map +1 -1
- package/build/components/display/platform_modal_header_buttons.js +27 -107
- package/build/components/display/platform_modal_header_buttons.js.map +1 -1
- package/build/components/primitive/form_sheet.d.ts +2 -8
- package/build/components/primitive/form_sheet.d.ts.map +1 -1
- package/build/components/primitive/form_sheet.js +4 -10
- package/build/components/primitive/form_sheet.js.map +1 -1
- package/build/navigation/index.d.ts +149 -76
- package/build/navigation/index.d.ts.map +1 -1
- package/build/navigation/index.js +76 -67
- package/build/navigation/index.js.map +1 -1
- package/build/screens/attachment_actions/attachment_actions_screen.d.ts +1 -1
- package/build/screens/attachment_actions/attachment_actions_screen.d.ts.map +1 -1
- package/build/screens/avatar_picker/avatar_picker_screen.d.ts +2 -2
- package/build/screens/avatar_picker/avatar_picker_screen.d.ts.map +1 -1
- package/build/screens/bug_report_screen.d.ts.map +1 -1
- package/build/screens/bug_report_screen.js +13 -10
- package/build/screens/bug_report_screen.js.map +1 -1
- package/build/screens/conversation/message_read_receipts_screen.d.ts +1 -1
- package/build/screens/conversation/message_read_receipts_screen.d.ts.map +1 -1
- package/build/screens/conversation_details_screen.d.ts.map +1 -1
- package/build/screens/conversation_details_screen.js +12 -11
- package/build/screens/conversation_details_screen.js.map +1 -1
- package/build/screens/conversation_filter_recipients/conversation_filter_recipients_screen.d.ts +1 -1
- package/build/screens/conversation_filter_recipients/conversation_filter_recipients_screen.d.ts.map +1 -1
- package/build/screens/conversation_filters_screen.d.ts +1 -1
- package/build/screens/conversation_filters_screen.d.ts.map +1 -1
- package/build/screens/conversation_filters_screen.js +2 -18
- package/build/screens/conversation_filters_screen.js.map +1 -1
- package/build/screens/conversation_new/components/groups_form.d.ts.map +1 -1
- package/build/screens/conversation_new/components/groups_form.js +3 -2
- package/build/screens/conversation_new/components/groups_form.js.map +1 -1
- package/build/screens/conversation_notification_level_select_screen.d.ts +1 -1
- package/build/screens/conversation_notification_level_select_screen.d.ts.map +1 -1
- package/build/screens/conversation_screen.d.ts.map +1 -1
- package/build/screens/conversation_screen.js +2 -6
- package/build/screens/conversation_screen.js.map +1 -1
- package/build/screens/conversation_select_type_screen.d.ts +1 -1
- package/build/screens/conversation_select_type_screen.d.ts.map +1 -1
- package/build/screens/group_notification_level_select_screen.d.ts +1 -1
- package/build/screens/group_notification_level_select_screen.d.ts.map +1 -1
- package/build/screens/message_actions_screen.d.ts +1 -1
- package/build/screens/message_actions_screen.d.ts.map +1 -1
- package/build/screens/message_report_screen.d.ts.map +1 -1
- package/build/screens/message_report_screen.js +18 -14
- package/build/screens/message_report_screen.js.map +1 -1
- package/build/screens/notification_settings_screen.d.ts.map +1 -1
- package/build/screens/notification_settings_screen.js +14 -0
- package/build/screens/notification_settings_screen.js.map +1 -1
- package/build/screens/reactions_screen.d.ts +1 -1
- package/build/screens/reactions_screen.d.ts.map +1 -1
- package/build/screens/send_giphy_screen.d.ts +1 -1
- package/build/screens/send_giphy_screen.d.ts.map +1 -1
- package/build/screens/system_message_people_screen.d.ts +1 -1
- package/build/screens/system_message_people_screen.d.ts.map +1 -1
- package/package.json +3 -4
- package/src/components/display/platform_modal_header_buttons.tsx +45 -196
- package/src/components/primitive/form_sheet.tsx +15 -19
- package/src/navigation/index.tsx +151 -147
- package/src/screens/bug_report_screen.tsx +15 -16
- package/src/screens/conversation_details_screen.tsx +17 -11
- package/src/screens/conversation_filters_screen.tsx +2 -25
- package/src/screens/conversation_new/components/groups_form.tsx +3 -2
- package/src/screens/conversation_screen.tsx +2 -7
- package/src/screens/message_report_screen.tsx +21 -20
- package/src/screens/notification_settings_screen.tsx +21 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { StaticParamList } from '@react-navigation/native';
|
|
2
|
-
import {
|
|
2
|
+
import { NativeStackHeaderRightProps } from '@react-navigation/native-stack';
|
|
3
3
|
import { CardStyleInterpolators } from '@react-navigation/stack';
|
|
4
4
|
import { AttachmentActionsScreen } from '../screens/attachment_actions/attachment_actions_screen';
|
|
5
5
|
import { AvatarPickerScreen } from '../screens/avatar_picker/avatar_picker_screen';
|
|
@@ -25,55 +25,70 @@ import { SystemMessagePeopleScreen } from '../screens/system_message_people_scre
|
|
|
25
25
|
import { ScreenLayoutWithChatAccessGate } from './screenLayout';
|
|
26
26
|
export declare const NewConversationStack: import("@react-navigation/core").TypedNavigator<{
|
|
27
27
|
ParamList: import("@react-navigation/routers").ParamListBase;
|
|
28
|
-
NavigatorID:
|
|
28
|
+
NavigatorID: undefined;
|
|
29
29
|
State: import("@react-navigation/routers").StackNavigationState<import("@react-navigation/routers").ParamListBase>;
|
|
30
|
-
ScreenOptions: NativeStackNavigationOptions;
|
|
30
|
+
ScreenOptions: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
31
31
|
EventMap: import("@react-navigation/native-stack").NativeStackNavigationEventMap;
|
|
32
32
|
NavigationList: {
|
|
33
|
-
[x: string]: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
33
|
+
[x: string]: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
34
34
|
};
|
|
35
|
-
Navigator: ({ id, initialRouteName,
|
|
35
|
+
Navigator: ({ id, initialRouteName, children, layout, screenListeners, screenOptions, screenLayout, UNSTABLE_getStateForRouteNamesChange, ...rest }: import("@react-navigation/native-stack").NativeStackNavigatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
36
36
|
}, {
|
|
37
37
|
readonly initialRouteName: "ConversationNewEntry";
|
|
38
|
-
readonly screenOptions:
|
|
38
|
+
readonly screenOptions: {
|
|
39
|
+
readonly headerBackButtonDisplayMode: "minimal";
|
|
40
|
+
};
|
|
39
41
|
readonly screenLayout: typeof ScreenLayoutWithChatAccessGate;
|
|
40
42
|
readonly screens: {
|
|
41
43
|
readonly ConversationNewEntry: {
|
|
42
44
|
readonly screen: ({ route }: import("../screens/conversation_select_recipients/types/screen_props").ConversationSelectRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
43
45
|
readonly options: ({ navigation }: {
|
|
44
46
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
45
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
47
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
46
48
|
theme: ReactNavigation.Theme;
|
|
47
|
-
}) =>
|
|
49
|
+
}) => {
|
|
50
|
+
title: string;
|
|
51
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
52
|
+
headerBackVisible: false;
|
|
53
|
+
};
|
|
48
54
|
};
|
|
49
55
|
readonly ConversationSelectGroupRecipients: {
|
|
50
56
|
readonly screen: ({ route, }: import("../screens/conversation_select_recipients/types/screen_props").ConversationSelectRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
51
57
|
readonly options: ({ navigation, route }: {
|
|
52
58
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
53
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
59
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
54
60
|
theme: ReactNavigation.Theme;
|
|
55
|
-
}) =>
|
|
61
|
+
}) => {
|
|
62
|
+
title: string;
|
|
63
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
64
|
+
};
|
|
56
65
|
};
|
|
57
66
|
readonly ConversationSelectTeamsILeadRecipients: {
|
|
58
67
|
readonly screen: ({ route, }: import("../screens/conversation_select_recipients/types/screen_props").ConversationSelectRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
59
68
|
readonly options: ({ navigation, route }: {
|
|
60
69
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
61
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
70
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
62
71
|
theme: ReactNavigation.Theme;
|
|
63
|
-
}) =>
|
|
72
|
+
}) => {
|
|
73
|
+
title: string;
|
|
74
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
75
|
+
};
|
|
64
76
|
};
|
|
65
77
|
readonly ConversationSelectDirectMessageRecipients: {
|
|
66
78
|
readonly screen: typeof ConversationSelectDirectMessageRecipientsScreen;
|
|
67
79
|
readonly if: () => boolean;
|
|
68
80
|
readonly options: ({ navigation, route }: {
|
|
69
81
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
70
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
82
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
71
83
|
theme: ReactNavigation.Theme;
|
|
72
|
-
}) =>
|
|
84
|
+
}) => {
|
|
85
|
+
title: string;
|
|
86
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
87
|
+
};
|
|
73
88
|
};
|
|
74
89
|
readonly ConversationFilterRecipients: {
|
|
75
90
|
readonly screen: ({ route, }: import("../screens/conversation_filter_recipients/types").ConversationFilterRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
76
|
-
readonly options: ()
|
|
91
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
77
92
|
};
|
|
78
93
|
readonly ConversationNew: {
|
|
79
94
|
readonly screen: ({ route }: {
|
|
@@ -92,57 +107,74 @@ export declare const NewConversationStack: import("@react-navigation/core").Type
|
|
|
92
107
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
93
108
|
readonly options: ({ navigation, route }: {
|
|
94
109
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
95
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
110
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
96
111
|
theme: ReactNavigation.Theme;
|
|
97
|
-
}) =>
|
|
112
|
+
}) => {
|
|
113
|
+
title: string;
|
|
114
|
+
headerLeft: () => null;
|
|
115
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
116
|
+
};
|
|
98
117
|
};
|
|
99
118
|
readonly AvatarPicker: {
|
|
100
119
|
readonly screen: typeof AvatarPickerScreen;
|
|
101
|
-
readonly options: ()
|
|
120
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
102
121
|
};
|
|
103
122
|
};
|
|
104
123
|
}>;
|
|
105
124
|
export declare const ChatStack: import("@react-navigation/core").TypedNavigator<{
|
|
106
125
|
ParamList: import("@react-navigation/routers").ParamListBase;
|
|
107
|
-
NavigatorID:
|
|
126
|
+
NavigatorID: undefined;
|
|
108
127
|
State: import("@react-navigation/routers").StackNavigationState<import("@react-navigation/routers").ParamListBase>;
|
|
109
|
-
ScreenOptions: NativeStackNavigationOptions;
|
|
128
|
+
ScreenOptions: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
110
129
|
EventMap: import("@react-navigation/native-stack").NativeStackNavigationEventMap;
|
|
111
130
|
NavigationList: {
|
|
112
|
-
[x: string]: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
131
|
+
[x: string]: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
113
132
|
};
|
|
114
|
-
Navigator: ({ id, initialRouteName,
|
|
133
|
+
Navigator: ({ id, initialRouteName, children, layout, screenListeners, screenOptions, screenLayout, UNSTABLE_getStateForRouteNamesChange, ...rest }: import("@react-navigation/native-stack").NativeStackNavigatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
115
134
|
}, {
|
|
116
|
-
readonly screenOptions:
|
|
135
|
+
readonly screenOptions: {
|
|
136
|
+
readonly headerBackButtonDisplayMode: "minimal";
|
|
137
|
+
};
|
|
117
138
|
readonly screenLayout: typeof ScreenLayoutWithChatAccessGate;
|
|
118
139
|
readonly screens: {
|
|
119
140
|
readonly Conversations: {
|
|
120
141
|
readonly screen: typeof ConversationsScreen;
|
|
121
142
|
readonly options: ({ route, navigation }: {
|
|
122
143
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
123
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
144
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
124
145
|
theme: ReactNavigation.Theme;
|
|
125
|
-
}) =>
|
|
146
|
+
}) => {
|
|
147
|
+
headerTitle: string;
|
|
148
|
+
headerBackVisible: false;
|
|
149
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
150
|
+
};
|
|
126
151
|
};
|
|
127
152
|
readonly ConversationFilters: {
|
|
128
153
|
readonly screen: (_props: import("..").ConversationFiltersScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
129
|
-
readonly options: ()
|
|
154
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
130
155
|
};
|
|
131
156
|
readonly Conversation: {
|
|
132
157
|
readonly screen: typeof ConversationScreen;
|
|
133
158
|
readonly options: ({ route, navigation }: {
|
|
134
159
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
135
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
160
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
136
161
|
theme: ReactNavigation.Theme;
|
|
137
|
-
}) =>
|
|
162
|
+
}) => {
|
|
163
|
+
headerTitle: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
164
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
165
|
+
headerLeft: (props: import("@react-navigation/native-stack").NativeStackHeaderLeftProps) => import("react/jsx-runtime").JSX.Element;
|
|
166
|
+
};
|
|
138
167
|
};
|
|
139
168
|
readonly ConversationReply: {
|
|
140
169
|
readonly screen: typeof ConversationScreen;
|
|
141
170
|
readonly options: ({ route, navigation }: {
|
|
142
171
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
143
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
172
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
144
173
|
theme: ReactNavigation.Theme;
|
|
145
|
-
}) =>
|
|
174
|
+
}) => {
|
|
175
|
+
headerLeft?: ((props: import("@react-navigation/native-stack").NativeStackHeaderLeftProps) => import("react/jsx-runtime").JSX.Element) | undefined;
|
|
176
|
+
title: string;
|
|
177
|
+
};
|
|
146
178
|
};
|
|
147
179
|
readonly TeamConversation: {
|
|
148
180
|
readonly screen: ({ route }: import("..").TeamConversationScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -157,106 +189,134 @@ export declare const ChatStack: import("@react-navigation/core").TypedNavigator<
|
|
|
157
189
|
readonly screen: typeof ConversationDetailsScreen;
|
|
158
190
|
readonly options: ({ navigation }: {
|
|
159
191
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
160
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
192
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
161
193
|
theme: ReactNavigation.Theme;
|
|
162
|
-
}) =>
|
|
194
|
+
}) => {
|
|
195
|
+
presentation: "modal";
|
|
196
|
+
title: string;
|
|
197
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
198
|
+
};
|
|
163
199
|
};
|
|
164
200
|
readonly AvatarPicker: {
|
|
165
201
|
readonly screen: typeof AvatarPickerScreen;
|
|
166
|
-
readonly options: ()
|
|
202
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
167
203
|
};
|
|
168
204
|
readonly ChatSettings: {
|
|
169
205
|
readonly screen: typeof SettingsScreen;
|
|
170
206
|
readonly options: ({ navigation }: {
|
|
171
207
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
172
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
208
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
173
209
|
theme: ReactNavigation.Theme;
|
|
174
|
-
}) =>
|
|
210
|
+
}) => {
|
|
211
|
+
title: string;
|
|
212
|
+
headerBackVisible: false;
|
|
213
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
214
|
+
};
|
|
175
215
|
};
|
|
176
216
|
readonly NotificationSettings: {
|
|
177
217
|
readonly screen: typeof NotificationSettingsScreen;
|
|
178
218
|
readonly options: ({ navigation }: {
|
|
179
219
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
180
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
220
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
181
221
|
theme: ReactNavigation.Theme;
|
|
182
|
-
}) =>
|
|
222
|
+
}) => {
|
|
223
|
+
title: string;
|
|
224
|
+
headerBackVisible: false;
|
|
225
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
226
|
+
};
|
|
183
227
|
};
|
|
184
228
|
readonly PreferredAppSelection: {
|
|
185
229
|
readonly screen: typeof PreferredAppSelectionScreen;
|
|
186
|
-
readonly options:
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
theme: ReactNavigation.Theme;
|
|
190
|
-
}) => NativeStackNavigationOptions;
|
|
230
|
+
readonly options: {
|
|
231
|
+
readonly title: "Preferred app";
|
|
232
|
+
};
|
|
191
233
|
};
|
|
192
234
|
readonly GroupNotificationSettings: {
|
|
193
235
|
readonly screen: typeof GroupNotificationSettingsScreen;
|
|
194
236
|
readonly options: ({ route, navigation }: {
|
|
195
237
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
196
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
238
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
197
239
|
theme: ReactNavigation.Theme;
|
|
198
|
-
}) =>
|
|
240
|
+
}) => {
|
|
241
|
+
title: string;
|
|
242
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
243
|
+
};
|
|
199
244
|
};
|
|
200
245
|
readonly GroupNotificationLevelSelect: {
|
|
201
246
|
readonly screen: typeof GroupNotificationLevelSelectScreen;
|
|
202
|
-
readonly options: ()
|
|
247
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
203
248
|
};
|
|
204
249
|
readonly ConversationNotificationLevelSelect: {
|
|
205
250
|
readonly screen: typeof ConversationNotificationLevelSelectScreen;
|
|
206
|
-
readonly options: ()
|
|
251
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
207
252
|
};
|
|
208
253
|
readonly New: {
|
|
209
254
|
readonly screen: import("@react-navigation/core").TypedNavigator<{
|
|
210
255
|
ParamList: import("@react-navigation/routers").ParamListBase;
|
|
211
|
-
NavigatorID:
|
|
256
|
+
NavigatorID: undefined;
|
|
212
257
|
State: import("@react-navigation/routers").StackNavigationState<import("@react-navigation/routers").ParamListBase>;
|
|
213
|
-
ScreenOptions: NativeStackNavigationOptions;
|
|
258
|
+
ScreenOptions: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
214
259
|
EventMap: import("@react-navigation/native-stack").NativeStackNavigationEventMap;
|
|
215
260
|
NavigationList: {
|
|
216
|
-
[x: string]: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
261
|
+
[x: string]: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
217
262
|
};
|
|
218
|
-
Navigator: ({ id, initialRouteName,
|
|
263
|
+
Navigator: ({ id, initialRouteName, children, layout, screenListeners, screenOptions, screenLayout, UNSTABLE_getStateForRouteNamesChange, ...rest }: import("@react-navigation/native-stack").NativeStackNavigatorProps) => import("react/jsx-runtime").JSX.Element;
|
|
219
264
|
}, {
|
|
220
265
|
readonly initialRouteName: "ConversationNewEntry";
|
|
221
|
-
readonly screenOptions:
|
|
266
|
+
readonly screenOptions: {
|
|
267
|
+
readonly headerBackButtonDisplayMode: "minimal";
|
|
268
|
+
};
|
|
222
269
|
readonly screenLayout: typeof ScreenLayoutWithChatAccessGate;
|
|
223
270
|
readonly screens: {
|
|
224
271
|
readonly ConversationNewEntry: {
|
|
225
272
|
readonly screen: ({ route }: import("../screens/conversation_select_recipients/types/screen_props").ConversationSelectRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
226
273
|
readonly options: ({ navigation }: {
|
|
227
274
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
228
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
275
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
229
276
|
theme: ReactNavigation.Theme;
|
|
230
|
-
}) =>
|
|
277
|
+
}) => {
|
|
278
|
+
title: string;
|
|
279
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
280
|
+
headerBackVisible: false;
|
|
281
|
+
};
|
|
231
282
|
};
|
|
232
283
|
readonly ConversationSelectGroupRecipients: {
|
|
233
284
|
readonly screen: ({ route, }: import("../screens/conversation_select_recipients/types/screen_props").ConversationSelectRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
234
285
|
readonly options: ({ navigation, route }: {
|
|
235
286
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
236
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
287
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
237
288
|
theme: ReactNavigation.Theme;
|
|
238
|
-
}) =>
|
|
289
|
+
}) => {
|
|
290
|
+
title: string;
|
|
291
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
292
|
+
};
|
|
239
293
|
};
|
|
240
294
|
readonly ConversationSelectTeamsILeadRecipients: {
|
|
241
295
|
readonly screen: ({ route, }: import("../screens/conversation_select_recipients/types/screen_props").ConversationSelectRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
242
296
|
readonly options: ({ navigation, route }: {
|
|
243
297
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
244
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
298
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
245
299
|
theme: ReactNavigation.Theme;
|
|
246
|
-
}) =>
|
|
300
|
+
}) => {
|
|
301
|
+
title: string;
|
|
302
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
303
|
+
};
|
|
247
304
|
};
|
|
248
305
|
readonly ConversationSelectDirectMessageRecipients: {
|
|
249
306
|
readonly screen: typeof ConversationSelectDirectMessageRecipientsScreen;
|
|
250
307
|
readonly if: () => boolean;
|
|
251
308
|
readonly options: ({ navigation, route }: {
|
|
252
309
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
253
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
310
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
254
311
|
theme: ReactNavigation.Theme;
|
|
255
|
-
}) =>
|
|
312
|
+
}) => {
|
|
313
|
+
title: string;
|
|
314
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
315
|
+
};
|
|
256
316
|
};
|
|
257
317
|
readonly ConversationFilterRecipients: {
|
|
258
318
|
readonly screen: ({ route, }: import("../screens/conversation_filter_recipients/types").ConversationFilterRecipientsScreenProps) => import("react/jsx-runtime").JSX.Element;
|
|
259
|
-
readonly options: ()
|
|
319
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
260
320
|
};
|
|
261
321
|
readonly ConversationNew: {
|
|
262
322
|
readonly screen: ({ route }: {
|
|
@@ -275,13 +335,17 @@ export declare const ChatStack: import("@react-navigation/core").TypedNavigator<
|
|
|
275
335
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
276
336
|
readonly options: ({ navigation, route }: {
|
|
277
337
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
278
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
338
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
279
339
|
theme: ReactNavigation.Theme;
|
|
280
|
-
}) =>
|
|
340
|
+
}) => {
|
|
341
|
+
title: string;
|
|
342
|
+
headerLeft: () => null;
|
|
343
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
344
|
+
};
|
|
281
345
|
};
|
|
282
346
|
readonly AvatarPicker: {
|
|
283
347
|
readonly screen: typeof AvatarPickerScreen;
|
|
284
|
-
readonly options: ()
|
|
348
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
285
349
|
};
|
|
286
350
|
};
|
|
287
351
|
}>;
|
|
@@ -309,45 +373,49 @@ export declare const ChatStack: import("@react-navigation/core").TypedNavigator<
|
|
|
309
373
|
readonly if: () => boolean;
|
|
310
374
|
readonly options: ({ navigation }: {
|
|
311
375
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
312
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
376
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
313
377
|
theme: ReactNavigation.Theme;
|
|
314
|
-
}) =>
|
|
378
|
+
}) => {
|
|
379
|
+
title: string;
|
|
380
|
+
headerLeft: () => null;
|
|
381
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
382
|
+
};
|
|
315
383
|
};
|
|
316
384
|
readonly SendGiphy: {
|
|
317
385
|
readonly screen: typeof SendGiphyScreen;
|
|
318
|
-
readonly options: ()
|
|
386
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
319
387
|
};
|
|
320
388
|
readonly MessageActions: {
|
|
321
389
|
readonly screen: typeof MessageActionsScreen;
|
|
322
|
-
readonly options: ()
|
|
390
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
323
391
|
};
|
|
324
392
|
readonly MessageReport: {
|
|
325
393
|
readonly screen: typeof MessageReportScreen;
|
|
326
|
-
readonly options: ({ navigation, route, }: import("@react-navigation/native-stack").NativeStackScreenProps<any>) => NativeStackNavigationOptions;
|
|
394
|
+
readonly options: ({ navigation, route, }: import("@react-navigation/native-stack").NativeStackScreenProps<any>) => import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
327
395
|
};
|
|
328
396
|
readonly AttachmentActions: {
|
|
329
397
|
readonly screen: typeof AttachmentActionsScreen;
|
|
330
|
-
readonly options: ()
|
|
398
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
331
399
|
};
|
|
332
400
|
readonly ConversationSelectType: {
|
|
333
401
|
readonly screen: typeof ConversationSelectTypeScreen;
|
|
334
|
-
readonly options: ()
|
|
402
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
335
403
|
};
|
|
336
404
|
readonly Reactions: {
|
|
337
405
|
readonly screen: typeof ReactionsScreen;
|
|
338
|
-
readonly options: ()
|
|
406
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
339
407
|
};
|
|
340
408
|
readonly SystemMessagePeople: {
|
|
341
409
|
readonly screen: typeof SystemMessagePeopleScreen;
|
|
342
|
-
readonly options: ()
|
|
410
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
343
411
|
};
|
|
344
412
|
readonly MessageReadReceipts: {
|
|
345
413
|
readonly screen: typeof MessageReadReceiptsScreen;
|
|
346
|
-
readonly options: ()
|
|
414
|
+
readonly options: import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
347
415
|
};
|
|
348
416
|
readonly BugReport: {
|
|
349
417
|
readonly screen: typeof BugReportScreen;
|
|
350
|
-
readonly options: ({ navigation, }: import("@react-navigation/native-stack").NativeStackScreenProps<any>) => NativeStackNavigationOptions;
|
|
418
|
+
readonly options: ({ navigation, }: import("@react-navigation/native-stack").NativeStackScreenProps<any>) => import("@react-navigation/native-stack").NativeStackNavigationOptions;
|
|
351
419
|
};
|
|
352
420
|
readonly GetHelp: {
|
|
353
421
|
readonly screen: ({ route }: {
|
|
@@ -359,9 +427,14 @@ export declare const ChatStack: import("@react-navigation/core").TypedNavigator<
|
|
|
359
427
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
360
428
|
readonly options: ({ navigation }: {
|
|
361
429
|
route: import("@react-navigation/core").RouteProp<import("@react-navigation/routers").ParamListBase, string>;
|
|
362
|
-
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string,
|
|
430
|
+
navigation: import("@react-navigation/native-stack").NativeStackNavigationProp<import("@react-navigation/routers").ParamListBase, string, undefined>;
|
|
363
431
|
theme: ReactNavigation.Theme;
|
|
364
|
-
}) =>
|
|
432
|
+
}) => {
|
|
433
|
+
headerTitle: string;
|
|
434
|
+
headerBackVisible: false;
|
|
435
|
+
presentation: "modal";
|
|
436
|
+
headerRight: (props: NativeStackHeaderRightProps) => import("react/jsx-runtime").JSX.Element;
|
|
437
|
+
};
|
|
365
438
|
};
|
|
366
439
|
readonly NotFound: {
|
|
367
440
|
readonly screen: typeof NotFound;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/navigation/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/navigation/index.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,eAAe,EAAE,MAAM,0BAA0B,CAAA;AAC1D,OAAO,EAEL,2BAA2B,EAC5B,MAAM,gCAAgC,CAAA;AACvC,OAAO,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAA;AAWhE,OAAO,EACL,uBAAuB,EAExB,MAAM,yDAAyD,CAAA;AAChE,OAAO,EACL,kBAAkB,EAGnB,MAAM,+CAA+C,CAAA;AACtD,OAAO,EAAE,eAAe,EAA0B,MAAM,8BAA8B,CAAA;AACtF,OAAO,EACL,yBAAyB,EAE1B,MAAM,sDAAsD,CAAA;AAC7D,OAAO,EAAE,yBAAyB,EAAE,MAAM,wCAAwC,CAAA;AAWlF,OAAO,EACL,yCAAyC,EAE1C,MAAM,0DAA0D,CAAA;AACjE,OAAO,EAEL,kBAAkB,EAEnB,MAAM,gCAAgC,CAAA;AAEvC,OAAO,EAAE,+CAA+C,EAAE,MAAM,gGAAgG,CAAA;AAIhK,OAAO,EACL,4BAA4B,EAE7B,MAAM,4CAA4C,CAAA;AACnD,OAAO,EAAE,mBAAmB,EAAE,MAAM,+CAA+C,CAAA;AAEnF,OAAO,EACL,kCAAkC,EAEnC,MAAM,mDAAmD,CAAA;AAC1D,OAAO,EAAE,+BAA+B,EAAE,MAAM,+CAA+C,CAAA;AAC/F,OAAO,EACL,oBAAoB,EAErB,MAAM,mCAAmC,CAAA;AAC1C,OAAO,EAAE,mBAAmB,EAA8B,MAAM,kCAAkC,CAAA;AAClG,OAAO,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAA;AAC/C,OAAO,EAAE,0BAA0B,EAAE,MAAM,yCAAyC,CAAA;AACpF,OAAO,EAAE,2BAA2B,EAAE,MAAM,2CAA2C,CAAA;AACvF,OAAO,EAAE,eAAe,EAA0B,MAAM,6BAA6B,CAAA;AACrF,OAAO,EAAE,eAAe,EAA0B,MAAM,8BAA8B,CAAA;AACtF,OAAO,EAAE,cAAc,EAAE,MAAM,4BAA4B,CAAA;AAC3D,OAAO,EACL,yBAAyB,EAE1B,MAAM,yCAAyC,CAAA;AAEhD,OAAO,EAAE,8BAA8B,EAAE,MAAM,gBAAgB,CAAA;AAE/D,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;qCAWJ,2BAA2B;;;;;;;;;;;;qCAU3B,2BAA2B;;;;;;;;;;;qCAa3B,2BAA2B;;;;;;;;;;;;qCAc3B,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCAkB3B,2BAA2B;;;;;;;;EAkBtD,CAAA;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;qCAWO,2BAA2B;;;;;;;;;;;;;;qCAgB3B,2BAA2B;qCAgB3B,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;qCA0C3B,2BAA2B;;;;;;;;;;;;;;;;qCAc3B,2BAA2B;;;;;;;;;;;;qCAU3B,2BAA2B;;;;;;;;;;;;;;;;;qCAe3B,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAvM3B,2BAA2B;;;;;;;;;;;;iDAU3B,2BAA2B;;;;;;;;;;;iDAa3B,2BAA2B;;;;;;;;;;;;iDAc3B,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iDAkB3B,2BAA2B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8OtD,CAAA;AAEF,KAAK,kBAAkB,GAAG,eAAe,CAAC,OAAO,SAAS,CAAC,CAAA;AAE3D,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,eAAe,CAAC;QACxB,UAAU,aAAc,SAAQ,kBAAkB;SAAG;KACtD;CACF"}
|