diff --git a/Demo/Demo.xcodeproj/project.pbxproj b/Demo/Demo.xcodeproj/project.pbxproj index 3b566f573c..36184e4189 100644 --- a/Demo/Demo.xcodeproj/project.pbxproj +++ b/Demo/Demo.xcodeproj/project.pbxproj @@ -213,7 +213,6 @@ 9BBC904024FD252B0003D2D8 /* UITraitCollection+Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BBC903F24FD252B0003D2D8 /* UITraitCollection+Extensions.swift */; }; 9F84F96E292B6DC900631443 /* BrazePromotionDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F84F96D292B6DC900631443 /* BrazePromotionDemoView.swift */; }; AA189E8726847AE700FD3A41 /* BlockUserDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA189E8626847AE700FD3A41 /* BlockUserDemoView.swift */; }; - D6E6CF9A291BDBBB00E47B90 /* SnapshotTesting in Frameworks */ = {isa = PBXBuildFile; productRef = D6E6CF99291BDBBB00E47B90 /* SnapshotTesting */; }; D75E14D727371692008EB126 /* FrontPageSavedSearchFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = D75E14D627371692008EB126 /* FrontPageSavedSearchFactory.swift */; }; D7C750382731C61A002BDE98 /* FrontPageSavedSearchesDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7C750372731C61A002BDE98 /* FrontPageSavedSearchesDemoView.swift */; }; D7D514C7272942E10065E2F6 /* PromotionDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7D514C6272942E10065E2F6 /* PromotionDemoView.swift */; }; @@ -222,6 +221,7 @@ DAE9CA8724602CB000C7552F /* SwiftUIViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAE9CA8624602CB000C7552F /* SwiftUIViewTests.swift */; }; E6510A6727FB378B001B40D6 /* ScrollableTabDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6510A6627FB378B001B40D6 /* ScrollableTabDemoView.swift */; }; E681A0EC2923FDA4008564E2 /* HyperlinkTextViewDemoView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E681A0EB2923FDA4008564E2 /* HyperlinkTextViewDemoView.swift */; }; + F08D93AC298BF05D004F899E /* SnapshotTesting in Frameworks */ = {isa = PBXBuildFile; productRef = F08D93AB298BF05D004F899E /* SnapshotTesting */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -481,7 +481,7 @@ buildActionMask = 2147483647; files = ( 46E7759D242D6A8A008A5E93 /* FinniversKit.framework in Frameworks */, - D6E6CF9A291BDBBB00E47B90 /* SnapshotTesting in Frameworks */, + F08D93AC298BF05D004F899E /* SnapshotTesting in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1926,7 +1926,7 @@ ); name = SnapshotTests; packageProductDependencies = ( - D6E6CF99291BDBBB00E47B90 /* SnapshotTesting */, + F08D93AB298BF05D004F899E /* SnapshotTesting */, ); productName = SnapshotTests; productReference = 46E7756C242D4736008A5E93 /* SnapshotTests.xctest */; @@ -1961,7 +1961,7 @@ ); mainGroup = 46AE6FB7242BADC9007BB005; packageReferences = ( - D6E6CF96291BDA2300E47B90 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */, + F08D93AA298BF05D004F899E /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */, ); productRefGroup = 46AE6FC1242BADC9007BB005 /* Products */; projectDirPath = ""; @@ -2510,20 +2510,20 @@ /* End XCConfigurationList section */ /* Begin XCRemoteSwiftPackageReference section */ - D6E6CF96291BDA2300E47B90 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */ = { + F08D93AA298BF05D004F899E /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */ = { isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/pointfreeco/swift-snapshot-testing"; + repositoryURL = "https://github.com/pimms/swift-snapshot-testing.git"; requirement = { - kind = upToNextMinorVersion; - minimumVersion = 1.10.0; + kind = revision; + revision = 0efeef44df913fe60ea868f037f271ac927a8e8c; }; }; /* End XCRemoteSwiftPackageReference section */ /* Begin XCSwiftPackageProductDependency section */ - D6E6CF99291BDBBB00E47B90 /* SnapshotTesting */ = { + F08D93AB298BF05D004F899E /* SnapshotTesting */ = { isa = XCSwiftPackageProductDependency; - package = D6E6CF96291BDA2300E47B90 /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */; + package = F08D93AA298BF05D004F899E /* XCRemoteSwiftPackageReference "swift-snapshot-testing" */; productName = SnapshotTesting; }; /* End XCSwiftPackageProductDependency section */ diff --git a/Demo/SnapshotTests/XCTestCastExtensions.swift b/Demo/SnapshotTests/XCTestCastExtensions.swift index 0f65bf2fac..d27121c4fe 100644 --- a/Demo/SnapshotTests/XCTestCastExtensions.swift +++ b/Demo/SnapshotTests/XCTestCastExtensions.swift @@ -17,8 +17,8 @@ extension XCTestCase { testName: String = #function, line: UInt = #line ) { - let perceptualPrecision: Float = 0.97 - var snapshotting: Snapshotting = .image(on: .iPhoneX, perceptualPrecision: perceptualPrecision) + let subpixelThreshold: UInt8 = 5 + var snapshotting: Snapshotting = .image(on: .iPhoneX, subpixelThreshold: subpixelThreshold) if let delay = delay { snapshotting = .wait(for: delay, on: snapshotting) } @@ -30,7 +30,7 @@ extension XCTestCase { ) if includeIPad { - var snapshotting: Snapshotting = .image(on: .iPadPro11, perceptualPrecision: perceptualPrecision) + var snapshotting: Snapshotting = .image(on: .iPadPro11, subpixelThreshold: subpixelThreshold) if let delay = delay { snapshotting = .wait(for: delay, on: snapshotting) } diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressCardView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressCardView.iPhone.png index 680e0c4009..cc0f0d7174 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressCardView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressCardView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressComponentView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressComponentView.iPhone.png index c48915a22e..3d532f99fc 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressComponentView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testAddressComponentView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBadgeView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBadgeView.iPhone.png index 4c93166bad..ca70d42a98 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBadgeView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBadgeView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBannerTransparencyView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBannerTransparencyView.iPhone.png index 7d3f14a601..333d715cca 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBannerTransparencyView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBannerTransparencyView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBlockUserView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBlockUserView.iPhone.png index 4de86340e3..07a3d96805 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBlockUserView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBlockUserView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBottomSheetMechanics.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBottomSheetMechanics.iPhone.png index ee27bbbd9f..7d728d4e50 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBottomSheetMechanics.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBottomSheetMechanics.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBrazePromotionView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBrazePromotionView.iPhone.png index d78761294a..014d6cabe7 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBrazePromotionView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBrazePromotionView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBroadcast.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBroadcast.iPhone.png index cccb1a17f8..625acdd55a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBroadcast.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testBroadcast.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testButton.iPhone.png index cd7ef28ef2..7365f6f46a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCallout.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCallout.iPhone.png index e42ceddcee..a5ef1a6b46 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCallout.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCallout.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckbox.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckbox.iPhone.png index 01f54046cf..410a837c4e 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckbox.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckbox.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckmarkTitleView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckmarkTitleView.iPhone.png index b462e1aed2..354c741cd4 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckmarkTitleView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCheckmarkTitleView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testChristmasWishListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testChristmasWishListView.iPhone.png index 11d9c12fb6..6e0b547f48 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testChristmasWishListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testChristmasWishListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCogWheelButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCogWheelButton.iPhone.png index d0a6b680e8..bbbfb74750 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCogWheelButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCogWheelButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCollapsibleContentView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCollapsibleContentView.iPhone.png index 70ab895350..cc2f95824c 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCollapsibleContentView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testCollapsibleContentView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testColumnListsView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testColumnListsView.iPhone.png index cba24ab183..d7c3825293 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testColumnListsView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testColumnListsView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testConsentTransparencyInfo.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testConsentTransparencyInfo.iPhone.png index e059227412..1b04db07b6 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testConsentTransparencyInfo.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testConsentTransparencyInfo.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testContractActionView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testContractActionView.iPhone.png index 974ee1ac22..dedfa9cf18 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testContractActionView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testContractActionView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDetailCallout.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDetailCallout.iPhone.png index 657cee84ca..2d7821adac 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDetailCallout.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDetailCallout.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDisclaimerView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDisclaimerView.iPhone.png index 5e9f8007e6..a8d2a0e459 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDisclaimerView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testDisclaimerView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testEarthHourView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testEarthHourView.iPhone.png index f5491f28f5..877e5ce3f0 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testEarthHourView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testEarthHourView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFavoriteButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFavoriteButton.iPhone.png index 2750c46566..fef0df805f 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFavoriteButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFavoriteButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFloatingButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFloatingButton.iPhone.png index f4dabbede6..7f52e031a2 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFloatingButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFloatingButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFooterButtonView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFooterButtonView.iPhone.png index e8aaa8c157..7afbaa667b 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFooterButtonView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testFooterButtonView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHappinessRating.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHappinessRating.iPhone.png index 0693100532..3c024404d1 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHappinessRating.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHappinessRating.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHyperlinkTextView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHyperlinkTextView.iPhone.png index 925ebdf53c..d559099c8c 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHyperlinkTextView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testHyperlinkTextView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconButton.iPhone.png index d6e6e3de48..37f3c015de 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconCollection.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconCollection.iPhone.png index eec2ee2085..105f8aae79 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconCollection.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testIconCollection.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testInfobox.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testInfobox.iPhone.png index bec09ae0d1..59efbd5293 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testInfobox.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testInfobox.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobApplyBox.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobApplyBox.iPhone.png index 1c8153dbbe..fb5d0c89b9 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobApplyBox.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobApplyBox.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobKeyInfo.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobKeyInfo.iPhone.png index fd07545e51..2f670b917a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobKeyInfo.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testJobKeyInfo.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKeyValueGridView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKeyValueGridView.iPhone.png index 6acfa8cd8c..502f12d786 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKeyValueGridView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKeyValueGridView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKlimabroletView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKlimabroletView.iPhone.png index b5626d1a71..55ba8e536d 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKlimabroletView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testKlimabroletView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLabel.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLabel.iPhone.png index f49dd6d5da..77482ea981 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLabel.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLabel.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLinkButtonListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLinkButtonListView.iPhone.png index cff0d4dc07..4b42bbe6d6 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLinkButtonListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLinkButtonListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoadingRetryView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoadingRetryView.iPhone.png index 5ae7031bbf..46dd7d2f34 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoadingRetryView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoadingRetryView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoanCalculatorView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoanCalculatorView.iPhone.png index 501cc58e09..688ad3a15f 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoanCalculatorView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testLoanCalculatorView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMonthAndYearPickerView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMonthAndYearPickerView.iPhone.png index 2de4ca2a34..f326d64537 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMonthAndYearPickerView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMonthAndYearPickerView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPad.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPad.png index 41a4ab1a83..bb6e6831ad 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPad.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPad.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPhone.png index 4c6fafd8de..27c2d03561 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMultilineButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPad.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPad.png index 9b3e9e5322..3a3b5cfe21 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPad.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPad.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPhone.png index 76af93ed4b..54417e88ee 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testMyAdsListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNativeAdvert.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNativeAdvert.iPhone.png index 4c64cdd2ea..d398d332d0 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNativeAdvert.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNativeAdvert.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNavigationLinkView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNavigationLinkView.iPhone.png index a857b67eb0..d955c0baa3 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNavigationLinkView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNavigationLinkView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNumberedListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNumberedListView.iPhone.png index dae4d51aca..1077fad6e3 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNumberedListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testNumberedListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPagePriceView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPagePriceView.iPhone.png index 851afe86ea..049e23eac8 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPagePriceView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPagePriceView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPageTitleView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPageTitleView.iPhone.png index e57c75f2ad..e2f93da9ac 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPageTitleView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testObjectPageTitleView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPad.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPad.png index fafcce5987..9cb6909f67 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPad.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPad.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPhone.png index 31dba9c91b..f35c7bc3c2 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testOverflowCollectionView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPanel.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPanel.iPhone.png index 06a95afce6..a36d9e378a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPanel.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPanel.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPhaseList.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPhaseList.iPhone.png index f5fba9039a..3eacbd74d2 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPhaseList.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPhaseList.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPriming.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPriming.iPhone.png index 7a2c51871e..4f74150011 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPriming.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPriming.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPromotionView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPromotionView.iPhone.png index 5e8226c350..19a0a24a28 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPromotionView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testPromotionView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testQuestionnaireView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testQuestionnaireView.iPhone.png index 5ff298127d..147a89ef8b 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testQuestionnaireView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testQuestionnaireView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRadioButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRadioButton.iPhone.png index 9b7ec20e83..597e5fc6fa 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRadioButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRadioButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRibbon.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRibbon.iPhone.png index 1f613a8630..06cd3a06f0 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRibbon.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testRibbon.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPad.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPad.png index 29f23881ac..6ff869be7b 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPad.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPad.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPhone.png index 4e689bb825..6593ca24c1 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSafetyElementsView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testScrollableTabDemoView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testScrollableTabDemoView.iPhone.png index f437a1c1d8..dd32d3d64f 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testScrollableTabDemoView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testScrollableTabDemoView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSearchView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSearchView.iPhone.png index 1c42ea59e4..2b6f890039 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSearchView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSearchView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListCheckboxView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListCheckboxView.iPhone.png index caea3871ec..d54c52e353 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListCheckboxView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListCheckboxView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListRadiobuttonView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListRadiobuttonView.iPhone.png index aaa3a7f39b..87988e9225 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListRadiobuttonView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectionListRadiobuttonView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectorTitleView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectorTitleView.iPhone.png index bca2e89760..d8e2686481 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectorTitleView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelectorTitleView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelfDeclarationView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelfDeclarationView.iPhone.png index dcfeab7be2..60e8fba754 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelfDeclarationView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSelfDeclarationView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSendInviteView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSendInviteView.iPhone.png index dc6653776c..05944e5a73 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSendInviteView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSendInviteView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testStepSlider.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testStepSlider.iPhone.png index aca31c78dc..fa43fae6f2 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testStepSlider.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testStepSlider.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSwitchView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSwitchView.iPhone.png index 5597f06554..bf89c265bd 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSwitchView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testSwitchView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTextField.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTextField.iPhone.png index 5469bc67b1..d1a33803af 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTextField.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTextField.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testToast.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testToast.iPhone.png index e13da5dbe8..9a79bbde95 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testToast.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testToast.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTransactionEntryView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTransactionEntryView.iPhone.png index 5b76a42615..11cdea1d5a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTransactionEntryView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTransactionEntryView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTweakable.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTweakable.iPhone.png index a8622e4693..ecac68bb09 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTweakable.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testTweakable.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVerificationView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVerificationView.iPhone.png index e64c289b9f..ba9d4dbd7c 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVerificationView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVerificationView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testViewingsView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testViewingsView.iPhone.png index 0711dfc13e..5e4a60d208 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testViewingsView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testViewingsView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVisibilityDrivenTitleView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVisibilityDrivenTitleView.iPhone.png index b927581df1..1533059af5 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVisibilityDrivenTitleView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/ComponentViewTests/testVisibilityDrivenTitleView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsColor.iPhone.png b/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsColor.iPhone.png index c010d1c1bb..39d2a45bfa 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsColor.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsColor.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsFont.iPhone.png b/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsFont.iPhone.png index 367767da61..cbc0f324bf 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsFont.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsFont.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsSpacing.iPhone.png b/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsSpacing.iPhone.png index 3ee4ed9a2d..ecc5ac37d2 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsSpacing.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/DnaViewTests/testDnaViewsSpacing.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testAddressMapView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testAddressMapView.iPhone.png index 35add9c236..d338ef6541 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testAddressMapView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testAddressMapView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBetaFeatureView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBetaFeatureView.iPhone.png index 7637932196..d2e87dfe38 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBetaFeatureView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBetaFeatureView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBuyerPickerView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBuyerPickerView.iPhone.png index 06058ce7b7..93643a2686 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBuyerPickerView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testBuyerPickerView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfettiView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfettiView.iPhone.png index 39b05cc32a..2124c13256 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfettiView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfettiView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfirmationView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfirmationView.iPhone.png index 7fc9220d6c..9369c1b9d8 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfirmationView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testConfirmationView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testContactFormView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testContactFormView.iPhone.png index 0fae9f413d..a7697bfaf3 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testContactFormView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testContactFormView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testDrumMachineView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testDrumMachineView.iPhone.png index fc34fc20fd..c57f8cdd4c 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testDrumMachineView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testDrumMachineView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testEmptyView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testEmptyView.iPhone.png index 28e42d99d6..f154fe586b 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testEmptyView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testEmptyView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdActionView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdActionView.iPhone.png index 3de4370927..f0323930b1 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdActionView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdActionView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdCommentInputView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdCommentInputView.iPhone.png index 063a00d6c7..8646f5b110 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdCommentInputView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdCommentInputView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdsList.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdsList.iPhone.png index a10977c4a7..ad8cc629a9 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdsList.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteAdsList.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteFolderActionView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteFolderActionView.iPhone.png index 1ebdc407d2..2fa36d2c93 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteFolderActionView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteFolderActionView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteSold.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteSold.iPhone.png index bb7e93a081..48571d83a4 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteSold.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFavoriteSold.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFullscreenGallery.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFullscreenGallery.iPhone.png index 9697c93e42..04ec5b42e4 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFullscreenGallery.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testFullscreenGallery.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoadingView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoadingView.iPhone.png index dea10ce6fc..ef7a2988c0 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoadingView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoadingView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginEntryView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginEntryView.iPhone.png index 2dcbc4dc25..a0b3977758 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginEntryView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginEntryView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginView.iPhone.png index 507675208f..85cd15b618 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testLoginView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageFormView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageFormView.iPhone.png index 49f39dcc4c..3f87b12182 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageFormView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageFormView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageUserRequiredSheet.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageUserRequiredSheet.iPhone.png index e39e4cd328..6afafc49c7 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageUserRequiredSheet.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testMessageUserRequiredSheet.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testPopupView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testPopupView.iPhone.png index 9a11f3dbc7..a6d2828b8a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testPopupView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testPopupView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testRegisterView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testRegisterView.iPhone.png index 6222e84fe2..e656da572b 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testRegisterView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testRegisterView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testReportAdView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testReportAdView.iPhone.png index f64d0dcfc4..4f5dd24916 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testReportAdView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testReportAdView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testResultView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testResultView.iPhone.png index a1b51af6f2..17c12be966 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testResultView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testResultView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSearchResultMapView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSearchResultMapView.iPhone.png index c012a14088..7b1b0b8a86 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSearchResultMapView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSearchResultMapView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSettingDetails.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSettingDetails.iPhone.png index 18ad419312..552e5a298a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSettingDetails.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSettingDetails.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSoldView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSoldView.iPhone.png index 87bf0e0355..71de9589c2 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSoldView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testSoldView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testVerificationActionSheet.iPhone.png b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testVerificationActionSheet.iPhone.png index 490771a608..265382f543 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testVerificationActionSheet.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/FullscreenViewTests/testVerificationActionSheet.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testAdManagementView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testAdManagementView.iPhone.png index c2cc40b91c..8aab768d86 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testAdManagementView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testAdManagementView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testBasicTableView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testBasicTableView.iPhone.png index a0fb338004..6975404049 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testBasicTableView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testBasicTableView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testCompactMarketsView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testCompactMarketsView.iPhone.png index 13c2fb531f..7bc9da2990 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testCompactMarketsView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testCompactMarketsView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoriteFoldersListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoriteFoldersListView.iPhone.png index 4efae5b856..9c4b0a4f2a 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoriteFoldersListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoriteFoldersListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoritesListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoritesListView.iPhone.png index 3aca798823..a8f329be63 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoritesListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testFavoritesListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testMarketsGridView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testMarketsGridView.iPhone.png index 5584a33ab2..95d00e835b 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testMarketsGridView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testMarketsGridView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNeighborhoodProfileView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNeighborhoodProfileView.iPhone.png index 805dc0145a..2e7651c576 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNeighborhoodProfileView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNeighborhoodProfileView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNotificationsListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNotificationsListView.iPhone.png index cb00ac917a..7cb633dda5 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNotificationsListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testNotificationsListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSavedSearchesListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSavedSearchesListView.iPhone.png index aa6c484aae..16cb42b78f 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSavedSearchesListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSavedSearchesListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSettingsView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSettingsView.iPhone.png index 10e5fc102e..42dadcf955 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSettingsView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/RecyclingViewTests/testSettingsView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testCheckBox.iPhone.png b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testCheckBox.iPhone.png index d98e3d91a9..68f55d2e09 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testCheckBox.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testCheckBox.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testRadioButton.iPhone.png b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testRadioButton.iPhone.png index ae647959ec..506c93127c 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testRadioButton.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testRadioButton.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testSelectionListView.iPhone.png b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testSelectionListView.iPhone.png index 7830053bfa..429f555ba5 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testSelectionListView.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testSelectionListView.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testTextField.iPhone.png b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testTextField.iPhone.png index b14124af79..749a99691f 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testTextField.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/SwiftUIViewTests/testTextField.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCell.iPhone.png index af30aa9611..d65f7c4e21 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCellVariations.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCellVariations.iPhone.png index 9d1674f386..6b08834d96 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCellVariations.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testBasicCellVariations.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxCell.iPhone.png index 47948034a4..1cb8ed4f7c 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxSubtitleCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxSubtitleCell.iPhone.png index 8608c1a356..c4ee430414 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxSubtitleCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testCheckboxSubtitleCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testFavoriteAdCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testFavoriteAdCell.iPhone.png index 4173229fc0..dd87c3c120 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testFavoriteAdCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testFavoriteAdCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testHeartSubtitleCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testHeartSubtitleCell.iPhone.png index 041534f7bf..f65e317644 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testHeartSubtitleCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testHeartSubtitleCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testIconTitleCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testIconTitleCell.iPhone.png index 9cfd9566f8..bed8c12700 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testIconTitleCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testIconTitleCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRadioButtonCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRadioButtonCell.iPhone.png index 9a9116a93a..b5dfea563e 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRadioButtonCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRadioButtonCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRemoteImageCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRemoteImageCell.iPhone.png index 363eb77186..ff3ea2786b 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRemoteImageCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testRemoteImageCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdCell.iPhone.png index ce4fd31668..ba1d3dc9b6 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdCell.iPhone.png differ diff --git a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdEmphasizedActionCell.iPhone.png b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdEmphasizedActionCell.iPhone.png index bf7e8f07d8..02dd8aebe9 100644 Binary files a/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdEmphasizedActionCell.iPhone.png and b/Demo/SnapshotTests/__Snapshots__/TableViewCellViewsTests/testUserAdEmphasizedActionCell.iPhone.png differ diff --git a/FinniversKit.xcworkspace/xcshareddata/swiftpm/Package.resolved b/FinniversKit.xcworkspace/xcshareddata/swiftpm/Package.resolved index 20c26b133c..448ba32768 100644 --- a/FinniversKit.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/FinniversKit.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -3,10 +3,9 @@ { "identity" : "swift-snapshot-testing", "kind" : "remoteSourceControl", - "location" : "https://github.com/pointfreeco/swift-snapshot-testing", + "location" : "https://github.com/pimms/swift-snapshot-testing.git", "state" : { - "revision" : "f29e2014f6230cf7d5138fc899da51c7f513d467", - "version" : "1.10.0" + "revision" : "0efeef44df913fe60ea868f037f271ac927a8e8c" } } ],