@antv/g-webgpu
Advanced tools
Comparing version 1.2.1 to 1.2.2
@@ -397,52 +397,9 @@ import { inject, CanvasConfig, singleton, ContextService, setDOMSize, isString, isBrowser, Module, AbstractRenderer } from '@antv/g'; | ||
function _classCallCheck(instance, Constructor) { | ||
if (!(instance instanceof Constructor)) { | ||
throw new TypeError("Cannot call a class as a function"); | ||
} | ||
} | ||
function _inheritsLoose(subClass, superClass) { | ||
subClass.prototype = Object.create(superClass.prototype); | ||
subClass.prototype.constructor = subClass; | ||
function _defineProperties(target, props) { | ||
for (var i = 0; i < props.length; i++) { | ||
var descriptor = props[i]; | ||
descriptor.enumerable = descriptor.enumerable || false; | ||
descriptor.configurable = true; | ||
if ("value" in descriptor) descriptor.writable = true; | ||
Object.defineProperty(target, descriptor.key, descriptor); | ||
} | ||
_setPrototypeOf(subClass, superClass); | ||
} | ||
function _createClass(Constructor, protoProps, staticProps) { | ||
if (protoProps) _defineProperties(Constructor.prototype, protoProps); | ||
if (staticProps) _defineProperties(Constructor, staticProps); | ||
Object.defineProperty(Constructor, "prototype", { | ||
writable: false | ||
}); | ||
return Constructor; | ||
} | ||
function _inherits(subClass, superClass) { | ||
if (typeof superClass !== "function" && superClass !== null) { | ||
throw new TypeError("Super expression must either be null or a function"); | ||
} | ||
subClass.prototype = Object.create(superClass && superClass.prototype, { | ||
constructor: { | ||
value: subClass, | ||
writable: true, | ||
configurable: true | ||
} | ||
}); | ||
Object.defineProperty(subClass, "prototype", { | ||
writable: false | ||
}); | ||
if (superClass) _setPrototypeOf(subClass, superClass); | ||
} | ||
function _getPrototypeOf(o) { | ||
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { | ||
return o.__proto__ || Object.getPrototypeOf(o); | ||
}; | ||
return _getPrototypeOf(o); | ||
} | ||
function _setPrototypeOf(o, p) { | ||
@@ -456,52 +413,2 @@ _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { | ||
function _isNativeReflectConstruct() { | ||
if (typeof Reflect === "undefined" || !Reflect.construct) return false; | ||
if (Reflect.construct.sham) return false; | ||
if (typeof Proxy === "function") return true; | ||
try { | ||
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); | ||
return true; | ||
} catch (e) { | ||
return false; | ||
} | ||
} | ||
function _assertThisInitialized(self) { | ||
if (self === void 0) { | ||
throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); | ||
} | ||
return self; | ||
} | ||
function _possibleConstructorReturn(self, call) { | ||
if (call && (typeof call === "object" || typeof call === "function")) { | ||
return call; | ||
} else if (call !== void 0) { | ||
throw new TypeError("Derived constructors may only return object or undefined"); | ||
} | ||
return _assertThisInitialized(self); | ||
} | ||
function _createSuper(Derived) { | ||
var hasNativeReflectConstruct = _isNativeReflectConstruct(); | ||
return function _createSuperInternal() { | ||
var Super = _getPrototypeOf(Derived), | ||
result; | ||
if (hasNativeReflectConstruct) { | ||
var NewTarget = _getPrototypeOf(this).constructor; | ||
result = Reflect.construct(Super, arguments, NewTarget); | ||
} else { | ||
result = Super.apply(this, arguments); | ||
} | ||
return _possibleConstructorReturn(this, result); | ||
}; | ||
} | ||
/****************************************************************************** | ||
@@ -535,4 +442,2 @@ Copyright (c) Microsoft Corporation. | ||
function WebGLContextService() { | ||
_classCallCheck(this, WebGLContextService); | ||
this.$container = void 0; | ||
@@ -545,110 +450,102 @@ this.$canvas = void 0; | ||
_createClass(WebGLContextService, [{ | ||
key: "init", | ||
value: function () { | ||
var _init = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() { | ||
var _this$canvasConfig, container, canvas, devicePixelRatio, $canvas, dpr; | ||
var _proto = WebGLContextService.prototype; | ||
return _regeneratorRuntime().wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_this$canvasConfig = this.canvasConfig, container = _this$canvasConfig.container, canvas = _this$canvasConfig.canvas, devicePixelRatio = _this$canvasConfig.devicePixelRatio; | ||
_proto.init = /*#__PURE__*/function () { | ||
var _init = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() { | ||
var _this$canvasConfig, container, canvas, devicePixelRatio, $canvas, dpr; | ||
if (canvas) { | ||
this.$canvas = canvas; | ||
return _regeneratorRuntime().wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_this$canvasConfig = this.canvasConfig, container = _this$canvasConfig.container, canvas = _this$canvasConfig.canvas, devicePixelRatio = _this$canvasConfig.devicePixelRatio; | ||
if (container && canvas.parentElement !== container) { | ||
container.appendChild(canvas); | ||
} | ||
if (canvas) { | ||
this.$canvas = canvas; | ||
this.$container = canvas.parentElement; | ||
this.canvasConfig.container = this.$container; | ||
} else if (container) { | ||
// create container | ||
this.$container = isString(container) ? document.getElementById(container) : container; | ||
if (container && canvas.parentElement !== container) { | ||
container.appendChild(canvas); | ||
} | ||
if (this.$container) { | ||
// create canvas | ||
$canvas = document.createElement('canvas'); | ||
this.$container.appendChild($canvas); | ||
this.$container = canvas.parentElement; | ||
this.canvasConfig.container = this.$container; | ||
} else if (container) { | ||
// create container | ||
this.$container = isString(container) ? document.getElementById(container) : container; | ||
if (!this.$container.style.position) { | ||
this.$container.style.position = 'relative'; | ||
} | ||
if (this.$container) { | ||
// create canvas | ||
$canvas = document.createElement('canvas'); | ||
this.$container.appendChild($canvas); | ||
this.$canvas = $canvas; | ||
if (!this.$container.style.position) { | ||
this.$container.style.position = 'relative'; | ||
} | ||
} // use user-defined dpr first | ||
this.$canvas = $canvas; | ||
} | ||
} // use user-defined dpr first | ||
dpr = devicePixelRatio || isBrowser && window.devicePixelRatio || 1; | ||
dpr = dpr >= 1 ? Math.ceil(dpr) : 1; | ||
this.dpr = dpr; | ||
case 5: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
dpr = devicePixelRatio || isBrowser && window.devicePixelRatio || 1; | ||
dpr = dpr >= 1 ? Math.ceil(dpr) : 1; | ||
this.dpr = dpr; | ||
case 5: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
}, _callee, this); | ||
})); | ||
} | ||
}, _callee, this); | ||
})); | ||
function init() { | ||
return _init.apply(this, arguments); | ||
} | ||
function init() { | ||
return _init.apply(this, arguments); | ||
} | ||
return init; | ||
}() | ||
}, { | ||
key: "getDomElement", | ||
value: function getDomElement() { | ||
return this.$canvas; | ||
return init; | ||
}(); | ||
_proto.getDomElement = function getDomElement() { | ||
return this.$canvas; | ||
}; | ||
_proto.getContext = function getContext() { | ||
return this.context; | ||
}; | ||
_proto.getBoundingClientRect = function getBoundingClientRect() { | ||
if (this.$canvas.getBoundingClientRect) { | ||
return this.$canvas.getBoundingClientRect(); | ||
} | ||
}, { | ||
key: "getContext", | ||
value: function getContext() { | ||
return this.context; | ||
} | ||
}, { | ||
key: "getBoundingClientRect", | ||
value: function getBoundingClientRect() { | ||
if (this.$canvas.getBoundingClientRect) { | ||
return this.$canvas.getBoundingClientRect(); | ||
} | ||
} | ||
}, { | ||
key: "destroy", | ||
value: function destroy() { | ||
}; | ||
_proto.destroy = function destroy() { | ||
// @ts-ignore | ||
if (this.$container && this.$canvas && this.$canvas.parentNode) { | ||
// @ts-ignore | ||
if (this.$container && this.$canvas && this.$canvas.parentNode) { | ||
// @ts-ignore | ||
this.$container.removeChild(this.$canvas); | ||
} | ||
this.$container.removeChild(this.$canvas); | ||
} | ||
}, { | ||
key: "resize", | ||
value: function resize(width, height) { | ||
if (this.$canvas) { | ||
var dpr = this.getDPR(); // set canvas width & height | ||
}; | ||
this.$canvas.width = dpr * width; | ||
this.$canvas.height = dpr * height; // set CSS style width & height | ||
_proto.resize = function resize(width, height) { | ||
if (this.$canvas) { | ||
var dpr = this.getDPR(); // set canvas width & height | ||
setDOMSize(this.$canvas, width, height); | ||
} | ||
this.$canvas.width = dpr * width; | ||
this.$canvas.height = dpr * height; // set CSS style width & height | ||
setDOMSize(this.$canvas, width, height); | ||
} | ||
}, { | ||
key: "getDPR", | ||
value: function getDPR() { | ||
return this.dpr; | ||
}; | ||
_proto.getDPR = function getDPR() { | ||
return this.dpr; | ||
}; | ||
_proto.applyCursorStyle = function applyCursorStyle(cursor) { | ||
if (this.$container && this.$container.style) { | ||
this.$container.style.cursor = cursor; | ||
} | ||
}, { | ||
key: "applyCursorStyle", | ||
value: function applyCursorStyle(cursor) { | ||
if (this.$container && this.$container.style) { | ||
this.$container.style.cursor = cursor; | ||
} | ||
} | ||
}]); | ||
}; | ||
@@ -672,19 +569,15 @@ return WebGLContextService; | ||
function ContextRegisterPlugin() { | ||
_classCallCheck(this, ContextRegisterPlugin); | ||
this.name = 'webgpu-context-register'; | ||
} | ||
_createClass(ContextRegisterPlugin, [{ | ||
key: "init", | ||
value: function init(container) { | ||
container.load(containerModule, true); | ||
} | ||
}, { | ||
key: "destroy", | ||
value: function destroy(container) { | ||
container.unload(containerModule); | ||
} | ||
}]); | ||
var _proto = ContextRegisterPlugin.prototype; | ||
_proto.init = function init(container) { | ||
container.load(containerModule, true); | ||
}; | ||
_proto.destroy = function destroy(container) { | ||
container.unload(containerModule); | ||
}; | ||
return ContextRegisterPlugin; | ||
@@ -694,13 +587,9 @@ }(); | ||
var Renderer = /*#__PURE__*/function (_AbstractRenderer) { | ||
_inherits(Renderer, _AbstractRenderer); | ||
_inheritsLoose(Renderer, _AbstractRenderer); | ||
var _super = _createSuper(Renderer); | ||
function Renderer(config) { | ||
var _this; | ||
_classCallCheck(this, Renderer); | ||
_this = _AbstractRenderer.call(this, config) || this; | ||
_this = _super.call(this, config); | ||
_this.registerPlugin(new ContextRegisterPlugin()); | ||
@@ -721,5 +610,5 @@ | ||
return _createClass(Renderer); | ||
return Renderer; | ||
}(AbstractRenderer); | ||
export { Renderer }; |
@@ -418,52 +418,9 @@ 'use strict'; | ||
function _classCallCheck(instance, Constructor) { | ||
if (!(instance instanceof Constructor)) { | ||
throw new TypeError("Cannot call a class as a function"); | ||
} | ||
} | ||
function _inheritsLoose(subClass, superClass) { | ||
subClass.prototype = Object.create(superClass.prototype); | ||
subClass.prototype.constructor = subClass; | ||
function _defineProperties(target, props) { | ||
for (var i = 0; i < props.length; i++) { | ||
var descriptor = props[i]; | ||
descriptor.enumerable = descriptor.enumerable || false; | ||
descriptor.configurable = true; | ||
if ("value" in descriptor) descriptor.writable = true; | ||
Object.defineProperty(target, descriptor.key, descriptor); | ||
} | ||
_setPrototypeOf(subClass, superClass); | ||
} | ||
function _createClass(Constructor, protoProps, staticProps) { | ||
if (protoProps) _defineProperties(Constructor.prototype, protoProps); | ||
if (staticProps) _defineProperties(Constructor, staticProps); | ||
Object.defineProperty(Constructor, "prototype", { | ||
writable: false | ||
}); | ||
return Constructor; | ||
} | ||
function _inherits(subClass, superClass) { | ||
if (typeof superClass !== "function" && superClass !== null) { | ||
throw new TypeError("Super expression must either be null or a function"); | ||
} | ||
subClass.prototype = Object.create(superClass && superClass.prototype, { | ||
constructor: { | ||
value: subClass, | ||
writable: true, | ||
configurable: true | ||
} | ||
}); | ||
Object.defineProperty(subClass, "prototype", { | ||
writable: false | ||
}); | ||
if (superClass) _setPrototypeOf(subClass, superClass); | ||
} | ||
function _getPrototypeOf(o) { | ||
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { | ||
return o.__proto__ || Object.getPrototypeOf(o); | ||
}; | ||
return _getPrototypeOf(o); | ||
} | ||
function _setPrototypeOf(o, p) { | ||
@@ -477,52 +434,2 @@ _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { | ||
function _isNativeReflectConstruct() { | ||
if (typeof Reflect === "undefined" || !Reflect.construct) return false; | ||
if (Reflect.construct.sham) return false; | ||
if (typeof Proxy === "function") return true; | ||
try { | ||
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); | ||
return true; | ||
} catch (e) { | ||
return false; | ||
} | ||
} | ||
function _assertThisInitialized(self) { | ||
if (self === void 0) { | ||
throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); | ||
} | ||
return self; | ||
} | ||
function _possibleConstructorReturn(self, call) { | ||
if (call && (typeof call === "object" || typeof call === "function")) { | ||
return call; | ||
} else if (call !== void 0) { | ||
throw new TypeError("Derived constructors may only return object or undefined"); | ||
} | ||
return _assertThisInitialized(self); | ||
} | ||
function _createSuper(Derived) { | ||
var hasNativeReflectConstruct = _isNativeReflectConstruct(); | ||
return function _createSuperInternal() { | ||
var Super = _getPrototypeOf(Derived), | ||
result; | ||
if (hasNativeReflectConstruct) { | ||
var NewTarget = _getPrototypeOf(this).constructor; | ||
result = Reflect.construct(Super, arguments, NewTarget); | ||
} else { | ||
result = Super.apply(this, arguments); | ||
} | ||
return _possibleConstructorReturn(this, result); | ||
}; | ||
} | ||
/****************************************************************************** | ||
@@ -556,4 +463,2 @@ Copyright (c) Microsoft Corporation. | ||
function WebGLContextService() { | ||
_classCallCheck(this, WebGLContextService); | ||
this.$container = void 0; | ||
@@ -566,110 +471,102 @@ this.$canvas = void 0; | ||
_createClass(WebGLContextService, [{ | ||
key: "init", | ||
value: function () { | ||
var _init = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() { | ||
var _this$canvasConfig, container, canvas, devicePixelRatio, $canvas, dpr; | ||
var _proto = WebGLContextService.prototype; | ||
return _regeneratorRuntime().wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_this$canvasConfig = this.canvasConfig, container = _this$canvasConfig.container, canvas = _this$canvasConfig.canvas, devicePixelRatio = _this$canvasConfig.devicePixelRatio; | ||
_proto.init = /*#__PURE__*/function () { | ||
var _init = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee() { | ||
var _this$canvasConfig, container, canvas, devicePixelRatio, $canvas, dpr; | ||
if (canvas) { | ||
this.$canvas = canvas; | ||
return _regeneratorRuntime().wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_this$canvasConfig = this.canvasConfig, container = _this$canvasConfig.container, canvas = _this$canvasConfig.canvas, devicePixelRatio = _this$canvasConfig.devicePixelRatio; | ||
if (container && canvas.parentElement !== container) { | ||
container.appendChild(canvas); | ||
} | ||
if (canvas) { | ||
this.$canvas = canvas; | ||
this.$container = canvas.parentElement; | ||
this.canvasConfig.container = this.$container; | ||
} else if (container) { | ||
// create container | ||
this.$container = g.isString(container) ? document.getElementById(container) : container; | ||
if (container && canvas.parentElement !== container) { | ||
container.appendChild(canvas); | ||
} | ||
if (this.$container) { | ||
// create canvas | ||
$canvas = document.createElement('canvas'); | ||
this.$container.appendChild($canvas); | ||
this.$container = canvas.parentElement; | ||
this.canvasConfig.container = this.$container; | ||
} else if (container) { | ||
// create container | ||
this.$container = g.isString(container) ? document.getElementById(container) : container; | ||
if (!this.$container.style.position) { | ||
this.$container.style.position = 'relative'; | ||
} | ||
if (this.$container) { | ||
// create canvas | ||
$canvas = document.createElement('canvas'); | ||
this.$container.appendChild($canvas); | ||
this.$canvas = $canvas; | ||
if (!this.$container.style.position) { | ||
this.$container.style.position = 'relative'; | ||
} | ||
} // use user-defined dpr first | ||
this.$canvas = $canvas; | ||
} | ||
} // use user-defined dpr first | ||
dpr = devicePixelRatio || g.isBrowser && window.devicePixelRatio || 1; | ||
dpr = dpr >= 1 ? Math.ceil(dpr) : 1; | ||
this.dpr = dpr; | ||
case 5: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
dpr = devicePixelRatio || g.isBrowser && window.devicePixelRatio || 1; | ||
dpr = dpr >= 1 ? Math.ceil(dpr) : 1; | ||
this.dpr = dpr; | ||
case 5: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
}, _callee, this); | ||
})); | ||
} | ||
}, _callee, this); | ||
})); | ||
function init() { | ||
return _init.apply(this, arguments); | ||
} | ||
function init() { | ||
return _init.apply(this, arguments); | ||
} | ||
return init; | ||
}() | ||
}, { | ||
key: "getDomElement", | ||
value: function getDomElement() { | ||
return this.$canvas; | ||
return init; | ||
}(); | ||
_proto.getDomElement = function getDomElement() { | ||
return this.$canvas; | ||
}; | ||
_proto.getContext = function getContext() { | ||
return this.context; | ||
}; | ||
_proto.getBoundingClientRect = function getBoundingClientRect() { | ||
if (this.$canvas.getBoundingClientRect) { | ||
return this.$canvas.getBoundingClientRect(); | ||
} | ||
}, { | ||
key: "getContext", | ||
value: function getContext() { | ||
return this.context; | ||
} | ||
}, { | ||
key: "getBoundingClientRect", | ||
value: function getBoundingClientRect() { | ||
if (this.$canvas.getBoundingClientRect) { | ||
return this.$canvas.getBoundingClientRect(); | ||
} | ||
} | ||
}, { | ||
key: "destroy", | ||
value: function destroy() { | ||
}; | ||
_proto.destroy = function destroy() { | ||
// @ts-ignore | ||
if (this.$container && this.$canvas && this.$canvas.parentNode) { | ||
// @ts-ignore | ||
if (this.$container && this.$canvas && this.$canvas.parentNode) { | ||
// @ts-ignore | ||
this.$container.removeChild(this.$canvas); | ||
} | ||
this.$container.removeChild(this.$canvas); | ||
} | ||
}, { | ||
key: "resize", | ||
value: function resize(width, height) { | ||
if (this.$canvas) { | ||
var dpr = this.getDPR(); // set canvas width & height | ||
}; | ||
this.$canvas.width = dpr * width; | ||
this.$canvas.height = dpr * height; // set CSS style width & height | ||
_proto.resize = function resize(width, height) { | ||
if (this.$canvas) { | ||
var dpr = this.getDPR(); // set canvas width & height | ||
g.setDOMSize(this.$canvas, width, height); | ||
} | ||
this.$canvas.width = dpr * width; | ||
this.$canvas.height = dpr * height; // set CSS style width & height | ||
g.setDOMSize(this.$canvas, width, height); | ||
} | ||
}, { | ||
key: "getDPR", | ||
value: function getDPR() { | ||
return this.dpr; | ||
}; | ||
_proto.getDPR = function getDPR() { | ||
return this.dpr; | ||
}; | ||
_proto.applyCursorStyle = function applyCursorStyle(cursor) { | ||
if (this.$container && this.$container.style) { | ||
this.$container.style.cursor = cursor; | ||
} | ||
}, { | ||
key: "applyCursorStyle", | ||
value: function applyCursorStyle(cursor) { | ||
if (this.$container && this.$container.style) { | ||
this.$container.style.cursor = cursor; | ||
} | ||
} | ||
}]); | ||
}; | ||
@@ -693,19 +590,15 @@ return WebGLContextService; | ||
function ContextRegisterPlugin() { | ||
_classCallCheck(this, ContextRegisterPlugin); | ||
this.name = 'webgpu-context-register'; | ||
} | ||
_createClass(ContextRegisterPlugin, [{ | ||
key: "init", | ||
value: function init(container) { | ||
container.load(containerModule, true); | ||
} | ||
}, { | ||
key: "destroy", | ||
value: function destroy(container) { | ||
container.unload(containerModule); | ||
} | ||
}]); | ||
var _proto = ContextRegisterPlugin.prototype; | ||
_proto.init = function init(container) { | ||
container.load(containerModule, true); | ||
}; | ||
_proto.destroy = function destroy(container) { | ||
container.unload(containerModule); | ||
}; | ||
return ContextRegisterPlugin; | ||
@@ -715,13 +608,9 @@ }(); | ||
var Renderer = /*#__PURE__*/function (_AbstractRenderer) { | ||
_inherits(Renderer, _AbstractRenderer); | ||
_inheritsLoose(Renderer, _AbstractRenderer); | ||
var _super = _createSuper(Renderer); | ||
function Renderer(config) { | ||
var _this; | ||
_classCallCheck(this, Renderer); | ||
_this = _AbstractRenderer.call(this, config) || this; | ||
_this = _super.call(this, config); | ||
_this.registerPlugin(new ContextRegisterPlugin()); | ||
@@ -742,3 +631,3 @@ | ||
return _createClass(Renderer); | ||
return Renderer; | ||
}(g.AbstractRenderer); | ||
@@ -745,0 +634,0 @@ |
{ | ||
"name": "@antv/g-webgpu", | ||
"version": "1.2.1", | ||
"version": "1.2.2", | ||
"description": "A renderer implemented by WebGPU", | ||
@@ -31,7 +31,7 @@ "keywords": [ | ||
"dependencies": { | ||
"@antv/g-plugin-device-renderer": "^1.2.1", | ||
"@antv/g-plugin-dom-interaction": "^1.2.1", | ||
"@antv/g-plugin-html-renderer": "^1.2.1", | ||
"@antv/g-plugin-image-loader": "^0.1.1", | ||
"@antv/g-plugin-webgpu-device": "^1.2.1" | ||
"@antv/g-plugin-device-renderer": "^1.2.2", | ||
"@antv/g-plugin-dom-interaction": "^1.2.2", | ||
"@antv/g-plugin-html-renderer": "^1.2.2", | ||
"@antv/g-plugin-image-loader": "^0.1.2", | ||
"@antv/g-plugin-webgpu-device": "^1.2.2" | ||
}, | ||
@@ -49,3 +49,3 @@ "devDependencies": { | ||
}, | ||
"gitHead": "90eceace1d9a96e36b20926e853b958c03cf3a67" | ||
"gitHead": "f0d3036ed1439859167f135b8a61c84a415582df" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
1124658
18720