@indigina/ui-kit 1.1.473 → 1.1.474
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
|
@@ -3481,18 +3481,21 @@ declare enum KitStatusLabelSize {
|
|
|
3481
3481
|
declare enum KitTimelineCompactItemTheme {
|
|
3482
3482
|
GREEN = "green",
|
|
3483
3483
|
BLUE = "blue",
|
|
3484
|
-
GREY = "grey"
|
|
3484
|
+
GREY = "grey",
|
|
3485
|
+
SUCCESS = "success",
|
|
3486
|
+
WARNING = "warning",
|
|
3487
|
+
DANGER = "danger"
|
|
3485
3488
|
}
|
|
3486
3489
|
|
|
3487
3490
|
interface KitTimelineCompactItem {
|
|
3488
3491
|
title: string;
|
|
3489
3492
|
icon: KitSvgIcon;
|
|
3493
|
+
date: string;
|
|
3490
3494
|
iconType?: KitSvgIconType;
|
|
3491
3495
|
itemTheme?: KitTimelineCompactItemTheme;
|
|
3492
3496
|
description?: string;
|
|
3493
3497
|
descriptionIcon?: KitSvgIcon;
|
|
3494
3498
|
descriptionIconType?: KitSvgIconType;
|
|
3495
|
-
date: string;
|
|
3496
3499
|
label?: string;
|
|
3497
3500
|
labelColor?: KitStatusLabelColor;
|
|
3498
3501
|
subItems?: KitTimelineCompactItem[];
|
|
@@ -3500,15 +3503,18 @@ interface KitTimelineCompactItem {
|
|
|
3500
3503
|
|
|
3501
3504
|
declare class KitTimelineCompactComponent {
|
|
3502
3505
|
readonly items: InputSignal<KitTimelineCompactItem[]>;
|
|
3506
|
+
readonly collapseAllSubItems: InputSignal<boolean>;
|
|
3503
3507
|
readonly kitSvgIconType: typeof KitSvgIconType;
|
|
3504
3508
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
3505
3509
|
readonly kitButtonType: typeof KitButtonType;
|
|
3506
3510
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
3507
3511
|
private readonly collapsedItems;
|
|
3512
|
+
constructor();
|
|
3508
3513
|
isCollapsed(item: KitTimelineCompactItem): boolean;
|
|
3509
3514
|
toggleSubItems(item: KitTimelineCompactItem): void;
|
|
3515
|
+
private syncCollapsedItems;
|
|
3510
3516
|
static ɵfac: i0.ɵɵFactoryDeclaration<KitTimelineCompactComponent, never>;
|
|
3511
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<KitTimelineCompactComponent, "kit-timeline-compact", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3517
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<KitTimelineCompactComponent, "kit-timeline-compact", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "collapseAllSubItems": { "alias": "collapseAllSubItems"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3512
3518
|
}
|
|
3513
3519
|
|
|
3514
3520
|
declare class KitFileCardMessagesComponent {
|