jderobot-ide-interface 0.2.20 → 0.2.22

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.
@@ -1,36 +1,23 @@
1
1
  import { ErrorVariant } from "./ErrorModal";
2
- interface StyledModalErrorRowProps {
3
- roundness?: number;
2
+ interface StyledModalErrorProps {
4
3
  variant: ErrorVariant;
5
- errorButtonColor?: string;
6
- errorHoverColor?: string;
7
- infoButtonColor?: string;
8
- infoHoverColor?: string;
9
- warningButtonColor?: string;
10
- warningHoverColor?: string;
4
+ roundness?: number;
11
5
  lightText?: string;
12
6
  darkText?: string;
13
- }
14
- export declare const StyledModalErrorRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalErrorRowProps>> & string;
15
- interface StyledModalErrorProps {
16
- variant: ErrorVariant;
17
7
  error?: string;
18
8
  errorBorder?: string;
9
+ errorButtonColor?: string;
10
+ errorHoverColor?: string;
19
11
  info?: string;
20
12
  infoBorder?: string;
13
+ infoButtonColor?: string;
14
+ infoHoverColor?: string;
21
15
  warning?: string;
22
16
  warningBorder?: string;
23
- bgColor?: string;
24
- borderColor?: string;
25
- roundness?: number;
17
+ warningButtonColor?: string;
18
+ warningHoverColor?: string;
26
19
  }
20
+ export declare const StyledModalErrorRow: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalErrorProps>> & string;
27
21
  export declare const StyledModalError: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").DialogHTMLAttributes<HTMLDialogElement>, HTMLDialogElement>, StyledModalErrorProps>> & string;
28
- interface StyledModalErrorTitlebarProps {
29
- variant: ErrorVariant;
30
- color?: string;
31
- darkColor?: string;
32
- hoverColor?: string;
33
- roundness?: number;
34
- }
35
- export declare const StyledModalErrorTitlebar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalErrorTitlebarProps>> & string;
22
+ export declare const StyledModalErrorTitlebar: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, StyledModalErrorProps>> & string;
36
23
  export {};
@@ -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 {};