jderobot-ide-interface 0.2.106 → 0.2.108
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/assets/index.d.ts +1 -0
- package/dist/components/Explorer/file_explorer/MoreActionsMenu.styles.d.ts +3 -4
- package/dist/components/Explorer/file_explorer/TreeNode.styles.d.ts +1 -5
- package/dist/components/Modals/Modal.styles.d.ts +5 -6
- package/dist/main.js +132 -72
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/assets/index.d.ts
CHANGED
|
@@ -22,3 +22,4 @@ export { default as CloseIcon } from '@mui/icons-material/CloseRounded';
|
|
|
22
22
|
export { default as BackIcon } from '@mui/icons-material/ArrowBackRounded';
|
|
23
23
|
export { default as RenameIcon } from '@mui/icons-material/DriveFileRenameOutlineRounded';
|
|
24
24
|
export { default as DeleteIcon } from '@mui/icons-material/DeleteForeverRounded';
|
|
25
|
+
export { default as UploadIcon } from '@mui/icons-material/UploadRounded';
|
|
@@ -3,17 +3,16 @@ interface StyledExplorerExtraMenuBackdropProps {
|
|
|
3
3
|
}
|
|
4
4
|
export declare const StyledExplorerExtraMenuBackdrop: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledExplorerExtraMenuBackdropProps>> & string;
|
|
5
5
|
interface StyledExplorerExtraMenuProps {
|
|
6
|
+
color?: string;
|
|
6
7
|
bgColor?: string;
|
|
8
|
+
hoverColor?: string;
|
|
7
9
|
borderColor?: string;
|
|
8
10
|
roundness?: number;
|
|
9
11
|
top: number;
|
|
10
12
|
left: number;
|
|
11
13
|
}
|
|
12
14
|
export declare const StyledExplorerExtraMenu: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledExplorerExtraMenuProps>> & string;
|
|
13
|
-
|
|
14
|
-
hoverColor?: string;
|
|
15
|
-
}
|
|
16
|
-
export declare const StyledExplorerExtraMenuEntry: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledExplorerExtraMenuEntryProps>> & string;
|
|
15
|
+
export declare const StyledExplorerExtraMenuEntry: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
17
16
|
interface StyledExplorerExtraMenuDividerProps {
|
|
18
17
|
bgColor?: string;
|
|
19
18
|
}
|
|
@@ -12,11 +12,7 @@ interface StyledExplorerItemProps {
|
|
|
12
12
|
depth: number;
|
|
13
13
|
}
|
|
14
14
|
export declare const StyledExplorerItem: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledExplorerItemProps>> & string;
|
|
15
|
-
export declare const
|
|
16
|
-
ref?: ((instance: SVGSVGElement | null) => void) | import("react").RefObject<SVGSVGElement> | null | undefined;
|
|
17
|
-
}, "children" | "style" | "className" | "color" | "fontSize" | "shapeRendering" | "viewBox" | "classes" | "htmlColor" | "inheritViewBox" | "sx" | "titleAccess">, never>> & string & Omit<import("@mui/material/OverridableComponent").OverridableComponent<import("@mui/material/SvgIcon").SvgIconTypeMap<{}, "svg">> & {
|
|
18
|
-
muiName: string;
|
|
19
|
-
}, keyof import("react").Component<any, {}, any>>;
|
|
15
|
+
export declare const StyledExtraIcon: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
|
|
20
16
|
interface StyledExplorerAccentProps {
|
|
21
17
|
color?: string;
|
|
22
18
|
}
|
|
@@ -49,7 +49,8 @@ interface StyledModalImageRowProps {
|
|
|
49
49
|
}
|
|
50
50
|
export declare const StyledModalImageRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalImageRowProps>> & string;
|
|
51
51
|
interface StyledModalButtonDeleteProps {
|
|
52
|
-
|
|
52
|
+
color?: string;
|
|
53
|
+
bg?: string;
|
|
53
54
|
}
|
|
54
55
|
export declare const StyledModalButtonDelete: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, StyledModalButtonDeleteProps>> & string;
|
|
55
56
|
export declare const StyledModalInputRowContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
@@ -82,11 +83,9 @@ export declare const StyledModalActionEntry: import("styled-components/dist/type
|
|
|
82
83
|
}, never>> & string;
|
|
83
84
|
interface StyledModelDropAreaProps {
|
|
84
85
|
text?: string;
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
borderColor?: string;
|
|
89
|
-
hoverBorderColor?: string;
|
|
86
|
+
altText?: string;
|
|
87
|
+
bg?: string;
|
|
88
|
+
altBg?: string;
|
|
90
89
|
roundness?: number;
|
|
91
90
|
active?: boolean;
|
|
92
91
|
}
|