@visactor/vchart-schema 1.10.0-alpha.9 → 1.10.0
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 +1 -1
- package/vchart.json +128 -50
package/package.json
CHANGED
package/vchart.json
CHANGED
|
@@ -19722,8 +19722,27 @@
|
|
|
19722
19722
|
},
|
|
19723
19723
|
"IAreaSeriesTheme": {
|
|
19724
19724
|
"properties": {
|
|
19725
|
+
"activePoint": {
|
|
19726
|
+
"default": false,
|
|
19727
|
+
"description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
|
|
19728
|
+
"since": "1.3.0",
|
|
19729
|
+
"type": "boolean"
|
|
19730
|
+
},
|
|
19725
19731
|
"area": {
|
|
19726
|
-
"$ref": "#/definitions/Partial<IMarkTheme<IAreaMarkSpec>>"
|
|
19732
|
+
"$ref": "#/definitions/Partial<IMarkTheme<IAreaMarkSpec>>",
|
|
19733
|
+
"description": "面积图元配置"
|
|
19734
|
+
},
|
|
19735
|
+
"areaLabel": {
|
|
19736
|
+
"allOf": [
|
|
19737
|
+
{
|
|
19738
|
+
"$ref": "#/definitions/Omit<ILabelSpec,\"position\">"
|
|
19739
|
+
},
|
|
19740
|
+
{
|
|
19741
|
+
"typeof": "function"
|
|
19742
|
+
}
|
|
19743
|
+
],
|
|
19744
|
+
"description": "面积图元标签配置",
|
|
19745
|
+
"since": "1.7.0"
|
|
19727
19746
|
},
|
|
19728
19747
|
"label": {
|
|
19729
19748
|
"$ref": "#/definitions/Partial<ILineLikeLabelSpec>"
|
|
@@ -19740,6 +19759,17 @@
|
|
|
19740
19759
|
"typeof": "function"
|
|
19741
19760
|
}
|
|
19742
19761
|
]
|
|
19762
|
+
},
|
|
19763
|
+
"seriesMark": {
|
|
19764
|
+
"default": "'area'",
|
|
19765
|
+
"description": "系列主 mark 类型配置,该配置会影响图例的展示",
|
|
19766
|
+
"enum": [
|
|
19767
|
+
"area",
|
|
19768
|
+
"line",
|
|
19769
|
+
"point"
|
|
19770
|
+
],
|
|
19771
|
+
"since": "1.2.0",
|
|
19772
|
+
"type": "string"
|
|
19743
19773
|
}
|
|
19744
19774
|
},
|
|
19745
19775
|
"type": "object"
|
|
@@ -28056,6 +28086,9 @@
|
|
|
28056
28086
|
"scalePoint": {
|
|
28057
28087
|
"typeof": "function"
|
|
28058
28088
|
},
|
|
28089
|
+
"setClearMatrix": {
|
|
28090
|
+
"typeof": "function"
|
|
28091
|
+
},
|
|
28059
28092
|
"setCommonStyle": {
|
|
28060
28093
|
"typeof": "function"
|
|
28061
28094
|
},
|
|
@@ -28200,6 +28233,7 @@
|
|
|
28200
28233
|
"save",
|
|
28201
28234
|
"scale",
|
|
28202
28235
|
"scalePoint",
|
|
28236
|
+
"setClearMatrix",
|
|
28203
28237
|
"setCommonStyle",
|
|
28204
28238
|
"setLineDash",
|
|
28205
28239
|
"setStrokeStyle",
|
|
@@ -42193,9 +42227,6 @@
|
|
|
42193
42227
|
"combineSubLayer": {
|
|
42194
42228
|
"typeof": "function"
|
|
42195
42229
|
},
|
|
42196
|
-
"combineTo": {
|
|
42197
|
-
"typeof": "function"
|
|
42198
|
-
},
|
|
42199
42230
|
"containNode": {
|
|
42200
42231
|
"typeof": "function"
|
|
42201
42232
|
},
|
|
@@ -42671,7 +42702,6 @@
|
|
|
42671
42702
|
"clearUpdateShapeTag",
|
|
42672
42703
|
"clone",
|
|
42673
42704
|
"combineSubLayer",
|
|
42674
|
-
"combineTo",
|
|
42675
42705
|
"containNode",
|
|
42676
42706
|
"containsPoint",
|
|
42677
42707
|
"count",
|
|
@@ -47835,6 +47865,37 @@
|
|
|
47835
47865
|
],
|
|
47836
47866
|
"type": "object"
|
|
47837
47867
|
},
|
|
47868
|
+
"IMatrixLike": {
|
|
47869
|
+
"properties": {
|
|
47870
|
+
"a": {
|
|
47871
|
+
"type": "number"
|
|
47872
|
+
},
|
|
47873
|
+
"b": {
|
|
47874
|
+
"type": "number"
|
|
47875
|
+
},
|
|
47876
|
+
"c": {
|
|
47877
|
+
"type": "number"
|
|
47878
|
+
},
|
|
47879
|
+
"d": {
|
|
47880
|
+
"type": "number"
|
|
47881
|
+
},
|
|
47882
|
+
"e": {
|
|
47883
|
+
"type": "number"
|
|
47884
|
+
},
|
|
47885
|
+
"f": {
|
|
47886
|
+
"type": "number"
|
|
47887
|
+
}
|
|
47888
|
+
},
|
|
47889
|
+
"required": [
|
|
47890
|
+
"a",
|
|
47891
|
+
"b",
|
|
47892
|
+
"c",
|
|
47893
|
+
"d",
|
|
47894
|
+
"e",
|
|
47895
|
+
"f"
|
|
47896
|
+
],
|
|
47897
|
+
"type": "object"
|
|
47898
|
+
},
|
|
47838
47899
|
"IMediaQueryAction<any>": {
|
|
47839
47900
|
"description": "命中媒体查询条件之后的动作",
|
|
47840
47901
|
"properties": {
|
|
@@ -57484,12 +57545,6 @@
|
|
|
57484
57545
|
"context": {
|
|
57485
57546
|
"$ref": "#/definitions/IContext2d"
|
|
57486
57547
|
},
|
|
57487
|
-
"height": {
|
|
57488
|
-
"type": "number"
|
|
57489
|
-
},
|
|
57490
|
-
"keepMatrix": {
|
|
57491
|
-
"type": "boolean"
|
|
57492
|
-
},
|
|
57493
57548
|
"layer": {
|
|
57494
57549
|
"$ref": "#/definitions/ILayer"
|
|
57495
57550
|
},
|
|
@@ -57502,28 +57557,22 @@
|
|
|
57502
57557
|
"stage": {
|
|
57503
57558
|
"$ref": "#/definitions/IStage"
|
|
57504
57559
|
},
|
|
57560
|
+
"transMatrix": {
|
|
57561
|
+
"$ref": "#/definitions/IMatrixLike"
|
|
57562
|
+
},
|
|
57505
57563
|
"updateBounds": {
|
|
57506
57564
|
"type": "boolean"
|
|
57507
57565
|
},
|
|
57508
|
-
"
|
|
57509
|
-
"
|
|
57510
|
-
},
|
|
57511
|
-
"x": {
|
|
57512
|
-
"type": "number"
|
|
57513
|
-
},
|
|
57514
|
-
"y": {
|
|
57515
|
-
"type": "number"
|
|
57566
|
+
"viewBox": {
|
|
57567
|
+
"$ref": "#/definitions/IBounds"
|
|
57516
57568
|
}
|
|
57517
57569
|
},
|
|
57518
57570
|
"required": [
|
|
57519
|
-
"height",
|
|
57520
57571
|
"layer",
|
|
57521
57572
|
"renderService",
|
|
57522
57573
|
"stage",
|
|
57523
57574
|
"updateBounds",
|
|
57524
|
-
"
|
|
57525
|
-
"x",
|
|
57526
|
-
"y"
|
|
57575
|
+
"viewBox"
|
|
57527
57576
|
],
|
|
57528
57577
|
"type": "object"
|
|
57529
57578
|
},
|
|
@@ -62744,6 +62793,9 @@
|
|
|
62744
62793
|
"parent": {
|
|
62745
62794
|
"$ref": "#/definitions/IStage"
|
|
62746
62795
|
},
|
|
62796
|
+
"pauseRender": {
|
|
62797
|
+
"typeof": "function"
|
|
62798
|
+
},
|
|
62747
62799
|
"pick": {
|
|
62748
62800
|
"typeof": "function"
|
|
62749
62801
|
},
|
|
@@ -62812,6 +62864,9 @@
|
|
|
62812
62864
|
"resizeWindow": {
|
|
62813
62865
|
"typeof": "function"
|
|
62814
62866
|
},
|
|
62867
|
+
"resumeRender": {
|
|
62868
|
+
"typeof": "function"
|
|
62869
|
+
},
|
|
62815
62870
|
"set3dOptions": {
|
|
62816
62871
|
"typeof": "function"
|
|
62817
62872
|
},
|
|
@@ -62960,6 +63015,7 @@
|
|
|
62960
63015
|
"once",
|
|
62961
63016
|
"params",
|
|
62962
63017
|
"parent",
|
|
63018
|
+
"pauseRender",
|
|
62963
63019
|
"pick",
|
|
62964
63020
|
"pluginService",
|
|
62965
63021
|
"release",
|
|
@@ -62977,6 +63033,7 @@
|
|
|
62977
63033
|
"resize",
|
|
62978
63034
|
"resizeView",
|
|
62979
63035
|
"resizeWindow",
|
|
63036
|
+
"resumeRender",
|
|
62980
63037
|
"set3dOptions",
|
|
62981
63038
|
"setAfterRender",
|
|
62982
63039
|
"setAllDescendantsProps",
|
|
@@ -70328,6 +70385,15 @@
|
|
|
70328
70385
|
"getTopLeft": {
|
|
70329
70386
|
"typeof": "function"
|
|
70330
70387
|
},
|
|
70388
|
+
"getViewBox": {
|
|
70389
|
+
"typeof": "function"
|
|
70390
|
+
},
|
|
70391
|
+
"getViewBoxTransform": {
|
|
70392
|
+
"typeof": "function"
|
|
70393
|
+
},
|
|
70394
|
+
"hasSubView": {
|
|
70395
|
+
"typeof": "function"
|
|
70396
|
+
},
|
|
70331
70397
|
"height": {
|
|
70332
70398
|
"type": "number"
|
|
70333
70399
|
},
|
|
@@ -70352,6 +70418,9 @@
|
|
|
70352
70418
|
"onVisibleChange": {
|
|
70353
70419
|
"typeof": "function"
|
|
70354
70420
|
},
|
|
70421
|
+
"pointTransform": {
|
|
70422
|
+
"typeof": "function"
|
|
70423
|
+
},
|
|
70355
70424
|
"release": {
|
|
70356
70425
|
"typeof": "function"
|
|
70357
70426
|
},
|
|
@@ -70374,6 +70443,12 @@
|
|
|
70374
70443
|
"setDpr": {
|
|
70375
70444
|
"typeof": "function"
|
|
70376
70445
|
},
|
|
70446
|
+
"setViewBox": {
|
|
70447
|
+
"typeof": "function"
|
|
70448
|
+
},
|
|
70449
|
+
"setViewBoxTransform": {
|
|
70450
|
+
"typeof": "function"
|
|
70451
|
+
},
|
|
70377
70452
|
"setWindowHandler": {
|
|
70378
70453
|
"typeof": "function"
|
|
70379
70454
|
},
|
|
@@ -70413,6 +70488,9 @@
|
|
|
70413
70488
|
"getImageBuffer",
|
|
70414
70489
|
"getNativeHandler",
|
|
70415
70490
|
"getTopLeft",
|
|
70491
|
+
"getViewBox",
|
|
70492
|
+
"getViewBoxTransform",
|
|
70493
|
+
"hasSubView",
|
|
70416
70494
|
"height",
|
|
70417
70495
|
"hooks",
|
|
70418
70496
|
"isVisible",
|
|
@@ -70421,11 +70499,14 @@
|
|
|
70421
70499
|
"minHeight",
|
|
70422
70500
|
"minWidth",
|
|
70423
70501
|
"onVisibleChange",
|
|
70502
|
+
"pointTransform",
|
|
70424
70503
|
"release",
|
|
70425
70504
|
"removeEventListener",
|
|
70426
70505
|
"resizable",
|
|
70427
70506
|
"resize",
|
|
70428
70507
|
"setDpr",
|
|
70508
|
+
"setViewBox",
|
|
70509
|
+
"setViewBoxTransform",
|
|
70429
70510
|
"setWindowHandler",
|
|
70430
70511
|
"style",
|
|
70431
70512
|
"title",
|
|
@@ -72451,7 +72532,7 @@
|
|
|
72451
72532
|
},
|
|
72452
72533
|
"Map<Function,(...args:any[])=>void>": {
|
|
72453
72534
|
"properties": {
|
|
72454
|
-
"__@toStringTag@
|
|
72535
|
+
"__@toStringTag@12935": {
|
|
72455
72536
|
"type": "string"
|
|
72456
72537
|
},
|
|
72457
72538
|
"size": {
|
|
@@ -72459,14 +72540,14 @@
|
|
|
72459
72540
|
}
|
|
72460
72541
|
},
|
|
72461
72542
|
"required": [
|
|
72462
|
-
"__@toStringTag@
|
|
72543
|
+
"__@toStringTag@12935",
|
|
72463
72544
|
"size"
|
|
72464
72545
|
],
|
|
72465
72546
|
"type": "object"
|
|
72466
72547
|
},
|
|
72467
72548
|
"Map<number,IGraphicPicker>": {
|
|
72468
72549
|
"properties": {
|
|
72469
|
-
"__@toStringTag@
|
|
72550
|
+
"__@toStringTag@12935": {
|
|
72470
72551
|
"type": "string"
|
|
72471
72552
|
},
|
|
72472
72553
|
"size": {
|
|
@@ -72474,14 +72555,14 @@
|
|
|
72474
72555
|
}
|
|
72475
72556
|
},
|
|
72476
72557
|
"required": [
|
|
72477
|
-
"__@toStringTag@
|
|
72558
|
+
"__@toStringTag@12935",
|
|
72478
72559
|
"size"
|
|
72479
72560
|
],
|
|
72480
72561
|
"type": "object"
|
|
72481
72562
|
},
|
|
72482
72563
|
"Map<number,IGraphicRender>": {
|
|
72483
72564
|
"properties": {
|
|
72484
|
-
"__@toStringTag@
|
|
72565
|
+
"__@toStringTag@12935": {
|
|
72485
72566
|
"type": "string"
|
|
72486
72567
|
},
|
|
72487
72568
|
"size": {
|
|
@@ -72489,14 +72570,14 @@
|
|
|
72489
72570
|
}
|
|
72490
72571
|
},
|
|
72491
72572
|
"required": [
|
|
72492
|
-
"__@toStringTag@
|
|
72573
|
+
"__@toStringTag@12935",
|
|
72493
72574
|
"size"
|
|
72494
72575
|
],
|
|
72495
72576
|
"type": "object"
|
|
72496
72577
|
},
|
|
72497
72578
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
72498
72579
|
"properties": {
|
|
72499
|
-
"__@toStringTag@
|
|
72580
|
+
"__@toStringTag@12935": {
|
|
72500
72581
|
"type": "string"
|
|
72501
72582
|
},
|
|
72502
72583
|
"size": {
|
|
@@ -72504,14 +72585,14 @@
|
|
|
72504
72585
|
}
|
|
72505
72586
|
},
|
|
72506
72587
|
"required": [
|
|
72507
|
-
"__@toStringTag@
|
|
72588
|
+
"__@toStringTag@12935",
|
|
72508
72589
|
"size"
|
|
72509
72590
|
],
|
|
72510
72591
|
"type": "object"
|
|
72511
72592
|
},
|
|
72512
72593
|
"Map<string,Map<number,IGraphicRender>>": {
|
|
72513
72594
|
"properties": {
|
|
72514
|
-
"__@toStringTag@
|
|
72595
|
+
"__@toStringTag@12935": {
|
|
72515
72596
|
"type": "string"
|
|
72516
72597
|
},
|
|
72517
72598
|
"size": {
|
|
@@ -72519,14 +72600,14 @@
|
|
|
72519
72600
|
}
|
|
72520
72601
|
},
|
|
72521
72602
|
"required": [
|
|
72522
|
-
"__@toStringTag@
|
|
72603
|
+
"__@toStringTag@12935",
|
|
72523
72604
|
"size"
|
|
72524
72605
|
],
|
|
72525
72606
|
"type": "object"
|
|
72526
72607
|
},
|
|
72527
72608
|
"Map<string,any>": {
|
|
72528
72609
|
"properties": {
|
|
72529
|
-
"__@toStringTag@
|
|
72610
|
+
"__@toStringTag@12935": {
|
|
72530
72611
|
"type": "string"
|
|
72531
72612
|
},
|
|
72532
72613
|
"size": {
|
|
@@ -72534,14 +72615,14 @@
|
|
|
72534
72615
|
}
|
|
72535
72616
|
},
|
|
72536
72617
|
"required": [
|
|
72537
|
-
"__@toStringTag@
|
|
72618
|
+
"__@toStringTag@12935",
|
|
72538
72619
|
"size"
|
|
72539
72620
|
],
|
|
72540
72621
|
"type": "object"
|
|
72541
72622
|
},
|
|
72542
72623
|
"Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
72543
72624
|
"properties": {
|
|
72544
|
-
"__@toStringTag@
|
|
72625
|
+
"__@toStringTag@12935": {
|
|
72545
72626
|
"type": "string"
|
|
72546
72627
|
},
|
|
72547
72628
|
"size": {
|
|
@@ -72549,14 +72630,14 @@
|
|
|
72549
72630
|
}
|
|
72550
72631
|
},
|
|
72551
72632
|
"required": [
|
|
72552
|
-
"__@toStringTag@
|
|
72633
|
+
"__@toStringTag@12935",
|
|
72553
72634
|
"size"
|
|
72554
72635
|
],
|
|
72555
72636
|
"type": "object"
|
|
72556
72637
|
},
|
|
72557
72638
|
"Map<string|HTMLElement,{container:string|HTMLElement;dom:HTMLElement;wrapGroup:HTMLDivElement;}>": {
|
|
72558
72639
|
"properties": {
|
|
72559
|
-
"__@toStringTag@
|
|
72640
|
+
"__@toStringTag@12935": {
|
|
72560
72641
|
"type": "string"
|
|
72561
72642
|
},
|
|
72562
72643
|
"size": {
|
|
@@ -72564,14 +72645,14 @@
|
|
|
72564
72645
|
}
|
|
72565
72646
|
},
|
|
72566
72647
|
"required": [
|
|
72567
|
-
"__@toStringTag@
|
|
72648
|
+
"__@toStringTag@12935",
|
|
72568
72649
|
"size"
|
|
72569
72650
|
],
|
|
72570
72651
|
"type": "object"
|
|
72571
72652
|
},
|
|
72572
72653
|
"Map<string|number,IAnimate>": {
|
|
72573
72654
|
"properties": {
|
|
72574
|
-
"__@toStringTag@
|
|
72655
|
+
"__@toStringTag@12935": {
|
|
72575
72656
|
"type": "string"
|
|
72576
72657
|
},
|
|
72577
72658
|
"size": {
|
|
@@ -72579,7 +72660,7 @@
|
|
|
72579
72660
|
}
|
|
72580
72661
|
},
|
|
72581
72662
|
"required": [
|
|
72582
|
-
"__@toStringTag@
|
|
72663
|
+
"__@toStringTag@12935",
|
|
72583
72664
|
"size"
|
|
72584
72665
|
],
|
|
72585
72666
|
"type": "object"
|
|
@@ -86234,9 +86315,6 @@
|
|
|
86234
86315
|
"poptip": {
|
|
86235
86316
|
"type": "boolean"
|
|
86236
86317
|
},
|
|
86237
|
-
"renderKeepMatrix": {
|
|
86238
|
-
"type": "boolean"
|
|
86239
|
-
},
|
|
86240
86318
|
"renderStyle": {
|
|
86241
86319
|
"type": "string"
|
|
86242
86320
|
},
|
|
@@ -91191,34 +91269,34 @@
|
|
|
91191
91269
|
},
|
|
91192
91270
|
"Promise<FontFaceSet>": {
|
|
91193
91271
|
"properties": {
|
|
91194
|
-
"__@toStringTag@
|
|
91272
|
+
"__@toStringTag@12935": {
|
|
91195
91273
|
"type": "string"
|
|
91196
91274
|
}
|
|
91197
91275
|
},
|
|
91198
91276
|
"required": [
|
|
91199
|
-
"__@toStringTag@
|
|
91277
|
+
"__@toStringTag@12935"
|
|
91200
91278
|
],
|
|
91201
91279
|
"type": "object"
|
|
91202
91280
|
},
|
|
91203
91281
|
"Promise<ServiceWorkerRegistration>": {
|
|
91204
91282
|
"properties": {
|
|
91205
|
-
"__@toStringTag@
|
|
91283
|
+
"__@toStringTag@12935": {
|
|
91206
91284
|
"type": "string"
|
|
91207
91285
|
}
|
|
91208
91286
|
},
|
|
91209
91287
|
"required": [
|
|
91210
|
-
"__@toStringTag@
|
|
91288
|
+
"__@toStringTag@12935"
|
|
91211
91289
|
],
|
|
91212
91290
|
"type": "object"
|
|
91213
91291
|
},
|
|
91214
91292
|
"Promise<any>": {
|
|
91215
91293
|
"properties": {
|
|
91216
|
-
"__@toStringTag@
|
|
91294
|
+
"__@toStringTag@12935": {
|
|
91217
91295
|
"type": "string"
|
|
91218
91296
|
}
|
|
91219
91297
|
},
|
|
91220
91298
|
"required": [
|
|
91221
|
-
"__@toStringTag@
|
|
91299
|
+
"__@toStringTag@12935"
|
|
91222
91300
|
],
|
|
91223
91301
|
"type": "object"
|
|
91224
91302
|
},
|