1
- import { CommonModule , NgIf , NgTemplateOutlet } from '@angular/common' ;
1
+ import { NgIf , NgTemplateOutlet } from '@angular/common' ;
2
2
import {
3
- AfterViewInit , ChangeDetectorRef , Component , ElementRef , NgModule , OnInit , OnDestroy ,
3
+ AfterViewInit , ChangeDetectorRef , Component , ElementRef , OnInit , OnDestroy ,
4
4
Optional , Inject , Injector , ViewChild , Input , Output , EventEmitter
5
5
} from '@angular/core' ;
6
- import {
7
- IgxComboItemDirective ,
8
- IgxComboEmptyDirective ,
9
- IgxComboHeaderItemDirective ,
10
- IgxComboHeaderDirective ,
11
- IgxComboFooterDirective ,
12
- IgxComboAddItemDirective ,
13
- IgxComboToggleIconDirective ,
14
- IgxComboClearIconDirective
15
- } from './combo.directives' ;
16
- import { FormsModule , ReactiveFormsModule , ControlValueAccessor , NG_VALUE_ACCESSOR } from '@angular/forms' ;
6
+
7
+ import { ControlValueAccessor , FormsModule , NG_VALUE_ACCESSOR } from '@angular/forms' ;
17
8
18
9
import { IgxSelectionAPIService } from '../core/selection' ;
19
10
import { IBaseEventArgs , IBaseCancelableEventArgs , CancelableEventArgs } from '../core/utils' ;
@@ -22,9 +13,7 @@ import { FilteringLogic } from '../data-operations/filtering-expression.interfac
22
13
import { IgxForOfDirective } from '../directives/for-of/for_of.directive' ;
23
14
import { IgxIconService } from '../icon/icon.service' ;
24
15
import { IgxRippleDirective } from '../directives/ripple/ripple.directive' ;
25
- import { IgxToggleModule } from '../directives/toggle/toggle.directive' ;
26
16
import { IgxButtonDirective } from '../directives/button/button.directive' ;
27
- import { IgxDropDownModule } from '../drop-down/public_api' ;
28
17
import { IgxInputGroupComponent } from '../input-group/input-group.component' ;
29
18
import { IgxComboItemComponent } from './combo-item.component' ;
30
19
import { IgxComboDropDownComponent } from './combo-dropdown.component' ;
@@ -111,7 +100,7 @@ const diffInSets = (set1: Set<any>, set2: Set<any>): any[] => {
111
100
{ provide : NG_VALUE_ACCESSOR , useExisting : IgxComboComponent , multi : true }
112
101
] ,
113
102
standalone : true ,
114
- imports : [ IgxInputGroupComponent , IgxInputDirective , NgIf , IgxSuffixDirective , NgTemplateOutlet , IgxIconComponent , IgxComboDropDownComponent , ReactiveFormsModule , FormsModule , IgxDropDownItemNavigationDirective , IgxForOfDirective , IgxComboItemComponent , IgxComboAddItemComponent , IgxButtonDirective , IgxRippleDirective , IgxComboFilteringPipe , IgxComboGroupingPipe ]
103
+ imports : [ IgxInputGroupComponent , IgxInputDirective , NgIf , IgxSuffixDirective , NgTemplateOutlet , IgxIconComponent , IgxComboDropDownComponent , FormsModule , IgxDropDownItemNavigationDirective , IgxForOfDirective , IgxComboItemComponent , IgxComboAddItemComponent , IgxButtonDirective , IgxRippleDirective , IgxComboFilteringPipe , IgxComboGroupingPipe ]
115
104
} )
116
105
export class IgxComboComponent extends IgxComboBaseDirective implements AfterViewInit , ControlValueAccessor , OnInit ,
117
106
OnDestroy , EditorProvider {
@@ -444,47 +433,3 @@ export class IgxComboComponent extends IgxComboBaseDirective implements AfterVie
444
433
return value ;
445
434
}
446
435
}
447
-
448
- /**
449
- * @hidden
450
- */
451
- @NgModule ( {
452
- exports : [
453
- IgxComboAddItemComponent ,
454
- IgxComboAddItemDirective ,
455
- IgxComboClearIconDirective ,
456
- IgxComboComponent ,
457
- IgxComboDropDownComponent ,
458
- IgxComboEmptyDirective ,
459
- IgxComboFilteringPipe ,
460
- IgxComboFooterDirective ,
461
- IgxComboGroupingPipe ,
462
- IgxComboHeaderDirective ,
463
- IgxComboHeaderItemDirective ,
464
- IgxComboItemComponent ,
465
- IgxComboItemDirective ,
466
- IgxComboToggleIconDirective
467
- ] ,
468
- imports : [
469
- CommonModule ,
470
- FormsModule ,
471
- IgxDropDownModule ,
472
- IgxToggleModule ,
473
- ReactiveFormsModule ,
474
- IgxComboAddItemComponent ,
475
- IgxComboAddItemDirective ,
476
- IgxComboClearIconDirective ,
477
- IgxComboComponent ,
478
- IgxComboDropDownComponent ,
479
- IgxComboEmptyDirective ,
480
- IgxComboFilteringPipe ,
481
- IgxComboFooterDirective ,
482
- IgxComboGroupingPipe ,
483
- IgxComboHeaderDirective ,
484
- IgxComboHeaderItemDirective ,
485
- IgxComboItemComponent ,
486
- IgxComboItemDirective ,
487
- IgxComboToggleIconDirective
488
- ]
489
- } )
490
- export class IgxComboModule { }
0 commit comments