├── .github └── workflows │ ├── package.yml │ ├── sample_app.yml │ └── test.yml ├── .gitignore ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Assets └── demo.gif ├── ButtonDemoTests └── ButtonDemoTests.swift ├── ButtonDemoUITests ├── ButtonDemoUITests.swift └── ButtonDemoUITestsLaunchTests.swift ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── SampleApp ├── ButtonDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── ButtonDemo │ ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Background.imageset │ │ ├── Contents.json │ │ └── background.jpg │ └── Contents.json │ ├── ButtonDemoApp.swift │ ├── ContentView.swift │ ├── FontPicker.swift │ ├── Preview Content │ └── Preview Assets.xcassets │ │ └── Contents.json │ └── TitledGroup.swift ├── Sources └── CUIExpandableButton │ ├── CGFloat_Extension.swift │ ├── CUIExpandableButton.swift │ ├── CUIExpandableButton_Modifiers.swift │ ├── CUIExpandableButton_Previews.swift │ ├── CUIStylizedControl.swift │ ├── CUIStylizedWindow.swift │ ├── CUIView.swift │ ├── ChildSizeReader.swift │ ├── CloseButton.swift │ ├── SFSymbolIcon.swift │ └── View_Extension.swift └── Tests └── CUIExpandableButtonTests ├── CUIExpandableButtonTests.swift ├── View_Extension.swift └── __Snapshots__ └── CUIExpandableButtonTests ├── testButtonWithCustomBackgroundColor-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomBackgroundColor-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomBackgroundColor-accessibilityExtraLarge.1.png ├── testButtonWithCustomBackgroundColor-accessibilityLarge.1.png ├── testButtonWithCustomBackgroundColor-accessibilityMedium.1.png ├── testButtonWithCustomBackgroundColor-extraExtraExtraLarge.1.png ├── testButtonWithCustomBackgroundColor-extraExtraLarge.1.png ├── testButtonWithCustomBackgroundColor-extraLarge.1.png ├── testButtonWithCustomBackgroundColor-extraSmall.1.png ├── testButtonWithCustomBackgroundColor-large.1.png ├── testButtonWithCustomBackgroundColor-medium.1.png ├── testButtonWithCustomBackgroundColor-small.1.png ├── testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithCustomCornerRadiusCollapsed-accessibilityLarge.1.png ├── testButtonWithCustomCornerRadiusCollapsed-accessibilityMedium.1.png ├── testButtonWithCustomCornerRadiusCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusCollapsed-extraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusCollapsed-extraLarge.1.png ├── testButtonWithCustomCornerRadiusCollapsed-extraSmall.1.png ├── testButtonWithCustomCornerRadiusCollapsed-large.1.png ├── testButtonWithCustomCornerRadiusCollapsed-medium.1.png ├── testButtonWithCustomCornerRadiusCollapsed-small.1.png ├── testButtonWithCustomCornerRadiusExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusExpanded-accessibilityExtraLarge.1.png ├── testButtonWithCustomCornerRadiusExpanded-accessibilityLarge.1.png ├── testButtonWithCustomCornerRadiusExpanded-accessibilityMedium.1.png ├── testButtonWithCustomCornerRadiusExpanded-extraExtraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusExpanded-extraExtraLarge.1.png ├── testButtonWithCustomCornerRadiusExpanded-extraLarge.1.png ├── testButtonWithCustomCornerRadiusExpanded-extraSmall.1.png ├── testButtonWithCustomCornerRadiusExpanded-large.1.png ├── testButtonWithCustomCornerRadiusExpanded-medium.1.png ├── testButtonWithCustomCornerRadiusExpanded-small.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityLarge.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityMedium.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-extraExtraLarge.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-extraLarge.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-extraSmall.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-large.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-medium.1.png ├── testButtonWithCustomIconAndLongTitleExpandedWithHiddenIconAndCloseButton-small.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-accessibilityLarge.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-accessibilityMedium.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-extraExtraLarge.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-extraLarge.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-extraSmall.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-large.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-medium.1.png ├── testButtonWithCustomIconAndSubtitleExpanded-small.1.png ├── testButtonWithCustomIconCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconCollapsed-accessibilityLarge.1.png ├── testButtonWithCustomIconCollapsed-accessibilityMedium.1.png ├── testButtonWithCustomIconCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconCollapsed-extraExtraLarge.1.png ├── testButtonWithCustomIconCollapsed-extraLarge.1.png ├── testButtonWithCustomIconCollapsed-extraSmall.1.png ├── testButtonWithCustomIconCollapsed-large.1.png ├── testButtonWithCustomIconCollapsed-medium.1.png ├── testButtonWithCustomIconCollapsed-small.1.png ├── testButtonWithCustomIconExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpanded-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpanded-accessibilityLarge.1.png ├── testButtonWithCustomIconExpanded-accessibilityMedium.1.png ├── testButtonWithCustomIconExpanded-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpanded-extraExtraLarge.1.png ├── testButtonWithCustomIconExpanded-extraLarge.1.png ├── testButtonWithCustomIconExpanded-extraSmall.1.png ├── testButtonWithCustomIconExpanded-large.1.png ├── testButtonWithCustomIconExpanded-medium.1.png ├── testButtonWithCustomIconExpanded-small.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-accessibilityLarge.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-accessibilityMedium.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-extraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-extraLarge.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-extraSmall.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-large.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-medium.1.png ├── testButtonWithCustomIconExpandedWithForegroundColor-small.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityMedium.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-extraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-extraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-extraSmall.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-large.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-medium.1.png ├── testButtonWithCustomIconExpandedWithHiddenCloseButton-small.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityMedium.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-extraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-extraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-extraSmall.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-large.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-medium.1.png ├── testButtonWithCustomIconExpandedWithHiddenHeader-small.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityMedium.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-extraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-extraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-extraSmall.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-large.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-medium.1.png ├── testButtonWithCustomIconExpandedWithHiddenIcon-small.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityMedium.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-extraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-extraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-extraSmall.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-large.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-medium.1.png ├── testButtonWithCustomIconExpandedWithHiddenSeparator-small.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityMedium.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-extraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-extraLarge.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-extraSmall.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-large.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-medium.1.png ├── testButtonWithCustomIconExpandedWithHiddenTitle-small.1.png ├── testButtonWithCustomIconExpandedWithTitle-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithTitle-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithTitle-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithTitle-accessibilityLarge.1.png ├── testButtonWithCustomIconExpandedWithTitle-accessibilityMedium.1.png ├── testButtonWithCustomIconExpandedWithTitle-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithTitle-extraExtraLarge.1.png ├── testButtonWithCustomIconExpandedWithTitle-extraLarge.1.png ├── testButtonWithCustomIconExpandedWithTitle-extraSmall.1.png ├── testButtonWithCustomIconExpandedWithTitle-large.1.png ├── testButtonWithCustomIconExpandedWithTitle-medium.1.png ├── testButtonWithCustomIconExpandedWithTitle-small.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityLarge.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityMedium.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-extraExtraLarge.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-extraLarge.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-extraSmall.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-large.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-medium.1.png ├── testButtonWithCustomIconTitleAndSubtitleExpanded-small.1.png ├── testButtonWithCustomLargeIconCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomLargeIconCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomLargeIconCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithCustomLargeIconCollapsed-accessibilityLarge.1.png ├── testButtonWithCustomLargeIconCollapsed-accessibilityMedium.1.png ├── testButtonWithCustomLargeIconCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithCustomLargeIconCollapsed-extraExtraLarge.1.png ├── testButtonWithCustomLargeIconCollapsed-extraLarge.1.png ├── testButtonWithCustomLargeIconCollapsed-extraSmall.1.png ├── testButtonWithCustomLargeIconCollapsed-large.1.png ├── testButtonWithCustomLargeIconCollapsed-medium.1.png ├── testButtonWithCustomLargeIconCollapsed-small.1.png ├── testButtonWithCustomLargeIconExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomLargeIconExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomLargeIconExpanded-accessibilityExtraLarge.1.png ├── testButtonWithCustomLargeIconExpanded-accessibilityLarge.1.png ├── testButtonWithCustomLargeIconExpanded-accessibilityMedium.1.png ├── testButtonWithCustomLargeIconExpanded-extraExtraExtraLarge.1.png ├── testButtonWithCustomLargeIconExpanded-extraExtraLarge.1.png ├── testButtonWithCustomLargeIconExpanded-extraLarge.1.png ├── testButtonWithCustomLargeIconExpanded-extraSmall.1.png ├── testButtonWithCustomLargeIconExpanded-large.1.png ├── testButtonWithCustomLargeIconExpanded-medium.1.png ├── testButtonWithCustomLargeIconExpanded-small.1.png ├── testButtonWithCustomSubTitleFont-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomSubTitleFont-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomSubTitleFont-accessibilityExtraLarge.1.png ├── testButtonWithCustomSubTitleFont-accessibilityLarge.1.png ├── testButtonWithCustomSubTitleFont-accessibilityMedium.1.png ├── testButtonWithCustomSubTitleFont-extraExtraExtraLarge.1.png ├── testButtonWithCustomSubTitleFont-extraExtraLarge.1.png ├── testButtonWithCustomSubTitleFont-extraLarge.1.png ├── testButtonWithCustomSubTitleFont-extraSmall.1.png ├── testButtonWithCustomSubTitleFont-large.1.png ├── testButtonWithCustomSubTitleFont-medium.1.png ├── testButtonWithCustomSubTitleFont-small.1.png ├── testButtonWithCustomTallIconCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomTallIconCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomTallIconCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithCustomTallIconCollapsed-accessibilityLarge.1.png ├── testButtonWithCustomTallIconCollapsed-accessibilityMedium.1.png ├── testButtonWithCustomTallIconCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithCustomTallIconCollapsed-extraExtraLarge.1.png ├── testButtonWithCustomTallIconCollapsed-extraLarge.1.png ├── testButtonWithCustomTallIconCollapsed-extraSmall.1.png ├── testButtonWithCustomTallIconCollapsed-large.1.png ├── testButtonWithCustomTallIconCollapsed-medium.1.png ├── testButtonWithCustomTallIconCollapsed-small.1.png ├── testButtonWithCustomTallIconExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomTallIconExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomTallIconExpanded-accessibilityExtraLarge.1.png ├── testButtonWithCustomTallIconExpanded-accessibilityLarge.1.png ├── testButtonWithCustomTallIconExpanded-accessibilityMedium.1.png ├── testButtonWithCustomTallIconExpanded-extraExtraExtraLarge.1.png ├── testButtonWithCustomTallIconExpanded-extraExtraLarge.1.png ├── testButtonWithCustomTallIconExpanded-extraLarge.1.png ├── testButtonWithCustomTallIconExpanded-extraSmall.1.png ├── testButtonWithCustomTallIconExpanded-large.1.png ├── testButtonWithCustomTallIconExpanded-medium.1.png ├── testButtonWithCustomTallIconExpanded-small.1.png ├── testButtonWithCustomTitleFont-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomTitleFont-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomTitleFont-accessibilityExtraLarge.1.png ├── testButtonWithCustomTitleFont-accessibilityLarge.1.png ├── testButtonWithCustomTitleFont-accessibilityMedium.1.png ├── testButtonWithCustomTitleFont-extraExtraExtraLarge.1.png ├── testButtonWithCustomTitleFont-extraExtraLarge.1.png ├── testButtonWithCustomTitleFont-extraLarge.1.png ├── testButtonWithCustomTitleFont-extraSmall.1.png ├── testButtonWithCustomTitleFont-large.1.png ├── testButtonWithCustomTitleFont-medium.1.png ├── testButtonWithCustomTitleFont-small.1.png ├── testButtonWithCustomWideIconCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomWideIconCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomWideIconCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithCustomWideIconCollapsed-accessibilityLarge.1.png ├── testButtonWithCustomWideIconCollapsed-accessibilityMedium.1.png ├── testButtonWithCustomWideIconCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithCustomWideIconCollapsed-extraExtraLarge.1.png ├── testButtonWithCustomWideIconCollapsed-extraLarge.1.png ├── testButtonWithCustomWideIconCollapsed-extraSmall.1.png ├── testButtonWithCustomWideIconCollapsed-large.1.png ├── testButtonWithCustomWideIconCollapsed-medium.1.png ├── testButtonWithCustomWideIconCollapsed-small.1.png ├── testButtonWithCustomWideIconExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithCustomWideIconExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithCustomWideIconExpanded-accessibilityExtraLarge.1.png ├── testButtonWithCustomWideIconExpanded-accessibilityLarge.1.png ├── testButtonWithCustomWideIconExpanded-accessibilityMedium.1.png ├── testButtonWithCustomWideIconExpanded-extraExtraExtraLarge.1.png ├── testButtonWithCustomWideIconExpanded-extraExtraLarge.1.png ├── testButtonWithCustomWideIconExpanded-extraLarge.1.png ├── testButtonWithCustomWideIconExpanded-extraSmall.1.png ├── testButtonWithCustomWideIconExpanded-large.1.png ├── testButtonWithCustomWideIconExpanded-medium.1.png ├── testButtonWithCustomWideIconExpanded-small.1.png ├── testButtonWithHiddenBackgroundCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithHiddenBackgroundCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithHiddenBackgroundCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithHiddenBackgroundCollapsed-accessibilityLarge.1.png ├── testButtonWithHiddenBackgroundCollapsed-accessibilityMedium.1.png ├── testButtonWithHiddenBackgroundCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithHiddenBackgroundCollapsed-extraExtraLarge.1.png ├── testButtonWithHiddenBackgroundCollapsed-extraLarge.1.png ├── testButtonWithHiddenBackgroundCollapsed-extraSmall.1.png ├── testButtonWithHiddenBackgroundCollapsed-large.1.png ├── testButtonWithHiddenBackgroundCollapsed-medium.1.png ├── testButtonWithHiddenBackgroundCollapsed-small.1.png ├── testButtonWithHiddenBackgroundExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithHiddenBackgroundExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithHiddenBackgroundExpanded-accessibilityExtraLarge.1.png ├── testButtonWithHiddenBackgroundExpanded-accessibilityLarge.1.png ├── testButtonWithHiddenBackgroundExpanded-accessibilityMedium.1.png ├── testButtonWithHiddenBackgroundExpanded-extraExtraExtraLarge.1.png ├── testButtonWithHiddenBackgroundExpanded-extraExtraLarge.1.png ├── testButtonWithHiddenBackgroundExpanded-extraLarge.1.png ├── testButtonWithHiddenBackgroundExpanded-extraSmall.1.png ├── testButtonWithHiddenBackgroundExpanded-large.1.png ├── testButtonWithHiddenBackgroundExpanded-medium.1.png ├── testButtonWithHiddenBackgroundExpanded-small.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityExtraExtraLarge.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityExtraLarge.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityLarge.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityMedium.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraExtraExtraLarge.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraExtraLarge.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraLarge.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraSmall.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-large.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-medium.1.png ├── testButtonWithHiddenIconAndTitleSubtitleDisplayed-small.1.png ├── testButtonWithHiddenIconCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithHiddenIconCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithHiddenIconCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithHiddenIconCollapsed-accessibilityLarge.1.png ├── testButtonWithHiddenIconCollapsed-accessibilityMedium.1.png ├── testButtonWithHiddenIconCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithHiddenIconCollapsed-extraExtraLarge.1.png ├── testButtonWithHiddenIconCollapsed-extraLarge.1.png ├── testButtonWithHiddenIconCollapsed-extraSmall.1.png ├── testButtonWithHiddenIconCollapsed-large.1.png ├── testButtonWithHiddenIconCollapsed-medium.1.png ├── testButtonWithHiddenIconCollapsed-small.1.png ├── testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraLarge.1.png ├── testButtonWithNoIconAndSubtitleExpanded-accessibilityLarge.1.png ├── testButtonWithNoIconAndSubtitleExpanded-accessibilityMedium.1.png ├── testButtonWithNoIconAndSubtitleExpanded-extraExtraExtraLarge.1.png ├── testButtonWithNoIconAndSubtitleExpanded-extraExtraLarge.1.png ├── testButtonWithNoIconAndSubtitleExpanded-extraLarge.1.png ├── testButtonWithNoIconAndSubtitleExpanded-extraSmall.1.png ├── testButtonWithNoIconAndSubtitleExpanded-large.1.png ├── testButtonWithNoIconAndSubtitleExpanded-medium.1.png ├── testButtonWithNoIconAndSubtitleExpanded-small.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityLarge.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityMedium.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-extraExtraLarge.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-extraLarge.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-extraSmall.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-large.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-medium.1.png ├── testButtonWithNoIconTitleAndSubtitleExpanded-small.1.png ├── testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraLarge.1.png ├── testButtonWithSFIconAndSubtitleExpanded-accessibilityLarge.1.png ├── testButtonWithSFIconAndSubtitleExpanded-accessibilityMedium.1.png ├── testButtonWithSFIconAndSubtitleExpanded-extraExtraExtraLarge.1.png ├── testButtonWithSFIconAndSubtitleExpanded-extraExtraLarge.1.png ├── testButtonWithSFIconAndSubtitleExpanded-extraLarge.1.png ├── testButtonWithSFIconAndSubtitleExpanded-extraSmall.1.png ├── testButtonWithSFIconAndSubtitleExpanded-large.1.png ├── testButtonWithSFIconAndSubtitleExpanded-medium.1.png ├── testButtonWithSFIconAndSubtitleExpanded-small.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityLarge.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityMedium.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-extraExtraLarge.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-extraLarge.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-extraSmall.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-large.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-medium.1.png ├── testButtonWithSFIconTitleAndSubtitleExpanded-small.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityLarge.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-accessibilityMedium.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-extraExtraLarge.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-extraLarge.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-extraSmall.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-large.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-medium.1.png ├── testButtonWithSFSymbolAndLongTitleExpandedWithHiddenIconAndCloseButton-small.1.png ├── testButtonWithSFSymbolCollpased-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolCollpased-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolCollpased-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolCollpased-accessibilityLarge.1.png ├── testButtonWithSFSymbolCollpased-accessibilityMedium.1.png ├── testButtonWithSFSymbolCollpased-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolCollpased-extraExtraLarge.1.png ├── testButtonWithSFSymbolCollpased-extraLarge.1.png ├── testButtonWithSFSymbolCollpased-extraSmall.1.png ├── testButtonWithSFSymbolCollpased-large.1.png ├── testButtonWithSFSymbolCollpased-medium.1.png ├── testButtonWithSFSymbolCollpased-small.1.png ├── testButtonWithSFSymbolExpanded-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpanded-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpanded-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpanded-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpanded-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpanded-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpanded-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpanded-extraLarge.1.png ├── testButtonWithSFSymbolExpanded-extraSmall.1.png ├── testButtonWithSFSymbolExpanded-large.1.png ├── testButtonWithSFSymbolExpanded-medium.1.png ├── testButtonWithSFSymbolExpanded-small.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-extraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-extraSmall.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-large.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-medium.1.png ├── testButtonWithSFSymbolExpandedHiddenCloseButton-small.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-extraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-extraSmall.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-large.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-medium.1.png ├── testButtonWithSFSymbolExpandedHiddenHeader-small.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-extraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-extraSmall.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-large.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-medium.1.png ├── testButtonWithSFSymbolExpandedHiddenIcon-small.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-extraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-extraSmall.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-large.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-medium.1.png ├── testButtonWithSFSymbolExpandedHiddenSeparator-small.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-extraLarge.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-extraSmall.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-large.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-medium.1.png ├── testButtonWithSFSymbolExpandedHiddenTitle-small.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-extraLarge.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-extraSmall.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-large.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-medium.1.png ├── testButtonWithSFSymbolExpandedWithForegroundColor-small.1.png ├── testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithTitle-accessibilityLarge.1.png ├── testButtonWithSFSymbolExpandedWithTitle-accessibilityMedium.1.png ├── testButtonWithSFSymbolExpandedWithTitle-extraExtraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithTitle-extraExtraLarge.1.png ├── testButtonWithSFSymbolExpandedWithTitle-extraLarge.1.png ├── testButtonWithSFSymbolExpandedWithTitle-extraSmall.1.png ├── testButtonWithSFSymbolExpandedWithTitle-large.1.png ├── testButtonWithSFSymbolExpandedWithTitle-medium.1.png ├── testButtonWithSFSymbolExpandedWithTitle-small.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityLarge.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityMedium.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-extraExtraLarge.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-extraLarge.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-extraSmall.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-large.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-medium.1.png ├── testButtonWithSubtitleDisplayedWhenCollapsed-small.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityLarge.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityMedium.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraExtraLarge.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraLarge.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraSmall.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-large.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-medium.1.png ├── testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-small.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-accessibilityExtraExtraExtraLarge.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-accessibilityExtraExtraLarge.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-accessibilityExtraLarge.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-accessibilityLarge.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-accessibilityMedium.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-extraExtraLarge.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-extraLarge.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-extraSmall.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-large.1.png ├── testButtonWithTitleDisplayedWhenCollapsed-medium.1.png └── testButtonWithTitleDisplayedWhenCollapsed-small.1.png /.github/workflows/package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/.github/workflows/package.yml -------------------------------------------------------------------------------- /.github/workflows/sample_app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/.github/workflows/sample_app.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Assets/demo.gif -------------------------------------------------------------------------------- /ButtonDemoTests/ButtonDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/ButtonDemoTests/ButtonDemoTests.swift -------------------------------------------------------------------------------- /ButtonDemoUITests/ButtonDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/ButtonDemoUITests/ButtonDemoUITests.swift -------------------------------------------------------------------------------- /ButtonDemoUITests/ButtonDemoUITestsLaunchTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/ButtonDemoUITests/ButtonDemoUITestsLaunchTests.swift -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/README.md -------------------------------------------------------------------------------- /SampleApp/ButtonDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SampleApp/ButtonDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SampleApp/ButtonDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SampleApp/ButtonDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/Assets.xcassets/Background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/Assets.xcassets/Background.imageset/Contents.json -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/Assets.xcassets/Background.imageset/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/Assets.xcassets/Background.imageset/background.jpg -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/ButtonDemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/ButtonDemoApp.swift -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/ContentView.swift -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/FontPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/FontPicker.swift -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SampleApp/ButtonDemo/TitledGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/SampleApp/ButtonDemo/TitledGroup.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CGFloat_Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CGFloat_Extension.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CUIExpandableButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CUIExpandableButton.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CUIExpandableButton_Modifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CUIExpandableButton_Modifiers.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CUIExpandableButton_Previews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CUIExpandableButton_Previews.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CUIStylizedControl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CUIStylizedControl.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CUIStylizedWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CUIStylizedWindow.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CUIView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CUIView.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/ChildSizeReader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/ChildSizeReader.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/CloseButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/CloseButton.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/SFSymbolIcon.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/SFSymbolIcon.swift -------------------------------------------------------------------------------- /Sources/CUIExpandableButton/View_Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Sources/CUIExpandableButton/View_Extension.swift -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/CUIExpandableButtonTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/CUIExpandableButtonTests.swift -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/View_Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/View_Extension.swift -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomBackgroundColor-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomCornerRadiusExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconAndSubtitleExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithForegroundColor-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenCloseButton-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenHeader-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenIcon-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenSeparator-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithHiddenTitle-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconExpandedWithTitle-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomIconTitleAndSubtitleExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomLargeIconExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomSubTitleFont-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTallIconExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomTitleFont-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithCustomWideIconExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenBackgroundExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconAndTitleSubtitleDisplayed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithHiddenIconCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconAndSubtitleExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithNoIconTitleAndSubtitleExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconAndSubtitleExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFIconTitleAndSubtitleExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolCollpased-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpanded-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenCloseButton-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenHeader-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenIcon-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenSeparator-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedHiddenTitle-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithForegroundColor-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSFSymbolExpandedWithTitle-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithSubtitleDisplayedWhenCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleAndSubtitleDisplayedWhenCollapsed-small.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityMedium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-accessibilityMedium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraExtraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraExtraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraExtraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraLarge.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraLarge.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraSmall.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-extraSmall.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-large.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-large.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-medium.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-medium.1.png -------------------------------------------------------------------------------- /Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-small.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robhasacamera/CUIExpandableButton/HEAD/Tests/CUIExpandableButtonTests/__Snapshots__/CUIExpandableButtonTests/testButtonWithTitleDisplayedWhenCollapsed-small.1.png --------------------------------------------------------------------------------