@indigina/ui-kit 1.1.445 → 1.1.447
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
|
@@ -3439,8 +3439,9 @@ declare class KitFileCardMessagesComponent {
|
|
|
3439
3439
|
* Defines a value to use as "Download" button label
|
|
3440
3440
|
*/
|
|
3441
3441
|
downloadButtonLabel: string;
|
|
3442
|
+
readonly fileSize: InputSignal<string>;
|
|
3442
3443
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitFileCardMessagesComponent, never>;
|
|
3443
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitFileCardMessagesComponent, "kit-file-card-custom-messages", never, { "createDate": { "alias": "createDate"; "required": false; }; "createdBy": { "alias": "createdBy"; "required": false; }; "viewButtonLabel": { "alias": "viewButtonLabel"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; }, {}, never, never, true, never>;
|
|
3444
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitFileCardMessagesComponent, "kit-file-card-custom-messages", never, { "createDate": { "alias": "createDate"; "required": false; }; "createdBy": { "alias": "createdBy"; "required": false; }; "viewButtonLabel": { "alias": "viewButtonLabel"; "required": false; }; "downloadButtonLabel": { "alias": "downloadButtonLabel"; "required": false; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3444
3445
|
}
|
|
3445
3446
|
|
|
3446
3447
|
declare class KitFileCardComponent {
|
|
@@ -3468,6 +3469,7 @@ declare class KitFileCardComponent {
|
|
|
3468
3469
|
* Defines a value that will be used as a card name
|
|
3469
3470
|
*/
|
|
3470
3471
|
name: string;
|
|
3472
|
+
readonly fileSize: InputSignal<string | undefined>;
|
|
3471
3473
|
/**
|
|
3472
3474
|
* An action which is emitted when view button clicked
|
|
3473
3475
|
*/
|
|
@@ -3488,7 +3490,7 @@ declare class KitFileCardComponent {
|
|
|
3488
3490
|
getFileIconByExtension(extension: string): string | null;
|
|
3489
3491
|
hasViewFileButton(fileType: string): boolean;
|
|
3490
3492
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitFileCardComponent, never>;
|
|
3491
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitFileCardComponent, "kit-file-card", never, { "title": { "alias": "title"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "fileType": { "alias": "fileType"; "required": false; }; "date": { "alias": "date"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "viewButtonClicked": "viewButtonClicked"; "downloadButtonClicked": "downloadButtonClicked"; }, ["customMessages"], ["*"], true, never>;
|
|
3493
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitFileCardComponent, "kit-file-card", never, { "title": { "alias": "title"; "required": false; }; "type": { "alias": "type"; "required": false; }; "label": { "alias": "label"; "required": false; }; "fileType": { "alias": "fileType"; "required": false; }; "date": { "alias": "date"; "required": false; }; "name": { "alias": "name"; "required": false; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; }, { "viewButtonClicked": "viewButtonClicked"; "downloadButtonClicked": "downloadButtonClicked"; }, ["customMessages"], ["*"], true, never>;
|
|
3492
3494
|
}
|
|
3493
3495
|
|
|
3494
3496
|
declare enum KitDataFieldState {
|