igniteui-angular 12.3.12 → 12.3.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular.umd.js +17 -25
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/grids/filtering/excel-style/excel-style-search.component.js +2 -4
- package/esm2015/lib/grids/filtering/excel-style/grid.excel-style-filtering.component.js +2 -2
- package/esm2015/lib/grids/filtering/grid-filtering.service.js +16 -22
- package/fesm2015/igniteui-angular.js +17 -25
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/lib/grids/filtering/grid-filtering.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -115,7 +115,7 @@ export declare class IgxFilteringService implements OnDestroy {
|
|
|
115
115
|
generateExpressionsList(expressions: IFilteringExpressionsTree | IFilteringExpression, operator: FilteringLogic, expressionsUIs: ExpressionUI[]): void;
|
|
116
116
|
isFilteringExpressionsTreeEmpty(expressionTree: IFilteringExpressionsTree): boolean;
|
|
117
117
|
private filter_internal;
|
|
118
|
-
/** Modifies the filteringState object to contain the newly added
|
|
118
|
+
/** Modifies the filteringState object to contain the newly added filtering conditions/expressions.
|
|
119
119
|
* If createNewTree is true, filteringState will not be modified (because it directly affects the grid.filteringExpressionsTree),
|
|
120
120
|
* but a new object is created and returned.
|
|
121
121
|
*/
|
package/package.json
CHANGED