Skip to content

Commit 19b58ab

Browse files
docs: add github source code links (#913)
1 parent c37a2a1 commit 19b58ab

File tree

16 files changed

+27
-4
lines changed

16 files changed

+27
-4
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ Add css to `styles.scss` or include in `angular.json`:
3030
```
3131

3232
## Docs, Demos & More
33+
We are redoing the documentation. You can find the new documentation here:
34+
[https://circlongroup.github.io/angular-tree-component/](https://circlongroup.github.io/angular-tree-component/)
35+
36+
The API Reference is still in our old documentation for now:
3337

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

projects/docs-app/src/app/examples/basic-usage/basic-usage.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1>Basic usage</h1>
22

33
<h2>Working tree</h2>
4-
4+
<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>
55
<div class="demo-container">
66
<app-basic-tree></app-basic-tree>
77
</div>

projects/docs-app/src/app/examples/columns-example/columns-example.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1>Tree with columns</h1>
22

33
<h2>Working tree</h2>
4-
4+
<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>
55
<div class="demo-container">
66
<app-columns></app-columns>
77
</div>

projects/docs-app/src/app/examples/crud-example/crud-example.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<h1>Tree with create, copy and delete options</h1>
22

33
<h2>Working tree</h2>
4-
4+
<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>
55
<div class="demo-container">
66
<app-crud></app-crud>
77
</div>

projects/docs-app/src/app/examples/load-more-example/load-more-example.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h1>Tree partial loading of children</h1>
66
</p>
77

88
<h2>Working tree</h2>
9-
9+
<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>
1010
<div class="demo-container">
1111
<app-load-more></app-load-more>
1212
</div>

projects/docs-app/src/app/fundamentals/actions/actions.component.html

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ <h1>Customize Actions</h1>
22

33
<h2>Demo</h2>
44

5+
<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>
6+
57
<div class="demo-container">
68
<app-actions-demo></app-actions-demo>
79
</div>

projects/docs-app/src/app/fundamentals/api/api.component.html

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ <h1>Calling API Methods</h1>
22

33
<h2>Demo</h2>
44

5+
<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>
6+
57
<div class="demo-container">
68
<app-api-demo></app-api-demo>
79
</div>

projects/docs-app/src/app/fundamentals/state-binding/state-binding.component.html

+2
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ <h2>Persist state to localstorage</h2>
4343

4444
<h3>Demo</h3>
4545

46+
<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>
47+
4648
<div class="demo-container">
4749
<app-state-binding-demo></app-state-binding-demo>
4850
</div>

projects/docs-app/src/app/fundamentals/templates/templates.component.html

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ <h1>Custom Templates</h1>
44

55
<h2>Demo</h2>
66

7+
<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>
8+
79
<div class="demo-container">
810
<app-templates-demo></app-templates-demo>
911
</div>

projects/docs-app/src/app/guides/async-guide/async-guide.component.html

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ <h1>Async Data</h1>
66

77
<h2>Demo</h2>
88

9+
<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>
10+
911
<div class="demo-container">
1012
<app-async></app-async>
1113
</div>

projects/docs-app/src/app/guides/auto-scroll-guide/auto-scroll-guide.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ <h2>External Scroll (Scrolling as part of the body / other container)</h2>
1212
<p>Use the <code>scrollContainer</code> option for this purpose as described in <a [routerLink]="['/', 'fundamentals', 'options']">Options</a></p>
1313

1414
<h2>Demo of scrollContainer</h2>
15+
<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>
1516
<div class="demo-container">
1617
<app-auto-scroll></app-auto-scroll>
1718
</div>

projects/docs-app/src/app/guides/checkboxes-guide/checkboxes-guide.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ <h1>Checkboxes</h1>
33
<p>You can specify useCheckboxes option to show checkboxes, and the tree selection APIs to control and access which node is currently selected.</p>
44

55
<h2>Demo</h2>
6+
<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>
67
<div class="demo-container">
78
<app-checkboxes></app-checkboxes>
89
</div>

projects/docs-app/src/app/guides/drag-drop-guide/drag-drop-guide.component.html

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<h1>Drag & Drop</h1>
22

33
<h2>Demo</h2>
4+
5+
<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>
6+
47
<div class="demo-container">
58
<app-drag-drop></app-drag-drop>
69
</div>

projects/docs-app/src/app/guides/filter-guide/filter-guide.component.html

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ <h1>Filtering</h1>
22

33
<h2>Demo</h2>
44

5+
<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>
6+
57
<div class="demo-container">
68
<app-filter></app-filter>
79
</div>

projects/docs-app/src/app/guides/large-tree-guide/large-tree-guide.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ <h2>Hidden trees</h2>
1616

1717
<h2>Demo</h2>
1818
<p>Initializing 100,000 nodes, please be patient...</p>
19+
<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>
1920
<div class="demo-container">
2021
<app-large-tree></app-large-tree>
2122
</div>

projects/docs-app/src/app/guides/rtl-guide/rtl-guide.component.html

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ <h1>RTL</h1>
22
<p>You can make the tree right to left easily by supplying an 'rtl' boolean option.</p>
33

44
<h2>Demo</h2>
5+
<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>
56
<div class="demo-container">
67
<app-rtl></app-rtl>
78
</div>

0 commit comments

Comments
 (0)