jderobot-ide-interface 0.2.139 → 0.2.140

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.
Files changed (33) hide show
  1. package/dist/assets/index.d.ts +20 -18
  2. package/dist/components/Button/Button.styles.d.ts +1 -2
  3. package/dist/components/Explorer/file_explorer/FileIcon.d.ts +2 -1
  4. package/dist/components/Explorer/file_explorer/MoreActionsMenu.styles.d.ts +3 -4
  5. package/dist/components/Explorer/file_explorer/TreeNode.styles.d.ts +6 -16
  6. package/dist/components/IdeInterface/IdeInterface.stories.d.ts +2 -0
  7. package/dist/components/Modals/Modal.styles.d.ts +13 -30
  8. package/dist/components/Modals/UploadModal.d.ts +2 -1
  9. package/dist/components/ResizableLayout/ResizableComponents.d.ts +6 -2
  10. package/dist/components/ResizableLayout/ResizableComponents.styles.d.ts +7 -0
  11. package/dist/components/StatusBar/StatusBar.d.ts +3 -2
  12. package/dist/components/Theory/Canvas.d.ts +2 -2
  13. package/dist/components/Theory/FormulaSection.d.ts +5 -0
  14. package/dist/components/Theory/FormulaSection.styles.d.ts +7 -0
  15. package/dist/components/Theory/HighlightedSection.d.ts +2 -1
  16. package/dist/components/Theory/ImageRow.d.ts +2 -1
  17. package/dist/components/Theory/Link.d.ts +2 -1
  18. package/dist/components/Theory/List.d.ts +2 -1
  19. package/dist/components/Theory/LocalVideo.d.ts +5 -0
  20. package/dist/components/Theory/LocalVideo.styles.d.ts +6 -0
  21. package/dist/components/Theory/Section.d.ts +2 -1
  22. package/dist/components/Theory/Subsection.d.ts +2 -1
  23. package/dist/components/Theory/Subsubsection.d.ts +7 -0
  24. package/dist/components/Theory/Subsubsection.styles.d.ts +6 -0
  25. package/dist/components/Theory/index.d.ts +3 -0
  26. package/dist/index.d.ts +2 -2
  27. package/dist/main.js +28699 -28362
  28. package/dist/package.json +11 -7
  29. package/dist/types/fileTypes.d.ts +2 -0
  30. package/dist/utils/errorProvider.d.ts +2 -1
  31. package/dist/utils/optionsProvider.d.ts +2 -2
  32. package/dist/utils/themeProvider.d.ts +2 -2
  33. package/package.json +5 -4
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jderobot-ide-interface",
3
- "version": "0.2.92",
3
+ "version": "0.2.140",
4
4
  "main": "dist/main.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -17,7 +17,10 @@
17
17
  "lint": "eslint src"
18
18
  },
19
19
  "keywords": [],
20
- "author": "",
20
+ "author": {
21
+ "name": "javizqh",
22
+ "url": "https://github.com/javizqh"
23
+ },
21
24
  "license": "ISC",
22
25
  "description": "",
23
26
  "devDependencies": {
@@ -29,12 +32,11 @@
29
32
  "@storybook/react-webpack5": "^9.1.3",
30
33
  "@svgr/webpack": "^8.1.0",
31
34
  "@types/lodash": "^4.17.17",
32
- "@types/react": "18.2.0",
33
- "@types/react-dom": "18.2.0",
34
35
  "@types/styled-components": "^5.1.34",
35
36
  "@typescript-eslint/eslint-plugin": "^8.46.1",
36
37
  "@typescript-eslint/parser": "^8.46.1",
37
38
  "babel-loader": "^10.0.0",
39
+ "baseline-browser-mapping": "^2.10.10",
38
40
  "eslint": "^9.37.0",
39
41
  "eslint-plugin-react": "^7.37.5",
40
42
  "file-loader": "^6.2.0",
@@ -44,7 +46,6 @@
44
46
  "styled-components": "^6.1.19",
45
47
  "ts-loader": "^9.5.2",
46
48
  "tsconfig-paths-webpack-plugin": "^4.2.0",
47
- "typescript": "^5.9.3",
48
49
  "typescript-eslint": "^8.46.1",
49
50
  "webpack": "^5.99.9",
50
51
  "webpack-bundle-tracker": "^3.2.1",
@@ -57,7 +58,6 @@
57
58
  "@monaco-editor/react": "^4.7.0",
58
59
  "@mui/icons-material": "^7.3.6",
59
60
  "@mui/material": "^7.3.6",
60
- "jderobot-commsmanager": "^1.0.10",
61
61
  "jszip": "^3.10.1",
62
62
  "lodash": "^4.17.21",
63
63
  "monaco-editor": "^0.52.2",
@@ -66,7 +66,11 @@
66
66
  "react-youtube": "^10.1.0"
67
67
  },
