├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── ci.yml │ └── format.yml ├── .gitignore ├── .spi.yml ├── .swift-version ├── .swiftpm └── xcode │ ├── package.xcworkspace │ └── contents.xcworkspacedata │ └── xcshareddata │ └── xcschemes │ ├── AdaptiveCard.xcscheme │ ├── AdaptiveCardUI-Package-watchOS.xcscheme │ ├── AdaptiveCardUI-Package.xcscheme │ └── AdaptiveCardUI.xcscheme ├── Examples └── AdaptiveCardVisualizer │ ├── AdaptiveCardVisualizer.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved │ ├── Cards │ ├── ActivityUpdate.json │ ├── FlightDetails.json │ ├── FlightItinerary.json │ ├── FlightUpdate.json │ ├── GitHubRepository.json │ ├── Photos.json │ ├── SportingEvent.json │ ├── StockUpdate.json │ ├── WeatherCompact.json │ └── WeatherLarge.json │ ├── Prism │ ├── default.css │ ├── okaidia.css │ └── prism.js │ ├── Screenshot.png │ ├── ScreenshotMac.png │ ├── Shared │ ├── AdaptiveCardVisualizerApp.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── JSONView+HTMLString.swift │ ├── RoundedImageStyle.swift │ ├── SampleCard.swift │ ├── SampleCardList.swift │ ├── SampleCardPreview.swift │ └── SampleCardView.swift │ ├── iOS │ ├── Info.plist │ └── JSONView.swift │ └── macOS │ ├── Info.plist │ ├── JSONView.swift │ └── macOS.entitlements ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── AdaptiveCard │ ├── Actions │ │ ├── Action.swift │ │ ├── ActionProtocol.swift │ │ ├── ActionStyle.swift │ │ ├── OpenURLAction.swift │ │ ├── ShowCardAction.swift │ │ ├── SubmitAction.swift │ │ ├── TargetElement.swift │ │ ├── ToggleVisibilityAction.swift │ │ └── UnknownAction.swift │ ├── AdaptiveCard.swift │ ├── Common │ │ ├── BackgroundImage.swift │ │ ├── BlockElementHeight.swift │ │ ├── ContainerStyle.swift │ │ ├── FontSize.swift │ │ ├── FontType.swift │ │ ├── FontWeight.swift │ │ ├── HAlignment.swift │ │ ├── ImageFillMode.swift │ │ ├── ImageSize.swift │ │ ├── ImageStyle.swift │ │ ├── ItemIdentifier.swift │ │ ├── PixelDimension.swift │ │ ├── SemanticVersion.swift │ │ ├── Spacing.swift │ │ ├── TextColor.swift │ │ └── VAlignment.swift │ ├── Containers │ │ ├── ActionSet.swift │ │ ├── ColumnSet.swift │ │ ├── Container.swift │ │ ├── Fact.swift │ │ ├── FactSet.swift │ │ └── ImageSet.swift │ └── Elements │ │ ├── CardElement.swift │ │ ├── CardElementProtocol.swift │ │ ├── Column.swift │ │ ├── ColumnSetElement.swift │ │ ├── ColumnSetElementProtocol.swift │ │ ├── ColumnWidth.swift │ │ ├── CustomCardElement.swift │ │ ├── Fallback.swift │ │ ├── Image.swift │ │ ├── RichTextBlock.swift │ │ ├── TextBlock.swift │ │ ├── TextRun.swift │ │ ├── UnknownCardElement.swift │ │ └── UnknownColumnSetElement.swift └── AdaptiveCardUI │ ├── Configuration │ ├── ActionSetConfiguration.swift │ ├── AdaptiveCardConfiguration.swift │ ├── Color+Configuration.swift │ ├── ContainerConfiguration.swift │ ├── ContainerStyleConfiguration.swift │ ├── EnvironmentValues+Configuration.swift │ ├── FactSetConfiguration.swift │ ├── FontConfiguration.swift │ ├── FontTypeConfiguration.swift │ ├── ImageSizeConfiguration.swift │ ├── ShowCardConfiguration.swift │ ├── SpacingConfiguration.swift │ ├── TextBlockConfiguration.swift │ ├── TextColorConfiguration.swift │ ├── TextColorPair.swift │ └── View+Configuration.swift │ ├── Internal │ └── Exports.swift │ ├── Logic │ ├── FeatureAdaptation │ │ ├── Action+FeatureAdaptable.swift │ │ ├── AdaptiveCard+FeatureAdaptable.swift │ │ ├── CardElement+FeatureAdaptable.swift │ │ ├── ColumnSetElement+FeatureAdaptable.swift │ │ ├── Fallback+FeatureAdaptable.swift │ │ └── FeatureAdaptable.swift │ ├── Store │ │ ├── AdaptiveCard+DuplicateIdentifiers.swift │ │ ├── AdaptiveCard+ImageURLs.swift │ │ ├── AdaptiveCardCache.swift │ │ ├── AdaptiveCardDownloader.swift │ │ ├── AdaptiveCardStore.swift │ │ └── ImmediateAdaptiveCardCache.swift │ └── ToggleVisibility │ │ ├── AdaptiveCard+Toggleable.swift │ │ ├── CardElement+Toggleable.swift │ │ ├── ColumnSetElement+Toggleable.swift │ │ ├── Image+Toggleable.swift │ │ └── Toggleable.swift │ ├── UI │ ├── ActionSet │ │ ├── ActionSetView.swift │ │ ├── ActionView.swift │ │ ├── CapsuleButtonModifier.swift │ │ └── CapsuleButtonStyle.swift │ ├── AdaptiveCard │ │ ├── AdaptiveCardFeatures.swift │ │ ├── AdaptiveCardSourceView.swift │ │ ├── AdaptiveCardView.swift │ │ ├── ErrorView.swift │ │ └── PrimitiveCardView.swift │ ├── BackgroundImage │ │ ├── BackgroundImageStyle.swift │ │ ├── BackgroundImageView.swift │ │ ├── CoverImageView.swift │ │ ├── RepeatHorizontallyImageView.swift │ │ └── RepeatVerticallyImageView.swift │ ├── CardElement │ │ ├── CardElementList.swift │ │ ├── CardElementView.swift │ │ ├── CustomCardElementView.swift │ │ └── SpacingCardElementView.swift │ ├── Color │ │ └── Color+ARGBHex.swift │ ├── ColumnSet │ │ ├── ColumnSetView.swift │ │ ├── ColumnView.swift │ │ └── SpacingColumnView.swift │ ├── Container │ │ ├── ContainerView.swift │ │ └── EnvironmentValues+ContainerStyle.swift │ ├── FactSet │ │ └── FactSetView.swift │ ├── Helpers │ │ ├── Alignment+VAlignment.swift │ │ ├── BlockElementHeight+CGFloat.swift │ │ ├── CollectSizeModifier.swift │ │ ├── FlowLayout.swift │ │ ├── HAlign.swift │ │ ├── HAlignment+Offset.swift │ │ ├── Padded.swift │ │ ├── PixelDimension+CGFloat.swift │ │ ├── SelectActionModifier.swift │ │ └── VAlignment+Offset.swift │ ├── Image │ │ ├── AutoImageView.swift │ │ ├── ContentSizeKey.swift │ │ ├── CustomImageStyle.swift │ │ ├── FixedSizeImageView.swift │ │ ├── ImageSetView.swift │ │ ├── ImageSizeImageView.swift │ │ ├── ImageStyleView.swift │ │ ├── ImageView.swift │ │ └── PrimitiveImageStyle.swift │ └── Text │ │ ├── Font.Design+FontType.swift │ │ ├── Font.Weight+FontWeight.swift │ │ ├── RichTextBlockView.swift │ │ ├── Text+Parsing.swift │ │ ├── TextAlignment+HAlignment.swift │ │ ├── TextBlockView.swift │ │ └── TextElement.swift │ └── en.lproj │ └── Localizable.strings └── Tests ├── AdaptiveCardTests ├── ActionTests.swift ├── BackgroundImageTests.swift ├── BlockElementHeightTests.swift ├── CardElementTests.swift ├── ColumnSetElementTests.swift ├── ColumnWidthTests.swift ├── PixelDimensionTests.swift ├── SemanticVersionTests.swift ├── TargetElementTests.swift └── TextRunTests.swift └── AdaptiveCardUITests ├── Configuration ├── ActionSetConfigurationTests.swift ├── FontConfigurationTests.swift ├── ImageSizeConfigurationTests.swift ├── ShowCardConfigurationTests.swift └── SpacingConfigurationTests.swift ├── Logic ├── AdaptiveCardDuplicateIdentifiersTests.swift ├── AdaptiveCardFeatureAdaptableTests.swift ├── AdaptiveCardImageURLsTests.swift ├── AdaptiveCardStoreTests.swift └── AdaptiveCardToggleVisibilityTests.swift └── UI ├── ActionRenderingTests.swift ├── AdaptiveCardConfiguration+Test.swift ├── ColorTests.swift ├── ColumnSetRenderingTests.swift ├── ContainerRenderingTests.swift ├── CustomCardElementRenderingTests.swift ├── CustomCardElements ├── RepoLanguage.swift ├── RepoLanguageView.swift ├── StarCount.swift └── StarCountView.swift ├── FactSetRenderingTests.swift ├── ImageRenderingTests.swift ├── ImageSetRenderingTests.swift ├── RichTextBlockRenderingTests.swift ├── TestHelpers.swift ├── TextBlockRenderingTests.swift ├── TextElementTests.swift ├── __Fixtures__ ├── actions.json ├── columnSetBackgroundImage.json ├── columnSetBleed.json ├── columnSetMinHeight.json ├── columnSetStyle.json ├── columnSetVerticalContentAlignment.json ├── columnSetWidth.json ├── containerBackgroundImage.json ├── containerBleed.json ├── containerMinHeight.json ├── containerStyle.json ├── containerVerticalContentAlignment.json ├── customCardElements.json ├── factSet.json ├── image.json ├── imageBackgroundColor.json ├── imageCustomStyle.json ├── imageHorizontalAlignment.json ├── imageSet.json ├── imageSize.json ├── imageWidthHeight.json ├── richTextBlock.json ├── textBlockColor.json ├── textBlockDateAndTime.json ├── textBlockFontType.json ├── textBlockHorizontalAlignment.json ├── textBlockIsSubtle.json ├── textBlockMaxLines.json ├── textBlockSize.json ├── textBlockWeight.json └── textBlockWrap.json └── __Snapshots__ ├── ActionRenderingTests ├── testHorizontalButtonSpacing.1.png ├── testHorizontalCenterActions.1.png ├── testHorizontalLeftActions.1.png ├── testHorizontalRightActions.1.png ├── testHorizontalStretchActions.1.png ├── testMaxActions.1.png ├── testSpacing.1.png ├── testVerticalButtonSpacing.1.png ├── testVerticalCenterActions.1.png ├── testVerticalLeftActions.1.png └── testVerticalRightActions.1.png ├── ColumnSetRenderingTests ├── testBackgroundImage.1.png ├── testBleed.1.png ├── testMinHeight.1.png ├── testStyle.1.png ├── testVerticalContentAlignment.1.png └── testWidth.1.png ├── ContainerRenderingTests ├── testBackgroundImage.1.png ├── testBleed.1.png ├── testMinHeight.1.png ├── testStyle.1.png └── testVerticalContentAlignment.1.png ├── CustomCardElementRenderingTests └── testCustomCardElements.1.png ├── FactSetRenderingTests └── testFactSet.1.png ├── ImageRenderingTests ├── testBackgroundColor.1.png ├── testCustomStyle.1.png ├── testHorizontalAlignment.1.png ├── testImage.1.png ├── testOverridingCustomStyle.1.png ├── testSize.1.png └── testWidthHeight.1.png ├── ImageSetRenderingTests └── testImageSet.1.png ├── RichTextBlockRenderingTests └── testRichTextBlock.1.png └── TextBlockRenderingTests ├── testColor.1.png ├── testFontType.1.png ├── testHorizontalAlignment.1.png ├── testIsSubtle.1.png ├── testMaxLines.1.png ├── testSize.1.png ├── testWeight.1.png └── testWrap.1.png /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.3 2 | -------------------------------------------------------------------------------- /.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCard.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCard.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCardUI-Package-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCardUI-Package-watchOS.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCardUI-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCardUI-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCardUI.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/AdaptiveCardUI.xcscheme -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/AdaptiveCardVisualizer.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/ActivityUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/ActivityUpdate.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/FlightDetails.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/FlightDetails.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/FlightItinerary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/FlightItinerary.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/FlightUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/FlightUpdate.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/GitHubRepository.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/GitHubRepository.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/Photos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/Photos.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/SportingEvent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/SportingEvent.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/StockUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/StockUpdate.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/WeatherCompact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/WeatherCompact.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Cards/WeatherLarge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Cards/WeatherLarge.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Prism/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Prism/default.css -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Prism/okaidia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Prism/okaidia.css -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Prism/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Prism/prism.js -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Screenshot.png -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/ScreenshotMac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/ScreenshotMac.png -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/AdaptiveCardVisualizerApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/AdaptiveCardVisualizerApp.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/JSONView+HTMLString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/JSONView+HTMLString.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/RoundedImageStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/RoundedImageStyle.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/SampleCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/SampleCard.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/SampleCardList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/SampleCardList.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/SampleCardPreview.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/SampleCardPreview.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/Shared/SampleCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/Shared/SampleCardView.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/iOS/Info.plist -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/iOS/JSONView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/iOS/JSONView.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/macOS/Info.plist -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/macOS/JSONView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/macOS/JSONView.swift -------------------------------------------------------------------------------- /Examples/AdaptiveCardVisualizer/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Examples/AdaptiveCardVisualizer/macOS/macOS.entitlements -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/README.md -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/Action.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/ActionProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/ActionProtocol.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/ActionStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/ActionStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/OpenURLAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/OpenURLAction.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/ShowCardAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/ShowCardAction.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/SubmitAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/SubmitAction.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/TargetElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/TargetElement.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/ToggleVisibilityAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/ToggleVisibilityAction.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Actions/UnknownAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Actions/UnknownAction.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/AdaptiveCard.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/AdaptiveCard.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/BackgroundImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/BackgroundImage.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/BlockElementHeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/BlockElementHeight.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/ContainerStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/ContainerStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/FontSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/FontSize.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/FontType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/FontType.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/FontWeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/FontWeight.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/HAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/HAlignment.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/ImageFillMode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/ImageFillMode.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/ImageSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/ImageSize.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/ImageStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/ImageStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/ItemIdentifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/ItemIdentifier.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/PixelDimension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/PixelDimension.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/SemanticVersion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/SemanticVersion.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/Spacing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/Spacing.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/TextColor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/TextColor.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Common/VAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Common/VAlignment.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Containers/ActionSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Containers/ActionSet.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Containers/ColumnSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Containers/ColumnSet.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Containers/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Containers/Container.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Containers/Fact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Containers/Fact.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Containers/FactSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Containers/FactSet.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Containers/ImageSet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Containers/ImageSet.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/CardElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/CardElement.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/CardElementProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/CardElementProtocol.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/Column.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/Column.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/ColumnSetElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/ColumnSetElement.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/ColumnSetElementProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/ColumnSetElementProtocol.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/ColumnWidth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/ColumnWidth.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/CustomCardElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/CustomCardElement.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/Fallback.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/Fallback.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/Image.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/RichTextBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/RichTextBlock.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/TextBlock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/TextBlock.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/TextRun.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/TextRun.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/UnknownCardElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/UnknownCardElement.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCard/Elements/UnknownColumnSetElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCard/Elements/UnknownColumnSetElement.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/ActionSetConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/AdaptiveCardConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/AdaptiveCardConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/Color+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/Color+Configuration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/ContainerConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/ContainerStyleConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/EnvironmentValues+Configuration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/FactSetConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/FontConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/FontTypeConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/ImageSizeConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/ShowCardConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/ShowCardConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/SpacingConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/TextBlockConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/TextBlockConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/TextColorConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/TextColorConfiguration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/TextColorPair.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/TextColorPair.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Configuration/View+Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Configuration/View+Configuration.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Internal/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Internal/Exports.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/FeatureAdaptation/Action+FeatureAdaptable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/FeatureAdaptation/Action+FeatureAdaptable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/FeatureAdaptation/AdaptiveCard+FeatureAdaptable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/FeatureAdaptation/AdaptiveCard+FeatureAdaptable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/FeatureAdaptation/CardElement+FeatureAdaptable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/FeatureAdaptation/CardElement+FeatureAdaptable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/FeatureAdaptation/ColumnSetElement+FeatureAdaptable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/FeatureAdaptation/ColumnSetElement+FeatureAdaptable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/FeatureAdaptation/Fallback+FeatureAdaptable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/FeatureAdaptation/Fallback+FeatureAdaptable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/FeatureAdaptation/FeatureAdaptable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/FeatureAdaptation/FeatureAdaptable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/Store/AdaptiveCard+DuplicateIdentifiers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/Store/AdaptiveCard+DuplicateIdentifiers.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/Store/AdaptiveCard+ImageURLs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/Store/AdaptiveCard+ImageURLs.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/Store/AdaptiveCardCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/Store/AdaptiveCardCache.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/Store/AdaptiveCardDownloader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/Store/AdaptiveCardDownloader.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/Store/AdaptiveCardStore.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/Store/AdaptiveCardStore.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/Store/ImmediateAdaptiveCardCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/Store/ImmediateAdaptiveCardCache.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/ToggleVisibility/AdaptiveCard+Toggleable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/ToggleVisibility/AdaptiveCard+Toggleable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/ToggleVisibility/CardElement+Toggleable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/ToggleVisibility/CardElement+Toggleable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/ToggleVisibility/ColumnSetElement+Toggleable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/ToggleVisibility/ColumnSetElement+Toggleable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/ToggleVisibility/Image+Toggleable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/ToggleVisibility/Image+Toggleable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/Logic/ToggleVisibility/Toggleable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/Logic/ToggleVisibility/Toggleable.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/ActionSet/ActionSetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/ActionSet/ActionSetView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/ActionSet/ActionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/ActionSet/ActionView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/ActionSet/CapsuleButtonModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/ActionSet/CapsuleButtonModifier.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/ActionSet/CapsuleButtonStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/ActionSet/CapsuleButtonStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/AdaptiveCard/AdaptiveCardFeatures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/AdaptiveCard/AdaptiveCardFeatures.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/AdaptiveCard/AdaptiveCardSourceView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/AdaptiveCard/AdaptiveCardSourceView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/AdaptiveCard/AdaptiveCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/AdaptiveCard/AdaptiveCardView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/AdaptiveCard/ErrorView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/AdaptiveCard/ErrorView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/AdaptiveCard/PrimitiveCardView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/AdaptiveCard/PrimitiveCardView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/BackgroundImage/BackgroundImageStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/BackgroundImage/BackgroundImageStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/BackgroundImage/BackgroundImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/BackgroundImage/BackgroundImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/BackgroundImage/CoverImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/BackgroundImage/CoverImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/BackgroundImage/RepeatHorizontallyImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/BackgroundImage/RepeatHorizontallyImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/BackgroundImage/RepeatVerticallyImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/BackgroundImage/RepeatVerticallyImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/CardElement/CardElementList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/CardElement/CardElementList.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/CardElement/CardElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/CardElement/CardElementView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/CardElement/CustomCardElementView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/CardElement/SpacingCardElementView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/CardElement/SpacingCardElementView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Color/Color+ARGBHex.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Color/Color+ARGBHex.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/ColumnSet/ColumnSetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/ColumnSet/ColumnSetView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/ColumnSet/ColumnView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/ColumnSet/ColumnView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/ColumnSet/SpacingColumnView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/ColumnSet/SpacingColumnView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Container/ContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Container/ContainerView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Container/EnvironmentValues+ContainerStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/FactSet/FactSetView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/Alignment+VAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/Alignment+VAlignment.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/BlockElementHeight+CGFloat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/BlockElementHeight+CGFloat.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/CollectSizeModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/CollectSizeModifier.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/FlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/FlowLayout.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/HAlign.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/HAlign.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/HAlignment+Offset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/HAlignment+Offset.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/Padded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/Padded.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/PixelDimension+CGFloat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/PixelDimension+CGFloat.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/SelectActionModifier.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/SelectActionModifier.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Helpers/VAlignment+Offset.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Helpers/VAlignment+Offset.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/AutoImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/AutoImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/ContentSizeKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/ContentSizeKey.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/CustomImageStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/CustomImageStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/FixedSizeImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/ImageSetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/ImageSetView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/ImageSizeImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/ImageStyleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/ImageStyleView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/ImageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/ImageView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Image/PrimitiveImageStyle.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Text/Font.Design+FontType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Text/Font.Design+FontType.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Text/Font.Weight+FontWeight.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Text/Font.Weight+FontWeight.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Text/RichTextBlockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Text/RichTextBlockView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Text/Text+Parsing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Text/Text+Parsing.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Text/TextAlignment+HAlignment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Text/TextAlignment+HAlignment.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Text/TextBlockView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Text/TextBlockView.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/UI/Text/TextElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/UI/Text/TextElement.swift -------------------------------------------------------------------------------- /Sources/AdaptiveCardUI/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Sources/AdaptiveCardUI/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/ActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/ActionTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/BackgroundImageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/BackgroundImageTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/BlockElementHeightTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/BlockElementHeightTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/CardElementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/CardElementTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/ColumnSetElementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/ColumnSetElementTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/ColumnWidthTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/ColumnWidthTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/PixelDimensionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/PixelDimensionTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/SemanticVersionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/SemanticVersionTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/TargetElementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/TargetElementTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardTests/TextRunTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardTests/TextRunTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Configuration/ActionSetConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Configuration/ActionSetConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Configuration/FontConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Configuration/FontConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Configuration/ImageSizeConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Configuration/ImageSizeConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Configuration/ShowCardConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Configuration/ShowCardConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Configuration/SpacingConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Configuration/SpacingConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Logic/AdaptiveCardDuplicateIdentifiersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Logic/AdaptiveCardDuplicateIdentifiersTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Logic/AdaptiveCardFeatureAdaptableTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Logic/AdaptiveCardFeatureAdaptableTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Logic/AdaptiveCardImageURLsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Logic/AdaptiveCardImageURLsTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Logic/AdaptiveCardStoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Logic/AdaptiveCardStoreTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/Logic/AdaptiveCardToggleVisibilityTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/Logic/AdaptiveCardToggleVisibilityTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/ActionRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/ActionRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/AdaptiveCardConfiguration+Test.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/AdaptiveCardConfiguration+Test.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/ColorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/ColorTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/ColumnSetRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/ColumnSetRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/ContainerRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/ContainerRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/CustomCardElementRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/CustomCardElementRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/CustomCardElements/RepoLanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/CustomCardElements/RepoLanguage.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/CustomCardElements/RepoLanguageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/CustomCardElements/RepoLanguageView.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/CustomCardElements/StarCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/CustomCardElements/StarCount.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/CustomCardElements/StarCountView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/CustomCardElements/StarCountView.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/FactSetRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/FactSetRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/ImageRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/ImageRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/ImageSetRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/ImageSetRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/RichTextBlockRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/RichTextBlockRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/TestHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/TestHelpers.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/TextBlockRenderingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/TextBlockRenderingTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/TextElementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/TextElementTests.swift -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/actions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/actions.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetBackgroundImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetBackgroundImage.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetBleed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetBleed.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetMinHeight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetMinHeight.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetStyle.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetVerticalContentAlignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetVerticalContentAlignment.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetWidth.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/columnSetWidth.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/containerBackgroundImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/containerBackgroundImage.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/containerBleed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/containerBleed.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/containerMinHeight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/containerMinHeight.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/containerStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/containerStyle.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/containerVerticalContentAlignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/containerVerticalContentAlignment.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/customCardElements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/customCardElements.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/factSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/factSet.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/image.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/imageBackgroundColor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/imageBackgroundColor.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/imageCustomStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/imageCustomStyle.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/imageHorizontalAlignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/imageHorizontalAlignment.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/imageSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/imageSet.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/imageSize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/imageSize.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/imageWidthHeight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/imageWidthHeight.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/richTextBlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/richTextBlock.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockColor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockColor.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockDateAndTime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockDateAndTime.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockFontType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockFontType.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockHorizontalAlignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockHorizontalAlignment.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockIsSubtle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockIsSubtle.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockMaxLines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockMaxLines.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockSize.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockSize.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockWeight.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockWeight.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockWrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Fixtures__/textBlockWrap.json -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalButtonSpacing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalButtonSpacing.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalCenterActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalCenterActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalLeftActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalLeftActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalRightActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalRightActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalStretchActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testHorizontalStretchActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testMaxActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testMaxActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testSpacing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testSpacing.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalButtonSpacing.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalButtonSpacing.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalCenterActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalCenterActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalLeftActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalLeftActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalRightActions.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ActionRenderingTests/testVerticalRightActions.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testBackgroundImage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testBackgroundImage.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testBleed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testBleed.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testMinHeight.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testMinHeight.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testStyle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testStyle.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testVerticalContentAlignment.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testVerticalContentAlignment.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testWidth.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ColumnSetRenderingTests/testWidth.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testBackgroundImage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testBackgroundImage.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testBleed.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testBleed.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testMinHeight.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testMinHeight.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testStyle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testStyle.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testVerticalContentAlignment.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ContainerRenderingTests/testVerticalContentAlignment.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/CustomCardElementRenderingTests/testCustomCardElements.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/CustomCardElementRenderingTests/testCustomCardElements.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/FactSetRenderingTests/testFactSet.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/FactSetRenderingTests/testFactSet.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testBackgroundColor.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testBackgroundColor.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testCustomStyle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testCustomStyle.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testHorizontalAlignment.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testHorizontalAlignment.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testImage.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testImage.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testOverridingCustomStyle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testOverridingCustomStyle.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testSize.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testSize.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testWidthHeight.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageRenderingTests/testWidthHeight.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageSetRenderingTests/testImageSet.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/ImageSetRenderingTests/testImageSet.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/RichTextBlockRenderingTests/testRichTextBlock.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/RichTextBlockRenderingTests/testRichTextBlock.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testColor.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testColor.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testFontType.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testFontType.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testHorizontalAlignment.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testHorizontalAlignment.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testIsSubtle.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testIsSubtle.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testMaxLines.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testMaxLines.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testSize.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testSize.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testWeight.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testWeight.1.png -------------------------------------------------------------------------------- /Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testWrap.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gonzalezreal/AdaptiveCardUI/HEAD/Tests/AdaptiveCardUITests/UI/__Snapshots__/TextBlockRenderingTests/testWrap.1.png --------------------------------------------------------------------------------