@visactor/vchart-schema 1.12.2-alpha.2 → 1.12.2-alpha.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/vchart.json +70 -62
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vchart-schema",
|
|
3
|
-
"version": "1.12.2-alpha.
|
|
3
|
+
"version": "1.12.2-alpha.9",
|
|
4
4
|
"description": "The VChart JSON schema file.",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "vchart.json",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"jest-electron": "^0.1.12",
|
|
20
20
|
"ts-jest": "^26.0.0",
|
|
21
21
|
"@types/semver": "7.3.12",
|
|
22
|
-
"@internal/
|
|
23
|
-
"@internal/
|
|
22
|
+
"@internal/ts-config": "0.0.1",
|
|
23
|
+
"@internal/eslint-config": "0.0.1"
|
|
24
24
|
},
|
|
25
25
|
"homepage": "",
|
|
26
26
|
"bugs": "https://github.com/VisActor/VChart/issues",
|
package/vchart.json
CHANGED
|
@@ -271,43 +271,6 @@
|
|
|
271
271
|
],
|
|
272
272
|
"type": "object"
|
|
273
273
|
},
|
|
274
|
-
"AxisBreakProps": {
|
|
275
|
-
"properties": {
|
|
276
|
-
"breakSymbol": {
|
|
277
|
-
"$ref": "#/definitions/BreakSymbol"
|
|
278
|
-
},
|
|
279
|
-
"range": {
|
|
280
|
-
"items": [
|
|
281
|
-
{
|
|
282
|
-
"type": "number"
|
|
283
|
-
},
|
|
284
|
-
{
|
|
285
|
-
"type": "number"
|
|
286
|
-
}
|
|
287
|
-
],
|
|
288
|
-
"maxItems": 2,
|
|
289
|
-
"minItems": 2,
|
|
290
|
-
"type": "array"
|
|
291
|
-
},
|
|
292
|
-
"rawRange": {
|
|
293
|
-
"items": [
|
|
294
|
-
{
|
|
295
|
-
"type": "number"
|
|
296
|
-
},
|
|
297
|
-
{
|
|
298
|
-
"type": "number"
|
|
299
|
-
}
|
|
300
|
-
],
|
|
301
|
-
"maxItems": 2,
|
|
302
|
-
"minItems": 2,
|
|
303
|
-
"type": "array"
|
|
304
|
-
}
|
|
305
|
-
},
|
|
306
|
-
"required": [
|
|
307
|
-
"range"
|
|
308
|
-
],
|
|
309
|
-
"type": "object"
|
|
310
|
-
},
|
|
311
274
|
"AxisLabelOverlap": {
|
|
312
275
|
"properties": {
|
|
313
276
|
"autoHide": {
|
|
@@ -383,6 +346,9 @@
|
|
|
383
346
|
},
|
|
384
347
|
"BreakSymbol": {
|
|
385
348
|
"properties": {
|
|
349
|
+
"angle": {
|
|
350
|
+
"type": "number"
|
|
351
|
+
},
|
|
386
352
|
"style": {
|
|
387
353
|
"$ref": "#/definitions/Partial<ISymbolGraphicAttribute>"
|
|
388
354
|
},
|
|
@@ -25399,6 +25365,12 @@
|
|
|
25399
25365
|
"description": "刷取后是否更新axis/dataZoom范围",
|
|
25400
25366
|
"since": "0.10.0",
|
|
25401
25367
|
"type": "boolean"
|
|
25368
|
+
},
|
|
25369
|
+
"zoomWhenEmpty": {
|
|
25370
|
+
"default": false,
|
|
25371
|
+
"description": "刷取到空数据时, 是否更新axis/dataZoom范围",
|
|
25372
|
+
"since": "1.12.2",
|
|
25373
|
+
"type": "boolean"
|
|
25402
25374
|
}
|
|
25403
25375
|
},
|
|
25404
25376
|
"type": "object"
|
|
@@ -48851,7 +48823,7 @@
|
|
|
48851
48823
|
"ILinearAxisBreakSpec": {
|
|
48852
48824
|
"allOf": [
|
|
48853
48825
|
{
|
|
48854
|
-
"$ref": "#/definitions/AxisBreakProps"
|
|
48826
|
+
"$ref": "#/definitions/Omit<AxisBreakProps,\"rawRange\">"
|
|
48855
48827
|
},
|
|
48856
48828
|
{
|
|
48857
48829
|
"typeof": "function"
|
|
@@ -48861,9 +48833,11 @@
|
|
|
48861
48833
|
"ILinearAxisSpec": {
|
|
48862
48834
|
"properties": {
|
|
48863
48835
|
"breaks": {
|
|
48836
|
+
"description": "轴截断配置,只对笛卡尔坐标系的 linear 轴生效",
|
|
48864
48837
|
"items": {
|
|
48865
48838
|
"$ref": "#/definitions/ILinearAxisBreakSpec"
|
|
48866
48839
|
},
|
|
48840
|
+
"since": "XXXXXXXXX",
|
|
48867
48841
|
"type": "array"
|
|
48868
48842
|
},
|
|
48869
48843
|
"expand": {
|
|
@@ -66931,6 +66905,11 @@
|
|
|
66931
66905
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
66932
66906
|
"description": "null,undefined等非法数据点连接方式。"
|
|
66933
66907
|
},
|
|
66908
|
+
"inverse": {
|
|
66909
|
+
"description": "是否反向",
|
|
66910
|
+
"since": "1.12.2",
|
|
66911
|
+
"type": "boolean"
|
|
66912
|
+
},
|
|
66934
66913
|
"iterations": {
|
|
66935
66914
|
"description": "布局的迭代次数",
|
|
66936
66915
|
"type": "number"
|
|
@@ -67437,6 +67416,11 @@
|
|
|
67437
67416
|
"default": "'break'\n'break'指在该数据点处断开\n'link' 指忽略该点保持连续\n'zero' 指该点默认数值为0\n'ignore' 指不处理",
|
|
67438
67417
|
"description": "null,undefined等非法数据点连接方式。"
|
|
67439
67418
|
},
|
|
67419
|
+
"inverse": {
|
|
67420
|
+
"description": "是否反向",
|
|
67421
|
+
"since": "1.12.2",
|
|
67422
|
+
"type": "boolean"
|
|
67423
|
+
},
|
|
67440
67424
|
"iterations": {
|
|
67441
67425
|
"description": "布局的迭代次数",
|
|
67442
67426
|
"type": "number"
|
|
@@ -81652,7 +81636,7 @@
|
|
|
81652
81636
|
},
|
|
81653
81637
|
"Map<Function,(...args:any[])=>void>": {
|
|
81654
81638
|
"properties": {
|
|
81655
|
-
"__@toStringTag@
|
|
81639
|
+
"__@toStringTag@13925": {
|
|
81656
81640
|
"type": "string"
|
|
81657
81641
|
},
|
|
81658
81642
|
"size": {
|
|
@@ -81660,14 +81644,14 @@
|
|
|
81660
81644
|
}
|
|
81661
81645
|
},
|
|
81662
81646
|
"required": [
|
|
81663
|
-
"__@toStringTag@
|
|
81647
|
+
"__@toStringTag@13925",
|
|
81664
81648
|
"size"
|
|
81665
81649
|
],
|
|
81666
81650
|
"type": "object"
|
|
81667
81651
|
},
|
|
81668
81652
|
"Map<number,IGraphicPicker>": {
|
|
81669
81653
|
"properties": {
|
|
81670
|
-
"__@toStringTag@
|
|
81654
|
+
"__@toStringTag@13925": {
|
|
81671
81655
|
"type": "string"
|
|
81672
81656
|
},
|
|
81673
81657
|
"size": {
|
|
@@ -81675,14 +81659,14 @@
|
|
|
81675
81659
|
}
|
|
81676
81660
|
},
|
|
81677
81661
|
"required": [
|
|
81678
|
-
"__@toStringTag@
|
|
81662
|
+
"__@toStringTag@13925",
|
|
81679
81663
|
"size"
|
|
81680
81664
|
],
|
|
81681
81665
|
"type": "object"
|
|
81682
81666
|
},
|
|
81683
81667
|
"Map<number,IGraphicRender>": {
|
|
81684
81668
|
"properties": {
|
|
81685
|
-
"__@toStringTag@
|
|
81669
|
+
"__@toStringTag@13925": {
|
|
81686
81670
|
"type": "string"
|
|
81687
81671
|
},
|
|
81688
81672
|
"size": {
|
|
@@ -81690,14 +81674,14 @@
|
|
|
81690
81674
|
}
|
|
81691
81675
|
},
|
|
81692
81676
|
"required": [
|
|
81693
|
-
"__@toStringTag@
|
|
81677
|
+
"__@toStringTag@13925",
|
|
81694
81678
|
"size"
|
|
81695
81679
|
],
|
|
81696
81680
|
"type": "object"
|
|
81697
81681
|
},
|
|
81698
81682
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
81699
81683
|
"properties": {
|
|
81700
|
-
"__@toStringTag@
|
|
81684
|
+
"__@toStringTag@13925": {
|
|
81701
81685
|
"type": "string"
|
|
81702
81686
|
},
|
|
81703
81687
|
"size": {
|
|
@@ -81705,14 +81689,14 @@
|
|
|
81705
81689
|
}
|
|
81706
81690
|
},
|
|
81707
81691
|
"required": [
|
|
81708
|
-
"__@toStringTag@
|
|
81692
|
+
"__@toStringTag@13925",
|
|
81709
81693
|
"size"
|
|
81710
81694
|
],
|
|
81711
81695
|
"type": "object"
|
|
81712
81696
|
},
|
|
81713
81697
|
"Map<string,Map<number,IGraphicRender>>": {
|
|
81714
81698
|
"properties": {
|
|
81715
|
-
"__@toStringTag@
|
|
81699
|
+
"__@toStringTag@13925": {
|
|
81716
81700
|
"type": "string"
|
|
81717
81701
|
},
|
|
81718
81702
|
"size": {
|
|
@@ -81720,14 +81704,14 @@
|
|
|
81720
81704
|
}
|
|
81721
81705
|
},
|
|
81722
81706
|
"required": [
|
|
81723
|
-
"__@toStringTag@
|
|
81707
|
+
"__@toStringTag@13925",
|
|
81724
81708
|
"size"
|
|
81725
81709
|
],
|
|
81726
81710
|
"type": "object"
|
|
81727
81711
|
},
|
|
81728
81712
|
"Map<string,any>": {
|
|
81729
81713
|
"properties": {
|
|
81730
|
-
"__@toStringTag@
|
|
81714
|
+
"__@toStringTag@13925": {
|
|
81731
81715
|
"type": "string"
|
|
81732
81716
|
},
|
|
81733
81717
|
"size": {
|
|
@@ -81735,14 +81719,14 @@
|
|
|
81735
81719
|
}
|
|
81736
81720
|
},
|
|
81737
81721
|
"required": [
|
|
81738
|
-
"__@toStringTag@
|
|
81722
|
+
"__@toStringTag@13925",
|
|
81739
81723
|
"size"
|
|
81740
81724
|
],
|
|
81741
81725
|
"type": "object"
|
|
81742
81726
|
},
|
|
81743
81727
|
"Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
81744
81728
|
"properties": {
|
|
81745
|
-
"__@toStringTag@
|
|
81729
|
+
"__@toStringTag@13925": {
|
|
81746
81730
|
"type": "string"
|
|
81747
81731
|
},
|
|
81748
81732
|
"size": {
|
|
@@ -81750,14 +81734,14 @@
|
|
|
81750
81734
|
}
|
|
81751
81735
|
},
|
|
81752
81736
|
"required": [
|
|
81753
|
-
"__@toStringTag@
|
|
81737
|
+
"__@toStringTag@13925",
|
|
81754
81738
|
"size"
|
|
81755
81739
|
],
|
|
81756
81740
|
"type": "object"
|
|
81757
81741
|
},
|
|
81758
81742
|
"Map<string|HTMLElement,{container:string|HTMLElement;dom:any;wrapGroup:any;root?:any;}>": {
|
|
81759
81743
|
"properties": {
|
|
81760
|
-
"__@toStringTag@
|
|
81744
|
+
"__@toStringTag@13925": {
|
|
81761
81745
|
"type": "string"
|
|
81762
81746
|
},
|
|
81763
81747
|
"size": {
|
|
@@ -81765,14 +81749,14 @@
|
|
|
81765
81749
|
}
|
|
81766
81750
|
},
|
|
81767
81751
|
"required": [
|
|
81768
|
-
"__@toStringTag@
|
|
81752
|
+
"__@toStringTag@13925",
|
|
81769
81753
|
"size"
|
|
81770
81754
|
],
|
|
81771
81755
|
"type": "object"
|
|
81772
81756
|
},
|
|
81773
81757
|
"Map<string|number,IAnimate>": {
|
|
81774
81758
|
"properties": {
|
|
81775
|
-
"__@toStringTag@
|
|
81759
|
+
"__@toStringTag@13925": {
|
|
81776
81760
|
"type": "string"
|
|
81777
81761
|
},
|
|
81778
81762
|
"size": {
|
|
@@ -81780,7 +81764,7 @@
|
|
|
81780
81764
|
}
|
|
81781
81765
|
},
|
|
81782
81766
|
"required": [
|
|
81783
|
-
"__@toStringTag@
|
|
81767
|
+
"__@toStringTag@13925",
|
|
81784
81768
|
"size"
|
|
81785
81769
|
],
|
|
81786
81770
|
"type": "object"
|
|
@@ -82217,6 +82201,30 @@
|
|
|
82217
82201
|
],
|
|
82218
82202
|
"type": "object"
|
|
82219
82203
|
},
|
|
82204
|
+
"Omit<AxisBreakProps,\"rawRange\">": {
|
|
82205
|
+
"properties": {
|
|
82206
|
+
"breakSymbol": {
|
|
82207
|
+
"$ref": "#/definitions/BreakSymbol"
|
|
82208
|
+
},
|
|
82209
|
+
"range": {
|
|
82210
|
+
"items": [
|
|
82211
|
+
{
|
|
82212
|
+
"type": "number"
|
|
82213
|
+
},
|
|
82214
|
+
{
|
|
82215
|
+
"type": "number"
|
|
82216
|
+
}
|
|
82217
|
+
],
|
|
82218
|
+
"maxItems": 2,
|
|
82219
|
+
"minItems": 2,
|
|
82220
|
+
"type": "array"
|
|
82221
|
+
}
|
|
82222
|
+
},
|
|
82223
|
+
"required": [
|
|
82224
|
+
"range"
|
|
82225
|
+
],
|
|
82226
|
+
"type": "object"
|
|
82227
|
+
},
|
|
82220
82228
|
"Omit<DiscreteLegendAttrs,\"title\"|\"layout\"|\"items\"|\"item\"|\"pager\">": {
|
|
82221
82229
|
"properties": {
|
|
82222
82230
|
"_debug_bounds": {
|
|
@@ -102661,34 +102669,34 @@
|
|
|
102661
102669
|
},
|
|
102662
102670
|
"Promise<FontFaceSet>": {
|
|
102663
102671
|
"properties": {
|
|
102664
|
-
"__@toStringTag@
|
|
102672
|
+
"__@toStringTag@13925": {
|
|
102665
102673
|
"type": "string"
|
|
102666
102674
|
}
|
|
102667
102675
|
},
|
|
102668
102676
|
"required": [
|
|
102669
|
-
"__@toStringTag@
|
|
102677
|
+
"__@toStringTag@13925"
|
|
102670
102678
|
],
|
|
102671
102679
|
"type": "object"
|
|
102672
102680
|
},
|
|
102673
102681
|
"Promise<ServiceWorkerRegistration>": {
|
|
102674
102682
|
"properties": {
|
|
102675
|
-
"__@toStringTag@
|
|
102683
|
+
"__@toStringTag@13925": {
|
|
102676
102684
|
"type": "string"
|
|
102677
102685
|
}
|
|
102678
102686
|
},
|
|
102679
102687
|
"required": [
|
|
102680
|
-
"__@toStringTag@
|
|
102688
|
+
"__@toStringTag@13925"
|
|
102681
102689
|
],
|
|
102682
102690
|
"type": "object"
|
|
102683
102691
|
},
|
|
102684
102692
|
"Promise<any>": {
|
|
102685
102693
|
"properties": {
|
|
102686
|
-
"__@toStringTag@
|
|
102694
|
+
"__@toStringTag@13925": {
|
|
102687
102695
|
"type": "string"
|
|
102688
102696
|
}
|
|
102689
102697
|
},
|
|
102690
102698
|
"required": [
|
|
102691
|
-
"__@toStringTag@
|
|
102699
|
+
"__@toStringTag@13925"
|
|
102692
102700
|
],
|
|
102693
102701
|
"type": "object"
|
|
102694
102702
|
},
|