@codeandfunction/callaloo 3.4.1 → 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.
@@ -30,6 +30,7 @@ declare const __VLS_component: import('vue').DefineComponent<CLCardProps, {}, {}
30
30
  rounded: boolean;
31
31
  active: boolean;
32
32
  target: CLLinkTarget;
33
+ compact: boolean;
33
34
  imageAltText: string;
34
35
  imageHeight: string;
35
36
  imageWidth: string;
@@ -28,6 +28,16 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
28
28
  type: PropType<CLColors>;
29
29
  default: CLColors;
30
30
  };
31
+ /** Render text with a font-weight of 300 */
32
+ light: {
33
+ type: BooleanConstructor;
34
+ default: boolean;
35
+ };
36
+ /** Render text with a font-weight of 500 */
37
+ medium: {
38
+ type: BooleanConstructor;
39
+ default: boolean;
40
+ };
31
41
  /** Set the text type. The property can be one of `CLTextTypes`, e.g. `Body`. */
32
42
  type: {
33
43
  type: PropType<CLTextTypes>;
@@ -69,6 +79,16 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
69
79
  type: PropType<CLColors>;
70
80
  default: CLColors;
71
81
  };
82
+ /** Render text with a font-weight of 300 */
83
+ light: {
84
+ type: BooleanConstructor;
85
+ default: boolean;
86
+ };
87
+ /** Render text with a font-weight of 500 */
88
+ medium: {
89
+ type: BooleanConstructor;
90
+ default: boolean;
91
+ };
72
92
  /** Set the text type. The property can be one of `CLTextTypes`, e.g. `Body`. */
73
93
  type: {
74
94
  type: PropType<CLTextTypes>;
@@ -85,7 +105,9 @@ declare const _default: import('vue').DefineComponent<globalThis.ExtractPropType
85
105
  default: boolean;
86
106
  };
87
107
  }>> & Readonly<{}>, {
108
+ medium: boolean;
88
109
  color: CLColors;
110
+ light: boolean;
89
111
  testId: string;
90
112
  type: CLTextTypes;
91
113
  bold: boolean;