Skip to content

Commit

Permalink
Add embedded views to the SDK & integrate into sample app (#243)
Browse files Browse the repository at this point in the history
* card view implemented

* code changes as per recent review

* Embedded Manager Module - WIP

* Embedded Manager Module - added uuid library

* usage of card view

* Code modified for embedded msg

* Documentation added

* Events example added

* Embedded msg example with card view

* Embedded msg example updated

* build config changed and few updates done on card component

* react-example improved

* Create manual.yml

* Node webpack config changed

* Webpack config changed

* Yarn file issue fixed

* [MOB-7175]: add new filter method that leaves in JSON only messages (#238)

* add new filter method that leaves in JSON only messages

* Mentioning filterOnlyReadAndNeverTriggerMessages

---------

Co-authored-by: mitch prewitt <mitch.prewitt@iterable.com>
Co-authored-by: Brad Umbaugh <brad.umbaugh@iterable.com>

* ver bump (#240)

Co-authored-by: mitch prewitt <mitch.prewitt@iterable.com>

* embedded msg view integration

* integrate demo in sample app

* Resolve node build issue

* commit remaining code

* commit remaining files

---------

Co-authored-by: iamavishkar <imavishkar@gmail.com>
Co-authored-by: Vishal Joshi <joshivishal895@gmail.com>
Co-authored-by: Mitch Prewitt <44011584+mprew97@users.noreply.github.com>
Co-authored-by: mitch prewitt <mitch.prewitt@iterable.com>
Co-authored-by: Brad Umbaugh <brad.umbaugh@iterable.com>
Co-authored-by: Hani <haniramani@gmail.com>
  • Loading branch information
7 people authored Nov 27, 2023
1 parent 68d1bf9 commit 35091b5
Show file tree
Hide file tree
Showing 15 changed files with 16,073 additions and 1,192 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# This is a basic workflow that is manually triggered

name: Manual workflow

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
# Inputs the workflow accepts.
inputs:
name:
# Friendly description to be shown in the UI instead of 'name'
description: 'Person to greet'
# Default value if no value is explicitly provided
default: 'World'
# Input has to be provided for the workflow to run
required: true
# The data type of the input
type: string

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "greet"
greet:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Runs a single command using the runners shell
- name: Send greeting
run: echo "Hello ${{ inputs.name }}"
Loading

0 comments on commit 35091b5

Please sign in to comment.