@cmusei/console-forge 0.10.0 → 0.11.0
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.
|
@@ -27,4 +27,9 @@ export interface ConsoleSupportedFeatures {
|
|
|
27
27
|
* of the machine, so we usually have to rely on the protocol-specific service to tell us whether the feature is enabled (see our VNC client, wrapping noVnc, for an example)
|
|
28
28
|
*/
|
|
29
29
|
powerManagement: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Whether the remote console protocol/library supports a "view/read"-only canvas. If it doesn't, we have to do some CSS/JS hacking in the console component, so
|
|
32
|
+
* we prefer the client lib/protocol's implementation if we can get it.
|
|
33
|
+
*/
|
|
34
|
+
viewOnlyMode: boolean;
|
|
30
35
|
}
|