Skip to content

Commit

Permalink
Merge pull request #245 from IgniteUI/tpaskalev/update-cli-5.3.0
Browse files Browse the repository at this point in the history
Tpaskalev/update cli 5.3.0
  • Loading branch information
bazal4o authored Apr 22, 2018
2 parents 258efc5 + 711ecf7 commit 5352c25
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion templates/angular/igx-ts/projects/empty/files/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"@angular/router": "^5.2.0",
"core-js": "^2.4.1",
"hammerjs": "^2.0.8",
"igniteui-angular": "^5.3.0-rc.1",
"igniteui-angular": "^5.3.0-rc.2",
"rxjs": "^5.5.6",
"zone.js": "^0.8.19",
"web-animations-js": "^2.3.1"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div>
<p>igx-tab-bar component. You can read more about configuring the igx-tab-bar component <a href="https://github.com/IgniteUI/igniteui-angular/blob/master/src/tabbar/README.md" target="_blank">here</a>.</p>
<igx-tab-bar>
<p>igx-bottom-nav component. You can read more about configuring the igx-bottom-nav component <a href="https://github.com/IgniteUI/igniteui-angular/blob/master/src/tabbar/README.md" target="_blank">here</a>.</p>
<igx-bottom-nav>
<igx-tab-panel icon="phone">
<h3 class="header">History</h3>
<div class="item" igxRipple="pink" *ngFor="let contact of userContacts">
Expand Down Expand Up @@ -36,5 +36,5 @@ <h3>Tab 3 Content</h3>
Mauris vel quam at velit venenatis vulputate in quis nisl.</p>
</div>
</igx-tab-panel>
</igx-tab-bar>
</igx-bottom-nav>
</div>
14 changes: 7 additions & 7 deletions templates/angular/igx-ts/tabbar/default/index.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import { IgniteUIForAngularTemplate } from "../../../../../lib/templates/IgniteUIForAngularTemplate";

class IgxTabbarTemplate extends IgniteUIForAngularTemplate {
class IgxBottomNavTemplate extends IgniteUIForAngularTemplate {
constructor() {
super(__dirname);
this.components = ["Tabbar"];
this.components = ["Bottom Navigation"];
this.controlGroup = "Layouts";
this.listInComponentTemplates = true;
this.id = "tabbar";
this.id = "bottom-nav";
this.projectType = "igx-ts";
this.name = "Tabbar";
this.description = "Three item tabbar template";
this.name = "Bottom Navigation";
this.description = "Three item bottom navigation template";
this.dependencies = [{
from: "igniteui-angular/main",
import: ["IgxTabBarModule", "IgxAvatarModule", "IgxIconModule", "IgxRippleModule"]
import: ["IgxBottomNavModule", "IgxAvatarModule", "IgxIconModule", "IgxRippleModule"]
}];
}
}
module.exports = new IgxTabbarTemplate();
module.exports = new IgxBottomNavTemplate();
6 changes: 3 additions & 3 deletions templates/angular/igx-ts/tabbar/index.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@

import { BaseComponent } from "../../../../lib/BaseComponent";

class IgxTabbarComponent extends BaseComponent {
class IgxBottomNavComponent extends BaseComponent {
/**
*
*/
constructor() {
super(__dirname);
this.name = "Tabbar";
this.name = "Bottom Navigation";
this.group = "Layouts";
}
}
module.exports = new IgxTabbarComponent();
module.exports = new IgxBottomNavComponent();

0 comments on commit 5352c25

Please sign in to comment.