@codeandfunction/callaloo 3.4.1 → 3.5.1
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/dist/types.d.ts
CHANGED
|
@@ -58,7 +58,6 @@ export declare enum ButtonTypes {
|
|
|
58
58
|
}
|
|
59
59
|
export declare enum CardTypes {
|
|
60
60
|
Tiny = "tiny",
|
|
61
|
-
Compact = "compact",
|
|
62
61
|
Small = "small",
|
|
63
62
|
Medium = "medium",
|
|
64
63
|
Large = "large",
|
|
@@ -79,6 +78,8 @@ export interface CardProps {
|
|
|
79
78
|
byline?: string;
|
|
80
79
|
/** Sets the color of the Card. The property can be one of `CLColors`, e.g. `CLColors.Primary`. */
|
|
81
80
|
color?: Colors;
|
|
81
|
+
/** A boolean value which dictates the compact state of the card. When set to `true`, it utilizes a more compact layout. */
|
|
82
|
+
compact?: boolean;
|
|
82
83
|
/** The `elevated` property displays a shadow to indicate elevation. */
|
|
83
84
|
elevated?: boolean;
|
|
84
85
|
/** A callback function which provides a reference to the button. */
|