Skip to content

Commit 8f5d8d6

Browse files
committed
chore(*): consolidating imports from @angular/core
1 parent c58aa4f commit 8f5d8d6

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

projects/igniteui-angular/src/lib/query-builder/query-builder.component.ts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { AfterViewInit, ContentChild, EventEmitter, LOCALE_ID, Optional, Output, Pipe, PipeTransform } from '@angular/core';
2-
import { CommonModule, getLocaleFirstDayOfWeek } from '@angular/common';
3-
import { Inject } from '@angular/core';
41
import {
2+
AfterViewInit, ContentChild, EventEmitter, LOCALE_ID, Optional, Output, Pipe, PipeTransform, Inject,
53
Component, Input, ViewChild, ChangeDetectorRef, ViewChildren, QueryList, ElementRef, OnDestroy, HostBinding, NgModule
64
} from '@angular/core';
5+
import { CommonModule, getLocaleFirstDayOfWeek } from '@angular/common';
76
import { FormsModule } from '@angular/forms';
8-
import { editor } from '@igniteui/material-icons-extended';
97
import { Subject } from 'rxjs';
8+
9+
import { editor } from '@igniteui/material-icons-extended';
1010
import { IButtonGroupEventArgs, IgxButtonGroupModule } from '../buttonGroup/buttonGroup.component';
1111
import { IgxChipComponent } from '../chips/chip.component';
1212
import { IgxChipsModule } from '../chips/chips.module';
@@ -359,7 +359,7 @@ export class IgxQueryBuilderComponent extends DisplayDensityBase implements Afte
359359
private _editingInputsContainer: ElementRef;
360360
private _addModeContainer: ElementRef;
361361
private _currentGroupButtonsContainer: ElementRef;
362-
private _addModeExpression: ExpressionOperandItem;
362+
private _addModeExpression: ExpressionOperandItem;
363363
private _editedExpression: ExpressionOperandItem;
364364
private _selectedGroups: ExpressionGroupItem[] = [];
365365
private _fields: FieldType[];
@@ -371,7 +371,7 @@ export class IgxQueryBuilderComponent extends DisplayDensityBase implements Afte
371371
horizontalStartPoint: HorizontalAlignment.Right,
372372
verticalStartPoint: VerticalAlignment.Top
373373
};
374-
374+
375375
private _overlaySettings: OverlaySettings = {
376376
closeOnOutsideClick: false,
377377
modal: false,
@@ -426,20 +426,20 @@ export class IgxQueryBuilderComponent extends DisplayDensityBase implements Afte
426426
*/
427427
public get selectedField(): FieldType {
428428
return this._selectedField;
429-
}
429+
}
430430

431431
/**
432432
* @hidden @internal
433-
*
434-
* used by the grid
433+
*
434+
* used by the grid
435435
*/
436436
public setPickerOutlet(outlet?: IgxOverlayOutletDirective | ElementRef) {
437437
this.pickerOutlet = outlet;
438438
}
439439

440440
/**
441441
* @hidden @internal
442-
*
442+
*
443443
* used by the grid
444444
*/
445445
public get isContextMenuVisible(): boolean {
@@ -553,7 +553,7 @@ export class IgxQueryBuilderComponent extends DisplayDensityBase implements Afte
553553

554554
/**
555555
* @hidden @internal
556-
*
556+
*
557557
* used by the grid
558558
*/
559559
public exitOperandEdit() {
@@ -849,7 +849,7 @@ export class IgxQueryBuilderComponent extends DisplayDensityBase implements Afte
849849

850850
/**
851851
* @hidden @internal
852-
*
852+
*
853853
* used by the grid
854854
*/
855855
public setAddButtonFocus() {

0 commit comments

Comments
 (0)