Skip to content

Commit ccb516d

Browse files
authored
chore: update deps (#2118)
* chore: update deps * fix dep
1 parent 1f1f2d8 commit ccb516d

File tree

3 files changed

+148
-115
lines changed

3 files changed

+148
-115
lines changed

package.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -61,37 +61,37 @@
6161
"glob": "^11.0.0",
6262
"json5": "^2.2.3",
6363
"normalize-path": "^3.0.0",
64-
"safe-stable-stringify": "^2.4.3",
65-
"tslib": "^2.6.3",
66-
"typescript": "^5.5.2"
64+
"safe-stable-stringify": "^2.5.0",
65+
"tslib": "^2.8.1",
66+
"typescript": "^5.6.3"
6767
},
6868
"devDependencies": {
69-
"@auto-it/conventional-commits": "^11.1.6",
70-
"@auto-it/first-time-contributor": "^11.1.6",
71-
"@babel/core": "^7.24.7",
72-
"@babel/preset-env": "^7.24.7",
73-
"@babel/preset-typescript": "^7.24.7",
74-
"@eslint/js": "^9.6.0",
75-
"@types/eslint": "^9.6.0",
69+
"@auto-it/conventional-commits": "^11.3.0",
70+
"@auto-it/first-time-contributor": "^11.3.0",
71+
"@babel/core": "^7.26.0",
72+
"@babel/preset-env": "^7.26.0",
73+
"@babel/preset-typescript": "^7.26.0",
74+
"@eslint/js": "^9.15.0",
75+
"@types/eslint": "^9.6.1",
7676
"@types/glob": "^8.1.0",
77-
"@types/jest": "^29.5.12",
78-
"@types/node": "^22.0.0",
77+
"@types/jest": "^29.5.14",
78+
"@types/node": "^22.9.0",
7979
"@types/normalize-path": "^3.0.2",
80-
"ajv": "^8.16.0",
80+
"ajv": "^8.17.1",
8181
"ajv-formats": "^3.0.1",
82-
"auto": "^11.1.6",
83-
"chai": "^5.1.1",
82+
"auto": "^11.3.0",
83+
"chai": "^5.1.2",
8484
"cross-env": "^7.0.3",
85-
"eslint": "^9.6.0",
85+
"eslint": "9.14.0",
8686
"eslint-config-prettier": "^9.1.0",
87-
"eslint-plugin-prettier": "^5.1.3",
87+
"eslint-plugin-prettier": "^5.2.1",
8888
"jest": "^29.7.0",
8989
"jest-junit": "^16.0.0",
90-
"prettier": "^3.3.2",
91-
"tsx": "^4.16.0",
92-
"typescript-eslint": "^8.7.0",
90+
"prettier": "^3.3.3",
91+
"tsx": "^4.19.2",
92+
"typescript-eslint": "^8.14.0",
9393
"vega": "^5.30.0",
94-
"vega-lite": "^5.19.0"
94+
"vega-lite": "^5.21.0"
9595
},
9696
"engines": {
9797
"node": ">=18.0.0"

test/vega-lite/schema.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28308,6 +28308,11 @@
2830828308
],
2830928309
"description": "For text marks, the vertical text baseline. One of `\"alphabetic\"` (default), `\"top\"`, `\"middle\"`, `\"bottom\"`, `\"line-top\"`, `\"line-bottom\"`, or an expression reference that provides one of the valid values. The `\"line-top\"` and `\"line-bottom\"` values operate similarly to `\"top\"` and `\"bottom\"`, but are calculated relative to the `lineHeight` rather than `fontSize` alone.\n\nFor range marks, the vertical alignment of the marks. One of `\"top\"`, `\"middle\"`, `\"bottom\"`.\n\n__Note:__ Expression reference is *not* supported for range marks."
2831028310
},
28311+
"binSpacing": {
28312+
"description": "Offset between bars for binned field. The ideal value for this is either 0 (preferred by statisticians) or 1 (Vega-Lite default, D3 example style).\n\n__Default value:__ `1`",
28313+
"minimum": 0,
28314+
"type": "number"
28315+
},
2831128316
"blend": {
2831228317
"anyOf": [
2831328318
{
@@ -28333,6 +28338,11 @@
2833328338
],
2833428339
"description": "Default color.\n\n__Default value:__ <span style=\"color: #4682b4;\">&#9632;</span> `\"#4682b4\"`\n\n__Note:__\n- This property cannot be used in a [style config](https://vega.github.io/vega-lite/docs/mark.html#style-config).\n- The `fill` and `stroke` properties have higher precedence than `color` and will override `color`."
2833528340
},
28341+
"continuousBandSize": {
28342+
"description": "The default size of the bars on continuous scales.\n\n__Default value:__ `5`",
28343+
"minimum": 0,
28344+
"type": "number"
28345+
},
2833628346
"cornerRadius": {
2833728347
"anyOf": [
2833828348
{
@@ -28421,6 +28431,18 @@
2842128431
}
2842228432
]
2842328433
},
28434+
"discreteBandSize": {
28435+
"anyOf": [
28436+
{
28437+
"type": "number"
28438+
},
28439+
{
28440+
"$ref": "#/definitions/RelativeBandSize"
28441+
}
28442+
],
28443+
"description": "The default size of the bars with discrete dimensions. If unspecified, the default size is `step-2`, which provides 2 pixel offset between bars.",
28444+
"minimum": 0
28445+
},
2842428446
"dx": {
2842528447
"anyOf": [
2842628448
{
@@ -28633,6 +28655,17 @@
2863328655
}
2863428656
]
2863528657
},
28658+
"minBandSize": {
28659+
"anyOf": [
28660+
{
28661+
"type": "number"
28662+
},
28663+
{
28664+
"$ref": "#/definitions/ExprRef"
28665+
}
28666+
],
28667+
"description": "The minimum band size for bar and rectangle marks. __Default value:__ `0.25`"
28668+
},
2863628669
"opacity": {
2863728670
"anyOf": [
2863828671
{

0 commit comments

Comments
 (0)