@indigina/ui-kit 1.1.476 → 1.1.477
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
|
@@ -3545,6 +3545,8 @@ declare enum KitFileCardSize {
|
|
|
3545
3545
|
}
|
|
3546
3546
|
|
|
3547
3547
|
declare class KitFileCardComponent {
|
|
3548
|
+
private readonly datePipe;
|
|
3549
|
+
private readonly dateFormatConfig;
|
|
3548
3550
|
/**
|
|
3549
3551
|
* Defines a value that will be used as a card title
|
|
3550
3552
|
*/
|
|
@@ -3572,6 +3574,7 @@ declare class KitFileCardComponent {
|
|
|
3572
3574
|
name: string;
|
|
3573
3575
|
readonly fileSize: InputSignal<string | undefined>;
|
|
3574
3576
|
readonly showViewFileButton: InputSignal<boolean>;
|
|
3577
|
+
readonly useUTCDateValues: InputSignal<boolean>;
|
|
3575
3578
|
/**
|
|
3576
3579
|
* An action which is emitted when view button clicked
|
|
3577
3580
|
*/
|
|
@@ -3586,15 +3589,17 @@ declare class KitFileCardComponent {
|
|
|
3586
3589
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
3587
3590
|
readonly kitButtonIconPosition: typeof KitButtonIconPosition;
|
|
3588
3591
|
readonly kitFileCardSize: typeof KitFileCardSize;
|
|
3589
|
-
readonly dateFormat: string;
|
|
3590
3592
|
readonly createDateLabel: string;
|
|
3591
3593
|
readonly createdByLabel: string;
|
|
3592
3594
|
readonly downloadButtonLabel: string;
|
|
3593
3595
|
readonly viewButtonLabel: string;
|
|
3596
|
+
readonly dateFormat: string;
|
|
3597
|
+
constructor();
|
|
3594
3598
|
getFileIconByExtension(extension: string): string | null;
|
|
3595
3599
|
hasViewFileButton(fileType: string): boolean;
|
|
3600
|
+
getFormattedDate(): string;
|
|
3596
3601
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitFileCardComponent, never>;
|
|
3597
|
-
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; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; "showViewFileButton": { "alias": "showViewFileButton"; "required": false; "isSignal": true; }; }, { "viewButtonClicked": "viewButtonClicked"; "downloadButtonClicked": "downloadButtonClicked"; }, ["customMessages"], ["*"], true, never>;
|
|
3602
|
+
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; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; }; "fileSize": { "alias": "fileSize"; "required": false; "isSignal": true; }; "showViewFileButton": { "alias": "showViewFileButton"; "required": false; "isSignal": true; }; "useUTCDateValues": { "alias": "useUTCDateValues"; "required": false; "isSignal": true; }; }, { "viewButtonClicked": "viewButtonClicked"; "downloadButtonClicked": "downloadButtonClicked"; }, ["customMessages"], ["*"], true, never>;
|
|
3598
3603
|
}
|
|
3599
3604
|
|
|
3600
3605
|
declare enum KitDataFieldState {
|