ui-mathilde-web 0.11.2 → 0.11.3
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 +11 -6
- package/dist/ui-mathilde-web.js +3884 -3853
- package/dist/ui-mathilde-web.umd.cjs +48 -48
- package/package.json +1 -1
|
@@ -6,6 +6,7 @@ import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
|
6
6
|
import * as React_2 from 'react';
|
|
7
7
|
import { ReactNode } from 'react';
|
|
8
8
|
import { RefAttributes } from 'react';
|
|
9
|
+
import { SweetAlertCustomClass } from 'sweetalert2';
|
|
9
10
|
|
|
10
11
|
export declare const Accordion: default_2.FC<AccordionProps>;
|
|
11
12
|
|
|
@@ -52,18 +53,22 @@ declare interface AlertOptions {
|
|
|
52
53
|
text?: string;
|
|
53
54
|
html?: string;
|
|
54
55
|
icon?: AlertIcon;
|
|
56
|
+
imageUrl?: string;
|
|
57
|
+
imageWidth?: number;
|
|
58
|
+
imageHeight?: number;
|
|
55
59
|
showCancelButton?: boolean;
|
|
56
60
|
confirmButtonText?: string;
|
|
57
61
|
cancelButtonText?: string;
|
|
58
62
|
confirmButtonColor?: string;
|
|
59
63
|
cancelButtonColor?: string;
|
|
60
64
|
timer?: number;
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
timerProgressBar?: boolean;
|
|
66
|
+
allowOutsideClick?: boolean;
|
|
67
|
+
allowEscapeKey?: boolean;
|
|
68
|
+
allowEnterKey?: boolean;
|
|
69
|
+
allowClose?: boolean;
|
|
70
|
+
/** Nombres de clase CSS; SweetAlert2 no aplica objetos de estilo aquí. */
|
|
71
|
+
customClass?: SweetAlertCustomClass;
|
|
67
72
|
}
|
|
68
73
|
|
|
69
74
|
declare interface AlertProps extends AlertOptions {
|