Skip to content

Commit 159b583

Browse files
committed
chore(*): fix build and update theming version
1 parent 7d2e74d commit 159b583

File tree

5 files changed

+9
-13
lines changed

5 files changed

+9
-13
lines changed

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"@types/source-map": "0.5.2",
7575
"express": "^4.21.1",
7676
"fflate": "^0.8.1",
77-
"igniteui-theming": "^14.3.1",
77+
"igniteui-theming": "v14.5.0-beta.2",
7878
"igniteui-trial-watermark": "^3.0.2",
7979
"lodash-es": "^4.17.21",
8080
"rxjs": "^7.8.0",

projects/igniteui-angular/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"tslib": "^2.3.0",
7474
"igniteui-trial-watermark": "^3.0.2",
7575
"lodash-es": "^4.17.21",
76-
"igniteui-theming": "^14.3.1",
76+
"igniteui-theming": "v14.5.0-beta.2",
7777
"@igniteui/material-icons-extended": "^3.1.0"
7878
},
7979
"peerDependencies": {

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

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { IgxDatePickerComponent } from '../date-picker/date-picker.component';
2828
import { IgxButtonDirective } from '../directives/button/button.directive';
2929
import { IgxDateTimeEditorDirective } from '../directives/date-time-editor/date-time-editor.directive';
3030

31-
import { IgxOverlayOutletDirective, IgxToggleActionDirective, IgxToggleDirective } from '../directives/toggle/toggle.directive';
31+
import { IgxOverlayOutletDirective, IgxToggleDirective } from '../directives/toggle/toggle.directive';
3232
import { FieldType, EntityType } from '../grids/common/grid.interface';
3333
import { IgxSelectComponent } from '../select/select.component';
3434
import { HorizontalAlignment, OverlaySettings, Point, VerticalAlignment } from '../services/overlay/utilities';
@@ -39,7 +39,6 @@ import { IgxPickerToggleComponent, IgxPickerClearComponent } from '../date-commo
3939
import { IgxInputDirective } from '../directives/input/input.directive';
4040
import { IgxInputGroupComponent } from '../input-group/input-group.component';
4141
import { IgxSelectItemComponent } from '../select/select-item.component';
42-
import { IgxSuffixDirective } from '../directives/suffix/suffix.directive';
4342
import { IgxPrefixDirective } from '../directives/prefix/prefix.directive';
4443
import { IgxIconComponent } from '../icon/icon.component';
4544
import { getCurrentResourceStrings } from '../core/i18n/resources';
@@ -126,12 +125,10 @@ class ExpressionOperandItem extends ExpressionItem {
126125
standalone: true,
127126
imports: [
128127
NgIf,
129-
IgxQueryBuilderHeaderComponent,
130128
IgxButtonDirective,
131129
IgxIconComponent,
132130
IgxChipComponent,
133131
IgxPrefixDirective,
134-
IgxSuffixDirective,
135132
IgxSelectComponent,
136133
FormsModule,
137134
NgFor,
@@ -151,7 +148,6 @@ class ExpressionOperandItem extends ExpressionItem {
151148
DatePipe,
152149
IgxFieldFormatterPipe,
153150
IgxIconButtonDirective,
154-
IgxToggleActionDirective,
155151
IgxComboComponent,
156152
IgxLabelDirective,
157153
IgxComboHeaderDirective,

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { booleanAttribute, ContentChild, EventEmitter, Output, TemplateRef } from '@angular/core';
2-
import { NgIf, NgTemplateOutlet} from '@angular/common';
2+
import { NgIf } from '@angular/common';
33
import {
44
Component, Input, ViewChild, ElementRef, OnDestroy, HostBinding
55
} from '@angular/core';
@@ -31,7 +31,7 @@ import { recreateTree } from '../data-operations/expressions-tree-util';
3131
selector: 'igx-query-builder',
3232
templateUrl: './query-builder.component.html',
3333
standalone: true,
34-
imports: [NgIf, IgxQueryBuilderHeaderComponent, IgxQueryBuilderTreeComponent, NgTemplateOutlet, IgxQueryBuilderSearchValueTemplateDirective]
34+
imports: [NgIf, IgxQueryBuilderHeaderComponent, IgxQueryBuilderTreeComponent]
3535
})
3636
export class IgxQueryBuilderComponent implements OnDestroy {
3737
/**

0 commit comments

Comments
 (0)