@skyux/core 5.9.3 → 5.9.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.
@@ -8,10 +8,6 @@ import * as i0 from "@angular/core";
8
8
  * M for millions, B for billions, and T for trillions. The pipe also formats for currency.
9
9
  * Be sure you have a space after the two curly brackets opening the pipe and
10
10
  * a space before the two curly brackets closing the pipe or it will not work.
11
- * Usage:
12
- * ```
13
- * {{ value | skyNumeric(config) }}
14
- * ```
15
11
  */
16
12
  export declare class SkyNumericPipe implements PipeTransform, OnDestroy {
17
13
  private localeProvider;
@@ -25,6 +21,9 @@ export declare class SkyNumericPipe implements PipeTransform, OnDestroy {
25
21
  private ngUnsubscribe;
26
22
  constructor(localeProvider: SkyAppLocaleProvider, numericService: SkyNumericService, changeDetector: ChangeDetectorRef);
27
23
  ngOnDestroy(): void;
24
+ /**
25
+ * Formats a number based on the provided options.
26
+ */
28
27
  transform(value: number, config?: NumericOptions): string;
29
28
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyNumericPipe, never>;
30
29
  static ɵpipe: i0.ɵɵPipeDeclaration<SkyNumericPipe, "skyNumeric">;
@@ -17,7 +17,7 @@ export declare class SkyNumericService {
17
17
  private _locale;
18
18
  constructor(resourcesService: SkyLibResourcesService);
19
19
  /**
20
- * Shortens with or without symbol (K/M/B/T) depending on value of number.
20
+ * Formats a number based on the provided options.
21
21
  * @param value The number to format.
22
22
  * @param options Format options.
23
23
  */
@@ -16,7 +16,6 @@ export declare class SkyResizeObserverMediaQueryService implements OnDestroy {
16
16
  private _breakpoints;
17
17
  private _currentBreakpointObservable;
18
18
  private _currentBreakpoint;
19
- private _resizeSubscription;
20
19
  private _stopListening;
21
20
  private _target?;
22
21
  constructor(resizeObserverService: SkyResizeObserverService);
@@ -40,6 +39,7 @@ export declare class SkyResizeObserverMediaQueryService implements OnDestroy {
40
39
  subscribe(listener: SkyMediaQueryListener): Subscription;
41
40
  private updateBreakpoint;
42
41
  private checkBreakpoint;
42
+ private checkWidth;
43
43
  static ɵfac: i0.ɵɵFactoryDeclaration<SkyResizeObserverMediaQueryService, never>;
44
44
  static ɵprov: i0.ɵɵInjectableDeclaration<SkyResizeObserverMediaQueryService>;
45
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyux/core",
3
- "version": "5.9.3",
3
+ "version": "5.9.6",
4
4
  "author": "Blackbaud, Inc.",
5
5
  "keywords": [
6
6
  "blackbaud",
@@ -20,7 +20,7 @@
20
20
  "@angular/core": "^12.2.16",
21
21
  "@angular/platform-browser": "^12.2.16",
22
22
  "@angular/router": "^12.2.16",
23
- "@skyux/i18n": "5.9.3"
23
+ "@skyux/i18n": "5.9.6"
24
24
  },
25
25
  "dependencies": {
26
26
  "tslib": "^2.3.1"