├── .github └── workflows │ ├── build-xcframework.yml │ ├── build.yml │ └── release.yaml ├── .gitignore ├── .spi.yml ├── .swiftpm └── xcode │ └── package.xcworkspace │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── Examples ├── DemoApp │ ├── Demo Watch App │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── DemoApp.swift │ │ └── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── Demo Watch AppTests │ │ ├── DemoWatchPreviewTest.swift │ │ └── DemoWatchSnapshotTest.swift │ ├── DemoApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── DemoApp.xcscheme │ │ │ └── DemoAppTests.xcscheme │ ├── DemoApp.xctestplan │ ├── DemoApp │ │ ├── Assets.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Emerge-Avatar Optimized 1.heic │ │ │ │ ├── Emerge-Avatar Optimized 10.heic │ │ │ │ ├── Emerge-Avatar Optimized 2.heic │ │ │ │ ├── Emerge-Avatar Optimized 3.heic │ │ │ │ ├── Emerge-Avatar Optimized 4.heic │ │ │ │ ├── Emerge-Avatar Optimized 5.heic │ │ │ │ ├── Emerge-Avatar Optimized 6.heic │ │ │ │ ├── Emerge-Avatar Optimized 7.heic │ │ │ │ ├── Emerge-Avatar Optimized 8.heic │ │ │ │ ├── Emerge-Avatar Optimized 9.heic │ │ │ │ └── Emerge-Avatar Optimized.heic │ │ │ ├── Contents.json │ │ │ └── product-image.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── blog15.jpg │ │ ├── ContentView.swift │ │ ├── DemoApp.entitlements │ │ ├── DemoAppApp.swift │ │ ├── EMGTestHandler.swift │ │ ├── Preview Content │ │ │ └── Preview Assets.xcassets │ │ │ │ └── Contents.json │ │ └── TestViews │ │ │ ├── AnyViewPreview.swift │ │ │ ├── ArrayBuilder.swift │ │ │ ├── CodeEntryView.swift │ │ │ ├── EmptyView.swift │ │ │ ├── ExpandingView.swift │ │ │ ├── OSVersionView.swift │ │ │ ├── PreviewVariants.swift │ │ │ ├── RideDetailView.swift │ │ │ ├── RideOptionsView.swift │ │ │ ├── RideShareButton.swift │ │ │ ├── StateView.swift │ │ │ ├── TextView.swift │ │ │ └── UIViewPreviews.swift │ ├── DemoAppTests.xctestplan │ ├── DemoAppTests │ │ ├── DemoAppPreviewTest.swift │ │ └── DemoAppSnapshotTest.swift │ ├── DemoAppUITests │ │ └── DemoAppAccessibilityPreviewTest.swift │ ├── DemoModule │ │ ├── ButtonView.swift │ │ ├── Color.swift │ │ ├── ConversationMessageView.swift │ │ ├── DateView.swift │ │ ├── DemoModule.h │ │ ├── FeatureCardView.swift │ │ ├── HomeMapView.swift │ │ ├── InfoCardView.swift │ │ ├── MessageRow.swift │ │ ├── MessageView.swift │ │ ├── ProductCard.swift │ │ ├── RatingPreviews.swift │ │ ├── RatingView.swift │ │ ├── RowView.swift │ │ └── TripCardView.swift │ └── DemoWatchTests │ │ └── DemoWatchAccessibilityPreviewTest.swift └── UnitTestMigration │ ├── README.md │ ├── UnitTestMigration.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── UnitTestMigration │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── ExampleSnapshotTest_Migrated.swift │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ ├── SnapshotTest.swift │ └── UnitTestMigrationApp.swift │ └── UnitTestMigrationTests │ └── ExampleSnapshotTest.swift ├── LICENSE ├── Package.swift ├── PreviewsSupport ├── PreviewsSupport.xcframework │ ├── Info.plist │ ├── ios-arm64 │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── PreviewsSupport-Swift.h │ │ │ └── PreviewsSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── ios-arm64_x86_64-maccatalyst │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── PreviewsSupport │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── PreviewsSupport-Swift.h │ │ │ │ └── PreviewsSupport.h │ │ │ ├── Modules │ │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ │ ├── arm64-apple-ios-macabi.abi.json │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-macabi.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-macabi.abi.json │ │ │ │ │ ├── x86_64-apple-ios-macabi.swiftdoc │ │ │ │ │ └── x86_64-apple-ios-macabi.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ ├── ios-arm64_x86_64-simulator │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── PreviewsSupport-Swift.h │ │ │ └── PreviewsSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── macos-arm64_x86_64 │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── PreviewsSupport │ │ │ ├── Resources │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── PreviewsSupport-Swift.h │ │ │ │ └── PreviewsSupport.h │ │ │ ├── Modules │ │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ │ ├── arm64-apple-macos.abi.json │ │ │ │ │ ├── arm64-apple-macos.swiftdoc │ │ │ │ │ ├── arm64-apple-macos.swiftinterface │ │ │ │ │ ├── x86_64-apple-macos.abi.json │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ └── x86_64-apple-macos.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ ├── tvos-arm64 │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── PreviewsSupport-Swift.h │ │ │ └── PreviewsSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ ├── arm64-apple-tvos.abi.json │ │ │ │ ├── arm64-apple-tvos.swiftdoc │ │ │ │ └── arm64-apple-tvos.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── tvos-arm64_x86_64-simulator │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── PreviewsSupport-Swift.h │ │ │ └── PreviewsSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ ├── arm64-apple-tvos-simulator.abi.json │ │ │ │ ├── arm64-apple-tvos-simulator.swiftdoc │ │ │ │ ├── arm64-apple-tvos-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-tvos-simulator.abi.json │ │ │ │ ├── x86_64-apple-tvos-simulator.swiftdoc │ │ │ │ └── x86_64-apple-tvos-simulator.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── watchos-arm64_arm64_32_armv7k │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── PreviewsSupport-Swift.h │ │ │ └── PreviewsSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ ├── arm64-apple-watchos.abi.json │ │ │ │ ├── arm64-apple-watchos.swiftdoc │ │ │ │ ├── arm64-apple-watchos.swiftinterface │ │ │ │ ├── arm64_32-apple-watchos.abi.json │ │ │ │ ├── arm64_32-apple-watchos.swiftdoc │ │ │ │ ├── arm64_32-apple-watchos.swiftinterface │ │ │ │ ├── armv7k-apple-watchos.abi.json │ │ │ │ ├── armv7k-apple-watchos.swiftdoc │ │ │ │ └── armv7k-apple-watchos.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── watchos-arm64_x86_64-simulator │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── PreviewsSupport-Swift.h │ │ │ └── PreviewsSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ ├── arm64-apple-watchos-simulator.abi.json │ │ │ │ ├── arm64-apple-watchos-simulator.swiftdoc │ │ │ │ ├── arm64-apple-watchos-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-watchos-simulator.abi.json │ │ │ │ ├── x86_64-apple-watchos-simulator.swiftdoc │ │ │ │ └── x86_64-apple-watchos-simulator.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── xros-arm64 │ │ └── PreviewsSupport.framework │ │ │ ├── Headers │ │ │ ├── PreviewsSupport-Swift.h │ │ │ └── PreviewsSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PreviewsSupport.swiftmodule │ │ │ │ ├── arm64-apple-xros.abi.json │ │ │ │ ├── arm64-apple-xros.swiftdoc │ │ │ │ └── arm64-apple-xros.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── PreviewsSupport │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── xros-arm64_x86_64-simulator │ │ └── PreviewsSupport.framework │ │ ├── Headers │ │ ├── PreviewsSupport-Swift.h │ │ └── PreviewsSupport.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── PreviewsSupport.swiftmodule │ │ │ ├── arm64-apple-xros-simulator.abi.json │ │ │ ├── arm64-apple-xros-simulator.swiftdoc │ │ │ ├── arm64-apple-xros-simulator.swiftinterface │ │ │ ├── x86_64-apple-xros-simulator.abi.json │ │ │ ├── x86_64-apple-xros-simulator.swiftdoc │ │ │ └── x86_64-apple-xros-simulator.swiftinterface │ │ └── module.modulemap │ │ ├── PreviewsSupport │ │ └── _CodeSignature │ │ └── CodeResources ├── PreviewsSupport.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PreviewsSupport │ ├── PreviewsSupport.h │ └── PreviewsSupport.swift ├── README.md ├── build.sh └── scripts │ └── update_framework_interface.rb ├── README.md ├── Sources ├── PreviewGallery │ ├── Array+Filter.swift │ ├── Checkerboard.swift │ ├── Colors.swift │ ├── ModulePreviews.swift │ ├── ModuleScreens.swift │ ├── Preview+FullScreen.swift │ ├── PreviewCell.swift │ ├── PreviewData.swift │ ├── PreviewGallery.swift │ ├── PreviewsDetail.swift │ └── TitleSubtitleRow.swift ├── SnapshotPreferences │ ├── AccessibiltyPreference.swift │ ├── AppStoreSnapshotPreference.swift │ ├── EmergeModifierFinder.swift │ ├── ExpansionPreference.swift │ ├── PrecisionPreference.swift │ └── RenderingModePreference.swift ├── SnapshotPreviewsCore │ ├── AppKitRenderingStrategy.swift │ ├── ConformanceLookup.swift │ ├── ExpandingViewController.swift │ ├── MetadataTypes.swift │ ├── ModifierFinder.swift │ ├── NSImage+EMG.swift │ ├── Orientation.swift │ ├── PreferredColorSchemeWrapper.swift │ ├── RenderingStrategy.swift │ ├── ScrollExpansion.swift │ ├── SnapshotPreviewsCore.swift │ ├── String+Split.swift │ ├── SwiftUIRenderingStrategy.swift │ ├── UIImage+EMG.swift │ ├── UIKitRenderingStrategy.swift │ ├── UIViewWrapper.swift │ ├── View+Snapshot.swift │ └── ViewSelector.swift ├── SnapshotSharedModels │ └── RenderingMode.swift ├── Snapshotting │ ├── Initializer.m │ └── include │ │ └── .gitignore ├── SnapshottingSwift │ ├── Initializer.swift │ └── Snapshots.swift ├── SnapshottingTests │ ├── AccessibilityPreviewTest.swift │ ├── DiscoveredPreview+PreviewType.swift │ ├── PreviewBaseTest.swift │ ├── PreviewFilters.swift │ ├── PreviewLayoutTest.swift │ └── SnapshotTest.swift └── SnapshottingTestsObjc │ ├── EMGInvocationCreator.mm │ └── include │ └── .gitignore ├── Tests └── SnapshotPreviewsTests │ └── ETBrowserTests.swift └── images ├── image1.png ├── image2.png └── testOutput.png /.github/workflows/build-xcframework.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/.github/workflows/build-xcframework.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/.swiftpm/xcode/package.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch App/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch App/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch App/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch App/ContentView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch App/DemoApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch App/DemoApp.swift -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch App/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch App/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch AppTests/DemoWatchPreviewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch AppTests/DemoWatchPreviewTest.swift -------------------------------------------------------------------------------- /Examples/DemoApp/Demo Watch AppTests/DemoWatchSnapshotTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/Demo Watch AppTests/DemoWatchSnapshotTest.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoApp.xcscheme -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoAppTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp.xcodeproj/xcshareddata/xcschemes/DemoAppTests.xcscheme -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp.xctestplan -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 1.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 1.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 10.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 10.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 2.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 2.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 3.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 3.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 4.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 4.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 5.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 5.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 6.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 6.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 7.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 7.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 8.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 8.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 9.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized 9.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized.heic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/AppIcon.appiconset/Emerge-Avatar Optimized.heic -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/product-image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/product-image.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Assets.xcassets/product-image.imageset/blog15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Assets.xcassets/product-image.imageset/blog15.jpg -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/ContentView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/DemoApp.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/DemoApp.entitlements -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/DemoAppApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/DemoAppApp.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/EMGTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/EMGTestHandler.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/AnyViewPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/AnyViewPreview.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/ArrayBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/ArrayBuilder.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/CodeEntryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/CodeEntryView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/EmptyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/EmptyView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/ExpandingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/ExpandingView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/OSVersionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/OSVersionView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/PreviewVariants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/PreviewVariants.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/RideDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/RideDetailView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/RideOptionsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/RideOptionsView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/RideShareButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/RideShareButton.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/StateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/StateView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/TextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/TextView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoApp/TestViews/UIViewPreviews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoApp/TestViews/UIViewPreviews.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoAppTests.xctestplan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoAppTests.xctestplan -------------------------------------------------------------------------------- /Examples/DemoApp/DemoAppTests/DemoAppPreviewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoAppTests/DemoAppPreviewTest.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoAppTests/DemoAppSnapshotTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoAppTests/DemoAppSnapshotTest.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoAppUITests/DemoAppAccessibilityPreviewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoAppUITests/DemoAppAccessibilityPreviewTest.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/ButtonView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/ButtonView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/Color.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/Color.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/ConversationMessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/ConversationMessageView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/DateView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/DateView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/DemoModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/DemoModule.h -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/FeatureCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/FeatureCardView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/HomeMapView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/HomeMapView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/InfoCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/InfoCardView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/MessageRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/MessageRow.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/MessageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/MessageView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/ProductCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/ProductCard.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/RatingPreviews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/RatingPreviews.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/RatingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/RatingView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/RowView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/RowView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoModule/TripCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoModule/TripCardView.swift -------------------------------------------------------------------------------- /Examples/DemoApp/DemoWatchTests/DemoWatchAccessibilityPreviewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/DemoApp/DemoWatchTests/DemoWatchAccessibilityPreviewTest.swift -------------------------------------------------------------------------------- /Examples/UnitTestMigration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/README.md -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/ContentView.swift -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/ExampleSnapshotTest_Migrated.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/ExampleSnapshotTest_Migrated.swift -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/SnapshotTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/SnapshotTest.swift -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigration/UnitTestMigrationApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigration/UnitTestMigrationApp.swift -------------------------------------------------------------------------------- /Examples/UnitTestMigration/UnitTestMigrationTests/ExampleSnapshotTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Examples/UnitTestMigration/UnitTestMigrationTests/ExampleSnapshotTest.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Package.swift -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- 1 | Versions/Current/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-macabi.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-macabi.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-macabi.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-macabi.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-macabi.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-macabi.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-macabi.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-macabi.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-macabi.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-macabi.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-maccatalyst/PreviewsSupport.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/ios-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- 1 | Versions/Current/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-macos.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-macos.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-macos.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-macos.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-macos.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/arm64-apple-macos.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-macos.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-macos.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-macos.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-macos.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-macos.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/PreviewsSupport.swiftmodule/x86_64-apple-macos.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/A/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/macos-arm64_x86_64/PreviewsSupport.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-tvos-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-tvos-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-tvos-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-tvos-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/tvos-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64_32-apple-watchos.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64_32-apple-watchos.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64_32-apple-watchos.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64_32-apple-watchos.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64_32-apple-watchos.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64_32-apple-watchos.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/armv7k-apple-watchos.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/armv7k-apple-watchos.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/armv7k-apple-watchos.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/armv7k-apple-watchos.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/armv7k-apple-watchos.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/armv7k-apple-watchos.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_arm64_32_armv7k/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-watchos-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-watchos-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-watchos-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-watchos-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-watchos-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-watchos-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-watchos-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/watchos-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport-Swift.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Headers/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Info.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/arm64-apple-xros-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-xros-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-xros-simulator.abi.json -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-xros-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-xros-simulator.swiftdoc -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-xros-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/PreviewsSupport.swiftmodule/x86_64-apple-xros-simulator.swiftinterface -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/PreviewsSupport -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcframework/xros-arm64_x86_64-simulator/PreviewsSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport/PreviewsSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport/PreviewsSupport.h -------------------------------------------------------------------------------- /PreviewsSupport/PreviewsSupport/PreviewsSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/PreviewsSupport/PreviewsSupport.swift -------------------------------------------------------------------------------- /PreviewsSupport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/README.md -------------------------------------------------------------------------------- /PreviewsSupport/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/build.sh -------------------------------------------------------------------------------- /PreviewsSupport/scripts/update_framework_interface.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/PreviewsSupport/scripts/update_framework_interface.rb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/README.md -------------------------------------------------------------------------------- /Sources/PreviewGallery/Array+Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/Array+Filter.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/Checkerboard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/Checkerboard.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/Colors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/Colors.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/ModulePreviews.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/ModulePreviews.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/ModuleScreens.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/ModuleScreens.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/Preview+FullScreen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/Preview+FullScreen.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/PreviewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/PreviewCell.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/PreviewData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/PreviewData.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/PreviewGallery.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/PreviewGallery.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/PreviewsDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/PreviewsDetail.swift -------------------------------------------------------------------------------- /Sources/PreviewGallery/TitleSubtitleRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/PreviewGallery/TitleSubtitleRow.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreferences/AccessibiltyPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreferences/AccessibiltyPreference.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreferences/AppStoreSnapshotPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreferences/AppStoreSnapshotPreference.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreferences/EmergeModifierFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreferences/EmergeModifierFinder.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreferences/ExpansionPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreferences/ExpansionPreference.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreferences/PrecisionPreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreferences/PrecisionPreference.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreferences/RenderingModePreference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreferences/RenderingModePreference.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/AppKitRenderingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/AppKitRenderingStrategy.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/ConformanceLookup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/ConformanceLookup.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/ExpandingViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/ExpandingViewController.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/MetadataTypes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/MetadataTypes.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/ModifierFinder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/ModifierFinder.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/NSImage+EMG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/NSImage+EMG.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/Orientation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/Orientation.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/PreferredColorSchemeWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/PreferredColorSchemeWrapper.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/RenderingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/RenderingStrategy.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/ScrollExpansion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/ScrollExpansion.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/SnapshotPreviewsCore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/SnapshotPreviewsCore.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/String+Split.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/String+Split.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/SwiftUIRenderingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/SwiftUIRenderingStrategy.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/UIImage+EMG.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/UIImage+EMG.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/UIKitRenderingStrategy.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/UIKitRenderingStrategy.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/UIViewWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/UIViewWrapper.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/View+Snapshot.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/View+Snapshot.swift -------------------------------------------------------------------------------- /Sources/SnapshotPreviewsCore/ViewSelector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotPreviewsCore/ViewSelector.swift -------------------------------------------------------------------------------- /Sources/SnapshotSharedModels/RenderingMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshotSharedModels/RenderingMode.swift -------------------------------------------------------------------------------- /Sources/Snapshotting/Initializer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/Snapshotting/Initializer.m -------------------------------------------------------------------------------- /Sources/Snapshotting/include/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sources/SnapshottingSwift/Initializer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingSwift/Initializer.swift -------------------------------------------------------------------------------- /Sources/SnapshottingSwift/Snapshots.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingSwift/Snapshots.swift -------------------------------------------------------------------------------- /Sources/SnapshottingTests/AccessibilityPreviewTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTests/AccessibilityPreviewTest.swift -------------------------------------------------------------------------------- /Sources/SnapshottingTests/DiscoveredPreview+PreviewType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTests/DiscoveredPreview+PreviewType.swift -------------------------------------------------------------------------------- /Sources/SnapshottingTests/PreviewBaseTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTests/PreviewBaseTest.swift -------------------------------------------------------------------------------- /Sources/SnapshottingTests/PreviewFilters.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTests/PreviewFilters.swift -------------------------------------------------------------------------------- /Sources/SnapshottingTests/PreviewLayoutTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTests/PreviewLayoutTest.swift -------------------------------------------------------------------------------- /Sources/SnapshottingTests/SnapshotTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTests/SnapshotTest.swift -------------------------------------------------------------------------------- /Sources/SnapshottingTestsObjc/EMGInvocationCreator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTestsObjc/EMGInvocationCreator.mm -------------------------------------------------------------------------------- /Sources/SnapshottingTestsObjc/include/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Sources/SnapshottingTestsObjc/include/.gitignore -------------------------------------------------------------------------------- /Tests/SnapshotPreviewsTests/ETBrowserTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/Tests/SnapshotPreviewsTests/ETBrowserTests.swift -------------------------------------------------------------------------------- /images/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/images/image1.png -------------------------------------------------------------------------------- /images/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/images/image2.png -------------------------------------------------------------------------------- /images/testOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EmergeTools/SnapshotPreviews/HEAD/images/testOutput.png --------------------------------------------------------------------------------