jderobot-ide-interface 0.2.89 → 0.2.94
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/IdeInterface/TheoryInterface.d.ts +4 -4
- package/dist/components/IdeInterface/TheoryInterface.stories.d.ts +6 -0
- package/dist/components/IdeInterface/TheoryInterface.styles.d.ts +7 -2
- package/dist/components/Theory/Canvas.d.ts +5 -0
- package/dist/components/Theory/Canvas.styles.d.ts +6 -0
- package/dist/components/Theory/CarouselDisplay.d.ts +8 -0
- package/dist/components/Theory/CarouselDisplay.styles.d.ts +43 -0
- package/dist/components/Theory/Code.d.ts +4 -0
- package/dist/components/Theory/Code.styles.d.ts +8 -0
- package/dist/components/Theory/ComparisonDisplay.d.ts +6 -0
- package/dist/components/Theory/HighlightedSection.d.ts +4 -0
- package/dist/components/Theory/HighlightedSection.styles.d.ts +7 -0
- package/dist/components/Theory/Image.d.ts +7 -0
- package/dist/components/Theory/Image.styles.d.ts +7 -0
- package/dist/components/Theory/ImageRow.d.ts +4 -0
- package/dist/components/Theory/ImageRow.styles.d.ts +1 -0
- package/dist/components/Theory/Link.d.ts +6 -0
- package/dist/components/Theory/Link.styles.d.ts +5 -0
- package/dist/components/Theory/List.d.ts +4 -0
- package/dist/components/Theory/List.styles.d.ts +1 -0
- package/dist/components/Theory/Section.d.ts +6 -0
- package/dist/components/Theory/Section.styles.d.ts +6 -0
- package/dist/components/Theory/Subsection.d.ts +6 -0
- package/dist/components/Theory/Subsection.styles.d.ts +6 -0
- package/dist/components/Theory/Timeline.d.ts +6 -0
- package/dist/components/Theory/Timeline.styles.d.ts +26 -0
- package/dist/components/Theory/TimelineComparison.d.ts +6 -0
- package/dist/components/Theory/TimelineComparison.styles.d.ts +15 -0
- package/dist/components/Theory/YoutubeVideo.d.ts +6 -0
- package/dist/components/Theory/YoutubeVideo.styles.d.ts +7 -0
- package/dist/components/Theory/index.d.ts +14 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/index.d.ts +4 -3
- package/dist/main.js +42606 -28033
- package/dist/package.json +7 -2
- package/dist/types/index.d.ts +1 -0
- package/dist/types/theory.d.ts +22 -0
- 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.
|
|
3
|
+
"version": "0.2.94",
|
|
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",
|
package/dist/types/index.d.ts
CHANGED
|
@@ -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.
|
|
3
|
+
"version": "0.2.94",
|
|
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",
|