1
1
/* tslint:disable:object-literal-sort-keys */
2
2
import {
3
- IgxAvatarModule , IgxButtonModule , IgxCardModule , IgxIconModule ,
4
- IgxNavbarModule , IgxRippleModule , IgxTabsModule
3
+ IgxAvatarModule , IgxButtonModule , IgxCardModule , IgxCheckboxModule , IgxDropDownModule , IgxIconModule ,
4
+ IgxNavbarModule , IgxRadioModule , IgxRippleModule , IgxTabsModule , IgxToggleModule
5
5
} from "igniteui-angular" ;
6
6
7
7
import { TabsSample1Component } from "../../src/app/layouts/tabs/tabs-sample-1/tabs-sample-1.component" ;
@@ -15,6 +15,7 @@ import { AppRouting2Module } from "../../src/app/layouts/tabs/tabs-sample-5/app.
15
15
import { TabsSample5Component } from "../../src/app/layouts/tabs/tabs-sample-5/components/tabs-sample-5.component" ;
16
16
import { TabsSample5Module } from "../../src/app/layouts/tabs/tabs-sample-5/tabs-sample-5.module" ;
17
17
import { TabsRouting2Module } from "../../src/app/layouts/tabs/tabs-sample-5/tabs.routing2.module" ;
18
+ import { TabsSample6Component } from "../../src/app/layouts/tabs/tabs-sample-6/tabs-sample-6.component" ;
18
19
import { AppModuleConfig } from "./core/AppModuleConfig" ;
19
20
import { Config } from "./core/Config" ;
20
21
import { IConfigGenerator } from "./core/IConfigGenerator" ;
@@ -102,6 +103,22 @@ export class TabsConfigGenerator implements IConfigGenerator {
102
103
shortenComponentPathBy : "/layouts/tabs/"
103
104
} ) ) ;
104
105
106
+ configs . push ( new Config ( {
107
+ component : TabsSample6Component ,
108
+ appModuleConfig : new AppModuleConfig ( {
109
+ imports : [
110
+ TabsSample6Component , IgxButtonModule , IgxCheckboxModule , IgxDropDownModule , IgxIconModule ,
111
+ IgxRadioModule , IgxRippleModule , IgxTabsModule , IgxToggleModule
112
+ ] ,
113
+ ngDeclarations : [ TabsSample6Component ] ,
114
+ ngImports : [
115
+ IgxButtonModule , IgxCheckboxModule , IgxDropDownModule , IgxRadioModule , IgxIconModule ,
116
+ IgxRippleModule , IgxTabsModule , IgxToggleModule
117
+ ]
118
+ } ) ,
119
+ shortenComponentPathBy : "/layouts/tabs/"
120
+ } ) ) ;
121
+
105
122
return configs ;
106
123
}
107
124
}
0 commit comments