jderobot-ide-interface 0.2.89 → 0.2.93

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 (38) hide show
  1. package/dist/components/IdeInterface/TheoryInterface.d.ts +4 -4
  2. package/dist/components/IdeInterface/TheoryInterface.stories.d.ts +6 -0
  3. package/dist/components/IdeInterface/TheoryInterface.styles.d.ts +7 -2
  4. package/dist/components/Theory/Canvas.d.ts +5 -0
  5. package/dist/components/Theory/Canvas.styles.d.ts +6 -0
  6. package/dist/components/Theory/CarouselDisplay.d.ts +8 -0
  7. package/dist/components/Theory/CarouselDisplay.styles.d.ts +43 -0
  8. package/dist/components/Theory/Code.d.ts +4 -0
  9. package/dist/components/Theory/Code.styles.d.ts +8 -0
  10. package/dist/components/Theory/ComparisonDisplay.d.ts +6 -0
  11. package/dist/components/Theory/HighlightedSection.d.ts +4 -0
  12. package/dist/components/Theory/HighlightedSection.styles.d.ts +7 -0
  13. package/dist/components/Theory/Image.d.ts +7 -0
  14. package/dist/components/Theory/Image.styles.d.ts +7 -0
  15. package/dist/components/Theory/ImageRow.d.ts +4 -0
  16. package/dist/components/Theory/ImageRow.styles.d.ts +1 -0
  17. package/dist/components/Theory/Link.d.ts +5 -0
  18. package/dist/components/Theory/Link.styles.d.ts +5 -0
  19. package/dist/components/Theory/List.d.ts +4 -0
  20. package/dist/components/Theory/List.styles.d.ts +1 -0
  21. package/dist/components/Theory/Section.d.ts +6 -0
  22. package/dist/components/Theory/Section.styles.d.ts +6 -0
  23. package/dist/components/Theory/Subsection.d.ts +6 -0
  24. package/dist/components/Theory/Subsection.styles.d.ts +6 -0
  25. package/dist/components/Theory/Timeline.d.ts +6 -0
  26. package/dist/components/Theory/Timeline.styles.d.ts +26 -0
  27. package/dist/components/Theory/TimelineComparison.d.ts +6 -0
  28. package/dist/components/Theory/TimelineComparison.styles.d.ts +15 -0
  29. package/dist/components/Theory/YoutubeVideo.d.ts +6 -0
  30. package/dist/components/Theory/YoutubeVideo.styles.d.ts +7 -0
  31. package/dist/components/Theory/index.d.ts +14 -0
  32. package/dist/components/index.d.ts +1 -0
  33. package/dist/index.d.ts +4 -3
  34. package/dist/main.js +42595 -28035
  35. package/dist/package.json +7 -2
  36. package/dist/types/index.d.ts +1 -0
  37. package/dist/types/theory.d.ts +22 -0
  38. package/package.json +7 -2
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jderobot-ide-interface",
3
- "version": "0.2.89",
3
+ "version": "0.2.93",
4
4
  "main": "dist/main.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -52,13 +52,18 @@
52
52
  "webpack-dev-server": "^5.2.2"
53
53
  },
54
54
  "dependencies": {
55
+ "@emotion/react": "^11.14.0",
56
+ "@emotion/styled": "^11.14.1",
55
57
  "@monaco-editor/react": "^4.7.0",
58
+ "@mui/icons-material": "^7.3.6",
59
+ "@mui/material": "^7.3.6",
56
60
  "jderobot-commsmanager": "^1.0.10",
57
61
  "jszip": "^3.10.1",
58
62
  "lodash": "^4.17.21",
59
63
  "monaco-editor": "^0.52.2",
60
64
  "re-resizable": "^6.11.2",
61
- "react-spinners": "^0.17.0"
65
+ "react-spinners": "^0.17.0",
66
+ "react-youtube": "^10.1.0"
62
67
  },
63
68
  "peerDependencies": {
64
69
  "react": "18.2.0",
@@ -6,3 +6,4 @@ export type { Options } from "./options";
6
6
  export type { Theme } from "./theme";
7
7
  export type { ModelRowTypes, ModalInputSelectIconEntry } from "./modal";
8
8
  export type { EditorKeybind, Snippet, ExtraSnippets } from "./editor";
9
+ export type { CarouselData, TimelineComparisonEntry, TimelineEntry, } from "./theory";
@@ -0,0 +1,22 @@
1
+ interface CarouselImage {
2
+ title: string;
3
+ desc: string;
4
+ img: string;
5
+ }
6
+ export interface CarouselData {
7
+ section: string;
8
+ images: CarouselImage[];
9
+ }
10
+ export interface TimelineEntry {
11
+ title: string;
12
+ era?: string;
13
+ desc: string[] | string;
14
+ image: string;
15
+ link?: string;
16
+ type?: string;
17
+ }
18
+ export interface TimelineComparisonEntry {
19
+ title: string;
20
+ timeline: TimelineEntry[];
21
+ }
22
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jderobot-ide-interface",
3
- "version": "0.2.89",
3
+ "version": "0.2.93",
4
4
  "main": "dist/main.js",
5
5
  "typings": "dist/index.d.ts",
6
6
  "files": [
@@ -52,13 +52,18 @@
52
52
  "webpack-dev-server": "^5.2.2"
53
53
  },
54
54
  "dependencies": {
55
+ "@emotion/react": "^11.14.0",
56
+ "@emotion/styled": "^11.14.1",
55
57
  "@monaco-editor/react": "^4.7.0",
58
+ "@mui/icons-material": "^7.3.6",
59
+ "@mui/material": "^7.3.6",
56
60
  "jderobot-commsmanager": "^1.0.10",
57
61
  "jszip": "^3.10.1",
58
62
  "lodash": "^4.17.21",
59
63
  "monaco-editor": "^0.52.2",
60
64
  "re-resizable": "^6.11.2",
61
- "react-spinners": "^0.17.0"
65
+ "react-spinners": "^0.17.0",
66
+ "react-youtube": "^10.1.0"
62
67
  },
63
68
  "peerDependencies": {
64
69
  "react": "18.2.0",