Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

vega-typings

Package Overview
Dependencies
Maintainers
4
Versions
131
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vega-typings - npm Package Compare versions

Comparing version 0.11.0 to 0.11.1

4

package.json
{
"name": "vega-typings",
"version": "0.11.0",
"version": "0.11.1",
"description": "Typings for Vega.",

@@ -23,3 +23,3 @@ "types": "types",

},
"gitHead": "8180e8ca9379dec7f1722ce0ebd2aa01083be7b2"
"gitHead": "b460f55b7bdf668e855ed2f00d9c88f4e836dcb9"
}

@@ -25,5 +25,5 @@ import { Vector2, SignalRef, Signal, Vector3 } from '.';

/*
* The type of the projection.
* The type of the projection. The default is `"mercator"`.
*/
type: ProjectionType | SignalRef;
type?: ProjectionType | SignalRef;
/*

@@ -34,5 +34,8 @@ * The clip angle of the projection.

/*
* Sets the projection’s viewport clip extent to the specified bounds in pixels
* The projection’s viewport clip extent to the specified bounds in pixels
*/
clipExtent?: Vector2<Vector2<number | SignalRef>> | SignalRef;
/**
* The projection’s scale factor to the specified value.
*/
scale?: number | SignalRef;

@@ -50,3 +53,6 @@ /*

*/
rotate?: Vector3<number | SignalRef> | SignalRef;
rotate?: Vector2<number | SignalRef> | Vector3<number | SignalRef> | SignalRef;
/**
* The desired parallels of the projection.
*/
parallels?: (number | SignalRef)[] | SignalRef;

@@ -57,2 +63,5 @@ /*

precision?: number | SignalRef;
/**
* The default radius (in pixels) to use when drawing GeoJSON `Point` and `MultiPoint` geometries.
*/
pointRadius?: number | SignalRef;

@@ -74,11 +83,13 @@ /*

/* The following properties are all supported for specific types of projections. Consult the d3-geo-projection library for more information: https://github.com/d3/d3-geo-projection */
coefficient?: number;
distance?: number;
fraction?: number;
lobes?: number;
parallel?: number;
radius?: number;
ratio?: number;
spacing?: number;
tilt?: number;
coefficient?: number | SignalRef;
distance?: number | SignalRef;
fraction?: number | SignalRef;
lobes?: number | SignalRef;
parallel?: number | SignalRef;
radius?: number | SignalRef;
ratio?: number | SignalRef;
spacing?: number | SignalRef;
tilt?: number | SignalRef;
reflectX?: boolean | SignalRef;
reflectY?: boolean | SignalRef;
}

@@ -85,0 +96,0 @@ export interface Projection extends BaseProjection {

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc