├── docs ├── code_style_and_conventions.md ├── feature_implementation_nodejs.md ├── feature_implementation_ios.md ├── feature_implementation_uwp.md └── feature_implementation_android.md ├── schemas ├── .gitignore └── package-lock.json ├── source ├── nodejs │ ├── .gitignore │ ├── adaptivecards-designer-app │ │ ├── README.md │ │ └── screenshot.png │ ├── adaptivecards-designer │ │ ├── src │ │ │ ├── hostConfigs │ │ │ │ └── .gitignore │ │ │ └── pic2card.ts │ │ └── .env │ ├── adaptivecards-site │ │ ├── themes │ │ │ └── adaptivecards │ │ │ │ └── .gitignore │ │ ├── scaffolds │ │ │ ├── draft.md │ │ │ ├── page.md │ │ │ └── post.md │ │ └── .gitignore │ ├── adaptivecards-react │ │ └── .gitignore │ ├── adaptivecards-templating │ │ └── .gitignore │ ├── tests │ │ └── unit-tests │ │ │ └── src │ │ │ └── mock.js │ ├── .prettierrc.json │ ├── adaptivecards-controls │ │ └── README.md │ └── .npmrc ├── android │ ├── mobile │ │ ├── .gitignore │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ └── drawable │ │ │ └── cat1.png │ ├── uitestapp │ │ └── .gitignore │ ├── adaptivecards │ │ ├── .gitignore │ │ └── src │ │ │ └── main │ │ │ ├── cpp │ │ │ └── .editorconfig │ │ │ └── res │ │ │ └── values │ │ │ └── strings.xml │ ├── mobilechatapp │ │ ├── .gitignore │ │ └── src │ │ │ └── main │ │ │ └── res │ │ │ └── values │ │ │ └── dimens.xml │ ├── settings.gradle │ └── gradle │ │ └── wrapper │ │ └── gradle-wrapper.jar ├── dotnet │ ├── Library │ │ ├── AdaptiveCards │ │ │ └── docs │ │ │ │ └── .gitignore │ │ ├── AdaptiveCards.Net6 │ │ │ └── docs │ │ │ │ └── .gitignore │ │ ├── AdaptiveCards.Templating │ │ │ └── docs │ │ │ │ └── .gitignore │ │ └── CppConsoleApp │ │ │ └── pch.cpp │ └── Samples │ │ ├── AdaptiveCards.Sample.ImageRender │ │ └── .gitignore │ │ ├── WPFVisualizer │ │ └── FodyWeavers.xml │ │ └── WPFVisualizerNet6 │ │ └── FodyWeavers.xml ├── ios │ └── AdaptiveCards │ │ └── AdaptiveCards │ │ └── AdaptiveCards │ │ └── include │ │ ├── ACRView.h │ │ ├── ACOEnums.h │ │ ├── ACORefresh.h │ │ ├── ACOWarning.h │ │ ├── ACRButton.h │ │ ├── ACREnums.h │ │ ├── ACRErrors.h │ │ ├── ACRIMedia.h │ │ ├── ACRUILabel.h │ │ ├── ACRRenderer.h │ │ ├── ACRTableRow.h │ │ ├── ACRTableView.h │ │ ├── ACRTextField.h │ │ ├── ACRTextView.h │ │ ├── ACOAdaptiveCard.h │ │ ├── ACOHostConfig.h │ │ ├── ACOInputResults.h │ │ ├── ACOMediaEvent.h │ │ ├── ACOParseContext.h │ │ ├── ACRBaseTarget.h │ │ ├── ACRColumnView.h │ │ ├── ACRMediaTarget.h │ │ ├── ACRParseWarning.h │ │ ├── ACRRegistration.h │ │ ├── ACRRenderResult.h │ │ ├── ACRUIImageView.h │ │ ├── AdaptiveCards.h │ │ ├── UtiliOS.h │ │ ├── ACOActionOverflow.h │ │ ├── ACOAuthCardButton.h │ │ ├── ACOAuthentication.h │ │ ├── ACORenderContext.h │ │ ├── ACRActionDelegate.h │ │ ├── ACRColumnRenderer.h │ │ ├── ACRColumnSetView.h │ │ ├── ACRImageRenderer.h │ │ ├── ACRInputLabelView.h │ │ ├── ACRInputRenderer.h │ │ ├── ACRInputTableView.h │ │ ├── ACRMediaRenderer.h │ │ ├── ACROverflowTarget.h │ │ ├── ACRQuickReplyView.h │ │ ├── ACRTableRenderer.h │ │ ├── ACRTargetBuilder.h │ │ ├── ACRViewController.h │ │ ├── ACOBaseActionElement.h │ │ ├── ACOBaseCardElement.h │ │ ├── ACOIResourceResolver.h │ │ ├── ACOResourceResolvers.h │ │ ├── ACOVisibilityManager.h │ │ ├── ACRActionSetRenderer.h │ │ ├── ACRAggregateTarget.h │ │ ├── ACRColumnSetRenderer.h │ │ ├── ACRContainerRenderer.h │ │ ├── ACRContentStackView.h │ │ ├── ACRFactSetRenderer.h │ │ ├── ACRIBaseInputHandler.h │ │ ├── ACRImageProperties.h │ │ ├── ACRImageSetRenderer.h │ │ ├── ACRInputDateRenderer.h │ │ ├── ACRInputTimeRenderer.h │ │ ├── ACRNumericTextField.h │ │ ├── ACRSeparator.h │ │ ├── ACRTableCellRenderer.h │ │ ├── ACRTextBlockRenderer.h │ │ ├── ACRTextInputHandler.h │ │ ├── ACRToggleInputView.h │ │ ├── ACOFillerSpaceManager.h │ │ ├── ACRIContentHoldingView.h │ │ ├── ACRInputNumberRenderer.h │ │ ├── ACRInputToggleRenderer.h │ │ ├── ACRViewPrivate.h │ │ ├── ACOHostConfigParseResult.h │ │ ├── ACORefreshPrivate.h │ │ ├── ACOTokenExchangeResource.h │ │ ├── ACRActionExecuteRenderer.h │ │ ├── ACRActionOpenURLRenderer.h │ │ ├── ACRActionOverflowRenderer.h │ │ ├── ACRActionShowCardRenderer.h │ │ ├── ACRActionSubmitRenderer.h │ │ ├── ACRContentHoldingUIView.h │ │ ├── ACRCustomActionRenderer.h │ │ ├── ACRDateTextField.h │ │ ├── ACRInputChoiceSetRenderer.h │ │ ├── ACRRichTextBlockRenderer.h │ │ ├── ACRShowCardTarget.h │ │ ├── ACRTableCellView.h │ │ ├── ACOAdaptiveCardParseResult.h │ │ ├── ACOHostConfigPrivate.h │ │ ├── ACOMediaEventPrivate.h │ │ ├── ACRBaseCardElementRenderer.h │ │ ├── ACRIBaseCardElementRenderer.h │ │ ├── ACRQuickReplyMultilineView.h │ │ ├── ACRRendererPrivate.h │ │ ├── ACOAdaptiveCardPrivate.h │ │ ├── ACOParseContextPrivate.h │ │ ├── ACORemoteResourceInformation.h │ │ ├── ACRAVPlayerViewHoldingUIView.h │ │ ├── ACRBaseActionElementRenderer.h │ │ ├── ACRChoiceSetCompactStyleView.h │ │ ├── ACRContentHoldingUIScrollView.h │ │ ├── ACRIBaseActionElementRenderer.h │ │ ├── ACRParseWarningPrivate.h │ │ ├── ACRRegistrationPrivate.h │ │ ├── ACRTapGestureRecognizerFactory.h │ │ ├── ACOActionOverflowPrivate.h │ │ ├── ACOAuthCardButtonPrivate.h │ │ ├── ACOAuthenticationPrivate.h │ │ ├── ACOBaseCardElementPrivate.h │ │ ├── ACRInputLabelViewPrivate.h │ │ ├── ACRTargetBuilderDirector.h │ │ ├── ACRToggleInputDataSource.h │ │ ├── ACRToggleVisibilityTarget.h │ │ ├── ACOBaseActionElementPrivate.h │ │ ├── ACRActionToggleVisibilityRenderer.h │ │ ├── ACRChoiceSetViewDataSource.h │ │ ├── ACRCustomRenderers.h │ │ ├── ACRImageSetUICollectionView.h │ │ ├── ACRTapGestureRecognizerEventHandler.h │ │ ├── ACOTokenExchangeResourcePrivate.h │ │ ├── ACORemoteResourceInformationPrivate.h │ │ └── ACRChoiceSetViewDataSourceCompactStyle.h ├── uwp │ ├── AdaptiveCardTestApp │ │ ├── Expected │ │ │ ├── SourceHostConfigs │ │ │ │ ├── Fixed Size Non-Interactive..json │ │ │ │ └── No host config (default values)..json │ │ │ ├── .editorconfig │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Fact.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Image.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.Feedback.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.Media.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Fact.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Image.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.Feedback.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.Media.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Column.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.ColumnSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Container.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.FactSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Image.Size.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.ImageSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Input.Date.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Input.Text.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Input.Time.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Stylesheet.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.FoodOrder.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.InputForm.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.Inputs.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.Solitaire.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.Action.NoBody.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.Action.Title.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.AutoImageSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.LongFactSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.SearchResults.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.Image.Stretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.ActionSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.DeepFallback.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.ImageSizing.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.SearchResults.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.TextHandling.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.choice_set.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.newline_card.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.LongLabels.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.MarkdownBold.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.StretchForm.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.customInput.json │ │ │ ├── No host config (default values).v1.0.Elements.Fact.json │ │ │ ├── No host config (default values).v1.0.Elements.Image.json │ │ │ ├── No host config (default values).v1.0.Tests.Feedback.json │ │ │ ├── No host config (default values).v1.1.Elements.Media.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Column.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.ColumnSet.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Container.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.FactSet.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Image.Size.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.ImageSet.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Input.Date.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Input.Text.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Input.Time.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Stylesheet.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.FoodOrder.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.InputForm.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.Inputs.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.Solitaire.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.Action.NoBody.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.Action.Title.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.AutoImageSet.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.LongFactSet.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.SearchResults.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.Image.Stretch.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.ActionSet.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.DeepFallback.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.ImageSizing.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.SearchResults.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.TextHandling.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.choice_set.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.newline_card.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.LongLabels.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.MarkdownBold.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.StretchForm.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.customInput.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Action.OpenUrl.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Action.ShowCard.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Action.Submit.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.AdaptiveCard.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Column.Spacing.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Column.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Column.Width.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Container.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Image.Spacing.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Image.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Input.ChoiceSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Input.Number.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Input.Toggle.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Color.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Size.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Wrap.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.ActivityUpdate.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.FlightUpdate.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.ImageGallery.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.Restaurant.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.SportingEvent.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.StockUpdate.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.WeatherCompact.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.WeatherLarge.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.AdditionalProperty.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.ColumnSet.Empty.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.FactSetWrapping.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.FlightItinerary_en.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.FlightItinerary_es.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.NotificationCard.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.NumberedListTest.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.TextBlock.Test.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.Image.Height.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.Image.Width.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.Media.Sources.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Scenarios.ProductVideo.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.IconsInSomeActions.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.ImageSet.Stretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.MediaInColumnSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.VerticalStretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.ActionFallback.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Column.Bleed.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Column.Fallback.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.ColumnSet.Bleed.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.ColumnSet.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Container.Bleed.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Container.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Image.DataUri.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.RichTextBlock.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.Element.Requires.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.EmptyFallbackCard.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.EmptyTextBlock.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.FallbackParsing.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.MultipleActionSets.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.NestedShowCard.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.newline_card_r.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Label.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.InputBehaviour.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.InvalidProperties.json │ │ │ ├── No host config (default values).v1.0.Elements.Column.json │ │ │ ├── No host config (default values).v1.0.Elements.ColumnSet.json │ │ │ ├── No host config (default values).v1.0.Elements.Container.json │ │ │ ├── No host config (default values).v1.0.Elements.FactSet.json │ │ │ ├── No host config (default values).v1.0.Elements.Image.Size.json │ │ │ ├── No host config (default values).v1.0.Elements.ImageSet.json │ │ │ ├── No host config (default values).v1.0.Elements.Input.Date.json │ │ │ ├── No host config (default values).v1.0.Elements.Input.Text.json │ │ │ ├── No host config (default values).v1.0.Elements.Input.Time.json │ │ │ ├── No host config (default values).v1.0.Elements.Stylesheet.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.json │ │ │ ├── No host config (default values).v1.0.Scenarios.FoodOrder.json │ │ │ ├── No host config (default values).v1.0.Scenarios.InputForm.json │ │ │ ├── No host config (default values).v1.0.Scenarios.Inputs.json │ │ │ ├── No host config (default values).v1.0.Scenarios.Solitaire.json │ │ │ ├── No host config (default values).v1.0.Tests.Action.NoBody.json │ │ │ ├── No host config (default values).v1.0.Tests.Action.Title.json │ │ │ ├── No host config (default values).v1.0.Tests.AutoImageSet.json │ │ │ ├── No host config (default values).v1.0.Tests.LongFactSet.json │ │ │ ├── No host config (default values).v1.0.Tests.SearchResults.json │ │ │ ├── No host config (default values).v1.1.Tests.Image.Stretch.json │ │ │ ├── No host config (default values).v1.2.Elements.ActionSet.json │ │ │ ├── No host config (default values).v1.2.Tests.DeepFallback.json │ │ │ ├── No host config (default values).v1.2.Tests.ImageSizing.json │ │ │ ├── No host config (default values).v1.2.Tests.SearchResults.json │ │ │ ├── No host config (default values).v1.2.Tests.TextHandling.json │ │ │ ├── No host config (default values).v1.2.Tests.choice_set.json │ │ │ ├── No host config (default values).v1.2.Tests.newline_card.json │ │ │ ├── No host config (default values).v1.3.Tests.LongLabels.json │ │ │ ├── No host config (default values).v1.3.Tests.MarkdownBold.json │ │ │ ├── No host config (default values).v1.3.Tests.StretchForm.json │ │ │ ├── No host config (default values).v1.3.Tests.customInput.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Action.OpenUrl.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Action.ShowCard.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Action.Submit.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.AdaptiveCard.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Column.Spacing.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Column.Style.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Column.Width.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Container.Style.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Image.Spacing.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Image.Style.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Input.ChoiceSet.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Input.Number.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Input.Toggle.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.Color.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.Size.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.Wrap.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.ActivityUpdate.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.FlightUpdate.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.ImageGallery.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.Restaurant.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.SportingEvent.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.StockUpdate.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.WeatherCompact.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.WeatherLarge.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.AdditionalProperty.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.ColumnSet.Empty.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.FactSetWrapping.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.FlightItinerary_en.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.FlightItinerary_es.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.NotificationCard.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.NumberedListTest.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.TextBlock.Test.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.Image.Height.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.Image.Width.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.Media.Sources.json │ │ │ ├── testVariantHostConfig.v1.1.Scenarios.ProductVideo.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.IconsInSomeActions.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.ImageSet.Stretch.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.MediaInColumnSet.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.VerticalStretch.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.ActionFallback.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Column.Bleed.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Column.Fallback.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.ColumnSet.Bleed.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.ColumnSet.Style.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Container.Bleed.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Container.Style.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Image.DataUri.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.RichTextBlock.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.Element.Requires.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.EmptyFallbackCard.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.EmptyTextBlock.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.FallbackParsing.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.MultipleActionSets.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.NestedShowCard.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.newline_card_r.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Label.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.InputBehaviour.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.InvalidProperties.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Column.SelectAction.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Column.Size.Ratio.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Column.Width.Ratio.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.ColumnSet.Spacing.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Container.Spacing.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.FactSet.Markdown.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Image.ImageBaseUrl.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Image.SelectAction.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.ImageSet.ImageSize.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Input.Text.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.IsSubtle.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Markdown.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.MaxLines.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Spacing.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Weight.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.CalendarReminder.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Scenarios.FlightItinerary.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.Action.CustomParsing.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.AdaptiveCard.MinVersion.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.DateTimeTestTranslation.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.FlightItinerary_es_fail.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.AdaptiveCard.Version1.1.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.Column.Explicit.Size.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.Image.BackgroundColor.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.Image.Explicit.Size.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.Image.ResouceResolver.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.MediaAudioInColumnSet.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Action.OpenUrl.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Action.Submit.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Column.MinHeight.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.ColumnSet.MinHeight.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Container.MinHeight.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.TextBlock.FontType.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.TextBlock.FontTypes.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.AdaptiveCard.Version1.2.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.Bleed.Comprehensive.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.ChoiceSet.UnclippedText.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.Column.InvalidWidth.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.ContainerDoubleFallback.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.Input.Text.Multiline.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.choice_default_value.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.choice_set_with_wrap.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Date.Label.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Number.Label.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Text.Label.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Text.Regex.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Time.Label.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Toggle.Label.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.AdaptiveCard.Version1.3.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.InputValidationTestCard.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.MissingErrorMessages.json │ │ │ ├── No host config (default values).v1.0.Elements.Action.OpenUrl.json │ │ │ ├── No host config (default values).v1.0.Elements.Action.ShowCard.json │ │ │ ├── No host config (default values).v1.0.Elements.Action.Submit.json │ │ │ ├── No host config (default values).v1.0.Elements.AdaptiveCard.json │ │ │ ├── No host config (default values).v1.0.Elements.Column.Spacing.json │ │ │ ├── No host config (default values).v1.0.Elements.Column.Style.json │ │ │ ├── No host config (default values).v1.0.Elements.Column.Width.json │ │ │ ├── No host config (default values).v1.0.Elements.Container.Style.json │ │ │ ├── No host config (default values).v1.0.Elements.Image.Spacing.json │ │ │ ├── No host config (default values).v1.0.Elements.Image.Style.json │ │ │ ├── No host config (default values).v1.0.Elements.Input.ChoiceSet.json │ │ │ ├── No host config (default values).v1.0.Elements.Input.Number.json │ │ │ ├── No host config (default values).v1.0.Elements.Input.Toggle.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.Color.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.Size.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.Wrap.json │ │ │ ├── No host config (default values).v1.0.Scenarios.ActivityUpdate.json │ │ │ ├── No host config (default values).v1.0.Scenarios.FlightUpdate.json │ │ │ ├── No host config (default values).v1.0.Scenarios.ImageGallery.json │ │ │ ├── No host config (default values).v1.0.Scenarios.Restaurant.json │ │ │ ├── No host config (default values).v1.0.Scenarios.SportingEvent.json │ │ │ ├── No host config (default values).v1.0.Scenarios.StockUpdate.json │ │ │ ├── No host config (default values).v1.0.Scenarios.WeatherCompact.json │ │ │ ├── No host config (default values).v1.0.Scenarios.WeatherLarge.json │ │ │ ├── No host config (default values).v1.0.Tests.AdditionalProperty.json │ │ │ ├── No host config (default values).v1.0.Tests.ColumnSet.Empty.json │ │ │ ├── No host config (default values).v1.0.Tests.FactSetWrapping.json │ │ │ ├── No host config (default values).v1.0.Tests.FlightItinerary_en.json │ │ │ ├── No host config (default values).v1.0.Tests.FlightItinerary_es.json │ │ │ ├── No host config (default values).v1.0.Tests.NotificationCard.json │ │ │ ├── No host config (default values).v1.0.Tests.NumberedListTest.json │ │ │ ├── No host config (default values).v1.0.Tests.TextBlock.Test.json │ │ │ ├── No host config (default values).v1.1.Elements.Image.Height.json │ │ │ ├── No host config (default values).v1.1.Elements.Image.Width.json │ │ │ ├── No host config (default values).v1.1.Elements.Media.Sources.json │ │ │ ├── No host config (default values).v1.1.Scenarios.ProductVideo.json │ │ │ ├── No host config (default values).v1.1.Tests.IconsInSomeActions.json │ │ │ ├── No host config (default values).v1.1.Tests.ImageSet.Stretch.json │ │ │ ├── No host config (default values).v1.1.Tests.MediaInColumnSet.json │ │ │ ├── No host config (default values).v1.1.Tests.VerticalStretch.json │ │ │ ├── No host config (default values).v1.2.Elements.ActionFallback.json │ │ │ ├── No host config (default values).v1.2.Elements.Column.Bleed.json │ │ │ ├── No host config (default values).v1.2.Elements.Column.Fallback.json │ │ │ ├── No host config (default values).v1.2.Elements.ColumnSet.Bleed.json │ │ │ ├── No host config (default values).v1.2.Elements.ColumnSet.Style.json │ │ │ ├── No host config (default values).v1.2.Elements.Container.Bleed.json │ │ │ ├── No host config (default values).v1.2.Elements.Container.Style.json │ │ │ ├── No host config (default values).v1.2.Elements.Image.DataUri.json │ │ │ ├── No host config (default values).v1.2.Elements.RichTextBlock.json │ │ │ ├── No host config (default values).v1.2.Tests.Element.Requires.json │ │ │ ├── No host config (default values).v1.2.Tests.EmptyFallbackCard.json │ │ │ ├── No host config (default values).v1.2.Tests.EmptyTextBlock.json │ │ │ ├── No host config (default values).v1.2.Tests.FallbackParsing.json │ │ │ ├── No host config (default values).v1.2.Tests.MultipleActionSets.json │ │ │ ├── No host config (default values).v1.2.Tests.NestedShowCard.json │ │ │ ├── No host config (default values).v1.2.Tests.newline_card_r.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Label.json │ │ │ ├── No host config (default values).v1.3.Tests.InputBehaviour.json │ │ │ ├── No host config (default values).v1.3.Tests.InvalidProperties.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Column.SelectAction.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Column.Size.Ratio.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Column.Width.Ratio.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.ColumnSet.Spacing.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Container.Spacing.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.FactSet.Markdown.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Image.ImageBaseUrl.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Image.SelectAction.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.ImageSet.ImageSize.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Input.Text.Style.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.IsSubtle.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.Markdown.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.MaxLines.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.Spacing.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.TextBlock.Weight.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.CalendarReminder.json │ │ │ ├── testVariantHostConfig.v1.0.Scenarios.FlightItinerary.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.Action.CustomParsing.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.AdaptiveCard.MinVersion.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.DateTimeTestTranslation.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.FlightItinerary_es_fail.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.AdaptiveCard.Version1.1.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.Column.Explicit.Size.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.Image.BackgroundColor.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.Image.Explicit.Size.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.Image.ResouceResolver.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.MediaAudioInColumnSet.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Action.OpenUrl.Style.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Action.Submit.Style.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Column.MinHeight.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.ColumnSet.MinHeight.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Container.MinHeight.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.TextBlock.FontType.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.AdaptiveCard.Version1.2.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.Bleed.Comprehensive.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.ChoiceSet.UnclippedText.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.Column.InvalidWidth.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.ContainerDoubleFallback.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.Input.Text.Multiline.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.choice_default_value.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.choice_set_with_wrap.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Date.Label.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Number.Label.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Text.Label.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Text.Regex.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Time.Label.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Toggle.Label.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.AdaptiveCard.Version1.3.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.InputValidationTestCard.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.MissingErrorMessages.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Action.ShowCard.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.ColumnSet.SelectAction.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Container.SelectAction.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.Image.HorizontalAlignment.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.AdaptiveCard.UnknownElements.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.ColumnSet.ImplicitColumnType.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.TextBlock.Markdown.Telephony.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.Action.IconUrl.TwoActions.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.Action.OpenUrl.IconUrl.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.Image.BackgroundColor.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Elements.VerticalContentAlignment.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.Column.VerticalAlignment.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.VerticalStretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.FactSet.MarkdownAndDateTime.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.InputsFormWithHeightStretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Action.ShowCard.Style.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Action.ToggleVisibility.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.AdaptiveCard.MinHeight.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Column.BackgroundImage.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Column.Weighted.Image.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Container.BackgroundImage.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Input.Text.InlineAction.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.Container.HideAndShowElement.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.Image.DataUri.InvalidChars.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.RichTextBlock.Highlights.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.ToggleVisibility.AllElements.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.ChoiceSet.Label.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Date.ErrorMessage.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Number.ErrorMessage.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Text.ErrorMessage.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Text.isRequired.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Time.ErrorMessage.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.Toggle.ErrorMessage.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.RichTextBlock.Underline.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.Input.Text.Label.Stretch.json │ │ │ ├── No host config (default values).v1.0.Elements.Column.SelectAction.json │ │ │ ├── No host config (default values).v1.0.Elements.Column.Size.Ratio.json │ │ │ ├── No host config (default values).v1.0.Elements.Column.Width.Ratio.json │ │ │ ├── No host config (default values).v1.0.Elements.ColumnSet.Spacing.json │ │ │ ├── No host config (default values).v1.0.Elements.Container.Spacing.json │ │ │ ├── No host config (default values).v1.0.Elements.FactSet.Markdown.json │ │ │ ├── No host config (default values).v1.0.Elements.Image.ImageBaseUrl.json │ │ │ ├── No host config (default values).v1.0.Elements.Image.SelectAction.json │ │ │ ├── No host config (default values).v1.0.Elements.ImageSet.ImageSize.json │ │ │ ├── No host config (default values).v1.0.Elements.Input.Text.Style.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.IsSubtle.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.Markdown.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.MaxLines.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.Spacing.json │ │ │ ├── No host config (default values).v1.0.Elements.TextBlock.Weight.json │ │ │ ├── No host config (default values).v1.0.Scenarios.CalendarReminder.json │ │ │ ├── No host config (default values).v1.0.Scenarios.FlightItinerary.json │ │ │ ├── No host config (default values).v1.0.Tests.Action.CustomParsing.json │ │ │ ├── No host config (default values).v1.0.Tests.AdaptiveCard.MinVersion.json │ │ │ ├── No host config (default values).v1.0.Tests.DateTimeTestTranslation.json │ │ │ ├── No host config (default values).v1.0.Tests.FlightItinerary_es_fail.json │ │ │ ├── No host config (default values).v1.1.Tests.AdaptiveCard.Version1.1.json │ │ │ ├── No host config (default values).v1.1.Tests.Column.Explicit.Size.json │ │ │ ├── No host config (default values).v1.1.Tests.Image.BackgroundColor.json │ │ │ ├── No host config (default values).v1.1.Tests.Image.Explicit.Size.json │ │ │ ├── No host config (default values).v1.1.Tests.Image.ResouceResolver.json │ │ │ ├── No host config (default values).v1.1.Tests.MediaAudioInColumnSet.json │ │ │ ├── No host config (default values).v1.2.Elements.Action.OpenUrl.Style.json │ │ │ ├── No host config (default values).v1.2.Elements.Action.Submit.Style.json │ │ │ ├── No host config (default values).v1.2.Elements.Column.MinHeight.json │ │ │ ├── No host config (default values).v1.2.Elements.ColumnSet.MinHeight.json │ │ │ ├── No host config (default values).v1.2.Elements.Container.MinHeight.json │ │ │ ├── No host config (default values).v1.2.Elements.TextBlock.FontType.json │ │ │ ├── No host config (default values).v1.2.Elements.TextBlock.FontTypes.json │ │ │ ├── No host config (default values).v1.2.Tests.AdaptiveCard.Version1.2.json │ │ │ ├── No host config (default values).v1.2.Tests.Bleed.Comprehensive.json │ │ │ ├── No host config (default values).v1.2.Tests.ChoiceSet.UnclippedText.json │ │ │ ├── No host config (default values).v1.2.Tests.Column.InvalidWidth.json │ │ │ ├── No host config (default values).v1.2.Tests.ContainerDoubleFallback.json │ │ │ ├── No host config (default values).v1.2.Tests.Input.Text.Multiline.json │ │ │ ├── No host config (default values).v1.2.Tests.choice_default_value.json │ │ │ ├── No host config (default values).v1.2.Tests.choice_set_with_wrap.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Date.Label.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Number.Label.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Text.Label.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Text.Regex.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Time.Label.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Toggle.Label.json │ │ │ ├── No host config (default values).v1.3.Tests.AdaptiveCard.Version1.3.json │ │ │ ├── No host config (default values).v1.3.Tests.InputValidationTestCard.json │ │ │ ├── No host config (default values).v1.3.Tests.MissingErrorMessages.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Action.ShowCard.Style.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.ColumnSet.SelectAction.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Container.SelectAction.json │ │ │ ├── testVariantHostConfig.v1.0.Elements.Image.HorizontalAlignment.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.AdaptiveCard.UnknownElements.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.ColumnSet.ImplicitColumnType.json │ │ │ ├── testVariantHostConfig.v1.0.Tests.TextBlock.Markdown.Telephony.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.Action.IconUrl.TwoActions.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.Action.OpenUrl.IconUrl.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.Image.BackgroundColor.json │ │ │ ├── testVariantHostConfig.v1.1.Elements.VerticalContentAlignment.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.Column.VerticalAlignment.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.ColumnSet.VerticalStretch.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.FactSet.MarkdownAndDateTime.json │ │ │ ├── testVariantHostConfig.v1.1.Tests.InputsFormWithHeightStretch.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Action.ShowCard.Style.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Action.ToggleVisibility.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.AdaptiveCard.MinHeight.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Column.BackgroundImage.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Column.Weighted.Image.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Container.BackgroundImage.json │ │ │ ├── testVariantHostConfig.v1.2.Elements.Input.Text.InlineAction.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.Container.HideAndShowElement.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.Image.DataUri.InvalidChars.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.RichTextBlock.Highlights.json │ │ │ ├── testVariantHostConfig.v1.2.Tests.ToggleVisibility.AllElements.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.ChoiceSet.Label.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Date.ErrorMessage.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Number.ErrorMessage.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Text.ErrorMessage.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Text.isRequired.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Time.ErrorMessage.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.Input.Toggle.ErrorMessage.json │ │ │ ├── testVariantHostConfig.v1.3.Elements.RichTextBlock.Underline.json │ │ │ ├── testVariantHostConfig.v1.3.Tests.Input.Text.Label.Stretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.DateTimeFormatting.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Elements.TextBlock.HorizontalAlignment.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.CustomParsingTestUsingProgressBar.json │ │ │ ├── Fixed Size Non-Interactive.v1.0.Tests.TypeIsRequired.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.FactSet.VerticalStretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.Image.VerticalStretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.Media.VerticalStretch.json │ │ │ ├── Fixed Size Non-Interactive.v1.1.Tests.InvalidMediaMix.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Action.OpenUrl.IconUrl.DataUri.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Elements.Image.DataUri.Style.Person.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.HideFirstVisibleElementSeparator.json │ │ │ ├── Fixed Size Non-Interactive.v1.2.Tests.Input.Text.InlineAction.ShowCard.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.ChoiceSet.ErrorMessage.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Elements.Input.ChoiceSet.Placeholder.json │ │ │ ├── Fixed Size Non-Interactive.v1.3.Tests.Input.Text.InlineAction.Label.json │ │ │ ├── No host config (default values).v1.0.Elements.Action.ShowCard.Style.json │ │ │ ├── No host config (default values).v1.0.Elements.ColumnSet.SelectAction.json │ │ │ ├── No host config (default values).v1.0.Elements.Container.SelectAction.json │ │ │ ├── No host config (default values).v1.0.Elements.Image.HorizontalAlignment.json │ │ │ ├── No host config (default values).v1.0.Tests.AdaptiveCard.UnknownElements.json │ │ │ ├── No host config (default values).v1.0.Tests.ColumnSet.ImplicitColumnType.json │ │ │ ├── No host config (default values).v1.0.Tests.TextBlock.Markdown.Telephony.json │ │ │ ├── No host config (default values).v1.1.Elements.Action.IconUrl.TwoActions.json │ │ │ ├── No host config (default values).v1.1.Elements.Action.OpenUrl.IconUrl.json │ │ │ ├── No host config (default values).v1.1.Elements.Image.BackgroundColor.json │ │ │ ├── No host config (default values).v1.1.Elements.VerticalContentAlignment.json │ │ │ ├── No host config (default values).v1.1.Tests.Column.VerticalAlignment.json │ │ │ ├── No host config (default values).v1.1.Tests.ColumnSet.VerticalStretch.json │ │ │ ├── No host config (default values).v1.1.Tests.FactSet.MarkdownAndDateTime.json │ │ │ ├── No host config (default values).v1.1.Tests.InputsFormWithHeightStretch.json │ │ │ ├── No host config (default values).v1.2.Elements.Action.ShowCard.Style.json │ │ │ ├── No host config (default values).v1.2.Elements.Action.ToggleVisibility.json │ │ │ ├── No host config (default values).v1.2.Elements.AdaptiveCard.MinHeight.json │ │ │ ├── No host config (default values).v1.2.Elements.Column.BackgroundImage.json │ │ │ ├── No host config (default values).v1.2.Elements.Column.Weighted.Image.json │ │ │ ├── No host config (default values).v1.2.Elements.Container.BackgroundImage.json │ │ │ ├── No host config (default values).v1.2.Elements.Input.Text.InlineAction.json │ │ │ ├── No host config (default values).v1.2.Tests.Container.HideAndShowElement.json │ │ │ ├── No host config (default values).v1.2.Tests.Image.DataUri.InvalidChars.json │ │ │ ├── No host config (default values).v1.2.Tests.RichTextBlock.Highlights.json │ │ │ ├── No host config (default values).v1.2.Tests.ToggleVisibility.AllElements.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.ChoiceSet.Label.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Date.ErrorMessage.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Number.ErrorMessage.json │ │ │ ├── No host config (default values).v1.3.Elements.Input.Text.ErrorMessage.json │ │ │ └── No host config (default values).v1.3.Elements.Input.Text.isRequired.json │ │ └── Assets │ │ │ ├── Adaptive10.png │ │ │ ├── StoreLogo.png │ │ │ └── background.png │ ├── PerfApp │ │ ├── PerfApp.rc │ │ └── Assets │ │ │ ├── StoreLogo.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ └── LockScreenLogo.scale-200.png │ ├── UWPUITestApp │ │ └── Assets │ │ │ └── StoreLogo.png │ ├── UWPUnitTests │ │ └── Assets │ │ │ └── StoreLogo.png │ ├── SharedVisualizer │ │ └── Assets │ │ │ └── Symbols │ │ │ ├── up.png │ │ │ └── down.png │ ├── SharedRenderer │ │ └── lib │ │ │ └── pch.cpp │ ├── UWPObjectModelTest │ │ └── Assets │ │ │ └── StoreLogo.png │ └── SharedObjectModel │ │ └── lib │ │ └── pch.cpp └── shared │ └── cpp │ ├── AdaptiveCardsSharedModel │ └── AdaptiveCardsSharedModelUnitTest │ │ └── .clang-format │ └── ObjectModel │ └── pch.cpp ├── assets ├── Adaptive1.0.png ├── adaptive-card-50.png ├── adaptive-card-200.png └── adaptive-cards-100.png ├── samples └── Templates │ └── Scenarios │ ├── CarouselWhenShowCarousel.data.json │ ├── ApplicationLogin.data.json │ ├── InputFormWithRTL.data.json │ └── SimpleFallback.data.json ├── specs ├── assets │ └── SpecAutoUpdate.gif ├── DesignDiscussions │ └── assets │ │ ├── Auto │ │ ├── iOS.png │ │ ├── uwp.gif │ │ ├── wpf.gif │ │ ├── Android.PNG │ │ ├── JavaScript.PNG │ │ ├── ActivityUpdate.PNG │ │ └── RatioColumnSet.png │ │ ├── AEL │ │ ├── Parser.png │ │ ├── ToString.png │ │ └── Transform.png │ │ ├── Template │ │ ├── img1.png │ │ ├── arrayType1.png │ │ └── arrayType2.png │ │ ├── ConsistentCards │ │ └── UWP.jpg │ │ └── InputLabels │ │ ├── Survey1.png │ │ ├── Survey2.png │ │ ├── Survey3.png │ │ └── Survey4.png ├── elements │ └── assets │ │ ├── ActionSet │ │ ├── ShowCard.png │ │ ├── Vertical.Left.PNG │ │ ├── Horizontal.Left.PNG │ │ ├── Horizontal.Right.PNG │ │ ├── IconLeftOfTitle.PNG │ │ ├── Vertical.Center.PNG │ │ ├── Vertical.Right.PNG │ │ ├── Vertical.Stretch.PNG │ │ ├── Horizontal.Center.PNG │ │ └── Horizontal.Stretch.PNG │ │ └── Column │ │ └── Width.Auto.PNG └── RendererStatuses.md └── scripts └── upm └── .gitignore /docs/code_style_and_conventions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/feature_implementation_nodejs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /schemas/.gitignore: -------------------------------------------------------------------------------- 1 | /adaptive-card.json -------------------------------------------------------------------------------- /source/nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | dist/ -------------------------------------------------------------------------------- /source/android/mobile/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source/android/uitestapp/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source/android/adaptivecards/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-designer-app/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/dotnet/Library/AdaptiveCards/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.xml -------------------------------------------------------------------------------- /source/dotnet/Library/AdaptiveCards.Net6/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.xml -------------------------------------------------------------------------------- /schemas/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /source/dotnet/Library/AdaptiveCards.Templating/docs/.gitignore: -------------------------------------------------------------------------------- 1 | *.xml -------------------------------------------------------------------------------- /source/android/mobilechatapp/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | src/main/assets/*.json -------------------------------------------------------------------------------- /source/dotnet/Samples/AdaptiveCards.Sample.ImageRender/.gitignore: -------------------------------------------------------------------------------- 1 | *.png -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-designer/src/hostConfigs/.gitignore: -------------------------------------------------------------------------------- 1 | *.json -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRView.h: -------------------------------------------------------------------------------- 1 | ../ACRView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOEnums.h: -------------------------------------------------------------------------------- 1 | ../ACOEnums.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACORefresh.h: -------------------------------------------------------------------------------- 1 | ../ACORefresh.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOWarning.h: -------------------------------------------------------------------------------- 1 | ../ACOWarning.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRButton.h: -------------------------------------------------------------------------------- 1 | ../ACRButton.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACREnums.h: -------------------------------------------------------------------------------- 1 | ../ACREnums.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRErrors.h: -------------------------------------------------------------------------------- 1 | ../ACRErrors.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRIMedia.h: -------------------------------------------------------------------------------- 1 | ../ACRIMedia.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRUILabel.h: -------------------------------------------------------------------------------- 1 | ../ACRUILabel.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTableRow.h: -------------------------------------------------------------------------------- 1 | ../ACRTableRow.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTableView.h: -------------------------------------------------------------------------------- 1 | ../ACRTableView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTextField.h: -------------------------------------------------------------------------------- 1 | ../ACRTextField.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTextView.h: -------------------------------------------------------------------------------- 1 | ../ACRTextView.h -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/SourceHostConfigs/Fixed Size Non-Interactive..json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOAdaptiveCard.h: -------------------------------------------------------------------------------- 1 | ../ACOAdaptiveCard.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOHostConfig.h: -------------------------------------------------------------------------------- 1 | ../ACOHostConfig.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOInputResults.h: -------------------------------------------------------------------------------- 1 | ../ACOInputResults.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOMediaEvent.h: -------------------------------------------------------------------------------- 1 | ../ACOMediaEvent.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOParseContext.h: -------------------------------------------------------------------------------- 1 | ../ACOParseContext.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRBaseTarget.h: -------------------------------------------------------------------------------- 1 | ../ACRBaseTarget.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRColumnView.h: -------------------------------------------------------------------------------- 1 | ../ACRColumnView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRMediaTarget.h: -------------------------------------------------------------------------------- 1 | ../ACRMediaTarget.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRParseWarning.h: -------------------------------------------------------------------------------- 1 | ../ACRParseWarning.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRRegistration.h: -------------------------------------------------------------------------------- 1 | ../ACRRegistration.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRRenderResult.h: -------------------------------------------------------------------------------- 1 | ../ACRRenderResult.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRUIImageView.h: -------------------------------------------------------------------------------- 1 | ../ACRUIImageView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/AdaptiveCards.h: -------------------------------------------------------------------------------- 1 | ../AdaptiveCards.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/UtiliOS.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/UtiliOS.h -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-site/themes/adaptivecards/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | tmp -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/SourceHostConfigs/No host config (default values)..json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/Adaptive1.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/assets/Adaptive1.0.png -------------------------------------------------------------------------------- /samples/Templates/Scenarios/CarouselWhenShowCarousel.data.json: -------------------------------------------------------------------------------- 1 | { 2 | "showCarousel": true 3 | } 4 | -------------------------------------------------------------------------------- /source/android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobilechatapp', ':uitestapp', ':mobile', ':adaptivecards' 2 | -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOActionOverflow.h: -------------------------------------------------------------------------------- 1 | ../ACOActionOverflow.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOAuthCardButton.h: -------------------------------------------------------------------------------- 1 | ../ACOAuthCardButton.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOAuthentication.h: -------------------------------------------------------------------------------- 1 | ../ACOAuthentication.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACORenderContext.h: -------------------------------------------------------------------------------- 1 | ../ACORenderContext.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionDelegate.h: -------------------------------------------------------------------------------- 1 | ../ACRActionDelegate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRColumnRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRColumnRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRColumnSetView.h: -------------------------------------------------------------------------------- 1 | ../ACRColumnSetView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRImageRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRImageRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputLabelView.h: -------------------------------------------------------------------------------- 1 | ../ACRInputLabelView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRInputRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputTableView.h: -------------------------------------------------------------------------------- 1 | ../ACRInputTableView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRMediaRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRMediaRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACROverflowTarget.h: -------------------------------------------------------------------------------- 1 | ../ACROverflowTarget.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRQuickReplyView.h: -------------------------------------------------------------------------------- 1 | ../ACRQuickReplyView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTableRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRTableRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTargetBuilder.h: -------------------------------------------------------------------------------- 1 | ../ACRTargetBuilder.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRViewController.h: -------------------------------------------------------------------------------- 1 | ../ACRViewController.h -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-site/scaffolds/draft.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ title }} 3 | tags: 4 | --- 5 | -------------------------------------------------------------------------------- /docs/feature_implementation_ios.md: -------------------------------------------------------------------------------- 1 | Tracked in [#8161](https://github.com/microsoft/AdaptiveCards/issues/8161) -------------------------------------------------------------------------------- /docs/feature_implementation_uwp.md: -------------------------------------------------------------------------------- 1 | Tracked in [#8159](https://github.com/microsoft/AdaptiveCards/issues/8159) -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOBaseActionElement.h: -------------------------------------------------------------------------------- 1 | ../ACOBaseActionElement.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOBaseCardElement.h: -------------------------------------------------------------------------------- 1 | ../ACOBaseCardElement.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOIResourceResolver.h: -------------------------------------------------------------------------------- 1 | ../ACOIResourceResolver.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOResourceResolvers.h: -------------------------------------------------------------------------------- 1 | ../ACOResourceResolvers.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOVisibilityManager.h: -------------------------------------------------------------------------------- 1 | ../ACOVisibilityManager.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionSetRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRActionSetRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRAggregateTarget.h: -------------------------------------------------------------------------------- 1 | ../ACRAggregateTarget.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRColumnSetRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRColumnSetRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRContainerRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRContainerRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRContentStackView.h: -------------------------------------------------------------------------------- 1 | ../ACRContentStackView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRFactSetRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRFactSetRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRIBaseInputHandler.h: -------------------------------------------------------------------------------- 1 | ../ACRIBaseInputHandler.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRImageProperties.h: -------------------------------------------------------------------------------- 1 | ../ACRImageProperties.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRImageSetRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRImageSetRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputDateRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRInputDateRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputTimeRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRInputTimeRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRNumericTextField.h: -------------------------------------------------------------------------------- 1 | ../ACRNumericTextField.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRSeparator.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRSeparator.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTableCellRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRTableCellRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTextBlockRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRTextBlockRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTextInputHandler.h: -------------------------------------------------------------------------------- 1 | ../ACRTextInputHandler.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRToggleInputView.h: -------------------------------------------------------------------------------- 1 | ../ACRToggleInputView.h -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-react/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | lib/ 3 | dist/ 4 | node_modules/ 5 | coverage/ 6 | -------------------------------------------------------------------------------- /assets/adaptive-card-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/assets/adaptive-card-50.png -------------------------------------------------------------------------------- /docs/feature_implementation_android.md: -------------------------------------------------------------------------------- 1 | Tracked in [#8160](https://github.com/microsoft/AdaptiveCards/issues/8160) -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOFillerSpaceManager.h: -------------------------------------------------------------------------------- 1 | ../ACOFillerSpaceManager.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRIContentHoldingView.h: -------------------------------------------------------------------------------- 1 | ../ACRIContentHoldingView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputNumberRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRInputNumberRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputToggleRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRInputToggleRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRViewPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRViewPrivate.h -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-designer/.env: -------------------------------------------------------------------------------- 1 | 2 | PIC_TO_CARD_PREDICTION_API = https://ac-pic2card.azurewebsites.net -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-site/scaffolds/page.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ title }} 3 | date: {{ date }} 4 | --- 5 | -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-templating/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | lib/ 3 | dist/ 4 | node_modules/ 5 | coverage/ 6 | -------------------------------------------------------------------------------- /assets/adaptive-card-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/assets/adaptive-card-200.png -------------------------------------------------------------------------------- /assets/adaptive-cards-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/assets/adaptive-cards-100.png -------------------------------------------------------------------------------- /source/dotnet/Samples/WPFVisualizer/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOHostConfigParseResult.h: -------------------------------------------------------------------------------- 1 | ../ACOHostConfigParseResult.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACORefreshPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACORefreshPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOTokenExchangeResource.h: -------------------------------------------------------------------------------- 1 | ../ACOTokenExchangeResource.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionExecuteRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRActionExecuteRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionOpenURLRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRActionOpenURLRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionOverflowRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRActionOverflowRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionShowCardRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRActionShowCardRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionSubmitRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRActionSubmitRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRContentHoldingUIView.h: -------------------------------------------------------------------------------- 1 | ../ACRContentHoldingUIView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRCustomActionRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRCustomActionRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRDateTextField.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRDateTextField.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputChoiceSetRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRInputChoiceSetRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRRichTextBlockRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRRichTextBlockRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRShowCardTarget.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRShowCardTarget.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTableCellView.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRTableCellView.h -------------------------------------------------------------------------------- /source/uwp/PerfApp/PerfApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/PerfApp/PerfApp.rc -------------------------------------------------------------------------------- /source/dotnet/Samples/WPFVisualizerNet6/FodyWeavers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOAdaptiveCardParseResult.h: -------------------------------------------------------------------------------- 1 | ../ACOAdaptiveCardParseResult.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOHostConfigPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOHostConfigPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOMediaEventPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOMediaEventPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRBaseCardElementRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRBaseCardElementRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRIBaseCardElementRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRIBaseCardElementRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRQuickReplyMultilineView.h: -------------------------------------------------------------------------------- 1 | ../ACRQuickReplyMultilineView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRRendererPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRRendererPrivate.h -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-site/scaffolds/post.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: {{ title }} 3 | date: {{ date }} 4 | tags: 5 | --- 6 | -------------------------------------------------------------------------------- /specs/assets/SpecAutoUpdate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/assets/SpecAutoUpdate.gif -------------------------------------------------------------------------------- /scripts/upm/.gitignore: -------------------------------------------------------------------------------- 1 | # Don't ignore the .meta files under this directory. They are needed for the UPM packaging 2 | !*.meta -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOAdaptiveCardPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOAdaptiveCardPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOParseContextPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOParseContextPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACORemoteResourceInformation.h: -------------------------------------------------------------------------------- 1 | ../ACORemoteResourceInformation.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRAVPlayerViewHoldingUIView.h: -------------------------------------------------------------------------------- 1 | ../ACRAVPlayerViewHoldingUIView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRBaseActionElementRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRBaseActionElementRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRChoiceSetCompactStyleView.h: -------------------------------------------------------------------------------- 1 | ../ACRChoiceSetCompactStyleView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRContentHoldingUIScrollView.h: -------------------------------------------------------------------------------- 1 | ../ACRContentHoldingUIScrollView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRIBaseActionElementRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRIBaseActionElementRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRParseWarningPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRParseWarningPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRRegistrationPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRRegistrationPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTapGestureRecognizerFactory.h: -------------------------------------------------------------------------------- 1 | ../ACRTapGestureRecognizerFactory.h -------------------------------------------------------------------------------- /source/nodejs/tests/unit-tests/src/mock.js: -------------------------------------------------------------------------------- 1 | jest.mock('swiper', () => { 2 | return { swiper: () => "mocked" }; 3 | }); 4 | -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOActionOverflowPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOActionOverflowPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOAuthCardButtonPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOAuthCardButtonPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOAuthenticationPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOAuthenticationPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOBaseCardElementPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOBaseCardElementPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRInputLabelViewPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRInputLabelViewPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTargetBuilderDirector.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRTargetBuilderDirector.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRToggleInputDataSource.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRToggleInputDataSource.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRToggleVisibilityTarget.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRToggleVisibilityTarget.h -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-site/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | db.json 4 | *.log 5 | node_modules/ 6 | public/ 7 | .deploy*/ -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/.editorconfig: -------------------------------------------------------------------------------- 1 | # no point in mucking about in generated source files 2 | root = true 3 | 4 | -------------------------------------------------------------------------------- /samples/Templates/Scenarios/ApplicationLogin.data.json: -------------------------------------------------------------------------------- 1 | { 2 | "ApplicationInfo": { 3 | "title": "Application Login" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /source/android/adaptivecards/src/main/cpp/.editorconfig: -------------------------------------------------------------------------------- 1 | # no point in mucking about in generated source files 2 | root = true 3 | 4 | -------------------------------------------------------------------------------- /source/android/mobilechatapp/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOBaseActionElementPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOBaseActionElementPrivate.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRActionToggleVisibilityRenderer.h: -------------------------------------------------------------------------------- 1 | ../ACRActionToggleVisibilityRenderer.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRChoiceSetViewDataSource.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRChoiceSetViewDataSource.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRCustomRenderers.h: -------------------------------------------------------------------------------- 1 | ../../AdaptiveCardsTests/Helpers/ACRCustomRenderers.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRImageSetUICollectionView.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRImageSetUICollectionView.h -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRTapGestureRecognizerEventHandler.h: -------------------------------------------------------------------------------- 1 | ../ACRTapGestureRecognizerEventHandler.h -------------------------------------------------------------------------------- /source/shared/cpp/AdaptiveCardsSharedModel/AdaptiveCardsSharedModelUnitTest/.clang-format: -------------------------------------------------------------------------------- 1 | DisableFormat: true 2 | SortIncludes: false 3 | -------------------------------------------------------------------------------- /source/uwp/PerfApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/PerfApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /source/android/adaptivecards/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | adaptivecards 3 | 4 | -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACOTokenExchangeResourcePrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACOTokenExchangeResourcePrivate.h -------------------------------------------------------------------------------- /source/nodejs/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "tabWidth": 4, 3 | "printWidth": 100, 4 | "trailingComma": "none", 5 | "quoteProps": "preserve" 6 | } 7 | -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-controls/README.md: -------------------------------------------------------------------------------- 1 | # Adaptive Cards Controls 2 | 3 | This library is used primarily by the Adaptive Cards designer. -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Fact.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9a1a538","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Image.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7d6fac4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.Feedback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ec0a5de","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.Media.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e33f36b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Fact.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"9a1a538","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Image.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"7d6fac4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.Feedback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ec0a5de","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.Media.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e33f36b","Error":null} -------------------------------------------------------------------------------- /source/uwp/UWPUITestApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/UWPUITestApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /source/uwp/UWPUnitTests/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/UWPUnitTests/Assets/StoreLogo.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Auto/iOS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Auto/iOS.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Auto/uwp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Auto/uwp.gif -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Auto/wpf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Auto/wpf.gif -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/ShowCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/ShowCard.png -------------------------------------------------------------------------------- /specs/elements/assets/Column/Width.Auto.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/Column/Width.Auto.PNG -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACORemoteResourceInformationPrivate.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACORemoteResourceInformationPrivate.h -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Column.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"89841e4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.ColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"89841e4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Container.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1b869fd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.FactSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9a1a538","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Image.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c693060","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.ImageSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"82f5e40","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Input.Date.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6216e28","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Input.Text.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"215e7f1","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Input.Time.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e27ee59","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Stylesheet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a3a3dda","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0c6e426","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.FoodOrder.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"726c144","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.InputForm.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3e5b79a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.Inputs.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"5b76481","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.Solitaire.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"aefda3f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.Action.NoBody.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4006719","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.Action.Title.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3bfa570","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.AutoImageSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d5d3b19","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.LongFactSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"abb6360","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.SearchResults.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e9432b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.Image.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"48bcf43","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.ActionSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"163282e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.DeepFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f7f78ea","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.ImageSizing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"982e41c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.SearchResults.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e9432b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.TextHandling.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6b2ea17","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.choice_set.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0a64152","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.newline_card.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e2056aa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.LongLabels.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4ba4232","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.MarkdownBold.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cd27d4b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.StretchForm.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4309ccf","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.customInput.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a093291","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Fact.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9a1a538","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Image.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7d6fac4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.Feedback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ec0a5de","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.Media.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e33f36b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Column.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"89841e4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.ColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"89841e4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Container.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"1b869fd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.FactSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"9a1a538","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Image.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"c693060","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.ImageSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"82f5e40","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Input.Date.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"6216e28","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Input.Text.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"215e7f1","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Input.Time.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e27ee59","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Stylesheet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"a3a3dda","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"0c6e426","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.FoodOrder.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"726c144","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.InputForm.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3e5b79a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.Inputs.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"5b76481","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.Solitaire.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"aefda3f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.Action.NoBody.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"4006719","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.Action.Title.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3bfa570","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.AutoImageSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d5d3b19","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.LongFactSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"abb6360","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.SearchResults.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e9432b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.Image.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"48bcf43","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.ActionSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"163282e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.DeepFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"f7f78ea","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.ImageSizing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"982e41c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.SearchResults.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e9432b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.TextHandling.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"6b2ea17","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.choice_set.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"0a64152","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.newline_card.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e2056aa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.LongLabels.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"4ba4232","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.MarkdownBold.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"cd27d4b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.StretchForm.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"4309ccf","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.customInput.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"a093291","Error":null} -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/AEL/Parser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/AEL/Parser.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/AEL/ToString.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/AEL/ToString.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Auto/Android.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Auto/Android.PNG -------------------------------------------------------------------------------- /source/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Action.OpenUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"321685f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Action.ShowCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c5fe14d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Action.Submit.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7e0c97e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.AdaptiveCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"056bbc5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Column.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fd77008","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Column.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"869d87c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Column.Width.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"78c165e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Container.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"db2941f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Image.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"20140cd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Image.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a31eec9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Input.ChoiceSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e73a037","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Input.Number.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"72ab426","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Input.Toggle.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3353c6b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Color.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"996e761","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"05cfca6","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Wrap.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cb2187d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.ActivityUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fea3e25","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.FlightUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6d8184c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.ImageGallery.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2d1b1ba","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.Restaurant.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2f39b16","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.SportingEvent.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0496904","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.StockUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d7c5869","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.WeatherCompact.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"96214a0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.WeatherLarge.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"b896f20","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.AdditionalProperty.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cc3aadc","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.ColumnSet.Empty.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"461f2d5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.FactSetWrapping.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"5805912","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.FlightItinerary_en.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1fa147","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.FlightItinerary_es.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fc40fc9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.NotificationCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1076b7f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.NumberedListTest.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"b7688dd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.TextBlock.Test.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2e276a3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.Image.Height.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f1065f3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.Image.Width.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ad18af4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.Media.Sources.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e05d823","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Scenarios.ProductVideo.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6cbbe8e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.IconsInSomeActions.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"804de83","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.ImageSet.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3843b47","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.MediaInColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"11ebe11","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"406ecde","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.ActionFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"bf75c9b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Column.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"19e27a8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Column.Fallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f5673a9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.ColumnSet.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"38aaa9e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.ColumnSet.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1314ff2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Container.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"448bdb7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Container.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2106b5b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Image.DataUri.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"8152c36","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.RichTextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4927c16","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.Element.Requires.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c10c996","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.EmptyFallbackCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ede9a23","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.EmptyTextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0e638d5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.FallbackParsing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9de532e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.MultipleActionSets.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0febb45","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.NestedShowCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d6cbf2e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.newline_card_r.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3a539fd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"52f6c84","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.InputBehaviour.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"b4ceb25","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.InvalidProperties.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1786cba","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Column.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"89841e4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.ColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"89841e4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Container.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1b869fd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.FactSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9a1a538","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Image.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c693060","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.ImageSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"82f5e40","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Input.Date.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6216e28","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Input.Text.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"215e7f1","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Input.Time.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e27ee59","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Stylesheet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a3a3dda","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0c6e426","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.FoodOrder.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"726c144","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.InputForm.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3e5b79a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.Inputs.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"5b76481","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.Solitaire.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"aefda3f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.Action.NoBody.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4006719","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.Action.Title.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3bfa570","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.AutoImageSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d5d3b19","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.LongFactSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"abb6360","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.SearchResults.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e9432b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.Image.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"48bcf43","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.ActionSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"163282e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.DeepFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f7f78ea","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.ImageSizing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"982e41c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.SearchResults.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e9432b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.TextHandling.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6b2ea17","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.choice_set.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0a64152","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.newline_card.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e2056aa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.LongLabels.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4ba4232","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.MarkdownBold.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cd27d4b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.StretchForm.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4309ccf","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.customInput.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a093291","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Action.OpenUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"321685f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Action.ShowCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"c5fe14d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Action.Submit.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"7e0c97e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.AdaptiveCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"056bbc5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Column.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"fd77008","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Column.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"869d87c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Column.Width.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"78c165e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Container.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"db2941f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Image.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"20140cd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Image.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"a31eec9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Input.ChoiceSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e73a037","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Input.Number.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"72ab426","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Input.Toggle.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3353c6b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.Color.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"996e761","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"05cfca6","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.Wrap.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"cb2187d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.ActivityUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"fea3e25","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.FlightUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"26df9ff","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.ImageGallery.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"2d1b1ba","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.Restaurant.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"2f39b16","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.SportingEvent.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d012c29","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.StockUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d7c5869","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.WeatherCompact.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"96214a0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.WeatherLarge.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"b896f20","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.AdditionalProperty.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"cc3aadc","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.ColumnSet.Empty.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"461f2d5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.FactSetWrapping.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"5805912","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.FlightItinerary_en.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d1fa147","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.FlightItinerary_es.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"fc40fc9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.NotificationCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"1076b7f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.NumberedListTest.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"b7688dd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.TextBlock.Test.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"2e276a3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.Image.Height.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"f1065f3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.Image.Width.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ad18af4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.Media.Sources.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e05d823","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Scenarios.ProductVideo.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"6cbbe8e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.IconsInSomeActions.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"804de83","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.ImageSet.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3843b47","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.MediaInColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"11ebe11","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"406ecde","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.ActionFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"bf75c9b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Column.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"19e27a8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Column.Fallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"f5673a9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.ColumnSet.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"38aaa9e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.ColumnSet.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"1314ff2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Container.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"448bdb7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Container.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"2106b5b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Image.DataUri.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"8152c36","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.RichTextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"4927c16","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.Element.Requires.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"c10c996","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.EmptyFallbackCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ede9a23","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.EmptyTextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"0e638d5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.FallbackParsing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"9de532e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.MultipleActionSets.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"0febb45","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.NestedShowCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d6cbf2e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.newline_card_r.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3a539fd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"52f6c84","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.InputBehaviour.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"b4ceb25","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.InvalidProperties.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"1786cba","Error":null} -------------------------------------------------------------------------------- /source/uwp/SharedVisualizer/Assets/Symbols/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/SharedVisualizer/Assets/Symbols/up.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/AEL/Transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/AEL/Transform.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Template/img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Template/img1.png -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Vertical.Left.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Vertical.Left.PNG -------------------------------------------------------------------------------- /source/android/mobile/src/main/res/drawable/cat1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/android/mobile/src/main/res/drawable/cat1.png -------------------------------------------------------------------------------- /source/ios/AdaptiveCards/AdaptiveCards/AdaptiveCards/include/ACRChoiceSetViewDataSourceCompactStyle.h: -------------------------------------------------------------------------------- 1 | ../PrivateHeaders/ACRChoiceSetViewDataSourceCompactStyle.h -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-designer/src/pic2card.ts: -------------------------------------------------------------------------------- 1 | export class Pic2Card { 2 | static pic2cardService = ""; 3 | static privacyLink = "../privacy"; 4 | } 5 | -------------------------------------------------------------------------------- /source/shared/cpp/ObjectModel/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Assets/Adaptive10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/AdaptiveCardTestApp/Assets/Adaptive10.png -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/AdaptiveCardTestApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Assets/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/AdaptiveCardTestApp/Assets/background.png -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Column.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e505311","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Column.Size.Ratio.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1cf843","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Column.Width.Ratio.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1cf843","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.ColumnSet.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"aafbf42","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Container.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"258c6e2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.FactSet.Markdown.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6e1a85b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Image.ImageBaseUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a2461b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Image.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3389fab","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.ImageSet.ImageSize.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d26958d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Input.Text.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3510bb1","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.IsSubtle.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7103502","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Markdown.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"34c55ee","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.MaxLines.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6f844da","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"61705ea","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.Weight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"faaccb2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.CalendarReminder.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0c4302b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Scenarios.FlightItinerary.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"5ab8df0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.Action.CustomParsing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"06e61b8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.AdaptiveCard.MinVersion.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cbc9182","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.DateTimeTestTranslation.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e79f792","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.FlightItinerary_es_fail.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c068c94","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.AdaptiveCard.Version1.1.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"298a3a5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.Column.Explicit.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6f0c879","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.Image.BackgroundColor.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4256caa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.Image.Explicit.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a13abc9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.Image.ResouceResolver.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"50d3114","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.MediaAudioInColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1c4705","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Action.OpenUrl.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"5d18dd7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Action.Submit.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e8409ce","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Column.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"54e0e21","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.ColumnSet.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f6a06af","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Container.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"bb586f9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.TextBlock.FontType.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fc41e3a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.TextBlock.FontTypes.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fc41e3a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.AdaptiveCard.Version1.2.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e6852d8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.Bleed.Comprehensive.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6eeca02","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.ChoiceSet.UnclippedText.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"043e8bd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.Column.InvalidWidth.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f5f4d6c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.ContainerDoubleFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"43be8cb","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.Input.Text.Multiline.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"81d3157","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.choice_default_value.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"98e9ffc","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.choice_set_with_wrap.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d114b08","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Date.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2e7bb7f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Number.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4f26559","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Text.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e9dedfe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Text.Regex.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3ed1fbe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Time.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ac23e63","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Toggle.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"931bb00","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.AdaptiveCard.Version1.3.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c1e72aa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.InputValidationTestCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2cb9ffe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.MissingErrorMessages.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c69ee0e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Action.OpenUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"321685f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Action.ShowCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c5fe14d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Action.Submit.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7e0c97e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.AdaptiveCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"056bbc5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Column.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fd77008","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Column.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"869d87c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Column.Width.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"78c165e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Container.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"db2941f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Image.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"20140cd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Image.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a31eec9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Input.ChoiceSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e73a037","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Input.Number.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"72ab426","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Input.Toggle.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3353c6b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.Color.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"996e761","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"05cfca6","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.Wrap.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cb2187d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.ActivityUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fea3e25","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.FlightUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"26df9ff","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.ImageGallery.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2d1b1ba","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.Restaurant.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2f39b16","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.SportingEvent.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d012c29","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.StockUpdate.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d7c5869","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.WeatherCompact.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"96214a0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.WeatherLarge.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"b896f20","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.AdditionalProperty.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cc3aadc","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.ColumnSet.Empty.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"461f2d5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.FactSetWrapping.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"5805912","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.FlightItinerary_en.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1fa147","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.FlightItinerary_es.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fc40fc9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.NotificationCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1076b7f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.NumberedListTest.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"b7688dd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.TextBlock.Test.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2e276a3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.Image.Height.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f1065f3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.Image.Width.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ad18af4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.Media.Sources.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e05d823","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Scenarios.ProductVideo.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6cbbe8e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.IconsInSomeActions.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"804de83","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.ImageSet.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3843b47","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.MediaInColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"11ebe11","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"406ecde","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.ActionFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"bf75c9b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Column.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"19e27a8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Column.Fallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f5673a9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.ColumnSet.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"38aaa9e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.ColumnSet.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1314ff2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Container.Bleed.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"448bdb7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Container.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2106b5b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Image.DataUri.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"8152c36","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.RichTextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4927c16","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.Element.Requires.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c10c996","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.EmptyFallbackCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ede9a23","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.EmptyTextBlock.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0e638d5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.FallbackParsing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9de532e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.MultipleActionSets.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0febb45","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.NestedShowCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d6cbf2e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.newline_card_r.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3a539fd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"52f6c84","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.InputBehaviour.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"b4ceb25","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.InvalidProperties.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1786cba","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Column.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e505311","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Column.Size.Ratio.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d1cf843","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Column.Width.Ratio.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d1cf843","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.ColumnSet.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"aafbf42","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Container.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"258c6e2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.FactSet.Markdown.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"6e1a85b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Image.ImageBaseUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"a2461b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Image.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3389fab","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.ImageSet.ImageSize.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d26958d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Input.Text.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3510bb1","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.IsSubtle.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"7103502","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.Markdown.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"34c55ee","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.MaxLines.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"6f844da","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"61705ea","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.TextBlock.Weight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"faaccb2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.CalendarReminder.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"0c4302b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Scenarios.FlightItinerary.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"39e4d75","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.Action.CustomParsing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"06e61b8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.AdaptiveCard.MinVersion.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"cbc9182","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.DateTimeTestTranslation.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e79f792","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.FlightItinerary_es_fail.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"c068c94","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.AdaptiveCard.Version1.1.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"298a3a5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.Column.Explicit.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"6f0c879","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.Image.BackgroundColor.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"4256caa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.Image.Explicit.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"a13abc9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.Image.ResouceResolver.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"50d3114","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.MediaAudioInColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d1c4705","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Action.OpenUrl.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"5d18dd7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Action.Submit.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e8409ce","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Column.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"54e0e21","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.ColumnSet.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"f6a06af","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Container.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"bb586f9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.TextBlock.FontType.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"fc41e3a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.AdaptiveCard.Version1.2.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e6852d8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.Bleed.Comprehensive.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"6eeca02","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.ChoiceSet.UnclippedText.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"043e8bd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.Column.InvalidWidth.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"f5f4d6c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.ContainerDoubleFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"43be8cb","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.Input.Text.Multiline.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"81d3157","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.choice_default_value.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"98e9ffc","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.choice_set_with_wrap.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d114b08","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Date.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"2e7bb7f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Number.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"4f26559","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Text.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"e9dedfe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Text.Regex.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3ed1fbe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Time.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ac23e63","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Toggle.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"931bb00","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.AdaptiveCard.Version1.3.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"c1e72aa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.InputValidationTestCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"2cb9ffe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.MissingErrorMessages.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"c69ee0e","Error":null} -------------------------------------------------------------------------------- /source/uwp/PerfApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/PerfApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /source/uwp/SharedRenderer/lib/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /source/uwp/SharedVisualizer/Assets/Symbols/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/SharedVisualizer/Assets/Symbols/down.png -------------------------------------------------------------------------------- /source/uwp/UWPObjectModelTest/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/UWPObjectModelTest/Assets/StoreLogo.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Auto/JavaScript.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Auto/JavaScript.PNG -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Horizontal.Left.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Horizontal.Left.PNG -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Horizontal.Right.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Horizontal.Right.PNG -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/IconLeftOfTitle.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/IconLeftOfTitle.PNG -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Vertical.Center.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Vertical.Center.PNG -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Vertical.Right.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Vertical.Right.PNG -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Vertical.Stretch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Vertical.Stretch.PNG -------------------------------------------------------------------------------- /samples/Templates/Scenarios/InputFormWithRTL.data.json: -------------------------------------------------------------------------------- 1 | { 2 | "FormInfo": { 3 | "titleENG": "Registration Form", 4 | "titleARA": "إستمارة تسجيل" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /source/dotnet/Library/CppConsoleApp/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Action.ShowCard.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"727ee34","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.ColumnSet.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1d7785f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Container.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9597058","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.Image.HorizontalAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2d571e6","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.AdaptiveCard.UnknownElements.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d4dc123","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.ColumnSet.ImplicitColumnType.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3170bf4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.TextBlock.Markdown.Telephony.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ea913dd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.Action.IconUrl.TwoActions.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d132fe7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.Action.OpenUrl.IconUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9389674","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.Image.BackgroundColor.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4c2fad3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Elements.VerticalContentAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7116385","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.Column.VerticalAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f409057","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ba06e99","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.FactSet.MarkdownAndDateTime.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"57ad53c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.InputsFormWithHeightStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"af31b98","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Action.ShowCard.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fe65c29","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Action.ToggleVisibility.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d43fe32","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.AdaptiveCard.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"260159d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Column.BackgroundImage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"89f2ca4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Column.Weighted.Image.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1bbb493","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Container.BackgroundImage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ebcae12","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Input.Text.InlineAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7746acb","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.Container.HideAndShowElement.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f823a9d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.Image.DataUri.InvalidChars.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"50eaa65","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.RichTextBlock.Highlights.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"47a48c0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.ToggleVisibility.AllElements.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"14a6f48","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.ChoiceSet.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"730f232","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Date.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ad647c7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Number.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0b6f492","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Text.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"8a35aa2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Text.isRequired.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"49d993a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Time.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9369693","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.Toggle.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0638dd5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.RichTextBlock.Underline.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"386cdc5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.Input.Text.Label.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7ad24cf","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Column.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e505311","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Column.Size.Ratio.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1cf843","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Column.Width.Ratio.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1cf843","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.ColumnSet.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"aafbf42","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Container.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"258c6e2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.FactSet.Markdown.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6e1a85b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Image.ImageBaseUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a2461b0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Image.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3389fab","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.ImageSet.ImageSize.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d26958d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Input.Text.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3510bb1","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.IsSubtle.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7103502","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.Markdown.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"34c55ee","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.MaxLines.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6f844da","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.Spacing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"61705ea","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.TextBlock.Weight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"faaccb2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.CalendarReminder.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0c4302b","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Scenarios.FlightItinerary.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"39e4d75","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.Action.CustomParsing.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"06e61b8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.AdaptiveCard.MinVersion.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"cbc9182","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.DateTimeTestTranslation.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e79f792","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.FlightItinerary_es_fail.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c068c94","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.AdaptiveCard.Version1.1.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"298a3a5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.Column.Explicit.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6f0c879","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.Image.BackgroundColor.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4256caa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.Image.Explicit.Size.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a13abc9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.Image.ResouceResolver.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"50d3114","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.MediaAudioInColumnSet.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d1c4705","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Action.OpenUrl.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"5d18dd7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Action.Submit.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e8409ce","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Column.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"54e0e21","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.ColumnSet.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f6a06af","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Container.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"bb586f9","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.TextBlock.FontType.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fc41e3a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.TextBlock.FontTypes.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fc41e3a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.AdaptiveCard.Version1.2.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e6852d8","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.Bleed.Comprehensive.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6eeca02","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.ChoiceSet.UnclippedText.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"043e8bd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.Column.InvalidWidth.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f5f4d6c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.ContainerDoubleFallback.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"43be8cb","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.Input.Text.Multiline.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"81d3157","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.choice_default_value.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"98e9ffc","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.choice_set_with_wrap.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d114b08","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Date.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2e7bb7f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Number.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4f26559","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Text.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"e9dedfe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Text.Regex.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3ed1fbe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Time.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ac23e63","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Toggle.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"931bb00","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.AdaptiveCard.Version1.3.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c1e72aa","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.InputValidationTestCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2cb9ffe","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Tests.MissingErrorMessages.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c69ee0e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Action.ShowCard.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"727ee34","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.ColumnSet.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"1d7785f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Container.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"9597058","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Elements.Image.HorizontalAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"2d571e6","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.AdaptiveCard.UnknownElements.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d4dc123","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.ColumnSet.ImplicitColumnType.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"3170bf4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.0.Tests.TextBlock.Markdown.Telephony.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ea913dd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.Action.IconUrl.TwoActions.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d132fe7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.Action.OpenUrl.IconUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"9389674","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.Image.BackgroundColor.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"4c2fad3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Elements.VerticalContentAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"7116385","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.Column.VerticalAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"f409057","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.ColumnSet.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ba06e99","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.FactSet.MarkdownAndDateTime.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"57ad53c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.1.Tests.InputsFormWithHeightStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"af31b98","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Action.ShowCard.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"fe65c29","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Action.ToggleVisibility.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"d43fe32","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.AdaptiveCard.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"260159d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Column.BackgroundImage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"89f2ca4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Column.Weighted.Image.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"1bbb493","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Container.BackgroundImage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ebcae12","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Elements.Input.Text.InlineAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"7746acb","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.Container.HideAndShowElement.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"f823a9d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.Image.DataUri.InvalidChars.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"50eaa65","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.RichTextBlock.Highlights.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"47a48c0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.2.Tests.ToggleVisibility.AllElements.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"14a6f48","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.ChoiceSet.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"730f232","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Date.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"ad647c7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Number.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"0b6f492","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Text.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"8a35aa2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Text.isRequired.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"49d993a","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Time.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"9369693","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.Input.Toggle.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"0638dd5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Elements.RichTextBlock.Underline.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"386cdc5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/testVariantHostConfig.v1.3.Tests.Input.Text.Label.Stretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":"569178d","CardHash":"7ad24cf","Error":null} -------------------------------------------------------------------------------- /source/uwp/PerfApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/uwp/PerfApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /source/uwp/SharedObjectModel/lib/pch.cpp: -------------------------------------------------------------------------------- 1 | // Copyright (c) Microsoft Corporation. All rights reserved. 2 | // Licensed under the MIT License. 3 | #include "pch.h" 4 | -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Auto/ActivityUpdate.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Auto/ActivityUpdate.PNG -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Auto/RatioColumnSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Auto/RatioColumnSet.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/ConsistentCards/UWP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/ConsistentCards/UWP.jpg -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/InputLabels/Survey1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/InputLabels/Survey1.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/InputLabels/Survey2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/InputLabels/Survey2.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/InputLabels/Survey3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/InputLabels/Survey3.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/InputLabels/Survey4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/InputLabels/Survey4.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Template/arrayType1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Template/arrayType1.png -------------------------------------------------------------------------------- /specs/DesignDiscussions/assets/Template/arrayType2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/DesignDiscussions/assets/Template/arrayType2.png -------------------------------------------------------------------------------- /specs/RendererStatuses.md: -------------------------------------------------------------------------------- 1 | # Renderer statuses 2 | 3 | This file tracks the renderer status of each renderer relative to the specs. 4 | 5 | -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Horizontal.Center.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Horizontal.Center.PNG -------------------------------------------------------------------------------- /specs/elements/assets/ActionSet/Horizontal.Stretch.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/specs/elements/assets/ActionSet/Horizontal.Stretch.PNG -------------------------------------------------------------------------------- /samples/Templates/Scenarios/SimpleFallback.data.json: -------------------------------------------------------------------------------- 1 | { 2 | "fallback": { 3 | "message": "No graph support. Guess we'll just use this textblock instead." 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /source/nodejs/.npmrc: -------------------------------------------------------------------------------- 1 | registry=https://microsoft.pkgs.visualstudio.com/AdaptiveCards/_packaging/npm-public/npm/registry/ 2 | always-auth=true 3 | install-strategy=nested 4 | -------------------------------------------------------------------------------- /source/nodejs/adaptivecards-designer-app/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/AdaptiveCards/main/source/nodejs/adaptivecards-designer-app/screenshot.png -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.DateTimeFormatting.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2842c5f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Elements.TextBlock.HorizontalAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9625165","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.CustomParsingTestUsingProgressBar.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"6a3d7d5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.0.Tests.TypeIsRequired.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4ad5499","Error":"Parsing card failed"} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.FactSet.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"19aa05f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.Image.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"914f8c5","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.ColumnSet.Media.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"531d5a4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.1.Tests.InvalidMediaMix.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"24f61ae","Error":"Parsing card failed"} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Action.OpenUrl.IconUrl.DataUri.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7d438d3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Elements.Image.DataUri.Style.Person.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fc9ef03","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.HideFirstVisibleElementSeparator.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"29dcc3e","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.2.Tests.Input.Text.InlineAction.ShowCard.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"a724376","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.ChoiceSet.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"439f123","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Elements.Input.ChoiceSet.Placeholder.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7707e16","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/Fixed Size Non-Interactive.v1.3.Tests.Input.Text.InlineAction.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"c2a91a6","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Action.ShowCard.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"727ee34","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.ColumnSet.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1d7785f","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Container.SelectAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9597058","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Elements.Image.HorizontalAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"2d571e6","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.AdaptiveCard.UnknownElements.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d4dc123","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.ColumnSet.ImplicitColumnType.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"3170bf4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.0.Tests.TextBlock.Markdown.Telephony.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ea913dd","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.Action.IconUrl.TwoActions.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d132fe7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.Action.OpenUrl.IconUrl.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"9389674","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.Image.BackgroundColor.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"4c2fad3","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Elements.VerticalContentAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7116385","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.Column.VerticalAlignment.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f409057","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.ColumnSet.VerticalStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ba06e99","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.FactSet.MarkdownAndDateTime.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"57ad53c","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.1.Tests.InputsFormWithHeightStretch.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"af31b98","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Action.ShowCard.Style.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"fe65c29","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Action.ToggleVisibility.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"d43fe32","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.AdaptiveCard.MinHeight.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"260159d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Column.BackgroundImage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"89f2ca4","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Column.Weighted.Image.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"1bbb493","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Container.BackgroundImage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ebcae12","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Elements.Input.Text.InlineAction.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"7746acb","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.Container.HideAndShowElement.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"f823a9d","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.Image.DataUri.InvalidChars.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"50eaa65","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.RichTextBlock.Highlights.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"47a48c0","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.2.Tests.ToggleVisibility.AllElements.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"14a6f48","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.ChoiceSet.Label.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"730f232","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Date.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"ad647c7","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Number.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"0b6f492","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Text.ErrorMessage.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"8a35aa2","Error":null} -------------------------------------------------------------------------------- /source/uwp/AdaptiveCardTestApp/Expected/No host config (default values).v1.3.Elements.Input.Text.isRequired.json: -------------------------------------------------------------------------------- 1 | {"HostConfigHash":null,"CardHash":"49d993a","Error":null} --------------------------------------------------------------------------------