Skip to content

Commit

Permalink
docs: add github source code links (#913)
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasengelhardt authored Jun 11, 2021
1 parent c37a2a1 commit 19b58ab
Show file tree
Hide file tree
Showing 16 changed files with 27 additions and 4 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Add css to `styles.scss` or include in `angular.json`:
```

## Docs, Demos & More
We are redoing the documentation. You can find the new documentation here:
[https://circlongroup.github.io/angular-tree-component/](https://circlongroup.github.io/angular-tree-component/)

The API Reference is still in our old documentation for now:

[https://angular2-tree.readme.io/docs/](https://angular2-tree.readme.io/docs/)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1>Basic usage</h1>

<h2>Working tree</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/examples/basic-usage/basic-tree/basic-tree.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-basic-tree></app-basic-tree>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1>Tree with columns</h1>

<h2>Working tree</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/examples/columns-example/columns/columns.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-columns></app-columns>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<h1>Tree with create, copy and delete options</h1>

<h2>Working tree</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/examples/crud-example/crud/crud.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-crud></app-crud>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h1>Tree partial loading of children</h1>
</p>

<h2>Working tree</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/examples/load-more-example/load-more/load-more.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-load-more></app-load-more>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ <h1>Customize Actions</h1>

<h2>Demo</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/fundamentals/actions/actions-demo/actions-demo.component.ts" target="_blank">Source Code</a></p>

<div class="demo-container">
<app-actions-demo></app-actions-demo>
</div>
Expand Down
2 changes: 2 additions & 0 deletions projects/docs-app/src/app/fundamentals/api/api.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ <h1>Calling API Methods</h1>

<h2>Demo</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/fundamentals/api/api-demo/api-demo.component.ts" target="_blank">Source Code</a></p>

<div class="demo-container">
<app-api-demo></app-api-demo>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ <h2>Persist state to localstorage</h2>

<h3>Demo</h3>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/fundamentals/state-binding/state-binding-demo/state-binding-demo.component.ts" target="_blank">Source Code</a></p>

<div class="demo-container">
<app-state-binding-demo></app-state-binding-demo>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ <h1>Custom Templates</h1>

<h2>Demo</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/fundamentals/templates/templates-demo/templates-demo.component.ts" target="_blank">Source Code</a></p>

<div class="demo-container">
<app-templates-demo></app-templates-demo>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ <h1>Async Data</h1>

<h2>Demo</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/guides/async-guide/async/async.component.ts" target="_blank">Source Code</a></p>

<div class="demo-container">
<app-async></app-async>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ <h2>External Scroll (Scrolling as part of the body / other container)</h2>
<p>Use the <code>scrollContainer</code> option for this purpose as described in <a [routerLink]="['/', 'fundamentals', 'options']">Options</a></p>

<h2>Demo of scrollContainer</h2>
<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/guides/auto-scroll-guide/auto-scroll/auto-scroll.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-auto-scroll></app-auto-scroll>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ <h1>Checkboxes</h1>
<p>You can specify useCheckboxes option to show checkboxes, and the tree selection APIs to control and access which node is currently selected.</p>

<h2>Demo</h2>
<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/guides/checkboxes-guide/checkboxes/checkboxes.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-checkboxes></app-checkboxes>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<h1>Drag & Drop</h1>

<h2>Demo</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/guides/drag-drop-guide/drag-drop/drag-drop.component.ts" target="_blank">Source Code</a></p>

<div class="demo-container">
<app-drag-drop></app-drag-drop>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ <h1>Filtering</h1>

<h2>Demo</h2>

<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/guides/filter-guide/filter/filter.component.ts" target="_blank">Source Code</a></p>

<div class="demo-container">
<app-filter></app-filter>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ <h2>Hidden trees</h2>

<h2>Demo</h2>
<p>Initializing 100,000 nodes, please be patient...</p>
<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/guides/large-tree-guide/large-tree/large-tree.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-large-tree></app-large-tree>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ <h1>RTL</h1>
<p>You can make the tree right to left easily by supplying an 'rtl' boolean option.</p>

<h2>Demo</h2>
<p><a href="https://github.com/CirclonGroup/angular-tree-component/blob/master/projects/docs-app/src/app/guides/rtl-guide/rtl/rtl.component.ts" target="_blank">Source Code</a></p>
<div class="demo-container">
<app-rtl></app-rtl>
</div>
Expand Down

0 comments on commit 19b58ab

Please sign in to comment.