@equal-experts/kuat-vue 0.9.2 → 0.10.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.
@@ -3,6 +3,10 @@ import { PrimitiveProps } from 'reka-ui';
3
3
 
4
4
  interface Props extends PrimitiveProps {
5
5
  class?: HTMLAttributes["class"];
6
+ /** Width behavior for the root card container. */
7
+ width?: "default" | "fluid" | "custom";
8
+ /** Used when `width` is `custom`; accepts CSS max-width values. */
9
+ maxWidth?: string | number;
6
10
  /** Optional media; when `null`, the media area is removed (no gap). */
7
11
  imageSrc?: string | null;
8
12
  imageAlt?: string;
@@ -22,16 +26,22 @@ declare function __VLS_template(): {
22
26
  };
23
27
  declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
24
28
  as: string;
29
+ width: string;
30
+ maxWidth: string;
25
31
  imageSrc: null;
26
32
  imageAlt: string;
27
33
  contentText: null;
28
34
  }>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
29
35
  as: string;
36
+ width: string;
37
+ maxWidth: string;
30
38
  imageSrc: null;
31
39
  imageAlt: string;
32
40
  contentText: null;
33
41
  }>>> & Readonly<{}>, {
34
42
  as: import('reka-ui').AsTag | import('vue').Component;
43
+ width: "default" | "fluid" | "custom";
44
+ maxWidth: string | number;
35
45
  imageSrc: string | null;
36
46
  imageAlt: string;
37
47
  contentText: string | null;