Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TS] Templating/data binding support (renderer + designer) #2995

Merged
merged 50 commits into from
Jul 5, 2019
Merged
Show file tree
Hide file tree
Changes from 26 commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
5db2c2a
Inject TS source from js/template-engine
dclaux May 29, 2019
ddb2739
Post build changes
dclaux May 29, 2019
47531f1
Cleanup
dclaux May 29, 2019
05e85dd
Fix compilation issues (WIP)
dclaux May 31, 2019
822b1ad
Merge branch 'master' into clean-template-engine-branch
dclaux May 31, 2019
0f0135d
Merge branch 'master' into clean-template-engine-branch
dclaux May 31, 2019
325dfaf
Fixes packaging problems
dclaux Jun 5, 2019
39159de
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 5, 2019
eee0ed7
Update README
dclaux Jun 5, 2019
a75f999
Publish
dclaux Jun 5, 2019
e7c52c6
adaptivecards-data --> adaptivecards-templating
dclaux Jun 6, 2019
b308d72
Update README for adaptivecards-templating
dclaux Jun 7, 2019
4c92da9
Fix a couple typos in README
dclaux Jun 7, 2019
28a6938
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 7, 2019
229aec8
Significant designer code simplification (WIP)
dclaux Jun 7, 2019
26da92c
More designer code simplification
dclaux Jun 10, 2019
81bb71d
Finalize designer code simplification
dclaux Jun 11, 2019
b63a4ad
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 11, 2019
f78d1ab
Fix minHeight serialization regression
dclaux Jun 11, 2019
7e533de
[Designer] Basic versioning support
dclaux Jun 13, 2019
6f83770
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 13, 2019
1193c22
[JS] Hotfix bleed regression in ColumnSet
dclaux Jun 18, 2019
dd80654
cleaning up sample payloads, fixing some site bugs
matthidinger Jun 19, 2019
eab64e7
[Designer] Hide more preview features
dclaux Jun 19, 2019
5563e49
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 19, 2019
2355ee1
Update package-lock.json
matthidinger Jun 19, 2019
3bbede2
Publish
matthidinger Jun 19, 2019
ce49897
dts not working, revert tnhis commit
matthidinger Jun 23, 2019
7d315ce
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 24, 2019
cd454de
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 25, 2019
30792ab
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 26, 2019
6e6f9fd
Add comment
dclaux Jun 26, 2019
9eb5e80
Merge branch 'master' into clean-template-engine-branch
dclaux Jun 26, 2019
902db4c
Update example.html
dclaux Jun 26, 2019
c65ad6d
Merge branch 'clean-template-engine-branch' of https://github.com/mic…
dclaux Jun 26, 2019
f3e626f
Turn off preview features
dclaux Jun 26, 2019
5fdb420
Comment update
dclaux Jun 26, 2019
e804e6b
Merge branch 'master' into mahiding/sitefix
matthidinger Jun 28, 2019
e32cc7c
site fixes, sample updates, and designer package fixes
matthidinger Jun 29, 2019
d93588e
remove unused files
matthidinger Jun 29, 2019
9de7dc6
fix script
matthidinger Jul 1, 2019
8642c33
Merge branch 'clean-template-engine-branch' of https://github.com/Mic…
matthidinger Jul 2, 2019
72f6e05
Merge branch 'master' into clean-template-engine-branch
matthidinger Jul 2, 2019
8e6782a
Merge branch 'mahiding/sitefix' into clean-template-engine-branch
matthidinger Jul 2, 2019
b7248f4
updating packages and fixing a merge issue
matthidinger Jul 2, 2019
27affd0
add helper test scripts
matthidinger Jul 2, 2019
dd31acf
Code review fixes into templating branch
shalinijoshi19 Jul 3, 2019
99f96f2
readme fixes and package fix
matthidinger Jul 3, 2019
bf19474
Merge branch 'master' into clean-template-engine-branch
dclaux Jul 5, 2019
f65c12d
Resolve merge from master problems
dclaux Jul 5, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions source/nodejs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ This directory contains all the JS packages for adaptive cards:

* `adaptivecards` - The renderer library
* `adaptivecards-controls` - A controls library useful for the designer
* `adaptivecards-templating` - A JSON-to-JSON templating and data binding library for use with Adaptive Cards
* `adaptivecards-designer` - The drag-drop designer component
* `adaptivecards-designer-app` - The designer app that consumes the designer component
* `adaptivecards-site` - The generated website that is currently hosted at adaptivecards.io
Expand All @@ -29,10 +30,10 @@ We use lerna to manage package linking and building.
# Start the documentation site (http://adaptivecards.io)

1. `cd adaptivecards-site`
2. `npm install hexo-cli -g`
3. `hexo generate`
4. `hexo server`
5. `Open up the browser to point to localhost:[portnumber] printed after the command above returns under "Hexo is running at".`
2. `npx lerna run release`
3. `npm install hexo-cli -g`
5. `hexo server`
6. Open up the browser to point to `localhost:[portnumber]` printed after the command above returns under "Hexo is running at".
Copy link
Member

@shalinijoshi19 shalinijoshi19 Jun 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo? Missing the backtick? #Closed

Copy link
Member Author

@dclaux dclaux Jun 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure what you mean. This is markdown syntax, and I didn't write this. #Closed

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes but it's changed and am trying to explain the changes - Looks like these files i am commenting on that you dont recognize the changes to should be reverted


In reply to: 297809373 [](ancestors = 297809373)

Copy link
Member Author

@dclaux dclaux Jun 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I honestly don't know. #Closed


## Adding a new package

Expand Down
Loading