design-angular-kit 21.0.0 → 21.0.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.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "design-angular-kit",
|
|
3
3
|
"description": "Un toolkit Angular conforme alle linee guida di design per i servizi web della PA",
|
|
4
|
-
"version": "21.0.
|
|
4
|
+
"version": "21.0.2",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"angular",
|
|
@@ -48,14 +48,14 @@
|
|
|
48
48
|
"tslib": "^2.6.3"
|
|
49
49
|
},
|
|
50
50
|
"peerDependencies": {
|
|
51
|
-
"@angular/animations": "^
|
|
52
|
-
"@angular/common": "^
|
|
53
|
-
"@angular/core": "^
|
|
54
|
-
"@angular/platform-browser": "^
|
|
55
|
-
"@angular/router": "^
|
|
56
|
-
"@ngx-translate/core": "^
|
|
57
|
-
"@ngx-translate/http-loader": "^
|
|
58
|
-
"bootstrap-italia": "^2.
|
|
51
|
+
"@angular/animations": "^21.0.4",
|
|
52
|
+
"@angular/common": "^21.0.4",
|
|
53
|
+
"@angular/core": "^21.0.4",
|
|
54
|
+
"@angular/platform-browser": "^21.0.4",
|
|
55
|
+
"@angular/router": "^21.0.4",
|
|
56
|
+
"@ngx-translate/core": "^17.0.0",
|
|
57
|
+
"@ngx-translate/http-loader": "^17.0.0",
|
|
58
|
+
"bootstrap-italia": "^2.17.4"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"overrides": {
|
|
@@ -3664,7 +3664,7 @@ declare class ItDateAgoPipe extends TranslatePipe implements PipeTransform {
|
|
|
3664
3664
|
* @example 2 hours ago
|
|
3665
3665
|
* @param value the Date or date string
|
|
3666
3666
|
*/
|
|
3667
|
-
transform(value: string | Date): string;
|
|
3667
|
+
transform(value: string | Date | null | undefined): string;
|
|
3668
3668
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItDateAgoPipe, never>;
|
|
3669
3669
|
static ɵpipe: i0.ɵɵPipeDeclaration<ItDateAgoPipe, "itDateAgo", true>;
|
|
3670
3670
|
}
|
|
@@ -3697,7 +3697,7 @@ declare class ItDurationPipe extends TranslatePipe implements PipeTransform {
|
|
|
3697
3697
|
* @param value the number
|
|
3698
3698
|
* @param type the number expressed type
|
|
3699
3699
|
*/
|
|
3700
|
-
transform(value: string | number | undefined, type: ItDurationPipeType): string;
|
|
3700
|
+
transform(value: string | number | undefined | null, type: ItDurationPipeType): string;
|
|
3701
3701
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItDurationPipe, never>;
|
|
3702
3702
|
static ɵpipe: i0.ɵɵPipeDeclaration<ItDurationPipe, "itDuration", true>;
|
|
3703
3703
|
}
|