Comparing version 5.3.0-beta.43 to 5.3.0-beta.44
{ | ||
"name": "xterm", | ||
"description": "Full xterm terminal, in your browser", | ||
"version": "5.3.0-beta.43", | ||
"version": "5.3.0-beta.44", | ||
"main": "lib/xterm.js", | ||
@@ -6,0 +6,0 @@ "style": "css/xterm.css", |
@@ -77,4 +77,2 @@ /** | ||
// private _visualBellTimer: number; | ||
public browser: IBrowser = Browser as any; | ||
@@ -150,14 +148,2 @@ | ||
/** | ||
* Creates a new `Terminal` object. | ||
* | ||
* @param options An object containing a set of options, the available options are: | ||
* - `cursorBlink` (boolean): Whether the terminal cursor blinks | ||
* - `cols` (number): The number of columns of the terminal (horizontal size) | ||
* - `rows` (number): The number of rows of the terminal (vertical size) | ||
* | ||
* @public | ||
* @class Xterm Xterm | ||
* @alias module:xterm/src/xterm | ||
*/ | ||
constructor( | ||
@@ -164,0 +150,0 @@ options: Partial<ITerminalOptions> = {} |
@@ -28,9 +28,5 @@ /** | ||
import { EventEmitter, forwardEvent } from 'common/EventEmitter'; | ||
import { ITerminalOptions as IInitializedTerminalOptions } from 'common/services/Services'; | ||
import { IMarker, ITerminalOptions, ScrollSource } from 'common/Types'; | ||
export class Terminal extends CoreTerminal { | ||
// TODO: We should remove options once components adopt optionsService | ||
public get options(): Required<IInitializedTerminalOptions> { return this.optionsService.options; } | ||
private readonly _onBell = this.register(new EventEmitter<void>()); | ||
@@ -47,14 +43,2 @@ public readonly onBell = this._onBell.event; | ||
/** | ||
* Creates a new `Terminal` object. | ||
* | ||
* @param options An object containing a set of options, the available options are: | ||
* - `cursorBlink` (boolean): Whether the terminal cursor blinks | ||
* - `cols` (number): The number of columns of the terminal (horizontal size) | ||
* - `rows` (number): The number of rows of the terminal (vertical size) | ||
* | ||
* @public | ||
* @class Xterm Xterm | ||
* @alias module:xterm/src/xterm | ||
*/ | ||
constructor( | ||
@@ -61,0 +45,0 @@ options: ITerminalOptions = {} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2337278
24359