jderobot-ide-interface 0.1.48 → 0.1.50
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/components/Button/Button.stories.d.ts +1 -1
- package/dist/components/IdeInterface/IdeInterface.stories.d.ts +1 -1
- package/dist/components/Modals/DeleteModal.stories.d.ts +1 -1
- package/dist/components/Modals/ErrorModal.stories.d.ts +1 -1
- package/dist/components/Modals/Modal.d.ts +9 -1
- package/dist/components/Modals/Modal.stories.d.ts +1 -1
- package/dist/components/Modals/Modal.styles.d.ts +11 -0
- package/dist/components/Modals/NewFileModal.stories.d.ts +1 -1
- package/dist/components/Modals/NewFolderModal.d.ts +1 -6
- package/dist/components/Modals/UploadModal.stories.d.ts +1 -1
- package/dist/components/Modals/index.d.ts +1 -1
- package/dist/components/VncViewer/VncViewer.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/main.js +2 -2
- package/dist/package.json +5 -6
- package/dist/types/fileTypes.d.ts +7 -6
- package/dist/types/index.d.ts +2 -2
- package/dist/types/modal.d.ts +6 -0
- package/package.json +5 -6
- package/dist/components/Modals/NewFileModal.styles.d.ts +0 -11
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jderobot-ide-interface",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.50",
|
|
4
4
|
"main": "dist/main.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"@babel/preset-env": "^7.27.2",
|
|
24
24
|
"@babel/preset-react": "^7.27.1",
|
|
25
25
|
"@babel/preset-typescript": "^7.27.1",
|
|
26
|
-
"@storybook/addon-docs": "^9.0.
|
|
26
|
+
"@storybook/addon-docs": "^9.0.16",
|
|
27
27
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
28
|
-
"@storybook/react-webpack5": "^9.0.
|
|
28
|
+
"@storybook/react-webpack5": "^9.0.16",
|
|
29
29
|
"@svgr/webpack": "^8.1.0",
|
|
30
30
|
"@types/lodash": "^4.17.17",
|
|
31
31
|
"@types/react": "18.2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"babel-loader": "^10.0.0",
|
|
35
35
|
"file-loader": "^6.2.0",
|
|
36
36
|
"prettier": "^3.5.3",
|
|
37
|
-
"storybook": "^9.0.
|
|
37
|
+
"storybook": "^9.0.16",
|
|
38
38
|
"styled-components": "^6.1.19",
|
|
39
39
|
"ts-loader": "^9.5.2",
|
|
40
40
|
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@monaco-editor/react": "^4.7.0",
|
|
48
|
-
"@storybook/react": "^9.0.12",
|
|
49
48
|
"jderobot-commsmanager": "^1.0.3",
|
|
50
49
|
"jszip": "^3.10.1",
|
|
51
50
|
"lodash": "^4.17.21",
|
|
@@ -57,4 +56,4 @@
|
|
|
57
56
|
"react": "18.2.0",
|
|
58
57
|
"react-dom": "18.2.0"
|
|
59
58
|
}
|
|
60
|
-
}
|
|
59
|
+
}
|
|
@@ -1,13 +1,8 @@
|
|
|
1
|
-
export interface newFileData {
|
|
2
|
-
fileType: string;
|
|
3
|
-
fileName: string;
|
|
4
|
-
templateType: string;
|
|
5
|
-
}
|
|
6
1
|
export interface ExplorerEntry {
|
|
7
2
|
name: string;
|
|
8
3
|
list(project: string): Promise<string>;
|
|
9
4
|
file: {
|
|
10
|
-
create(project: string, location: string,
|
|
5
|
+
create(project: string, location: string, name: string): Promise<void>;
|
|
11
6
|
get(project: string, path: string): Promise<string>;
|
|
12
7
|
rename(project: string, oldPath: string, newPath: string): Promise<void>;
|
|
13
8
|
delete(project: string, path: string): Promise<void>;
|
|
@@ -18,6 +13,12 @@ export interface ExplorerEntry {
|
|
|
18
13
|
rename(project: string, oldPath: string, newPath: string): Promise<void>;
|
|
19
14
|
delete(project: string, path: string): Promise<void>;
|
|
20
15
|
};
|
|
16
|
+
modals?: {
|
|
17
|
+
createFile?: {
|
|
18
|
+
component: any;
|
|
19
|
+
onCreate(project: string, location: string, ...args: any[]): Promise<void>;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
21
22
|
}
|
|
22
23
|
export interface ExtraApi {
|
|
23
24
|
file: {
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export type { Entry,
|
|
1
|
+
export type { Entry, ExplorerEntry, EditorsEntry, ViewersEntry, ExtraApi, Layout, ExtraEditorProps, StatusBarComponents, } from "./fileTypes";
|
|
2
2
|
export type { EventData, AccentColorEventData } from "./events";
|
|
3
3
|
export type { Error } from "./error";
|
|
4
4
|
export { ErrorType } from "./error";
|
|
5
5
|
export type { Options } from "./options";
|
|
6
6
|
export type { Theme } from "./theme";
|
|
7
|
-
export type { ModelRowTypes } from "./modal";
|
|
7
|
+
export type { ModelRowTypes, ModalInputSelectIconEntry } from "./modal";
|
package/dist/types/modal.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jderobot-ide-interface",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.50",
|
|
4
4
|
"main": "dist/main.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"@babel/preset-env": "^7.27.2",
|
|
24
24
|
"@babel/preset-react": "^7.27.1",
|
|
25
25
|
"@babel/preset-typescript": "^7.27.1",
|
|
26
|
-
"@storybook/addon-docs": "^9.0.
|
|
26
|
+
"@storybook/addon-docs": "^9.0.16",
|
|
27
27
|
"@storybook/addon-webpack5-compiler-swc": "^3.0.0",
|
|
28
|
-
"@storybook/react-webpack5": "^9.0.
|
|
28
|
+
"@storybook/react-webpack5": "^9.0.16",
|
|
29
29
|
"@svgr/webpack": "^8.1.0",
|
|
30
30
|
"@types/lodash": "^4.17.17",
|
|
31
31
|
"@types/react": "18.2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"babel-loader": "^10.0.0",
|
|
35
35
|
"file-loader": "^6.2.0",
|
|
36
36
|
"prettier": "^3.5.3",
|
|
37
|
-
"storybook": "^9.0.
|
|
37
|
+
"storybook": "^9.0.16",
|
|
38
38
|
"styled-components": "^6.1.19",
|
|
39
39
|
"ts-loader": "^9.5.2",
|
|
40
40
|
"tsconfig-paths-webpack-plugin": "^4.2.0",
|
|
@@ -45,7 +45,6 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@monaco-editor/react": "^4.7.0",
|
|
48
|
-
"@storybook/react": "^9.0.12",
|
|
49
48
|
"jderobot-commsmanager": "^1.0.3",
|
|
50
49
|
"jszip": "^3.10.1",
|
|
51
50
|
"lodash": "^4.17.21",
|
|
@@ -57,4 +56,4 @@
|
|
|
57
56
|
"react": "18.2.0",
|
|
58
57
|
"react-dom": "18.2.0"
|
|
59
58
|
}
|
|
60
|
-
}
|
|
59
|
+
}
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export declare const StyledModalCardsTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement>, never>> & string;
|
|
2
|
-
export declare const StyledModalCardsContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
|
|
3
|
-
interface StyledModalCardsEntryProps {
|
|
4
|
-
hoverColor?: string;
|
|
5
|
-
selectedColor?: string;
|
|
6
|
-
color?: string;
|
|
7
|
-
roundness?: number;
|
|
8
|
-
active?: boolean;
|
|
9
|
-
}
|
|
10
|
-
export declare const StyledModalCardsEntry: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalCardsEntryProps>> & string;
|
|
11
|
-
export {};
|