-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #245 from IgniteUI/tpaskalev/update-cli-5.3.0
Tpaskalev/update cli 5.3.0
- Loading branch information
Showing
4 changed files
with
14 additions
and
14 deletions.
There are no files selected for viewing
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
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(); |
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 |
---|---|---|
@@ -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(); |