@movable/ui 3.8.1 → 3.9.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.
@@ -6,6 +6,7 @@ export interface InkCardHeaderProps {
6
6
  subheader?: string;
7
7
  adornment?: JSX.Element;
8
8
  titleProps?: TypographyProps;
9
+ avatar?: JSX.Element;
9
10
  onClose?: () => void;
10
11
  }
11
- export declare function InkCardHeader({ checkboxProps, title, size, subheader, adornment, titleProps, onClose, }: InkCardHeaderProps): import("react/jsx-runtime").JSX.Element | null;
12
+ export declare function InkCardHeader({ checkboxProps, title, avatar, size, subheader, adornment, titleProps, onClose, }: InkCardHeaderProps): import("react/jsx-runtime").JSX.Element | null;
package/lib/index.d.ts CHANGED
@@ -323,6 +323,7 @@ declare interface InkCardHeaderProps {
323
323
  subheader?: string;
324
324
  adornment?: JSX.Element;
325
325
  titleProps?: TypographyProps;
326
+ avatar?: JSX.Element;
326
327
  onClose?: () => void;
327
328
  }
328
329