@@ -207,6 +207,28 @@ export class IgxDropDownBase extends DisplayDensityBase implements OnInit, ITogg
207
207
this . toggleDirective . id = value ;
208
208
}
209
209
210
+ /**
211
+ * @hidden
212
+ */
213
+ @HostBinding ( 'class.igx-drop-down--cosy' )
214
+ public get cosyClass ( ) {
215
+ return this . isCosy ( ) ;
216
+ }
217
+ /**
218
+ * @hidden
219
+ */
220
+ @HostBinding ( 'class.igx-drop-down--compact' )
221
+ public get compactClass ( ) {
222
+ return this . isCompact ( ) ;
223
+ }
224
+ /**
225
+ * @hidden
226
+ */
227
+ @HostBinding ( 'class.igx-drop-down' )
228
+ public get defaultClass ( ) {
229
+ return ! this . isCompact ( ) && ! this . isCosy ( ) ;
230
+ }
231
+
210
232
/**
211
233
* Gets if the dropdown is collapsed
212
234
*
@@ -298,7 +320,7 @@ export class IgxDropDownBase extends DisplayDensityBase implements OnInit, ITogg
298
320
protected elementRef : ElementRef ,
299
321
protected cdr : ChangeDetectorRef ,
300
322
protected selection : IgxSelectionAPIService ,
301
- @Optional ( ) @Inject ( DisplayDensityToken ) protected _displayDensityOptions ? : IDisplayDensityOptions ) {
323
+ @Optional ( ) @Inject ( DisplayDensityToken ) protected _displayDensityOptions : IDisplayDensityOptions ) {
302
324
super ( _displayDensityOptions ) ;
303
325
}
304
326
@@ -736,30 +758,9 @@ export class IgxDropDownComponent extends IgxDropDownBase {
736
758
constructor (
737
759
protected elementRef : ElementRef ,
738
760
protected cdr : ChangeDetectorRef ,
739
- protected selection : IgxSelectionAPIService ) {
740
- super ( elementRef , cdr , selection ) ;
741
- }
742
-
743
- /**
744
- * @hidden
745
- */
746
- @HostBinding ( 'class.igx-drop-down--cosy' )
747
- public get cosyClass ( ) {
748
- return this . isCosy ( ) ;
749
- }
750
- /**
751
- * @hidden
752
- */
753
- @HostBinding ( 'class.igx-drop-down--compact' )
754
- public get compactClass ( ) {
755
- return this . isCompact ( ) ;
756
- }
757
- /**
758
- * @hidden
759
- */
760
- @HostBinding ( 'class.igx-drop-down' )
761
- public get defaultClass ( ) {
762
- return ! this . isCompact ( ) && ! this . isCosy ( ) ;
761
+ protected selection : IgxSelectionAPIService ,
762
+ @Optional ( ) @Inject ( DisplayDensityToken ) protected _displayDensityOptions : IDisplayDensityOptions ) {
763
+ super ( elementRef , cdr , selection , _displayDensityOptions ) ;
763
764
}
764
765
765
766
protected changeSelectedItem ( newSelection ?: IgxDropDownItemComponent ) : boolean {
0 commit comments