From e9196a74c1736986238b92a018f4566388771f9a Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Tue, 17 Dec 2024 17:25:02 +0100 Subject: [PATCH 01/16] Enable `allowFontScaling` by default for all citizens --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 4d86549a80b..4d0255f6d5e 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ }, "dependencies": { "@gorhom/bottom-sheet": "^4.1.5", - "@pagopa/io-app-design-system": "4.3.0", + "@pagopa/io-app-design-system": "4.4.0", "@pagopa/io-pagopa-commons": "^3.1.0", "@pagopa/io-react-native-cieid": "^0.3.5", "@pagopa/io-react-native-crypto": "^1.0.1", diff --git a/yarn.lock b/yarn.lock index c80e9c9d1bb..ec4fb7303ce 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3670,9 +3670,9 @@ __metadata: languageName: node linkType: hard -"@pagopa/io-app-design-system@npm:4.3.0": - version: 4.3.0 - resolution: "@pagopa/io-app-design-system@npm:4.3.0" +"@pagopa/io-app-design-system@npm:4.4.0": + version: 4.4.0 + resolution: "@pagopa/io-app-design-system@npm:4.4.0" dependencies: "@testing-library/jest-native": ^5.4.2 "@types/react-test-renderer": ^18.0.0 @@ -3696,7 +3696,7 @@ __metadata: react-native-reanimated: "*" react-native-safe-area-context: "*" react-native-svg: "*" - checksum: f139ca05d783292fd4d1816698c56028d27ce58ece7d4acf1f5547757abb78d01019f6c4b29a697feb433e593771c9b4ee0cce8779c031bc84ef31d185572d09 + checksum: 56db233a7bb4b2eb1182517988e635147f9d113155d6b56b6cc63490765f330e9d7c38ca1bf594214cb11907fe44a96c43caa1dad5e8ad46a07b4b84155f563e languageName: node linkType: hard @@ -13557,7 +13557,7 @@ __metadata: "@babel/runtime": ^7.20.0 "@gorhom/bottom-sheet": ^4.1.5 "@jambit/eslint-plugin-typed-redux-saga": ^0.4.0 - "@pagopa/io-app-design-system": 4.3.0 + "@pagopa/io-app-design-system": 4.4.0 "@pagopa/io-pagopa-commons": ^3.1.0 "@pagopa/io-react-native-cieid": ^0.3.5 "@pagopa/io-react-native-crypto": ^1.0.1 From 03fd7a84e7fc96ef72774ef327b6bd285b3a6efd Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Wed, 18 Dec 2024 10:27:55 +0100 Subject: [PATCH 02/16] Minor refactoring to fix TS issues --- .../design-system/core/DSLegacyListItems.tsx | 2 +- .../components/FimsSuccessBody.tsx | 33 ++++++++++++------- .../screens/IbanOnboardingScreen.tsx | 2 +- .../components/Home/DS/DoubleAvatar.tsx | 19 +++++------ 4 files changed, 33 insertions(+), 23 deletions(-) diff --git a/ts/features/design-system/core/DSLegacyListItems.tsx b/ts/features/design-system/core/DSLegacyListItems.tsx index d63f559ec95..fc19084f14b 100644 --- a/ts/features/design-system/core/DSLegacyListItems.tsx +++ b/ts/features/design-system/core/DSLegacyListItems.tsx @@ -77,7 +77,7 @@ export const DSLegacyListItems = () => { diff --git a/ts/features/fims/singleSignOn/components/FimsSuccessBody.tsx b/ts/features/fims/singleSignOn/components/FimsSuccessBody.tsx index 8d5a22c3e1f..dbd0752c4ba 100644 --- a/ts/features/fims/singleSignOn/components/FimsSuccessBody.tsx +++ b/ts/features/fims/singleSignOn/components/FimsSuccessBody.tsx @@ -2,15 +2,18 @@ import { Avatar, Body, ButtonLink, + FooterActions, ForceScrollDownView, H2, H6, hexToRgba, - HSpacer, + HStack, Icon, IOColors, IOStyles, + IOVisualCostants, ListItemHeader, + useIOTheme, VSpacer } from "@pagopa/io-app-design-system"; import * as pot from "@pagopa/ts-commons/lib/pot"; @@ -20,7 +23,6 @@ import * as React from "react"; import { StyleSheet, View } from "react-native"; import { ServiceId } from "../../../../../definitions/backend/ServiceId"; import { Consent } from "../../../../../definitions/fims_sso/Consent"; -import { FooterActions } from "../../../../components/ui/FooterActions"; import { LoadingSkeleton } from "../../../../components/ui/Markdown/LoadingSkeleton"; import I18n from "../../../../i18n"; import { useIODispatch, useIOStore } from "../../../../store/hooks"; @@ -43,6 +45,7 @@ export const FimsFlowSuccessBody = ({ consents, onAbort }: FimsSuccessBodyProps) => { + const theme = useIOTheme(); const dispatch = useIODispatch(); const store = useIOStore(); const serviceId = consents.service_id as ServiceId; @@ -111,15 +114,19 @@ export const FimsFlowSuccessBody = ({ ]} > - + + {/* TODO: We need to add a variant of `Avatar` that + lets you set a custom icon with a custom colour. */} - + - - - +

{I18n.t("FIMS.consentsScreen.title")}

@@ -195,10 +202,14 @@ const generateBottomSheetProps = ( const styles = StyleSheet.create({ outlineContainer: { - padding: 6, borderWidth: 1, + padding: 8, + alignItems: "center", + justifyContent: "center", borderRadius: 8, - borderColor: hexToRgba(IOColors.black, 0.1) - }, - rowAlignCenter: { flexDirection: "row", alignItems: "center" } + borderColor: hexToRgba(IOColors.black, 0.1), + borderCurve: "continuous", + width: IOVisualCostants.avatarSizeSmall, + height: IOVisualCostants.avatarSizeSmall + } }); diff --git a/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx b/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx index 0b0cb80d3ef..654557777f6 100644 --- a/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx +++ b/ts/features/idpay/configuration/screens/IbanOnboardingScreen.tsx @@ -83,7 +83,7 @@ export const IbanOnboardingScreen = () => { } ]} > - + {I18n.t("idpay.configuration.iban.onboarding.bottomLabel")} diff --git a/ts/features/messages/components/Home/DS/DoubleAvatar.tsx b/ts/features/messages/components/Home/DS/DoubleAvatar.tsx index 3509fa4bcda..cb2eecea37e 100644 --- a/ts/features/messages/components/Home/DS/DoubleAvatar.tsx +++ b/ts/features/messages/components/Home/DS/DoubleAvatar.tsx @@ -1,20 +1,19 @@ -import React, { useCallback } from "react"; -import { - Image, - ImageRequireSource, - ImageURISource, - StyleSheet, - View -} from "react-native"; import { IOColors, - IOIconSizeScale, IOSpacingScale, IOVisualCostants, Icon, hexToRgba, useIOTheme } from "@pagopa/io-app-design-system"; +import React, { useCallback } from "react"; +import { + Image, + ImageRequireSource, + ImageURISource, + StyleSheet, + View +} from "react-native"; import { addCacheTimestampToUri } from "../../../../../utils/image"; type DoubleAvatarProps = { @@ -24,7 +23,7 @@ type DoubleAvatarProps = { | ReadonlyArray; }; -const avatarContainerSize: IOIconSizeScale = 30; +const avatarContainerSize = 30; const avatarDoubleRadiusSizeSmall: number = 6; const internalSpaceDefaultSize: number = 3; const internalSpacePlaceholderDefaultSize: IOSpacingScale = 6; From 49765bbc109e4266fcb59e1a91442993fb823331 Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Wed, 18 Dec 2024 10:33:41 +0100 Subject: [PATCH 03/16] Remove `Itw` deprecated component to fix TS issue --- .../components/ItwOptionalClaimsList.tsx | 101 ------------------ 1 file changed, 101 deletions(-) delete mode 100644 ts/features/itwallet/common/components/ItwOptionalClaimsList.tsx diff --git a/ts/features/itwallet/common/components/ItwOptionalClaimsList.tsx b/ts/features/itwallet/common/components/ItwOptionalClaimsList.tsx deleted file mode 100644 index cf2a62f3240..00000000000 --- a/ts/features/itwallet/common/components/ItwOptionalClaimsList.tsx +++ /dev/null @@ -1,101 +0,0 @@ -import * as React from "react"; -import { View, StyleSheet, Pressable } from "react-native"; -import { - AnimatedCheckbox, - Body, - Divider, - H6, - IOColors -} from "@pagopa/io-app-design-system"; -import * as RA from "fp-ts/lib/ReadonlyArray"; -import { pipe } from "fp-ts/lib/function"; -import I18n from "../../../../i18n"; - -/** - * Props for {@link ItwOptionalClaimsList} component which consists of a list of claims - * and a callback function to be called when a claim is selected. - */ -type Props = { - claims: ReadonlyArray; - onClaimSelected?: (claim: ItwOptionalClaimItem, isSelected: boolean) => void; -}; - -/** - * Type for a claim item. - */ -export type ItwOptionalClaimItem = { - claim: string; - credential: string; -}; - -const VERTICAL_SPACING = 16; - -const HORIZONTAL_SPACING = 24; - -/** - * A component to render a list of optional claims with a checkbox. - * @param claims - the list of the optional claims - * @param onClaimSelected - the callback function to be called when a claim is selected - */ -export const ItwOptionalClaimsList = ({ claims, onClaimSelected }: Props) => { - const [selectedClaims, setSelectedClaims] = React.useState>( - new Array(claims.length).fill(false) - ); - - const checkBoxOnPress = (index: number) => { - if (onClaimSelected) { - onClaimSelected(claims[index], !selectedClaims[index]); - } - setSelectedClaims( - selectedClaims.map((value, i) => (i === index ? !value : value)) - ); - }; - - return ( - - {pipe( - claims, - RA.mapWithIndex((index, claim) => ( - - checkBoxOnPress(index)} - > - - -
{claim.claim}
- - - -
- - {I18n.t("features.itWallet.generic.dataSource.single", { - authSource: claim.credential - })} - -
-
- {/* Add a separator view between claims */} - {index !== claims.length - 1 && } -
- )) - )} -
- ); -}; - -const styles = StyleSheet.create({ - container: { - backgroundColor: IOColors.greyUltraLight, - borderRadius: 8, - paddingHorizontal: HORIZONTAL_SPACING - }, - innerContainer: { - paddingVertical: VERTICAL_SPACING - } -}); From d1d3ebe833322ff02e8ed2ebfa84544db0883d34 Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Wed, 18 Dec 2024 16:50:21 +0100 Subject: [PATCH 04/16] Update `io-app-design-system` to `4.4.1` --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 4d0255f6d5e..0b0c8a10b71 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ }, "dependencies": { "@gorhom/bottom-sheet": "^4.1.5", - "@pagopa/io-app-design-system": "4.4.0", + "@pagopa/io-app-design-system": "4.4.1", "@pagopa/io-pagopa-commons": "^3.1.0", "@pagopa/io-react-native-cieid": "^0.3.5", "@pagopa/io-react-native-crypto": "^1.0.1", diff --git a/yarn.lock b/yarn.lock index ec4fb7303ce..1fbd0797049 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3670,9 +3670,9 @@ __metadata: languageName: node linkType: hard -"@pagopa/io-app-design-system@npm:4.4.0": - version: 4.4.0 - resolution: "@pagopa/io-app-design-system@npm:4.4.0" +"@pagopa/io-app-design-system@npm:4.4.1": + version: 4.4.1 + resolution: "@pagopa/io-app-design-system@npm:4.4.1" dependencies: "@testing-library/jest-native": ^5.4.2 "@types/react-test-renderer": ^18.0.0 @@ -3696,7 +3696,7 @@ __metadata: react-native-reanimated: "*" react-native-safe-area-context: "*" react-native-svg: "*" - checksum: 56db233a7bb4b2eb1182517988e635147f9d113155d6b56b6cc63490765f330e9d7c38ca1bf594214cb11907fe44a96c43caa1dad5e8ad46a07b4b84155f563e + checksum: c93de9a11d2a759306476242edfa4fee0ae7e331e40e518d9635089a7be1bbed7e48429d05d586a5d43e4e426d6d05d444e380a33c32277dc2e6fc4c8a6fa3b9 languageName: node linkType: hard @@ -13557,7 +13557,7 @@ __metadata: "@babel/runtime": ^7.20.0 "@gorhom/bottom-sheet": ^4.1.5 "@jambit/eslint-plugin-typed-redux-saga": ^0.4.0 - "@pagopa/io-app-design-system": 4.4.0 + "@pagopa/io-app-design-system": 4.4.1 "@pagopa/io-pagopa-commons": ^3.1.0 "@pagopa/io-react-native-cieid": ^0.3.5 "@pagopa/io-react-native-crypto": ^1.0.1 From b74b23f6ecdc4b244d1bfccd8f82018a78ca552b Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Wed, 18 Dec 2024 16:50:47 +0100 Subject: [PATCH 05/16] Update `jest` snapshots --- .../__snapshots__/IOMarkdown.test.tsx.snap | 84 +- .../LoadingSpinnerOverlay.test.tsx.snap | 15 +- .../WebviewComponent.test.tsx.snap | 4 +- .../LoadingScreenContent.test.tsx.snap | 16 +- ...OperationResultScreenContent.test.tsx.snap | 22 +- .../IOScrollViewCentredContent.test.tsx.snap | 282 +- .../IOScrollViewWithListItems.test.tsx.snap | 149 +- .../CGNDiscountExpiredScreen.test.tsx.snap | 11 +- .../CgnDiscountCodeScreen.test.tsx.snap | 18 +- .../CieIdErrorScreen.test.tsx.snap | 44 +- .../CieIdNotInstalled.test.tsx.snap | 22 +- .../CieIdNotInstalledScreen.test.tsx.snap | 22 +- .../__snapshots__/wizards.test.tsx.snap | 565 +- .../CieIdAuthUrlError.test.tsx.snap | 15 +- .../CieIdLoginScreen.test.tsx.snap | 11 +- .../DocumentsNavigationBar.test.tsx.snap | 32 +- .../__snapshots__/LinkedText.test.tsx.snap | 68 +- .../LoadingComponent.test.tsx.snap | 8 +- .../QtspClauseListItem.test.tsx.snap | 63 +- .../SignatureFieldItem.test.tsx.snap | 29 +- .../FimsUpdateAppAlert.test.tsx.snap | 22 +- .../__snapshots__/IdPayCard.test.tsx.snap | 16 +- .../__snapshots__/IngressScreen.test.tsx.snap | 4 +- .../ItwCredentialCard.test.tsx.snap | 78 +- .../ItwFeedbackBanner.test.tsx.snap | 24 +- .../__snapshots__/ItwMarkdown.test.tsx.snap | 40 +- .../ItwDiscoveryBanner.test.tsx.snap | 12 +- ...ItwDiscoveryBannerOnboarding.test.tsx.snap | 8 +- ...ItwDiscoveryBannerStandalone.test.tsx.snap | 12 +- ...wCredentialPreviewClaimsList.test.tsx.snap | 292 +- ...ntialAsyncContinuationScreen.test.tsx.snap | 74 +- ...ItwPresentationClaimsSection.test.tsx.snap | 676 +- .../__snapshots__/EmptyList.test.tsx.snap | 102 +- .../PreconditionsContent.test.tsx.snap | 12 +- .../PreconditionsFeedback.test.tsx.snap | 12 +- .../PreconditionsFooter.test.tsx.snap | 28 +- .../PreconditionsTitle.test.tsx.snap | 4 +- .../SecuritySuggestions.test.tsx.snap | 176 +- .../TabNavigationContainer.test.tsx.snap | 16 +- .../WrappedMessageListItem.test.tsx.snap | 330 +- .../__snapshots__/PdfViewer.test.tsx.snap | 4 +- ...MessageDetailsAttachmentItem.test.tsx.snap | 64 +- .../MessageDetailsAttachments.test.tsx.snap | 280 +- .../MessageDetailsFooter.test.tsx.snap | 1428 +- .../MessageDetailsHeader.test.tsx.snap | 16 +- .../MessageDetailsPayment.test.tsx.snap | 83 +- .../MessageDetailsPaymentButton.test.tsx.snap | 7 +- .../MessageDetailsReminder.test.tsx.snap | 225 +- ...essageDetailsReminderExpired.test.tsx.snap | 89 +- ...ssageDetailsReminderExpiring.test.tsx.snap | 136 +- .../MessageDetailsStickyFooter.test.tsx.snap | 63 +- .../MessagePaymentItem.test.tsx.snap | 32 +- .../OrganizationHeader.test.tsx.snap | 8 +- .../RemoteContentBanner.test.tsx.snap | 32 +- .../ShowMoreListItem.test.tsx.snap | 3251 +- .../MessageAttachment.test.tsx.snap | 103 +- .../MessageGreenPassScreen.test.tsx.snap | 11 +- .../MessageRouterScreen.test.tsx.snap | 260 +- .../MessagesHomeScreen.test.tsx.snap | 40 +- .../WalletPaymentOutcomeScreen.test.tsx.snap | 20542 ++-- .../PaymentCardSmall.test.tsx.snap | 4 +- .../F24ListBottomSheetLink.test.tsx.snap | 197 +- .../__snapshots__/F24Section.test.tsx.snap | 209 +- .../MessageBottomMenu.test.tsx.snap | 78720 ++++++---------- .../MessageCancelledContent.test.tsx.snap | 801 +- .../MessageDetails.test.tsx.snap | 674 +- .../MessageDetailsContent.test.tsx.snap | 4 +- .../__snapshots__/MessageFooter.test.tsx.snap | 7 +- .../MessagePaymentBottomSheet.test.tsx.snap | 132 +- .../MessagePayments.test.tsx.snap | 1350 +- .../__snapshots__/Timeline.test.tsx.snap | 192 +- .../TimelineListItem.test.tsx.snap | 796 +- .../MessageDetailsScreen.test.tsx.snap | 876 +- .../PaidPaymentScreen.test.tsx.snap | 53 +- .../NotificationPreviewSample.test.tsx.snap | 32 +- ...ificationsPreferencesPreview.test.tsx.snap | 32 +- ...ProfileNotificationsSettings.test.tsx.snap | 4608 +- .../PushNotificationsBanner.test.tsx.snap | 28 +- ...tificationsInfoScreenConsent.test.tsx.snap | 455 +- ...tificationsPreferencesScreen.test.tsx.snap | 408 +- ...otificationPermissionsScreen.test.tsx.snap | 22 +- .../ServicesHeader.test.tsx.snap | 8 +- .../ServicesHeaderSection.test.tsx.snap | 8 +- .../FeaturedInstitutionCard.test.tsx.snap | 8 +- .../FeaturedServiceCard.test.tsx.snap | 20 +- .../WalletEmptyScreenContent.test.tsx.snap | 30 +- .../__snapshots__/LandingScreen.test.tsx.snap | 552 +- .../ActivateNfcScreen.test.tsx.snap | 376 +- .../LanguagesPreferencesScreen.test.tsx.snap | 161 +- ...tificationsPreferencesScreen.test.tsx.snap | 1512 +- .../ProfileMainScreenTopBanner.test.tsx.snap | 156 +- .../SecurityScreen.test.tsx.snap | 54 +- .../SettingsDiscoveryBanner.test.tsx.snap | 20 +- 93 files changed, 47703 insertions(+), 74894 deletions(-) diff --git a/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap b/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap index 09fa05dd049..88fbf52fb55 100644 --- a/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap +++ b/ts/components/__tests__/__snapshots__/IOMarkdown.test.tsx.snap @@ -3,9 +3,9 @@ exports[`IOMarkdown Should match snapshot 1`] = ` - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - + - + + - - - + } + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - @@ -1481,10 +1478,10 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -1500,15 +1497,15 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expires on 21/03/2024 at 18:44 - - - Add reminder - + + + Expires on 21/03/2024 at 18:44 + + + Add reminder + + + @@ -1961,14 +1961,9 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -1981,8 +1976,10 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib @@ -1991,10 +1988,10 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2010,15 +2007,15 @@ exports[`MessageDetailsReminder should match snapshot when the reminder is visib }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expired on 21 Mar at 18:44 - + + + Expired on 21 Mar at 18:44 + + + @@ -744,10 +741,10 @@ exports[`MessageDetailsReminderExpired should match snapshot when not loading 1` accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -763,15 +760,15 @@ exports[`MessageDetailsReminderExpired should match snapshot when not loading 1` }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expired on 21 Mar at 10:33 - + + + Expired on 21 Mar at 10:33 + + + diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap index bf87d7bb537..eaf911c889a 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsReminderExpiring.test.tsx.snap @@ -371,14 +371,9 @@ exports[`MessageDetailsReminderExpiring should match snapshot 1`] = ` @@ -407,10 +404,10 @@ exports[`MessageDetailsReminderExpiring should match snapshot 1`] = ` accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -426,15 +423,15 @@ exports[`MessageDetailsReminderExpiring should match snapshot 1`] = ` }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Expires on 21/03/2024 at 10:33 - - - Add reminder - + + + Expires on 21/03/2024 at 10:33 + + + Add reminder + + + diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap index 0ba0ef71a0c..b47b8f63d12 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap @@ -435,6 +435,9 @@ exports[`MessageDetailsStickyFooter should match snapshot with both CTAs and no "flexDirection": "row", "justifyContent": "center", }, + { + "columnGap": 8, + }, false, ] } @@ -442,10 +445,10 @@ exports[`MessageDetailsStickyFooter should match snapshot with both CTAs and no - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2383,6 +2363,9 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, with ico "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -2393,75 +2376,67 @@ exports[`ShowMoreListItem should match snapshot, one section, one item, with ico ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3261,6 +3162,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3271,75 +3175,67 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3726,6 +3617,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3744,9 +3638,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, no icon } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -4267,6 +4153,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -4277,75 +4166,67 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -4801,6 +4608,9 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -4811,75 +4621,6 @@ exports[`ShowMoreListItem should match snapshot, one section, two items, with ic ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -5411,6 +5144,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -5421,75 +5157,67 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -5844,9 +5567,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item importantForAccessibility="yes" > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6123,6 +5841,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -6133,75 +5854,6 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6357,9 +6001,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item importantForAccessibility="yes" > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6636,6 +6275,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -6646,75 +6288,6 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6902,6 +6467,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -6920,9 +6488,9 @@ exports[`ShowMoreListItem should match snapshot, three sections, different item } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7443,6 +7003,9 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7453,75 +7016,67 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co ] } > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7876,9 +7426,9 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co importantForAccessibility="yes" > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -8155,6 +7700,9 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -8165,75 +7713,6 @@ exports[`ShowMoreListItem should match snapshot, two sections, different item co ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + diff --git a/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap b/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap index 389f0a771a9..fc5902c3e1e 100644 --- a/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap +++ b/ts/features/messages/screens/__tests__/__snapshots__/MessageAttachment.test.tsx.snap @@ -419,9 +419,9 @@ exports[`MessageAttachment Should match the snapshot when everything went fine 1 > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1309,6 +1236,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -1319,75 +1249,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1565,6 +1418,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -1575,75 +1431,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1818,9 +1597,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3466,6 +3170,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3476,75 +3183,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3722,6 +3352,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3732,75 +3365,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3975,9 +3531,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -5604,6 +5085,9 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -5614,75 +5098,6 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -5860,6 +5267,9 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -5870,75 +5280,6 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6113,9 +5446,9 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7727,6 +6985,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7737,75 +6998,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7983,6 +7167,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7993,75 +7180,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -8236,9 +7346,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -9864,6 +8899,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -9874,75 +8912,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -10120,6 +9081,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -10130,75 +9094,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -10373,9 +9260,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12069,6 +10884,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -12079,75 +10897,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12325,6 +11066,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -12335,75 +11079,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12578,9 +11245,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -14246,6 +12841,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -14256,75 +12854,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -14502,6 +13023,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -14512,75 +13036,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -14755,9 +13202,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16369,6 +14741,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -16379,75 +14754,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16625,6 +14923,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -16635,75 +14936,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16878,9 +15102,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -18442,6 +16591,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -18452,75 +16604,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -18698,6 +16773,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -18708,75 +16786,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -18951,9 +16952,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -20599,6 +18525,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -20609,75 +18538,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -20855,6 +18707,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -20865,75 +18720,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -21108,9 +18886,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22736,6 +20439,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -22746,75 +20452,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22992,6 +20621,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -23002,75 +20634,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -23245,9 +20800,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -24893,6 +22373,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -24903,75 +22386,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -25149,6 +22555,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -25159,75 +22568,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -25402,9 +22734,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -27098,6 +24358,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -27108,75 +24371,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -27354,6 +24540,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -27364,75 +24553,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -27607,9 +24719,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29255,6 +26292,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -29265,75 +26305,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29511,6 +26474,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -29521,75 +26487,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29764,9 +26653,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31412,6 +28226,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -31422,75 +28239,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31668,6 +28408,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -31678,75 +28421,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31921,9 +28587,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -33577,6 +30168,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -33587,75 +30181,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -33833,6 +30350,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -33843,75 +30363,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -34086,9 +30529,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35714,6 +32082,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -35724,75 +32095,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35970,6 +32264,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -35980,75 +32277,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -36223,9 +32443,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -37921,6 +34069,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -37931,75 +34082,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -38177,6 +34251,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -38187,75 +34264,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -38430,9 +34430,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -40058,6 +35983,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -40068,75 +35996,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -40314,6 +36165,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -40324,75 +36178,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -40567,9 +36344,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42313,6 +38018,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42323,75 +38031,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42569,6 +38200,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42579,75 +38213,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42822,9 +38379,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -44604,6 +40086,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -44614,75 +40099,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -44860,6 +40268,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -44870,75 +40281,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -45113,9 +40447,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -46812,6 +42074,9 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -46822,75 +42087,6 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47068,6 +42256,9 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -47078,75 +42269,6 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47321,9 +42435,9 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -49081,6 +44123,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -49091,75 +44136,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -49337,6 +44305,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -49347,75 +44318,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -49590,9 +44484,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51204,6 +46023,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -51214,75 +46036,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51460,6 +46205,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -51470,75 +46218,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51713,9 +46384,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53369,6 +47965,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53379,75 +47978,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53625,6 +48147,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53635,75 +48160,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53878,9 +48326,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -55506,6 +49879,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -55516,75 +49892,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -55762,6 +50061,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -55772,75 +50074,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56015,9 +50240,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57663,6 +51813,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -57673,75 +51826,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57919,6 +51995,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -57929,75 +52008,6 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay ] } > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -58172,9 +52174,9 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay > - - - - - - - - - - - - - - - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2870,9 +2786,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -3573,6 +3415,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -3583,75 +3428,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6040,9 +5798,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -6356,9 +6040,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -7059,6 +6669,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -7069,75 +6682,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -9526,9 +9052,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -10229,6 +9681,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -10239,75 +9694,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -12696,9 +12064,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -13399,6 +12693,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -13409,75 +12706,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -15866,9 +15076,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -16569,6 +15705,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -16579,75 +15718,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -19036,9 +18088,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -19739,6 +18717,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -19749,75 +18730,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22206,9 +21100,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -22909,6 +21729,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -22919,75 +21742,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -25376,9 +24112,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -26079,6 +24741,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -26089,75 +24754,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -28546,9 +27124,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -29249,6 +27753,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -29259,75 +27766,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -31716,9 +30136,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -32419,6 +30765,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -32429,75 +30778,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -34886,9 +33148,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35202,9 +33390,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -35905,6 +34019,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -35915,75 +34032,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -38372,9 +36402,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -39075,6 +37031,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -39085,75 +37044,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -41542,9 +39414,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -41858,9 +39656,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42206,6 +39930,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42216,75 +39943,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42440,9 +40090,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -42788,6 +40364,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -42798,75 +40377,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -43022,9 +40524,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -43370,6 +40798,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -43380,75 +40811,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -43991,6 +41345,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -44001,75 +41358,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -46458,9 +43728,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -46774,9 +43970,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47122,6 +44244,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -47132,75 +44257,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47356,9 +44404,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47704,6 +44678,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -47714,75 +44691,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -47938,9 +44838,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -48286,6 +45112,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -48296,75 +45125,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -48907,6 +45659,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -48917,75 +45672,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51374,9 +48042,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -51690,9 +48284,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52038,6 +48558,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -52048,75 +48571,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52272,9 +48718,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52620,6 +48992,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -52630,75 +49005,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -52854,9 +49152,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53202,6 +49426,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53212,75 +49439,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -53823,6 +49973,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -53833,75 +49986,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56290,9 +52356,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56606,9 +52598,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -56954,6 +52872,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -56964,75 +52885,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57188,9 +53032,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57536,6 +53306,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -57546,75 +53319,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -57770,9 +53466,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - + Notice code + + - + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + - Notice code - - - 1111 2222 3333 4444 02 - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -58739,6 +54287,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -58749,75 +54300,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -61206,9 +56670,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -61522,9 +56912,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -61870,6 +57186,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -61880,75 +57199,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -62104,9 +57346,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -62452,6 +57620,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -62462,75 +57633,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -62686,9 +57780,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -63034,6 +58054,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -63044,75 +58067,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -63655,6 +58601,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -63665,75 +58614,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -66122,9 +60984,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -66438,9 +61226,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -66786,6 +61500,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -66796,75 +61513,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67020,9 +61660,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67368,6 +61934,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -67378,75 +61947,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67602,9 +62094,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -67950,6 +62368,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -67960,75 +62381,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -68571,6 +62915,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -68581,75 +62928,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -71038,9 +65298,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -71741,6 +65927,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -71751,75 +65940,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -74208,9 +68310,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -74524,9 +68552,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -75227,6 +69181,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -75237,75 +69194,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -77694,9 +71564,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -78397,6 +72193,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -78407,75 +72206,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -81528,6 +75092,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -81538,75 +75105,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -82149,6 +75639,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -82159,75 +75652,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -85280,6 +78538,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -85290,75 +78551,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -85901,6 +79085,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -85911,75 +79098,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -89032,6 +81984,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -89042,75 +81997,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -89653,6 +82531,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -89663,75 +82544,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -92784,6 +85430,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -92794,75 +85443,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -93405,6 +85977,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -93415,75 +85990,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -96536,6 +88876,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -96546,75 +88889,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -97157,6 +89423,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -97167,75 +89436,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message - - - - - - - - - - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -100288,6 +92322,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -100298,75 +92335,6 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -100909,6 +92869,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -100919,75 +92882,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -103376,9 +95252,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -104079,6 +95881,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -104089,75 +95894,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -106546,9 +98264,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -106862,9 +98506,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -107565,6 +99135,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -107575,75 +99148,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -110032,9 +101518,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -110735,6 +102147,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -110745,75 +102160,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -113202,9 +104530,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -113905,6 +105159,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -113915,75 +105172,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -116372,9 +107542,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -117075,6 +108171,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -117085,75 +108184,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -119542,9 +110554,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -120245,6 +111183,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -120255,75 +111196,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -122712,9 +113566,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -123415,6 +114195,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -123425,75 +114208,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -125882,9 +116578,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -126585,6 +117207,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -126595,75 +117220,67 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -129052,9 +119590,9 @@ exports[`MessageBottomMenu should match snapshot, all handled-status items histo importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -129755,6 +120219,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -129765,75 +120232,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -130467,9 +120847,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -131170,6 +121476,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -131180,75 +121489,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -131882,9 +122104,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -132198,9 +122346,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -132901,6 +122975,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -132911,75 +122988,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -133613,9 +123603,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, ca importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -134316,6 +124232,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -134326,75 +124245,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -135028,9 +124860,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -135731,6 +125489,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -135741,75 +125502,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -136443,9 +126117,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -137146,6 +126746,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -137156,75 +126759,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -137858,9 +127374,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, no importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -138561,6 +128003,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -138571,75 +128016,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -139273,9 +128631,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -139976,6 +129260,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -139986,75 +129273,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -140688,9 +129888,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -141391,6 +130517,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -141401,75 +130530,67 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -142103,9 +131145,9 @@ exports[`MessageBottomMenu should match snapshot, no history, empty payments, un importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -142806,6 +131774,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -142816,75 +131787,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -143518,9 +132402,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -144221,6 +133031,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -144231,75 +133044,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -144933,9 +133659,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -145249,9 +133901,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -145952,6 +134530,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -145962,75 +134543,272 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > + + + + + - - + + + + + + + + + + + + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Stato della notifica - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -146664,9 +135158,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -147367,6 +135787,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -147377,75 +135800,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - Codice IUN + Message ID - randomIUN + 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Message + pagoPA notice 1 - + Notice code + + - + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + - Message ID + Payee fiscal code - 01HVPB9XYZMWNEPTDKZJ8ZJV28 + 01234567890 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - pagoPA notice 1 + pagoPA notice 2 @@ -148477,6 +137173,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -148487,75 +137186,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - 1111 2222 3333 4444 00 + 1111 2222 3333 4444 01 - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -148743,6 +137365,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -148753,75 +137378,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - pagoPA notice 2 + pagoPA notice 3 @@ -149059,6 +137607,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -149069,75 +137620,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - 1111 2222 3333 4444 01 - - - - - - - - - - - - - - - - - - - - - - - - - - Payee fiscal code - - - 01234567890 + 1111 2222 3333 4444 02 - - - + - - - - - - - - - - - - - pagoPA notice 3 - - - - - - - - - - - - - - - - - - Notice code - - - 1111 2222 3333 4444 02 - - - - - - - - - + /> + + @@ -149907,6 +137799,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -149917,75 +137812,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -150528,6 +138346,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -150538,75 +138359,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -151240,9 +138974,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -151556,9 +139216,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -151904,6 +139490,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -151914,75 +139503,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -152138,9 +139650,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -152486,6 +139924,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -152496,75 +139937,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -152720,9 +140084,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -153068,6 +140358,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -153078,75 +140371,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -153689,6 +140905,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -153699,75 +140918,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -154401,9 +141533,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -154717,9 +141775,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155065,6 +142049,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -155075,75 +142062,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155299,9 +142209,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155647,6 +142483,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -155657,75 +142496,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -155881,9 +142643,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -156229,6 +142917,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -156239,75 +142930,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -156850,6 +143464,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -156860,75 +143477,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Notifica - - - - - - - - - - - - - - - - - - Codice IUN - - - randomIUN - - - - - - - - - - - - - - - - - - Message + Notifica - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -157878,9 +144334,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -158226,6 +144608,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -158236,75 +144621,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -158460,9 +144768,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -158808,6 +145042,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -158818,75 +145055,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -159042,9 +145202,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -159390,6 +145476,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -159400,75 +145489,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -160011,6 +146023,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -160021,75 +146036,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -160723,9 +146651,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161039,9 +146893,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161387,6 +147167,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -161397,75 +147180,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161621,9 +147327,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -161969,6 +147601,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -161979,75 +147614,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -162203,9 +147761,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -162551,6 +148035,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -162561,75 +148048,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -163172,6 +148582,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -163182,75 +148595,67 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -163884,9 +149210,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -164200,9 +149452,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -164548,6 +149726,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -164558,75 +149739,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -164782,9 +149886,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -165130,6 +150160,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -165140,75 +150173,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -165364,9 +150320,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -165712,6 +150594,9 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -165722,75 +150607,6 @@ exports[`MessageBottomMenu should match snapshot, no history, multiple payments, ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -166333,6 +151141,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -166343,75 +151154,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -167045,9 +151769,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -167748,6 +152398,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -167758,75 +152411,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -168460,9 +153026,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -168776,9 +153268,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -169479,6 +153897,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -169489,75 +153910,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -170191,9 +154525,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, cance importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -170894,6 +155154,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -170904,75 +155167,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Notifica - - - - - - - - - - - - - - - - - - Codice IUN - - - randomIUN - - - - - - - - - - - - - - - - - - Message + Notifica - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -171922,9 +156024,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -172270,6 +156298,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -172280,75 +156311,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -172891,6 +156845,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -172901,75 +156858,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -173603,9 +157473,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -173919,9 +157715,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -174267,6 +157989,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -174277,75 +158002,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -174888,6 +158536,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -174898,75 +158549,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - Notifica - - - - - - - - - - - - - - - - - - Codice IUN - - - randomIUN - - - - - - - - - - - - - - - - - - Message + Notifica - + Codice IUN + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + Message + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -175916,9 +159406,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -176264,6 +159680,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -176274,75 +159693,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, not c ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -176885,6 +160227,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -176895,75 +160240,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -177597,9 +160855,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -177913,9 +161097,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -178261,6 +161371,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -178271,75 +161384,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -178882,6 +161918,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -178892,75 +161931,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -179594,9 +162546,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - Message ID - - - 01HVPB9XYZMWNEPTDKZJ8ZJV28 - - - - - - - - - - - - - - - - - - pagoPA notice - - - - - - - - - - + Message ID + + - + + + + - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + + + + + + + + + + pagoPA notice + + + + + + + - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -180258,6 +163062,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -180268,75 +163075,6 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -180879,6 +163609,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -180889,75 +163622,67 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -181591,9 +164237,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -181907,9 +164479,9 @@ exports[`MessageBottomMenu should match snapshot, no history, one payment, undef importantForAccessibility="yes" > - - - - - - - - - - Notice code - - - 1111 2222 3333 4444 00 - - - - - - - - - - - - - - - - - - - - - - - - Payee fiscal code + Notice code - 01234567890 + 1111 2222 3333 4444 00 + + + + + + + + + + + + - + Payee fiscal code + + - + + + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -182876,6 +165300,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -182886,75 +165313,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -183588,9 +165928,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -184291,6 +166557,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -184301,75 +166570,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -185003,9 +167185,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -185319,9 +167427,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -186022,6 +168056,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -186032,75 +168069,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -186734,9 +168684,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -187437,6 +169313,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -187447,75 +169326,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -188149,9 +169941,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -188852,6 +170570,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -188862,75 +170583,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -189564,9 +171198,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -190267,6 +171827,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -190277,75 +171840,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -190979,9 +172455,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -191682,6 +173084,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -191692,75 +173097,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -192394,9 +173712,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -193097,6 +174341,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -193107,75 +174354,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -193809,9 +174969,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -194512,6 +175598,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments "flexDirection": "row", "justifyContent": "space-between", }, + { + "columnGap": 18, + }, { "transform": [ { @@ -194522,75 +175611,67 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments ] } > - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - + + - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -195224,9 +176226,9 @@ exports[`MessageBottomMenu should match snapshot, no history, undefined payments importantForAccessibility="yes" > - - - - - - - - - + - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap index a0c93f25017..5e24694d255 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageCancelledContent.test.tsx.snap @@ -346,14 +346,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -365,8 +360,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no @@ -375,10 +372,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -394,15 +391,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + @@ -826,14 +833,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -845,8 +847,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no @@ -855,10 +859,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -874,15 +878,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -1306,14 +1320,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -1325,8 +1334,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no @@ -1335,10 +1346,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -1354,15 +1365,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, empty paid no }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + @@ -1786,14 +1807,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -1805,8 +1821,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai @@ -1815,10 +1833,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -1834,15 +1852,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -2266,14 +2294,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -2285,8 +2308,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai @@ -2295,10 +2320,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2314,15 +2339,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -2746,14 +2781,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -2765,8 +2795,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai @@ -2775,10 +2807,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2794,15 +2826,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, non-empty pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -3226,14 +3268,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -3245,8 +3282,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai @@ -3255,10 +3294,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -3274,15 +3313,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + @@ -3706,14 +3755,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -3725,8 +3769,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai @@ -3735,10 +3781,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -3754,15 +3800,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. Per l'eventuale rimborso di pagamenti, rivolgiti all'ente. + + + @@ -4186,14 +4242,9 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessible={false} style={ [ - { - "alignContent": "center", - "alignItems": "flex-start", - "flexDirection": "row", - }, { "borderCurve": "continuous", - "borderRadius": 8, + "borderRadius": 12, "padding": 16, }, { @@ -4205,8 +4256,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai @@ -4215,10 +4268,10 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -4234,15 +4287,15 @@ exports[`MessageCancelledContent Should match snapshot, cancelled, undefined pai }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#614C15" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. - + + + Questa notifica è stata annullata dall'ente mittente. Puoi ignorarne il contenuto. + + + diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap index 8f0c2fda9f4..ebbac0497f7 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageDetails.test.tsx.snap @@ -376,12 +376,15 @@ exports[`MessageDetails component should match the snapshot with default props 1 "alignItems": "center", "alignSelf": "flex-start", "borderCurve": "continuous", - "borderRadius": 6, "borderWidth": 1, "flexDirection": "row", "justifyContent": "center", - "paddingHorizontal": 8, - "paddingVertical": 6, + }, + { + "borderRadius": 9, + "columnGap": 9, + "paddingHorizontal": 12, + "paddingVertical": 9, }, { "backgroundColor": "#FFFFFF", @@ -402,10 +405,10 @@ exports[`MessageDetails component should match the snapshot with default props 1 accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={16} - bbWidth={16} + bbHeight={24} + bbWidth={24} focusable={false} - height={16} + height={24} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -421,15 +424,15 @@ exports[`MessageDetails component should match the snapshot with default props 1 }, { "flex": 0, - "height": 16, - "width": 16, + "height": 24, + "width": 24, }, ] } tintColor="#0B3EE3" vbHeight={24} vbWidth={24} - width={16} + width={24} > - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -1479,9 +1391,9 @@ exports[`MessageDetails component should match the snapshot with default props 1 importantForAccessibility="yes" > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + diff --git a/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap index 26dd805fcc0..a011f6b0f7b 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessageDetailsContent.test.tsx.snap @@ -10,9 +10,9 @@ exports[`MessageDetailsContent component should match the snapshot when abstract } />, - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2033,9 +1883,9 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin importantForAccessibility="yes" > - - - - - - - - - - - - - - + fillRule={0} + propList={ + [ + "fill", + "fillRule", + ] + } + /> + + @@ -2432,10 +2208,10 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin "color": undefined, } } - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -2451,15 +2227,15 @@ exports[`MessageDetailsScreen should match the snapshot when everything went fin }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#0E0F13" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -90,10 +87,10 @@ exports[`ProfileMainScreenTopBanner should match snapshot for all possible resul accessibilityLabel="" accessible={false} align="xMidYMid" - bbHeight={24} - bbWidth={24} + bbHeight={36} + bbWidth={36} focusable={false} - height={24} + height={36} importantForAccessibility="no-hide-descendants" meetOrSlice={0} minX={0} @@ -109,15 +106,15 @@ exports[`ProfileMainScreenTopBanner should match snapshot for all possible resul }, { "flex": 0, - "height": 24, - "width": 24, + "height": 36, + "width": 36, }, ] } tintColor="#5D1313" vbHeight={24} vbWidth={24} - width={24} + width={36} > - - - - Turn on push notifications to know when you get a message on IO. - - - Turn on push notifications - + + + Turn on push notifications to know when you get a message on IO. + + + Turn on push notifications + + + @@ -302,9 +302,9 @@ exports[`ProfileMainScreenTopBanner should match snapshot for all possible resul } > Date: Thu, 19 Dec 2024 17:57:41 +0100 Subject: [PATCH 06/16] Fix visual issue in the Cgn categories list --- .../CgnMerchantCategoriesListScreen.tsx | 8 ++++- .../design-system/core/DSListItems.tsx | 34 +++++++++++++++++-- 2 files changed, 39 insertions(+), 3 deletions(-) diff --git a/ts/features/bonus/cgn/screens/merchants/CgnMerchantCategoriesListScreen.tsx b/ts/features/bonus/cgn/screens/merchants/CgnMerchantCategoriesListScreen.tsx index f3719576561..80e2f06233d 100644 --- a/ts/features/bonus/cgn/screens/merchants/CgnMerchantCategoriesListScreen.tsx +++ b/ts/features/bonus/cgn/screens/merchants/CgnMerchantCategoriesListScreen.tsx @@ -95,7 +95,13 @@ export const CgnMerchantCategoriesListScreen = () => { key={i} value={ countAvailable ? ( - +
{I18n.t(s.nameKey)}
diff --git a/ts/features/design-system/core/DSListItems.tsx b/ts/features/design-system/core/DSListItems.tsx index 57ba689ac01..1d1c403c724 100644 --- a/ts/features/design-system/core/DSListItems.tsx +++ b/ts/features/design-system/core/DSListItems.tsx @@ -2,7 +2,9 @@ import { NonEmptyString } from "@pagopa/ts-commons/lib/strings"; import * as React from "react"; import { + Badge, Divider, + H6, H4, Icon, ListItemAction, @@ -16,7 +18,7 @@ import { VStack, useIOTheme } from "@pagopa/io-app-design-system"; -import { Alert } from "react-native"; +import { Alert, View } from "react-native"; import { DSComponentViewerBox } from "../components/DSComponentViewerBox"; @@ -113,11 +115,39 @@ const renderListItemNav = () => ( /> + +
Nome del valoreeeeee eeeeeeeeee
+ +
+ } + onPress={onButtonPress} + /> + + + Date: Fri, 20 Dec 2024 17:12:29 +0100 Subject: [PATCH 07/16] Update `io-app-design-system` to `4.4.2` --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index ac2e2897b06..ff69237ed55 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ }, "dependencies": { "@gorhom/bottom-sheet": "^4.1.5", - "@pagopa/io-app-design-system": "4.4.1", + "@pagopa/io-app-design-system": "4.4.2", "@pagopa/io-pagopa-commons": "^3.1.0", "@pagopa/io-react-native-cieid": "^0.3.5", "@pagopa/io-react-native-crypto": "^1.0.1", diff --git a/yarn.lock b/yarn.lock index 1fbd0797049..716541292cb 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3670,9 +3670,9 @@ __metadata: languageName: node linkType: hard -"@pagopa/io-app-design-system@npm:4.4.1": - version: 4.4.1 - resolution: "@pagopa/io-app-design-system@npm:4.4.1" +"@pagopa/io-app-design-system@npm:4.4.2": + version: 4.4.2 + resolution: "@pagopa/io-app-design-system@npm:4.4.2" dependencies: "@testing-library/jest-native": ^5.4.2 "@types/react-test-renderer": ^18.0.0 @@ -3696,7 +3696,7 @@ __metadata: react-native-reanimated: "*" react-native-safe-area-context: "*" react-native-svg: "*" - checksum: c93de9a11d2a759306476242edfa4fee0ae7e331e40e518d9635089a7be1bbed7e48429d05d586a5d43e4e426d6d05d444e380a33c32277dc2e6fc4c8a6fa3b9 + checksum: 23d4f0bf2eb25a5c37da14f77f5ea1d825be2b6e1ce2746fa0d84d2ed610dc81bcb0265e9ec196dbaaf72fc0d886a0405b624c45326dec484bf4cdb158878ba8 languageName: node linkType: hard @@ -13557,7 +13557,7 @@ __metadata: "@babel/runtime": ^7.20.0 "@gorhom/bottom-sheet": ^4.1.5 "@jambit/eslint-plugin-typed-redux-saga": ^0.4.0 - "@pagopa/io-app-design-system": 4.4.1 + "@pagopa/io-app-design-system": 4.4.2 "@pagopa/io-pagopa-commons": ^3.1.0 "@pagopa/io-react-native-cieid": ^0.3.5 "@pagopa/io-react-native-crypto": ^1.0.1 From 116782c73c53312062212106801aa2816636d8ca Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Fri, 20 Dec 2024 17:38:58 +0100 Subject: [PATCH 08/16] Update `io-app-design-system` to `4.4.3` --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index ff69237ed55..575dceea12e 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ }, "dependencies": { "@gorhom/bottom-sheet": "^4.1.5", - "@pagopa/io-app-design-system": "4.4.2", + "@pagopa/io-app-design-system": "4.4.3", "@pagopa/io-pagopa-commons": "^3.1.0", "@pagopa/io-react-native-cieid": "^0.3.5", "@pagopa/io-react-native-crypto": "^1.0.1", diff --git a/yarn.lock b/yarn.lock index 716541292cb..6924d003030 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3670,9 +3670,9 @@ __metadata: languageName: node linkType: hard -"@pagopa/io-app-design-system@npm:4.4.2": - version: 4.4.2 - resolution: "@pagopa/io-app-design-system@npm:4.4.2" +"@pagopa/io-app-design-system@npm:4.4.3": + version: 4.4.3 + resolution: "@pagopa/io-app-design-system@npm:4.4.3" dependencies: "@testing-library/jest-native": ^5.4.2 "@types/react-test-renderer": ^18.0.0 @@ -3696,7 +3696,7 @@ __metadata: react-native-reanimated: "*" react-native-safe-area-context: "*" react-native-svg: "*" - checksum: 23d4f0bf2eb25a5c37da14f77f5ea1d825be2b6e1ce2746fa0d84d2ed610dc81bcb0265e9ec196dbaaf72fc0d886a0405b624c45326dec484bf4cdb158878ba8 + checksum: 4b2022148957c4a8f7e7eee268886792e81c6312e59b03addaed06da34756d5e7b37e63f42e50dd9ce8fc2beb51a54bbbdab8b787143bf8b0137c23c4d72ded9 languageName: node linkType: hard @@ -13557,7 +13557,7 @@ __metadata: "@babel/runtime": ^7.20.0 "@gorhom/bottom-sheet": ^4.1.5 "@jambit/eslint-plugin-typed-redux-saga": ^0.4.0 - "@pagopa/io-app-design-system": 4.4.2 + "@pagopa/io-app-design-system": 4.4.3 "@pagopa/io-pagopa-commons": ^3.1.0 "@pagopa/io-react-native-cieid": ^0.3.5 "@pagopa/io-react-native-crypto": ^1.0.1 From 498644c4f898fbb2c095afb32c7f4ead359853ed Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Fri, 20 Dec 2024 17:50:05 +0100 Subject: [PATCH 09/16] Update `jest` snapshots --- ...OperationResultScreenContent.test.tsx.snap | 1 - .../IOScrollViewCentredContent.test.tsx.snap | 12 --------- .../IOScrollViewWithListItems.test.tsx.snap | 3 --- .../CGNDiscountExpiredScreen.test.tsx.snap | 1 - .../CgnDiscountCodeScreen.test.tsx.snap | 1 - .../CieIdErrorScreen.test.tsx.snap | 2 -- .../CieIdNotInstalled.test.tsx.snap | 1 - .../CieIdNotInstalledScreen.test.tsx.snap | 1 - .../__snapshots__/wizards.test.tsx.snap | 4 --- .../CieIdAuthUrlError.test.tsx.snap | 1 - .../FimsUpdateAppAlert.test.tsx.snap | 1 - ...ntialAsyncContinuationScreen.test.tsx.snap | 4 --- .../__snapshots__/EmptyList.test.tsx.snap | 2 -- .../PreconditionsFooter.test.tsx.snap | 2 -- .../MessageDetailsPaymentButton.test.tsx.snap | 2 -- .../MessageDetailsStickyFooter.test.tsx.snap | 6 ----- .../MessageAttachment.test.tsx.snap | 1 - .../MessageGreenPassScreen.test.tsx.snap | 1 - .../MessageRouterScreen.test.tsx.snap | 1 - .../WalletPaymentOutcomeScreen.test.tsx.snap | 27 ------------------- .../__snapshots__/MessageFooter.test.tsx.snap | 2 -- .../PaidPaymentScreen.test.tsx.snap | 1 - ...tificationsInfoScreenConsent.test.tsx.snap | 1 - ...tificationsPreferencesScreen.test.tsx.snap | 2 -- ...otificationPermissionsScreen.test.tsx.snap | 1 - .../WalletEmptyScreenContent.test.tsx.snap | 1 - .../__snapshots__/LandingScreen.test.tsx.snap | 4 --- .../ActivateNfcScreen.test.tsx.snap | 1 - .../SecurityScreen.test.tsx.snap | 12 +++------ 29 files changed, 4 insertions(+), 95 deletions(-) diff --git a/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap b/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap index 44e3cc167c6..5a09020bfc0 100644 --- a/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap +++ b/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap @@ -513,7 +513,6 @@ exports[`OperationResultScreenContent should match the snapshot with default pro } > @@ -684,9 +682,6 @@ exports[`Test SecurityScreen should match snapshot when 'fimsIsHistoryEnabledSel "flexDirection": "row", "justifyContent": "space-between", }, - { - "columnGap": 18, - }, { "transform": [ { @@ -700,7 +695,8 @@ exports[`Test SecurityScreen should match snapshot when 'fimsIsHistoryEnabledSel From 7447e060c3f9fcf47fcadb77854bd967d3008eb6 Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Tue, 7 Jan 2025 14:32:42 +0100 Subject: [PATCH 10/16] Fix truncated text in the `IdentificationModal` when text is larger --- package.json | 2 +- ts/screens/modal/IdentificationModal.tsx | 4 ++++ yarn.lock | 10 +++++----- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 575dceea12e..28ee75e1660 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ }, "dependencies": { "@gorhom/bottom-sheet": "^4.1.5", - "@pagopa/io-app-design-system": "4.4.3", + "@pagopa/io-app-design-system": "4.4.4", "@pagopa/io-pagopa-commons": "^3.1.0", "@pagopa/io-react-native-cieid": "^0.3.5", "@pagopa/io-react-native-crypto": "^1.0.1", diff --git a/ts/screens/modal/IdentificationModal.tsx b/ts/screens/modal/IdentificationModal.tsx index 3ee3f0fc112..920764658cb 100644 --- a/ts/screens/modal/IdentificationModal.tsx +++ b/ts/screens/modal/IdentificationModal.tsx @@ -453,6 +453,10 @@ const IdentificationModal = () => { Date: Tue, 7 Jan 2025 14:56:42 +0100 Subject: [PATCH 11/16] Update `jest` snapshots --- .../__snapshots__/ActivateNfcScreen.test.tsx.snap | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/ts/screens/authentication/__tests__/cie/__snapshots__/ActivateNfcScreen.test.tsx.snap b/ts/screens/authentication/__tests__/cie/__snapshots__/ActivateNfcScreen.test.tsx.snap index 4851ba4acc1..c7345c2b670 100644 --- a/ts/screens/authentication/__tests__/cie/__snapshots__/ActivateNfcScreen.test.tsx.snap +++ b/ts/screens/authentication/__tests__/cie/__snapshots__/ActivateNfcScreen.test.tsx.snap @@ -1077,11 +1077,16 @@ exports[`ActivateNfcScreen UI Rendering renders the screen with header, title, s "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > From fbf69b17cfec855a3a03df7f0770883c3a1cfd55 Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Tue, 7 Jan 2025 16:06:56 +0100 Subject: [PATCH 12/16] Update `jest` snapshots --- ...OperationResultScreenContent.test.tsx.snap | 13 +- .../IOScrollViewCentredContent.test.tsx.snap | 182 +++++--- .../CgnDiscountCodeScreen.test.tsx.snap | 13 +- .../CieIdErrorScreen.test.tsx.snap | 26 +- .../CieIdNotInstalled.test.tsx.snap | 13 +- .../CieIdNotInstalledScreen.test.tsx.snap | 13 +- .../__snapshots__/wizards.test.tsx.snap | 78 +++- .../FimsUpdateAppAlert.test.tsx.snap | 13 +- ...ntialAsyncContinuationScreen.test.tsx.snap | 26 +- .../PreconditionsFooter.test.tsx.snap | 26 +- .../MessageDetailsStickyFooter.test.tsx.snap | 39 +- .../MessageRouterScreen.test.tsx.snap | 13 +- .../WalletPaymentOutcomeScreen.test.tsx.snap | 442 ++++++++++++------ .../F24ListBottomSheetLink.test.tsx.snap | 39 +- .../__snapshots__/F24Section.test.tsx.snap | 13 +- .../MessagePayments.test.tsx.snap | 26 +- ...otificationPermissionsScreen.test.tsx.snap | 13 +- .../__snapshots__/LandingScreen.test.tsx.snap | 26 +- 18 files changed, 702 insertions(+), 312 deletions(-) diff --git a/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap b/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap index 5a09020bfc0..85514e8535b 100644 --- a/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap +++ b/ts/components/screens/__tests__/__snapshots__/OperationResultScreenContent.test.tsx.snap @@ -660,11 +660,16 @@ exports[`OperationResultScreenContent should match the snapshot with default pro "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/components/ui/__test__/__snapshots__/IOScrollViewCentredContent.test.tsx.snap b/ts/components/ui/__test__/__snapshots__/IOScrollViewCentredContent.test.tsx.snap index 58bdbff1353..82840654f50 100644 --- a/ts/components/ui/__test__/__snapshots__/IOScrollViewCentredContent.test.tsx.snap +++ b/ts/components/ui/__test__/__snapshots__/IOScrollViewCentredContent.test.tsx.snap @@ -653,11 +653,16 @@ exports[`IOScrollViewCentredContent should match snapshot, with description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -1580,11 +1585,16 @@ exports[`IOScrollViewCentredContent should match snapshot, with description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -2050,11 +2060,16 @@ exports[`IOScrollViewCentredContent should match snapshot, with description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -2731,11 +2746,16 @@ exports[`IOScrollViewCentredContent should match snapshot, with description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -3091,11 +3111,16 @@ exports[`IOScrollViewCentredContent should match snapshot, with description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -4957,11 +4982,16 @@ exports[`IOScrollViewCentredContent should match snapshot, with description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -5892,11 +5922,16 @@ exports[`IOScrollViewCentredContent should match snapshot, with description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -6550,11 +6585,16 @@ exports[`IOScrollViewCentredContent should match snapshot, without description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -7454,11 +7494,16 @@ exports[`IOScrollViewCentredContent should match snapshot, without description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -7924,11 +7969,16 @@ exports[`IOScrollViewCentredContent should match snapshot, without description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -8582,11 +8632,16 @@ exports[`IOScrollViewCentredContent should match snapshot, without description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -8942,11 +8997,16 @@ exports[`IOScrollViewCentredContent should match snapshot, without description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -10762,11 +10822,16 @@ exports[`IOScrollViewCentredContent should match snapshot, without description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -11674,11 +11739,16 @@ exports[`IOScrollViewCentredContent should match snapshot, without description, "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/bonus/cgn/screens/discount/___tests___/__snapshots__/CgnDiscountCodeScreen.test.tsx.snap b/ts/features/bonus/cgn/screens/discount/___tests___/__snapshots__/CgnDiscountCodeScreen.test.tsx.snap index 02f1e0ccfcf..b2bfa50b0ed 100644 --- a/ts/features/bonus/cgn/screens/discount/___tests___/__snapshots__/CgnDiscountCodeScreen.test.tsx.snap +++ b/ts/features/bonus/cgn/screens/discount/___tests___/__snapshots__/CgnDiscountCodeScreen.test.tsx.snap @@ -798,11 +798,16 @@ exports[`CgnDiscountCodeScreen should render correctly 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap b/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap index 8ec975b3ba1..441166c25e4 100644 --- a/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap +++ b/ts/features/cie/__tests__/__snapshots__/CieIdErrorScreen.test.tsx.snap @@ -466,11 +466,16 @@ exports[`CieIdErrorScreen where device doesn't support NFC Should match the snap "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -953,11 +958,16 @@ Insert the CIE PIN and bring it close to the device to allow the data to be read "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalled.test.tsx.snap b/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalled.test.tsx.snap index 996c1a863ad..262fa9dd12b 100644 --- a/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalled.test.tsx.snap +++ b/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalled.test.tsx.snap @@ -452,11 +452,16 @@ exports[`CieIdNotInstalled Should match the snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalledScreen.test.tsx.snap b/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalledScreen.test.tsx.snap index 55286499cc9..1f85dc92688 100644 --- a/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalledScreen.test.tsx.snap +++ b/ts/features/cie/__tests__/__snapshots__/CieIdNotInstalledScreen.test.tsx.snap @@ -452,11 +452,16 @@ exports[`CieIdNotInstalledScreen Should match snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/cie/__tests__/__snapshots__/wizards.test.tsx.snap b/ts/features/cie/__tests__/__snapshots__/wizards.test.tsx.snap index 4c961066e47..0751df9c81e 100644 --- a/ts/features/cie/__tests__/__snapshots__/wizards.test.tsx.snap +++ b/ts/features/cie/__tests__/__snapshots__/wizards.test.tsx.snap @@ -202,11 +202,16 @@ To enter the IO app without physically using the Electronic Identity Card, you m "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -563,11 +568,16 @@ To enter the IO app without physically using the Electronic Identity Card, you m "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -781,11 +791,16 @@ exports[`CiePinWizard Should match the snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -1125,11 +1140,16 @@ exports[`CiePinWizard Should match the snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -1487,11 +1507,16 @@ exports[`CiePinWizard Should match the snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -2870,11 +2895,16 @@ exports[`SpidWizard Should match the snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/fims/common/components/__tests__/__snapshots__/FimsUpdateAppAlert.test.tsx.snap b/ts/features/fims/common/components/__tests__/__snapshots__/FimsUpdateAppAlert.test.tsx.snap index 1d3a4899d3a..9f8d4068cbd 100644 --- a/ts/features/fims/common/components/__tests__/__snapshots__/FimsUpdateAppAlert.test.tsx.snap +++ b/ts/features/fims/common/components/__tests__/__snapshots__/FimsUpdateAppAlert.test.tsx.snap @@ -799,11 +799,16 @@ exports[`FimsUpdateAppAlert should match snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/itwallet/issuance/screens/__tests__/__snapshots__/ItwIssuanceCredentialAsyncContinuationScreen.test.tsx.snap b/ts/features/itwallet/issuance/screens/__tests__/__snapshots__/ItwIssuanceCredentialAsyncContinuationScreen.test.tsx.snap index 6f0e87828e2..a4a985e19ca 100644 --- a/ts/features/itwallet/issuance/screens/__tests__/__snapshots__/ItwIssuanceCredentialAsyncContinuationScreen.test.tsx.snap +++ b/ts/features/itwallet/issuance/screens/__tests__/__snapshots__/ItwIssuanceCredentialAsyncContinuationScreen.test.tsx.snap @@ -901,11 +901,16 @@ exports[`ItwIssuanceCredentialAsyncContinuationScreen it should render the activ "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -1793,11 +1798,16 @@ exports[`ItwIssuanceCredentialAsyncContinuationScreen it should render the docum "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/messages/components/Home/__tests__/__snapshots__/PreconditionsFooter.test.tsx.snap b/ts/features/messages/components/Home/__tests__/__snapshots__/PreconditionsFooter.test.tsx.snap index 13d146a548c..8a9c2cb3bfe 100644 --- a/ts/features/messages/components/Home/__tests__/__snapshots__/PreconditionsFooter.test.tsx.snap +++ b/ts/features/messages/components/Home/__tests__/__snapshots__/PreconditionsFooter.test.tsx.snap @@ -594,11 +594,16 @@ exports[`PreconditionsFooter should match snapshot for 'content' footer category "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -1562,11 +1567,16 @@ exports[`PreconditionsFooter should match snapshot for 'update' footer category "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap index a0cd3726db8..7007f66e829 100644 --- a/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap +++ b/ts/features/messages/components/MessageDetail/__tests__/__snapshots__/MessageDetailsStickyFooter.test.tsx.snap @@ -573,11 +573,16 @@ exports[`MessageDetailsStickyFooter should match snapshot with both CTAs and no "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -1283,11 +1288,16 @@ exports[`MessageDetailsStickyFooter should match snapshot with both CTAs and vis "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -4175,11 +4185,16 @@ exports[`MessageDetailsStickyFooter should match snapshot with one CTA and visib "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/messages/screens/__tests__/__snapshots__/MessageRouterScreen.test.tsx.snap b/ts/features/messages/screens/__tests__/__snapshots__/MessageRouterScreen.test.tsx.snap index fc31a3b3198..18024f99dcf 100644 --- a/ts/features/messages/screens/__tests__/__snapshots__/MessageRouterScreen.test.tsx.snap +++ b/ts/features/messages/screens/__tests__/__snapshots__/MessageRouterScreen.test.tsx.snap @@ -2366,11 +2366,16 @@ exports[`MessageRouterScreen should match snapshot on message data retrieval fai "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/payments/checkout/screens/___tests___/__snapshots__/WalletPaymentOutcomeScreen.test.tsx.snap b/ts/features/payments/checkout/screens/___tests___/__snapshots__/WalletPaymentOutcomeScreen.test.tsx.snap index b79b355aadc..04ac650b248 100644 --- a/ts/features/payments/checkout/screens/___tests___/__snapshots__/WalletPaymentOutcomeScreen.test.tsx.snap +++ b/ts/features/payments/checkout/screens/___tests___/__snapshots__/WalletPaymentOutcomeScreen.test.tsx.snap @@ -978,11 +978,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -2911,11 +2916,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -4825,11 +4835,16 @@ Controlla di aver seguito correttamente le istruzioni della tua banca. "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -6724,11 +6739,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -8637,11 +8657,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -10185,11 +10210,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -10621,11 +10651,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -12141,11 +12176,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -12577,11 +12617,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -14476,11 +14521,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -16325,11 +16375,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -18258,11 +18313,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -20171,11 +20231,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -22104,11 +22169,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -23652,11 +23722,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -24088,11 +24163,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -26021,11 +26101,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -27954,11 +28039,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -29895,11 +29985,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -31808,11 +31903,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -33358,11 +33458,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -33794,11 +33899,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -35707,11 +35817,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -37305,11 +37420,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -37741,11 +37861,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -39808,11 +39933,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -41359,11 +41489,16 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -41795,11 +41930,16 @@ Se il problema persiste, prova a usare un altro metodo o gestore del pagamento. "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -43407,11 +43547,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -43843,11 +43988,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -45742,11 +45892,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -47683,11 +47838,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -49596,11 +49756,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -51529,11 +51694,16 @@ exports[`WalletPaymentOutcomeScreen for all outcomes should render the WalletPay "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/pn/components/__test__/__snapshots__/F24ListBottomSheetLink.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/F24ListBottomSheetLink.test.tsx.snap index 08052cd828a..c85ad422a67 100644 --- a/ts/features/pn/components/__test__/__snapshots__/F24ListBottomSheetLink.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/F24ListBottomSheetLink.test.tsx.snap @@ -428,11 +428,16 @@ exports[`F24ListBottomSheetLink should be snapshot for a 10 items F24 list 1`] = "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -3191,11 +3196,16 @@ exports[`F24ListBottomSheetLink should be snapshot for an 0 items F24 list 1`] = "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -3690,11 +3700,16 @@ exports[`F24ListBottomSheetLink should be snapshot for an 1 item F24 list 1`] = "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap index 1b190976379..9a2313ef8a6 100644 --- a/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/F24Section.test.tsx.snap @@ -513,11 +513,16 @@ exports[`F24Section should match snapshot when there are more than one F24 1`] = "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap b/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap index 239a75b69b9..7b8f494d3dd 100644 --- a/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap +++ b/ts/features/pn/components/__test__/__snapshots__/MessagePayments.test.tsx.snap @@ -10053,11 +10053,16 @@ exports[`MessagePayments should match snapshot when not cancelled, with more-tha "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -11809,11 +11814,16 @@ exports[`MessagePayments should match snapshot when not cancelled, with more-tha "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/features/pushNotifications/screens/__tests__/__snapshots__/SystemNotificationPermissionsScreen.test.tsx.snap b/ts/features/pushNotifications/screens/__tests__/__snapshots__/SystemNotificationPermissionsScreen.test.tsx.snap index 7b9e57f577e..620c7b6eb56 100644 --- a/ts/features/pushNotifications/screens/__tests__/__snapshots__/SystemNotificationPermissionsScreen.test.tsx.snap +++ b/ts/features/pushNotifications/screens/__tests__/__snapshots__/SystemNotificationPermissionsScreen.test.tsx.snap @@ -965,11 +965,16 @@ exports[`SystemNotificationPermissionsScreen Should match snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > diff --git a/ts/screens/authentication/__tests__/__snapshots__/LandingScreen.test.tsx.snap b/ts/screens/authentication/__tests__/__snapshots__/LandingScreen.test.tsx.snap index 1c1ce5be291..525f63899f8 100644 --- a/ts/screens/authentication/__tests__/__snapshots__/LandingScreen.test.tsx.snap +++ b/ts/screens/authentication/__tests__/__snapshots__/LandingScreen.test.tsx.snap @@ -1662,11 +1662,16 @@ exports[`LandingScreen with CieID FF enabled Should match the snapshot 1`] = ` "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > @@ -4305,11 +4310,16 @@ exports[`LandingScreen with both local and remote CieID FF disabled Should match "fontSize": 16, "fontStyle": "normal", "fontWeight": "600", - "lineHeight": undefined, - }, - { - "color": undefined, + "lineHeight": 20, }, + [ + { + "color": undefined, + }, + { + "textAlign": "auto", + }, + ], ] } > From ee2c213c3d4d30da8068d82996ae10f125166476 Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Thu, 9 Jan 2025 11:01:02 +0100 Subject: [PATCH 13/16] Update `jest` snapshot --- .../ItwCredentialCard.test.tsx.snap | 36 +++++++++---------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap b/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap index 03e5acb9c4c..ea6d3ab15fe 100644 --- a/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap +++ b/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap @@ -1361,7 +1361,7 @@ exports[`ItwCredentialCard should match snapshot when status is "unknown" 1`] = } > - - Non disponibile + [missing "en.features.itWallet.card.status.unknown" translation] From 1bd45160d7c7ded708d1422d615329c666b58667 Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Thu, 9 Jan 2025 11:25:26 +0100 Subject: [PATCH 14/16] Update `jest` snapshot --- .../__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap b/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap index ea6d3ab15fe..2041725802c 100644 --- a/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap +++ b/ts/features/itwallet/common/components/__tests__/__snapshots__/ItwCredentialCard.test.tsx.snap @@ -1506,7 +1506,7 @@ exports[`ItwCredentialCard should match snapshot when status is "unknown" 1`] = ] } > - [missing "en.features.itWallet.card.status.unknown" translation] + Non disponibile
From 54a6307f92cded8415905cddbadb44a367fcdff3 Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Fri, 10 Jan 2025 10:11:57 +0100 Subject: [PATCH 15/16] Update `io-app-design-system` to `4.4.5` --- package.json | 2 +- yarn.lock | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 714343c404c..c7c4d1c984f 100644 --- a/package.json +++ b/package.json @@ -53,7 +53,7 @@ }, "dependencies": { "@gorhom/bottom-sheet": "^4.1.5", - "@pagopa/io-app-design-system": "4.4.4", + "@pagopa/io-app-design-system": "4.4.5", "@pagopa/io-pagopa-commons": "^3.1.0", "@pagopa/io-react-native-cieid": "^0.3.5", "@pagopa/io-react-native-crypto": "^1.0.1", diff --git a/yarn.lock b/yarn.lock index 7442f96a80d..e243fec0170 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3670,9 +3670,9 @@ __metadata: languageName: node linkType: hard -"@pagopa/io-app-design-system@npm:4.4.4": - version: 4.4.4 - resolution: "@pagopa/io-app-design-system@npm:4.4.4" +"@pagopa/io-app-design-system@npm:4.4.5": + version: 4.4.5 + resolution: "@pagopa/io-app-design-system@npm:4.4.5" dependencies: "@testing-library/jest-native": ^5.4.2 "@types/react-test-renderer": ^18.0.0 @@ -3696,7 +3696,7 @@ __metadata: react-native-reanimated: "*" react-native-safe-area-context: "*" react-native-svg: "*" - checksum: c78affb36ef6958cc4abea19b63f189db20d140afb7022d3ef591d5497fcd49ded4b6bd5336039e42b974d84b3d51ad8fb12606d197bb1bad7dbb1f03be26766 + checksum: 504e563af2918e3305cdd070fd69863955b685697caf83bd98bcb6b613cc68cd2c0bc67d300e0d294e89449c65a33b7b0fd7c892e557c13f58e2c660ccda5529 languageName: node linkType: hard @@ -13557,7 +13557,7 @@ __metadata: "@babel/runtime": ^7.20.0 "@gorhom/bottom-sheet": ^4.1.5 "@jambit/eslint-plugin-typed-redux-saga": ^0.4.0 - "@pagopa/io-app-design-system": 4.4.4 + "@pagopa/io-app-design-system": 4.4.5 "@pagopa/io-pagopa-commons": ^3.1.0 "@pagopa/io-react-native-cieid": ^0.3.5 "@pagopa/io-react-native-crypto": ^1.0.1 From e3328a0c159a97e72f4a352469b6c1835c153daa Mon Sep 17 00:00:00 2001 From: Damiano Plebani Date: Tue, 14 Jan 2025 17:07:48 +0100 Subject: [PATCH 16/16] Update `jest` snapshot --- .../FimsHistoryHeaderComponent.test.tsx.snap | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ts/features/fims/history/components/__tests__/__snapshots__/FimsHistoryHeaderComponent.test.tsx.snap b/ts/features/fims/history/components/__tests__/__snapshots__/FimsHistoryHeaderComponent.test.tsx.snap index 27118ef7dc1..38ba75f5a23 100644 --- a/ts/features/fims/history/components/__tests__/__snapshots__/FimsHistoryHeaderComponent.test.tsx.snap +++ b/ts/features/fims/history/components/__tests__/__snapshots__/FimsHistoryHeaderComponent.test.tsx.snap @@ -336,9 +336,9 @@ exports[`FimsHistoryHeaderComponent should match snapshot 1`] = ` >