From d2d31e64c27cabbf685a95e27956f96f5a876d21 Mon Sep 17 00:00:00 2001 From: Kyle Van Essen Date: Sun, 9 Aug 2026 18:41:14 -0700 Subject: [PATCH] refactor(SnapshotKitTesting): use SwiftUI accessibility renderer --- Package.swift | 9 +++++---- Shared/SnapshotKit/AGENTS.md | 6 ++++-- Shared/SnapshotKit/README.md | 7 ++++--- Shared/SnapshotKit/Sources/SnapshotCase.swift | 10 +++++----- .../Sources/SnapshotProviding.swift | 4 ++-- Shared/SnapshotKitTesting/AGENTS.md | 9 +++++++-- Shared/SnapshotKitTesting/README.md | 6 +++--- .../AccessibilitySnapshotViewController.swift | 18 ++++++++++-------- .../about.Default_iPad_accessibility.png | 4 ++-- .../about.Default_iPhone_accessibility.png | 4 ++-- .../appIcon.Default_iPad_accessibility.png | 4 ++-- .../appIcon.Default_iPhone_accessibility.png | 4 ++-- .../appearance.Default_iPad_accessibility.png | 4 ++-- ...appearance.Default_iPhone_accessibility.png | 4 ++-- ...ndarContent.WithData_iPad_accessibility.png | 4 ++-- ...arContent.WithData_iPhone_accessibility.png | 4 ++-- .../data.Default_iPad_accessibility.png | 4 ++-- .../data.Default_iPhone_accessibility.png | 4 ++-- .../dayRelabel.Default_iPad_accessibility.png | 4 ++-- ...dayRelabel.Default_iPhone_accessibility.png | 4 ++-- .../devices.Default_iPad_accessibility.png | 4 ++-- .../devices.Default_iPhone_accessibility.png | 4 ++-- .../elsewhere.Loaded_iPad_accessibility.png | 4 ++-- .../elsewhere.Loaded_iPhone_accessibility.png | 4 ++-- ...ghtDayDetail.Default_iPad_accessibility.png | 4 ++-- ...tDayDetail.Default_iPhone_accessibility.png | 4 ++-- ...racyFeatures.Default_iPad_accessibility.png | 4 ++-- ...cyFeatures.Default_iPhone_accessibility.png | 4 ++-- .../license.Default_iPad_accessibility.png | 4 ++-- .../license.Default_iPhone_accessibility.png | 4 ++-- .../locations.Loaded_iPad_accessibility.png | 4 ++-- .../locations.Loaded_iPhone_accessibility.png | 4 ++-- .../loggedDays.Loaded_iPad_accessibility.png | 4 ++-- .../loggedDays.Loaded_iPhone_accessibility.png | 4 ++-- .../manualDay.Add_iPad_accessibility.png | 4 ++-- .../manualDay.Add_iPhone_accessibility.png | 4 ++-- .../onboarding.Default_iPad_accessibility.png | 4 ++-- ...onboarding.Default_iPhone_accessibility.png | 4 ++-- ...tionFeatures.Default_iPad_accessibility.png | 4 ++-- ...onFeatures.Default_iPhone_accessibility.png | 4 ++-- ...nceTimeline.WithData_iPad_accessibility.png | 4 ++-- ...eTimeline.WithData_iPhone_accessibility.png | 4 ++-- ...ecentActivity.Loaded_iPad_accessibility.png | 4 ++-- ...entActivity.Loaded_iPhone_accessibility.png | 4 ++-- .../regionDays.WithData_iPad_accessibility.png | 4 ++-- ...egionDays.WithData_iPhone_accessibility.png | 4 ++-- ...esolution.WithIssues_iPad_accessibility.png | 4 ++-- ...olution.WithIssues_iPhone_accessibility.png | 4 ++-- .../settings.Default_iPad_accessibility.png | 4 ++-- .../settings.Default_iPhone_accessibility.png | 4 ++-- ...enceFeatures.Default_iPad_accessibility.png | 4 ++-- ...ceFeatures.Default_iPhone_accessibility.png | 4 ++-- ...siriFeatures.Default_iPad_accessibility.png | 4 ++-- ...riFeatures.Default_iPhone_accessibility.png | 4 ++-- .../todayWidget.SingleRegion_accessibility.png | 4 ++-- ...ommittedResetCleanup_iPad_accessibility.png | 4 ++-- ...mittedResetCleanup_iPhone_accessibility.png | 4 ++-- ...dgetFeatures.Default_iPad_accessibility.png | 4 ++-- ...etFeatures.Default_iPhone_accessibility.png | 4 ++-- .../yearTotalsWidget.Ranked_accessibility.png | 4 ++-- .../year.Loaded_iPad_accessibility.png | 4 ++-- .../year.Loaded_iPhone_accessibility.png | 4 ++-- 62 files changed, 148 insertions(+), 137 deletions(-) diff --git a/Package.swift b/Package.swift index 13df9272d..0aa468408 100644 --- a/Package.swift +++ b/Package.swift @@ -123,11 +123,12 @@ let package = Package( .target(name: "SnapshotKit"), .target(name: "TestHostSupport"), .product(name: "SnapshotTesting", package: "swift-snapshot-testing"), - // Only `AccessibilitySnapshotCore` is imported; the umbrella - // product additionally pulls in the XCTest-facing half, widening - // the statically embedded closure of every consuming test bundle - // for no benefit. + // Keep the focused Core + SwiftUI renderer products: the + // umbrella additionally pulls in AccessibilitySnapshot's own + // SnapshotTesting integration, widening every consuming test + // bundle's statically embedded closure for no benefit. .product(name: "AccessibilitySnapshotCore", package: "AccessibilitySnapshot"), + .product(name: "AccessibilitySnapshotPreviews", package: "AccessibilitySnapshot"), ], path: "Shared/SnapshotKitTesting/Sources", ), diff --git a/Shared/SnapshotKit/AGENTS.md b/Shared/SnapshotKit/AGENTS.md index deaa2889d..09ffedd48 100644 --- a/Shared/SnapshotKit/AGENTS.md +++ b/Shared/SnapshotKit/AGENTS.md @@ -28,8 +28,10 @@ Complements the root [`AGENTS.md`](../../AGENTS.md) — read that first. treat it as a wire format. Adding an axis is safe only with a default that is omitted (how `layoutDirection`/`legibilityWeight` landed). - **`.accessibility` configs are preview-filtered.** `snapshotPreviews` drops - them because VoiceOver annotations require the test-only library; they only - render as snapshot tests. Don't "fix" previews to include them. + them because Stuff keeps AccessibilitySnapshot's annotation renderer in the + test-only `SnapshotKitTesting` product rather than linking it into shipping + UI modules; they only render as snapshot tests. Don't "fix" previews to + include them without a preview-only dependency boundary. - **`SnapshotCase` content builders stay lazy.** Constructing a provider's descriptor array must not instantiate every view or model; each content access creates the independent value rendered by that configuration. diff --git a/Shared/SnapshotKit/README.md b/Shared/SnapshotKit/README.md index a223f71b9..3c2f04869 100644 --- a/Shared/SnapshotKit/README.md +++ b/Shared/SnapshotKit/README.md @@ -122,9 +122,10 @@ assertSnapshots(of: MyBadge.self) ## Notes - Accessibility (`.accessibility`) configurations are **filtered out of the - preview cutsheet** — VoiceOver-annotated captures need the test-only library - and can't render in a plain Preview. They still run as snapshot tests. The - cutsheet also cannot reproduce the capture pipeline's UIKit-backed + preview cutsheet** — Stuff keeps AccessibilitySnapshot's annotation renderer + in the test-only `SnapshotKitTesting` product instead of linking it into every + shipping UI module. They still run as snapshot tests. The cutsheet also cannot + reproduce the capture pipeline's UIKit-backed `List`/`Form` height measurement, safe-area override, ready hook, or tile-and-stitch pass, so CI's rendered dimensions remain authoritative. - The Where app wraps content in its Broadway design-system root via a diff --git a/Shared/SnapshotKit/Sources/SnapshotCase.swift b/Shared/SnapshotKit/Sources/SnapshotCase.swift index f05a4e890..f408b51c1 100644 --- a/Shared/SnapshotKit/Sources/SnapshotCase.swift +++ b/Shared/SnapshotKit/Sources/SnapshotCase.swift @@ -39,8 +39,8 @@ public enum SnapshotMeasurementReadiness: Equatable, Sendable { /// variants inside a `#Preview` — the same matrix, traits, and content the /// snapshot tests capture. Test-only capture mechanics are documented on /// ``previewConfigurations``. -/// Accessibility variants are excluded from that preview (see -/// ``previewConfigurations``); they only render as tests. +/// Accessibility variants are excluded from that preview because their +/// annotation renderer is test-only (see ``previewConfigurations``). public struct SnapshotCase: Identifiable { /// The case name — groups a component's variants and prefixes their /// reference-image identifiers. @@ -89,9 +89,9 @@ public struct SnapshotCase: Identifiable { contentFactory = { AnyView(content()) } } - /// The configurations that can render in a plain SwiftUI preview. Accessibility - /// captures need the test-only library's VoiceOver parser, so they're dropped - /// from the cutsheet (they still run as snapshot tests). The cutsheet also + /// The configurations that can render without linking test-only dependencies. + /// Accessibility annotations belong to `SnapshotKitTesting`, so those variants + /// are dropped from the cutsheet (they still run as snapshot tests). The cutsheet also /// cannot perform the capture pipeline's UIKit-backed `List`/`Form` /// measurement, safe-area override, async ready hook, or tile-and-stitch; /// full-content preview height is therefore an approximation while the test diff --git a/Shared/SnapshotKit/Sources/SnapshotProviding.swift b/Shared/SnapshotKit/Sources/SnapshotProviding.swift index a6790a395..efc746cec 100644 --- a/Shared/SnapshotKit/Sources/SnapshotProviding.swift +++ b/Shared/SnapshotKit/Sources/SnapshotProviding.swift @@ -21,8 +21,8 @@ public protocol SnapshotProviding { extension SnapshotProviding { /// A scrollable cutsheet of every case's non-accessibility variants, for an - /// Xcode `#Preview`. Accessibility captures are excluded (they need the - /// test-only VoiceOver parser). + /// Xcode `#Preview`. Accessibility captures are excluded because their + /// annotation renderer belongs to the test-only `SnapshotKitTesting` product. @MainActor public static var snapshotPreviews: some View { SnapshotCutsheet(cases: snapshots) } diff --git a/Shared/SnapshotKitTesting/AGENTS.md b/Shared/SnapshotKitTesting/AGENTS.md index 1d29cf84a..e05011be4 100644 --- a/Shared/SnapshotKitTesting/AGENTS.md +++ b/Shared/SnapshotKitTesting/AGENTS.md @@ -9,8 +9,9 @@ Complements the root [`AGENTS.md`](../../AGENTS.md) — read that first. ## Scope & dependencies - Depends on `SnapshotKit`, `TestHostSupport`, `SnapshotTesting` - (swift-snapshot-testing), and `AccessibilitySnapshot` (cashapp). It links the - comparison engine + XCTest/Testing, so it is **only** consumed by test + (swift-snapshot-testing), and AccessibilitySnapshot's focused Core + Previews + products (cashapp). It links the comparison engine + XCTest/Testing and the + SwiftUI accessibility renderer, so it is **only** consumed by test bundles via `extraPackageProducts` — the per-module image bundles (`WhereUISnapshotTests`, `PeriscopeToolsSnapshotTests`, `InspectorSnapshotTests`, gathered into the `StuffSnapshotTests` @@ -37,6 +38,10 @@ Complements the root [`AGENTS.md`](../../AGENTS.md) — read that first. accessibility) flow through `renderSnapshotImage(...)`; its `async` is load-bearing — a synchronous `Snapshotting` pullback could never settle `.task`-driven content. +- **Accessibility annotations use AccessibilitySnapshot's SwiftUI renderer.** + Keep the focused `AccessibilitySnapshotCore` + + `AccessibilitySnapshotPreviews` products; the umbrella also links the + upstream SnapshotTesting integration that this module replaces. - **The compare sees on-disk bytes.** Every capture round-trips through PNG encoding before comparison; removing it re-opens the wide-gamut vs. sRGB flake (see `renderSnapshotImage`'s doc). diff --git a/Shared/SnapshotKitTesting/README.md b/Shared/SnapshotKitTesting/README.md index 41a5a8ecc..4e8042c17 100644 --- a/Shared/SnapshotKitTesting/README.md +++ b/Shared/SnapshotKitTesting/README.md @@ -7,7 +7,7 @@ images. It links the snapshot-comparison engine ([swift-snapshot-testing](https://github.com/pointfreeco/swift-snapshot-testing)) -and the accessibility parser +and AccessibilitySnapshot's parser plus SwiftUI annotation renderer ([AccessibilitySnapshot](https://github.com/cashapp/AccessibilitySnapshot)), so it is **only** linked by `*SnapshotTests` bundles — never a shipping app. It re-exports `SnapshotKit` and `SnapshotTesting`, so a test author needs a single @@ -66,8 +66,8 @@ re-exports `SnapshotKit` and `SnapshotTesting`, so a test author needs a single starved CI machine) keeps waiting instead of failing falsely, giving up at a hard cap several budgets out. - **Accessibility captures** — for `.accessibility` configurations, content is - wrapped so the image is annotated with the VoiceOver reading order, labels, - traits, and activation points. + wrapped in AccessibilitySnapshot's SwiftUI renderer so the image is annotated + with the VoiceOver reading order, labels, traits, and activation points. - **`\.isCapturingSnapshot`** — the pipeline overrides `SnapshotCaptureTrait` on every captured controller, so SwiftUI content reads the SnapshotKit environment flag as `true` and can freeze never-settling motion diff --git a/Shared/SnapshotKitTesting/Sources/AccessibilitySnapshotViewController.swift b/Shared/SnapshotKitTesting/Sources/AccessibilitySnapshotViewController.swift index 19b7b7bdd..7f807477c 100644 --- a/Shared/SnapshotKitTesting/Sources/AccessibilitySnapshotViewController.swift +++ b/Shared/SnapshotKitTesting/Sources/AccessibilitySnapshotViewController.swift @@ -1,17 +1,19 @@ import AccessibilitySnapshotCore +import AccessibilitySnapshotPreviews import UIKit -/// Wraps a content view controller in an `AccessibilitySnapshotView` so a capture -/// is annotated with the VoiceOver reading order, labels, traits, and activation -/// points. The content is inset first (via ``InsetView``) so an all-element view's -/// region border isn't clipped, and the wrapper is sized to fit the annotations. +/// Wraps a content view controller in AccessibilitySnapshot's SwiftUI renderer +/// so a capture is annotated with the VoiceOver reading order, labels, traits, +/// and activation points. The content is inset first (via ``InsetView``) so an +/// all-element view's region border isn't clipped, and the wrapper is sized to +/// fit the annotations. final class AccessibilitySnapshotViewController: UIViewController { private let content: UIViewController - private var snapshotView: AccessibilitySnapshotView { - guard let snapshotView = view as? AccessibilitySnapshotView else { + private var snapshotView: SwiftUIAccessibilitySnapshotContainerView { + guard let snapshotView = view as? SwiftUIAccessibilitySnapshotContainerView else { preconditionFailure( - "AccessibilitySnapshotViewController.view must be an AccessibilitySnapshotView.", + "AccessibilitySnapshotViewController.view must be a SwiftUIAccessibilitySnapshotContainerView.", ) } return snapshotView @@ -30,7 +32,7 @@ final class AccessibilitySnapshotViewController: UIViewController { } override func loadView() { - view = AccessibilitySnapshotView( + view = SwiftUIAccessibilitySnapshotContainerView( containedView: InsetView(content: content.view), snapshotConfiguration: AccessibilitySnapshotConfiguration( viewRenderingMode: .drawHierarchyInRect, diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPad_accessibility.png index 0e9414e28..3e7850282 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:adf7e2d6994223a574552f38fbc2b1618c5138612aee26cfd341ab6923137430 -size 1646063 +oid sha256:6f810862c1ab180bf64566109cf0ff55cc493067b951d88949fd9817abb2b4e7 +size 1750272 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPhone_accessibility.png index 87e36f687..be410a304 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/AboutSettingsViewSnapshotTests/about.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7301f86c6e4139fde615b5d8348e608f0029e879cfb710747151c08f81905152 -size 1294323 +oid sha256:1891bc50f459b4cee7594794bb2615b3e852c59654c5a9bdf8cd6f18e4c23f4a +size 1394739 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPad_accessibility.png index aa655117b..c28f46fbd 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:92e8a3a20ba9c75051b107d0d2dc9be157bede000b86a0238923b9400a35ca9a -size 879627 +oid sha256:88c6a2aa9fa3bd328d2e2a69d27c27f2d4ff6807774d0afe04183448879106a2 +size 1084248 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPhone_accessibility.png index 12b2b1fa7..92a05d111 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/AppIconViewSnapshotTests/appIcon.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ae280d4b9bbe5a3ee53d2bafb5d5bd021c7858b64d4c669c265cf90c567b19fd -size 829005 +oid sha256:d6443a1f46d7e789f52f95bbda25a90991a1e1e8d1414f21670caf2c003ab252 +size 920460 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPad_accessibility.png index 09b49b945..d3b4f5fa8 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a397c2750f32bc4a5e99f68c0dea531c7d2508da4ee7925e4d2b519afc8492b -size 516941 +oid sha256:a6ac601d574c434e52a248d1588cde3cbf15efa5807ead505b2a4b8d5b26e687 +size 520897 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPhone_accessibility.png index 4ba1d8eb4..03934f4fc 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/AppearanceSettingsViewSnapshotTests/appearance.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d3cb7509db4e0de8b9e3f235742a139ead75642582872dfb5f651d3803300bbf -size 322118 +oid sha256:cda479ae56b8366ffe8bb827220146e259d986d246ada34257da658e4af9d4b6 +size 373597 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPad_accessibility.png index 41474ea11..856cabe98 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:20c3dc58ebcf58ba681dbb9373a6abc0a52a619497585904561ca375af0b843d -size 3633520 +oid sha256:31ca86af54a23ff41affd22f8e52ab3f5b06ef857bc0deca301f97b9eb10df43 +size 5126397 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPhone_accessibility.png index 7cd8f8c44..6f209af2c 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/CalendarContentViewSnapshotTests/calendarContent.WithData_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:171cedde1b7bd43b44640bc8470721880929bca8b31c071b812fc8d08def7aa7 -size 3204875 +oid sha256:7c576e21a34af3851023088e1a4af47975cb1c93c3ac547d892cd0deac752425 +size 4735934 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPad_accessibility.png index 1b0d2e5b6..fc57d691c 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7a25a3806b3e3aeb297209a2b28e9399cbd3fc77dcb3034c53e4a999386cf5e2 -size 1069061 +oid sha256:1c83919b7924debb15a56a497f1d942d41821425292b6204c473ab59adf1230d +size 1126644 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPhone_accessibility.png index 4dd69bfe5..aec6005b4 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/DataSettingsViewSnapshotTests/data.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1e5035af66144266e24577b989430db07671dc1a4a3d2a6da9d9629ad9c00b3e -size 746684 +oid sha256:48c5285722e6b4be317500474dc6cd34a3ca2c2fb43973cb6ef2782366575518 +size 798578 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPad_accessibility.png index eb4a0dfc1..5c331d243 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:73e573f4ceccd0967fb7d413bcf643cbc213fe2eda2dbb381a0a7bf32325ef0b -size 2750234 +oid sha256:3e3e6da22846c83f2f05cfd6d203fb92f739d748e8c48a73dcdc7e253a7b7e6b +size 2858716 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPhone_accessibility.png index 5f2c2396f..4d203d843 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/DayRelabelViewSnapshotTests/dayRelabel.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c4d74aa51ece5c8378992f36a7338a5ca459f1e0905808fff91407c027cdc1ab -size 2423867 +oid sha256:8113a8e7a78e4f01d69318fcbcabf608c44642c26019724817ada809bde4b04a +size 2545670 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPad_accessibility.png index 097a8d353..bb62acf8a 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:330c0430b61af34756ae6157a1e47c8deab9a04edaf84a00c57d3b113d62fad4 -size 608245 +oid sha256:a75100c28b0f9d39d5d1c3e5d72401df5a5371cdd89d91e235651cdbd85f0828 +size 647220 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPhone_accessibility.png index 1b582f09e..0ad85dca7 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/DevicesSettingsViewSnapshotTests/devices.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:07412099ce733157e4320f0de46250dbc54a737d4f4bdb4bf72213de2a9b6fa4 -size 457220 +oid sha256:131ed8cf11daf777bce2919ed9a68327a18cb0cec74e932c6841fd41fa38ad97 +size 495085 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPad_accessibility.png index aa1a1baa2..8b342681b 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6e00ff4c471ea71a7c37447fe71d941b66983c2934f9fd92049266e485193454 -size 1825563 +oid sha256:1cad18620d099670c5e866dca32c0847e01ac1b8e557a1cf784c726220b06a91 +size 1785474 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPhone_accessibility.png index 01b5b8cbc..973c8ac8a 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ElsewhereViewSnapshotTests/elsewhere.Loaded_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d9a04d6f35cb33c23f0984033cc5a3cee704459f196433793015b7c7f62199f5 -size 1089741 +oid sha256:96b84f2e1446e436f5949d9ad77f83248756ab12a3c3b5a0195f1953bf1af86f +size 1067211 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPad_accessibility.png index 49c6661df..bc01a3138 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:08383170fdc105fb5c4dff79f30b4c0dd33e2f5290a2ff9bbb09da1778ccdf32 -size 632488 +oid sha256:184050c9af4cd8f05c38d8ba9b2e68ad4d6feeb61c98023014f42fbb938e420b +size 636178 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPhone_accessibility.png index 2fc99f752..f64fec2c1 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/FlightDayDetailViewSnapshotTests/flightDayDetail.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:eb5cfb6eacfa9d4eccf514a1497e15e0676acda10f464f1916276f5749a86c58 -size 448463 +oid sha256:87217f4b2ee5bf5216f95412faa7d76422dc1fa34d948d0b06c954cb0c10881b +size 453366 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPad_accessibility.png index 79cb2f18a..5a3fc7bbe 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:98fd56d5b2caa8fd53635ee7aa341a185a5e56f7fd13aa7e4f4b157be78b49d6 -size 1177582 +oid sha256:4b6dc7f1dd83236946109460087087e09bc1e8cc356965f05b9febbc17c0dfc7 +size 1196732 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPhone_accessibility.png index 45f488fa0..d7dd81f5f 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/InsightsAccuracyFeaturesViewSnapshotTests/insightsAccuracyFeatures.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8750a6aa9e814e6df2284aa2b32a4860448c8d6ba4545e5f40a3879915830f6f -size 719748 +oid sha256:fbb6a0dfb7a0a060845ecf5a0e07bd2c5ac299b5b61c20cb05ed70dd102019cd +size 739714 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPad_accessibility.png index f0021e4c9..0fa5c2f96 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d55cc76b4a1a5e2a874d1998edc2195a2fde10a800ef7c636d9b42ad11dff02b -size 415425 +oid sha256:26e79d00c2b0af61214f8ee29901517ba51651a28864e1fd0d89cc46f2100d5c +size 426122 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPhone_accessibility.png index cbfc5b844..b9a85c9c4 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/LicenseViewSnapshotTests/license.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8d5d58d9d767233e7508a4d8c79b01c7984d659389c121b8d2b9d4dd34030ddf -size 283635 +oid sha256:6a050c6c8f7c29b2b74fe1d9f44f266e3969062628d4f95e2037f12973a5f73f +size 294392 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPad_accessibility.png index e4745b3e5..4c29a5930 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5838ed0b77bc13f1b7c99daaa5ff8df9c6b2391433bc8c5e73051c20355a217d -size 2318218 +oid sha256:9d520b550e40b37e4fc7d414ab70d6b32e56de4dce094088b68e6c974917930a +size 2331727 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPhone_accessibility.png index 151014cf4..526973423 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/LocationsViewSnapshotTests/locations.Loaded_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:76f289ea5277db12c85e8b838565b0c7acf5555a1adaaa18fccdab01b5696a35 -size 1424180 +oid sha256:f04fe84c03ad036750b15580aaad7a6a552781ef35738748b4c32b02cd8a271c +size 1415725 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPad_accessibility.png index 503669b45..a33f3843c 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:349ce014b93bc1eeb5eda7763841f20d42d0d8239b6751ac3d8b5e8fa55b83f1 -size 465414 +oid sha256:45fd9aeec13b2de7dc68438380c4fcf5904cbfb6de90506bcf95a397d7df9859 +size 483027 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPhone_accessibility.png index d275f3f6b..178d32b5c 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/LoggedDaysViewSnapshotTests/loggedDays.Loaded_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f67ae15f73a579b81dba400453722ee2d7b13b0df9c1fbda661e828c1adb2191 -size 333616 +oid sha256:caa36b1561dbe7ef4ebfa90fe9c44255cf8950af79090a226dc3f7ce9568a7b9 +size 352700 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPad_accessibility.png index e3db09c35..af9be5ddb 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:aaed474fea4e8d478f8260625b0216528544fb596e4e49b4b527afbfea2e02af -size 765060 +oid sha256:5334bf0b2fc811ec159c27d024e30266b19a7ead384d00f1128946df6a773ee9 +size 793336 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPhone_accessibility.png index c30c961b3..8316161d6 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ManualDayViewSnapshotTests/manualDay.Add_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3e350d2f900c940718e35c1a17c6c3bd90806c7709967547d4e391c01146ba5f -size 571819 +oid sha256:692a596bf7aa4a17320d12c17c06825c34f65e75ec9a40d18524dc1c70714f7e +size 601561 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPad_accessibility.png index 50633f909..502ec9ac3 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6f4f8492e5e2ec3d6459d86b081e0de5523742cfb2c37849b436218c74600ee1 -size 2031769 +oid sha256:ad269b45a191bff02d1aa32666873e3454f4952e34602bff855facdc76c95bdf +size 2047205 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPhone_accessibility.png index 8de3fd03f..986ee5714 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/OnboardingViewSnapshotTests/onboarding.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:273941952b4ee47a3ec724cc31fdad99346fa238d8af17065f9a6bd3af84d24b -size 912480 +oid sha256:7c703bbaf170509e7d8b775f9c0e1f0bffd446106255254d5476f1f65fe98aa7 +size 928505 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPad_accessibility.png index e08e25d3e..1da475a27 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:cd6c3209a1c375343564eb156ddbc0f58b26580f4aa7fe7e219845c98af177b6 -size 1204975 +oid sha256:3e419c89c5b76150cf1e396c33f74fb6dfef9a3c43712e12464b4fc0e5cf5957 +size 1247272 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPhone_accessibility.png index 1be9418fc..99f45c787 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/PersonalizationFeaturesViewSnapshotTests/personalizationFeatures.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a21b809e341880731261a96e9323a2b5229f0e02e59e03e7ebd7dfd63027d9d1 -size 736057 +oid sha256:e842576a0e1f6d49f828390752e54f63c8eeaefc3bd4566feb3e43ed52eeb4fa +size 780931 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPad_accessibility.png index 39728506e..b71ca4cba 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:461168efd6ef1ce6b83ee2ebb9e74dcc511fc0a201d343ffc8f5e10a55a6053f -size 731603 +oid sha256:737aaa082cc1fb3efb77e7c6db7e120d082e3cd188e7eacf78019e8fadaf561d +size 733784 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPhone_accessibility.png index bc9763d72..d325b997f 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/PresenceTimelineListSnapshotTests/presenceTimeline.WithData_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ab7e56a5c992d95bb359f74b6a5fc4d07d20b849b4d9e546055c270791b968ed -size 518094 +oid sha256:d65abb77f80326f0a8f652b4710fc184528a72f9afbd802fe6586bf034f67117 +size 520985 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPad_accessibility.png index 36c55f68e..da68e39d6 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ec0e8e9c3b8d43d7f1fc91deccc479552bcb96b8ec62c709100f32a5b102e759 -size 554395 +oid sha256:03b600aebf4f6aa0880cba981f118a413654c4a3fb0f8c1485431a8bcbf8f770 +size 576491 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPhone_accessibility.png index 12dc558fa..6dac4ab26 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/RecentActivitySummaryViewSnapshotTests/recentActivity.Loaded_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:937b40995c41474a24f35a3446ee1a242cbc48ba55193e6fd4fc77d9b89a8533 -size 367660 +oid sha256:c582bacef7772eee5d6c39ef855db893e5bc3e0b5dab4a0d913d838ac01108ac +size 390702 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPad_accessibility.png index 78a004fae..85ec1dd5a 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f4e59b39d4a3d94ebdefbd98a7b033f5df4b71fa509e3fb7390863c18b71c720 -size 730526 +oid sha256:79b095e1997acad6bc88a574ac0a07ba4c07c91178d2586f0a30ddadc727cdcc +size 747376 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPhone_accessibility.png index 114bed57e..2e604dcf0 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/RegionDaysViewSnapshotTests/regionDays.WithData_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8e0ef6bd96fdba31da82015e7c231da840194ee69f4c3f44abd50c0cfd6d6168 -size 530130 +oid sha256:0198b7358369960f63730e674a3c425e997cb821ecb96f56c32bd5a887230fee +size 549283 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPad_accessibility.png index 77f619a4e..ab36a457e 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a894d13ee33f92fd01539287d5de6cb9c372abc9213e1a74570aa017ad4ffe77 -size 532342 +oid sha256:e886d0bb16543241ca091da9630d9d157469aa73ee08d010273630ac7a8e2a9b +size 562897 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPhone_accessibility.png index ded95f71d..1416a5dea 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ResolutionViewSnapshotTests/resolution.WithIssues_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:ff64ab8c1ef6f371af6561311dd96d4056002fe8475f26ee0404e782f4278847 -size 386379 +oid sha256:c4f262ea08e4c327795c94f9c654c2604fbdfff9197b2aaf902fa54c9c93b173 +size 415683 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPad_accessibility.png index 5c9097651..3f43c4305 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:3c967ee625e7edf22421d41c8d04f42e0f1cc9dc5a7dd9bdf5fee48825aa3443 -size 758702 +oid sha256:11d9f7d0a357b64473afbdbd8cf4eed0a32c6b31d44293bd2ffe7964c5906367 +size 738035 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPhone_accessibility.png index 066a8b1b3..64b0d9ec4 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/SettingsViewSnapshotTests/settings.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b7643404c2377db5fb82f25a44956f3cbfb47ffce0c86e1871d582e7cea95155 -size 640184 +oid sha256:e65cf217685a68776de9916f67ea85221a2798100b97d01d13b455ab0ceb2889 +size 624766 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPad_accessibility.png index be33abf2b..11bc73df0 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:89536ed2d61131d2009690318e72b5470cb89eb7abdfdc4209a371a2be7f8134 -size 1153440 +oid sha256:a2706509c10db95ef1921c85d5d60d07ecc593c7e3817896fd82d391866af263 +size 1179032 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPhone_accessibility.png index 93b7e4821..1cf59f727 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/ShareEvidenceFeaturesViewSnapshotTests/shareEvidenceFeatures.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7f8cb5dc0f0cf08defc474757773fa005ec2b4b24de0cbbd6e6fd8925e32879c -size 737878 +oid sha256:59cdf85c016873afadbe672ff9461608c0d8b360cc7976ab158b1fbc47a15328 +size 763239 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPad_accessibility.png index ef1a47508..34e198ca7 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b8e26af1408632fab5a851a4864ac4471ad5f349f5ab952dcef1925ec2594663 -size 1732364 +oid sha256:23899bbc1ed69c86fb1a9d8f4c3d0101dd455add5e684b964fb4dc8391e0045e +size 1648906 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPhone_accessibility.png index 2bd1cabe8..07a338b5c 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/SiriFeaturesViewSnapshotTests/siriFeatures.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e79792bd7f23a0768d4693222304c79154dfdd32973fb43ae5e0984f854e1f5b -size 1336676 +oid sha256:a69931e161458a42325db173eb8d3c8a42deec0b39f769507754446a268ce891 +size 1273129 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/TodayWidgetViewSnapshotTests/todayWidget.SingleRegion_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/TodayWidgetViewSnapshotTests/todayWidget.SingleRegion_accessibility.png index 2e57aab08..8fb8700fa 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/TodayWidgetViewSnapshotTests/todayWidget.SingleRegion_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/TodayWidgetViewSnapshotTests/todayWidget.SingleRegion_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:62220d78b2e8628d2ab4974fe109820ed54096ef32526fb244ce3129cbd037d7 -size 43053 +oid sha256:8bc86ef1f8c3b3f445830fa30079f83b389ecd3fbf0c6fb58b01d9d796a05a36 +size 43463 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPad_accessibility.png index 22382d9b3..89415207f 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:29e23e17e2ab911725216f2995cc4a8b4618ac045f8db9d84ac48f73d44c047e -size 468577 +oid sha256:f9f9759fb0ac96a6c2c0ba32d8368cff35eb3d04e4e65d9896457b8bdde2916a +size 478001 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPhone_accessibility.png index 635fdfcb8..eed0d830f 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/WhereLifecycleFailureViewSnapshotTests/lifecycleFailure.CommittedResetCleanup_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfafd7c68b96f4a417e813bdb9fcc871afbd238dd1a89f8d3563f3074bb90aa9 -size 313231 +oid sha256:822eada628843ae5fb434d8efa35b0fb133b1df618c0055a6e8ed179bd8ae5ce +size 323084 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPad_accessibility.png index fb20492a3..e66d13697 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:631a8de6ce367f7156c281384e602115239ad5dc299cb9a048a0aab8f5f1aa35 -size 2830754 +oid sha256:c0334cdeb435b0e2f4e93247b65d8a6068f4ce1c1f6d615c0ade41329c06ffa3 +size 2862093 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPhone_accessibility.png index ea9ce7bdf..93958df04 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/WidgetFeaturesViewSnapshotTests/widgetFeatures.Default_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:d709cccc4b02734b123d5790508e40ddd47584fc45ecc7ee752067eddbf450d2 -size 1679269 +oid sha256:07fed834ab60013497a278c3d0161bf6889b4514c7ae2149e12fe3b54fd5c103 +size 1620858 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/YearTotalsWidgetViewSnapshotTests/yearTotalsWidget.Ranked_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/YearTotalsWidgetViewSnapshotTests/yearTotalsWidget.Ranked_accessibility.png index 3cf8da4b0..e7e973d87 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/YearTotalsWidgetViewSnapshotTests/yearTotalsWidget.Ranked_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/YearTotalsWidgetViewSnapshotTests/yearTotalsWidget.Ranked_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:6d1478f1a255718139ead3ca83eae99ce023e02df7b825a67e64d7db8537d707 -size 93146 +oid sha256:dc3a51db87c851c51a172e74d35515c9a27c7b61b857e27be5b61d847c660fbc +size 95942 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPad_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPad_accessibility.png index dae390b0f..fa63ed0ba 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPad_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPad_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:556fe0890da7c20e1d109b6573db89246f827517f16875bca7bc368390fc7b67 -size 3565301 +oid sha256:5e1576ee100544725ebb9c548a6cc29b47bcca74b25cb341a2f3d68546784b30 +size 5121446 diff --git a/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPhone_accessibility.png b/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPhone_accessibility.png index bc6ef4505..b8e065709 100644 --- a/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPhone_accessibility.png +++ b/Where/WhereUI/SnapshotTests/__Snapshots__/YearViewSnapshotTests/year.Loaded_iPhone_accessibility.png @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fee23b51b281d1e8d95a4b487222a3f43105c7f889b6bca47850c4e24dfda0ea -size 3183826 +oid sha256:2b0cb4bb4678aae94d2c5b9ad8e696c08d6cb05bb3ee9a07f562b1f28e222129 +size 4777342