Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
domoritz committed Apr 13, 2024
1 parent 91a0c9f commit 85c40a9
Show file tree
Hide file tree
Showing 3 changed files with 808 additions and 972 deletions.
32 changes: 16 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,34 +50,34 @@
"json5": "^2.2.3",
"normalize-path": "^3.0.0",
"safe-stable-stringify": "^2.4.3",
"typescript": "~5.4.2"
"typescript": "~5.4.5"
},
"devDependencies": {
"@auto-it/conventional-commits": "^11.0.4",
"@auto-it/first-time-contributor": "^11.0.4",
"@babel/core": "^7.23.5",
"@babel/preset-env": "^7.23.5",
"@babel/preset-typescript": "^7.23.3",
"@auto-it/conventional-commits": "^11.1.6",
"@auto-it/first-time-contributor": "^11.1.6",
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@types/glob": "^8.1.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/normalize-path": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.13.2",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"auto": "^11.0.4",
"chai": "^5.0.0",
"auto": "^11.1.6",
"chai": "^5.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.1.1",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"vega": "^5.27.0",
"vega-lite": "^5.16.3"
"vega": "^5.28.0",
"vega-lite": "^5.18.0"
},
"scripts": {
"prepublishOnly": "yarn build",
Expand Down
34 changes: 28 additions & 6 deletions test/vega-lite/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8145,6 +8145,14 @@
"description": "The minimum number of samples to take along the extent domain for plotting the density.\n\n__Default value:__ `25`",
"type": "number"
},
"resolve": {
"description": "Indicates how parameters for multiple densities should be resolved. If `\"independent\"`, each density may have its own domain extent and dynamic number of curve sample steps. If `\"shared\"`, the KDE transform will ensure that all densities are defined over a shared domain and curve steps, enabling stacking.\n\n__Default value:__ `\"shared\"`",
"enum": [
"independent",
"shared"
],
"type": "string"
},
"steps": {
"description": "The exact number of samples to take along the extent domain for plotting the density. If specified, overrides both minsteps and maxsteps to set an exact number of uniform samples. Potentially useful in conjunction with a fixed extent to ensure consistent sample points for stacked densities.",
"type": "number"
Expand Down Expand Up @@ -15593,7 +15601,7 @@
"monthdatehoursminutes",
"monthdatehoursminutesseconds",
"weekday",
"weeksdayhours",
"weekdayhours",
"weekdayhoursminutes",
"weekdayhoursminutesseconds",
"dayhours",
Expand Down Expand Up @@ -16749,8 +16757,15 @@
]
},
"clip": {
"description": "Whether a mark be clipped to the enclosing group’s width and height.",
"type": "boolean"
"anyOf": [
{
"type": "boolean"
},
{
"$ref": "#/definitions/ExprRef"
}
],
"description": "Whether a mark be clipped to the enclosing group’s width and height."
},
"color": {
"anyOf": [
Expand Down Expand Up @@ -18300,8 +18315,15 @@
]
},
"clip": {
"description": "Whether a mark be clipped to the enclosing group’s width and height.",
"type": "boolean"
"anyOf": [
{
"type": "boolean"
},
{
"$ref": "#/definitions/ExprRef"
}
],
"description": "Whether a mark be clipped to the enclosing group’s width and height."
},
"color": {
"anyOf": [
Expand Down Expand Up @@ -21935,7 +21957,7 @@
"$ref": "#/definitions/ExprRef"
}
],
"description": "A string indicating a color [scheme](https://vega.github.io/vega-lite/docs/scale.html#scheme) name (e.g., `\"category10\"` or `\"blues\"`) or a [scheme parameter object](https://vega.github.io/vega-lite/docs/scale.html#scheme-params).\n\nDiscrete color schemes may be used with [discrete](https://vega.github.io/vega-lite/docs/scale.html#discrete) or [discretizing](https://vega.github.io/vega-lite/docs/scale.html#discretizing) scales. Continuous color schemes are intended for use with color scales.\n\nFor the full list of supported schemes, please refer to the [Vega Scheme](https://vega.github.io/vega/docs/schemes/#reference) reference."
"description": "A string indicating a color [scheme](https://vega.github.io/vega-lite/docs/scale.html#scheme) name (e.g., `\"category10\"` or `\"blues\"`) or a [scheme parameter object](https://vega.github.io/vega-lite/docs/scale.html#scheme-params).\n\nDiscrete color schemes may be used with [discrete](https://vega.github.io/vega-lite/docs/scale.html#discrete) or [discretizing](https://vega.github.io/vega-lite/docs/scale.html#discretizing) scales. Continuous color schemes are intended for use with color scales.\n\nTo set a custom scheme, instead set the list of values [as the scale range](https://vega.github.io/vega-lite/docs/scale.html#2-setting-the-range-property-to-an-array-of-valid-css-color-strings).\n\nFor the full list of supported schemes, please refer to the [Vega Scheme](https://vega.github.io/vega/docs/schemes/#reference) reference."
},
"type": {
"$ref": "#/definitions/ScaleType",
Expand Down
Loading

0 comments on commit 85c40a9

Please sign in to comment.