Skip to content

Commit

Permalink
refactor(igx-combo): revert prev move of property #3243
Browse files Browse the repository at this point in the history
  • Loading branch information
Lipata committed Dec 6, 2018
1 parent 39bfdc7 commit 172a855
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,6 @@ export class IgxComboDropDownComponent extends IgxDropDownBase implements AfterV
this.items.length - 1;
}

/**
* @hidden
* @internal
*/
public disableTransitions = false;

/**
* Event emitter overrides
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ import {
Input
} from '@angular/core';
import { IgxSelectionAPIService } from '../core/selection';
import { IgxDropDownItemBase } from '../drop-down/drop-down.base';
import { IgxDropDownBase, IgxDropDownItemBase } from '../drop-down/drop-down.base';
import { IGX_COMBO_COMPONENT, IgxComboBase } from './combo.common';
import { IgxComboDropDownComponent } from './combo-dropdown.component';

/** @hidden */
@Component({
Expand All @@ -36,7 +35,7 @@ export class IgxComboItemComponent extends IgxDropDownItemBase {

constructor(
@Inject(IGX_COMBO_COMPONENT) private combo: IgxComboBase,
public dropDown: IgxComboDropDownComponent,
public dropDown: IgxDropDownBase,
protected elementRef: ElementRef,
protected selection: IgxSelectionAPIService
) {
Expand Down
6 changes: 6 additions & 0 deletions projects/igniteui-angular/src/lib/drop-down/drop-down.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,12 @@ export abstract class IgxDropDownBase implements OnInit, IToggleView {
return this.elementRef.nativeElement;
}

/**
* @hidden
* @internal
*/
public disableTransitions = false;

/**
* Get dropdown's html element of it scroll container
*/
Expand Down

0 comments on commit 172a855

Please sign in to comment.