diff --git a/Tests/MisticaTests/UI/SheetTests.swift b/Tests/MisticaTests/UI/SheetTests.swift index 030151af..c56249cd 100644 --- a/Tests/MisticaTests/UI/SheetTests.swift +++ b/Tests/MisticaTests/UI/SheetTests.swift @@ -189,26 +189,40 @@ final class SheetTests: XCTestCase { // MARK: Action list type - func testActionWithoutUrls() { + func testActionListWithoutUrls() { assertSnapshotForAllBrandsAndStyles( as: .image(on: .iPhoneSe), viewBuilder: sheetView( title: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", subtitle: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", description: "Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", - content: makeActionContent() + content: makeActionListContent() ) ) } - func testActionWithUrls() { + func testActionListWithUrls() { assertSnapshotForAllBrandsAndStyles( as: .image(on: .iPhoneSe), viewBuilder: sheetView( title: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", subtitle: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", description: "Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", - content: makeActionContent(url: iconPath, urlDark: iconPath) + content: makeActionListContent(url: iconPath, urlDark: iconPath) + ) + ) + } + + // MARK: Actions + + func testAction() { + assertSnapshotForAllBrandsAndStyles( + as: .image(on: .iPhoneSe), + viewBuilder: sheetView( + title: "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", + subtitle: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", + description: "Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.", + content: makeActionContent() ) ) } @@ -270,7 +284,7 @@ private extension SheetTests { return [content] } - func makeActionContent( + func makeActionListContent( url: String? = nil, urlDark: String? = nil ) -> [SheetList] { @@ -287,6 +301,30 @@ private extension SheetTests { ) rows.append(item) } + let content = SheetList( + id: UUID().uuidString, + listType: .actionList(items: rows), + autoSubmit: true, + selectedId: [] + ) + + return [content] + } + + func makeActionContent() -> [SheetList] { + var rows: [ActionItem] = [] + for index in 1 ... 10 { + let style = index <= 5 ? Button.Style.primary : .link + let rightImage = index <= 5 ? nil : Button.RightImage.chevron + + let item = ActionItem( + id: "\(index)", + style: style, + title: "Title \(index)", + rightImage: rightImage + ) + rows.append(item) + } let content = SheetList( id: UUID().uuidString, listType: .actions(items: rows), diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-blau-dark-style.png new file mode 100644 index 00000000..346e36ad Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-blau-style.png new file mode 100644 index 00000000..50f888f5 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-movistar-dark-style.png new file mode 100644 index 00000000..0ec075b3 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-movistar-style.png new file mode 100644 index 00000000..355fd01a Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-o2-dark-style.png new file mode 100644 index 00000000..c3354848 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-o2-style.png new file mode 100644 index 00000000..9a361168 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivo-dark-style.png new file mode 100644 index 00000000..00cfdb6e Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivo-style.png new file mode 100644 index 00000000..4e7ff4cf Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivoNew-dark-style.png new file mode 100644 index 00000000..32953338 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivoNew-style.png new file mode 100644 index 00000000..3d9bdaa1 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testAction.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-blau-dark-style.png new file mode 100644 index 00000000..6cc8202a Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-blau-style.png new file mode 100644 index 00000000..d85a43eb Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-movistar-dark-style.png new file mode 100644 index 00000000..2e887cae Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-movistar-style.png new file mode 100644 index 00000000..399c3999 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2-dark-style.png new file mode 100644 index 00000000..517c0df0 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2-style.png new file mode 100644 index 00000000..c4637914 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivo-dark-style.png new file mode 100644 index 00000000..0ae9f65e Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivo-style.png new file mode 100644 index 00000000..4ae73bf8 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivoNew-dark-style.png new file mode 100644 index 00000000..5be19db4 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivoNew-style.png new file mode 100644 index 00000000..2f51575e Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithUrls.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-blau-dark-style.png new file mode 100644 index 00000000..1cef9f15 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-blau-style.png new file mode 100644 index 00000000..e461eaa0 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-movistar-dark-style.png new file mode 100644 index 00000000..44ea5f3e Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-movistar-style.png new file mode 100644 index 00000000..8f1312a0 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2-dark-style.png new file mode 100644 index 00000000..25098d5f Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2-style.png new file mode 100644 index 00000000..8b3711e1 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivo-dark-style.png new file mode 100644 index 00000000..b715ab3b Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivo-style.png new file mode 100644 index 00000000..467e9574 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivoNew-dark-style.png new file mode 100644 index 00000000..60f30227 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivoNew-style.png new file mode 100644 index 00000000..4b26ed86 Binary files /dev/null and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionListWithoutUrls.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-blau-dark-style.png deleted file mode 100644 index eb1a784a..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-blau-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-blau-style.png deleted file mode 100644 index 754d40a7..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-blau-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-movistar-dark-style.png deleted file mode 100644 index cc4fef5d..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-movistar-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-movistar-style.png deleted file mode 100644 index e1de761c..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-movistar-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-o2-dark-style.png deleted file mode 100644 index 4b4df895..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-o2-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-o2-style.png deleted file mode 100644 index e9352143..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-o2-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivo-dark-style.png deleted file mode 100644 index 3272695d..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivo-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivo-style.png deleted file mode 100644 index d7c5a97b..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivo-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivoNew-dark-style.png deleted file mode 100644 index 3272695d..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivoNew-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivoNew-style.png deleted file mode 100644 index d7c5a97b..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithUrls.with-vivoNew-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-blau-dark-style.png deleted file mode 100644 index 793117a1..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-blau-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-blau-style.png deleted file mode 100644 index 123d527d..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-blau-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-movistar-dark-style.png deleted file mode 100644 index f29b543b..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-movistar-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-movistar-style.png deleted file mode 100644 index c9c48b15..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-movistar-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-o2-dark-style.png deleted file mode 100644 index c93a3a54..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-o2-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-o2-style.png deleted file mode 100644 index 16e48717..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-o2-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivo-dark-style.png deleted file mode 100644 index c76f4152..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivo-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivo-style.png deleted file mode 100644 index 765610a4..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivo-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivoNew-dark-style.png deleted file mode 100644 index c76f4152..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivoNew-dark-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivoNew-style.png deleted file mode 100644 index 765610a4..00000000 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testActionWithoutUrls.with-vivoNew-style.png and /dev/null differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-dark-style.png index cb06af9a..8b421443 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-style.png index 5fbc1f02..04810626 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-dark-style.png index 4feb13b9..3f94d8cb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-style.png index fba34c63..189df08b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-dark-style.png index 493f3e62..61251641 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-style.png index d624d463..fb0d0d3e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-dark-style.png index 556ff745..18a28936 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-style.png index 2725a132..bb67e9bf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-dark-style.png index 556ff745..66bf6785 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-style.png index 2725a132..d53f7ce3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIcons.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-dark-style.png index cb06af9a..8b421443 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-style.png index 5fbc1f02..04810626 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-dark-style.png index 4feb13b9..3f94d8cb 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-style.png index fba34c63..189df08b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-dark-style.png index 493f3e62..61251641 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-style.png index d624d463..fb0d0d3e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-dark-style.png index 556ff745..18a28936 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-style.png index 2725a132..bb67e9bf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-dark-style.png index 556ff745..66bf6785 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-style.png index 2725a132..d53f7ce3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithIconsAndWithoutDescriptions.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-dark-style.png index b65058aa..53e84f9a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-style.png index 6ab15ca9..d6d8fe36 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-dark-style.png index 613b053d..c648674b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-style.png index b53578a5..2bfe0374 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-dark-style.png index 3b7840f1..23fb0d0f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-style.png index 7d2c4953..6384f962 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-dark-style.png index c77cce83..172c46b8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-style.png index d7da5b59..09c675dd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-dark-style.png index c77cce83..2a04cb5b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-style.png index d7da5b59..28e3c269 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithSmallIcons.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-dark-style.png index b7be4d73..06b5f2af 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-style.png index bf388014..b9748235 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-dark-style.png index ab24982e..7084890b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-style.png index 68c7b114..061ab158 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-dark-style.png index a7da08e4..023ef80d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-style.png index 6920adbd..5c6ce8ef 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-dark-style.png index 0c0cfdcd..92cc35e4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-style.png index 75b49e62..a6e20bfa 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-dark-style.png index 0c0cfdcd..97cf4def 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-style.png index 75b49e62..c625eabd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIcons.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-dark-style.png index b7be4d73..06b5f2af 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-style.png index bf388014..b9748235 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-dark-style.png index ab24982e..7084890b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-style.png index 68c7b114..061ab158 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-dark-style.png index a7da08e4..023ef80d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-style.png index 6920adbd..5c6ce8ef 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-dark-style.png index 0c0cfdcd..92cc35e4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-style.png index 75b49e62..a6e20bfa 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-dark-style.png index 0c0cfdcd..97cf4def 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-style.png index 75b49e62..c625eabd 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testContentWithoutIconsAndDescriptions.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-dark-style.png index ac532769..e6544830 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-style.png index 2bbd7279..8789ab57 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-dark-style.png index 52f65844..17648054 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-style.png index 66e673cf..16d87b9a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-dark-style.png index 1be422d6..e5c04bb0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-style.png index 4a4f2618..63a2923a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-dark-style.png index db8f1fd0..f3962a48 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-style.png index b86167b7..2b264151 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-dark-style.png index db8f1fd0..f3962a48 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-style.png index b86167b7..2b264151 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testEmptyHeader.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-dark-style.png index 54886c66..93961c5e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-style.png index 224dfbd8..fd676896 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-dark-style.png index d87fe1b0..e40b4b1b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-style.png index 1f37310f..cc85a15c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-dark-style.png index 3af18e91..479096a9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-style.png index a936098d..39680d05 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-dark-style.png index 3af18e91..479096a9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-style.png index 0ec81b21..885df695 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-dark-style.png index 3af18e91..f57e9805 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-style.png index 0ec81b21..1d0ce37e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-dark-style.png index 54886c66..93961c5e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-style.png index 224dfbd8..fd676896 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-dark-style.png index d87fe1b0..e40b4b1b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-style.png index 1f37310f..cc85a15c 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-dark-style.png index 3af18e91..479096a9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-style.png index a936098d..39680d05 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-dark-style.png index 3af18e91..479096a9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-style.png index 0ec81b21..885df695 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-dark-style.png index 3af18e91..f57e9805 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-style.png index 0ec81b21..1d0ce37e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-dark-style.png index 60de5dd0..84f6759d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-style.png index d62897f5..d9ceb66f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-dark-style.png index e59ebafa..74e559b4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-style.png index 524b73d9..8aeffce8 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-dark-style.png index 79a14a4f..df4c3321 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-style.png index 2a2be245..663fac25 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-dark-style.png index 79a14a4f..df4c3321 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-style.png index 312cc1b0..4ac685a3 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-dark-style.png index 79a14a4f..1482af8e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-style.png index 312cc1b0..6b783167 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-dark-style.png index d68b1113..cebbe601 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-style.png index 7b62d21d..1f834646 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-dark-style.png index c48e7742..302acc7f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-style.png index 068b9abf..940287a4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-dark-style.png index 5ff3c39e..89696e5e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-style.png index a6c06b1c..421eeb70 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-dark-style.png index 5ff3c39e..89696e5e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-style.png index 94089422..4936343f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-dark-style.png index 5ff3c39e..12b6ba60 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-style.png index 94089422..878b5cc6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-dark-style.png index 133aed0f..cd49b89d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-style.png index c1add42a..6cb02268 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-dark-style.png index 2b76ea32..37c0ae41 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-style.png index 1f721302..099511c5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-dark-style.png index c109371c..eb341f50 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-style.png index bd315e0c..0981ca23 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-dark-style.png index c109371c..eb341f50 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-style.png index 6ddac349..f5a04ff7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-dark-style.png index c109371c..f65891ea 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-style.png index 6ddac349..433988c7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-dark-style.png index 9cff5e61..a64d8dc9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-style.png index 6e363d25..8fc08060 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-dark-style.png index d8569deb..cf4d3e19 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-style.png index 888f548f..9c9db856 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-dark-style.png index 35070a2e..06de9f60 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-style.png index 048d430b..ef7a0fff 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-dark-style.png index 94e2c7f6..2145eec0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-style.png index bd1c607c..77144314 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-dark-style.png index 94e2c7f6..67bcae4f 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-style.png index bd1c607c..1ac21f07 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoDescription.with-vivoNew-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-dark-style.png index 0b0d078a..e7e3b74a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-style.png index 6b7b6312..11c5b103 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-blau-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-dark-style.png index 5e4e6b05..1e0e6488 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-style.png index c95b5b73..49a9462a 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-movistar-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-dark-style.png index 50b75a0f..0d30cc65 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-style.png index ba2e9b0c..8c2470d9 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-o2-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-dark-style.png index cd98f6ae..99758bd6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-style.png index b9647305..4019940b 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivo-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-dark-style.png index cd98f6ae..ed735f57 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-style.png index b9647305..dc14abc5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testNoSubtitleAndDescription.with-vivoNew-style.png differ