jderobot-ide-interface 0.2.93 → 0.2.95
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/ResizableLayout/ResizableComponents.d.ts +0 -1
- package/dist/components/StatusBar/StatusBar.d.ts +3 -2
- package/dist/components/Theory/Link.d.ts +2 -1
- package/dist/index.d.ts +2 -2
- package/dist/main.js +151 -30
- package/dist/package.json +1 -1
- package/dist/types/fileTypes.d.ts +1 -0
- package/package.json +1 -1
|
@@ -42,7 +42,6 @@ export declare const ResizableLayout: ({ baseWidth, maxWidth, showExplorer, layo
|
|
|
42
42
|
children: any[];
|
|
43
43
|
}) => JSX.Element;
|
|
44
44
|
export declare const CollapsableResizableColumn: React.NamedExoticComponent<{
|
|
45
|
-
state: boolean[];
|
|
46
45
|
splashIcon: JSX.Element;
|
|
47
46
|
children: any[];
|
|
48
47
|
}>;
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { CommsManager } from "jderobot-commsmanager";
|
|
2
|
-
import { StatusBarComponents, ExtraApi } from "Types";
|
|
3
|
-
declare const StatusBar: ({ project, commsManager, connectManager, api, baseUniverse, extraComponents, }: {
|
|
2
|
+
import { StatusBarComponents, ExtraApi, ViewersEntry } from "Types";
|
|
3
|
+
declare const StatusBar: ({ project, viewers, commsManager, connectManager, api, baseUniverse, extraComponents, }: {
|
|
4
4
|
project: string;
|
|
5
5
|
commsManager: CommsManager | null;
|
|
6
6
|
connectManager: (desiredState?: string, callback?: () => void) => Promise<void>;
|
|
7
7
|
baseUniverse?: string;
|
|
8
8
|
api: ExtraApi;
|
|
9
|
+
viewers: ViewersEntry[];
|
|
9
10
|
extraComponents: StatusBarComponents;
|
|
10
11
|
}) => JSX.Element;
|
|
11
12
|
export default StatusBar;
|
package/dist/index.d.ts
CHANGED
|
@@ -6,6 +6,6 @@ export { StatusBarCustomUniverseSelector, StyledStatusBarEntry, } from "./compon
|
|
|
6
6
|
export { ProgressBar } from "./components";
|
|
7
7
|
export { Button, MenuButton, MenuButtonStroke, MenuButtonLabel, } from "./components";
|
|
8
8
|
export { Modal, ModalTitlebar, ModalRow, ModalInputBox, ModalInputDropdown, ModalEditableList, ModalInputDropArea, ModalInputSelectIcon, ModalActionList, ModalRowDataText, } from "./components";
|
|
9
|
-
export { HighlightedSection, Code, TheorySection, TheorySubsection, CarouselDisplay, TheoryList, TheoryCanvas, Timeline, ComparisonDisplay, } from "./components";
|
|
9
|
+
export { HighlightedSection, Code, TheorySection, TheorySubsection, CarouselDisplay, TheoryList, TheoryCanvas, Timeline, ComparisonDisplay, TimelineComparison, YoutubeVideo, Image, ImageRow, Link } from "./components";
|
|
10
10
|
export { ThemeProvider, useTheme, OptionsProvider, useOptions, ErrorProvider, useError, contrastSelector, } from "./utils";
|
|
11
|
-
export type { ExtraEditorProps, Layout, Entry, Options, Theme, ExplorerEntry, EditorsEntry, ViewersEntry, ExtraApi, StatusBarComponents, ModelRowTypes, ModalInputSelectIconEntry, ExtraSnippets, Snippet, CarouselData, } from "./types";
|
|
11
|
+
export type { ExtraEditorProps, Layout, Entry, Options, Theme, ExplorerEntry, EditorsEntry, ViewersEntry, ExtraApi, StatusBarComponents, ModelRowTypes, ModalInputSelectIconEntry, ExtraSnippets, Snippet, CarouselData, TimelineComparisonEntry, TimelineEntry, } from "./types";
|