oncoprintjs 6.1.2 → 6.1.3
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/.turbo/turbo-build.log +3 -3
- package/dist/index.es.js +46 -10
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +40 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -4243,6 +4243,42 @@ function getNumWebGLVertexes(shape) {
|
|
|
4243
4243
|
return ret;
|
|
4244
4244
|
}
|
|
4245
4245
|
|
|
4246
|
+
/******************************************************************************
|
|
4247
|
+
Copyright (c) Microsoft Corporation.
|
|
4248
|
+
|
|
4249
|
+
Permission to use, copy, modify, and/or distribute this software for any
|
|
4250
|
+
purpose with or without fee is hereby granted.
|
|
4251
|
+
|
|
4252
|
+
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
|
|
4253
|
+
REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
|
|
4254
|
+
AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
4255
|
+
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
|
|
4256
|
+
LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
4257
|
+
OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
4258
|
+
PERFORMANCE OF THIS SOFTWARE.
|
|
4259
|
+
***************************************************************************** */
|
|
4260
|
+
/* global Reflect, Promise, SuppressedError, Symbol, Iterator */
|
|
4261
|
+
|
|
4262
|
+
var extendStatics = function(d, b) {
|
|
4263
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4264
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
4265
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
4266
|
+
return extendStatics(d, b);
|
|
4267
|
+
};
|
|
4268
|
+
|
|
4269
|
+
function __extends(d, b) {
|
|
4270
|
+
if (typeof b !== "function" && b !== null)
|
|
4271
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
4272
|
+
extendStatics(d, b);
|
|
4273
|
+
function __() { this.constructor = d; }
|
|
4274
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
4275
|
+
}
|
|
4276
|
+
|
|
4277
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
4278
|
+
var e = new Error(message);
|
|
4279
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
4280
|
+
};
|
|
4281
|
+
|
|
4246
4282
|
var default_parameter_values = {
|
|
4247
4283
|
width: 100,
|
|
4248
4284
|
height: 100,
|
|
@@ -4447,7 +4483,7 @@ var Shape = /** @class */ (function () {
|
|
|
4447
4483
|
return Shape;
|
|
4448
4484
|
}());
|
|
4449
4485
|
var Rectangle = /** @class */ (function (_super) {
|
|
4450
|
-
|
|
4486
|
+
__extends(Rectangle, _super);
|
|
4451
4487
|
function Rectangle() {
|
|
4452
4488
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
4453
4489
|
}
|
|
@@ -4471,7 +4507,7 @@ var Rectangle = /** @class */ (function (_super) {
|
|
|
4471
4507
|
return Rectangle;
|
|
4472
4508
|
}(Shape));
|
|
4473
4509
|
var Triangle = /** @class */ (function (_super) {
|
|
4474
|
-
|
|
4510
|
+
__extends(Triangle, _super);
|
|
4475
4511
|
function Triangle() {
|
|
4476
4512
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
4477
4513
|
}
|
|
@@ -4497,7 +4533,7 @@ var Triangle = /** @class */ (function (_super) {
|
|
|
4497
4533
|
return Triangle;
|
|
4498
4534
|
}(Shape));
|
|
4499
4535
|
var Ellipse = /** @class */ (function (_super) {
|
|
4500
|
-
|
|
4536
|
+
__extends(Ellipse, _super);
|
|
4501
4537
|
function Ellipse() {
|
|
4502
4538
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
4503
4539
|
}
|
|
@@ -4521,7 +4557,7 @@ var Ellipse = /** @class */ (function (_super) {
|
|
|
4521
4557
|
return Ellipse;
|
|
4522
4558
|
}(Shape));
|
|
4523
4559
|
var Line = /** @class */ (function (_super) {
|
|
4524
|
-
|
|
4560
|
+
__extends(Line, _super);
|
|
4525
4561
|
function Line() {
|
|
4526
4562
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
4527
4563
|
}
|