jderobot-ide-interface 0.2.21 → 0.2.25

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.
@@ -6,7 +6,7 @@ export interface IdeInterfaceStyles {
6
6
  }
7
7
  interface IdeInterfaceProps {
8
8
  commsManager: CommsManager | null;
9
- resetManager: Function;
9
+ connectManager: (desiredState?: string, callback?: () => void) => Promise<void>;
10
10
  project: string;
11
11
  explorers: ExplorerEntry[];
12
12
  api: ExtraApi;
@@ -19,5 +19,5 @@ interface IdeInterfaceProps {
19
19
  baseFile?: Entry;
20
20
  baseUniverse?: string;
21
21
  }
22
- declare const IdeInterface: ({ commsManager, resetManager, project, explorers, api, extraEditors, statusBarComponents, viewers, layout, options, splashIcon, baseFile, baseUniverse, }: IdeInterfaceProps) => JSX.Element;
22
+ declare const IdeInterface: ({ commsManager, connectManager, project, explorers, api, extraEditors, statusBarComponents, viewers, layout, options, splashIcon, baseFile, baseUniverse, }: IdeInterfaceProps) => JSX.Element;
23
23
  export default IdeInterface;
@@ -1,9 +1,9 @@
1
1
  import { CommsManager } from "jderobot-commsmanager";
2
2
  import { StatusBarComponents, ExtraApi } from "Types";
3
- declare const StatusBar: ({ project, commsManager, resetManager, api, baseUniverse, extraComponents, }: {
3
+ declare const StatusBar: ({ project, commsManager, connectManager, api, baseUniverse, extraComponents, }: {
4
4
  project: string;
5
5
  commsManager: CommsManager | null;
6
- resetManager: Function;
6
+ connectManager: (desiredState?: string, callback?: () => void) => Promise<void>;
7
7
  baseUniverse?: string;
8
8
  api: ExtraApi;
9
9
  extraComponents: StatusBarComponents;
@@ -1,8 +1,9 @@
1
1
  import { CommsManager } from "jderobot-commsmanager";
2
- declare const VncViewer: ({ commsManager, isHttps, ip, port, }: {
2
+ declare const VncViewer: ({ commsManager, isHttps, ip, port, message, }: {
3
3
  commsManager: CommsManager | null;
4
4
  isHttps?: boolean;
5
5
  ip?: string;
6
6
  port: number;
7
+ message?: string;
7
8
  }) => JSX.Element;
8
9
  export default VncViewer;
@@ -4,4 +4,8 @@ interface StyledVNCViewerProps {
4
4
  export declare const StyledVNCViewer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledVNCViewerProps>> & string;
5
5
  export declare const StyledVNCViewerLoader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
6
6
  export declare const StyledVNCScreen: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").IframeHTMLAttributes<HTMLIFrameElement>, HTMLIFrameElement>, never>> & string;
7
+ interface StyledVNCMsgProps {
8
+ color?: string;
9
+ }
10
+ export declare const StyledVNCMsg: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, StyledVNCMsgProps>> & string;
7
11
  export {};