diff --git a/Sources/Mistica/Components/Sheet/View/Fragments/List/ListFragmentView.swift b/Sources/Mistica/Components/Sheet/View/Fragments/List/ListFragmentView.swift index f8483f94b..d05fe2a02 100644 --- a/Sources/Mistica/Components/Sheet/View/Fragments/List/ListFragmentView.swift +++ b/Sources/Mistica/Components/Sheet/View/Fragments/List/ListFragmentView.swift @@ -96,9 +96,10 @@ private extension ListFragmentView { } func fillListWithInformativeItems(_ items: [InformativeItem]) { - for item in items { + for (index, item) in items.enumerated() { let rowView = InformativeRow(item: item) - stackView.addArrangedSubview(rowView) + let isLastItem = index == items.count - 1 + addRow(rowView, withSeparator: !isLastItem) } } @@ -129,16 +130,7 @@ private extension ListFragmentView { self.stackView.addArrangedSubview(stackView) } - func button(at index: Int, for action: ActionItem) -> Button { - let button = Button( - style: action.style, - title: action.title, - rightImage: action.rightImage - ) - button.tag = index - button.addTarget(self, action: #selector(didTap(action:)), for: .touchUpInside) - return button - } + // MARK: User Interaction @objc private func didTouchItem(_ sender: UILongPressGestureRecognizer) { guard let touchable = sender.view as? Touchable else { return } @@ -207,3 +199,27 @@ extension ListFragmentView: UIGestureRecognizerDelegate { true } } + +// MARK: Utilities + +private extension ListFragmentView { + func addRow(_ row: UIView, withSeparator: Bool = false) { + stackView.addArrangedSubview(row) + + if withSeparator { + let separator = SeparatorView(axis: .horizontal) + stackView.addArrangedSubview(separator) + } + } + + func button(at index: Int, for action: ActionItem) -> Button { + let button = Button( + style: action.style, + title: action.title, + rightImage: action.rightImage + ) + button.tag = index + button.addTarget(self, action: #selector(didTap(action:)), for: .touchUpInside) + return button + } +} diff --git a/Sources/Mistica/Components/Sheet/View/Fragments/List/Rows/InformativeRow.swift b/Sources/Mistica/Components/Sheet/View/Fragments/List/Rows/InformativeRow.swift index af9448915..237ee2d56 100644 --- a/Sources/Mistica/Components/Sheet/View/Fragments/List/Rows/InformativeRow.swift +++ b/Sources/Mistica/Components/Sheet/View/Fragments/List/Rows/InformativeRow.swift @@ -49,7 +49,7 @@ class InformativeRow: UIView { stackView.alignment = .leading stackView.axis = .vertical stackView.isLayoutMarginsRelativeArrangement = true - stackView.layoutMargins = .init(top: 16, left: 0, bottom: 0, right: 0) + stackView.layoutMargins = .init(top: 16, left: 0, bottom: 16, right: 0) return stackView }() 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 170956636..a0b446001 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 5a1525487..b51777581 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 bb05d1eca..5087e4027 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 117b1a73a..fc446caec 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 0defbb79c..05845288e 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 79420bbd7..bd38aa560 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-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-dark-style.png index d31e9c033..1e7be85cc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-style.png index 61915fe38..3b47f6356 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-dark-style.png index 9bfb5eae7..3a30d4150 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-style.png index e55279e59..41bd12e84 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-dark-style.png index 587beeac8..2036327db 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-style.png index 0ea7d2679..1805cf099 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndRegularIcon.with-tu-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 0defbb79c..05845288e 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 333f34d53..e5d9deee1 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 4a7efd3b6..c7069a880 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 06d513e30..87d885e10 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 170956636..a0b446001 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 5a1525487..b51777581 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 bb05d1eca..5087e4027 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 117b1a73a..fc446caec 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 0defbb79c..05845288e 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 79420bbd7..bd38aa560 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-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-dark-style.png index d31e9c033..1e7be85cc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-style.png index 61915fe38..3b47f6356 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-dark-style.png index 9bfb5eae7..3a30d4150 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-style.png index e55279e59..41bd12e84 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-dark-style.png index 587beeac8..2036327db 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-style.png index 0ea7d2679..1805cf099 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithDescriptionAndSmallIcon.with-tu-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 0defbb79c..05845288e 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 333f34d53..e5d9deee1 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 4a7efd3b6..c7069a880 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 06d513e30..87d885e10 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 b8b42fc71..63e9af152 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 f11fe7b03..22b698e79 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 3eacf26a0..703e49b80 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 eb08642a6..1c7676bc5 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 e2240e3f5..569eb6102 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 e6770f711..2b84809d9 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-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-dark-style.png index 3d377f48d..a1f95281e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-style.png index 806da1421..04eddb3d4 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-dark-style.png index c24910dd3..fa3d714e6 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-style.png index 4bf8ccec6..f5300c435 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-dark-style.png index 47aa658bd..48dffcd93 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-style.png index 5d0c71f74..5fdb39011 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndBulletIcon.with-tu-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 e2240e3f5..569eb6102 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 82dc71a13..955d83d2c 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 092f54e00..efbd44413 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 3b286fb7f..13a851213 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 c98f43b54..f7fe8dafb 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 a26be1907..432a856a1 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 adce945ad..20a272bf9 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 02a2a2898..68dd19c23 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 47809c070..7af14cedc 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 ba435327b..69ca27b03 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-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-dark-style.png index 4c74d87b0..944d132dc 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-style.png index 8f13a06c3..df26e1eaf 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-dark-style.png index ab3ef1fd9..8d21d63ac 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-style.png index 52ba376a1..293bcf5c5 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-dark-style.png index 684e03553..c4b42ba98 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-style.png index 9ab614a40..73d786c98 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndRegularIcon.with-tu-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 47809c070..7af14cedc 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 83a2ea5b2..4ae722703 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 9efdafdf5..36ec7bfc3 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 d73b17c00..d55ab362f 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 55f034cfc..584c34951 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 c7316e370..95813fe80 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 e9ff33156..dfa341632 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 9764b273c..e1b205441 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 62c1102b5..91ae31fec 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 53a0f5781..6b92e034e 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-o2New-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-dark-style.png index 28e7f1a91..5ed5b697e 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-style.png index 514101d99..139329fa7 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-o2New-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-dark-style.png index 3bf0373ea..4a4171cc0 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-style.png index 2e578ae8e..910e6e33d 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-telefonica-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-dark-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-dark-style.png index 21871fb54..195bb5317 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-dark-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-dark-style.png differ diff --git a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-style.png b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-style.png index 8b61e5d04..3090c8207 100644 Binary files a/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-style.png and b/Tests/MisticaTests/UI/__Snapshots__/SheetTests/testInformativeWithoutDescriptionAndSmallIcon.with-tu-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 62c1102b5..91ae31fec 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 0d3c25e32..6980166ba 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 effbae0e8..ecdf421e1 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 856e3a25d..2f50e9b38 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