|
1 | 1 | /* tslint:disable:object-literal-sort-keys */
|
| 2 | +// tslint:disable: max-line-length |
2 | 3 | import { FormsModule, ReactiveFormsModule } from "@angular/forms";
|
3 |
| -import { IgxButtonModule, IgxComboModule, IgxDatePickerModule, IgxDropDownModule, |
4 |
| - IgxIconModule, IgxInputGroupModule, IgxRippleModule, IgxSelectModule, IgxTimePickerModule } from "igniteui-angular"; |
5 |
| -import { InputGroupSample1Component |
6 |
| -} from "../../src/app/data-entries/input-group/input-group-sample-1/input-group-sample-1.component"; |
7 |
| -import { InputGroupSample2Component |
8 |
| -} from "../../src/app/data-entries/input-group/input-group-sample-2/input-group-sample-2.component"; |
9 |
| -import { InputGroupSample5Component |
10 |
| -} from "../../src/app/data-entries/input-group/input-group-sample-5/input-group-sample-5.component"; |
11 |
| -import { InputGroupStyleComponent |
12 |
| -} from "../../src/app/data-entries/input-group/input-group-styling/input-group-styling.component"; |
13 |
| -import { ReactiveFormsSampleComponent |
14 |
| -} from "../../src/app/data-entries/input-group/reactive-forms/reactive-forms.component"; |
| 4 | +import { IgxButtonModule, IgxComboModule, IgxDatePickerModule, |
| 5 | + IgxDropDownModule, IgxFocusModule, |
| 6 | + IgxIconModule, IgxInputGroupModule, |
| 7 | + IgxRippleModule, IgxSelectModule, |
| 8 | + IgxTextSelectionModule, IgxTimePickerModule } from "igniteui-angular"; |
| 9 | +import { InputGroupSample1Component } from "../../src/app/data-entries/input-group/input-group-sample-1/input-group-sample-1.component"; |
| 10 | +import { InputGroupSample2Component } from "../../src/app/data-entries/input-group/input-group-sample-2/input-group-sample-2.component"; |
| 11 | +import { InputGroupSample5Component } from "../../src/app/data-entries/input-group/input-group-sample-5/input-group-sample-5.component"; |
| 12 | +import { InputGroupStyleComponent } from "../../src/app/data-entries/input-group/input-group-styling/input-group-styling.component"; |
| 13 | +import { InputTextSelectionComponent } from "../../src/app/data-entries/input-group/input-text-selection/input-text-selection.component"; |
| 14 | +import { ReactiveFormsSampleComponent } from "../../src/app/data-entries/input-group/reactive-forms/reactive-forms.component"; |
15 | 15 | import { AppModuleConfig } from "./core/AppModuleConfig";
|
16 | 16 | import { Config } from "./core/Config";
|
17 | 17 | import { IConfigGenerator } from "./core/IConfigGenerator";
|
@@ -92,6 +92,16 @@ export class InputGroupConfigGenerator implements IConfigGenerator {
|
92 | 92 | shortenComponentPathBy: "/data-entries/"
|
93 | 93 | }));
|
94 | 94 |
|
| 95 | + configs.push(new Config({ |
| 96 | + component: InputTextSelectionComponent, |
| 97 | + appModuleConfig: new AppModuleConfig({ |
| 98 | + imports: [IgxInputGroupModule, InputTextSelectionComponent, IgxTextSelectionModule, IgxFocusModule], |
| 99 | + ngDeclarations: [InputTextSelectionComponent], |
| 100 | + ngImports: [IgxInputGroupModule, IgxTextSelectionModule, IgxFocusModule] |
| 101 | + }), |
| 102 | + shortenComponentPathBy: "/data-entries/" |
| 103 | + })); |
| 104 | + |
95 | 105 | return configs;
|
96 | 106 | }
|
97 | 107 | }
|
0 commit comments