@codeandfunction/callaloo 3.4.0 → 3.5.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.
- package/dist/assets/styles.css +1 -1
- package/dist/components/Containers/CLCard.vue.d.ts +1 -0
- package/dist/components/Form/CLCheckbox.vue.d.ts +1 -1
- package/dist/components/Form/CLRadioButton.vue.d.ts +1 -1
- package/dist/components/Typography/CLText.vue.d.ts +22 -0
- package/dist/index.js +150 -136
- package/dist/types.d.ts +3 -2
- package/package.json +1 -1
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. */
|
|
@@ -574,7 +575,7 @@ export interface NavItem {
|
|
|
574
575
|
}
|
|
575
576
|
export interface Option {
|
|
576
577
|
label: string;
|
|
577
|
-
value: string | number | null;
|
|
578
|
+
value: string | number | boolean | null;
|
|
578
579
|
disabled?: boolean;
|
|
579
580
|
}
|
|
580
581
|
export declare enum Order {
|