├── .gitignore ├── README.md ├── dist ├── Assets │ └── Images │ │ └── Placeholders │ │ ├── avatar_default.png │ │ └── image_default.png ├── Components │ ├── Basic │ │ ├── Banner.d.ts │ │ ├── Banner.js │ │ ├── CountDown.d.ts │ │ ├── CountDown.js │ │ ├── ImageBackground.d.ts │ │ ├── ImageBackground.js │ │ ├── ImageBlock.d.ts │ │ ├── ImageBlock.js │ │ ├── Label.d.ts │ │ ├── Label.js │ │ ├── Markdown │ │ │ ├── FitImage.d.ts │ │ │ ├── FitImage.js │ │ │ ├── Markdown.d.ts │ │ │ ├── Markdown.js │ │ │ ├── MarkdownTypes.d.ts │ │ │ ├── MarkdownTypes.js │ │ │ ├── RFC3339Date.d.ts │ │ │ ├── RFC3339Date.js │ │ │ ├── Rulers.d.ts │ │ │ ├── Rulers.js │ │ │ ├── Styles.d.ts │ │ │ └── Styles.js │ │ ├── SeparateLine.d.ts │ │ ├── SeparateLine.js │ │ ├── Svg.d.ts │ │ ├── Svg.js │ │ ├── Timer.d.ts │ │ ├── Timer.js │ │ ├── Touchable.d.ts │ │ └── Touchable.js │ ├── Containers │ │ ├── ButtonGroup.d.ts │ │ ├── ButtonGroup.js │ │ ├── Card.d.ts │ │ ├── Card.js │ │ ├── ModalBox.d.ts │ │ └── ModalBox.js │ └── Inputs │ │ ├── Button.d.ts │ │ ├── Button.js │ │ ├── CheckBox.d.ts │ │ ├── CheckBox.js │ │ ├── CheckList.d.ts │ │ ├── CheckList.js │ │ ├── Choice.d.ts │ │ ├── Choice.js │ │ ├── ChoicePanel.d.ts │ │ ├── ChoicePanel.js │ │ ├── Contact.d.ts │ │ ├── Contact.js │ │ ├── DatePanel.d.ts │ │ ├── DatePanel.js │ │ ├── InputBox.d.ts │ │ ├── InputBox.js │ │ ├── LabelInput.d.ts │ │ ├── LabelInput.js │ │ ├── RadioBox.d.ts │ │ ├── RadioBox.js │ │ ├── RadioList.d.ts │ │ ├── RadioList.js │ │ ├── TimePanel.d.ts │ │ ├── TimePanel.js │ │ ├── Toggle.d.ts │ │ └── Toggle.js ├── Config │ ├── ConfigManager.d.ts │ ├── ConfigManager.js │ ├── Types.d.ts │ ├── Types.js │ └── default.json ├── Contexts │ ├── CardContext.d.ts │ ├── CardContext.js │ ├── FormStore.d.ts │ ├── FormStore.js │ ├── HostContext.d.ts │ ├── HostContext.js │ ├── SchemaStore.d.ts │ └── SchemaStore.js ├── DataValidator │ ├── JsonValidator.d.ts │ └── JsonValidator.js ├── Models │ ├── Abstract │ │ ├── AbstractModel.d.ts │ │ ├── AbstractModel.js │ │ ├── ActionModel.d.ts │ │ ├── ActionModel.js │ │ ├── ContentModel.d.ts │ │ ├── ContentModel.js │ │ ├── InputModel.d.ts │ │ ├── InputModel.js │ │ ├── ScopeModel.d.ts │ │ └── ScopeModel.js │ ├── Actions │ │ ├── CallbackAction.d.ts │ │ ├── CallbackAction.js │ │ ├── OpenUrlAction.d.ts │ │ ├── OpenUrlAction.js │ │ ├── SelectAction.d.ts │ │ ├── SelectAction.js │ │ ├── ShowCardAction.d.ts │ │ ├── ShowCardAction.js │ │ ├── SubmitAction.d.ts │ │ └── SubmitAction.js │ ├── CardElements │ │ ├── BackgroundImage.d.ts │ │ ├── BackgroundImage.js │ │ ├── Image.d.ts │ │ ├── Image.js │ │ ├── TextBlock.d.ts │ │ └── TextBlock.js │ ├── Cards │ │ ├── Card.d.ts │ │ └── Card.js │ ├── Containers │ │ ├── Column.d.ts │ │ ├── Column.js │ │ ├── ColumnSet.d.ts │ │ ├── ColumnSet.js │ │ ├── Container.d.ts │ │ ├── Container.js │ │ ├── Fact.d.ts │ │ ├── Fact.js │ │ ├── FactSet.d.ts │ │ ├── FactSet.js │ │ ├── ImageSet.d.ts │ │ └── ImageSet.js │ ├── Customs │ │ ├── Microsoft.Counter.d.ts │ │ └── Microsoft.Counter.js │ ├── Factories │ │ ├── ActionModelFactory.d.ts │ │ ├── ActionModelFactory.js │ │ ├── ContentModelFactory.d.ts │ │ └── ContentModelFactory.js │ └── Inputs │ │ ├── ChoiceInput.d.ts │ │ ├── ChoiceInput.js │ │ ├── ChoiceSet.d.ts │ │ ├── ChoiceSet.js │ │ ├── DateInput.d.ts │ │ ├── DateInput.js │ │ ├── NumberInput.d.ts │ │ ├── NumberInput.js │ │ ├── PeoplePicker.d.ts │ │ ├── PeoplePicker.js │ │ ├── TextInput.d.ts │ │ ├── TextInput.js │ │ ├── TimeInput.d.ts │ │ ├── TimeInput.js │ │ ├── ToggleInput.d.ts │ │ └── ToggleInput.js ├── Schemas │ ├── Actions │ │ ├── CallbackAction.d.ts │ │ ├── CallbackAction.js │ │ ├── OpenUrlAction.d.ts │ │ ├── OpenUrlAction.js │ │ ├── SelectAction.d.ts │ │ ├── SelectAction.js │ │ ├── ShowCardAction.d.ts │ │ ├── ShowCardAction.js │ │ ├── SubmitAction.d.ts │ │ └── SubmitAction.js │ ├── CardElements │ │ ├── BackgroundImage.d.ts │ │ ├── BackgroundImage.js │ │ ├── Image.d.ts │ │ ├── Image.js │ │ ├── TextBlock.d.ts │ │ └── TextBlock.js │ ├── Cards │ │ ├── AdaptiveCard.d.ts │ │ └── AdaptiveCard.js │ ├── Containers │ │ ├── Column.d.ts │ │ ├── Column.js │ │ ├── ColumnSet.d.ts │ │ ├── ColumnSet.js │ │ ├── Container.d.ts │ │ ├── Container.js │ │ ├── Fact.d.ts │ │ ├── Fact.js │ │ ├── FactSet.d.ts │ │ ├── FactSet.js │ │ ├── ImageSet.d.ts │ │ └── ImageSet.js │ ├── Customs │ │ ├── Microsoft.Counter.d.ts │ │ └── Microsoft.Counter.js │ ├── Inputs │ │ ├── ChoiceInput.d.ts │ │ ├── ChoiceInput.js │ │ ├── ChoiceSet.d.ts │ │ ├── ChoiceSet.js │ │ ├── DateInput.d.ts │ │ ├── DateInput.js │ │ ├── NumberInput.d.ts │ │ ├── NumberInput.js │ │ ├── PeoplePicker.d.ts │ │ ├── PeoplePicker.js │ │ ├── TextInput.d.ts │ │ ├── TextInput.js │ │ ├── TimeInput.d.ts │ │ ├── TimeInput.js │ │ ├── ToggleInput.d.ts │ │ └── ToggleInput.js │ ├── SchemaValidator.d.ts │ └── SchemaValidator.js ├── Shared │ ├── Guid.d.ts │ ├── Guid.js │ ├── Lang.d.ts │ ├── Lang.js │ ├── Types.d.ts │ └── Types.js ├── Styles │ ├── StyleManager.d.ts │ └── StyleManager.js ├── Utils │ ├── AccessibilityUtils.d.ts │ ├── AccessibilityUtils.js │ ├── EmailUtils.d.ts │ ├── EmailUtils.js │ ├── ImageUtils.d.ts │ ├── ImageUtils.js │ ├── NumberUtils.d.ts │ ├── NumberUtils.js │ ├── StringUtils.d.ts │ ├── StringUtils.js │ ├── TimeUtils.d.ts │ ├── TimeUtils.js │ ├── UrlUtils.d.ts │ └── UrlUtils.js ├── Views │ ├── Actions │ │ ├── Action.d.ts │ │ └── Action.js │ ├── CardElements │ │ ├── BackgroundImage.d.ts │ │ ├── BackgroundImage.js │ │ ├── Image.d.ts │ │ ├── Image.js │ │ ├── TextBlock.d.ts │ │ └── TextBlock.js │ ├── Cards │ │ ├── AdaptiveCard.d.ts │ │ └── AdaptiveCard.js │ ├── Containers │ │ ├── Column.d.ts │ │ ├── Column.js │ │ ├── ColumnSet.d.ts │ │ ├── ColumnSet.js │ │ ├── Container.d.ts │ │ ├── Container.js │ │ ├── Fact.d.ts │ │ ├── Fact.js │ │ ├── FactSet.d.ts │ │ ├── FactSet.js │ │ ├── ImageSet.d.ts │ │ └── ImageSet.js │ ├── Customs │ │ ├── Microsoft.Counter.d.ts │ │ └── Microsoft.Counter.js │ ├── Factories │ │ ├── ActionFactory.d.ts │ │ ├── ActionFactory.js │ │ ├── ContentFactory.d.ts │ │ ├── ContentFactory.js │ │ ├── DebugOutputFactory.d.ts │ │ └── DebugOutputFactory.js │ ├── Inputs │ │ ├── ChoiceSetInput.d.ts │ │ ├── ChoiceSetInput.js │ │ ├── DateInput.d.ts │ │ ├── DateInput.js │ │ ├── NumberInput.d.ts │ │ ├── NumberInput.js │ │ ├── PeoplePicker.d.ts │ │ ├── PeoplePicker.js │ │ ├── TextInput.d.ts │ │ ├── TextInput.js │ │ ├── TimeInput.d.ts │ │ ├── TimeInput.js │ │ ├── ToggleInput.d.ts │ │ └── ToggleInput.js │ ├── Root.d.ts │ └── Root.js ├── index.d.ts └── index.js ├── examples ├── .DS_Store ├── .expo-shared │ └── assets.json ├── .gitignore ├── .watchmanconfig ├── AdaptiveCards │ ├── Assets │ │ └── Images │ │ │ └── Placeholders │ │ │ ├── avatar_default.png │ │ │ └── image_default.png │ ├── Components │ │ ├── Basic │ │ │ ├── Banner.d.ts │ │ │ ├── Banner.js │ │ │ ├── CountDown.d.ts │ │ │ ├── CountDown.js │ │ │ ├── ImageBackground.d.ts │ │ │ ├── ImageBackground.js │ │ │ ├── ImageBlock.d.ts │ │ │ ├── ImageBlock.js │ │ │ ├── Label.d.ts │ │ │ ├── Label.js │ │ │ ├── Markdown │ │ │ │ ├── FitImage.d.ts │ │ │ │ ├── FitImage.js │ │ │ │ ├── Markdown.d.ts │ │ │ │ ├── Markdown.js │ │ │ │ ├── MarkdownTypes.d.ts │ │ │ │ ├── MarkdownTypes.js │ │ │ │ ├── RFC3339Date.d.ts │ │ │ │ ├── RFC3339Date.js │ │ │ │ ├── Rulers.d.ts │ │ │ │ ├── Rulers.js │ │ │ │ ├── Styles.d.ts │ │ │ │ └── Styles.js │ │ │ ├── SeparateLine.d.ts │ │ │ ├── SeparateLine.js │ │ │ ├── Svg.d.ts │ │ │ ├── Svg.js │ │ │ ├── Timer.d.ts │ │ │ ├── Timer.js │ │ │ ├── Touchable.d.ts │ │ │ └── Touchable.js │ │ ├── Containers │ │ │ ├── ButtonGroup.d.ts │ │ │ ├── ButtonGroup.js │ │ │ ├── Card.d.ts │ │ │ ├── Card.js │ │ │ ├── ModalBox.d.ts │ │ │ └── ModalBox.js │ │ └── Inputs │ │ │ ├── Button.d.ts │ │ │ ├── Button.js │ │ │ ├── CheckBox.d.ts │ │ │ ├── CheckBox.js │ │ │ ├── CheckList.d.ts │ │ │ ├── CheckList.js │ │ │ ├── Choice.d.ts │ │ │ ├── Choice.js │ │ │ ├── ChoicePanel.d.ts │ │ │ ├── ChoicePanel.js │ │ │ ├── Contact.d.ts │ │ │ ├── Contact.js │ │ │ ├── DatePanel.d.ts │ │ │ ├── DatePanel.js │ │ │ ├── InputBox.d.ts │ │ │ ├── InputBox.js │ │ │ ├── LabelInput.d.ts │ │ │ ├── LabelInput.js │ │ │ ├── RadioBox.d.ts │ │ │ ├── RadioBox.js │ │ │ ├── RadioList.d.ts │ │ │ ├── RadioList.js │ │ │ ├── TimePanel.d.ts │ │ │ ├── TimePanel.js │ │ │ ├── Toggle.d.ts │ │ │ └── Toggle.js │ ├── Config │ │ ├── ConfigManager.d.ts │ │ ├── ConfigManager.js │ │ ├── Types.d.ts │ │ ├── Types.js │ │ └── default.json │ ├── Contexts │ │ ├── CardContext.d.ts │ │ ├── CardContext.js │ │ ├── FormStore.d.ts │ │ ├── FormStore.js │ │ ├── HostContext.d.ts │ │ ├── HostContext.js │ │ ├── SchemaStore.d.ts │ │ └── SchemaStore.js │ ├── DataValidator │ │ ├── JsonValidator.d.ts │ │ └── JsonValidator.js │ ├── Models │ │ ├── Abstract │ │ │ ├── AbstractModel.d.ts │ │ │ ├── AbstractModel.js │ │ │ ├── ActionModel.d.ts │ │ │ ├── ActionModel.js │ │ │ ├── ContentModel.d.ts │ │ │ ├── ContentModel.js │ │ │ ├── InputModel.d.ts │ │ │ ├── InputModel.js │ │ │ ├── ScopeModel.d.ts │ │ │ └── ScopeModel.js │ │ ├── Actions │ │ │ ├── CallbackAction.d.ts │ │ │ ├── CallbackAction.js │ │ │ ├── OpenUrlAction.d.ts │ │ │ ├── OpenUrlAction.js │ │ │ ├── SelectAction.d.ts │ │ │ ├── SelectAction.js │ │ │ ├── ShowCardAction.d.ts │ │ │ ├── ShowCardAction.js │ │ │ ├── SubmitAction.d.ts │ │ │ └── SubmitAction.js │ │ ├── CardElements │ │ │ ├── BackgroundImage.d.ts │ │ │ ├── BackgroundImage.js │ │ │ ├── Image.d.ts │ │ │ ├── Image.js │ │ │ ├── TextBlock.d.ts │ │ │ └── TextBlock.js │ │ ├── Cards │ │ │ ├── Card.d.ts │ │ │ └── Card.js │ │ ├── Containers │ │ │ ├── Column.d.ts │ │ │ ├── Column.js │ │ │ ├── ColumnSet.d.ts │ │ │ ├── ColumnSet.js │ │ │ ├── Container.d.ts │ │ │ ├── Container.js │ │ │ ├── Fact.d.ts │ │ │ ├── Fact.js │ │ │ ├── FactSet.d.ts │ │ │ ├── FactSet.js │ │ │ ├── ImageSet.d.ts │ │ │ └── ImageSet.js │ │ ├── Customs │ │ │ ├── Microsoft.Counter.d.ts │ │ │ └── Microsoft.Counter.js │ │ ├── Factories │ │ │ ├── ActionModelFactory.d.ts │ │ │ ├── ActionModelFactory.js │ │ │ ├── ContentModelFactory.d.ts │ │ │ └── ContentModelFactory.js │ │ └── Inputs │ │ │ ├── ChoiceInput.d.ts │ │ │ ├── ChoiceInput.js │ │ │ ├── ChoiceSet.d.ts │ │ │ ├── ChoiceSet.js │ │ │ ├── DateInput.d.ts │ │ │ ├── DateInput.js │ │ │ ├── NumberInput.d.ts │ │ │ ├── NumberInput.js │ │ │ ├── PeoplePicker.d.ts │ │ │ ├── PeoplePicker.js │ │ │ ├── TextInput.d.ts │ │ │ ├── TextInput.js │ │ │ ├── TimeInput.d.ts │ │ │ ├── TimeInput.js │ │ │ ├── ToggleInput.d.ts │ │ │ └── ToggleInput.js │ ├── Schemas │ │ ├── Actions │ │ │ ├── CallbackAction.d.ts │ │ │ ├── CallbackAction.js │ │ │ ├── OpenUrlAction.d.ts │ │ │ ├── OpenUrlAction.js │ │ │ ├── SelectAction.d.ts │ │ │ ├── SelectAction.js │ │ │ ├── ShowCardAction.d.ts │ │ │ ├── ShowCardAction.js │ │ │ ├── SubmitAction.d.ts │ │ │ └── SubmitAction.js │ │ ├── CardElements │ │ │ ├── BackgroundImage.d.ts │ │ │ ├── BackgroundImage.js │ │ │ ├── Image.d.ts │ │ │ ├── Image.js │ │ │ ├── TextBlock.d.ts │ │ │ └── TextBlock.js │ │ ├── Cards │ │ │ ├── AdaptiveCard.d.ts │ │ │ └── AdaptiveCard.js │ │ ├── Containers │ │ │ ├── Column.d.ts │ │ │ ├── Column.js │ │ │ ├── ColumnSet.d.ts │ │ │ ├── ColumnSet.js │ │ │ ├── Container.d.ts │ │ │ ├── Container.js │ │ │ ├── Fact.d.ts │ │ │ ├── Fact.js │ │ │ ├── FactSet.d.ts │ │ │ ├── FactSet.js │ │ │ ├── ImageSet.d.ts │ │ │ └── ImageSet.js │ │ ├── Customs │ │ │ ├── Microsoft.Counter.d.ts │ │ │ └── Microsoft.Counter.js │ │ ├── Inputs │ │ │ ├── ChoiceInput.d.ts │ │ │ ├── ChoiceInput.js │ │ │ ├── ChoiceSet.d.ts │ │ │ ├── ChoiceSet.js │ │ │ ├── DateInput.d.ts │ │ │ ├── DateInput.js │ │ │ ├── NumberInput.d.ts │ │ │ ├── NumberInput.js │ │ │ ├── PeoplePicker.d.ts │ │ │ ├── PeoplePicker.js │ │ │ ├── TextInput.d.ts │ │ │ ├── TextInput.js │ │ │ ├── TimeInput.d.ts │ │ │ ├── TimeInput.js │ │ │ ├── ToggleInput.d.ts │ │ │ └── ToggleInput.js │ │ ├── SchemaValidator.d.ts │ │ └── SchemaValidator.js │ ├── Shared │ │ ├── Guid.d.ts │ │ ├── Guid.js │ │ ├── Lang.d.ts │ │ ├── Lang.js │ │ ├── Types.d.ts │ │ └── Types.js │ ├── Styles │ │ ├── StyleManager.d.ts │ │ └── StyleManager.js │ ├── Utils │ │ ├── AccessibilityUtils.d.ts │ │ ├── AccessibilityUtils.js │ │ ├── EmailUtils.d.ts │ │ ├── EmailUtils.js │ │ ├── ImageUtils.d.ts │ │ ├── ImageUtils.js │ │ ├── NumberUtils.d.ts │ │ ├── NumberUtils.js │ │ ├── StringUtils.d.ts │ │ ├── StringUtils.js │ │ ├── TimeUtils.d.ts │ │ ├── TimeUtils.js │ │ ├── UrlUtils.d.ts │ │ └── UrlUtils.js │ ├── Views │ │ ├── Actions │ │ │ ├── Action.d.ts │ │ │ └── Action.js │ │ ├── CardElements │ │ │ ├── BackgroundImage.d.ts │ │ │ ├── BackgroundImage.js │ │ │ ├── Image.d.ts │ │ │ ├── Image.js │ │ │ ├── TextBlock.d.ts │ │ │ └── TextBlock.js │ │ ├── Cards │ │ │ ├── AdaptiveCard.d.ts │ │ │ └── AdaptiveCard.js │ │ ├── Containers │ │ │ ├── Column.d.ts │ │ │ ├── Column.js │ │ │ ├── ColumnSet.d.ts │ │ │ ├── ColumnSet.js │ │ │ ├── Container.d.ts │ │ │ ├── Container.js │ │ │ ├── Fact.d.ts │ │ │ ├── Fact.js │ │ │ ├── FactSet.d.ts │ │ │ ├── FactSet.js │ │ │ ├── ImageSet.d.ts │ │ │ └── ImageSet.js │ │ ├── Customs │ │ │ ├── Microsoft.Counter.d.ts │ │ │ └── Microsoft.Counter.js │ │ ├── Factories │ │ │ ├── ActionFactory.d.ts │ │ │ ├── ActionFactory.js │ │ │ ├── ContentFactory.d.ts │ │ │ ├── ContentFactory.js │ │ │ ├── DebugOutputFactory.d.ts │ │ │ └── DebugOutputFactory.js │ │ ├── Inputs │ │ │ ├── ChoiceSetInput.d.ts │ │ │ ├── ChoiceSetInput.js │ │ │ ├── DateInput.d.ts │ │ │ ├── DateInput.js │ │ │ ├── NumberInput.d.ts │ │ │ ├── NumberInput.js │ │ │ ├── PeoplePicker.d.ts │ │ │ ├── PeoplePicker.js │ │ │ ├── TextInput.d.ts │ │ │ ├── TextInput.js │ │ │ ├── TimeInput.d.ts │ │ │ ├── TimeInput.js │ │ │ ├── ToggleInput.d.ts │ │ │ └── ToggleInput.js │ │ ├── Root.d.ts │ │ └── Root.js │ ├── index.d.ts │ └── index.js ├── App.js ├── README.md ├── app.json ├── babel.config.js ├── mockData │ ├── 3rd.json │ ├── BingAnswer │ │ ├── height of eiffel tower.json │ │ ├── highest mountion in the world.json │ │ ├── index.js │ │ ├── index.js.map │ │ ├── index.ts │ │ ├── latest news.json │ │ ├── microsoft stock.json │ │ ├── show me funny video.json │ │ ├── time in london.json │ │ └── what is the weather.json │ ├── BingAnswer2 │ │ ├── height of eiffel tower.json │ │ ├── highest mountain in the world.json │ │ ├── index.js │ │ ├── index.js.map │ │ ├── index.ts │ │ ├── latest news.json │ │ ├── microsoft stock.json │ │ ├── show me funny video.json │ │ ├── time in london.json │ │ └── what is the weather.json │ ├── adaptiveUpdate.json │ ├── bingFact.json │ ├── bingMap.json │ ├── button.json │ ├── counter.json │ ├── dinning.json │ ├── fact.json │ ├── flightItinerary.json │ ├── flightUpdate.json │ ├── foodOrder.json │ ├── imageGallery.json │ ├── index.js │ ├── index.js.map │ ├── index.ts │ ├── inputForm.json │ ├── inputs.json │ ├── latestNews.json │ ├── list.json │ ├── markdown.json │ ├── outlookCard1.json │ ├── outlookCard2.json │ ├── peopleSuggestion.json │ ├── peoplepicker.json │ ├── restaurant.json │ ├── showVideo.json │ ├── skills │ │ ├── email_sent.json │ │ ├── read_email.json │ │ ├── search_email.json │ │ ├── send_text.json │ │ └── send_text_contact_disam.json │ ├── solitaire.json │ ├── sportsGameUpdate.json │ ├── stockUpdate.json │ ├── vocabulary.json │ ├── weatherCompact.json │ └── weatherLarge.json ├── package.json └── yarn.lock ├── gulpfile.js ├── package.json ├── screenshot.gif ├── src ├── Assets │ ├── .DS_Store │ └── Images │ │ ├── .DS_Store │ │ └── Placeholders │ │ ├── avatar_default.png │ │ └── image_default.png ├── Components │ ├── .DS_Store │ ├── Basic │ │ ├── .DS_Store │ │ ├── Banner.tsx │ │ ├── CountDown.tsx │ │ ├── ImageBackground.tsx │ │ ├── ImageBlock.tsx │ │ ├── Label.tsx │ │ ├── Markdown │ │ │ ├── .DS_Store │ │ │ ├── FitImage.tsx │ │ │ ├── Markdown.tsx │ │ │ ├── MarkdownTypes.ts │ │ │ ├── RFC3339Date.ts │ │ │ ├── Rulers.ts │ │ │ └── Styles.ts │ │ ├── SeparateLine.tsx │ │ ├── Svg.tsx │ │ ├── Timer.tsx │ │ └── Touchable.tsx │ ├── Containers │ │ ├── ButtonGroup.tsx │ │ ├── Card.tsx │ │ └── ModalBox.tsx │ └── Inputs │ │ ├── Button.tsx │ │ ├── CheckBox.tsx │ │ ├── CheckList.tsx │ │ ├── Choice.tsx │ │ ├── ChoicePanel.tsx │ │ ├── Contact.tsx │ │ ├── DatePanel.tsx │ │ ├── InputBox.tsx │ │ ├── LabelInput.tsx │ │ ├── RadioBox.tsx │ │ ├── RadioList.tsx │ │ ├── TimePanel.tsx │ │ └── Toggle.tsx ├── Config │ ├── ConfigManager.ts │ ├── Types.ts │ └── default.json ├── Contexts │ ├── CardContext.ts │ ├── FormStore.ts │ ├── HostContext.ts │ └── SchemaStore.ts ├── DataValidator │ └── JsonValidator.ts ├── Models │ ├── Abstract │ │ ├── AbstractModel.ts │ │ ├── ActionModel.ts │ │ ├── ContentModel.ts │ │ ├── InputModel.ts │ │ └── ScopeModel.ts │ ├── Actions │ │ ├── CallbackAction.ts │ │ ├── OpenUrlAction.ts │ │ ├── SelectAction.ts │ │ ├── ShowCardAction.ts │ │ └── SubmitAction.ts │ ├── CardElements │ │ ├── BackgroundImage.ts │ │ ├── Image.ts │ │ └── TextBlock.ts │ ├── Cards │ │ └── Card.ts │ ├── Containers │ │ ├── Column.ts │ │ ├── ColumnSet.ts │ │ ├── Container.ts │ │ ├── Fact.ts │ │ ├── FactSet.ts │ │ └── ImageSet.ts │ ├── Customs │ │ └── Microsoft.Counter.ts │ ├── Factories │ │ ├── ActionModelFactory.ts │ │ └── ContentModelFactory.ts │ └── Inputs │ │ ├── ChoiceInput.ts │ │ ├── ChoiceSet.ts │ │ ├── DateInput.ts │ │ ├── NumberInput.ts │ │ ├── PeoplePicker.ts │ │ ├── TextInput.ts │ │ ├── TimeInput.ts │ │ └── ToggleInput.ts ├── Schemas │ ├── Actions │ │ ├── CallbackAction.ts │ │ ├── OpenUrlAction.ts │ │ ├── SelectAction.ts │ │ ├── ShowCardAction.ts │ │ └── SubmitAction.ts │ ├── CardElements │ │ ├── BackgroundImage.ts │ │ ├── Image.ts │ │ └── TextBlock.ts │ ├── Cards │ │ └── AdaptiveCard.ts │ ├── Containers │ │ ├── Column.ts │ │ ├── ColumnSet.ts │ │ ├── Container.ts │ │ ├── Fact.ts │ │ ├── FactSet.ts │ │ └── ImageSet.ts │ ├── Customs │ │ └── Microsoft.Counter.ts │ ├── Inputs │ │ ├── ChoiceInput.ts │ │ ├── ChoiceSet.ts │ │ ├── DateInput.ts │ │ ├── NumberInput.ts │ │ ├── PeoplePicker.ts │ │ ├── TextInput.ts │ │ ├── TimeInput.ts │ │ └── ToggleInput.ts │ └── SchemaValidator.ts ├── Shared │ ├── Guid.ts │ ├── Lang.ts │ └── Types.ts ├── Styles │ └── StyleManager.ts ├── Utils │ ├── AccessibilityUtils.ts │ ├── EmailUtils.ts │ ├── ImageUtils.ts │ ├── NumberUtils.ts │ ├── StringUtils.ts │ ├── TimeUtils.ts │ └── UrlUtils.ts ├── Views │ ├── Actions │ │ └── Action.tsx │ ├── CardElements │ │ ├── BackgroundImage.tsx │ │ ├── Image.tsx │ │ └── TextBlock.tsx │ ├── Cards │ │ └── AdaptiveCard.tsx │ ├── Containers │ │ ├── .DS_Store │ │ ├── Column.tsx │ │ ├── ColumnSet.tsx │ │ ├── Container.tsx │ │ ├── Fact.tsx │ │ ├── FactSet.tsx │ │ └── ImageSet.tsx │ ├── Customs │ │ └── Microsoft.Counter.tsx │ ├── Factories │ │ ├── ActionFactory.tsx │ │ ├── ContentFactory.tsx │ │ └── DebugOutputFactory.tsx │ ├── Inputs │ │ ├── ChoiceSetInput.tsx │ │ ├── DateInput.tsx │ │ ├── NumberInput.tsx │ │ ├── PeoplePicker.tsx │ │ ├── TextInput.tsx │ │ ├── TimeInput.tsx │ │ └── ToggleInput.tsx │ └── Root.tsx ├── index.ts └── type.d.ts ├── tool ├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── package.json ├── public │ └── index.html ├── src │ ├── Constants.js │ ├── actions │ │ └── cardActions.js │ ├── assets │ │ └── AdaptiveCards │ │ │ ├── Assets │ │ │ └── Images │ │ │ │ └── Placeholders │ │ │ │ ├── avatar_default.png │ │ │ │ └── image_default.png │ │ │ ├── Components │ │ │ ├── Basic │ │ │ │ ├── Banner.d.ts │ │ │ │ ├── Banner.js │ │ │ │ ├── CountDown.d.ts │ │ │ │ ├── CountDown.js │ │ │ │ ├── ImageBackground.d.ts │ │ │ │ ├── ImageBackground.js │ │ │ │ ├── ImageBlock.d.ts │ │ │ │ ├── ImageBlock.js │ │ │ │ ├── Label.d.ts │ │ │ │ ├── Label.js │ │ │ │ ├── Markdown │ │ │ │ │ ├── FitImage.d.ts │ │ │ │ │ ├── FitImage.js │ │ │ │ │ ├── Markdown.d.ts │ │ │ │ │ ├── Markdown.js │ │ │ │ │ ├── MarkdownTypes.d.ts │ │ │ │ │ ├── MarkdownTypes.js │ │ │ │ │ ├── RFC3339Date.d.ts │ │ │ │ │ ├── RFC3339Date.js │ │ │ │ │ ├── Rulers.d.ts │ │ │ │ │ ├── Rulers.js │ │ │ │ │ ├── Styles.d.ts │ │ │ │ │ └── Styles.js │ │ │ │ ├── SeparateLine.d.ts │ │ │ │ ├── SeparateLine.js │ │ │ │ ├── Svg.d.ts │ │ │ │ ├── Svg.js │ │ │ │ ├── Timer.d.ts │ │ │ │ ├── Timer.js │ │ │ │ ├── Touchable.d.ts │ │ │ │ └── Touchable.js │ │ │ ├── Containers │ │ │ │ ├── ButtonGroup.d.ts │ │ │ │ ├── ButtonGroup.js │ │ │ │ ├── Card.d.ts │ │ │ │ ├── Card.js │ │ │ │ ├── ModalBox.d.ts │ │ │ │ └── ModalBox.js │ │ │ └── Inputs │ │ │ │ ├── Button.d.ts │ │ │ │ ├── Button.js │ │ │ │ ├── CheckBox.d.ts │ │ │ │ ├── CheckBox.js │ │ │ │ ├── CheckList.d.ts │ │ │ │ ├── CheckList.js │ │ │ │ ├── Choice.d.ts │ │ │ │ ├── Choice.js │ │ │ │ ├── ChoicePanel.d.ts │ │ │ │ ├── ChoicePanel.js │ │ │ │ ├── Contact.d.ts │ │ │ │ ├── Contact.js │ │ │ │ ├── DatePanel.d.ts │ │ │ │ ├── DatePanel.js │ │ │ │ ├── InputBox.d.ts │ │ │ │ ├── InputBox.js │ │ │ │ ├── LabelInput.d.ts │ │ │ │ ├── LabelInput.js │ │ │ │ ├── RadioBox.d.ts │ │ │ │ ├── RadioBox.js │ │ │ │ ├── RadioList.d.ts │ │ │ │ ├── RadioList.js │ │ │ │ ├── TimePanel.d.ts │ │ │ │ ├── TimePanel.js │ │ │ │ ├── Toggle.d.ts │ │ │ │ └── Toggle.js │ │ │ ├── Config │ │ │ ├── ConfigManager.d.ts │ │ │ ├── ConfigManager.js │ │ │ ├── Types.d.ts │ │ │ ├── Types.js │ │ │ └── default.json │ │ │ ├── Contexts │ │ │ ├── CardContext.d.ts │ │ │ ├── CardContext.js │ │ │ ├── FormStore.d.ts │ │ │ ├── FormStore.js │ │ │ ├── HostContext.d.ts │ │ │ ├── HostContext.js │ │ │ ├── SchemaStore.d.ts │ │ │ └── SchemaStore.js │ │ │ ├── DataValidator │ │ │ ├── JsonValidator.d.ts │ │ │ └── JsonValidator.js │ │ │ ├── Models │ │ │ ├── Abstract │ │ │ │ ├── AbstractModel.d.ts │ │ │ │ ├── AbstractModel.js │ │ │ │ ├── ActionModel.d.ts │ │ │ │ ├── ActionModel.js │ │ │ │ ├── ContentModel.d.ts │ │ │ │ ├── ContentModel.js │ │ │ │ ├── InputModel.d.ts │ │ │ │ ├── InputModel.js │ │ │ │ ├── ScopeModel.d.ts │ │ │ │ └── ScopeModel.js │ │ │ ├── Actions │ │ │ │ ├── CallbackAction.d.ts │ │ │ │ ├── CallbackAction.js │ │ │ │ ├── OpenUrlAction.d.ts │ │ │ │ ├── OpenUrlAction.js │ │ │ │ ├── SelectAction.d.ts │ │ │ │ ├── SelectAction.js │ │ │ │ ├── ShowCardAction.d.ts │ │ │ │ ├── ShowCardAction.js │ │ │ │ ├── SubmitAction.d.ts │ │ │ │ └── SubmitAction.js │ │ │ ├── CardElements │ │ │ │ ├── BackgroundImage.d.ts │ │ │ │ ├── BackgroundImage.js │ │ │ │ ├── Image.d.ts │ │ │ │ ├── Image.js │ │ │ │ ├── TextBlock.d.ts │ │ │ │ └── TextBlock.js │ │ │ ├── Cards │ │ │ │ ├── Card.d.ts │ │ │ │ └── Card.js │ │ │ ├── Containers │ │ │ │ ├── Column.d.ts │ │ │ │ ├── Column.js │ │ │ │ ├── ColumnSet.d.ts │ │ │ │ ├── ColumnSet.js │ │ │ │ ├── Container.d.ts │ │ │ │ ├── Container.js │ │ │ │ ├── Fact.d.ts │ │ │ │ ├── Fact.js │ │ │ │ ├── FactSet.d.ts │ │ │ │ ├── FactSet.js │ │ │ │ ├── ImageSet.d.ts │ │ │ │ └── ImageSet.js │ │ │ ├── Customs │ │ │ │ ├── Microsoft.Counter.d.ts │ │ │ │ └── Microsoft.Counter.js │ │ │ ├── Factories │ │ │ │ ├── ActionModelFactory.d.ts │ │ │ │ ├── ActionModelFactory.js │ │ │ │ ├── ContentModelFactory.d.ts │ │ │ │ └── ContentModelFactory.js │ │ │ └── Inputs │ │ │ │ ├── ChoiceInput.d.ts │ │ │ │ ├── ChoiceInput.js │ │ │ │ ├── ChoiceSet.d.ts │ │ │ │ ├── ChoiceSet.js │ │ │ │ ├── DateInput.d.ts │ │ │ │ ├── DateInput.js │ │ │ │ ├── NumberInput.d.ts │ │ │ │ ├── NumberInput.js │ │ │ │ ├── PeoplePicker.d.ts │ │ │ │ ├── PeoplePicker.js │ │ │ │ ├── TextInput.d.ts │ │ │ │ ├── TextInput.js │ │ │ │ ├── TimeInput.d.ts │ │ │ │ ├── TimeInput.js │ │ │ │ ├── ToggleInput.d.ts │ │ │ │ └── ToggleInput.js │ │ │ ├── Schemas │ │ │ ├── Actions │ │ │ │ ├── CallbackAction.d.ts │ │ │ │ ├── CallbackAction.js │ │ │ │ ├── OpenUrlAction.d.ts │ │ │ │ ├── OpenUrlAction.js │ │ │ │ ├── SelectAction.d.ts │ │ │ │ ├── SelectAction.js │ │ │ │ ├── ShowCardAction.d.ts │ │ │ │ ├── ShowCardAction.js │ │ │ │ ├── SubmitAction.d.ts │ │ │ │ └── SubmitAction.js │ │ │ ├── CardElements │ │ │ │ ├── BackgroundImage.d.ts │ │ │ │ ├── BackgroundImage.js │ │ │ │ ├── Image.d.ts │ │ │ │ ├── Image.js │ │ │ │ ├── TextBlock.d.ts │ │ │ │ └── TextBlock.js │ │ │ ├── Cards │ │ │ │ ├── AdaptiveCard.d.ts │ │ │ │ └── AdaptiveCard.js │ │ │ ├── Containers │ │ │ │ ├── Column.d.ts │ │ │ │ ├── Column.js │ │ │ │ ├── ColumnSet.d.ts │ │ │ │ ├── ColumnSet.js │ │ │ │ ├── Container.d.ts │ │ │ │ ├── Container.js │ │ │ │ ├── Fact.d.ts │ │ │ │ ├── Fact.js │ │ │ │ ├── FactSet.d.ts │ │ │ │ ├── FactSet.js │ │ │ │ ├── ImageSet.d.ts │ │ │ │ └── ImageSet.js │ │ │ ├── Customs │ │ │ │ ├── Microsoft.Counter.d.ts │ │ │ │ └── Microsoft.Counter.js │ │ │ ├── Inputs │ │ │ │ ├── ChoiceInput.d.ts │ │ │ │ ├── ChoiceInput.js │ │ │ │ ├── ChoiceSet.d.ts │ │ │ │ ├── ChoiceSet.js │ │ │ │ ├── DateInput.d.ts │ │ │ │ ├── DateInput.js │ │ │ │ ├── NumberInput.d.ts │ │ │ │ ├── NumberInput.js │ │ │ │ ├── PeoplePicker.d.ts │ │ │ │ ├── PeoplePicker.js │ │ │ │ ├── TextInput.d.ts │ │ │ │ ├── TextInput.js │ │ │ │ ├── TimeInput.d.ts │ │ │ │ ├── TimeInput.js │ │ │ │ ├── ToggleInput.d.ts │ │ │ │ └── ToggleInput.js │ │ │ ├── SchemaValidator.d.ts │ │ │ └── SchemaValidator.js │ │ │ ├── Shared │ │ │ ├── Guid.d.ts │ │ │ ├── Guid.js │ │ │ ├── Lang.d.ts │ │ │ ├── Lang.js │ │ │ ├── Types.d.ts │ │ │ └── Types.js │ │ │ ├── Styles │ │ │ ├── StyleManager.d.ts │ │ │ └── StyleManager.js │ │ │ ├── Utils │ │ │ ├── AccessibilityUtils.d.ts │ │ │ ├── AccessibilityUtils.js │ │ │ ├── EmailUtils.d.ts │ │ │ ├── EmailUtils.js │ │ │ ├── ImageUtils.d.ts │ │ │ ├── ImageUtils.js │ │ │ ├── NumberUtils.d.ts │ │ │ ├── NumberUtils.js │ │ │ ├── StringUtils.d.ts │ │ │ ├── StringUtils.js │ │ │ ├── TimeUtils.d.ts │ │ │ ├── TimeUtils.js │ │ │ ├── UrlUtils.d.ts │ │ │ └── UrlUtils.js │ │ │ ├── Views │ │ │ ├── Actions │ │ │ │ ├── Action.d.ts │ │ │ │ └── Action.js │ │ │ ├── CardElements │ │ │ │ ├── BackgroundImage.d.ts │ │ │ │ ├── BackgroundImage.js │ │ │ │ ├── Image.d.ts │ │ │ │ ├── Image.js │ │ │ │ ├── TextBlock.d.ts │ │ │ │ └── TextBlock.js │ │ │ ├── Cards │ │ │ │ ├── AdaptiveCard.d.ts │ │ │ │ └── AdaptiveCard.js │ │ │ ├── Containers │ │ │ │ ├── Column.d.ts │ │ │ │ ├── Column.js │ │ │ │ ├── ColumnSet.d.ts │ │ │ │ ├── ColumnSet.js │ │ │ │ ├── Container.d.ts │ │ │ │ ├── Container.js │ │ │ │ ├── Fact.d.ts │ │ │ │ ├── Fact.js │ │ │ │ ├── FactSet.d.ts │ │ │ │ ├── FactSet.js │ │ │ │ ├── ImageSet.d.ts │ │ │ │ └── ImageSet.js │ │ │ ├── Customs │ │ │ │ ├── Microsoft.Counter.d.ts │ │ │ │ └── Microsoft.Counter.js │ │ │ ├── Factories │ │ │ │ ├── ActionFactory.d.ts │ │ │ │ ├── ActionFactory.js │ │ │ │ ├── ContentFactory.d.ts │ │ │ │ ├── ContentFactory.js │ │ │ │ ├── DebugOutputFactory.d.ts │ │ │ │ └── DebugOutputFactory.js │ │ │ ├── Inputs │ │ │ │ ├── ChoiceSetInput.d.ts │ │ │ │ ├── ChoiceSetInput.js │ │ │ │ ├── DateInput.d.ts │ │ │ │ ├── DateInput.js │ │ │ │ ├── NumberInput.d.ts │ │ │ │ ├── NumberInput.js │ │ │ │ ├── PeoplePicker.d.ts │ │ │ │ ├── PeoplePicker.js │ │ │ │ ├── TextInput.d.ts │ │ │ │ ├── TextInput.js │ │ │ │ ├── TimeInput.d.ts │ │ │ │ ├── TimeInput.js │ │ │ │ ├── ToggleInput.d.ts │ │ │ │ └── ToggleInput.js │ │ │ ├── Root.d.ts │ │ │ └── Root.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── components │ │ ├── App │ │ │ ├── App.css │ │ │ └── index.js │ │ ├── Button │ │ │ ├── Button.css │ │ │ └── index.js │ │ ├── Card │ │ │ ├── Card.css │ │ │ └── index.js │ │ ├── CardList │ │ │ ├── CardList.css │ │ │ └── index.js │ │ ├── Editor │ │ │ ├── Editor.css │ │ │ └── index.js │ │ ├── ErrorMessage │ │ │ └── index.js │ │ ├── Header │ │ │ ├── Header.css │ │ │ └── index.js │ │ ├── Sample │ │ │ ├── Sample.css │ │ │ └── index.js │ │ └── SampleList │ │ │ ├── SampleList.css │ │ │ └── index.js │ ├── index.css │ ├── index.js │ ├── reducers │ │ ├── cardReducer.js │ │ └── index.js │ ├── static │ │ ├── adaptive-card.json │ │ ├── config.json │ │ └── icons │ │ │ ├── remove.svg │ │ │ └── right-arrow.svg │ ├── store.js │ └── utils │ │ └── common.js ├── webpack.config.js └── yarn.lock ├── tsconfig.json ├── tslint.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/README.md -------------------------------------------------------------------------------- /dist/Assets/Images/Placeholders/avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Assets/Images/Placeholders/avatar_default.png -------------------------------------------------------------------------------- /dist/Assets/Images/Placeholders/image_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Assets/Images/Placeholders/image_default.png -------------------------------------------------------------------------------- /dist/Components/Basic/Banner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Banner.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Banner.js -------------------------------------------------------------------------------- /dist/Components/Basic/CountDown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/CountDown.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/CountDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/CountDown.js -------------------------------------------------------------------------------- /dist/Components/Basic/ImageBackground.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/ImageBackground.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/ImageBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/ImageBackground.js -------------------------------------------------------------------------------- /dist/Components/Basic/ImageBlock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/ImageBlock.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/ImageBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/ImageBlock.js -------------------------------------------------------------------------------- /dist/Components/Basic/Label.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Label.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Label.js -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/FitImage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/FitImage.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/FitImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/FitImage.js -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/Markdown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/Markdown.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/Markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/Markdown.js -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/MarkdownTypes.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/MarkdownTypes.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/MarkdownTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/MarkdownTypes.js -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/RFC3339Date.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/RFC3339Date.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/RFC3339Date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/RFC3339Date.js -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/Rulers.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/Rulers.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/Rulers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/Rulers.js -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/Styles.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/Styles.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Markdown/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Markdown/Styles.js -------------------------------------------------------------------------------- /dist/Components/Basic/SeparateLine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/SeparateLine.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/SeparateLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/SeparateLine.js -------------------------------------------------------------------------------- /dist/Components/Basic/Svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Svg.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Svg.js -------------------------------------------------------------------------------- /dist/Components/Basic/Timer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Timer.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Timer.js -------------------------------------------------------------------------------- /dist/Components/Basic/Touchable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Touchable.d.ts -------------------------------------------------------------------------------- /dist/Components/Basic/Touchable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Basic/Touchable.js -------------------------------------------------------------------------------- /dist/Components/Containers/ButtonGroup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Containers/ButtonGroup.d.ts -------------------------------------------------------------------------------- /dist/Components/Containers/ButtonGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Containers/ButtonGroup.js -------------------------------------------------------------------------------- /dist/Components/Containers/Card.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Containers/Card.d.ts -------------------------------------------------------------------------------- /dist/Components/Containers/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Containers/Card.js -------------------------------------------------------------------------------- /dist/Components/Containers/ModalBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Containers/ModalBox.d.ts -------------------------------------------------------------------------------- /dist/Components/Containers/ModalBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Containers/ModalBox.js -------------------------------------------------------------------------------- /dist/Components/Inputs/Button.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Button.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Button.js -------------------------------------------------------------------------------- /dist/Components/Inputs/CheckBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/CheckBox.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/CheckBox.js -------------------------------------------------------------------------------- /dist/Components/Inputs/CheckList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/CheckList.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/CheckList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/CheckList.js -------------------------------------------------------------------------------- /dist/Components/Inputs/Choice.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Choice.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/Choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Choice.js -------------------------------------------------------------------------------- /dist/Components/Inputs/ChoicePanel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/ChoicePanel.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/ChoicePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/ChoicePanel.js -------------------------------------------------------------------------------- /dist/Components/Inputs/Contact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Contact.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Contact.js -------------------------------------------------------------------------------- /dist/Components/Inputs/DatePanel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/DatePanel.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/DatePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/DatePanel.js -------------------------------------------------------------------------------- /dist/Components/Inputs/InputBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/InputBox.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/InputBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/InputBox.js -------------------------------------------------------------------------------- /dist/Components/Inputs/LabelInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/LabelInput.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/LabelInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/LabelInput.js -------------------------------------------------------------------------------- /dist/Components/Inputs/RadioBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/RadioBox.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/RadioBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/RadioBox.js -------------------------------------------------------------------------------- /dist/Components/Inputs/RadioList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/RadioList.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/RadioList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/RadioList.js -------------------------------------------------------------------------------- /dist/Components/Inputs/TimePanel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/TimePanel.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/TimePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/TimePanel.js -------------------------------------------------------------------------------- /dist/Components/Inputs/Toggle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Toggle.d.ts -------------------------------------------------------------------------------- /dist/Components/Inputs/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Components/Inputs/Toggle.js -------------------------------------------------------------------------------- /dist/Config/ConfigManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Config/ConfigManager.d.ts -------------------------------------------------------------------------------- /dist/Config/ConfigManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Config/ConfigManager.js -------------------------------------------------------------------------------- /dist/Config/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Config/Types.d.ts -------------------------------------------------------------------------------- /dist/Config/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Config/Types.js -------------------------------------------------------------------------------- /dist/Config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Config/default.json -------------------------------------------------------------------------------- /dist/Contexts/CardContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/CardContext.d.ts -------------------------------------------------------------------------------- /dist/Contexts/CardContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/CardContext.js -------------------------------------------------------------------------------- /dist/Contexts/FormStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/FormStore.d.ts -------------------------------------------------------------------------------- /dist/Contexts/FormStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/FormStore.js -------------------------------------------------------------------------------- /dist/Contexts/HostContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/HostContext.d.ts -------------------------------------------------------------------------------- /dist/Contexts/HostContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/HostContext.js -------------------------------------------------------------------------------- /dist/Contexts/SchemaStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/SchemaStore.d.ts -------------------------------------------------------------------------------- /dist/Contexts/SchemaStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Contexts/SchemaStore.js -------------------------------------------------------------------------------- /dist/DataValidator/JsonValidator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/DataValidator/JsonValidator.d.ts -------------------------------------------------------------------------------- /dist/DataValidator/JsonValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/DataValidator/JsonValidator.js -------------------------------------------------------------------------------- /dist/Models/Abstract/AbstractModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/AbstractModel.d.ts -------------------------------------------------------------------------------- /dist/Models/Abstract/AbstractModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/AbstractModel.js -------------------------------------------------------------------------------- /dist/Models/Abstract/ActionModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/ActionModel.d.ts -------------------------------------------------------------------------------- /dist/Models/Abstract/ActionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/ActionModel.js -------------------------------------------------------------------------------- /dist/Models/Abstract/ContentModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/ContentModel.d.ts -------------------------------------------------------------------------------- /dist/Models/Abstract/ContentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/ContentModel.js -------------------------------------------------------------------------------- /dist/Models/Abstract/InputModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/InputModel.d.ts -------------------------------------------------------------------------------- /dist/Models/Abstract/InputModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/InputModel.js -------------------------------------------------------------------------------- /dist/Models/Abstract/ScopeModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/ScopeModel.d.ts -------------------------------------------------------------------------------- /dist/Models/Abstract/ScopeModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Abstract/ScopeModel.js -------------------------------------------------------------------------------- /dist/Models/Actions/CallbackAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/CallbackAction.d.ts -------------------------------------------------------------------------------- /dist/Models/Actions/CallbackAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/CallbackAction.js -------------------------------------------------------------------------------- /dist/Models/Actions/OpenUrlAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/OpenUrlAction.d.ts -------------------------------------------------------------------------------- /dist/Models/Actions/OpenUrlAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/OpenUrlAction.js -------------------------------------------------------------------------------- /dist/Models/Actions/SelectAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/SelectAction.d.ts -------------------------------------------------------------------------------- /dist/Models/Actions/SelectAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/SelectAction.js -------------------------------------------------------------------------------- /dist/Models/Actions/ShowCardAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/ShowCardAction.d.ts -------------------------------------------------------------------------------- /dist/Models/Actions/ShowCardAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/ShowCardAction.js -------------------------------------------------------------------------------- /dist/Models/Actions/SubmitAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/SubmitAction.d.ts -------------------------------------------------------------------------------- /dist/Models/Actions/SubmitAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Actions/SubmitAction.js -------------------------------------------------------------------------------- /dist/Models/CardElements/BackgroundImage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/CardElements/BackgroundImage.d.ts -------------------------------------------------------------------------------- /dist/Models/CardElements/BackgroundImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/CardElements/BackgroundImage.js -------------------------------------------------------------------------------- /dist/Models/CardElements/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/CardElements/Image.d.ts -------------------------------------------------------------------------------- /dist/Models/CardElements/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/CardElements/Image.js -------------------------------------------------------------------------------- /dist/Models/CardElements/TextBlock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/CardElements/TextBlock.d.ts -------------------------------------------------------------------------------- /dist/Models/CardElements/TextBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/CardElements/TextBlock.js -------------------------------------------------------------------------------- /dist/Models/Cards/Card.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Cards/Card.d.ts -------------------------------------------------------------------------------- /dist/Models/Cards/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Cards/Card.js -------------------------------------------------------------------------------- /dist/Models/Containers/Column.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/Column.d.ts -------------------------------------------------------------------------------- /dist/Models/Containers/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/Column.js -------------------------------------------------------------------------------- /dist/Models/Containers/ColumnSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/ColumnSet.d.ts -------------------------------------------------------------------------------- /dist/Models/Containers/ColumnSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/ColumnSet.js -------------------------------------------------------------------------------- /dist/Models/Containers/Container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/Container.d.ts -------------------------------------------------------------------------------- /dist/Models/Containers/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/Container.js -------------------------------------------------------------------------------- /dist/Models/Containers/Fact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/Fact.d.ts -------------------------------------------------------------------------------- /dist/Models/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/Fact.js -------------------------------------------------------------------------------- /dist/Models/Containers/FactSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/FactSet.d.ts -------------------------------------------------------------------------------- /dist/Models/Containers/FactSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/FactSet.js -------------------------------------------------------------------------------- /dist/Models/Containers/ImageSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/ImageSet.d.ts -------------------------------------------------------------------------------- /dist/Models/Containers/ImageSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Containers/ImageSet.js -------------------------------------------------------------------------------- /dist/Models/Customs/Microsoft.Counter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Customs/Microsoft.Counter.d.ts -------------------------------------------------------------------------------- /dist/Models/Customs/Microsoft.Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Customs/Microsoft.Counter.js -------------------------------------------------------------------------------- /dist/Models/Factories/ActionModelFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Factories/ActionModelFactory.d.ts -------------------------------------------------------------------------------- /dist/Models/Factories/ActionModelFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Factories/ActionModelFactory.js -------------------------------------------------------------------------------- /dist/Models/Factories/ContentModelFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Factories/ContentModelFactory.d.ts -------------------------------------------------------------------------------- /dist/Models/Factories/ContentModelFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Factories/ContentModelFactory.js -------------------------------------------------------------------------------- /dist/Models/Inputs/ChoiceInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/ChoiceInput.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/ChoiceInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/ChoiceInput.js -------------------------------------------------------------------------------- /dist/Models/Inputs/ChoiceSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/ChoiceSet.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/ChoiceSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/ChoiceSet.js -------------------------------------------------------------------------------- /dist/Models/Inputs/DateInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/DateInput.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/DateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/DateInput.js -------------------------------------------------------------------------------- /dist/Models/Inputs/NumberInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/NumberInput.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/NumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/NumberInput.js -------------------------------------------------------------------------------- /dist/Models/Inputs/PeoplePicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/PeoplePicker.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/PeoplePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/PeoplePicker.js -------------------------------------------------------------------------------- /dist/Models/Inputs/TextInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/TextInput.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/TextInput.js -------------------------------------------------------------------------------- /dist/Models/Inputs/TimeInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/TimeInput.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/TimeInput.js -------------------------------------------------------------------------------- /dist/Models/Inputs/ToggleInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/ToggleInput.d.ts -------------------------------------------------------------------------------- /dist/Models/Inputs/ToggleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Models/Inputs/ToggleInput.js -------------------------------------------------------------------------------- /dist/Schemas/Actions/CallbackAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/CallbackAction.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Actions/CallbackAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/CallbackAction.js -------------------------------------------------------------------------------- /dist/Schemas/Actions/OpenUrlAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/OpenUrlAction.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Actions/OpenUrlAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/OpenUrlAction.js -------------------------------------------------------------------------------- /dist/Schemas/Actions/SelectAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/SelectAction.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Actions/SelectAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/SelectAction.js -------------------------------------------------------------------------------- /dist/Schemas/Actions/ShowCardAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/ShowCardAction.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Actions/ShowCardAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/ShowCardAction.js -------------------------------------------------------------------------------- /dist/Schemas/Actions/SubmitAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/SubmitAction.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Actions/SubmitAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Actions/SubmitAction.js -------------------------------------------------------------------------------- /dist/Schemas/CardElements/BackgroundImage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/CardElements/BackgroundImage.d.ts -------------------------------------------------------------------------------- /dist/Schemas/CardElements/BackgroundImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/CardElements/BackgroundImage.js -------------------------------------------------------------------------------- /dist/Schemas/CardElements/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/CardElements/Image.d.ts -------------------------------------------------------------------------------- /dist/Schemas/CardElements/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/CardElements/Image.js -------------------------------------------------------------------------------- /dist/Schemas/CardElements/TextBlock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/CardElements/TextBlock.d.ts -------------------------------------------------------------------------------- /dist/Schemas/CardElements/TextBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/CardElements/TextBlock.js -------------------------------------------------------------------------------- /dist/Schemas/Cards/AdaptiveCard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Cards/AdaptiveCard.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Cards/AdaptiveCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Cards/AdaptiveCard.js -------------------------------------------------------------------------------- /dist/Schemas/Containers/Column.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/Column.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Containers/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/Column.js -------------------------------------------------------------------------------- /dist/Schemas/Containers/ColumnSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/ColumnSet.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Containers/ColumnSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/ColumnSet.js -------------------------------------------------------------------------------- /dist/Schemas/Containers/Container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/Container.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Containers/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/Container.js -------------------------------------------------------------------------------- /dist/Schemas/Containers/Fact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/Fact.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/Fact.js -------------------------------------------------------------------------------- /dist/Schemas/Containers/FactSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/FactSet.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Containers/FactSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/FactSet.js -------------------------------------------------------------------------------- /dist/Schemas/Containers/ImageSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/ImageSet.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Containers/ImageSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Containers/ImageSet.js -------------------------------------------------------------------------------- /dist/Schemas/Customs/Microsoft.Counter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Customs/Microsoft.Counter.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Customs/Microsoft.Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Customs/Microsoft.Counter.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/ChoiceInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/ChoiceInput.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/ChoiceInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/ChoiceInput.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/ChoiceSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/ChoiceSet.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/ChoiceSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/ChoiceSet.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/DateInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/DateInput.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/DateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/DateInput.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/NumberInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/NumberInput.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/NumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/NumberInput.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/PeoplePicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/PeoplePicker.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/PeoplePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/PeoplePicker.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/TextInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/TextInput.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/TextInput.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/TimeInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/TimeInput.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/TimeInput.js -------------------------------------------------------------------------------- /dist/Schemas/Inputs/ToggleInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/ToggleInput.d.ts -------------------------------------------------------------------------------- /dist/Schemas/Inputs/ToggleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/Inputs/ToggleInput.js -------------------------------------------------------------------------------- /dist/Schemas/SchemaValidator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/SchemaValidator.d.ts -------------------------------------------------------------------------------- /dist/Schemas/SchemaValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Schemas/SchemaValidator.js -------------------------------------------------------------------------------- /dist/Shared/Guid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Shared/Guid.d.ts -------------------------------------------------------------------------------- /dist/Shared/Guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Shared/Guid.js -------------------------------------------------------------------------------- /dist/Shared/Lang.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Shared/Lang.d.ts -------------------------------------------------------------------------------- /dist/Shared/Lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Shared/Lang.js -------------------------------------------------------------------------------- /dist/Shared/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Shared/Types.d.ts -------------------------------------------------------------------------------- /dist/Shared/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Shared/Types.js -------------------------------------------------------------------------------- /dist/Styles/StyleManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Styles/StyleManager.d.ts -------------------------------------------------------------------------------- /dist/Styles/StyleManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Styles/StyleManager.js -------------------------------------------------------------------------------- /dist/Utils/AccessibilityUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/AccessibilityUtils.d.ts -------------------------------------------------------------------------------- /dist/Utils/AccessibilityUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/AccessibilityUtils.js -------------------------------------------------------------------------------- /dist/Utils/EmailUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/EmailUtils.d.ts -------------------------------------------------------------------------------- /dist/Utils/EmailUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/EmailUtils.js -------------------------------------------------------------------------------- /dist/Utils/ImageUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/ImageUtils.d.ts -------------------------------------------------------------------------------- /dist/Utils/ImageUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/ImageUtils.js -------------------------------------------------------------------------------- /dist/Utils/NumberUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/NumberUtils.d.ts -------------------------------------------------------------------------------- /dist/Utils/NumberUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/NumberUtils.js -------------------------------------------------------------------------------- /dist/Utils/StringUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/StringUtils.d.ts -------------------------------------------------------------------------------- /dist/Utils/StringUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/StringUtils.js -------------------------------------------------------------------------------- /dist/Utils/TimeUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/TimeUtils.d.ts -------------------------------------------------------------------------------- /dist/Utils/TimeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/TimeUtils.js -------------------------------------------------------------------------------- /dist/Utils/UrlUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/UrlUtils.d.ts -------------------------------------------------------------------------------- /dist/Utils/UrlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Utils/UrlUtils.js -------------------------------------------------------------------------------- /dist/Views/Actions/Action.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Actions/Action.d.ts -------------------------------------------------------------------------------- /dist/Views/Actions/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Actions/Action.js -------------------------------------------------------------------------------- /dist/Views/CardElements/BackgroundImage.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/CardElements/BackgroundImage.d.ts -------------------------------------------------------------------------------- /dist/Views/CardElements/BackgroundImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/CardElements/BackgroundImage.js -------------------------------------------------------------------------------- /dist/Views/CardElements/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/CardElements/Image.d.ts -------------------------------------------------------------------------------- /dist/Views/CardElements/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/CardElements/Image.js -------------------------------------------------------------------------------- /dist/Views/CardElements/TextBlock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/CardElements/TextBlock.d.ts -------------------------------------------------------------------------------- /dist/Views/CardElements/TextBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/CardElements/TextBlock.js -------------------------------------------------------------------------------- /dist/Views/Cards/AdaptiveCard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Cards/AdaptiveCard.d.ts -------------------------------------------------------------------------------- /dist/Views/Cards/AdaptiveCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Cards/AdaptiveCard.js -------------------------------------------------------------------------------- /dist/Views/Containers/Column.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/Column.d.ts -------------------------------------------------------------------------------- /dist/Views/Containers/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/Column.js -------------------------------------------------------------------------------- /dist/Views/Containers/ColumnSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/ColumnSet.d.ts -------------------------------------------------------------------------------- /dist/Views/Containers/ColumnSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/ColumnSet.js -------------------------------------------------------------------------------- /dist/Views/Containers/Container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/Container.d.ts -------------------------------------------------------------------------------- /dist/Views/Containers/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/Container.js -------------------------------------------------------------------------------- /dist/Views/Containers/Fact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/Fact.d.ts -------------------------------------------------------------------------------- /dist/Views/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/Fact.js -------------------------------------------------------------------------------- /dist/Views/Containers/FactSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/FactSet.d.ts -------------------------------------------------------------------------------- /dist/Views/Containers/FactSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/FactSet.js -------------------------------------------------------------------------------- /dist/Views/Containers/ImageSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/ImageSet.d.ts -------------------------------------------------------------------------------- /dist/Views/Containers/ImageSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Containers/ImageSet.js -------------------------------------------------------------------------------- /dist/Views/Customs/Microsoft.Counter.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Customs/Microsoft.Counter.d.ts -------------------------------------------------------------------------------- /dist/Views/Customs/Microsoft.Counter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Customs/Microsoft.Counter.js -------------------------------------------------------------------------------- /dist/Views/Factories/ActionFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Factories/ActionFactory.d.ts -------------------------------------------------------------------------------- /dist/Views/Factories/ActionFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Factories/ActionFactory.js -------------------------------------------------------------------------------- /dist/Views/Factories/ContentFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Factories/ContentFactory.d.ts -------------------------------------------------------------------------------- /dist/Views/Factories/ContentFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Factories/ContentFactory.js -------------------------------------------------------------------------------- /dist/Views/Factories/DebugOutputFactory.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Factories/DebugOutputFactory.d.ts -------------------------------------------------------------------------------- /dist/Views/Factories/DebugOutputFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Factories/DebugOutputFactory.js -------------------------------------------------------------------------------- /dist/Views/Inputs/ChoiceSetInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/ChoiceSetInput.d.ts -------------------------------------------------------------------------------- /dist/Views/Inputs/ChoiceSetInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/ChoiceSetInput.js -------------------------------------------------------------------------------- /dist/Views/Inputs/DateInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/DateInput.d.ts -------------------------------------------------------------------------------- /dist/Views/Inputs/DateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/DateInput.js -------------------------------------------------------------------------------- /dist/Views/Inputs/NumberInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/NumberInput.d.ts -------------------------------------------------------------------------------- /dist/Views/Inputs/NumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/NumberInput.js -------------------------------------------------------------------------------- /dist/Views/Inputs/PeoplePicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/PeoplePicker.d.ts -------------------------------------------------------------------------------- /dist/Views/Inputs/PeoplePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/PeoplePicker.js -------------------------------------------------------------------------------- /dist/Views/Inputs/TextInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/TextInput.d.ts -------------------------------------------------------------------------------- /dist/Views/Inputs/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/TextInput.js -------------------------------------------------------------------------------- /dist/Views/Inputs/TimeInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/TimeInput.d.ts -------------------------------------------------------------------------------- /dist/Views/Inputs/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/TimeInput.js -------------------------------------------------------------------------------- /dist/Views/Inputs/ToggleInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/ToggleInput.d.ts -------------------------------------------------------------------------------- /dist/Views/Inputs/ToggleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Inputs/ToggleInput.js -------------------------------------------------------------------------------- /dist/Views/Root.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Root.d.ts -------------------------------------------------------------------------------- /dist/Views/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/Views/Root.js -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/dist/index.js -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/.expo-shared/assets.json -------------------------------------------------------------------------------- /examples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/.gitignore -------------------------------------------------------------------------------- /examples/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Banner.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Banner.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Banner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Banner.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/CountDown.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/CountDown.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/CountDown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/CountDown.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/ImageBackground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/ImageBackground.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/ImageBlock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/ImageBlock.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/ImageBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/ImageBlock.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Label.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Label.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Label.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Markdown/Rulers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Markdown/Rulers.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Markdown/Styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Markdown/Styles.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/SeparateLine.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/SeparateLine.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/SeparateLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/SeparateLine.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Svg.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Svg.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Timer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Timer.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Timer.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Touchable.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Touchable.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Basic/Touchable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Basic/Touchable.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Containers/Card.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Containers/Card.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Containers/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Containers/Card.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Containers/ModalBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Containers/ModalBox.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Containers/ModalBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Containers/ModalBox.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Button.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Button.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Button.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/CheckBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/CheckBox.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/CheckBox.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/CheckList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/CheckList.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/CheckList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/CheckList.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Choice.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Choice.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Choice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Choice.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/ChoicePanel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/ChoicePanel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/ChoicePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/ChoicePanel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Contact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Contact.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Contact.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/DatePanel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/DatePanel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/DatePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/DatePanel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/InputBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/InputBox.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/InputBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/InputBox.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/LabelInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/LabelInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/LabelInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/LabelInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/RadioBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/RadioBox.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/RadioBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/RadioBox.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/RadioList.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/RadioList.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/RadioList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/RadioList.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/TimePanel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/TimePanel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/TimePanel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/TimePanel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Toggle.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Toggle.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Components/Inputs/Toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Components/Inputs/Toggle.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Config/ConfigManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Config/ConfigManager.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Config/ConfigManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Config/ConfigManager.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Config/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Config/Types.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Config/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Config/Types.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Config/default.json -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/CardContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/CardContext.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/CardContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/CardContext.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/FormStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/FormStore.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/FormStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/FormStore.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/HostContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/HostContext.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/HostContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/HostContext.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/SchemaStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/SchemaStore.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Contexts/SchemaStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Contexts/SchemaStore.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/DataValidator/JsonValidator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/DataValidator/JsonValidator.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/DataValidator/JsonValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/DataValidator/JsonValidator.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/AbstractModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/AbstractModel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/AbstractModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/AbstractModel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/ActionModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/ActionModel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/ActionModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/ActionModel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/ContentModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/ContentModel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/ContentModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/ContentModel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/InputModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/InputModel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/InputModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/InputModel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/ScopeModel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/ScopeModel.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Abstract/ScopeModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Abstract/ScopeModel.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/CallbackAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/CallbackAction.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/CallbackAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/CallbackAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/OpenUrlAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/OpenUrlAction.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/OpenUrlAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/OpenUrlAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/SelectAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/SelectAction.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/SelectAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/SelectAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/ShowCardAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/ShowCardAction.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/ShowCardAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/ShowCardAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/SubmitAction.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/SubmitAction.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Actions/SubmitAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Actions/SubmitAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/CardElements/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/CardElements/Image.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/CardElements/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/CardElements/Image.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/CardElements/TextBlock.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/CardElements/TextBlock.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/CardElements/TextBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/CardElements/TextBlock.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Cards/Card.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Cards/Card.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Cards/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Cards/Card.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/Column.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/Column.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/Column.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/ColumnSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/ColumnSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/ColumnSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/ColumnSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/Container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/Container.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/Container.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/Fact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/Fact.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/Fact.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/FactSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/FactSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/FactSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/FactSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/ImageSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/ImageSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Containers/ImageSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Containers/ImageSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/ChoiceInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/ChoiceInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/ChoiceInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/ChoiceInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/ChoiceSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/ChoiceSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/ChoiceSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/ChoiceSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/DateInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/DateInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/DateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/DateInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/NumberInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/NumberInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/NumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/NumberInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/PeoplePicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/PeoplePicker.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/PeoplePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/PeoplePicker.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/TextInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/TextInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/TextInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/TimeInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/TimeInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/TimeInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/ToggleInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/ToggleInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Models/Inputs/ToggleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Models/Inputs/ToggleInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Actions/OpenUrlAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Actions/OpenUrlAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Actions/SelectAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Actions/SelectAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Actions/SubmitAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Actions/SubmitAction.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/CardElements/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/CardElements/Image.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/CardElements/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/CardElements/Image.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Cards/AdaptiveCard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Cards/AdaptiveCard.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Cards/AdaptiveCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Cards/AdaptiveCard.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/Column.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/Column.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/Column.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/ColumnSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/ColumnSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/Container.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/Fact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/Fact.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/Fact.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/FactSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/FactSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/FactSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/FactSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/ImageSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/ImageSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Containers/ImageSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Containers/ImageSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/ChoiceInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/ChoiceInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/ChoiceInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/ChoiceInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/ChoiceSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/ChoiceSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/ChoiceSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/ChoiceSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/DateInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/DateInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/DateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/DateInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/NumberInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/NumberInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/NumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/NumberInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/PeoplePicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/PeoplePicker.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/PeoplePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/PeoplePicker.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/TextInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/TextInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/TextInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/TimeInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/TimeInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/TimeInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/ToggleInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/ToggleInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/Inputs/ToggleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/Inputs/ToggleInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/SchemaValidator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/SchemaValidator.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Schemas/SchemaValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Schemas/SchemaValidator.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Shared/Guid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Shared/Guid.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Shared/Guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Shared/Guid.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Shared/Lang.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Shared/Lang.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Shared/Lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Shared/Lang.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Shared/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Shared/Types.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Shared/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Shared/Types.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Styles/StyleManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Styles/StyleManager.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Styles/StyleManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Styles/StyleManager.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/AccessibilityUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/AccessibilityUtils.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/AccessibilityUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/AccessibilityUtils.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/EmailUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/EmailUtils.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/EmailUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/EmailUtils.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/ImageUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/ImageUtils.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/ImageUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/ImageUtils.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/NumberUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/NumberUtils.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/NumberUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/NumberUtils.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/StringUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/StringUtils.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/StringUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/StringUtils.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/TimeUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/TimeUtils.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/TimeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/TimeUtils.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/UrlUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/UrlUtils.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Utils/UrlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Utils/UrlUtils.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Actions/Action.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Actions/Action.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Actions/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Actions/Action.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/CardElements/Image.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/CardElements/Image.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/CardElements/Image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/CardElements/Image.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/CardElements/TextBlock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/CardElements/TextBlock.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Cards/AdaptiveCard.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Cards/AdaptiveCard.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Cards/AdaptiveCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Cards/AdaptiveCard.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/Column.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/Column.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/Column.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/Column.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/ColumnSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/ColumnSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/ColumnSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/ColumnSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/Container.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/Container.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/Container.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/Fact.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/Fact.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/Fact.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/FactSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/FactSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/FactSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/FactSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/ImageSet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/ImageSet.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Containers/ImageSet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Containers/ImageSet.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Factories/ActionFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Factories/ActionFactory.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/ChoiceSetInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/ChoiceSetInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/ChoiceSetInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/ChoiceSetInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/DateInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/DateInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/DateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/DateInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/NumberInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/NumberInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/NumberInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/NumberInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/PeoplePicker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/PeoplePicker.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/PeoplePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/PeoplePicker.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/TextInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/TextInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/TextInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/TimeInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/TimeInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/TimeInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/ToggleInput.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/ToggleInput.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Inputs/ToggleInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Inputs/ToggleInput.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Root.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Root.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/Views/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/Views/Root.js -------------------------------------------------------------------------------- /examples/AdaptiveCards/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/index.d.ts -------------------------------------------------------------------------------- /examples/AdaptiveCards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/AdaptiveCards/index.js -------------------------------------------------------------------------------- /examples/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/App.js -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/app.json -------------------------------------------------------------------------------- /examples/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/babel.config.js -------------------------------------------------------------------------------- /examples/mockData/3rd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/3rd.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/index.js -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/index.js.map -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/index.ts -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/latest news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/latest news.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/microsoft stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/microsoft stock.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/show me funny video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/show me funny video.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/time in london.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/time in london.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer/what is the weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer/what is the weather.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/index.js -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/index.js.map -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/index.ts -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/latest news.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/latest news.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/microsoft stock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/microsoft stock.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/show me funny video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/show me funny video.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/time in london.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/time in london.json -------------------------------------------------------------------------------- /examples/mockData/BingAnswer2/what is the weather.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/BingAnswer2/what is the weather.json -------------------------------------------------------------------------------- /examples/mockData/adaptiveUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/adaptiveUpdate.json -------------------------------------------------------------------------------- /examples/mockData/bingFact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/bingFact.json -------------------------------------------------------------------------------- /examples/mockData/bingMap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/bingMap.json -------------------------------------------------------------------------------- /examples/mockData/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/button.json -------------------------------------------------------------------------------- /examples/mockData/counter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/counter.json -------------------------------------------------------------------------------- /examples/mockData/dinning.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/dinning.json -------------------------------------------------------------------------------- /examples/mockData/fact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/fact.json -------------------------------------------------------------------------------- /examples/mockData/flightItinerary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/flightItinerary.json -------------------------------------------------------------------------------- /examples/mockData/flightUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/flightUpdate.json -------------------------------------------------------------------------------- /examples/mockData/foodOrder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/foodOrder.json -------------------------------------------------------------------------------- /examples/mockData/imageGallery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/imageGallery.json -------------------------------------------------------------------------------- /examples/mockData/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/index.js -------------------------------------------------------------------------------- /examples/mockData/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/index.js.map -------------------------------------------------------------------------------- /examples/mockData/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/index.ts -------------------------------------------------------------------------------- /examples/mockData/inputForm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/inputForm.json -------------------------------------------------------------------------------- /examples/mockData/inputs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/inputs.json -------------------------------------------------------------------------------- /examples/mockData/latestNews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/latestNews.json -------------------------------------------------------------------------------- /examples/mockData/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/list.json -------------------------------------------------------------------------------- /examples/mockData/markdown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/markdown.json -------------------------------------------------------------------------------- /examples/mockData/outlookCard1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/outlookCard1.json -------------------------------------------------------------------------------- /examples/mockData/outlookCard2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/outlookCard2.json -------------------------------------------------------------------------------- /examples/mockData/peopleSuggestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/peopleSuggestion.json -------------------------------------------------------------------------------- /examples/mockData/peoplepicker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/peoplepicker.json -------------------------------------------------------------------------------- /examples/mockData/restaurant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/restaurant.json -------------------------------------------------------------------------------- /examples/mockData/showVideo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/showVideo.json -------------------------------------------------------------------------------- /examples/mockData/skills/email_sent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/skills/email_sent.json -------------------------------------------------------------------------------- /examples/mockData/skills/read_email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/skills/read_email.json -------------------------------------------------------------------------------- /examples/mockData/skills/search_email.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/skills/search_email.json -------------------------------------------------------------------------------- /examples/mockData/skills/send_text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/skills/send_text.json -------------------------------------------------------------------------------- /examples/mockData/skills/send_text_contact_disam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/skills/send_text_contact_disam.json -------------------------------------------------------------------------------- /examples/mockData/solitaire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/solitaire.json -------------------------------------------------------------------------------- /examples/mockData/sportsGameUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/sportsGameUpdate.json -------------------------------------------------------------------------------- /examples/mockData/stockUpdate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/stockUpdate.json -------------------------------------------------------------------------------- /examples/mockData/vocabulary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/vocabulary.json -------------------------------------------------------------------------------- /examples/mockData/weatherCompact.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/weatherCompact.json -------------------------------------------------------------------------------- /examples/mockData/weatherLarge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/mockData/weatherLarge.json -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/examples/yarn.lock -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/screenshot.gif -------------------------------------------------------------------------------- /src/Assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Assets/.DS_Store -------------------------------------------------------------------------------- /src/Assets/Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Assets/Images/.DS_Store -------------------------------------------------------------------------------- /src/Assets/Images/Placeholders/avatar_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Assets/Images/Placeholders/avatar_default.png -------------------------------------------------------------------------------- /src/Assets/Images/Placeholders/image_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Assets/Images/Placeholders/image_default.png -------------------------------------------------------------------------------- /src/Components/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/.DS_Store -------------------------------------------------------------------------------- /src/Components/Basic/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/.DS_Store -------------------------------------------------------------------------------- /src/Components/Basic/Banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Banner.tsx -------------------------------------------------------------------------------- /src/Components/Basic/CountDown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/CountDown.tsx -------------------------------------------------------------------------------- /src/Components/Basic/ImageBackground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/ImageBackground.tsx -------------------------------------------------------------------------------- /src/Components/Basic/ImageBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/ImageBlock.tsx -------------------------------------------------------------------------------- /src/Components/Basic/Label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Label.tsx -------------------------------------------------------------------------------- /src/Components/Basic/Markdown/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Markdown/.DS_Store -------------------------------------------------------------------------------- /src/Components/Basic/Markdown/FitImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Markdown/FitImage.tsx -------------------------------------------------------------------------------- /src/Components/Basic/Markdown/Markdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Markdown/Markdown.tsx -------------------------------------------------------------------------------- /src/Components/Basic/Markdown/MarkdownTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Markdown/MarkdownTypes.ts -------------------------------------------------------------------------------- /src/Components/Basic/Markdown/RFC3339Date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Markdown/RFC3339Date.ts -------------------------------------------------------------------------------- /src/Components/Basic/Markdown/Rulers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Markdown/Rulers.ts -------------------------------------------------------------------------------- /src/Components/Basic/Markdown/Styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Markdown/Styles.ts -------------------------------------------------------------------------------- /src/Components/Basic/SeparateLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/SeparateLine.tsx -------------------------------------------------------------------------------- /src/Components/Basic/Svg.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Svg.tsx -------------------------------------------------------------------------------- /src/Components/Basic/Timer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Timer.tsx -------------------------------------------------------------------------------- /src/Components/Basic/Touchable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Basic/Touchable.tsx -------------------------------------------------------------------------------- /src/Components/Containers/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Containers/ButtonGroup.tsx -------------------------------------------------------------------------------- /src/Components/Containers/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Containers/Card.tsx -------------------------------------------------------------------------------- /src/Components/Containers/ModalBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Containers/ModalBox.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/Button.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/CheckBox.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/CheckList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/CheckList.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/Choice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/Choice.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/ChoicePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/ChoicePanel.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/Contact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/Contact.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/DatePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/DatePanel.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/InputBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/InputBox.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/LabelInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/LabelInput.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/RadioBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/RadioBox.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/RadioList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/RadioList.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/TimePanel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/TimePanel.tsx -------------------------------------------------------------------------------- /src/Components/Inputs/Toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Components/Inputs/Toggle.tsx -------------------------------------------------------------------------------- /src/Config/ConfigManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Config/ConfigManager.ts -------------------------------------------------------------------------------- /src/Config/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Config/Types.ts -------------------------------------------------------------------------------- /src/Config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Config/default.json -------------------------------------------------------------------------------- /src/Contexts/CardContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Contexts/CardContext.ts -------------------------------------------------------------------------------- /src/Contexts/FormStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Contexts/FormStore.ts -------------------------------------------------------------------------------- /src/Contexts/HostContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Contexts/HostContext.ts -------------------------------------------------------------------------------- /src/Contexts/SchemaStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Contexts/SchemaStore.ts -------------------------------------------------------------------------------- /src/DataValidator/JsonValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/DataValidator/JsonValidator.ts -------------------------------------------------------------------------------- /src/Models/Abstract/AbstractModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Abstract/AbstractModel.ts -------------------------------------------------------------------------------- /src/Models/Abstract/ActionModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Abstract/ActionModel.ts -------------------------------------------------------------------------------- /src/Models/Abstract/ContentModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Abstract/ContentModel.ts -------------------------------------------------------------------------------- /src/Models/Abstract/InputModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Abstract/InputModel.ts -------------------------------------------------------------------------------- /src/Models/Abstract/ScopeModel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Abstract/ScopeModel.ts -------------------------------------------------------------------------------- /src/Models/Actions/CallbackAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Actions/CallbackAction.ts -------------------------------------------------------------------------------- /src/Models/Actions/OpenUrlAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Actions/OpenUrlAction.ts -------------------------------------------------------------------------------- /src/Models/Actions/SelectAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Actions/SelectAction.ts -------------------------------------------------------------------------------- /src/Models/Actions/ShowCardAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Actions/ShowCardAction.ts -------------------------------------------------------------------------------- /src/Models/Actions/SubmitAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Actions/SubmitAction.ts -------------------------------------------------------------------------------- /src/Models/CardElements/BackgroundImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/CardElements/BackgroundImage.ts -------------------------------------------------------------------------------- /src/Models/CardElements/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/CardElements/Image.ts -------------------------------------------------------------------------------- /src/Models/CardElements/TextBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/CardElements/TextBlock.ts -------------------------------------------------------------------------------- /src/Models/Cards/Card.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Cards/Card.ts -------------------------------------------------------------------------------- /src/Models/Containers/Column.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Containers/Column.ts -------------------------------------------------------------------------------- /src/Models/Containers/ColumnSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Containers/ColumnSet.ts -------------------------------------------------------------------------------- /src/Models/Containers/Container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Containers/Container.ts -------------------------------------------------------------------------------- /src/Models/Containers/Fact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Containers/Fact.ts -------------------------------------------------------------------------------- /src/Models/Containers/FactSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Containers/FactSet.ts -------------------------------------------------------------------------------- /src/Models/Containers/ImageSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Containers/ImageSet.ts -------------------------------------------------------------------------------- /src/Models/Customs/Microsoft.Counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Customs/Microsoft.Counter.ts -------------------------------------------------------------------------------- /src/Models/Factories/ActionModelFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Factories/ActionModelFactory.ts -------------------------------------------------------------------------------- /src/Models/Factories/ContentModelFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Factories/ContentModelFactory.ts -------------------------------------------------------------------------------- /src/Models/Inputs/ChoiceInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/ChoiceInput.ts -------------------------------------------------------------------------------- /src/Models/Inputs/ChoiceSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/ChoiceSet.ts -------------------------------------------------------------------------------- /src/Models/Inputs/DateInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/DateInput.ts -------------------------------------------------------------------------------- /src/Models/Inputs/NumberInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/NumberInput.ts -------------------------------------------------------------------------------- /src/Models/Inputs/PeoplePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/PeoplePicker.ts -------------------------------------------------------------------------------- /src/Models/Inputs/TextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/TextInput.ts -------------------------------------------------------------------------------- /src/Models/Inputs/TimeInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/TimeInput.ts -------------------------------------------------------------------------------- /src/Models/Inputs/ToggleInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Models/Inputs/ToggleInput.ts -------------------------------------------------------------------------------- /src/Schemas/Actions/CallbackAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Actions/CallbackAction.ts -------------------------------------------------------------------------------- /src/Schemas/Actions/OpenUrlAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Actions/OpenUrlAction.ts -------------------------------------------------------------------------------- /src/Schemas/Actions/SelectAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Actions/SelectAction.ts -------------------------------------------------------------------------------- /src/Schemas/Actions/ShowCardAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Actions/ShowCardAction.ts -------------------------------------------------------------------------------- /src/Schemas/Actions/SubmitAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Actions/SubmitAction.ts -------------------------------------------------------------------------------- /src/Schemas/CardElements/BackgroundImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/CardElements/BackgroundImage.ts -------------------------------------------------------------------------------- /src/Schemas/CardElements/Image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/CardElements/Image.ts -------------------------------------------------------------------------------- /src/Schemas/CardElements/TextBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/CardElements/TextBlock.ts -------------------------------------------------------------------------------- /src/Schemas/Cards/AdaptiveCard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Cards/AdaptiveCard.ts -------------------------------------------------------------------------------- /src/Schemas/Containers/Column.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Containers/Column.ts -------------------------------------------------------------------------------- /src/Schemas/Containers/ColumnSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Containers/ColumnSet.ts -------------------------------------------------------------------------------- /src/Schemas/Containers/Container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Containers/Container.ts -------------------------------------------------------------------------------- /src/Schemas/Containers/Fact.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Containers/Fact.ts -------------------------------------------------------------------------------- /src/Schemas/Containers/FactSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Containers/FactSet.ts -------------------------------------------------------------------------------- /src/Schemas/Containers/ImageSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Containers/ImageSet.ts -------------------------------------------------------------------------------- /src/Schemas/Customs/Microsoft.Counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Customs/Microsoft.Counter.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/ChoiceInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/ChoiceInput.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/ChoiceSet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/ChoiceSet.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/DateInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/DateInput.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/NumberInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/NumberInput.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/PeoplePicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/PeoplePicker.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/TextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/TextInput.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/TimeInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/TimeInput.ts -------------------------------------------------------------------------------- /src/Schemas/Inputs/ToggleInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/Inputs/ToggleInput.ts -------------------------------------------------------------------------------- /src/Schemas/SchemaValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Schemas/SchemaValidator.ts -------------------------------------------------------------------------------- /src/Shared/Guid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Shared/Guid.ts -------------------------------------------------------------------------------- /src/Shared/Lang.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Shared/Lang.ts -------------------------------------------------------------------------------- /src/Shared/Types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Shared/Types.ts -------------------------------------------------------------------------------- /src/Styles/StyleManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Styles/StyleManager.ts -------------------------------------------------------------------------------- /src/Utils/AccessibilityUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Utils/AccessibilityUtils.ts -------------------------------------------------------------------------------- /src/Utils/EmailUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Utils/EmailUtils.ts -------------------------------------------------------------------------------- /src/Utils/ImageUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Utils/ImageUtils.ts -------------------------------------------------------------------------------- /src/Utils/NumberUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Utils/NumberUtils.ts -------------------------------------------------------------------------------- /src/Utils/StringUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Utils/StringUtils.ts -------------------------------------------------------------------------------- /src/Utils/TimeUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Utils/TimeUtils.ts -------------------------------------------------------------------------------- /src/Utils/UrlUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Utils/UrlUtils.ts -------------------------------------------------------------------------------- /src/Views/Actions/Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Actions/Action.tsx -------------------------------------------------------------------------------- /src/Views/CardElements/BackgroundImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/CardElements/BackgroundImage.tsx -------------------------------------------------------------------------------- /src/Views/CardElements/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/CardElements/Image.tsx -------------------------------------------------------------------------------- /src/Views/CardElements/TextBlock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/CardElements/TextBlock.tsx -------------------------------------------------------------------------------- /src/Views/Cards/AdaptiveCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Cards/AdaptiveCard.tsx -------------------------------------------------------------------------------- /src/Views/Containers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Containers/.DS_Store -------------------------------------------------------------------------------- /src/Views/Containers/Column.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Containers/Column.tsx -------------------------------------------------------------------------------- /src/Views/Containers/ColumnSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Containers/ColumnSet.tsx -------------------------------------------------------------------------------- /src/Views/Containers/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Containers/Container.tsx -------------------------------------------------------------------------------- /src/Views/Containers/Fact.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Containers/Fact.tsx -------------------------------------------------------------------------------- /src/Views/Containers/FactSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Containers/FactSet.tsx -------------------------------------------------------------------------------- /src/Views/Containers/ImageSet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Containers/ImageSet.tsx -------------------------------------------------------------------------------- /src/Views/Customs/Microsoft.Counter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Customs/Microsoft.Counter.tsx -------------------------------------------------------------------------------- /src/Views/Factories/ActionFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Factories/ActionFactory.tsx -------------------------------------------------------------------------------- /src/Views/Factories/ContentFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Factories/ContentFactory.tsx -------------------------------------------------------------------------------- /src/Views/Factories/DebugOutputFactory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Factories/DebugOutputFactory.tsx -------------------------------------------------------------------------------- /src/Views/Inputs/ChoiceSetInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Inputs/ChoiceSetInput.tsx -------------------------------------------------------------------------------- /src/Views/Inputs/DateInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Inputs/DateInput.tsx -------------------------------------------------------------------------------- /src/Views/Inputs/NumberInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Inputs/NumberInput.tsx -------------------------------------------------------------------------------- /src/Views/Inputs/PeoplePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Inputs/PeoplePicker.tsx -------------------------------------------------------------------------------- /src/Views/Inputs/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Inputs/TextInput.tsx -------------------------------------------------------------------------------- /src/Views/Inputs/TimeInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Inputs/TimeInput.tsx -------------------------------------------------------------------------------- /src/Views/Inputs/ToggleInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Inputs/ToggleInput.tsx -------------------------------------------------------------------------------- /src/Views/Root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/Views/Root.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/src/type.d.ts -------------------------------------------------------------------------------- /tool/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/.babelrc -------------------------------------------------------------------------------- /tool/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/.eslintignore -------------------------------------------------------------------------------- /tool/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/.eslintrc -------------------------------------------------------------------------------- /tool/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/.gitignore -------------------------------------------------------------------------------- /tool/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/package.json -------------------------------------------------------------------------------- /tool/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/public/index.html -------------------------------------------------------------------------------- /tool/src/Constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/Constants.js -------------------------------------------------------------------------------- /tool/src/actions/cardActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/actions/cardActions.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Components/Basic/Label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Components/Basic/Label.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Components/Basic/Svg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Components/Basic/Svg.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Components/Basic/Svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Components/Basic/Svg.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Components/Basic/Timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Components/Basic/Timer.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Config/ConfigManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Config/ConfigManager.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Config/ConfigManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Config/ConfigManager.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Config/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Config/Types.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Config/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Config/Types.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Config/default.json -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/CardContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/CardContext.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/CardContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/CardContext.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/FormStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/FormStore.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/FormStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/FormStore.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/HostContext.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/HostContext.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/HostContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/HostContext.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/SchemaStore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/SchemaStore.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Contexts/SchemaStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Contexts/SchemaStore.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Models/Cards/Card.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Models/Cards/Card.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Models/Cards/Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Models/Cards/Card.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Models/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Models/Containers/Fact.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Shared/Guid.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Shared/Guid.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Shared/Guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Shared/Guid.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Shared/Lang.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Shared/Lang.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Shared/Lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Shared/Lang.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Shared/Types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Shared/Types.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Shared/Types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Shared/Types.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Styles/StyleManager.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Styles/StyleManager.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Styles/StyleManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Styles/StyleManager.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/EmailUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/EmailUtils.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/EmailUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/EmailUtils.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/ImageUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/ImageUtils.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/ImageUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/ImageUtils.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/NumberUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/NumberUtils.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/NumberUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/NumberUtils.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/StringUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/StringUtils.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/StringUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/StringUtils.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/TimeUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/TimeUtils.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/TimeUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/TimeUtils.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/UrlUtils.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/UrlUtils.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Utils/UrlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Utils/UrlUtils.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Actions/Action.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Actions/Action.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Actions/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Actions/Action.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Containers/Fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Containers/Fact.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Inputs/DateInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Inputs/DateInput.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Inputs/TextInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Inputs/TextInput.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Inputs/TimeInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Inputs/TimeInput.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Root.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Root.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/Views/Root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/Views/Root.js -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/index.d.ts -------------------------------------------------------------------------------- /tool/src/assets/AdaptiveCards/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/assets/AdaptiveCards/index.js -------------------------------------------------------------------------------- /tool/src/components/App/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/App/App.css -------------------------------------------------------------------------------- /tool/src/components/App/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/App/index.js -------------------------------------------------------------------------------- /tool/src/components/Button/Button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Button/Button.css -------------------------------------------------------------------------------- /tool/src/components/Button/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Button/index.js -------------------------------------------------------------------------------- /tool/src/components/Card/Card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Card/Card.css -------------------------------------------------------------------------------- /tool/src/components/Card/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Card/index.js -------------------------------------------------------------------------------- /tool/src/components/CardList/CardList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/CardList/CardList.css -------------------------------------------------------------------------------- /tool/src/components/CardList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/CardList/index.js -------------------------------------------------------------------------------- /tool/src/components/Editor/Editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Editor/Editor.css -------------------------------------------------------------------------------- /tool/src/components/Editor/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Editor/index.js -------------------------------------------------------------------------------- /tool/src/components/ErrorMessage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/ErrorMessage/index.js -------------------------------------------------------------------------------- /tool/src/components/Header/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Header/Header.css -------------------------------------------------------------------------------- /tool/src/components/Header/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Header/index.js -------------------------------------------------------------------------------- /tool/src/components/Sample/Sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Sample/Sample.css -------------------------------------------------------------------------------- /tool/src/components/Sample/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/Sample/index.js -------------------------------------------------------------------------------- /tool/src/components/SampleList/SampleList.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/SampleList/SampleList.css -------------------------------------------------------------------------------- /tool/src/components/SampleList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/components/SampleList/index.js -------------------------------------------------------------------------------- /tool/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/index.css -------------------------------------------------------------------------------- /tool/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/index.js -------------------------------------------------------------------------------- /tool/src/reducers/cardReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/reducers/cardReducer.js -------------------------------------------------------------------------------- /tool/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/reducers/index.js -------------------------------------------------------------------------------- /tool/src/static/adaptive-card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/static/adaptive-card.json -------------------------------------------------------------------------------- /tool/src/static/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/static/config.json -------------------------------------------------------------------------------- /tool/src/static/icons/remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/static/icons/remove.svg -------------------------------------------------------------------------------- /tool/src/static/icons/right-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/static/icons/right-arrow.svg -------------------------------------------------------------------------------- /tool/src/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/store.js -------------------------------------------------------------------------------- /tool/src/utils/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/src/utils/common.js -------------------------------------------------------------------------------- /tool/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/webpack.config.js -------------------------------------------------------------------------------- /tool/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tool/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/react-native-adaptivecards/HEAD/yarn.lock --------------------------------------------------------------------------------