* Upgrade to RN 0.62.0 * Update packager module paths * Fix Android PasteableInput * Fix regression on Android share extension credentials needed * Update android/app/src/main/java/com/mattermost/rnbeta/RNPasteableEditTextOnPasteListener.java * Reject commit if TSC check fails and Fix small eslint issues automatically * Use super.getExportedCustomBubblingEventTypeConstants in RNPasteableTextInputManager * Update to rn 0.62.2 Co-authored-by: Miguel Alatzar <migbot@users.noreply.github.com>
41 lines
697 B
Text
41 lines
697 B
Text
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Fade should render {opacity: 0} 1`] = `
|
|
<ForwardRef(AnimatedComponentWrapper)
|
|
pointerEvents="box-none"
|
|
style={
|
|
Object {
|
|
"opacity": 0,
|
|
"transform": Array [
|
|
Object {
|
|
"scale": 0,
|
|
},
|
|
],
|
|
}
|
|
}
|
|
>
|
|
<Text>
|
|
text
|
|
</Text>
|
|
</ForwardRef(AnimatedComponentWrapper)>
|
|
`;
|
|
|
|
exports[`Fade should render {opacity: 1} 1`] = `
|
|
<ForwardRef(AnimatedComponentWrapper)
|
|
pointerEvents="box-none"
|
|
style={
|
|
Object {
|
|
"opacity": 1,
|
|
"transform": Array [
|
|
Object {
|
|
"scale": 1,
|
|
},
|
|
],
|
|
}
|
|
}
|
|
>
|
|
<Text>
|
|
text
|
|
</Text>
|
|
</ForwardRef(AnimatedComponentWrapper)>
|
|
`;
|