ui-mathilde-web 0.9.1 → 0.9.2

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.
@@ -115,11 +115,15 @@ declare interface CardItem {
115
115
 
116
116
  declare interface CardProps {
117
117
  imageUrl?: string;
118
+ width?: number;
119
+ height?: number;
118
120
  title: string;
119
- description: string;
121
+ description?: string;
120
122
  icon?: React.ComponentType<{
121
123
  size?: number;
122
124
  }>;
125
+ iconPosition?: 'start' | 'center' | 'end';
126
+ imagePosition?: 'ml-auto' | 'mr-auto' | 'mx-auto';
123
127
  }
124
128
 
125
129
  export declare const Checkbox: default_2.FC<CheckboxProps>;
@@ -396,6 +400,8 @@ declare interface ModalProps {
396
400
  onClose: () => void;
397
401
  children: React.ReactNode;
398
402
  width?: string;
403
+ closeOnOverlayClick?: boolean;
404
+ isCloseButtonVisible?: boolean;
399
405
  }
400
406
 
401
407
  export declare const MyDoughnutChart: ({ dataProps }: MyDoughnutChartProps) => JSX_2.Element;