Socket
Socket
Sign inDemoInstall

@antv/g-gesture

Package Overview
Dependencies
1
Maintainers
58
Versions
148
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.14-alpha.0 to 0.0.14

8

dist/packages/g-canvas/src/ContextRegisterPlugin.d.ts

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class ContextRegisterPlugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { ContextRegisterPluginOptions } from './CanvasKitContextService';
export declare class ContextRegisterPlugin implements RendererPlugin {
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options: Partial<ContextRegisterPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class ContextRegisterPlugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class ContextRegisterPlugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import type * as DeviceRenderer from '@antv/g-plugin-device-renderer';
export declare class ContextRegisterPlugin implements RendererPlugin {
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
private rendererPlugin;
name: string;
constructor(rendererPlugin: DeviceRenderer.Plugin);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -1,2 +0,2 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { BlendFactor, BlendMode, BufferFrequencyHint, BufferGeometry, ChannelWriteMask, CompareMode, CullMode, Fog, FogType, Format, FrontFaceMode, GL, Light, Material, Mesh, MipFilterMode, PrimitiveTopology, SamplerFormatKind, ShaderMaterial, StencilOp, TextureDimension, TextureUsage, VertexAttributeBufferIndex, VertexAttributeLocation, VertexBufferFrequency, WrapMode } from '@antv/g-plugin-device-renderer';

@@ -8,7 +8,7 @@ export * from './geometries';

export declare const containerModule: import("@antv/g").SyringeModule;
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { A11yPluginOptions } from './tokens';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options?: Partial<A11yPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,12 +0,12 @@

import type { DisplayObject, RendererPlugin, Syringe } from '@antv/g';
import type { DisplayObject } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { Box2DPluginOptions } from './tokens';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
private container;
constructor(options: Partial<Box2DPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
applyForce(object: DisplayObject, force: [number, number], point: [number, number]): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,8 +0,8 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
export * from './interfaces';
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,2 +0,2 @@

import type { RenderingPlugin, RenderingService } from '@antv/g';
import { RenderingPlugin, RenderingService } from '@antv/g';
/**

@@ -3,0 +3,0 @@ * support 2 modes in rendering:

@@ -1,11 +0,11 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { CanvasRendererPluginOptions } from './tokens';
export * from './shapes/styles';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options?: Partial<CanvasRendererPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,12 +0,12 @@

import type { DataURLOptions, RendererPlugin, Syringe } from '@antv/g';
import type { DataURLOptions } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import type { Canvas, InputRect } from 'canvaskit-wasm';
import { CanvaskitRendererPluginOptions } from './interfaces';
export * from './interfaces';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
private container;
constructor(options?: Partial<CanvaskitRendererPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
playAnimation(name: string, jsonStr: string, bounds?: InputRect, assets?: any): import("canvaskit-wasm").ManagedSkottieAnimation;

@@ -13,0 +13,0 @@ createParticles(jsonStr: string, onFrame?: (canvas: Canvas) => void, assets?: any): import("canvaskit-wasm").Particles;

@@ -1,8 +0,8 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
export declare const containerModule: import("@antv/g").SyringeModule;
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,2 +0,3 @@

import type { DataURLOptions, RendererPlugin, Syringe } from '@antv/g';
import type { DataURLOptions } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import 'regenerator-runtime/runtime';

@@ -21,7 +22,6 @@ import { Renderable3D } from './components/Renderable3D';

export declare const containerModule: import("@antv/g").SyringeModule;
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
name: string;
private container;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
getDevice(): import("./platform").Device;

@@ -28,0 +28,0 @@ loadTexture(src: string | TexImageSource, descriptor?: TextureDescriptor, successCallback?: (t: Texture) => void): Texture;

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { DragndropPluginOptions } from './tokens';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options?: Partial<DragndropPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,9 +0,9 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
export * from './interface';
export * from './Kernel';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,9 +0,9 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { ImagePool } from './ImagePool';
export { ImagePool };
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,12 +0,12 @@

import type { DisplayObject, RendererPlugin, Syringe } from '@antv/g';
import type { DisplayObject } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { MatterJSPluginOptions } from './tokens';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
private container;
constructor(options: Partial<MatterJSPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
applyForce(object: DisplayObject, force: [number, number], point: [number, number]): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,11 +0,11 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
export interface PhysXPluginOptions {
}
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options: Partial<PhysXPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class Plugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,2 +0,2 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { ElementSVG } from './components/ElementSVG';

@@ -10,7 +10,7 @@ export * from './DefaultCreateElementContribution';

export declare const containerModule: import("@antv/g").SyringeModule;
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { WebGLRendererPluginOptions } from './interfaces';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options: Partial<WebGLRendererPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { WebGPUDeviceOptions } from './interfaces';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options?: Partial<WebGPUDeviceOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import { YogaPluginOptions } from './tokens';
export declare class Plugin implements RendererPlugin {
export declare class Plugin extends AbstractRendererPlugin {
private options;
name: string;
constructor(options: Partial<YogaPluginOptions>);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=index.d.ts.map

@@ -1,7 +0,7 @@

import type { RendererPlugin, Syringe } from '@antv/g';
export declare class ContextRegisterPlugin implements RendererPlugin {
import { AbstractRendererPlugin } from '@antv/g';
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
name: string;
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import type * as DeviceRenderer from '@antv/g-plugin-device-renderer';
export declare class ContextRegisterPlugin implements RendererPlugin {
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
private rendererPlugin;
name: string;
constructor(rendererPlugin: DeviceRenderer.Plugin);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -1,10 +0,10 @@

import type { RendererPlugin, Syringe } from '@antv/g';
import { AbstractRendererPlugin } from '@antv/g';
import type * as DeviceRenderer from '@antv/g-plugin-device-renderer';
export declare class ContextRegisterPlugin implements RendererPlugin {
export declare class ContextRegisterPlugin extends AbstractRendererPlugin {
private rendererPlugin;
name: string;
constructor(rendererPlugin: DeviceRenderer.Plugin);
init(container: Syringe.Container): void;
destroy(container: Syringe.Container): void;
init(): void;
destroy(): void;
}
//# sourceMappingURL=ContextRegisterPlugin.d.ts.map

@@ -5,5 +5,12 @@ import type { Syringe } from 'mana-syringe';

name: string;
init: (container: Syringe.Container) => void;
destroy: (container: Syringe.Container) => void;
container: Syringe.Container;
init(): void;
destroy(): void;
}
export declare abstract class AbstractRendererPlugin implements RendererPlugin {
container: Syringe.Container;
abstract name: string;
abstract init(): void;
abstract destroy(): void;
}
export interface IRenderer {

@@ -10,0 +17,0 @@ getConfig: () => RendererConfig;

{
"name": "@antv/g-gesture",
"version": "0.0.14-alpha.0",
"version": "0.0.14",
"description": "G Gesture",

@@ -34,3 +34,3 @@ "keywords": [

"devDependencies": {
"@antv/g-mobile-canvas": "^0.6.0-alpha.0",
"@antv/g-mobile-canvas": "^0.6.0",
"@antv/g-mobile-canvas-element": "^0.5.0-alpha.0"

@@ -41,3 +41,3 @@ },

},
"gitHead": "94fbafea28d1f2910720172b7e45a859c8e3a454"
"gitHead": "5e346e68fda61488806180f03564e4d340ae91c3"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc