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.
- package/dist/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +7 -1
- package/dist/ui-mathilde-web.js +1321 -1310
- package/dist/ui-mathilde-web.umd.cjs +25 -25
- package/package.json +1 -1
|
@@ -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
|
|
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;
|