68
68
  "peerDependencies": {
69
+ "@types/react": "18.2.0",
70
+ "@types/react-dom": "18.2.0",
71
+ "jderobot-commsmanager": "^1.0.10",
69
72
  "react": "18.2.0",
70
- "react-dom": "18.2.0"
73
+ "react-dom": "18.2.0",
74
+ "typescript": "^5.9.3"
71
75
  }
72
76
  }
@@ -35,6 +35,7 @@ export interface ViewersEntry {
35
35
  icon: JSX.Element;
36
36
  name: string;
37
37
  active: boolean;
38
+ group?: string;
38
39
  activate: React.Dispatch<React.SetStateAction<boolean>>;
39
40
  }
40
41
  export interface Entry {
@@ -43,6 +44,7 @@ export interface Entry {
43
44
  path: string;
44
45
  group: string;
45
46
  access: boolean;
47
+ binary?: boolean;
46
48
  files: Entry[];
47
49
  }
48
50
  export interface ExtraEditorProps {
@@ -1,5 +1,6 @@
1
+ import { ReactNode } from "react";
1
2
  import { Error } from "Types";
2
3
  export declare const ErrorProvider: ({ children }: {
3
- children: any;
4
+ children: ReactNode;
4
5
  }) => JSX.Element;
5
6
  export declare const useError: () => Error;
@@ -1,8 +1,8 @@
1
- import React from "react";
1
+ import { ReactNode } from "react";
2
2
  import { Options } from "Types";
3
3
  interface OptionsProviderProps {
4
4
  options?: Options;
5
- children?: React.ReactNode;
5
+ children: ReactNode;
6
6
  }
7
7
  export declare const useOptions: () => Options;
8
8
  export declare const OptionsProvider: ({ options, children, }: OptionsProviderProps) => JSX.Element;
@@ -1,8 +1,8 @@
1
- import React from "react";
1
+ import { ReactNode } from "react";
2
2
  import { Theme } from "Types";
3
3
  interface ThemeProviderProps {
4
4
  theme: Theme;
5
- children?: React.ReactNode;
5
+ children: ReactNode;
6
6
  }
7
7
  export declare const useTheme: () => Theme;
8
8
  export declare const ThemeProvider: ({ theme, children }: ThemeProviderProps) => JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jderobot-ide-interface",
3
- "version": "0.2.139",
3
+ "version": "0.2.140",
4
4
  "main": "dist/main.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -36,6 +36,7 @@
36
36
  "@typescript-eslint/eslint-plugin": "^8.46.1",
37
37
  "@typescript-eslint/parser": "^8.46.1",
38
38
  "babel-loader": "^10.0.0",
39
+ "baseline-browser-mapping": "^2.10.10",
39
40
  "eslint": "^9.37.0",
40
41
  "eslint-plugin-react": "^7.37.5",
41
42
  "file-loader": "^6.2.0",
@@ -65,11 +66,11 @@
65
66
  "react-youtube": "^10.1.0"
66
67
  },
67
68
  "peerDependencies": {
69
+ "@types/react": "18.2.0",
70
+ "@types/react-dom": "18.2.0",
68
71
  "jderobot-commsmanager": "^1.0.10",
69
72
  "react": "18.2.0",
70
73
  "react-dom": "18.2.0",
71
- "@types/react": "18.2.0",
72
- "typescript": "^5.9.3",
73
- "@types/react-dom": "18.2.0"
74
+ "typescript": "^5.9.3"
74
75
  }
75
76
  }