@@ -24,7 +24,7 @@ import { DateTimeUtil } from '../date-common/util/date-time.util';
2424import { IgxOverlayOutletDirective } from '../directives/toggle/toggle.directive' ;
2525import {
2626 IgxInputDirective , IgxInputGroupComponent , IgxInputGroupType , IgxInputState ,
27- IgxLabelDirective , IGX_INPUT_GROUP_TYPE , IgxSuffixDirective
27+ IgxLabelDirective , IgxHintDirective , IGX_INPUT_GROUP_TYPE , IgxSuffixDirective
2828} from '../input-group/public_api' ;
2929import {
3030 AutoPositionStrategy , IgxOverlayService , OverlayCancelableEventArgs , OverlayEventArgs ,
@@ -407,6 +407,9 @@ export class IgxDateRangePickerComponent extends PickerBaseDirective
407407 @ContentChild ( IgxLabelDirective )
408408 public label : IgxLabelDirective ;
409409
410+ @ContentChild ( IgxHintDirective )
411+ public hint : IgxHintDirective ;
412+
410413 @ContentChild ( IgxPickerActionsDirective )
411414 public pickerActions : IgxPickerActionsDirective ;
412415
@@ -538,7 +541,7 @@ export class IgxDateRangePickerComponent extends PickerBaseDirective
538541 /** @hidden @internal */
539542 public get separatorClass ( ) : string {
540543 const classes = [ 'igx-date-range-picker__label' ] ;
541- if ( this . label ) classes . push ( 'labeled- input' ) ;
544+ if ( this . hint ) classes . push ( 'input-has-hint ' ) ;
542545 return classes . join ( ' ' ) ;
543546 }
544547
0 commit comments