igniteui-angular 14.2.22 → 14.2.24

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.
@@ -1,4 +1,4 @@
1
1
  import { ISortingExpression } from './sorting-strategy';
2
2
  export interface IGroupingExpression extends ISortingExpression {
3
- groupingComparer?: (a: any, b: any) => number;
3
+ groupingComparer?: (a: any, b: any, currRec?: any, groupRec?: any) => number;
4
4
  }
@@ -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';
@@ -14,12 +14,11 @@ export declare class WorksheetDataDictionary {
14
14
  private _context;
15
15
  constructor(columnCount: number, columnWidth: number, columnWidthsList: number[]);
16
16
  get columnWidths(): number[];
17
- saveValue(value: any, isHeader: boolean): number;
17
+ saveValue(value: any, isHeader: boolean, shouldSanitizeValue?: boolean): number;
18
18
  getValue(value: string): number;
19
19
  getSanitizedValue(sanitizedValue: string): number;
20
20
  getKeys(): string[];
21
21
  private getTextWidth;
22
22
  private getContext;
23
- private sanitizeValue;
24
23
  private dirtyKeyCollections;
25
24
  }
@@ -8,4 +8,5 @@ export declare class ExportUtilities {
8
8
  static isSpecialData(data: any): boolean;
9
9
  static hasValue(value: any): boolean;
10
10
  static isNullOrWhitespaces(value: string): boolean;
11
+ static sanitizeValue(value: any): string;
11
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "14.2.22",
3
+ "version": "14.2.24",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",