ui-mathilde-web 0.1.20 → 0.1.22
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 +19 -2
- package/dist/ui-mathilde-web.js +2926 -2880
- package/dist/ui-mathilde-web.umd.cjs +42 -42
- package/package.json +1 -1
|
@@ -33,6 +33,7 @@ declare interface CardIndicatorProps {
|
|
|
33
33
|
start: number;
|
|
34
34
|
end: number;
|
|
35
35
|
current: number;
|
|
36
|
+
type: string;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
declare interface CardItem {
|
|
@@ -166,7 +167,22 @@ declare interface ModalProps {
|
|
|
166
167
|
width?: string;
|
|
167
168
|
}
|
|
168
169
|
|
|
169
|
-
export declare const MyDoughnutChart: () => JSX_2.Element;
|
|
170
|
+
export declare const MyDoughnutChart: ({ dataProps }: MyDoughnutChartProps) => JSX_2.Element;
|
|
171
|
+
|
|
172
|
+
declare interface MyDoughnutChartProps {
|
|
173
|
+
dataProps: {
|
|
174
|
+
labels: string[];
|
|
175
|
+
datasets: {
|
|
176
|
+
label: string;
|
|
177
|
+
data: number[];
|
|
178
|
+
backgroundColor: string[];
|
|
179
|
+
borderColor: string[];
|
|
180
|
+
borderWidth: number;
|
|
181
|
+
circumference: number;
|
|
182
|
+
rotation: number;
|
|
183
|
+
}[];
|
|
184
|
+
};
|
|
185
|
+
}
|
|
170
186
|
|
|
171
187
|
declare interface Option_2 {
|
|
172
188
|
value: string;
|
|
@@ -188,10 +204,11 @@ declare interface PasswordInputProps extends default_2.InputHTMLAttributes<HTMLI
|
|
|
188
204
|
|
|
189
205
|
export declare const PasswordValidationList: default_2.FC<ValidationListProps>;
|
|
190
206
|
|
|
191
|
-
export declare const ProgressBar: ({ start, end, current, }: {
|
|
207
|
+
export declare const ProgressBar: ({ start, end, current, type }: {
|
|
192
208
|
start: number;
|
|
193
209
|
end: number;
|
|
194
210
|
current: number;
|
|
211
|
+
type: string;
|
|
195
212
|
}) => JSX_2.Element;
|
|
196
213
|
|
|
197
214
|
declare interface QuickRange {
|