jderobot-ide-interface 0.2.34 → 0.2.36
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.
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface StyledModalEditorKeybindProps {
|
|
2
|
+
lightText?: string;
|
|
3
|
+
darkText?: string;
|
|
4
|
+
bg?: string;
|
|
5
|
+
}
|
|
6
|
+
export declare const StyledModalEditorKeybind: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalEditorKeybindProps>> & string;
|
|
7
|
+
export {};
|
|
@@ -7,12 +7,16 @@ export declare const StyledModal: import("styled-components/dist/types").IStyled
|
|
|
7
7
|
export declare const StyledModalContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
8
8
|
interface StyledModalTitlebarProps {
|
|
9
9
|
color?: string;
|
|
10
|
+
altColor?: string;
|
|
11
|
+
bg?: string;
|
|
10
12
|
hoverColor?: string;
|
|
11
13
|
roundness?: number;
|
|
12
14
|
}
|
|
13
15
|
export declare const StyledModalTitlebar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalTitlebarProps>> & string;
|
|
14
16
|
interface StyledModalButtonProps {
|
|
15
17
|
color?: string;
|
|
18
|
+
altColor?: string;
|
|
19
|
+
bg?: string;
|
|
16
20
|
}
|
|
17
21
|
export declare const StyledModalCloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("react").SVGProps<SVGSVGElement> & {
|
|
18
22
|
title?: string;
|