@visactor/vchart-schema 1.11.0-alpha.3 → 1.11.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 +112 -24
package/package.json
CHANGED
package/vchart.json
CHANGED
|
@@ -65859,9 +65859,19 @@
|
|
|
65859
65859
|
"$ref": "#/definitions/DirectionType_1",
|
|
65860
65860
|
"description": "图表布局方向"
|
|
65861
65861
|
},
|
|
65862
|
+
"dropIsolatedNode": {
|
|
65863
|
+
"description": "是否丢弃孤立的节点",
|
|
65864
|
+
"since": "1.11.0",
|
|
65865
|
+
"type": "boolean"
|
|
65866
|
+
},
|
|
65862
65867
|
"emphasis": {
|
|
65863
65868
|
"typeof": "function"
|
|
65864
65869
|
},
|
|
65870
|
+
"equalNodeHeight": {
|
|
65871
|
+
"description": "each node has same height",
|
|
65872
|
+
"since": "1.11.0",
|
|
65873
|
+
"type": "boolean"
|
|
65874
|
+
},
|
|
65865
65875
|
"extensionMark": {
|
|
65866
65876
|
"description": "扩展mark",
|
|
65867
65877
|
"items": {
|
|
@@ -65950,6 +65960,28 @@
|
|
|
65950
65960
|
"$ref": "#/definitions/IMarkSpec<ILinkPathMarkSpec>",
|
|
65951
65961
|
"description": "边配置"
|
|
65952
65962
|
},
|
|
65963
|
+
"linkHeight": {
|
|
65964
|
+
"anyOf": [
|
|
65965
|
+
{
|
|
65966
|
+
"typeof": "function"
|
|
65967
|
+
},
|
|
65968
|
+
{
|
|
65969
|
+
"type": "number"
|
|
65970
|
+
}
|
|
65971
|
+
],
|
|
65972
|
+
"description": "set the height of link",
|
|
65973
|
+
"since": "1.11.0"
|
|
65974
|
+
},
|
|
65975
|
+
"linkOverlap": {
|
|
65976
|
+
"description": "the layout type of link",
|
|
65977
|
+
"enum": [
|
|
65978
|
+
"center",
|
|
65979
|
+
"end",
|
|
65980
|
+
"start"
|
|
65981
|
+
],
|
|
65982
|
+
"since": "1.11.0",
|
|
65983
|
+
"type": "string"
|
|
65984
|
+
},
|
|
65953
65985
|
"linkSortBy": {
|
|
65954
65986
|
"typeof": "function"
|
|
65955
65987
|
},
|
|
@@ -66009,6 +66041,18 @@
|
|
|
66009
66041
|
"description": "同一层中两个节点之间的间隙大小",
|
|
66010
66042
|
"type": "number"
|
|
66011
66043
|
},
|
|
66044
|
+
"nodeHeight": {
|
|
66045
|
+
"anyOf": [
|
|
66046
|
+
{
|
|
66047
|
+
"typeof": "function"
|
|
66048
|
+
},
|
|
66049
|
+
{
|
|
66050
|
+
"type": "number"
|
|
66051
|
+
}
|
|
66052
|
+
],
|
|
66053
|
+
"description": "set the height of node",
|
|
66054
|
+
"since": "1.11.0"
|
|
66055
|
+
},
|
|
66012
66056
|
"nodeKey": {
|
|
66013
66057
|
"anyOf": [
|
|
66014
66058
|
{
|
|
@@ -66301,9 +66345,19 @@
|
|
|
66301
66345
|
"$ref": "#/definitions/DirectionType_1",
|
|
66302
66346
|
"description": "图表布局方向"
|
|
66303
66347
|
},
|
|
66348
|
+
"dropIsolatedNode": {
|
|
66349
|
+
"description": "是否丢弃孤立的节点",
|
|
66350
|
+
"since": "1.11.0",
|
|
66351
|
+
"type": "boolean"
|
|
66352
|
+
},
|
|
66304
66353
|
"emphasis": {
|
|
66305
66354
|
"typeof": "function"
|
|
66306
66355
|
},
|
|
66356
|
+
"equalNodeHeight": {
|
|
66357
|
+
"description": "each node has same height",
|
|
66358
|
+
"since": "1.11.0",
|
|
66359
|
+
"type": "boolean"
|
|
66360
|
+
},
|
|
66307
66361
|
"extensionMark": {
|
|
66308
66362
|
"description": "扩展mark",
|
|
66309
66363
|
"items": {
|
|
@@ -66362,6 +66416,28 @@
|
|
|
66362
66416
|
"$ref": "#/definitions/IMarkSpec<ILinkPathMarkSpec>",
|
|
66363
66417
|
"description": "边配置"
|
|
66364
66418
|
},
|
|
66419
|
+
"linkHeight": {
|
|
66420
|
+
"anyOf": [
|
|
66421
|
+
{
|
|
66422
|
+
"typeof": "function"
|
|
66423
|
+
},
|
|
66424
|
+
{
|
|
66425
|
+
"type": "number"
|
|
66426
|
+
}
|
|
66427
|
+
],
|
|
66428
|
+
"description": "set the height of link",
|
|
66429
|
+
"since": "1.11.0"
|
|
66430
|
+
},
|
|
66431
|
+
"linkOverlap": {
|
|
66432
|
+
"description": "the layout type of link",
|
|
66433
|
+
"enum": [
|
|
66434
|
+
"center",
|
|
66435
|
+
"end",
|
|
66436
|
+
"start"
|
|
66437
|
+
],
|
|
66438
|
+
"since": "1.11.0",
|
|
66439
|
+
"type": "string"
|
|
66440
|
+
},
|
|
66365
66441
|
"linkSortBy": {
|
|
66366
66442
|
"typeof": "function"
|
|
66367
66443
|
},
|
|
@@ -66417,6 +66493,18 @@
|
|
|
66417
66493
|
"description": "同一层中两个节点之间的间隙大小",
|
|
66418
66494
|
"type": "number"
|
|
66419
66495
|
},
|
|
66496
|
+
"nodeHeight": {
|
|
66497
|
+
"anyOf": [
|
|
66498
|
+
{
|
|
66499
|
+
"typeof": "function"
|
|
66500
|
+
},
|
|
66501
|
+
{
|
|
66502
|
+
"type": "number"
|
|
66503
|
+
}
|
|
66504
|
+
],
|
|
66505
|
+
"description": "set the height of node",
|
|
66506
|
+
"since": "1.11.0"
|
|
66507
|
+
},
|
|
66420
66508
|
"nodeKey": {
|
|
66421
66509
|
"anyOf": [
|
|
66422
66510
|
{
|
|
@@ -80240,7 +80328,7 @@
|
|
|
80240
80328
|
},
|
|
80241
80329
|
"Map<Function,(...args:any[])=>void>": {
|
|
80242
80330
|
"properties": {
|
|
80243
|
-
"__@toStringTag@
|
|
80331
|
+
"__@toStringTag@13386": {
|
|
80244
80332
|
"type": "string"
|
|
80245
80333
|
},
|
|
80246
80334
|
"size": {
|
|
@@ -80248,14 +80336,14 @@
|
|
|
80248
80336
|
}
|
|
80249
80337
|
},
|
|
80250
80338
|
"required": [
|
|
80251
|
-
"__@toStringTag@
|
|
80339
|
+
"__@toStringTag@13386",
|
|
80252
80340
|
"size"
|
|
80253
80341
|
],
|
|
80254
80342
|
"type": "object"
|
|
80255
80343
|
},
|
|
80256
80344
|
"Map<number,IGraphicPicker>": {
|
|
80257
80345
|
"properties": {
|
|
80258
|
-
"__@toStringTag@
|
|
80346
|
+
"__@toStringTag@13386": {
|
|
80259
80347
|
"type": "string"
|
|
80260
80348
|
},
|
|
80261
80349
|
"size": {
|
|
@@ -80263,14 +80351,14 @@
|
|
|
80263
80351
|
}
|
|
80264
80352
|
},
|
|
80265
80353
|
"required": [
|
|
80266
|
-
"__@toStringTag@
|
|
80354
|
+
"__@toStringTag@13386",
|
|
80267
80355
|
"size"
|
|
80268
80356
|
],
|
|
80269
80357
|
"type": "object"
|
|
80270
80358
|
},
|
|
80271
80359
|
"Map<number,IGraphicRender>": {
|
|
80272
80360
|
"properties": {
|
|
80273
|
-
"__@toStringTag@
|
|
80361
|
+
"__@toStringTag@13386": {
|
|
80274
80362
|
"type": "string"
|
|
80275
80363
|
},
|
|
80276
80364
|
"size": {
|
|
@@ -80278,14 +80366,14 @@
|
|
|
80278
80366
|
}
|
|
80279
80367
|
},
|
|
80280
80368
|
"required": [
|
|
80281
|
-
"__@toStringTag@
|
|
80369
|
+
"__@toStringTag@13386",
|
|
80282
80370
|
"size"
|
|
80283
80371
|
],
|
|
80284
80372
|
"type": "object"
|
|
80285
80373
|
},
|
|
80286
80374
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
80287
80375
|
"properties": {
|
|
80288
|
-
"__@toStringTag@
|
|
80376
|
+
"__@toStringTag@13386": {
|
|
80289
80377
|
"type": "string"
|
|
80290
80378
|
},
|
|
80291
80379
|
"size": {
|
|
@@ -80293,14 +80381,14 @@
|
|
|
80293
80381
|
}
|
|
80294
80382
|
},
|
|
80295
80383
|
"required": [
|
|
80296
|
-
"__@toStringTag@
|
|
80384
|
+
"__@toStringTag@13386",
|
|
80297
80385
|
"size"
|
|
80298
80386
|
],
|
|
80299
80387
|
"type": "object"
|
|
80300
80388
|
},
|
|
80301
80389
|
"Map<string,Map<number,IGraphicRender>>": {
|
|
80302
80390
|
"properties": {
|
|
80303
|
-
"__@toStringTag@
|
|
80391
|
+
"__@toStringTag@13386": {
|
|
80304
80392
|
"type": "string"
|
|
80305
80393
|
},
|
|
80306
80394
|
"size": {
|
|
@@ -80308,14 +80396,14 @@
|
|
|
80308
80396
|
}
|
|
80309
80397
|
},
|
|
80310
80398
|
"required": [
|
|
80311
|
-
"__@toStringTag@
|
|
80399
|
+
"__@toStringTag@13386",
|
|
80312
80400
|
"size"
|
|
80313
80401
|
],
|
|
80314
80402
|
"type": "object"
|
|
80315
80403
|
},
|
|
80316
80404
|
"Map<string,any>": {
|
|
80317
80405
|
"properties": {
|
|
80318
|
-
"__@toStringTag@
|
|
80406
|
+
"__@toStringTag@13386": {
|
|
80319
80407
|
"type": "string"
|
|
80320
80408
|
},
|
|
80321
80409
|
"size": {
|
|
@@ -80323,14 +80411,14 @@
|
|
|
80323
80411
|
}
|
|
80324
80412
|
},
|
|
80325
80413
|
"required": [
|
|
80326
|
-
"__@toStringTag@
|
|
80414
|
+
"__@toStringTag@13386",
|
|
80327
80415
|
"size"
|
|
80328
80416
|
],
|
|
80329
80417
|
"type": "object"
|
|
80330
80418
|
},
|
|
80331
80419
|
"Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
80332
80420
|
"properties": {
|
|
80333
|
-
"__@toStringTag@
|
|
80421
|
+
"__@toStringTag@13386": {
|
|
80334
80422
|
"type": "string"
|
|
80335
80423
|
},
|
|
80336
80424
|
"size": {
|
|
@@ -80338,14 +80426,14 @@
|
|
|
80338
80426
|
}
|
|
80339
80427
|
},
|
|
80340
80428
|
"required": [
|
|
80341
|
-
"__@toStringTag@
|
|
80429
|
+
"__@toStringTag@13386",
|
|
80342
80430
|
"size"
|
|
80343
80431
|
],
|
|
80344
80432
|
"type": "object"
|
|
80345
80433
|
},
|
|
80346
80434
|
"Map<string|HTMLElement,{container:string|HTMLElement;dom:any;wrapGroup:any;root?:any;}>": {
|
|
80347
80435
|
"properties": {
|
|
80348
|
-
"__@toStringTag@
|
|
80436
|
+
"__@toStringTag@13386": {
|
|
80349
80437
|
"type": "string"
|
|
80350
80438
|
},
|
|
80351
80439
|
"size": {
|
|
@@ -80353,14 +80441,14 @@
|
|
|
80353
80441
|
}
|
|
80354
80442
|
},
|
|
80355
80443
|
"required": [
|
|
80356
|
-
"__@toStringTag@
|
|
80444
|
+
"__@toStringTag@13386",
|
|
80357
80445
|
"size"
|
|
80358
80446
|
],
|
|
80359
80447
|
"type": "object"
|
|
80360
80448
|
},
|
|
80361
80449
|
"Map<string|number,IAnimate>": {
|
|
80362
80450
|
"properties": {
|
|
80363
|
-
"__@toStringTag@
|
|
80451
|
+
"__@toStringTag@13386": {
|
|
80364
80452
|
"type": "string"
|
|
80365
80453
|
},
|
|
80366
80454
|
"size": {
|
|
@@ -80368,7 +80456,7 @@
|
|
|
80368
80456
|
}
|
|
80369
80457
|
},
|
|
80370
80458
|
"required": [
|
|
80371
|
-
"__@toStringTag@
|
|
80459
|
+
"__@toStringTag@13386",
|
|
80372
80460
|
"size"
|
|
80373
80461
|
],
|
|
80374
80462
|
"type": "object"
|
|
@@ -100726,34 +100814,34 @@
|
|
|
100726
100814
|
},
|
|
100727
100815
|
"Promise<FontFaceSet>": {
|
|
100728
100816
|
"properties": {
|
|
100729
|
-
"__@toStringTag@
|
|
100817
|
+
"__@toStringTag@13386": {
|
|
100730
100818
|
"type": "string"
|
|
100731
100819
|
}
|
|
100732
100820
|
},
|
|
100733
100821
|
"required": [
|
|
100734
|
-
"__@toStringTag@
|
|
100822
|
+
"__@toStringTag@13386"
|
|
100735
100823
|
],
|
|
100736
100824
|
"type": "object"
|
|
100737
100825
|
},
|
|
100738
100826
|
"Promise<ServiceWorkerRegistration>": {
|
|
100739
100827
|
"properties": {
|
|
100740
|
-
"__@toStringTag@
|
|
100828
|
+
"__@toStringTag@13386": {
|
|
100741
100829
|
"type": "string"
|
|
100742
100830
|
}
|
|
100743
100831
|
},
|
|
100744
100832
|
"required": [
|
|
100745
|
-
"__@toStringTag@
|
|
100833
|
+
"__@toStringTag@13386"
|
|
100746
100834
|
],
|
|
100747
100835
|
"type": "object"
|
|
100748
100836
|
},
|
|
100749
100837
|
"Promise<any>": {
|
|
100750
100838
|
"properties": {
|
|
100751
|
-
"__@toStringTag@
|
|
100839
|
+
"__@toStringTag@13386": {
|
|
100752
100840
|
"type": "string"
|
|
100753
100841
|
}
|
|
100754
100842
|
},
|
|
100755
100843
|
"required": [
|
|
100756
|
-
"__@toStringTag@
|
|
100844
|
+
"__@toStringTag@13386"
|
|
100757
100845
|
],
|
|
100758
100846
|
"type": "object"
|
|
100759
100847
|
},
|