mirror of
https://github.com/akveo/ngx-admin.git
synced 2025-12-22 10:20:14 +01:00
feat: demo version additions
This commit is contained in:
parent
0eec54695f
commit
eee950248e
322 changed files with 23456 additions and 188 deletions
|
|
@ -0,0 +1,21 @@
|
|||
<ng-container [ngSwitch]="currentTab?.tab">
|
||||
<ng-container *ngFor="let component of source">
|
||||
|
||||
<ng-container *ngSwitchCase="'overview'">
|
||||
<ngx-overview-block *ngIf="hasOverview(component)" [source]="component"></ngx-overview-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'theme'">
|
||||
<ngx-styles-block *ngIf="hasTheme(component)" [source]="component"></ngx-styles-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'api'">
|
||||
<ngx-api-block *ngIf="hasAPI(component)" [source]="component" ></ngx-api-block>
|
||||
</ng-container>
|
||||
|
||||
<ng-container *ngSwitchCase="'examples'">
|
||||
<ngx-examples-block *ngIf="hasExamples(component)" [source]="component" ></ngx-examples-block>
|
||||
</ng-container>
|
||||
|
||||
</ng-container>
|
||||
</ng-container>
|
||||
Loading…
Add table
Add a link
Reference in a new issue