jderobot-ide-interface 0.1.42 → 0.1.43
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.
|
@@ -21,48 +21,17 @@ interface StyledModalErrorProps {
|
|
|
21
21
|
infoBorder?: string;
|
|
22
22
|
warning?: string;
|
|
23
23
|
warningBorder?: string;
|
|
24
|
+
bgColor?: string;
|
|
25
|
+
borderColor?: string;
|
|
26
|
+
roundness?: number;
|
|
24
27
|
}
|
|
25
|
-
export declare const StyledModalError: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<
|
|
26
|
-
id: string;
|
|
27
|
-
isOpen: boolean;
|
|
28
|
-
onClose: Function;
|
|
29
|
-
children: any;
|
|
30
|
-
onSubmit?: (event: any) => void;
|
|
31
|
-
onReset?: (event: any) => void;
|
|
32
|
-
}, StyledModalErrorProps>> & string & Omit<({ id, isOpen, onClose, children, onSubmit, onReset, }: {
|
|
33
|
-
id: string;
|
|
34
|
-
isOpen: boolean;
|
|
35
|
-
onClose: Function;
|
|
36
|
-
children: any;
|
|
37
|
-
onSubmit?: (event: any) => void;
|
|
38
|
-
onReset?: (event: any) => void;
|
|
39
|
-
}) => JSX.Element, keyof import("react").Component<any, {}, any>>;
|
|
28
|
+
export declare const StyledModalError: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, StyledModalErrorProps>> & string;
|
|
40
29
|
interface StyledModalErrorTitlebarProps {
|
|
41
30
|
variant: ErrorVariant;
|
|
42
31
|
color?: string;
|
|
43
32
|
darkColor?: string;
|
|
33
|
+
hoverColor?: string;
|
|
34
|
+
roundness?: number;
|
|
44
35
|
}
|
|
45
|
-
export declare const StyledModalErrorTitlebar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<
|
|
46
|
-
title: string;
|
|
47
|
-
htmlFor: string;
|
|
48
|
-
hasClose: boolean;
|
|
49
|
-
hasBack: boolean;
|
|
50
|
-
handleClose: Function;
|
|
51
|
-
handleBack: Function;
|
|
52
|
-
}, StyledModalErrorTitlebarProps>> & string & Omit<{
|
|
53
|
-
({ title, htmlFor, hasClose, hasBack, handleClose, handleBack, }: {
|
|
54
|
-
title: string;
|
|
55
|
-
htmlFor: string;
|
|
56
|
-
hasClose: boolean;
|
|
57
|
-
hasBack: boolean;
|
|
58
|
-
handleClose: Function;
|
|
59
|
-
handleBack: Function;
|
|
60
|
-
}): JSX.Element;
|
|
61
|
-
defaultProps: {
|
|
62
|
-
hasClose: boolean;
|
|
63
|
-
hasBack: boolean;
|
|
64
|
-
handleClose: () => void;
|
|
65
|
-
handleBack: () => void;
|
|
66
|
-
};
|
|
67
|
-
}, keyof import("react").Component<any, {}, any>>;
|
|
36
|
+
export declare const StyledModalErrorTitlebar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalErrorTitlebarProps>> & string;
|
|
68
37
|
export {};
|