diff --git a/Sources/Mistica/Components/Button/Button.swift b/Sources/Mistica/Components/Button/Button.swift index a5897359..ec1ddfec 100644 --- a/Sources/Mistica/Components/Button/Button.swift +++ b/Sources/Mistica/Components/Button/Button.swift @@ -278,7 +278,6 @@ private extension Button { } func setUpView() { - layer.cornerCurve = .continuous layer.borderWidth = Constants.borderWidth isAccessibilityElement = true updateTraits() diff --git a/Sources/MisticaCommon/Radius/Extension/View+MisticaCornerRadius.swift b/Sources/MisticaCommon/Radius/Extension/View+MisticaCornerRadius.swift index 070f073d..f6d0d0c8 100644 --- a/Sources/MisticaCommon/Radius/Extension/View+MisticaCornerRadius.swift +++ b/Sources/MisticaCommon/Radius/Extension/View+MisticaCornerRadius.swift @@ -35,33 +35,33 @@ private struct CornerRadiusModifier: ViewModifier { .overlay(Capsule().stroke(borderColor, lineWidth: lineWidth)) case .button: content - .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.button, style: .continuous)) - .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.button, style: .continuous).stroke(borderColor, lineWidth: lineWidth)) + .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.button)) + .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.button).stroke(borderColor, lineWidth: lineWidth)) case .checkbox: content - .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.checkbox, style: .continuous)) - .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.checkbox, style: .continuous).stroke(borderColor, lineWidth: lineWidth)) + .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.checkbox)) + .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.checkbox).stroke(borderColor, lineWidth: lineWidth)) case .container: content - .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.container, style: .continuous)) - .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.container, style: .continuous).stroke(borderColor, lineWidth: lineWidth)) + .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.container)) + .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.container).stroke(borderColor, lineWidth: lineWidth)) case .input: content - .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.input, style: .continuous)) - .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.input, style: .continuous).stroke(borderColor, lineWidth: lineWidth)) + .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.input)) + .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.input).stroke(borderColor, lineWidth: lineWidth)) case .legacyDisplay: content - .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.legacyDisplay, style: .continuous)) - .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.legacyDisplay, style: .continuous).stroke(borderColor, lineWidth: lineWidth)) + .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.legacyDisplay)) + .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.legacyDisplay).stroke(borderColor, lineWidth: lineWidth)) case .popup: content - .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.popup, style: .continuous)) - .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.popup, style: .continuous).stroke(borderColor, lineWidth: lineWidth)) + .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.popup)) + .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.popup).stroke(borderColor, lineWidth: lineWidth)) case .sheet: content - .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.sheet, style: .continuous)) - .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.sheet, style: .continuous).stroke(borderColor, lineWidth: lineWidth)) + .clipShape(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.sheet)) + .overlay(RoundedRectangle(cornerRadius: MisticaConfig.currentCornerRadius.sheet).stroke(borderColor, lineWidth: lineWidth)) } } } diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.1.png index aeaa3949..7208a373 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.1.png index 39113ade..f91bd5bc 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.1.png index 575b433e..77c1de5e 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.1.png index becf8f37..57bd9435 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.1.png index db28e4e5..06f7c60a 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.1.png index ab95da34..6350d0ce 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.1.png index 497647d0..1ae20ca9 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.1.png index 034df98a..73a1e293 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.1.png index e34764f6..a9ad6c36 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.1.png index aa63282e..50aa9463 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testDismissButton.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testDismissButton.1.png index a50603b4..204ff7c5 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testDismissButton.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testDismissButton.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImage.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImage.1.png index 253a6665..130995c2 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImage.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImage.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImageAndDismiss.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImageAndDismiss.1.png index 686fd681..78152380 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImageAndDismiss.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testImageAndDismiss.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testLink.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testLink.1.png index c750508b..b4a30116 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testLink.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testLink.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoButtons.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoButtons.1.png index c8cc577c..a268ad3d 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoButtons.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoButtons.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoTitle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoTitle.1.png index 795e4fe4..ce57c445 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoTitle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testNoTitle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimary.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimary.1.png index cd106818..2fa0b002 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimary.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimary.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndLink.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndLink.1.png index d045c41c..40cec3a9 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndLink.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndLink.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondary.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondary.1.png index 7f1b8435..5685443a 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondary.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondary.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondary.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondary.1.png index ac154a44..b87ad797 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondary.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondary.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondaryAndLink.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondaryAndLink.1.png index 83f3b4ad..67b33457 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondaryAndLink.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CalloutTests/testSecondaryAndLink.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CheckboxTests/testUnselectedCheckbox.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CheckboxTests/testUnselectedCheckbox.1.png index 633f10ce..b6ad5113 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/CheckboxTests/testUnselectedCheckbox.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/CheckboxTests/testUnselectedCheckbox.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtonAndFragment.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtonAndFragment.1.png index 61860e6b..26a36c8a 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtonAndFragment.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtonAndFragment.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtons.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtons.1.png index a0489bb8..2729e2f1 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtons.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testButtons.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testDismissAction.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testDismissAction.1.png index 01d3875d..9350c0e0 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testDismissAction.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testDismissAction.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testFixedVerticalContentSize.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testFixedVerticalContentSize.1.png index 3c0432a1..6c800a55 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testFixedVerticalContentSize.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testFixedVerticalContentSize.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIcon.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIcon.1.png index f9718bf9..b3886e7a 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIcon.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIcon.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIconNoBackground.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIconNoBackground.1.png index 188fd382..c73b723b 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIconNoBackground.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testIconNoBackground.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testImage.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testImage.1.png index f52c247e..31a7bc53 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testImage.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testImage.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMinimumCard.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMinimumCard.1.png index a57d240b..136b3343 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMinimumCard.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMinimumCard.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMultipleline.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMultipleline.1.png index 14b0cbbd..19c02edd 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMultipleline.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testMultipleline.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testNonFixedVerticalContentSize.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testNonFixedVerticalContentSize.1.png index 4001ad6e..18f50025 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testNonFixedVerticalContentSize.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testNonFixedVerticalContentSize.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testSingleline.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testSingleline.1.png index 2b05b08c..91f6e02c 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testSingleline.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/DataCardTests/testSingleline.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testCardStyle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testCardStyle.1.png index f515411d..8955afc3 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testCardStyle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testCardStyle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testFullWidthAsset.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testFullWidthAsset.1.png index fee480eb..e07fcf5a 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testFullWidthAsset.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testFullWidthAsset.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testIconAsset.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testIconAsset.1.png index c547734f..53f21c84 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testIconAsset.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testIconAsset.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testImageAsset.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testImageAsset.1.png index 5599e33e..ac265b5c 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testImageAsset.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testImageAsset.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustPrimaryButton.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustPrimaryButton.1.png index 0751e20d..ea86b6b0 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustPrimaryButton.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustPrimaryButton.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustSecondaryButton.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustSecondaryButton.1.png index 624a11f5..8d89417c 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustSecondaryButton.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testJustSecondaryButton.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testLargeText.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testLargeText.1.png index 6610c1e3..330fb7ab 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testLargeText.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testLargeText.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testNoDescription.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testNoDescription.1.png index c984e6bd..f67f503b 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testNoDescription.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/EmptyStateTests/testNoDescription.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContent.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContent.1.png index c0f85359..00b6256f 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContent.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContent.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContentAndReference.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContentAndReference.1.png index c0f85359..00b6256f 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContentAndReference.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testContentAndReference.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testError.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testError.1.png index 778cefd3..4cb73a86 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testError.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testError.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testErrorReference.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testErrorReference.1.png index e497383c..16d3c481 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testErrorReference.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testErrorReference.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testFeedback.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testFeedback.1.png index bd1385f1..bc07485c 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testFeedback.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testFeedback.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testInformative.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testInformative.1.png index ca03e550..52bf98f7 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testInformative.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testInformative.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testLinkButton.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testLinkButton.1.png index a16b59f2..2813364e 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testLinkButton.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testLinkButton.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testMultiline.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testMultiline.1.png index 273afce5..f92d285c 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testMultiline.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testMultiline.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSecondaryButton.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSecondaryButton.1.png index ef0cecba..16a33511 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSecondaryButton.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSecondaryButton.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSuccess.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSuccess.1.png index 65d8ee17..30532e1f 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSuccess.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/FeedbackTests/testSuccess.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDate.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDate.1.png index b7f25580..0aa02fae 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDate.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDate.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDropdown.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDropdown.1.png index ae889da8..b1baea48 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDropdown.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testDropdown.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongAssistiveText.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongAssistiveText.1.png index 764a4d36..a7113634 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongAssistiveText.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongAssistiveText.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongPlaceholder.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongPlaceholder.1.png index 7fcc638a..4b9224c0 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongPlaceholder.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongPlaceholder.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongText.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongText.1.png index 3417e9e0..d3cf70dd 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongText.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testLongText.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testPhone.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testPhone.1.png index 1a3ee778..4197349c 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testPhone.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testPhone.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSearch.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSearch.1.png index 7069533e..8e324d26 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSearch.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSearch.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSecure.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSecure.1.png index 1a28c1b6..ac1af365 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSecure.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testSecure.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testText.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testText.1.png index 226c3489..7d0af88d 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testText.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/InputFieldTests/testText.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testBoxedRowContent.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testBoxedRowContent.1.png index b6cd5f5d..8813e0f4 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testBoxedRowContent.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testBoxedRowContent.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testLargeTextInBoxedContent.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testLargeTextInBoxedContent.1.png index bcdee362..b46b509a 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testLargeTextInBoxedContent.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/ListTests/testLargeTextInBoxedContent.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testError.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testError.1.png index 6f124b5f..e3542aaf 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testError.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testError.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeButton.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeButton.1.png index 433dba39..3479307f 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeButton.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeButton.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeTitle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeTitle.1.png index b346901c..1a59022f 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeTitle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testLargeTitle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitle.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitle.1.png index 717d415f..5dbafd27 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitle.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitle.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitleAndAction.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitleAndAction.1.png index 393a1f15..4bf93c94 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitleAndAction.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/SnackbarTests/testTitleAndAction.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepFourOfFourSteps.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepFourOfFourSteps.1.png index 3714db7e..7aef271d 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepFourOfFourSteps.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepFourOfFourSteps.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepOneOfFourSteps.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepOneOfFourSteps.1.png index 58e5e340..847cc5a0 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepOneOfFourSteps.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepOneOfFourSteps.1.png differ diff --git a/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepZeroOfFourSteps.1.png b/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepZeroOfFourSteps.1.png index 33dde56e..55b0d559 100644 Binary files a/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepZeroOfFourSteps.1.png and b/Tests/MisticaSwiftUITests/UI/__Snapshots__/StepperTests/testStepZeroOfFourSteps.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.assertInitialState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.assertInitialState.png index 380f56fa..fa790f43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.assertInitialState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.assertInitialState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.finalState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.finalState.png index 380f56fa..fa790f43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.finalState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testDisableAndEnableBacksToNormal.finalState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testLoadingTextIsAlwaysSingleLine.1.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testLoadingTextIsAlwaysSingleLine.1.png index 81f2d367..275b4c4b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testLoadingTextIsAlwaysSingleLine.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testLoadingTextIsAlwaysSingleLine.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testMinimumWidth.1.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testMinimumWidth.1.png index b414268f..939124d0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testMinimumWidth.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testMinimumWidth.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-dark-style.png index 35956c66..d3bb39f3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-style.png index 583cac81..e2321620 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-dark-style.png index 92b3de93..507f14cb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-style.png index 2ac17d39..5de221e1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-dark-style.png index 759e30fc..27301778 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-style.png index 99acb26b..0bae015c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-dark-style.png index 628d9acb..61070669 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-style.png index aceea5ed..9fcfdd36 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-dark-style.png index 1a84ef2d..c3b1e111 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-style.png index 64ddfea9..1f8d4817 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-dark-style.png index 54bc2ba2..7abbbded 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-style.png index 10d195c8..15069457 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithDangerStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-dark-style.png index 7537e594..e1ad1656 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-style.png index 048e51a6..754701e2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-dark-style.png index 36bd4731..fecaf0a0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-style.png index 2850a836..6428b407 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-dark-style.png index 56d76d4a..9805949e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-style.png index bef43ba1..13e0e728 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-dark-style.png index 9c36f217..6663a6a1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-style.png index 825c134a..4e40bebd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-dark-style.png index 972faeb0..df9f348f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-style.png index 42d9e426..e9fa4db2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-dark-style.png index f4cd0195..da91ad5b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-style.png index 3e46ac88..c5c918c4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png index 9eaba76d..8d0c676a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-style.png index 45741ddd..6d1cc7b1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png index d6354694..d59f3f78 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-style.png index b438c5bb..e23c0b35 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png index 3b8a989a..b17b681a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-style.png index b3b60966..32e89abb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png index 3000b983..e3e5281c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png index 4e89b679..24e7668c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png index 2d9e1bcd..38aac6e4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-style.png index 3c76bdfe..a516906c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png index 123d6a71..90997d5c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png index b970e3d2..8bf39381 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-dark-style.png index 7537e594..e1ad1656 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-style.png index a7ee9f75..b6300046 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-dark-style.png index 36bd4731..fecaf0a0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-style.png index 9861d659..93b2970f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-dark-style.png index 56d76d4a..9805949e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-style.png index a7bdf9e1..2f4a6087 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-dark-style.png index 9c36f217..6663a6a1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-style.png index 717dd0ff..599ccbd0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-dark-style.png index 972faeb0..df9f348f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-style.png index 4b7f1135..1a023207 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-dark-style.png index f4cd0195..da91ad5b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-style.png index dbd89ec4..31d6d9b3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-dark-style.png index 9eaba76d..8d0c676a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-style.png index 33b07c24..0f7f1ab7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-dark-style.png index d6354694..d59f3f78 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-style.png index a6bc1e26..a86770f7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-dark-style.png index 3b8a989a..b17b681a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-style.png index 33bd2ba4..5e2a3d46 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png index 3000b983..e3e5281c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-style.png index 63ecebfc..b9fe6a29 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-dark-style.png index 2d9e1bcd..38aac6e4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-style.png index f3cad65a..0cc47e25 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png index 123d6a71..90997d5c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-style.png index 06c119c9..ee42f65a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithLinkWithChevronStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-dark-style.png index 8963b890..c096e6ec 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-style.png index bc3ad4c2..d9ab2b03 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-dark-style.png index fb75f8f3..47a3f769 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-style.png index 9e2bafed..aa59609b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-dark-style.png index a69aec00..1785c857 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-style.png index 595d237c..e7893e32 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png index 63e02fd9..713ab1d3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-style.png index 6bebaa21..e4a06cca 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-dark-style.png index 6f2dc571..f0ea738d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-style.png index 9c1800e1..1fcafe98 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png index 24bb698d..757f3c9f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-style.png index 93a5b749..82a94b9e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryInverseStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-dark-style.png index 5335a57b..74262339 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-style.png index 9a5eb09b..84cb7027 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-dark-style.png index fb75f8f3..47a3f769 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-style.png index 5301024d..dda25f3a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-dark-style.png index a69aec00..1785c857 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-style.png index 9f8586a8..6891fc80 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-dark-style.png index 63e02fd9..713ab1d3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-style.png index 4e701eab..224a3b37 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-dark-style.png index 6f2dc571..f0ea738d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-style.png index a4c2bf41..ab8a4310 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-dark-style.png index 24bb698d..757f3c9f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-style.png index 4f4c1688..0a38294e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithPrimaryStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-dark-style.png index 54bb7e62..a7880fdd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-style.png index f90764e3..75daa570 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-dark-style.png index 721e8ade..1a41b0bc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-style.png index f90764e3..75daa570 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-dark-style.png index fe089dd7..6b54e95f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-style.png index cef4c826..03f8fd57 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png index e000d6d6..9220611b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-style.png index c83d121c..3a6ab5f7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-dark-style.png index fe089dd7..6b54e95f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-style.png index f90764e3..75daa570 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png index f5985273..368932f9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-style.png index 7deedb08..7546d1b9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryInverseStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-dark-style.png index 241330d9..8acb7c6e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-style.png index 25227bc0..53d65253 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-dark-style.png index 75bddc44..2e69be6e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-style.png index 6b1d84fa..b124aeaf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-dark-style.png index 99617acb..87d1ced3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-style.png index 509a6247..01d0ae91 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-dark-style.png index 43fad70f..4bc39a55 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-style.png index 2cf8e7ba..cabb9c36 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-dark-style.png index 99617acb..87d1ced3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-style.png index 9e6065f8..c7993cad 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-dark-style.png index 3f5ce66e..53826b5e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-style.png index 8a2c7e29..ec6f7b14 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testRegularSizeWithSecondaryStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.assertInitialState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.assertInitialState.png index 380f56fa..fa790f43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.assertInitialState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.assertInitialState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.finalState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.finalState.png index 380f56fa..fa790f43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.finalState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSelectAndDeselectBacksToNormal.finalState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.assertInitialState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.assertInitialState.png index 7fa84111..bcf7693e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.assertInitialState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.assertInitialState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.finalState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.finalState.png index aca0cf21..35fb5c51 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.finalState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testShowLoadingLabel.finalState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-dark-style.png index 53b9f011..82c277fc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-style.png index bc2d6b0b..fccab0d9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-dark-style.png index c4bb85d2..2a46d3d6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-style.png index f25a5cad..2d9714e9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-dark-style.png index bd77466c..e0db8570 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-style.png index ec1f77e6..25ce7476 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-dark-style.png index 0b49932a..b79e1a5e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-style.png index b5169e96..caa3c9dd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-dark-style.png index 3eeaf475..a4e492d7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-style.png index 6d7abf04..bae71c42 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-dark-style.png index 751144b0..0a887efc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-style.png index 2427300a..189f7169 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithDangerStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-dark-style.png index 7537e594..e1ad1656 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-style.png index 048e51a6..754701e2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-dark-style.png index 36bd4731..fecaf0a0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-style.png index 2850a836..6428b407 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-dark-style.png index 56d76d4a..9805949e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-style.png index bef43ba1..13e0e728 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-dark-style.png index 9c36f217..6663a6a1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-style.png index 825c134a..4e40bebd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-dark-style.png index 972faeb0..df9f348f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-style.png index 42d9e426..e9fa4db2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-dark-style.png index f4cd0195..da91ad5b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-style.png index 3e46ac88..c5c918c4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png index 9eaba76d..8d0c676a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-style.png index 45741ddd..6d1cc7b1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png index d6354694..d59f3f78 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-style.png index b438c5bb..e23c0b35 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png index 3b8a989a..b17b681a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-style.png index b3b60966..32e89abb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png index 3000b983..e3e5281c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png index 4e89b679..24e7668c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png index 2d9e1bcd..38aac6e4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-style.png index 3c76bdfe..a516906c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png index 123d6a71..90997d5c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png index b970e3d2..8bf39381 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkInverseWithChevronStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-dark-style.png index 7537e594..e1ad1656 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-style.png index a7ee9f75..b6300046 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-dark-style.png index 36bd4731..fecaf0a0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-style.png index 9861d659..93b2970f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-dark-style.png index 56d76d4a..9805949e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-style.png index a7bdf9e1..2f4a6087 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-dark-style.png index 9c36f217..6663a6a1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-style.png index 717dd0ff..599ccbd0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-dark-style.png index 972faeb0..df9f348f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-style.png index 4b7f1135..1a023207 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-dark-style.png index f4cd0195..da91ad5b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-style.png index dbd89ec4..31d6d9b3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-dark-style.png index 9eaba76d..8d0c676a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-style.png index 33b07c24..0f7f1ab7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-dark-style.png index d6354694..d59f3f78 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-style.png index a6bc1e26..a86770f7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-dark-style.png index 3b8a989a..b17b681a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-style.png index 33bd2ba4..5e2a3d46 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png index 3000b983..e3e5281c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-style.png index 63ecebfc..b9fe6a29 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-dark-style.png index 2d9e1bcd..38aac6e4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-style.png index f3cad65a..0cc47e25 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png index 123d6a71..90997d5c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-style.png index 06c119c9..ee42f65a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithLinkWithChevronStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-dark-style.png index 43975cc8..b0844f71 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-style.png index b98c1626..1e607d2e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-dark-style.png index 12e056b9..6be11d40 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-style.png index a0c76c2a..3ab59838 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-dark-style.png index 6bb359ba..2670e50f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-style.png index 546f88d7..ddac4b66 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png index d6d8fc1c..5333f470 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-style.png index b034c49a..2f7c6aa2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-dark-style.png index e5ef64e5..1ce3bbd5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-style.png index 8a402f0a..c7ad9074 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png index 1a31f469..3b9f31f8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-style.png index cde7d40a..ec11b784 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryInverseStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-dark-style.png index 2cf35fe2..b6299a1e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-style.png index 0bf5d320..98a0723d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-dark-style.png index 12e056b9..6be11d40 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-style.png index bf165e50..8e59f8fb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-dark-style.png index 6bb359ba..2670e50f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-style.png index a249bfe3..02d62813 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-dark-style.png index d6d8fc1c..5333f470 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-style.png index ef0ef055..eb30bf7c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-dark-style.png index e5ef64e5..1ce3bbd5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-style.png index 4e857a80..70e2f476 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-dark-style.png index 1a31f469..3b9f31f8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-style.png index 951b1fd3..4475afd2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithPrimaryStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-dark-style.png index 05375a52..34ef8a65 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-style.png index c2ed744e..67abaf1f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-dark-style.png index c9583393..f43e4427 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-style.png index c2ed744e..67abaf1f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-dark-style.png index 9840001e..1e18d0d5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-style.png index fcfbd8c7..4b02128b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png index 0010d2af..6c577963 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-style.png index 783791b8..a5086191 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-dark-style.png index 9840001e..1e18d0d5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-style.png index c2ed744e..67abaf1f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png index a3fec712..5c232aaf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-style.png index a63a8b85..fe89a76e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryInverseStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-dark-style.png index ff58d38c..0568dfc6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-style.png index 91795640..71e52fef 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-dark-style.png index 0df9c427..d9ca6cc2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-style.png index 714b3d40..4eb96dd0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-dark-style.png index e07b367b..3cd7ef2d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-style.png index 19527170..8818c0bd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-dark-style.png index 66b36d3c..0c711192 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-style.png index 80e24bb0..e523ba5c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-dark-style.png index e07b367b..3cd7ef2d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-style.png index 6a19a7e3..d80a8ae3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-dark-style.png index 8e7aa538..84176d50 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-style.png index e1a82bf8..108c3818 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testSmallSizeWithSecondaryStyle.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.assertInitialState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.assertInitialState.png index 380f56fa..fa790f43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.assertInitialState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.assertInitialState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.finalState.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.finalState.png index 380f56fa..fa790f43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.finalState.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testStartAndStopLoadingBacksToNormal.finalState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testTextIsAlwaysSingleLine.1.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testTextIsAlwaysSingleLine.1.png index ae68dc85..951a73ca 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testTextIsAlwaysSingleLine.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testTextIsAlwaysSingleLine.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testXIBIntegration.1.png b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testXIBIntegration.1.png index 2c45a2d0..bd26c5b4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testXIBIntegration.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ButtonTests/testXIBIntegration.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContent.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContent.1.png index 7642bdaa..7d8d63ee 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContent.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContent.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutIcon.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutIcon.1.png index 65a1a83f..b8944f51 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutIcon.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutIcon.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutTitle.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutTitle.1.png index 4a73290a..48254008 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutTitle.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testFullContentWithoutTitle.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnly.1.png index 7642bdaa..7d8d63ee 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnlyWithoutAsset.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnlyWithoutAsset.1.png index 65a1a83f..b8944f51 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnlyWithoutAsset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndLinkButtonsOnlyWithoutAsset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnly.1.png index 6dd3a915..31551084 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnlyWithoutAsset.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnlyWithoutAsset.1.png index 69b8b63e..fa39f0e4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnlyWithoutAsset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryAndSecondaryButtonsOnlyWithoutAsset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnly.1.png index 9fa96527..69f0c622 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnlyWithoutAsset.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnlyWithoutAsset.1.png index 01767df4..ec72760e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnlyWithoutAsset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testPrimaryButtonOnlyWithoutAsset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnly.1.png index 7dabeb7f..9160f0de 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnlyWithoutAsset.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnlyWithoutAsset.1.png index 1861d035..dd934f87 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnlyWithoutAsset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryAndLinkButtonsOnlyWithoutAsset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnly.1.png index 88df6a56..c44c1bf0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnlyWithoutAsset.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnlyWithoutAsset.1.png index e088aae4..6bd90700 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnlyWithoutAsset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testSecondaryButtonOnlyWithoutAsset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowAsset.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowAsset.1.png index b855b519..7f2241e5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowAsset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowAsset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowLoadingStateForButtons.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowLoadingStateForButtons.1.png index e4892490..7952efe4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowLoadingStateForButtons.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testShowLoadingStateForButtons.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testXIBIntegration.1.png b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testXIBIntegration.1.png index 601579fc..c8683bf3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testXIBIntegration.1.png and b/Tests/MisticaTests/UI/__Snapshots__/CalloutTests/testXIBIntegration.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContent.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContent.1.png index 0ef5e521..87772b9c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContent.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContent.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutFragment.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutFragment.1.png index fef28308..b678dc3a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutFragment.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutFragment.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutHeadline.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutHeadline.1.png index 6d5498f9..f707966e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutHeadline.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutHeadline.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutIcon.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutIcon.1.png index 6b0d0c25..a4367791 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutIcon.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutIcon.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutSubtitle.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutSubtitle.1.png index 0c9d087d..9ed274c7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutSubtitle.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testFullContentWithoutSubtitle.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryAndLinkButtons.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryAndLinkButtons.1.png index b1978070..53bfa731 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryAndLinkButtons.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryAndLinkButtons.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryButtonsOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryButtonsOnly.1.png index 19fbeb96..d7585d7e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryButtonsOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testPrimaryButtonsOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeIcon.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeIcon.1.png index d7114547..fba20be6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeIcon.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeIcon.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeImage.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeImage.1.png index 75b3db1e..f5405f2d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeImage.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowAssetOfTypeImage.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowLoadingStateForButtons.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowLoadingStateForButtons.1.png index 82471a91..fd3447b7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowLoadingStateForButtons.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testShowLoadingStateForButtons.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testTextsWithMultiLine.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testTextsWithMultiLine.1.png index 762edad7..1e5cd171 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testTextsWithMultiLine.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testTextsWithMultiLine.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testXIBIntegration.1.png b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testXIBIntegration.1.png index bd2ff0ba..0b2cbce1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testXIBIntegration.1.png and b/Tests/MisticaTests/UI/__Snapshots__/DataCardTests/testXIBIntegration.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentAsACard.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentAsACard.1.png index 0fc8aaaf..9049587a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentAsACard.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentAsACard.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentWithoutDescription.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentWithoutDescription.1.png index 58392db1..dee2ab06 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentWithoutDescription.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testFullContentWithoutDescription.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnly.1.png index 12ae71e4..a2cd38df 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnlyAsACard.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnlyAsACard.1.png index 12ae71e4..a2cd38df 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnlyAsACard.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryAndLinkButtonsOnlyAsACard.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryButtonOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryButtonOnly.1.png index a2927767..081a3ff2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryButtonOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testPrimaryButtonOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnly.1.png index a025f5e4..727eb692 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnlyAsACard.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnlyAsACard.1.png index 4105189e..f1b89a28 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnlyAsACard.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryAndLinkButtonsOnlyAsACard.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnly.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnly.1.png index b0f13572..0f85a6fa 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnly.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnly.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnlyAsACard.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnlyAsACard.1.png index 67ea8a1a..b02d41d3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnlyAsACard.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testSecondaryButtonOnlyAsACard.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowActions.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowActions.1.png index a2927767..081a3ff2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowActions.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowActions.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowLoadingStateForButtons.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowLoadingStateForButtons.1.png index ba49cf47..24b3e8fb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowLoadingStateForButtons.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testShowLoadingStateForButtons.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testXIBIntegration.1.png b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testXIBIntegration.1.png index 8c37c67b..65e2d538 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testXIBIntegration.1.png and b/Tests/MisticaTests/UI/__Snapshots__/EmptyStatesTests/testXIBIntegration.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-dark-style.png index cc4d62c8..39a099b3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-style.png index d1668a3b..ac8e0f63 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-dark-style.png index 152bea38..95918dac 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-style.png index f14a14c8..18c8934f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-dark-style.png index 7e08cc5f..f099096d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-style.png index 4f8a86e2..83b0f398 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-dark-style.png index a07b404c..a719bdbf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-style.png index f78bf640..fb7451a4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-dark-style.png index ed924495..f6deaded 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-style.png index e81acab5..4413d93d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-dark-style.png index 44612205..f998c85a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-style.png index 2e17f087..5a54287e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithButtons.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-dark-style.png index 73048cdc..d760f82f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-style.png index d16c13a5..50ddf319 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-dark-style.png index 38ed00d1..6957e862 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-style.png index fb38090d..bed26bd8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-dark-style.png index bb19b1b8..eafd7c97 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-style.png index 8b533668..129a4b43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-dark-style.png index efb0d486..ca952944 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-style.png index 063d5669..ac49c08f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-dark-style.png index 251a635d..38410e18 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-style.png index 08809de7..1906b0fe 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-dark-style.png index 338a1954..1234cb5d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-style.png index 8971b6dc..068720f6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorMultilineScrollWithErrorReference.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-dark-style.png index b8a3e62f..82b5d3ce 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-style.png index c4db2c75..350e36d8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-dark-style.png index 979c2652..0c28434a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-style.png index c186b909..b17a0737 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-dark-style.png index eb5f8c1f..12db3866 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-style.png index 2d8ff011..80481a02 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-dark-style.png index 868520e9..d097eb98 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-style.png index 8f48f49f..e0abcef8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-dark-style.png index 8a681f09..40e5f3c2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-style.png index a42064b7..9abd5743 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-dark-style.png index 5724ec80..00d0bd88 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-style.png index a00d35b4..eadddf38 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryAndSecondaryButtonLink.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-dark-style.png index 77b6cd4a..af7f0a11 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-style.png index 077d1a21..f36257e7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-dark-style.png index df62f7d7..d09742ef 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-style.png index d6015b09..b47a82b0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-dark-style.png index 47fdc6b6..be72d4bc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-style.png index be047003..6a835273 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-dark-style.png index 6f6397e6..50024a4e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-style.png index 79189429..9f0093bd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-dark-style.png index ebc3874a..2dc55c1e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-style.png index 4d804119..ef5e2ac9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-dark-style.png index 40e68bb5..e02f214c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-style.png index 7b8c531f..a6197bdb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorPrimaryRetryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-dark-style.png index 3ce68267..984f0aa7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-style.png index f92d73c3..bdde281e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-dark-style.png index 870f912f..c46d8011 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-style.png index c5b5e6f8..1df01417 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-dark-style.png index eab7b51d..5edb65b3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-style.png index 184f382b..790c12b0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-dark-style.png index 2928e637..2292b3b8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-style.png index 8022da14..ca1bd56d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-dark-style.png index 15b80b9b..63827daf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-style.png index ace75950..b066e50f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-dark-style.png index 8b3993e7..a62c19a5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-style.png index cf1c2627..e9f9f43b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testErrorSecondaryPrimaryButtonCustomView.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-dark-style.png index c7ab329a..d5c1dc9c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-style.png index e98de21b..dc40c921 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-dark-style.png index 49179f35..d3880e61 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-style.png index 226d76ce..ad9b0aba 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-dark-style.png index 5f7c44b3..bc154b76 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-style.png index bf2e2e3e..1d3398d6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-dark-style.png index 036f4e6b..728e03ea 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-style.png index 69d1671f..aa19cdee 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-dark-style.png index e527870e..8b27a45a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-style.png index 7370f46e..a202fe1f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-dark-style.png index aa86d51f..41d00b17 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-style.png index 3c865df1..d46ea606 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryAndSecondaryButtonLink.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-dark-style.png index cc6bb5f5..cea1229a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-style.png index e2494d70..7e8a0058 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-dark-style.png index 7946e505..53b34973 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-style.png index 081ba512..4ca7ada1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-dark-style.png index 155ab4e8..59940401 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-style.png index 71361e3f..654990ec 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-dark-style.png index 65348fac..f97cf126 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-style.png index 33bacc5b..eb9de765 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-dark-style.png index b21a0809..1c6ec69e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-style.png index f875fae9..9b9d847c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-dark-style.png index 2da919b1..7c13ddcc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-style.png index 6c5dd347..2fa81333 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testInformativePrimaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-dark-style.png index b2eab42d..e517c8e3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-style.png index 1160cda3..ea943e73 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-dark-style.png index 073db66c..503d1a8d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-style.png index 952b35ab..2228255b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-dark-style.png index 1be60d16..908563bd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-style.png index fd3f5f70..5001fdf9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-dark-style.png index 0ed09549..4196a796 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-style.png index 89b5de62..95221e92 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-dark-style.png index c1d9a34d..a89dd647 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-style.png index ad7a9dbd..db8ce0e9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-dark-style.png index fecf8be6..8e402288 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-style.png index 9f27791c..3376cb29 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-dark-style.png index 6dbc1998..dd65114b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-style.png index 8fe614d5..544f0b3e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-dark-style.png index 8b171bd1..6a96c5b1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-style.png index 9b6b8def..ba5c9fd3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-dark-style.png index 2e355799..ef2111fb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-style.png index f2a10acb..b9d45109 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-dark-style.png index 2f01dddc..578f3623 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-style.png index 213015fa..4cfdab30 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-dark-style.png index 320d2cc9..8336e917 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-style.png index 87a32e07..366957a3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-dark-style.png index 1c7383b6..29994685 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-style.png index 2953a61d..54a721f9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryAndSecondaryButtonLinkCustomView.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-dark-style.png index d745ae09..72ff1c95 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-style.png index cb3cf618..d9667193 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-dark-style.png index be85832c..83bb2a19 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-style.png index 807c50bf..da8612f5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-dark-style.png index 850c25bc..9099b9d0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-style.png index f6077f49..c2d78328 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-dark-style.png index e6b9dae4..dd5c1fac 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-style.png index af4889e3..56f86092 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-dark-style.png index acb23534..e164f4c1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-style.png index c7c505ef..86d0d142 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-dark-style.png index 0f6cf6f2..b09ebe98 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-style.png index 89538119..86b3dad9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessPrimaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-dark-style.png index ae122361..f10b019c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-style.png index 20e72f60..c1271209 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-dark-style.png index 2a6d2c35..1c0cac43 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-style.png index 3db64374..e2f990e1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-dark-style.png index 7e362b87..c7945859 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-style.png index 083f5d06..eab22f9a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-dark-style.png index 701c9e43..a904917f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-style.png index 264a5e89..8a3835cc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-dark-style.png index 858aac28..b9a1cd35 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-style.png index ad268a4a..49c84623 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-dark-style.png index a6accf43..b39af3d7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-style.png index 928d6087..b2534f53 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FeedbackTests/testSuccessSecondaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.assertInitialState.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.assertInitialState.png index eacbe285..e731a8e7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.assertInitialState.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.assertInitialState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.finalState.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.finalState.png index dde643ca..2caf5a0c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.finalState.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testAddInputField.finalState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-dark-style.png index c4fcc083..5486d2cf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-style.png index 25c732a2..cdb58b71 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-dark-style.png index f6288a3f..c3f396ca 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-style.png index 32783307..ae9b5f41 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-dark-style.png index dc5c4ce9..0eb752dc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-style.png index 6a95fbf3..2745b059 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-dark-style.png index 421b99e1..6c876d6a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-style.png index 54a4e350..4da4dc76 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-dark-style.png index 25a4a27b..09732c51 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-style.png index 9e7df1e7..8646aad1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-dark-style.png index 84f13815..415c31d1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-style.png index a5ae5d96..cae6320e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonDisabledAndFooter.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-dark-style.png index ba16ebee..d1bfb71a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-style.png index 14021c48..d6d0f0de 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-dark-style.png index 8910520a..38ba62dd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-style.png index 8f45d06a..a63b2899 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-dark-style.png index c07bd4c5..b0a7902c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-style.png index 161c5944..cd8ea77b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-dark-style.png index 35383799..094d7439 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-style.png index c316d416..7fa0de0f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-dark-style.png index c3dfd5f9..197bf86c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-style.png index 8c500858..5e33bbc8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-dark-style.png index a5eb250d..bb67622a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-style.png index 371f7826..65960451 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testHeaderAndButtonEnabledAndFooter.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testOnlyOneInputField.1.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testOnlyOneInputField.1.png index 81010869..102ce6f0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testOnlyOneInputField.1.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testOnlyOneInputField.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.assertInitialState.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.assertInitialState.png index 5ec2c30d..90409a63 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.assertInitialState.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.assertInitialState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.finalState.png b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.finalState.png index bc784a21..4d462fa3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.finalState.png and b/Tests/MisticaTests/UI/__Snapshots__/FormTests/testRemoveInputField.finalState.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testBackgroundImage.1.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testBackgroundImage.1.png index 3a85e298..0cac1072 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testBackgroundImage.1.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testBackgroundImage.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-dark-style.png index 0f15c562..bf62faa5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-style.png index c74f2acb..8ce11009 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-dark-style.png index 013c295a..8f33bba9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-style.png index 772586ee..ed956295 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-dark-style.png index 3ae505eb..6065c24a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-style.png index 2b672bc2..927b45cc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-dark-style.png index dd0ef40c..b3747bd7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-style.png index 89397c40..a0de05ee 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-dark-style.png index f5fac7ed..ef77b334 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-style.png index 91d5ebe4..ec37ec6f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-dark-style.png index 292515b5..80a80f9c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-style.png index 3a3876fc..dc8a79c3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndPrimaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-dark-style.png index 399d6e74..42b91eb4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-style.png index b4d28f61..20d8e8d5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-dark-style.png index fb578680..9d207cf6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-style.png index 3300bd3f..d12a4c07 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-dark-style.png index 2d8cff02..b4c76a8e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-style.png index 476a3e67..499111fd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-dark-style.png index 4e396636..9a9b8dbb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-style.png index 3b479ef6..3dfa6096 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-dark-style.png index 2d8cff02..b4c76a8e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-style.png index bbf9cedd..364fbb5f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-dark-style.png index 4175a3de..d5357e68 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-style.png index c5aaa4e6..6050b075 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testInverseStyleAndSecondaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-dark-style.png index 6f2f8c96..4a914823 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-style.png index 16529aaa..99631fb2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-dark-style.png index b731a293..7454d1b1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-style.png index b9b255e8..4dac28d9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-dark-style.png index d85a6ff8..bffd10db 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-style.png index 6a454b9c..438ff543 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-dark-style.png index 17807c13..bb194035 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-style.png index b5e5ae74..8c49866a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-dark-style.png index 0074cf63..d6f8a317 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-style.png index 042832c6..de54cd0e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-dark-style.png index f0282782..4d4203e2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-style.png index 34e61b08..ec6cd738 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndPrimaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-dark-style.png index bb1142c5..1d726d82 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-style.png index ec71c8e6..73604535 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-dark-style.png index 8212540f..5d24627f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-style.png index 5ca3c115..cfd163b7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-dark-style.png index bc809f46..0e7da25d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-style.png index 190a5783..e6e4da10 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-dark-style.png index 21ec7d16..f6f69e7f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-style.png index fbbd497c..5b1c0705 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-dark-style.png index bc809f46..0e7da25d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-style.png index 9a7d09b2..8431b4da 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-dark-style.png index a021b7ce..be179d56 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-style.png index 72df37bc..17b07376 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testNormalStyleAndSecondaryButton.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButton.1.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButton.1.png index cc83ce60..d4fb6e1b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButton.1.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButton.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndBackgroundImage.1.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndBackgroundImage.1.png index 0b960d5b..eef84e93 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndBackgroundImage.1.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndBackgroundImage.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndRightImage.1.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndRightImage.1.png index c7061a3b..d99541b7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndRightImage.1.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testWithCloseButtonAndRightImage.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testXIBIntegration.1.png b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testXIBIntegration.1.png index 42a70853..7aaf46e2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testXIBIntegration.1.png and b/Tests/MisticaTests/UI/__Snapshots__/HighlightedCardTests/testXIBIntegration.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedInverseStyleMoreThanOneRow.1.png b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedInverseStyleMoreThanOneRow.1.png index ff298c5e..1439250e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedInverseStyleMoreThanOneRow.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedInverseStyleMoreThanOneRow.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedStyleMoreThanOneRow.1.png b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedStyleMoreThanOneRow.1.png index 15cdd220..045ac681 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedStyleMoreThanOneRow.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testAllLabelsAndVerticallyPresetAndBoxedStyleMoreThanOneRow.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPreset.1.png b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPreset.1.png index c4579e0a..c5864004 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPreset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPreset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPresetMoreThanOne.1.png b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPresetMoreThanOne.1.png index dc36b612..a302e8fd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPresetMoreThanOne.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithAllLabelsAndVerticallyCenteredPresetMoreThanOne.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithTitleAndVerticallyCenteredPreset.1.png b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithTitleAndVerticallyCenteredPreset.1.png index e201e6bf..952f2da1 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithTitleAndVerticallyCenteredPreset.1.png and b/Tests/MisticaTests/UI/__Snapshots__/ListsTests/testCellWithTitleAndVerticallyCenteredPreset.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testEmptyDescriptionAction.1.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testEmptyDescriptionAction.1.png index 985bdd8b..8f781b30 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testEmptyDescriptionAction.1.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testEmptyDescriptionAction.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testNoTitle.1.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testNoTitle.1.png index 89b33dd1..2c90beaf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testNoTitle.1.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testNoTitle.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-dark-style.png index 60692789..0de2d3bf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-style.png index 1cd84ca5..8ef8a889 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-dark-style.png index 2d31b7ca..137e4d9c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-style.png index e96c27e4..5eb70aa2 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-dark-style.png index 07c37cce..e4ed12b9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-style.png index a27e62fd..10cf5f26 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-dark-style.png index ce0bc3b7..0bd1907a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-style.png index 0d289a59..a991141b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-dark-style.png index 07c37cce..e4ed12b9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-style.png index ec1a1102..4f3ee312 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-dark-style.png index b287e681..cb1abf81 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-style.png index 040d99ed..b1e4f9e9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/LoadErrorViewControllerTests/testStyles.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContent.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContent.1.png index 3d31f0ed..c5614bee 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContent.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContent.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutFragment.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutFragment.1.png index ed5dd164..07fea70e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutFragment.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutFragment.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutHeadline.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutHeadline.1.png index f61e6643..f551bf6f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutHeadline.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutHeadline.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutPretitle.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutPretitle.1.png index affa3cb1..fe0d53a7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutPretitle.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutPretitle.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutTitle.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutTitle.1.png index 78674805..0b445122 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutTitle.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testFullContentWithoutTitle.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testPrimaryAndLinkButtons.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testPrimaryAndLinkButtons.1.png index 91b5b74c..39e0bd19 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testPrimaryAndLinkButtons.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testPrimaryAndLinkButtons.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testShowLoadingStateForButtons.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testShowLoadingStateForButtons.1.png index 44909292..359f79da 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testShowLoadingStateForButtons.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testShowLoadingStateForButtons.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testTextsWithMultiLine.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testTextsWithMultiLine.1.png index e189a44c..8eaa5e81 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testTextsWithMultiLine.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testTextsWithMultiLine.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testXIBIntegration.1.png b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testXIBIntegration.1.png index b23c8074..6bfef0b3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testXIBIntegration.1.png and b/Tests/MisticaTests/UI/__Snapshots__/MediaCardTests/testXIBIntegration.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActions.1.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActions.1.png index 9a25b43f..3da2557a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActions.1.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActions.1.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testSingleAction.1.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testSingleAction.1.png index d8afdd4b..f7f9d5af 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testSingleAction.1.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testSingleAction.1.png differ