@skyux/core 8.10.4 → 8.10.6

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.
@@ -16,7 +16,7 @@ export declare class SkyNumericPipe implements PipeTransform, OnDestroy {
16
16
  /**
17
17
  * Formats a number based on the provided options.
18
18
  */
19
- transform(value: number, config?: SkyNumericOptions): string;
19
+ transform(value: number | undefined | null, config?: SkyNumericOptions): string;
20
20
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyNumericPipe, never>;
21
21
  static ɵpipe: i0.ɵɵPipeDeclaration<SkyNumericPipe, "skyNumeric", false>;
22
22
  }
@@ -18,7 +18,7 @@ export declare class SkyNumericService {
18
18
  * @param value The number to format.
19
19
  * @param options Format options.
20
20
  */
21
- formatNumber(value: number, options: SkyNumericOptions): string;
21
+ formatNumber(value: number | undefined | null, options: SkyNumericOptions): string;
22
22
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyNumericService, never>;
23
23
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyNumericService>;
24
24
  }
@@ -2,7 +2,6 @@ import { ElementRef, OnDestroy } from '@angular/core';
2
2
  import { Subscription } from 'rxjs';
3
3
  import { SkyMediaBreakpoints } from '../media-query/media-breakpoints';
4
4
  import { SkyMediaQueryListener } from '../media-query/media-query-listener';
5
- import { SkyResizeObserverService } from './resize-observer.service';
6
5
  import * as i0 from "@angular/core";
7
6
  /**
8
7
  * Acts like `SkyMediaQueryService` for a container element, emitting the same responsive breakpoints.
@@ -13,7 +12,6 @@ export declare class SkyResizeObserverMediaQueryService implements OnDestroy {
13
12
  * Returns the current breakpoint.
14
13
  */
15
14
  get current(): SkyMediaBreakpoints;
16
- constructor(resizeObserverSvc: SkyResizeObserverService);
17
15
  ngOnDestroy(): void;
18
16
  /**
19
17
  * @internal
@@ -1,4 +1,4 @@
1
- import { ElementRef, NgZone, OnDestroy } from '@angular/core';
1
+ import { ElementRef, OnDestroy } from '@angular/core';
2
2
  import { Observable } from 'rxjs';
3
3
  import * as i0 from "@angular/core";
4
4
  /**
@@ -6,7 +6,6 @@ import * as i0 from "@angular/core";
6
6
  */
7
7
  export declare class SkyResizeObserverService implements OnDestroy {
8
8
  #private;
9
- constructor(zone: NgZone);
10
9
  ngOnDestroy(): void;
11
10
  /**
12
11
  * Create rxjs observable to get size changes for an element ref.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "8.10.4",
3
+ "version": "8.10.6",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -45,7 +45,7 @@
45
45
  "@angular/core": "^15.2.9",
46
46
  "@angular/platform-browser": "^15.2.9",
47
47
  "@angular/router": "^15.2.9",
48
- "@skyux/i18n": "8.10.4"
48
+ "@skyux/i18n": "8.10.6"
49
49
  },
50
50
  "dependencies": {
51
51
  "tslib": "^2.5.0"