igniteui-angular 12.3.1 → 12.3.2

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,6 +1,7 @@
1
1
  import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
2
2
  import { HttpClient } from '@angular/common/http';
3
3
  import { Observable } from 'rxjs';
4
+ import { PlatformUtil } from '../core/utils';
4
5
  /**
5
6
  * Event emitted when a SVG icon is loaded through
6
7
  * a HTTP request.
@@ -28,6 +29,7 @@ export interface IgxIconLoadedEvent {
28
29
  export declare class IgxIconService {
29
30
  private _sanitizer;
30
31
  private _httpClient;
32
+ private _platformUtil;
31
33
  private _document;
32
34
  /**
33
35
  * Observable that emits when an icon is successfully loaded
@@ -44,7 +46,7 @@ export declare class IgxIconService {
44
46
  private _cachedSvgIcons;
45
47
  private _iconLoaded;
46
48
  private _domParser;
47
- constructor(_sanitizer: DomSanitizer, _httpClient: HttpClient, _document: any);
49
+ constructor(_sanitizer: DomSanitizer, _httpClient: HttpClient, _platformUtil: PlatformUtil, _document: any);
48
50
  /**
49
51
  * Returns the default font-family.
50
52
  * ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "12.3.1",
3
+ "version": "12.3.2",
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",