Skip to content

Commit 10b4c5b

Browse files
committed
chore(query-builder): Made conditionName optional
1 parent 9059fee commit 10b4c5b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ All notable changes for each version of this project will be documented in this
1414
- Added support for showing/hiding the indicator controls (dots). Can be configured via the `indicators` property. Defaults to `true`.
1515

1616
- `IFilteringExpression`
17-
- **Breaking Change** There is a new `conditionName` property which is required. This would generally be equal to the old `condition.name`.
17+
- A new optional property called `conditionName` has been introduced. This would generally be equal to the existing `condition.name`.
1818

1919

2020
#### Scrollbar: New CSS variables

projects/igniteui-angular/src/lib/data-operations/filtering-expression.interface.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export enum FilteringLogic {
1616
export declare interface IFilteringExpression {
1717
fieldName: string;
1818
condition?: IFilteringOperation;
19-
conditionName: string;
19+
conditionName?: string;
2020
searchVal?: Serializable;
2121
searchTree?: IExpressionTree;
2222
ignoreCase?: boolean;

0 commit comments

Comments
 (0)