From a30c2e59f82ab16eb37b8d6f24cc5cd2f844a266 Mon Sep 17 00:00:00 2001 From: Rohit Bansal <40559587+Rohit3523@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:00:20 +0530 Subject: [PATCH 01/11] Replace some component of react-native-gesture-handler --- app/containers/AudioPlayer/Seek.tsx | 37 +++++++++---------- .../components/SendThreadToChannel.tsx | 6 +-- app/containers/RoomHeader/RoomHeader.tsx | 2 +- app/containers/TabView/index.tsx | 2 +- app/containers/TouchableOpacity/index.tsx | 31 ++++++++++++++++ app/views/RoomsListView/components/Header.tsx | 4 +- app/views/ShareView/Thumbs.tsx | 10 ++--- 7 files changed, 59 insertions(+), 33 deletions(-) create mode 100644 app/containers/TouchableOpacity/index.tsx diff --git a/app/containers/AudioPlayer/Seek.tsx b/app/containers/AudioPlayer/Seek.tsx index eecd5d444e0..90f3d107cba 100644 --- a/app/containers/AudioPlayer/Seek.tsx +++ b/app/containers/AudioPlayer/Seek.tsx @@ -1,10 +1,9 @@ import React from 'react'; import { type LayoutChangeEvent, View, TextInput, type TextInputProps, TouchableNativeFeedback } from 'react-native'; -import { PanGestureHandler, type PanGestureHandlerGestureEvent } from 'react-native-gesture-handler'; +import { Gesture, GestureDetector } from 'react-native-gesture-handler'; import Animated, { type SharedValue, runOnJS, - useAnimatedGestureHandler, useAnimatedProps, useAnimatedStyle, useDerivedValue, @@ -64,21 +63,21 @@ const Seek = ({ currentTime, duration, loaded = false, onChangeTime }: ISeek) => maxWidth.value = width; }; - const onGestureEvent = useAnimatedGestureHandler({ - onStart: (event, ctx) => { - isPanning.value = true; - ctx.offsetX = translateX.value; - }, - onActive: ({ translationX }, ctx) => { - translateX.value = clamp(ctx.offsetX + translationX, 0, maxWidth.value); - scale.value = 1.3; - }, - onFinish() { - scale.value = 1; - isPanning.value = false; - runOnJS(onChangeTime)(Math.round(currentTime.value * 1000)); - } - }); + const panGesture = Gesture.Pan() + .enabled(loaded) + .activeOffsetX([-ACTIVE_OFFSET_X, ACTIVE_OFFSET_X]) + .onStart(() => { + isPanning.value = true; + }) + .onUpdate((event) => { + translateX.value = clamp(translateX.value + event.translationX, 0, maxWidth.value); + scale.value = 1.3; + }) + .onEnd(() => { + scale.value = 1; + isPanning.value = false; + runOnJS(onChangeTime)(Math.round(currentTime.value * 1000)); + }); useDerivedValue(() => { if (isPanning.value) { @@ -118,9 +117,9 @@ const Seek = ({ currentTime, duration, loaded = false, onChangeTime }: ISeek) => - + - + diff --git a/app/containers/MessageComposer/components/SendThreadToChannel.tsx b/app/containers/MessageComposer/components/SendThreadToChannel.tsx index e752e89c271..dbff168b042 100644 --- a/app/containers/MessageComposer/components/SendThreadToChannel.tsx +++ b/app/containers/MessageComposer/components/SendThreadToChannel.tsx @@ -1,9 +1,9 @@ -import { TouchableWithoutFeedback } from 'react-native-gesture-handler'; import { StyleSheet, Text } from 'react-native'; import React, { useEffect, useRef } from 'react'; import { type Subscription } from 'rxjs'; import { Q } from '@nozbe/watermelondb'; +import TouchableOpacity from '../../../containers/TouchableOpacity'; import { useRoomContext } from '../../../views/RoomView/context'; import { useAlsoSendThreadToChannel, useMessageComposerApi } from '../context'; import { CustomIcon } from '../../CustomIcon'; @@ -70,7 +70,7 @@ export const SendThreadToChannel = (): React.ReactElement | null => { } return ( - setAlsoSendThreadToChannel(!alsoSendThreadToChannel)} testID='message-composer-send-to-channel'> @@ -81,7 +81,7 @@ export const SendThreadToChannel = (): React.ReactElement | null => { color={alsoSendThreadToChannel ? colors.buttonBackgroundPrimaryDefault : colors.fontDefault} /> {I18n.t('Message_composer_Send_to_channel')} - + ); }; diff --git a/app/containers/RoomHeader/RoomHeader.tsx b/app/containers/RoomHeader/RoomHeader.tsx index ec65eb792ea..07cf29eec1d 100644 --- a/app/containers/RoomHeader/RoomHeader.tsx +++ b/app/containers/RoomHeader/RoomHeader.tsx @@ -1,7 +1,7 @@ import React from 'react'; import { StyleSheet, Text, useWindowDimensions, View } from 'react-native'; -import { TouchableOpacity } from 'react-native-gesture-handler'; +import TouchableOpacity from '../TouchableOpacity'; import { useResponsiveLayout } from '../../lib/hooks/useResponsiveLayout/useResponsiveLayout'; import I18n from '../../i18n'; import sharedStyles from '../../views/Styles'; diff --git a/app/containers/TabView/index.tsx b/app/containers/TabView/index.tsx index 6c6679ce7b4..0d902663445 100644 --- a/app/containers/TabView/index.tsx +++ b/app/containers/TabView/index.tsx @@ -1,8 +1,8 @@ import React, { useCallback, useState } from 'react'; import { View } from 'react-native'; import { TabView as ReanimatedTabView, type Route, type NavigationState } from 'reanimated-tab-view'; -import { TouchableOpacity } from 'react-native-gesture-handler'; +import TouchableOpacity from '../TouchableOpacity'; import styles from './styles'; import { useTheme } from '../../theme'; diff --git a/app/containers/TouchableOpacity/index.tsx b/app/containers/TouchableOpacity/index.tsx new file mode 100644 index 00000000000..6a63754c045 --- /dev/null +++ b/app/containers/TouchableOpacity/index.tsx @@ -0,0 +1,31 @@ +import React from 'react'; +import Animated, { useSharedValue, useAnimatedStyle, withTiming } from 'react-native-reanimated'; +import { Pressable, type PressableProps } from 'react-native-gesture-handler'; +import { StyleProp, ViewStyle } from 'react-native'; + +interface TouchableOpacityProps extends PressableProps { + style?: StyleProp; + activeOpacity?: number; +} + +function TouchableOpacity(props: TouchableOpacityProps): React.JSX.Element { + const opacity = useSharedValue(props.activeOpacity || 1); + const animatedStyle = useAnimatedStyle(() => ({ + opacity: opacity.value + })); + + const onPressIn = () => { + opacity.value = withTiming(0.2); + }; + const onPressOut = () => { + opacity.value = withTiming(props.activeOpacity || 1); + }; + + return ( + + {props.children} + + ); +} + +export default TouchableOpacity; diff --git a/app/views/RoomsListView/components/Header.tsx b/app/views/RoomsListView/components/Header.tsx index 6d56a9582f0..56a2f9bdaf0 100644 --- a/app/views/RoomsListView/components/Header.tsx +++ b/app/views/RoomsListView/components/Header.tsx @@ -1,6 +1,5 @@ import React, { memo } from 'react'; import { StyleSheet, Text, View, useWindowDimensions } from 'react-native'; -import { TouchableOpacity } from 'react-native-gesture-handler'; import { showActionSheetRef } from '../../../containers/ActionSheet'; import SearchHeader from '../../../containers/SearchHeader'; @@ -9,6 +8,7 @@ import { useAppSelector } from '../../../lib/hooks/useAppSelector'; import { useTheme } from '../../../theme'; import sharedStyles from '../../Styles'; import ServersList from './ServersList'; +import TouchableOpacity from '../../../containers/TouchableOpacity'; const styles = StyleSheet.create({ container: { @@ -32,8 +32,6 @@ const styles = StyleSheet.create({ // search and searchEnabled need to be props because Header is used on react-navigation, which does not support context const RoomsListHeaderView = ({ search, searchEnabled }: { search: (text: string) => void; searchEnabled: boolean }) => { - 'use memo'; - const connecting = useAppSelector(state => state.meteor.connecting || state.server.loading); const connected = useAppSelector(state => state.meteor.connected); const isFetching = useAppSelector(state => state.rooms.isFetching); diff --git a/app/views/ShareView/Thumbs.tsx b/app/views/ShareView/Thumbs.tsx index d3bc25fb99a..3ddbf547925 100644 --- a/app/views/ShareView/Thumbs.tsx +++ b/app/views/ShareView/Thumbs.tsx @@ -1,11 +1,11 @@ import React from 'react'; import { FlatList, Image, StyleSheet, View } from 'react-native'; -import { RectButton, TouchableNativeFeedback, TouchableOpacity } from 'react-native-gesture-handler'; +import { RectButton } from 'react-native-gesture-handler'; +import TouchableOpacity from '../../containers/TouchableOpacity'; import { BUTTON_HIT_SLOP } from '../../containers/message/utils'; import { themes } from '../../lib/constants/colors'; import { CustomIcon } from '../../containers/CustomIcon'; -import { isIOS } from '../../lib/methods/helpers'; import { THUMBS_HEIGHT } from './constants'; import { type TSupportedThemes } from '../../theme'; import { type IShareAttachment } from '../../definitions'; @@ -92,10 +92,8 @@ const ThumbContent = React.memo(({ item, theme }: IThumbContent) => { ); }); -const ThumbButton = isIOS ? TouchableOpacity : TouchableNativeFeedback; - const Thumb = ({ item, theme, isShareExtension, onPress, onRemove }: IThumb) => ( - onPress(item)} activeOpacity={0.7}> + onPress(item)} activeOpacity={0.7}> <> ) : null} - + ); const Thumbs = ({ attachments, theme, isShareExtension, onPress, onRemove }: IThumbs) => { From 108da2ee23eb6d5fd3343254e298fbcd1bcd0ed7 Mon Sep 17 00:00:00 2001 From: Rohit Bansal <40559587+Rohit3523@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:04:33 +0530 Subject: [PATCH 02/11] lint fix --- .../MessageComposer/components/SendThreadToChannel.tsx | 2 +- app/containers/TouchableOpacity/index.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/containers/MessageComposer/components/SendThreadToChannel.tsx b/app/containers/MessageComposer/components/SendThreadToChannel.tsx index dbff168b042..3078a839072 100644 --- a/app/containers/MessageComposer/components/SendThreadToChannel.tsx +++ b/app/containers/MessageComposer/components/SendThreadToChannel.tsx @@ -3,7 +3,7 @@ import React, { useEffect, useRef } from 'react'; import { type Subscription } from 'rxjs'; import { Q } from '@nozbe/watermelondb'; -import TouchableOpacity from '../../../containers/TouchableOpacity'; +import TouchableOpacity from '../../TouchableOpacity'; import { useRoomContext } from '../../../views/RoomView/context'; import { useAlsoSendThreadToChannel, useMessageComposerApi } from '../context'; import { CustomIcon } from '../../CustomIcon'; diff --git a/app/containers/TouchableOpacity/index.tsx b/app/containers/TouchableOpacity/index.tsx index 6a63754c045..c7af868727f 100644 --- a/app/containers/TouchableOpacity/index.tsx +++ b/app/containers/TouchableOpacity/index.tsx @@ -1,7 +1,7 @@ import React from 'react'; -import Animated, { useSharedValue, useAnimatedStyle, withTiming } from 'react-native-reanimated'; +import { useSharedValue, useAnimatedStyle, withTiming } from 'react-native-reanimated'; import { Pressable, type PressableProps } from 'react-native-gesture-handler'; -import { StyleProp, ViewStyle } from 'react-native'; +import type { StyleProp, ViewStyle } from 'react-native'; interface TouchableOpacityProps extends PressableProps { style?: StyleProp; From 7778b5d3f4e7751956da6be39dab43076ff66fde Mon Sep 17 00:00:00 2001 From: Rohit3523 Date: Thu, 6 Nov 2025 20:37:57 +0000 Subject: [PATCH 03/11] chore: format code and fix lint issues [skip ci] --- app/containers/AudioPlayer/Seek.tsx | 30 ++++++++++----------- app/containers/TouchableOpacity/index.tsx | 32 +++++++++++------------ 2 files changed, 31 insertions(+), 31 deletions(-) diff --git a/app/containers/AudioPlayer/Seek.tsx b/app/containers/AudioPlayer/Seek.tsx index 90f3d107cba..7089e034893 100644 --- a/app/containers/AudioPlayer/Seek.tsx +++ b/app/containers/AudioPlayer/Seek.tsx @@ -63,21 +63,21 @@ const Seek = ({ currentTime, duration, loaded = false, onChangeTime }: ISeek) => maxWidth.value = width; }; - const panGesture = Gesture.Pan() - .enabled(loaded) - .activeOffsetX([-ACTIVE_OFFSET_X, ACTIVE_OFFSET_X]) - .onStart(() => { - isPanning.value = true; - }) - .onUpdate((event) => { - translateX.value = clamp(translateX.value + event.translationX, 0, maxWidth.value); - scale.value = 1.3; - }) - .onEnd(() => { - scale.value = 1; - isPanning.value = false; - runOnJS(onChangeTime)(Math.round(currentTime.value * 1000)); - }); + const panGesture = Gesture.Pan() + .enabled(loaded) + .activeOffsetX([-ACTIVE_OFFSET_X, ACTIVE_OFFSET_X]) + .onStart(() => { + isPanning.value = true; + }) + .onUpdate(event => { + translateX.value = clamp(translateX.value + event.translationX, 0, maxWidth.value); + scale.value = 1.3; + }) + .onEnd(() => { + scale.value = 1; + isPanning.value = false; + runOnJS(onChangeTime)(Math.round(currentTime.value * 1000)); + }); useDerivedValue(() => { if (isPanning.value) { diff --git a/app/containers/TouchableOpacity/index.tsx b/app/containers/TouchableOpacity/index.tsx index c7af868727f..c42da1c11f8 100644 --- a/app/containers/TouchableOpacity/index.tsx +++ b/app/containers/TouchableOpacity/index.tsx @@ -5,27 +5,27 @@ import type { StyleProp, ViewStyle } from 'react-native'; interface TouchableOpacityProps extends PressableProps { style?: StyleProp; - activeOpacity?: number; + activeOpacity?: number; } function TouchableOpacity(props: TouchableOpacityProps): React.JSX.Element { - const opacity = useSharedValue(props.activeOpacity || 1); - const animatedStyle = useAnimatedStyle(() => ({ - opacity: opacity.value - })); - - const onPressIn = () => { - opacity.value = withTiming(0.2); - }; - const onPressOut = () => { - opacity.value = withTiming(props.activeOpacity || 1); - }; + const opacity = useSharedValue(props.activeOpacity || 1); + const animatedStyle = useAnimatedStyle(() => ({ + opacity: opacity.value + })); + + const onPressIn = () => { + opacity.value = withTiming(0.2); + }; + const onPressOut = () => { + opacity.value = withTiming(props.activeOpacity || 1); + }; return ( - - {props.children} - - ); + + {props.children} + + ); } export default TouchableOpacity; From b35dbb641f4074d648311ef2ca36054f36828765 Mon Sep 17 00:00:00 2001 From: Rohit Bansal <40559587+Rohit3523@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:46:04 +0530 Subject: [PATCH 04/11] Using react pressable for animation and optimise --- app/containers/TouchableOpacity/index.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app/containers/TouchableOpacity/index.tsx b/app/containers/TouchableOpacity/index.tsx index c42da1c11f8..719be8eba1a 100644 --- a/app/containers/TouchableOpacity/index.tsx +++ b/app/containers/TouchableOpacity/index.tsx @@ -1,30 +1,32 @@ import React from 'react'; -import { useSharedValue, useAnimatedStyle, withTiming } from 'react-native-reanimated'; -import { Pressable, type PressableProps } from 'react-native-gesture-handler'; -import type { StyleProp, ViewStyle } from 'react-native'; +import Animated, { useSharedValue, useAnimatedStyle } from 'react-native-reanimated'; +import { Pressable, type PressableProps, type StyleProp, type ViewStyle } from 'react-native'; + +const AnimatedPressable = Animated.createAnimatedComponent(Pressable); interface TouchableOpacityProps extends PressableProps { style?: StyleProp; + opacity?: number; activeOpacity?: number; } function TouchableOpacity(props: TouchableOpacityProps): React.JSX.Element { - const opacity = useSharedValue(props.activeOpacity || 1); + const opacity = useSharedValue(props.opacity || 1); const animatedStyle = useAnimatedStyle(() => ({ opacity: opacity.value })); const onPressIn = () => { - opacity.value = withTiming(0.2); + opacity.value = props.activeOpacity || 0.2; }; const onPressOut = () => { - opacity.value = withTiming(props.activeOpacity || 1); + opacity.value = props.opacity || 1; }; return ( - + {props.children} - + ); } From 17f6888c5a429911ad261cebfb67d9a44295c790 Mon Sep 17 00:00:00 2001 From: Rohit Bansal <40559587+Rohit3523@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:46:20 +0530 Subject: [PATCH 05/11] use pressable from gesture --- .../MessageComposer/components/SendThreadToChannel.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/containers/MessageComposer/components/SendThreadToChannel.tsx b/app/containers/MessageComposer/components/SendThreadToChannel.tsx index 3078a839072..12117bc35e5 100644 --- a/app/containers/MessageComposer/components/SendThreadToChannel.tsx +++ b/app/containers/MessageComposer/components/SendThreadToChannel.tsx @@ -2,8 +2,8 @@ import { StyleSheet, Text } from 'react-native'; import React, { useEffect, useRef } from 'react'; import { type Subscription } from 'rxjs'; import { Q } from '@nozbe/watermelondb'; +import { Pressable } from 'react-native-gesture-handler' -import TouchableOpacity from '../../TouchableOpacity'; import { useRoomContext } from '../../../views/RoomView/context'; import { useAlsoSendThreadToChannel, useMessageComposerApi } from '../context'; import { CustomIcon } from '../../CustomIcon'; @@ -70,7 +70,7 @@ export const SendThreadToChannel = (): React.ReactElement | null => { } return ( - setAlsoSendThreadToChannel(!alsoSendThreadToChannel)} testID='message-composer-send-to-channel'> @@ -81,7 +81,7 @@ export const SendThreadToChannel = (): React.ReactElement | null => { color={alsoSendThreadToChannel ? colors.buttonBackgroundPrimaryDefault : colors.fontDefault} /> {I18n.t('Message_composer_Send_to_channel')} - + ); }; From 1df81aeb5287ad465e453e1655dad6b5bc6ca32b Mon Sep 17 00:00:00 2001 From: Rohit Bansal <40559587+Rohit3523@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:46:23 +0530 Subject: [PATCH 06/11] snapshot update --- .../MessageComposer.test.tsx.snap | 1300 ++--- .../__snapshots__/RoomHeader.test.tsx.snap | 4210 +++++++++-------- .../__snapshots__/Message.test.tsx.snap | 50 - 3 files changed, 2860 insertions(+), 2700 deletions(-) diff --git a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap index 8dd0f6b4152..13f39da2100 100644 --- a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap +++ b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap @@ -82,7 +82,7 @@ exports[`MessageComposer Audio tap record 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={259} + handlerTag={249} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -177,7 +177,7 @@ exports[`MessageComposer Audio tap record 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={260} + handlerTag={250} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -299,7 +299,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={246} + handlerTag={236} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -415,7 +415,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={247} + handlerTag={237} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -587,7 +587,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={248} + handlerTag={238} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -744,7 +744,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={249} + handlerTag={239} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -860,7 +860,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={250} + handlerTag={240} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1033,7 +1033,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={251} + handlerTag={241} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1214,7 +1214,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={252} + handlerTag={242} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1371,7 +1371,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={253} + handlerTag={243} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1487,7 +1487,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={254} + handlerTag={244} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1660,7 +1660,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={255} + handlerTag={245} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1841,7 +1841,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={256} + handlerTag={246} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2034,7 +2034,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={46} + handlerTag={36} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2110,7 +2110,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={47} + handlerTag={37} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2186,7 +2186,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={48} + handlerTag={38} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2262,7 +2262,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={49} + handlerTag={39} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2338,7 +2338,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={50} + handlerTag={40} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2414,7 +2414,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={51} + handlerTag={41} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2490,7 +2490,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={45} + handlerTag={35} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2647,7 +2647,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={124} + handlerTag={114} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2723,7 +2723,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={125} + handlerTag={115} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2799,7 +2799,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={126} + handlerTag={116} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2875,7 +2875,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={127} + handlerTag={117} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2951,7 +2951,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={128} + handlerTag={118} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3027,7 +3027,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={129} + handlerTag={119} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3103,7 +3103,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={123} + handlerTag={113} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3260,7 +3260,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={150} + handlerTag={140} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3336,7 +3336,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={151} + handlerTag={141} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3412,7 +3412,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={152} + handlerTag={142} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3488,7 +3488,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={153} + handlerTag={143} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3564,7 +3564,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={154} + handlerTag={144} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3640,7 +3640,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={155} + handlerTag={145} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3716,7 +3716,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={149} + handlerTag={139} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3873,7 +3873,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={72} + handlerTag={62} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3949,7 +3949,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={73} + handlerTag={63} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4025,7 +4025,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={74} + handlerTag={64} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4101,7 +4101,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={75} + handlerTag={65} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4177,7 +4177,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={76} + handlerTag={66} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4253,7 +4253,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={77} + handlerTag={67} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4329,7 +4329,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={71} + handlerTag={61} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4486,7 +4486,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={33} + handlerTag={23} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4562,7 +4562,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={34} + handlerTag={24} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4638,7 +4638,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={35} + handlerTag={25} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4714,7 +4714,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={36} + handlerTag={26} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4790,7 +4790,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={37} + handlerTag={27} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4866,7 +4866,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={38} + handlerTag={28} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4942,7 +4942,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={32} + handlerTag={22} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5099,7 +5099,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={98} + handlerTag={88} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5175,7 +5175,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={99} + handlerTag={89} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5251,7 +5251,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={100} + handlerTag={90} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5327,7 +5327,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={101} + handlerTag={91} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5403,7 +5403,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={102} + handlerTag={92} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5479,7 +5479,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={103} + handlerTag={93} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5555,7 +5555,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={97} + handlerTag={87} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5712,7 +5712,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={59} + handlerTag={49} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5788,7 +5788,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={60} + handlerTag={50} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5864,7 +5864,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={61} + handlerTag={51} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5940,7 +5940,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={62} + handlerTag={52} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6016,7 +6016,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={63} + handlerTag={53} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6092,7 +6092,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={64} + handlerTag={54} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6168,7 +6168,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={58} + handlerTag={48} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6325,7 +6325,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={137} + handlerTag={127} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6401,7 +6401,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={138} + handlerTag={128} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6477,7 +6477,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={139} + handlerTag={129} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6553,7 +6553,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={140} + handlerTag={130} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6629,7 +6629,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={141} + handlerTag={131} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6705,7 +6705,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={142} + handlerTag={132} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6781,7 +6781,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={136} + handlerTag={126} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6938,7 +6938,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={163} + handlerTag={153} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7014,7 +7014,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={164} + handlerTag={154} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7090,7 +7090,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={165} + handlerTag={155} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7166,7 +7166,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={166} + handlerTag={156} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7242,7 +7242,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={167} + handlerTag={157} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7318,7 +7318,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={168} + handlerTag={158} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7394,7 +7394,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={162} + handlerTag={152} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7551,7 +7551,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={85} + handlerTag={75} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7627,7 +7627,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={86} + handlerTag={76} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7703,7 +7703,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={87} + handlerTag={77} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7779,7 +7779,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={88} + handlerTag={78} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7855,7 +7855,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={89} + handlerTag={79} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7931,7 +7931,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={90} + handlerTag={80} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8007,7 +8007,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={84} + handlerTag={74} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8164,7 +8164,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={111} + handlerTag={101} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8240,7 +8240,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={112} + handlerTag={102} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8316,7 +8316,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={113} + handlerTag={103} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8392,7 +8392,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={114} + handlerTag={104} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8468,7 +8468,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={115} + handlerTag={105} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8544,7 +8544,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={116} + handlerTag={106} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8620,7 +8620,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} - handlerTag={110} + handlerTag={100} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -9664,77 +9664,78 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-clock" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-emoji" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-leaf" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-burger" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-basketball" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-airplane" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-lamp-bulb" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-percentage" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-flag" + > +  + + - - - -  - - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + testID="emoji-picker-tab-rocket" + > +  + + - - - -  - - - private channel - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + private channel + - + , - - - -  - - - public channel - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + public channel + - + , - - - -  - - - discussion - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + discussion + - + , - - - -  - - - omnichannel - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + omnichannel + - + , - - - -  - - - private team - - - - - - , - +  + + + private team + + + + + , + - - - -  - - - public team - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + public team + - + , - - - -  - - - group dm - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + group dm + - + , - - - -  - - - online dm - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + online dm + - + , - - - -  - - - away dm - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + away dm + - + , - - - -  - - - busy dm - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + busy dm + - + , - - - -  - - - loading dm - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + loading dm + - + , - - - -  - - - offline dm - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + offline dm + - + , ] @@ -1606,13 +1702,27 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` ] } > - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - subtitle + title - + + subtitle + + , - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - subtitle + title - + + subtitle + + , - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - subtitle + title - + + subtitle + + , ] @@ -2100,13 +2220,27 @@ exports[`Story Snapshots: Thread should match snapshot 1`] = ` ] } > - - - - title - - - + + - + -  - - - parent title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + parent title + - + , - - - - markdown preview #3 4 5 - - - - + + + -  - - - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + - + , ] @@ -2455,13 +2591,27 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` ] } > - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + title + - + , - - - -  - - - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + - + , - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - subtitle + title - + + subtitle + + , - - - -  - - - title - - +  + + - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + title - + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + + , - - - -  - - - Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries - + + Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industrys standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries + + , ] @@ -3210,13 +3386,27 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` ] } > - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - - user 1 - - - is typing - ... + title - + + + user 1 + + + is typing + ... + + , - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - - user 1 and user 2 - - - are typing - ... + title - + + + user 1 and user 2 + + + are typing + ... + + , - - - -  - - - title - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + - - user 1, user 2, user 3, user 4, user 5 - - - are typing - ... + title - + + + user 1, user 2, user 3, user 4, user 5 + + + are typing + ... + + , ] diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 3c91c75791c..ace68340f0f 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -109298,9 +109298,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` Date: Fri, 7 Nov 2025 02:47:18 +0530 Subject: [PATCH 07/11] reposition --- .../MessageComposer/components/SendThreadToChannel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/containers/MessageComposer/components/SendThreadToChannel.tsx b/app/containers/MessageComposer/components/SendThreadToChannel.tsx index 12117bc35e5..94d2a001b05 100644 --- a/app/containers/MessageComposer/components/SendThreadToChannel.tsx +++ b/app/containers/MessageComposer/components/SendThreadToChannel.tsx @@ -1,8 +1,8 @@ +import { Pressable } from 'react-native-gesture-handler'; import { StyleSheet, Text } from 'react-native'; import React, { useEffect, useRef } from 'react'; import { type Subscription } from 'rxjs'; import { Q } from '@nozbe/watermelondb'; -import { Pressable } from 'react-native-gesture-handler' import { useRoomContext } from '../../../views/RoomView/context'; import { useAlsoSendThreadToChannel, useMessageComposerApi } from '../context'; From 0b48c7362ae9d957b7142a7fce4cfe5817367fa0 Mon Sep 17 00:00:00 2001 From: Rohit Bansal <40559587+Rohit3523@users.noreply.github.com> Date: Fri, 7 Nov 2025 02:48:20 +0530 Subject: [PATCH 08/11] added use memo --- app/views/RoomsListView/components/Header.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/views/RoomsListView/components/Header.tsx b/app/views/RoomsListView/components/Header.tsx index 56a2f9bdaf0..4a6fceaafdc 100644 --- a/app/views/RoomsListView/components/Header.tsx +++ b/app/views/RoomsListView/components/Header.tsx @@ -32,6 +32,8 @@ const styles = StyleSheet.create({ // search and searchEnabled need to be props because Header is used on react-navigation, which does not support context const RoomsListHeaderView = ({ search, searchEnabled }: { search: (text: string) => void; searchEnabled: boolean }) => { + 'use memo'; + const connecting = useAppSelector(state => state.meteor.connecting || state.server.loading); const connected = useAppSelector(state => state.meteor.connected); const isFetching = useAppSelector(state => state.rooms.isFetching); From 7e8e496b860905333e8d2fc2875eb49d90c971dd Mon Sep 17 00:00:00 2001 From: Rohit Bansal <40559587+Rohit3523@users.noreply.github.com> Date: Sun, 9 Nov 2025 00:15:30 +0530 Subject: [PATCH 09/11] patch for join from directory test --- .maestro/tests/assorted/join-from-directory.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.maestro/tests/assorted/join-from-directory.yaml b/.maestro/tests/assorted/join-from-directory.yaml index df84972bf49..edeaae617dc 100644 --- a/.maestro/tests/assorted/join-from-directory.yaml +++ b/.maestro/tests/assorted/join-from-directory.yaml @@ -41,7 +41,6 @@ tags: - tapOn: id: 'directory-view-search' - inputText: join-from-directory -- pressKey: Enter - extendedWaitUntil: visible: id: 'directory-view-item-join-from-directory' @@ -103,7 +102,11 @@ tags: - tapOn: id: 'directory-view-search' - inputText: ${output.otherUser.username} -- pressKey: Enter +- runFlow: + when: + platform: iOS + commands: + - pressKey: enter - extendedWaitUntil: visible: id: 'directory-view-item-${output.otherUser.username}' @@ -147,7 +150,6 @@ tags: - tapOn: id: 'directory-view-search' - inputText: ${output.team} -- pressKey: Enter - extendedWaitUntil: visible: id: 'directory-view-item-${output.team}' From da5df56d3bdb19a79e7fad1e07680974f6a729bc Mon Sep 17 00:00:00 2001 From: Rohit <40559587+Rohit3523@users.noreply.github.com> Date: Fri, 20 Mar 2026 22:12:04 +0530 Subject: [PATCH 10/11] test snap fix --- .../MessageComposer.test.tsx.snap | 78 +- .../__snapshots__/RoomHeader.test.tsx.snap | 400 +- .../__snapshots__/Message.test.tsx.snap | 16481 ---------------- 3 files changed, 169 insertions(+), 16790 deletions(-) diff --git a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap index 5d770ea4273..c3b68b41105 100644 --- a/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap +++ b/app/containers/MessageComposer/__snapshots__/MessageComposer.test.tsx.snap @@ -82,11 +82,7 @@ exports[`MessageComposer Audio tap record 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={249} -======= - handlerTag={289} ->>>>>>> origin/develop + handlerTag={279} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -181,11 +177,7 @@ exports[`MessageComposer Audio tap record 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={250} -======= - handlerTag={290} ->>>>>>> origin/develop + handlerTag={280} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -307,11 +299,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={236} -======= - handlerTag={276} ->>>>>>> origin/develop + handlerTag={266} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -427,11 +415,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={237} -======= - handlerTag={277} ->>>>>>> origin/develop + handlerTag={267} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -603,11 +587,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={238} -======= - handlerTag={278} ->>>>>>> origin/develop + handlerTag={268} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -764,11 +744,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={239} -======= - handlerTag={279} ->>>>>>> origin/develop + handlerTag={269} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -884,11 +860,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={240} -======= - handlerTag={280} ->>>>>>> origin/develop + handlerTag={270} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1061,11 +1033,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={241} -======= - handlerTag={281} ->>>>>>> origin/develop + handlerTag={271} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1246,11 +1214,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={242} -======= - handlerTag={282} ->>>>>>> origin/develop + handlerTag={272} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1407,11 +1371,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={243} -======= - handlerTag={283} ->>>>>>> origin/develop + handlerTag={273} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1527,11 +1487,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={244} -======= - handlerTag={284} ->>>>>>> origin/develop + handlerTag={274} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1704,11 +1660,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={245} -======= - handlerTag={285} ->>>>>>> origin/develop + handlerTag={275} handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1889,11 +1841,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={246} -======= - handlerTag={286} ->>>>>>> origin/develop + handlerTag={276} handlerType="NativeViewGestureHandler" hitSlop={ { diff --git a/app/containers/RoomHeader/__snapshots__/RoomHeader.test.tsx.snap b/app/containers/RoomHeader/__snapshots__/RoomHeader.test.tsx.snap index 15ef00466d2..c525aee05ae 100644 --- a/app/containers/RoomHeader/__snapshots__/RoomHeader.test.tsx.snap +++ b/app/containers/RoomHeader/__snapshots__/RoomHeader.test.tsx.snap @@ -1697,13 +1697,27 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` ] } > - - - -  - - - classified - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + classified + - + , - - - -  - - - classified - - + ], + { + "fontFamily": "custom", + "fontStyle": "normal", + "fontWeight": "normal", + }, + {}, + ] + } + > +  + + + classified + - + , ] @@ -1982,15 +1998,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={15} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -2161,15 +2169,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={16} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -2340,15 +2340,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={17} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -2524,15 +2516,7 @@ exports[`Story Snapshots: Thread should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={18} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -2715,15 +2699,7 @@ preview } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={19} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -2911,15 +2887,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={20} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -3057,15 +3025,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={21} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -3203,15 +3163,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={22} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -3382,15 +3334,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={23} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -3561,15 +3505,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={24} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -3746,15 +3682,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={25} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -3925,15 +3853,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={26} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, @@ -4104,15 +4024,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={27} - handlerType="NativeViewGestureHandler" ->>>>>>> origin/develop hitSlop={ { "bottom": 5, diff --git a/app/containers/message/__snapshots__/Message.test.tsx.snap b/app/containers/message/__snapshots__/Message.test.tsx.snap index 035cc701b1e..72cd045229a 100644 --- a/app/containers/message/__snapshots__/Message.test.tsx.snap +++ b/app/containers/message/__snapshots__/Message.test.tsx.snap @@ -2517,16421 +2517,6 @@ exports[`Story Snapshots: Avatar should match snapshot 1`] = ` underlayColor="#E4E7EA" > - - - Title - - - - - - - Image text - - - - - - - - - - - - - - - - this is a thumbnail - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: ThumbnailFromServerLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - - - Title - - - - - - - Image text - - - - - - - - - - - - - - - - this is a thumbnail - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TimeFormat should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10 November 2017 - - - - - - - - - - - Testing - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TimeFormatLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10 November 2017 - - - - - - - - Testing - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: Translated should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - -  - - - - - - - - - - - Message translated - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TranslatedLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - -  - - - - - - 10:00 AM - - - - - - - - Message translated - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdown should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - - - rocket.cat - - - - - - - Custom fields - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - - - - - - - - - - - - - - - - rocket.cat - - - - - - - Custom fields 2 - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - - Value 2 - - - - - - - - - - - - - - - - - - Message - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: TwoShortCustomFieldsWithMarkdownLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - - - rocket.cat - - - - - - - Custom fields - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - Value 2 - - - - - - - - - - - - - - - - - rocket.cat - - - - - - - Custom fields 2 - - - - - - - - Field 1 - - - - - - Value 1 - - - - - - - - Field 2 - - - - - - - Value 2 - - - - - - - - - - - - - - - - - - Message - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: URL should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - Message - - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - -`; - -exports[`Story Snapshots: URLImagePreview should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: URLImagePreviewLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - - - - -`; - -exports[`Story Snapshots: URLLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - Rocket.Chat - Free, Open Source, Enterprise Team Chat - - - Rocket.Chat is the leading open source team chat software solution. Free, unlimited and completely customizable with on-premises and SaaS cloud hosting. - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - Message - - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - - - - - - - - - Google - - - Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for. - - - - - - - - - - - - -`; - -exports[`Story Snapshots: WithAlias should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - Diego Mello - - @ - diego.mello - - - - 10:00 AM - - - - - - - - - - - Message - - - - - - - - - - - - - - - - - - - - - - - - - - - Diego Mello - - @ - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - 10:00 AM - - - - - - - - - - - Message - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: WithAliasLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - Diego Mello - - @ - diego.mello - - - - - - - 10:00 AM - - - - - - - - Message - - - - - - - - - - - - - - - - - - - - - - - - - - - Diego Mello - - @ - Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. - - - - - - - 10:00 AM - - - - - - - - Message - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - - This is a description - - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - First message - - - - - - - - - - - - - - - - - - - - - - - - - - This is a description - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - - - - - - - - This is a description - - - - - - - - -  - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: WithAudioLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - - This is a description - - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - First message - - - - - - - - - - - - - - - - - - - - - - - - - - This is a description - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -  - - - - - - - - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: WithFile should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - - - - - - File.pdf - - - - - - - - - - - - This is a description - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - File.pdf - - - - - - - - - - - - This is a description - - - - - - - - - - - - - - - - File.pdf - - - - - - - - - - - - This is a description - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: WithFileLargeFont should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - - - - 10:00 AM - - - - - - - - - - - - - File.pdf - - - - - - - - - - - - This is a description - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - File.pdf - - - - - - - - - - - - This is a description - - - - - - - - - - - - - - - - -`; - -exports[`Story Snapshots: WithImage should match snapshot 1`] = ` - - - - - - - - - - - - - - - - - - diego.mello - - - 10:00 AM - - - - - - - - - - - - This is a description - - - - - - - - - - -  - - - >>>>>> origin/develop "position": "absolute", "right": 0, "top": 0, @@ -153265,9 +136849,6 @@ exports[`Story Snapshots: WithAudio should match snapshot 1`] = ` Date: Mon, 13 Apr 2026 01:20:17 +0530 Subject: [PATCH 11/11] snapshot update --- .../Avatar/__snapshots__/Avatar.test.tsx.snap | 2 +- .../Button/__snapshots__/Button.test.tsx.snap | 14 +- .../__snapshots__/HeaderButtons.test.tsx.snap | 2326 +++++++---------- .../__snapshots__/LoginServices.test.tsx.snap | 12 +- .../MessageComposer.test.tsx.snap | 486 +--- .../Base/__snapshots__/Base.test.tsx.snap | 244 +- .../__snapshots__/RoomHeader.test.tsx.snap | 324 +-- .../CannedResponseItem.test.tsx.snap | 8 +- 8 files changed, 1025 insertions(+), 2391 deletions(-) diff --git a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap index 5ab618de552..940a7909f6d 100644 --- a/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap +++ b/app/containers/Avatar/__snapshots__/Avatar.test.tsx.snap @@ -840,7 +840,7 @@ exports[`Story Snapshots: Touchable should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={1} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} diff --git a/app/containers/Button/__snapshots__/Button.test.tsx.snap b/app/containers/Button/__snapshots__/Button.test.tsx.snap index cd9119a6eb8..03f23308774 100644 --- a/app/containers/Button/__snapshots__/Button.test.tsx.snap +++ b/app/containers/Button/__snapshots__/Button.test.tsx.snap @@ -8,7 +8,7 @@ exports[`Story Snapshots: CustomButton should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={7} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -87,7 +87,7 @@ exports[`Story Snapshots: DisabledButton should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={false} - handlerTag={8} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -161,7 +161,7 @@ exports[`Story Snapshots: DisabledLoadingButton should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={false} - handlerTag={9} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -224,7 +224,7 @@ exports[`Story Snapshots: LoadingButton should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={false} - handlerTag={10} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -287,7 +287,7 @@ exports[`Story Snapshots: PrimaryButton should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={11} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -361,7 +361,7 @@ exports[`Story Snapshots: SecondaryButton should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={12} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -435,7 +435,7 @@ exports[`Story Snapshots: SmallButton should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={13} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} diff --git a/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap b/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap index 938b20fc972..ae9cd98fcf3 100644 --- a/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap +++ b/app/containers/Header/components/HeaderButton/__snapshots__/HeaderButtons.test.tsx.snap @@ -5,55 +5,43 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "height": 44, - "maxHeight": undefined, - "minHeight": undefined, - "opacity": undefined, - "transform": undefined, - }, - ] + { + "height": 44, + "maxHeight": undefined, + "minHeight": undefined, + "opacity": undefined, + "transform": undefined, + } } > @@ -74,7 +62,9 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -82,21 +72,14 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -617,21 +586,14 @@ exports[`Story Snapshots: Badge should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } /> @@ -644,55 +606,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "height": 44, - "maxHeight": undefined, - "minHeight": undefined, - "opacity": undefined, - "transform": undefined, - }, - ] + { + "height": 44, + "maxHeight": undefined, + "minHeight": undefined, + "opacity": undefined, + "transform": undefined, + } } > @@ -713,7 +663,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -721,21 +673,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -871,21 +802,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } /> @@ -894,55 +818,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "height": 44, - "maxHeight": undefined, - "minHeight": undefined, - "opacity": undefined, - "transform": undefined, - }, - ] + { + "height": 44, + "maxHeight": undefined, + "minHeight": undefined, + "opacity": undefined, + "transform": undefined, + } } > @@ -963,7 +875,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -971,21 +885,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -1121,21 +1014,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } /> @@ -1144,55 +1030,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "height": 44, - "maxHeight": undefined, - "minHeight": undefined, - "opacity": undefined, - "transform": undefined, - }, - ] + { + "height": 44, + "maxHeight": undefined, + "minHeight": undefined, + "opacity": undefined, + "transform": undefined, + } } > @@ -1213,7 +1087,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -1221,21 +1097,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -1361,21 +1216,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } /> @@ -1384,55 +1232,43 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "height": 44, - "maxHeight": undefined, - "minHeight": undefined, - "opacity": undefined, - "transform": undefined, - }, - ] + { + "height": 44, + "maxHeight": undefined, + "minHeight": undefined, + "opacity": undefined, + "transform": undefined, + } } > @@ -1453,7 +1289,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -1461,39 +1299,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } /> @@ -1523,21 +1340,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > @@ -1700,7 +1498,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -1708,39 +1508,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } /> @@ -1770,21 +1549,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > @@ -1947,7 +1707,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -1955,39 +1717,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } /> @@ -2017,21 +1758,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > @@ -2194,7 +1916,9 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -2202,39 +1926,25 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } /> @@ -2264,21 +1967,14 @@ exports[`Story Snapshots: Common should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > @@ -2448,7 +2132,9 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -2456,21 +2142,14 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > - - + + @@ -2781,7 +2427,9 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -2789,21 +2437,14 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -3005,21 +2632,14 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > @@ -3262,7 +2870,9 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -3270,21 +2880,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > + + - - @@ -3818,7 +3388,9 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -3826,21 +3398,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -4081,21 +3632,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > @@ -4374,7 +3906,9 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -4382,21 +3916,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -4637,21 +4150,14 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > - + @@ -4928,7 +4422,9 @@ exports[`Story Snapshots: Title should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -4936,21 +4432,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -5076,21 +4551,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > @@ -5245,7 +4701,9 @@ exports[`Story Snapshots: Title should match snapshot 1`] = ` "flex": 1, "flexDirection": "row", }, - null, + { + "marginHorizontal": 5, + }, ] } > @@ -5253,21 +4711,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-start", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginStart": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-start", + "marginStart": 0, + } } > @@ -5453,21 +4890,14 @@ exports[`Story Snapshots: Title should match snapshot 1`] = ` collapsable={false} pointerEvents="box-none" style={ - [ - { - "alignItems": "center", - "flexDirection": "row", - "justifyContent": "flex-end", - }, - { - "flexBasis": 0, - "flexGrow": 1, - }, - { - "marginEnd": 0, - }, - undefined, - ] + { + "alignItems": "center", + "flexBasis": 0, + "flexDirection": "row", + "flexGrow": 1, + "justifyContent": "flex-end", + "marginEnd": 0, + } } > >>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -181,11 +177,7 @@ exports[`MessageComposer Audio tap record 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={280} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -305,11 +297,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={266} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -425,11 +413,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={267} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -601,11 +585,7 @@ exports[`MessageComposer Quote Add quote \`abc\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={268} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -760,11 +740,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={269} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -880,11 +856,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={270} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1057,11 +1029,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={271} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1242,11 +1210,7 @@ exports[`MessageComposer Quote Add quote \`def\` 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={272} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1401,11 +1365,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={273} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1521,11 +1481,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={274} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1698,11 +1654,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={275} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -1883,11 +1835,7 @@ exports[`MessageComposer Quote Remove a quote 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={276} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2078,11 +2026,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={36} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2158,11 +2102,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={37} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2238,11 +2178,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={38} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2318,11 +2254,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={39} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2398,11 +2330,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={40} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2478,11 +2406,7 @@ exports[`MessageComposer Toolbar Markdown tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={41} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2713,11 +2637,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={114} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2793,11 +2713,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={115} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2873,11 +2789,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={116} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -2953,11 +2865,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={117} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3033,11 +2941,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={118} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3113,11 +3017,7 @@ exports[`MessageComposer Toolbar Markdown tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={119} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3348,11 +3248,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={140} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3428,11 +3324,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={141} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3508,11 +3400,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={142} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3588,11 +3476,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={143} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3668,11 +3552,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={144} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3748,11 +3628,7 @@ exports[`MessageComposer Toolbar Markdown tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={145} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -3983,11 +3859,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={62} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4063,11 +3935,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={63} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4143,11 +4011,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={64} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4223,11 +4087,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={65} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4303,11 +4163,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={66} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4383,11 +4239,7 @@ exports[`MessageComposer Toolbar Markdown tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={67} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4618,11 +4470,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={23} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4698,11 +4546,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={24} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4778,11 +4622,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={25} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4858,11 +4698,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={26} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -4938,11 +4774,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={27} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5018,11 +4850,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={28} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5098,11 +4926,7 @@ exports[`MessageComposer Toolbar Markdown tap markdown 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={22} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5257,11 +5081,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={88} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5337,11 +5157,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={89} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5417,11 +5233,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={90} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5497,11 +5309,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={91} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5577,11 +5385,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={92} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5657,11 +5461,7 @@ exports[`MessageComposer Toolbar Markdown tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={93} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5892,11 +5692,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={49} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -5972,11 +5768,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={50} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6052,11 +5844,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={51} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6132,11 +5920,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={52} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6212,11 +5996,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={53} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6292,11 +6072,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap bold 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={54} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6527,11 +6303,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={127} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6607,11 +6379,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={128} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6687,11 +6455,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={129} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6767,11 +6531,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={130} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6847,11 +6607,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={131} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -6927,11 +6683,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={132} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7162,11 +6914,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={153} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7242,11 +6990,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={154} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7322,11 +7066,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={155} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7402,11 +7142,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={156} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7482,11 +7218,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={157} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7562,11 +7294,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap code-block 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={158} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7797,11 +7525,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={75} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7877,11 +7601,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={76} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -7957,11 +7677,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={77} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8037,11 +7753,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={78} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8117,11 +7829,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={79} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8197,11 +7905,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap italic 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={80} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8432,11 +8136,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={101} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8512,11 +8212,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={102} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8592,11 +8288,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={103} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8672,11 +8364,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={104} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8752,11 +8440,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={105} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -8832,11 +8516,7 @@ exports[`MessageComposer Toolbar Markdown type test and tap strike 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={106} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -9950,19 +9630,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -9994,9 +9663,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10056,19 +9723,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10100,9 +9756,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10162,19 +9816,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10206,9 +9849,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10268,19 +9909,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10312,9 +9942,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10374,19 +10002,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10418,9 +10035,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10480,19 +10095,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10524,9 +10128,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10586,19 +10188,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10630,9 +10221,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10692,19 +10281,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10736,9 +10314,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10798,19 +10374,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10842,9 +10407,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -10904,19 +10467,8 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` } } > -<<<<<<< HEAD >>>>>> develop { "busy": undefined, "checked": undefined, @@ -10948,9 +10500,7 @@ exports[`MessageComposer Toolbar tap emoji 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -11550,11 +11100,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={161} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -11630,11 +11176,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={162} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -11710,11 +11252,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={163} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { @@ -11790,11 +11328,7 @@ exports[`MessageComposer Toolbar tap mention 1`] = ` borderless={true} collapsable={false} delayLongPress={600} -<<<<<<< HEAD - handlerTag={164} -======= handlerTag={-1} ->>>>>>> develop handlerType="NativeViewGestureHandler" hitSlop={ { diff --git a/app/containers/Passcode/Base/__snapshots__/Base.test.tsx.snap b/app/containers/Passcode/Base/__snapshots__/Base.test.tsx.snap index 4e28b83b89b..4303888726e 100644 --- a/app/containers/Passcode/Base/__snapshots__/Base.test.tsx.snap +++ b/app/containers/Passcode/Base/__snapshots__/Base.test.tsx.snap @@ -11,13 +11,9 @@ exports[`Story Snapshots: ChooseType should match snapshot 1`] = ` >>>>>> develop hitSlop={ { "bottom": 5, @@ -76,9 +68,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -194,15 +184,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -222,9 +204,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -340,15 +320,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -368,9 +340,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -499,15 +469,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -527,9 +489,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -645,15 +605,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -673,9 +625,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -791,15 +741,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -819,9 +761,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -937,15 +877,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -965,9 +897,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -1083,15 +1013,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -1111,9 +1033,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -1229,15 +1149,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -1257,9 +1169,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -1375,15 +1285,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -1403,9 +1305,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -1521,15 +1421,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -1549,9 +1441,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -1667,15 +1557,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -1695,9 +1577,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -1813,15 +1693,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -1841,9 +1713,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -1959,15 +1829,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -1987,9 +1849,7 @@ exports[`Story Snapshots: Icons should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -2110,15 +1970,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -2138,9 +1990,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -2289,15 +2139,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -2317,9 +2159,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -2468,15 +2308,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -2496,9 +2328,7 @@ exports[`Story Snapshots: Themes should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -2652,15 +2482,7 @@ exports[`Story Snapshots: Thread should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -2680,9 +2502,7 @@ exports[`Story Snapshots: Thread should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -2843,15 +2663,7 @@ preview } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -2871,9 +2683,7 @@ preview onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -3039,15 +2849,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -3067,9 +2869,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -3185,15 +2985,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -3213,9 +3005,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -3331,15 +3121,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -3359,9 +3141,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -3510,15 +3290,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -3538,9 +3310,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -3689,15 +3459,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -3717,9 +3479,7 @@ exports[`Story Snapshots: TitleSubtitle should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -3874,15 +3634,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -3902,9 +3654,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -4053,15 +3803,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -4081,9 +3823,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } @@ -4232,15 +3972,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` } accessible={true} collapsable={false} -<<<<<<< HEAD focusable={true} -======= - delayLongPress={600} - enabled={true} - exclusive={true} - handlerTag={-1} - handlerType="NativeViewGestureHandler" ->>>>>>> develop hitSlop={ { "bottom": 5, @@ -4260,9 +3992,7 @@ exports[`Story Snapshots: Typing should match snapshot 1`] = ` onStartShouldSetResponder={[Function]} style={ [ - { - "opacity": 1, - }, + [Function], undefined, ] } diff --git a/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap b/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap index 79fd0eb920b..f67fa3e644e 100644 --- a/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap +++ b/app/views/CannedResponsesListView/__snapshots__/CannedResponseItem.test.tsx.snap @@ -7,7 +7,7 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={1} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -131,7 +131,7 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={2} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -238,7 +238,7 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={3} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]} @@ -362,7 +362,7 @@ exports[`Story Snapshots: Itens should match snapshot 1`] = ` collapsable={false} delayLongPress={600} enabled={true} - handlerTag={4} + handlerTag={-1} handlerType="NativeViewGestureHandler" innerRef={null} onActiveStateChange={[Function]}