jderobot-ide-interface 0.1.46 → 0.1.48
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,4 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="20" height="20" fill="none" version="1.1" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="m15.514 10h-11.027" fill="none" stroke="current" stroke-linecap="round" stroke-width="2" style="paint-order:fill markers stroke"/>
|
|
4
|
+
</svg>
|
package/dist/assets/index.d.ts
CHANGED
|
@@ -18,3 +18,5 @@ export { ReactComponent as ResetIcon } from "./reset.svg";
|
|
|
18
18
|
export { ReactComponent as RenameIcon } from "./rename.svg";
|
|
19
19
|
export { ReactComponent as SaveIcon } from "./save.svg";
|
|
20
20
|
export { ReactComponent as SplashIcon } from "./logo_jderobot.svg";
|
|
21
|
+
export { ReactComponent as MinusIcon } from "./minus.svg";
|
|
22
|
+
export { ReactComponent as PlusIcon } from "./plus.svg";
|
|
@@ -11,24 +11,28 @@ interface StyledModalTitlebarProps {
|
|
|
11
11
|
roundness?: number;
|
|
12
12
|
}
|
|
13
13
|
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
|
-
interface
|
|
14
|
+
interface StyledModalButtonProps {
|
|
15
15
|
color?: string;
|
|
16
16
|
}
|
|
17
17
|
export declare const StyledModalCloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("react").SVGProps<SVGSVGElement> & {
|
|
18
18
|
title?: string;
|
|
19
19
|
}, "ref"> & {
|
|
20
20
|
ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
21
|
-
},
|
|
21
|
+
}, StyledModalButtonProps>> & string & Omit<import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
22
22
|
title?: string;
|
|
23
23
|
}>, keyof import("react").Component<any, {}, any>>;
|
|
24
|
-
interface StyledModalBackButtonProps {
|
|
25
|
-
color?: string;
|
|
26
|
-
}
|
|
27
24
|
export declare const StyledModalBackButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("react").SVGProps<SVGSVGElement> & {
|
|
28
25
|
title?: string;
|
|
29
26
|
}, "ref"> & {
|
|
30
27
|
ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
31
|
-
},
|
|
28
|
+
}, StyledModalButtonProps>> & string & Omit<import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
29
|
+
title?: string;
|
|
30
|
+
}>, keyof import("react").Component<any, {}, any>>;
|
|
31
|
+
export declare const StyledModalDeleteButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<Omit<import("react").SVGProps<SVGSVGElement> & {
|
|
32
|
+
title?: string;
|
|
33
|
+
}, "ref"> & {
|
|
34
|
+
ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
35
|
+
}, StyledModalButtonProps>> & string & Omit<import("react").FunctionComponent<import("react").SVGProps<SVGSVGElement> & {
|
|
32
36
|
title?: string;
|
|
33
37
|
}>, keyof import("react").Component<any, {}, any>>;
|
|
34
38
|
interface StyledModalRowProps {
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="20" height="20" version="1.1" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
|
|
3
|
+
<path d="m15.514 10h-11.027" fill="none" stroke="current" stroke-linecap="round" stroke-width="2" style="paint-order:fill markers stroke"/>
|
|
4
|
+
<path d="m10 15.514v-11.027" fill="none" stroke="current" stroke-linecap="round" stroke-width="2" style="paint-order:fill markers stroke"/>
|
|
5
|
+
</svg>
|