-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(markdown-nav): add children url property
- Loading branch information
1 parent
9d770f1
commit bba9ac9
Showing
8 changed files
with
124 additions
and
4 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
.../markdown-navigator-demo-children-url/markdown-navigator-demo-children-url.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<td-markdown-navigator [items]="items"></td-markdown-navigator> |
Empty file.
16 changes: 16 additions & 0 deletions
16
...os/markdown-navigator-demo-children-url/markdown-navigator-demo-children-url.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { Component } from '@angular/core'; | ||
import { IMarkdownNavigatorItem } from '@covalent/markdown-navigator'; | ||
|
||
@Component({ | ||
selector: 'markdown-navigator-demo-children-url', | ||
styleUrls: ['./markdown-navigator-demo-children-url.component.scss'], | ||
templateUrl: './markdown-navigator-demo-children-url.component.html', | ||
}) | ||
export class MarkdownNavigatorDemoChildrenUrlComponent { | ||
items: IMarkdownNavigatorItem[] = [ | ||
{ | ||
title: '🔥', | ||
childrenUrl: 'https://api.myjson.com/bins/aqnfk', | ||
}, | ||
]; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters