igniteui-angular 14.2.22 → 14.2.23
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/esm2020/lib/combo/combo.common.mjs +9 -1
- package/esm2020/lib/data-operations/grouping-expression.interface.mjs +1 -1
- package/esm2020/lib/grids/columns/column.component.mjs +2 -2
- package/esm2020/lib/grids/common/strategy.mjs +11 -9
- package/esm2020/lib/grids/public_api.mjs +2 -1
- package/esm2020/lib/query-builder/query-builder.component.mjs +4 -1
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +4 -1
- package/fesm2015/igniteui-angular.mjs +26 -10
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +26 -10
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/data-operations/grouping-expression.interface.d.ts +1 -1
- package/lib/grids/columns/column.component.d.ts +4 -4
- package/lib/grids/public_api.d.ts +1 -0
- package/package.json +1 -1
|
@@ -754,17 +754,17 @@ export declare class IgxColumnComponent implements AfterContentInit, OnDestroy,
|
|
|
754
754
|
*
|
|
755
755
|
* @memberof IgxColumnComponent
|
|
756
756
|
*/
|
|
757
|
-
get groupingComparer(): (a: any, b: any) => number;
|
|
757
|
+
get groupingComparer(): (a: any, b: any, currRec?: any, groupRec?: any) => number;
|
|
758
758
|
/**
|
|
759
759
|
* Sets a custom function to compare values for grouping.
|
|
760
760
|
* Subsequent values in the sorted data that the function returns 0 for are grouped.
|
|
761
761
|
* ```typescript
|
|
762
|
-
* this.column.groupingComparer = (a: any, b: any) => { return a === b ? 0 : -1; }
|
|
762
|
+
* this.column.groupingComparer = (a: any, b: any, currRec?: any, groupRec?: any) => { return a === b ? 0 : -1; }
|
|
763
763
|
* ```
|
|
764
764
|
*
|
|
765
765
|
* @memberof IgxColumnComponent
|
|
766
766
|
*/
|
|
767
|
-
set groupingComparer(funcRef: (a: any, b: any) => number);
|
|
767
|
+
set groupingComparer(funcRef: (a: any, b: any, currRec?: any, groupRec?: any) => number);
|
|
768
768
|
/**
|
|
769
769
|
* Gets the default minimum `width` of the column.
|
|
770
770
|
* ```typescript
|
|
@@ -1154,7 +1154,7 @@ export declare class IgxColumnComponent implements AfterContentInit, OnDestroy,
|
|
|
1154
1154
|
/**
|
|
1155
1155
|
* @hidden
|
|
1156
1156
|
*/
|
|
1157
|
-
protected _groupingComparer: (a: any, b: any) => number;
|
|
1157
|
+
protected _groupingComparer: (a: any, b: any, currRec?: any, groupRec?: any) => number;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* @hidden
|
|
1160
1160
|
*/
|
|
@@ -31,3 +31,4 @@ export * from './summaries/summary.module';
|
|
|
31
31
|
export * from './grouping/tree-grid-group-by-area.component';
|
|
32
32
|
export * from './grouping/grid-group-by-area.component';
|
|
33
33
|
export * from './grouping/group-by-area.directive';
|
|
34
|
+
export { DropPosition } from './moving/moving.service';
|
package/package.json
CHANGED