@skyux/core 9.3.1 → 9.4.0
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.
- package/documentation.json +332 -332
- package/esm2022/lib/modules/numeric/numeric.pipe.mjs +4 -1
- package/esm2022/lib/modules/numeric/numeric.service.mjs +2 -2
- package/esm2022/version.mjs +1 -1
- package/fesm2022/skyux-core.mjs +5 -2
- package/fesm2022/skyux-core.mjs.map +1 -1
- package/lib/modules/numeric/numeric.pipe.d.ts +1 -1
- package/lib/modules/numeric/numeric.service.d.ts +1 -1
- package/package.json +2 -2
@@ -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
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@skyux/core",
|
3
|
-
"version": "9.
|
3
|
+
"version": "9.4.0",
|
4
4
|
"author": "Blackbaud, Inc.",
|
5
5
|
"keywords": [
|
6
6
|
"blackbaud",
|
@@ -41,7 +41,7 @@
|
|
41
41
|
"@angular/core": "^16.2.5",
|
42
42
|
"@angular/platform-browser": "^16.2.5",
|
43
43
|
"@angular/router": "^16.2.5",
|
44
|
-
"@skyux/i18n": "9.
|
44
|
+
"@skyux/i18n": "9.4.0"
|
45
45
|
},
|
46
46
|
"dependencies": {
|
47
47
|
"tslib": "^2.6.2"
|