design-angular-kit 20.0.0 → 20.1.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/README.md +2 -2
- package/fesm2022/design-angular-kit.mjs +32 -11
- package/fesm2022/design-angular-kit.mjs.map +1 -1
- package/index.d.ts +45 -24
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -581,45 +581,55 @@ declare class ItCalloutComponent {
|
|
|
581
581
|
*/
|
|
582
582
|
declare class ItCardComponent extends ItAbstractComponent {
|
|
583
583
|
/**
|
|
584
|
-
* To create cards
|
|
584
|
+
* To create inline cards
|
|
585
585
|
* @default false
|
|
586
586
|
*/
|
|
587
|
-
|
|
587
|
+
inline?: boolean;
|
|
588
588
|
/**
|
|
589
|
-
* To create
|
|
589
|
+
* To create inline mini cards
|
|
590
590
|
* @default false
|
|
591
591
|
*/
|
|
592
|
-
|
|
592
|
+
mini?: boolean;
|
|
593
593
|
/**
|
|
594
|
-
*
|
|
594
|
+
* To add border
|
|
595
|
+
* @default true
|
|
596
|
+
*/
|
|
597
|
+
border: boolean;
|
|
598
|
+
/**
|
|
599
|
+
* To create banner cards
|
|
595
600
|
* @default false
|
|
596
601
|
*/
|
|
597
|
-
|
|
602
|
+
banner?: boolean;
|
|
598
603
|
/**
|
|
599
|
-
* To
|
|
604
|
+
* To create profile cards
|
|
605
|
+
* @default false
|
|
606
|
+
*/
|
|
607
|
+
profile?: boolean;
|
|
608
|
+
/**
|
|
609
|
+
* To create rounded cards
|
|
600
610
|
* @default false
|
|
601
611
|
*/
|
|
602
612
|
rounded?: boolean;
|
|
603
613
|
/**
|
|
604
|
-
* To
|
|
614
|
+
* To create inline reverse cards
|
|
605
615
|
* @default false
|
|
606
616
|
*/
|
|
607
|
-
|
|
617
|
+
reverse?: boolean;
|
|
608
618
|
/**
|
|
609
|
-
* To
|
|
619
|
+
* To create full height cards
|
|
610
620
|
* @default false
|
|
611
621
|
*/
|
|
612
|
-
|
|
622
|
+
fullHeight?: boolean;
|
|
613
623
|
/**
|
|
614
|
-
*
|
|
624
|
+
* Card with image
|
|
615
625
|
* @default false
|
|
616
626
|
*/
|
|
617
|
-
|
|
627
|
+
hasImage?: boolean;
|
|
618
628
|
/**
|
|
619
|
-
* To
|
|
629
|
+
* To add top border
|
|
620
630
|
* @default false
|
|
621
631
|
*/
|
|
622
|
-
|
|
632
|
+
borderTop?: boolean;
|
|
623
633
|
/**
|
|
624
634
|
* Custom card class
|
|
625
635
|
* @default ''
|
|
@@ -630,16 +640,23 @@ declare class ItCardComponent extends ItAbstractComponent {
|
|
|
630
640
|
* @default ''
|
|
631
641
|
*/
|
|
632
642
|
bodyClass: string;
|
|
643
|
+
/**
|
|
644
|
+
* Shadow type
|
|
645
|
+
* @default 'sm'
|
|
646
|
+
*/
|
|
647
|
+
shadow: 'sm' | 'lg' | 'normal' | 'none';
|
|
633
648
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItCardComponent, never>;
|
|
634
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ItCardComponent, "it-card", never, { "
|
|
635
|
-
static
|
|
636
|
-
static
|
|
637
|
-
static
|
|
649
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ItCardComponent, "it-card", never, { "inline": { "alias": "inline"; "required": false; }; "mini": { "alias": "mini"; "required": false; }; "border": { "alias": "border"; "required": false; }; "banner": { "alias": "banner"; "required": false; }; "profile": { "alias": "profile"; "required": false; }; "rounded": { "alias": "rounded"; "required": false; }; "reverse": { "alias": "reverse"; "required": false; }; "fullHeight": { "alias": "fullHeight"; "required": false; }; "hasImage": { "alias": "hasImage"; "required": false; }; "borderTop": { "alias": "borderTop"; "required": false; }; "cardClass": { "alias": "cardClass"; "required": false; }; "bodyClass": { "alias": "bodyClass"; "required": false; }; "shadow": { "alias": "shadow"; "required": false; }; }, {}, never, ["[beforeBody]", "*"], true, never>;
|
|
650
|
+
static ngAcceptInputType_inline: BooleanInput;
|
|
651
|
+
static ngAcceptInputType_mini: BooleanInput;
|
|
652
|
+
static ngAcceptInputType_border: BooleanInput;
|
|
653
|
+
static ngAcceptInputType_banner: BooleanInput;
|
|
654
|
+
static ngAcceptInputType_profile: BooleanInput;
|
|
638
655
|
static ngAcceptInputType_rounded: BooleanInput;
|
|
639
|
-
static
|
|
640
|
-
static
|
|
641
|
-
static
|
|
642
|
-
static
|
|
656
|
+
static ngAcceptInputType_reverse: BooleanInput;
|
|
657
|
+
static ngAcceptInputType_fullHeight: BooleanInput;
|
|
658
|
+
static ngAcceptInputType_hasImage: BooleanInput;
|
|
659
|
+
static ngAcceptInputType_borderTop: BooleanInput;
|
|
643
660
|
}
|
|
644
661
|
|
|
645
662
|
/**
|
|
@@ -3135,6 +3152,10 @@ declare class ItUploadFileListComponent extends ItAbstractComponent implements O
|
|
|
3135
3152
|
* @default *
|
|
3136
3153
|
*/
|
|
3137
3154
|
accept: string;
|
|
3155
|
+
/**
|
|
3156
|
+
* A label for the upload button
|
|
3157
|
+
*/
|
|
3158
|
+
label?: string;
|
|
3138
3159
|
/**
|
|
3139
3160
|
* If upload multiple files
|
|
3140
3161
|
* @default true
|
|
@@ -3175,7 +3196,7 @@ declare class ItUploadFileListComponent extends ItAbstractComponent implements O
|
|
|
3175
3196
|
*/
|
|
3176
3197
|
getFileSize(file: File): string;
|
|
3177
3198
|
static ɵfac: i0.ɵɵFactoryDeclaration<ItUploadFileListComponent, never>;
|
|
3178
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ItUploadFileListComponent, "it-upload-file-list", never, { "fileList": { "alias": "fileList"; "required": true; }; "accept": { "alias": "accept"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "images": { "alias": "images"; "required": false; }; "hideLoadButton": { "alias": "hideLoadButton"; "required": false; }; }, { "uploadFiles": "uploadFiles"; "deleteItem": "deleteItem"; }, never, never, true, never>;
|
|
3199
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ItUploadFileListComponent, "it-upload-file-list", never, { "fileList": { "alias": "fileList"; "required": true; }; "accept": { "alias": "accept"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "images": { "alias": "images"; "required": false; }; "hideLoadButton": { "alias": "hideLoadButton"; "required": false; }; }, { "uploadFiles": "uploadFiles"; "deleteItem": "deleteItem"; }, never, never, true, never>;
|
|
3179
3200
|
static ngAcceptInputType_multiple: BooleanInput;
|
|
3180
3201
|
static ngAcceptInputType_images: BooleanInput;
|
|
3181
3202
|
static ngAcceptInputType_hideLoadButton: BooleanInput;
|
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": "20.
|
|
4
|
+
"version": "20.1.0",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"keywords": [
|
|
7
7
|
"angular",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"@angular/router": "^20.0.3",
|
|
56
56
|
"@ngx-translate/core": "^16.0.4",
|
|
57
57
|
"@ngx-translate/http-loader": "^16.0.1",
|
|
58
|
-
"bootstrap-italia": "^2.
|
|
58
|
+
"bootstrap-italia": "^2.16.1"
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"overrides": {
|