vega-parser
Advanced tools
Comparing version 6.0.1 to 6.0.2
{ | ||
"name": "vega-parser", | ||
"version": "6.0.1", | ||
"version": "6.0.2", | ||
"description": "Parse Vega specifications to runtime dataflows.", | ||
@@ -33,3 +33,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "c9369d7885660a89058ff3efe769abb5da444677" | ||
"gitHead": "8fe8d36961c128df8300e6bc4fe6aac1e537bbe0" | ||
} |
@@ -45,6 +45,6 @@ /** | ||
arc: { | ||
fill: defaultColor, | ||
fill: defaultColor | ||
}, | ||
area: { | ||
fill: defaultColor, | ||
fill: defaultColor | ||
}, | ||
@@ -54,19 +54,19 @@ image: null, | ||
stroke: defaultColor, | ||
strokeWidth: defaultStrokeWidth, | ||
strokeWidth: defaultStrokeWidth | ||
}, | ||
path: { | ||
stroke: defaultColor, | ||
stroke: defaultColor | ||
}, | ||
rect: { | ||
fill: defaultColor, | ||
fill: defaultColor | ||
}, | ||
rule: { | ||
stroke: black, | ||
stroke: black | ||
}, | ||
shape: { | ||
stroke: defaultColor, | ||
stroke: defaultColor | ||
}, | ||
symbol: { | ||
fill: defaultColor, | ||
size: 64, | ||
size: 64 | ||
}, | ||
@@ -76,7 +76,7 @@ text: { | ||
font: defaultFont, | ||
fontSize: 11, | ||
fontSize: 11 | ||
}, | ||
trail: { | ||
fill: defaultColor, | ||
size: defaultStrokeWidth, | ||
size: defaultStrokeWidth | ||
}, | ||
@@ -83,0 +83,0 @@ |
@@ -34,3 +34,3 @@ import {addEncoders, extendEncode} from './encode/util'; | ||
domain: !!_('domain'), | ||
title: spec.title != null, | ||
title: spec.title != null | ||
}; | ||
@@ -118,3 +118,3 @@ dataRef = ref(scope.add(Collect({}, [datum]))); | ||
format: spec.format, | ||
formatType: spec.formatType, | ||
formatType: spec.formatType | ||
}); | ||
@@ -121,0 +121,0 @@ |
@@ -73,3 +73,3 @@ import {ifOrient, ifX} from './axis-util'; | ||
fallback(key, config.axisX, axis, style), | ||
fallback(key, config.axisY, axis, style), | ||
fallback(key, config.axisY, axis, style) | ||
); | ||
@@ -85,3 +85,3 @@ } | ||
fallback(key, config.axisLeft, axis, style), | ||
fallback(key, config.axisRight, axis, style), | ||
fallback(key, config.axisRight, axis, style) | ||
); | ||
@@ -99,2 +99,2 @@ } | ||
return result; | ||
} | ||
} |
@@ -50,7 +50,7 @@ import {getSign, ifTop, ifX, ifY, mult, patch} from './axis-util'; | ||
limit: _('titleLimit'), | ||
lineHeight: _('titleLineHeight'), | ||
lineHeight: _('titleLineHeight') | ||
}, { // require update | ||
align: _('titleAlign'), | ||
angle: _('titleAngle'), | ||
baseline: _('titleBaseline'), | ||
baseline: _('titleBaseline') | ||
}); | ||
@@ -57,0 +57,0 @@ |
@@ -51,3 +51,3 @@ import {GuideTitleStyle, one, zero} from './constants'; | ||
align: _('titleAlign'), | ||
baseline: _('titleBaseline'), | ||
baseline: _('titleBaseline') | ||
}); | ||
@@ -54,0 +54,0 @@ |
@@ -177,3 +177,3 @@ import {addEncoders, extendEncode} from './encode/util'; | ||
format: spec.format, | ||
formatType: spec.formatType, | ||
formatType: spec.formatType | ||
}); | ||
@@ -180,0 +180,0 @@ |
@@ -10,4 +10,4 @@ import role from './role'; | ||
aria: spec.aria, | ||
description: spec.description, | ||
description: spec.description | ||
}; | ||
} |
Sorry, the diff of this file is too big to display
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
7239
289010