igniteui-angular 15.0.16 → 15.0.18

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.
@@ -52,16 +52,6 @@ export declare class IgxCardHeaderComponent {
52
52
  * ```
53
53
  */
54
54
  vertical: boolean;
55
- /**
56
- * An @Input property that sets the value of the `role` attribute of the card header.
57
- * By default the value is set to `header`.
58
- *
59
- * @example
60
- * ```html
61
- * <igx-card-header role="header"></igx-card-header>
62
- * ```
63
- */
64
- role: string;
65
55
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxCardHeaderComponent, never>;
66
56
  static ɵcmp: i0.ɵɵComponentDeclaration<IgxCardHeaderComponent, "igx-card-header", never, { "vertical": "vertical"; }, {}, never, ["igx-avatar, igx-card-media, [igxCardThumbnail]", "\n [igxCardHeaderTitle],\n [igxCardHeaderSubtitle],\n .igx-card-header__title,\n .igx-card-header__subtitle", "*"], false, never>;
67
57
  }
@@ -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": "15.0.16",
3
+ "version": "15.0.18",
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",
@@ -47,7 +47,6 @@ Supporting directives and components:
47
47
  ## igx-card-header
48
48
  | Name | Type | Description |
49
49
  |:----------|:-------------:|:------|
50
- | `role` | string | The role attribute of the card header. By default it's set to `header`. |
51
50
  | `vertical` | boolean | Sets the header layout direction. When set to `true` the card content is vertically layed out. |
52
51
 
53
52
  ## igx-card-media