mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 21:48:04 -05:00
* [INJIMOB-3622]: add the new branding changes Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * [INJIMOB-3651]: update the new branding changes Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * [INJIMOB-3651]: update the new snapshots Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> * [INJIMOB-3651]: update the changes mentioned deskcheck Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> --------- Signed-off-by: jaswanthkumarpolisetty <jaswanthkumar.p@thoughtworks.com> Signed-off-by: jaswanthkumartw <jaswanthkumar.p@thoughtworks.com>
171 lines
3.1 KiB
Plaintext
171 lines
3.1 KiB
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`DualMessageOverlay Component should match snapshot with both buttons 1`] = `
|
|
[
|
|
"Confirm Action",
|
|
"Are you sure you want to proceed?",
|
|
<Text
|
|
style={
|
|
[
|
|
{
|
|
"color": "#000000",
|
|
"fontSize": 16,
|
|
"lineHeight": 18,
|
|
},
|
|
{
|
|
"fontFamily": "Montserrat_700Bold",
|
|
"fontSize": 15,
|
|
"justifyContent": "center",
|
|
},
|
|
{
|
|
"color": "#FFFFFF",
|
|
},
|
|
{
|
|
"textAlign": "left",
|
|
},
|
|
null,
|
|
null,
|
|
{
|
|
"paddingLeft": 0,
|
|
},
|
|
]
|
|
}
|
|
>
|
|
tryAgain
|
|
</Text>,
|
|
<Text
|
|
style={
|
|
[
|
|
{
|
|
"color": "#000000",
|
|
"fontSize": 16,
|
|
"lineHeight": 18,
|
|
},
|
|
{
|
|
"fontFamily": "Montserrat_700Bold",
|
|
"fontSize": 15,
|
|
"justifyContent": "center",
|
|
},
|
|
{
|
|
"color": "#FFFFFF",
|
|
},
|
|
{
|
|
"textAlign": "left",
|
|
},
|
|
null,
|
|
null,
|
|
{
|
|
"paddingLeft": 0,
|
|
},
|
|
]
|
|
}
|
|
>
|
|
ignore
|
|
</Text>,
|
|
]
|
|
`;
|
|
|
|
exports[`DualMessageOverlay Component should match snapshot with children 1`] = `
|
|
[
|
|
"Confirm Action",
|
|
"Are you sure you want to proceed?",
|
|
<Text>
|
|
Custom content here
|
|
</Text>,
|
|
]
|
|
`;
|
|
|
|
exports[`DualMessageOverlay Component should match snapshot with custom height 1`] = `
|
|
[
|
|
"Confirm Action",
|
|
"Are you sure you want to proceed?",
|
|
]
|
|
`;
|
|
|
|
exports[`DualMessageOverlay Component should match snapshot with hint text 1`] = `
|
|
[
|
|
"Confirm Action",
|
|
"Are you sure you want to proceed?",
|
|
"Additional information",
|
|
]
|
|
`;
|
|
|
|
exports[`DualMessageOverlay Component should match snapshot with only ignore button 1`] = `
|
|
[
|
|
"Confirm Action",
|
|
"Are you sure you want to proceed?",
|
|
<Text
|
|
style={
|
|
[
|
|
{
|
|
"color": "#000000",
|
|
"fontSize": 16,
|
|
"lineHeight": 18,
|
|
},
|
|
{
|
|
"fontFamily": "Montserrat_700Bold",
|
|
"fontSize": 15,
|
|
"justifyContent": "center",
|
|
},
|
|
{
|
|
"color": "#FFFFFF",
|
|
},
|
|
{
|
|
"textAlign": "left",
|
|
},
|
|
null,
|
|
null,
|
|
{
|
|
"paddingLeft": 0,
|
|
},
|
|
]
|
|
}
|
|
>
|
|
ignore
|
|
</Text>,
|
|
]
|
|
`;
|
|
|
|
exports[`DualMessageOverlay Component should match snapshot with only try again button 1`] = `
|
|
[
|
|
"Confirm Action",
|
|
"Are you sure you want to proceed?",
|
|
<Text
|
|
style={
|
|
[
|
|
{
|
|
"color": "#000000",
|
|
"fontSize": 16,
|
|
"lineHeight": 18,
|
|
},
|
|
{
|
|
"fontFamily": "Montserrat_700Bold",
|
|
"fontSize": 15,
|
|
"justifyContent": "center",
|
|
},
|
|
{
|
|
"color": "#FFFFFF",
|
|
},
|
|
{
|
|
"textAlign": "left",
|
|
},
|
|
null,
|
|
null,
|
|
{
|
|
"paddingLeft": 0,
|
|
},
|
|
]
|
|
}
|
|
>
|
|
tryAgain
|
|
</Text>,
|
|
]
|
|
`;
|
|
|
|
exports[`DualMessageOverlay Component should match snapshot with title and message 1`] = `
|
|
[
|
|
"Confirm Action",
|
|
"Are you sure you want to proceed?",
|
|
]
|
|
`;
|