@indigina/ui-kit 1.1.479 → 1.1.480
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
|
@@ -3463,7 +3463,6 @@ declare class KitTimelineCardComponent {
|
|
|
3463
3463
|
}
|
|
3464
3464
|
|
|
3465
3465
|
declare enum KitStatusLabelColor {
|
|
3466
|
-
WHITE = "white",
|
|
3467
3466
|
PURPLE = "purple",
|
|
3468
3467
|
TEAL = "teal",
|
|
3469
3468
|
GREY = "grey",
|
|
@@ -3471,7 +3470,8 @@ declare enum KitStatusLabelColor {
|
|
|
3471
3470
|
GREEN = "green",
|
|
3472
3471
|
BLUE = "blue",
|
|
3473
3472
|
PINK = "pink",
|
|
3474
|
-
RED = "red"
|
|
3473
|
+
RED = "red",
|
|
3474
|
+
WHITE = "white"
|
|
3475
3475
|
}
|
|
3476
3476
|
declare enum KitStatusLabelSize {
|
|
3477
3477
|
SMALL = "small",
|
|
@@ -3498,6 +3498,8 @@ interface KitTimelineCompactItem {
|
|
|
3498
3498
|
descriptionIconType?: KitSvgIconType;
|
|
3499
3499
|
label?: string;
|
|
3500
3500
|
labelColor?: KitStatusLabelColor;
|
|
3501
|
+
status?: string;
|
|
3502
|
+
statusColor?: KitStatusLabelColor;
|
|
3501
3503
|
subItems?: KitTimelineCompactItem[];
|
|
3502
3504
|
}
|
|
3503
3505
|
|
|
@@ -3508,6 +3510,7 @@ declare class KitTimelineCompactComponent {
|
|
|
3508
3510
|
readonly kitSvgIcon: typeof KitSvgIcon;
|
|
3509
3511
|
readonly kitButtonType: typeof KitButtonType;
|
|
3510
3512
|
readonly kitButtonKind: typeof KitButtonKind;
|
|
3513
|
+
readonly kitStatusLabelColor: typeof KitStatusLabelColor;
|
|
3511
3514
|
private readonly collapsedItems;
|
|
3512
3515
|
constructor();
|
|
3513
3516
|
isCollapsed(item: KitTimelineCompactItem): boolean;
|