@vitality-ds/components 5.2.0 → 5.3.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.
|
@@ -49,7 +49,7 @@ export declare type CalloutProps = ExcludedProps & VariantProps<typeof BaseCallo
|
|
|
49
49
|
* Descriptive title to display in the callout
|
|
50
50
|
* @default "Information" "Success" "Warning" "Critical"
|
|
51
51
|
*/
|
|
52
|
-
title
|
|
52
|
+
title?: string;
|
|
53
53
|
/**
|
|
54
54
|
* The severity used to communicate more meaning to the user
|
|
55
55
|
* @default "info"
|
|
@@ -17,7 +17,7 @@ declare type VariantOptionType = {
|
|
|
17
17
|
export declare type VariantOptionsType = {
|
|
18
18
|
[K in AllowedVariantKeys]: VariantOptionType;
|
|
19
19
|
};
|
|
20
|
-
declare type DialogActionButtonType = Omit<ButtonProps, "
|
|
20
|
+
export declare type DialogActionButtonType = Omit<ButtonProps, "appearance" | "children" | "shouldFitContainer" | "size"> & {
|
|
21
21
|
label: string;
|
|
22
22
|
};
|
|
23
23
|
export declare type HeaderPropsType = {
|