@visactor/vchart-schema 1.2.2 → 1.3.0-beta.6

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vchart.json +625 -25
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "1.2.2",
3
+ "version": "1.3.0-beta.6",
4
4
  "description": "The VChart JSON schema file.",
5
5
  "sideEffects": false,
6
6
  "main": "vchart.json",
package/vchart.json CHANGED
@@ -708,6 +708,17 @@
708
708
  }
709
709
  ]
710
710
  },
711
+ "CommonParseOptions": {
712
+ "properties": {
713
+ "clone": {
714
+ "default": true,
715
+ "description": "是否需要对数据进行 clone,默认为 true。\n如果考虑性能,你可以将其关闭,但是这会带了一些副作用,即我们会对传入的数据进行修改(不会对原有字段及值修改,只会在原有数据基础上添加一些字段)。",
716
+ "since": "1.3.0",
717
+ "type": "boolean"
718
+ }
719
+ },
720
+ "type": "object"
721
+ },
711
722
  "ControllerTypeEnum": {
712
723
  "enum": [
713
724
  "backward",
@@ -18449,6 +18460,23 @@
18449
18460
  }
18450
18461
  ]
18451
18462
  },
18463
+ "connectedStyle": {
18464
+ "typeof": "function"
18465
+ },
18466
+ "connectedType": {
18467
+ "enum": [
18468
+ "connect",
18469
+ "none",
18470
+ "zero"
18471
+ ],
18472
+ "type": "string"
18473
+ },
18474
+ "connectedX": {
18475
+ "type": "number"
18476
+ },
18477
+ "connectedY": {
18478
+ "type": "number"
18479
+ },
18452
18480
  "fill": {
18453
18481
  "$ref": "#/definitions/IFillType"
18454
18482
  },
@@ -25283,6 +25311,12 @@
25283
25311
  "getPointAt": {
25284
25312
  "typeof": "function"
25285
25313
  },
25314
+ "originP1": {
25315
+ "$ref": "#/definitions/IPointLike"
25316
+ },
25317
+ "originP2": {
25318
+ "$ref": "#/definitions/IPointLike"
25319
+ },
25286
25320
  "p0": {
25287
25321
  "$ref": "#/definitions/IPoint"
25288
25322
  },
@@ -25654,7 +25688,14 @@
25654
25688
  "description": "数据唯一标识"
25655
25689
  },
25656
25690
  "parser": {
25657
- "typeof": "function"
25691
+ "anyOf": [
25692
+ {
25693
+ "$ref": "#/definitions/SheetParseOptions"
25694
+ },
25695
+ {
25696
+ "$ref": "#/definitions/CommonParseOptions"
25697
+ }
25698
+ ]
25658
25699
  },
25659
25700
  "transforms": {
25660
25701
  "description": "数据 transform 配置",
@@ -26083,6 +26124,23 @@
26083
26124
  },
26084
26125
  "IDiscreteLegendTheme": {
26085
26126
  "properties": {
26127
+ "alignContent": {
26128
+ "enum": [
26129
+ "center",
26130
+ "flex-start",
26131
+ "space-around",
26132
+ "space-between"
26133
+ ],
26134
+ "type": "string"
26135
+ },
26136
+ "alignItems": {
26137
+ "enum": [
26138
+ "center",
26139
+ "flex-end",
26140
+ "flex-start"
26141
+ ],
26142
+ "type": "string"
26143
+ },
26086
26144
  "allowAllCanceled": {
26087
26145
  "type": "boolean"
26088
26146
  },
@@ -26257,6 +26315,13 @@
26257
26315
  "customPickShape": {
26258
26316
  "typeof": "function"
26259
26317
  },
26318
+ "display": {
26319
+ "enum": [
26320
+ "flex",
26321
+ "relative"
26322
+ ],
26323
+ "type": "string"
26324
+ },
26260
26325
  "dx": {
26261
26326
  "type": "number"
26262
26327
  },
@@ -26280,6 +26345,22 @@
26280
26345
  "description": "是否进行数据筛选,默认为 true",
26281
26346
  "type": "boolean"
26282
26347
  },
26348
+ "flexDirection": {
26349
+ "enum": [
26350
+ "column",
26351
+ "column-reverse",
26352
+ "row",
26353
+ "row-reverse"
26354
+ ],
26355
+ "type": "string"
26356
+ },
26357
+ "flexWrap": {
26358
+ "enum": [
26359
+ "nowrap",
26360
+ "wrap"
26361
+ ],
26362
+ "type": "string"
26363
+ },
26283
26364
  "height": {
26284
26365
  "anyOf": [
26285
26366
  {
@@ -26311,6 +26392,16 @@
26311
26392
  "$ref": "#/definitions/IItem",
26312
26393
  "description": "图例项配置"
26313
26394
  },
26395
+ "justifyContent": {
26396
+ "enum": [
26397
+ "center",
26398
+ "flex-end",
26399
+ "flex-start",
26400
+ "space-around",
26401
+ "space-between"
26402
+ ],
26403
+ "type": "string"
26404
+ },
26314
26405
  "keepDirIn3d": {
26315
26406
  "type": "boolean"
26316
26407
  },
@@ -27082,6 +27173,14 @@
27082
27173
  ],
27083
27174
  "type": "object"
27084
27175
  },
27176
+ "IDsvParserOptions": {
27177
+ "properties": {
27178
+ "delimiter": {
27179
+ "type": "string"
27180
+ }
27181
+ },
27182
+ "type": "object"
27183
+ },
27085
27184
  "IExtensionGroupMarkSpec": {
27086
27185
  "properties": {
27087
27186
  "children": {
@@ -32715,7 +32814,14 @@
32715
32814
  "description": "数据唯一标识"
32716
32815
  },
32717
32816
  "parser": {
32718
- "typeof": "function"
32817
+ "anyOf": [
32818
+ {
32819
+ "$ref": "#/definitions/SheetParseOptions"
32820
+ },
32821
+ {
32822
+ "$ref": "#/definitions/CommonParseOptions"
32823
+ }
32824
+ ]
32719
32825
  },
32720
32826
  "transforms": {
32721
32827
  "description": "数据 transform 配置",
@@ -34164,6 +34270,15 @@
34164
34270
  ],
34165
34271
  "description": "动画配置"
34166
34272
  },
34273
+ "customLayoutFunc": {
34274
+ "typeof": "function"
34275
+ },
34276
+ "customOverlapFunc": {
34277
+ "typeof": "function"
34278
+ },
34279
+ "dataFilter": {
34280
+ "typeof": "function"
34281
+ },
34167
34282
  "formatMethod": {
34168
34283
  "typeof": "function"
34169
34284
  },
@@ -48674,6 +48789,23 @@
48674
48789
  },
48675
48790
  "ISegment": {
48676
48791
  "properties": {
48792
+ "connectedStyle": {
48793
+ "typeof": "function"
48794
+ },
48795
+ "connectedType": {
48796
+ "enum": [
48797
+ "connect",
48798
+ "none",
48799
+ "zero"
48800
+ ],
48801
+ "type": "string"
48802
+ },
48803
+ "connectedX": {
48804
+ "type": "number"
48805
+ },
48806
+ "connectedY": {
48807
+ "type": "number"
48808
+ },
48677
48809
  "lineCap": {
48678
48810
  "$ref": "#/definitions/CanvasLineCap"
48679
48811
  },
@@ -51807,6 +51939,12 @@
51807
51939
  "description": "刻度线朝向,默认朝外(坐标线包围盒外部)",
51808
51940
  "type": "boolean"
51809
51941
  },
51942
+ "noDecimals": {
51943
+ "default": false,
51944
+ "description": "当配置了 tickStep 或 forceTickCount 时不生效。",
51945
+ "since": "1.3.0",
51946
+ "type": "boolean"
51947
+ },
51810
51948
  "state": {
51811
51949
  "typeof": "function"
51812
51950
  },
@@ -51826,6 +51964,16 @@
51826
51964
  "description": "建议的tick数量,并不保证结果一定是配置值",
51827
51965
  "type": "number"
51828
51966
  },
51967
+ "tickMode": {
51968
+ "default": "'average'",
51969
+ "description": "连续轴 tick 生成算法:\n'average': 尽可能均分;\n'd3':与 d3 默认逻辑一致,以 [1, 2, 5] 为基数生成;",
51970
+ "enum": [
51971
+ "average",
51972
+ "d3"
51973
+ ],
51974
+ "since": "1.3.0",
51975
+ "type": "string"
51976
+ },
51829
51977
  "tickSize": {
51830
51978
  "default": 4,
51831
51979
  "description": "Length of tick lines\n坐标轴刻度线的长度",
@@ -52311,6 +52459,10 @@
52311
52459
  "$ref": "#/definitions/TooltipContentProperty<string>",
52312
52460
  "description": "tooltip key 值内容"
52313
52461
  },
52462
+ "keyStyle": {
52463
+ "$ref": "#/definitions/TooltipContentProperty<ITooltipTextTheme>",
52464
+ "description": "key 样式(只在 content 上需要配置)"
52465
+ },
52314
52466
  "seriesId": {
52315
52467
  "description": "该 pattern 属于哪个系列id(用户不需要设置)",
52316
52468
  "type": "number"
@@ -52321,6 +52473,9 @@
52321
52473
  "shapeHollow": {
52322
52474
  "type": "boolean"
52323
52475
  },
52476
+ "shapeSize": {
52477
+ "$ref": "#/definitions/TooltipContentProperty<number>"
52478
+ },
52324
52479
  "shapeType": {
52325
52480
  "$ref": "#/definitions/TooltipContentProperty<string>"
52326
52481
  },
@@ -52328,6 +52483,10 @@
52328
52483
  "$ref": "#/definitions/TooltipContentProperty<string>",
52329
52484
  "description": "tooltip value 值内容"
52330
52485
  },
52486
+ "valueStyle": {
52487
+ "$ref": "#/definitions/TooltipContentProperty<ITooltipTextTheme>",
52488
+ "description": "value 样式"
52489
+ },
52331
52490
  "visible": {
52332
52491
  "$ref": "#/definitions/TooltipContentProperty<boolean>",
52333
52492
  "description": "该行是否可见"
@@ -52364,6 +52523,9 @@
52364
52523
  "shapeHollow": {
52365
52524
  "type": "boolean"
52366
52525
  },
52526
+ "shapeSize": {
52527
+ "$ref": "#/definitions/TooltipContentProperty<number>"
52528
+ },
52367
52529
  "shapeType": {
52368
52530
  "$ref": "#/definitions/TooltipContentProperty<string>"
52369
52531
  },
@@ -52536,10 +52698,13 @@
52536
52698
  },
52537
52699
  "ITooltipTextTheme": {
52538
52700
  "properties": {
52539
- "fontColor": {
52701
+ "fill": {
52540
52702
  "description": "字体颜色",
52541
52703
  "type": "string"
52542
52704
  },
52705
+ "fontColor": {
52706
+ "type": "string"
52707
+ },
52543
52708
  "fontFamily": {
52544
52709
  "description": "字体",
52545
52710
  "type": "string"
@@ -57827,7 +57992,7 @@
57827
57992
  },
57828
57993
  "Map<Function,(...args:any[])=>void>": {
57829
57994
  "properties": {
57830
- "__@toStringTag@11033": {
57995
+ "__@toStringTag@11349": {
57831
57996
  "type": "string"
57832
57997
  },
57833
57998
  "size": {
@@ -57835,14 +58000,14 @@
57835
58000
  }
57836
58001
  },
57837
58002
  "required": [
57838
- "__@toStringTag@11033",
58003
+ "__@toStringTag@11349",
57839
58004
  "size"
57840
58005
  ],
57841
58006
  "type": "object"
57842
58007
  },
57843
58008
  "Map<number,IGraphicPicker>": {
57844
58009
  "properties": {
57845
- "__@toStringTag@11033": {
58010
+ "__@toStringTag@11349": {
57846
58011
  "type": "string"
57847
58012
  },
57848
58013
  "size": {
@@ -57850,14 +58015,14 @@
57850
58015
  }
57851
58016
  },
57852
58017
  "required": [
57853
- "__@toStringTag@11033",
58018
+ "__@toStringTag@11349",
57854
58019
  "size"
57855
58020
  ],
57856
58021
  "type": "object"
57857
58022
  },
57858
58023
  "Map<number,IGraphicRender>": {
57859
58024
  "properties": {
57860
- "__@toStringTag@11033": {
58025
+ "__@toStringTag@11349": {
57861
58026
  "type": "string"
57862
58027
  },
57863
58028
  "size": {
@@ -57865,14 +58030,14 @@
57865
58030
  }
57866
58031
  },
57867
58032
  "required": [
57868
- "__@toStringTag@11033",
58033
+ "__@toStringTag@11349",
57869
58034
  "size"
57870
58035
  ],
57871
58036
  "type": "object"
57872
58037
  },
57873
58038
  "Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
57874
58039
  "properties": {
57875
- "__@toStringTag@11033": {
58040
+ "__@toStringTag@11349": {
57876
58041
  "type": "string"
57877
58042
  },
57878
58043
  "size": {
@@ -57880,14 +58045,14 @@
57880
58045
  }
57881
58046
  },
57882
58047
  "required": [
57883
- "__@toStringTag@11033",
58048
+ "__@toStringTag@11349",
57884
58049
  "size"
57885
58050
  ],
57886
58051
  "type": "object"
57887
58052
  },
57888
58053
  "Map<string,Map<number,IGraphicRender>>": {
57889
58054
  "properties": {
57890
- "__@toStringTag@11033": {
58055
+ "__@toStringTag@11349": {
57891
58056
  "type": "string"
57892
58057
  },
57893
58058
  "size": {
@@ -57895,14 +58060,14 @@
57895
58060
  }
57896
58061
  },
57897
58062
  "required": [
57898
- "__@toStringTag@11033",
58063
+ "__@toStringTag@11349",
57899
58064
  "size"
57900
58065
  ],
57901
58066
  "type": "object"
57902
58067
  },
57903
58068
  "Map<string,any>": {
57904
58069
  "properties": {
57905
- "__@toStringTag@11033": {
58070
+ "__@toStringTag@11349": {
57906
58071
  "type": "string"
57907
58072
  },
57908
58073
  "size": {
@@ -57910,14 +58075,14 @@
57910
58075
  }
57911
58076
  },
57912
58077
  "required": [
57913
- "__@toStringTag@11033",
58078
+ "__@toStringTag@11349",
57914
58079
  "size"
57915
58080
  ],
57916
58081
  "type": "object"
57917
58082
  },
57918
58083
  "Map<string|HTMLCanvasElement|HTMLImageElement,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
57919
58084
  "properties": {
57920
- "__@toStringTag@11033": {
58085
+ "__@toStringTag@11349": {
57921
58086
  "type": "string"
57922
58087
  },
57923
58088
  "size": {
@@ -57925,14 +58090,14 @@
57925
58090
  }
57926
58091
  },
57927
58092
  "required": [
57928
- "__@toStringTag@11033",
58093
+ "__@toStringTag@11349",
57929
58094
  "size"
57930
58095
  ],
57931
58096
  "type": "object"
57932
58097
  },
57933
58098
  "Map<string|number,IAnimate>": {
57934
58099
  "properties": {
57935
- "__@toStringTag@11033": {
58100
+ "__@toStringTag@11349": {
57936
58101
  "type": "string"
57937
58102
  },
57938
58103
  "size": {
@@ -57940,7 +58105,7 @@
57940
58105
  }
57941
58106
  },
57942
58107
  "required": [
57943
- "__@toStringTag@11033",
58108
+ "__@toStringTag@11349",
57944
58109
  "size"
57945
58110
  ],
57946
58111
  "type": "object"
@@ -58268,6 +58433,23 @@
58268
58433
  },
58269
58434
  "Omit<DiscreteLegendAttrs,\"title\"|\"layout\"|\"items\"|\"pager\"|\"item\">": {
58270
58435
  "properties": {
58436
+ "alignContent": {
58437
+ "enum": [
58438
+ "center",
58439
+ "flex-start",
58440
+ "space-around",
58441
+ "space-between"
58442
+ ],
58443
+ "type": "string"
58444
+ },
58445
+ "alignItems": {
58446
+ "enum": [
58447
+ "center",
58448
+ "flex-end",
58449
+ "flex-start"
58450
+ ],
58451
+ "type": "string"
58452
+ },
58271
58453
  "allowAllCanceled": {
58272
58454
  "type": "boolean"
58273
58455
  },
@@ -58420,6 +58602,13 @@
58420
58602
  },
58421
58603
  "type": "array"
58422
58604
  },
58605
+ "display": {
58606
+ "enum": [
58607
+ "flex",
58608
+ "relative"
58609
+ ],
58610
+ "type": "string"
58611
+ },
58423
58612
  "dx": {
58424
58613
  "type": "number"
58425
58614
  },
@@ -58435,6 +58624,22 @@
58435
58624
  "fillOpacity": {
58436
58625
  "type": "number"
58437
58626
  },
58627
+ "flexDirection": {
58628
+ "enum": [
58629
+ "column",
58630
+ "column-reverse",
58631
+ "row",
58632
+ "row-reverse"
58633
+ ],
58634
+ "type": "string"
58635
+ },
58636
+ "flexWrap": {
58637
+ "enum": [
58638
+ "nowrap",
58639
+ "wrap"
58640
+ ],
58641
+ "type": "string"
58642
+ },
58438
58643
  "height": {
58439
58644
  "type": "number"
58440
58645
  },
@@ -58447,6 +58652,16 @@
58447
58652
  "interactive": {
58448
58653
  "type": "boolean"
58449
58654
  },
58655
+ "justifyContent": {
58656
+ "enum": [
58657
+ "center",
58658
+ "flex-end",
58659
+ "flex-start",
58660
+ "space-around",
58661
+ "space-between"
58662
+ ],
58663
+ "type": "string"
58664
+ },
58450
58665
  "keepDirIn3d": {
58451
58666
  "type": "boolean"
58452
58667
  },
@@ -60169,6 +60384,23 @@
60169
60384
  },
60170
60385
  "Omit<IGroupGraphicAttribute,\"background\">": {
60171
60386
  "properties": {
60387
+ "alignContent": {
60388
+ "enum": [
60389
+ "center",
60390
+ "flex-start",
60391
+ "space-around",
60392
+ "space-between"
60393
+ ],
60394
+ "type": "string"
60395
+ },
60396
+ "alignItems": {
60397
+ "enum": [
60398
+ "center",
60399
+ "flex-end",
60400
+ "flex-start"
60401
+ ],
60402
+ "type": "string"
60403
+ },
60172
60404
  "alpha": {
60173
60405
  "type": "number"
60174
60406
  },
@@ -60293,6 +60525,13 @@
60293
60525
  "customPickShape": {
60294
60526
  "typeof": "function"
60295
60527
  },
60528
+ "display": {
60529
+ "enum": [
60530
+ "flex",
60531
+ "relative"
60532
+ ],
60533
+ "type": "string"
60534
+ },
60296
60535
  "dx": {
60297
60536
  "type": "number"
60298
60537
  },
@@ -60308,12 +60547,38 @@
60308
60547
  "fillOpacity": {
60309
60548
  "type": "number"
60310
60549
  },
60550
+ "flexDirection": {
60551
+ "enum": [
60552
+ "column",
60553
+ "column-reverse",
60554
+ "row",
60555
+ "row-reverse"
60556
+ ],
60557
+ "type": "string"
60558
+ },
60559
+ "flexWrap": {
60560
+ "enum": [
60561
+ "nowrap",
60562
+ "wrap"
60563
+ ],
60564
+ "type": "string"
60565
+ },
60311
60566
  "height": {
60312
60567
  "type": "number"
60313
60568
  },
60314
60569
  "innerBorder": {
60315
60570
  "$ref": "#/definitions/Partial<IBorderStyle>"
60316
60571
  },
60572
+ "justifyContent": {
60573
+ "enum": [
60574
+ "center",
60575
+ "flex-end",
60576
+ "flex-start",
60577
+ "space-around",
60578
+ "space-between"
60579
+ ],
60580
+ "type": "string"
60581
+ },
60317
60582
  "keepDirIn3d": {
60318
60583
  "type": "boolean"
60319
60584
  },
@@ -61379,6 +61644,23 @@
61379
61644
  },
61380
61645
  "Omit<Omit<PagerAttributes,\"total\">&{space?:number;animation?:boolean;animationDuration?:number;animationEasing?:EasingType;},\"textStyle\"|\"handler\">": {
61381
61646
  "properties": {
61647
+ "alignContent": {
61648
+ "enum": [
61649
+ "center",
61650
+ "flex-start",
61651
+ "space-around",
61652
+ "space-between"
61653
+ ],
61654
+ "type": "string"
61655
+ },
61656
+ "alignItems": {
61657
+ "enum": [
61658
+ "center",
61659
+ "flex-end",
61660
+ "flex-start"
61661
+ ],
61662
+ "type": "string"
61663
+ },
61382
61664
  "alpha": {
61383
61665
  "type": "number"
61384
61666
  },
@@ -61528,6 +61810,13 @@
61528
61810
  "defaultCurrent": {
61529
61811
  "type": "number"
61530
61812
  },
61813
+ "display": {
61814
+ "enum": [
61815
+ "flex",
61816
+ "relative"
61817
+ ],
61818
+ "type": "string"
61819
+ },
61531
61820
  "dx": {
61532
61821
  "type": "number"
61533
61822
  },
@@ -61543,12 +61832,38 @@
61543
61832
  "fillOpacity": {
61544
61833
  "type": "number"
61545
61834
  },
61835
+ "flexDirection": {
61836
+ "enum": [
61837
+ "column",
61838
+ "column-reverse",
61839
+ "row",
61840
+ "row-reverse"
61841
+ ],
61842
+ "type": "string"
61843
+ },
61844
+ "flexWrap": {
61845
+ "enum": [
61846
+ "nowrap",
61847
+ "wrap"
61848
+ ],
61849
+ "type": "string"
61850
+ },
61546
61851
  "height": {
61547
61852
  "type": "number"
61548
61853
  },
61549
61854
  "innerBorder": {
61550
61855
  "$ref": "#/definitions/Partial<IBorderStyle>"
61551
61856
  },
61857
+ "justifyContent": {
61858
+ "enum": [
61859
+ "center",
61860
+ "flex-end",
61861
+ "flex-start",
61862
+ "space-around",
61863
+ "space-between"
61864
+ ],
61865
+ "type": "string"
61866
+ },
61552
61867
  "keepDirIn3d": {
61553
61868
  "type": "boolean"
61554
61869
  },
@@ -61729,6 +62044,22 @@
61729
62044
  "avoidBaseMark": {
61730
62045
  "type": "boolean"
61731
62046
  },
62047
+ "avoidMarks": {
62048
+ "anyOf": [
62049
+ {
62050
+ "items": {
62051
+ "type": "string"
62052
+ },
62053
+ "type": "array"
62054
+ },
62055
+ {
62056
+ "items": {
62057
+ "$ref": "#/definitions/IGraphic<Partial<IGraphicAttribute>>"
62058
+ },
62059
+ "type": "array"
62060
+ }
62061
+ ]
62062
+ },
61732
62063
  "clampForce": {
61733
62064
  "type": "boolean"
61734
62065
  },
@@ -62394,6 +62725,23 @@
62394
62725
  "clipRange": {
62395
62726
  "type": "number"
62396
62727
  },
62728
+ "connectedStyle": {
62729
+ "typeof": "function"
62730
+ },
62731
+ "connectedType": {
62732
+ "enum": [
62733
+ "connect",
62734
+ "none",
62735
+ "zero"
62736
+ ],
62737
+ "type": "string"
62738
+ },
62739
+ "connectedX": {
62740
+ "type": "number"
62741
+ },
62742
+ "connectedY": {
62743
+ "type": "number"
62744
+ },
62397
62745
  "cursor": {
62398
62746
  "$ref": "#/definitions/Cursor"
62399
62747
  },
@@ -63506,6 +63854,23 @@
63506
63854
  },
63507
63855
  "Partial<IGroupGraphicAttribute>": {
63508
63856
  "properties": {
63857
+ "alignContent": {
63858
+ "enum": [
63859
+ "center",
63860
+ "flex-start",
63861
+ "space-around",
63862
+ "space-between"
63863
+ ],
63864
+ "type": "string"
63865
+ },
63866
+ "alignItems": {
63867
+ "enum": [
63868
+ "center",
63869
+ "flex-end",
63870
+ "flex-start"
63871
+ ],
63872
+ "type": "string"
63873
+ },
63509
63874
  "alpha": {
63510
63875
  "type": "number"
63511
63876
  },
@@ -63643,6 +64008,13 @@
63643
64008
  "customPickShape": {
63644
64009
  "typeof": "function"
63645
64010
  },
64011
+ "display": {
64012
+ "enum": [
64013
+ "flex",
64014
+ "relative"
64015
+ ],
64016
+ "type": "string"
64017
+ },
63646
64018
  "dx": {
63647
64019
  "type": "number"
63648
64020
  },
@@ -63658,12 +64030,38 @@
63658
64030
  "fillOpacity": {
63659
64031
  "type": "number"
63660
64032
  },
64033
+ "flexDirection": {
64034
+ "enum": [
64035
+ "column",
64036
+ "column-reverse",
64037
+ "row",
64038
+ "row-reverse"
64039
+ ],
64040
+ "type": "string"
64041
+ },
64042
+ "flexWrap": {
64043
+ "enum": [
64044
+ "nowrap",
64045
+ "wrap"
64046
+ ],
64047
+ "type": "string"
64048
+ },
63661
64049
  "height": {
63662
64050
  "type": "number"
63663
64051
  },
63664
64052
  "innerBorder": {
63665
64053
  "$ref": "#/definitions/Partial<IBorderStyle>"
63666
64054
  },
64055
+ "justifyContent": {
64056
+ "enum": [
64057
+ "center",
64058
+ "flex-end",
64059
+ "flex-start",
64060
+ "space-around",
64061
+ "space-between"
64062
+ ],
64063
+ "type": "string"
64064
+ },
63667
64065
  "keepDirIn3d": {
63668
64066
  "type": "boolean"
63669
64067
  },
@@ -64128,6 +64526,15 @@
64128
64526
  ],
64129
64527
  "description": "动画配置"
64130
64528
  },
64529
+ "customLayoutFunc": {
64530
+ "typeof": "function"
64531
+ },
64532
+ "customOverlapFunc": {
64533
+ "typeof": "function"
64534
+ },
64535
+ "dataFilter": {
64536
+ "typeof": "function"
64537
+ },
64131
64538
  "formatMethod": {
64132
64539
  "typeof": "function"
64133
64540
  },
@@ -64206,6 +64613,15 @@
64206
64613
  ],
64207
64614
  "description": "动画配置"
64208
64615
  },
64616
+ "customLayoutFunc": {
64617
+ "typeof": "function"
64618
+ },
64619
+ "customOverlapFunc": {
64620
+ "typeof": "function"
64621
+ },
64622
+ "dataFilter": {
64623
+ "typeof": "function"
64624
+ },
64209
64625
  "formatMethod": {
64210
64626
  "typeof": "function"
64211
64627
  },
@@ -64382,6 +64798,23 @@
64382
64798
  "clipRangeByDimension": {
64383
64799
  "$ref": "#/definitions/IClipRangeByDimensionType"
64384
64800
  },
64801
+ "connectedStyle": {
64802
+ "typeof": "function"
64803
+ },
64804
+ "connectedType": {
64805
+ "enum": [
64806
+ "connect",
64807
+ "none",
64808
+ "zero"
64809
+ ],
64810
+ "type": "string"
64811
+ },
64812
+ "connectedX": {
64813
+ "type": "number"
64814
+ },
64815
+ "connectedY": {
64816
+ "type": "number"
64817
+ },
64385
64818
  "cursor": {
64386
64819
  "$ref": "#/definitions/Cursor"
64387
64820
  },
@@ -67120,6 +67553,13 @@
67120
67553
  "customPickShape": {
67121
67554
  "typeof": "function"
67122
67555
  },
67556
+ "direction": {
67557
+ "enum": [
67558
+ "horizontal",
67559
+ "vertical"
67560
+ ],
67561
+ "type": "string"
67562
+ },
67123
67563
  "dx": {
67124
67564
  "type": "number"
67125
67565
  },
@@ -67326,6 +67766,13 @@
67326
67766
  "visible": {
67327
67767
  "type": "boolean"
67328
67768
  },
67769
+ "wordBreak": {
67770
+ "enum": [
67771
+ "break-all",
67772
+ "break-word"
67773
+ ],
67774
+ "type": "string"
67775
+ },
67329
67776
  "x": {
67330
67777
  "type": "number"
67331
67778
  },
@@ -69387,34 +69834,34 @@
69387
69834
  },
69388
69835
  "Promise<FontFaceSet>": {
69389
69836
  "properties": {
69390
- "__@toStringTag@11033": {
69837
+ "__@toStringTag@11349": {
69391
69838
  "type": "string"
69392
69839
  }
69393
69840
  },
69394
69841
  "required": [
69395
- "__@toStringTag@11033"
69842
+ "__@toStringTag@11349"
69396
69843
  ],
69397
69844
  "type": "object"
69398
69845
  },
69399
69846
  "Promise<ServiceWorkerRegistration>": {
69400
69847
  "properties": {
69401
- "__@toStringTag@11033": {
69848
+ "__@toStringTag@11349": {
69402
69849
  "type": "string"
69403
69850
  }
69404
69851
  },
69405
69852
  "required": [
69406
- "__@toStringTag@11033"
69853
+ "__@toStringTag@11349"
69407
69854
  ],
69408
69855
  "type": "object"
69409
69856
  },
69410
69857
  "Promise<any>": {
69411
69858
  "properties": {
69412
- "__@toStringTag@11033": {
69859
+ "__@toStringTag@11349": {
69413
69860
  "type": "string"
69414
69861
  }
69415
69862
  },
69416
69863
  "required": [
69417
- "__@toStringTag@11033"
69864
+ "__@toStringTag@11349"
69418
69865
  ],
69419
69866
  "type": "object"
69420
69867
  },
@@ -70005,6 +70452,23 @@
70005
70452
  "clipRange": {
70006
70453
  "type": "number"
70007
70454
  },
70455
+ "connectedStyle": {
70456
+ "typeof": "function"
70457
+ },
70458
+ "connectedType": {
70459
+ "enum": [
70460
+ "connect",
70461
+ "none",
70462
+ "zero"
70463
+ ],
70464
+ "type": "string"
70465
+ },
70466
+ "connectedX": {
70467
+ "type": "number"
70468
+ },
70469
+ "connectedY": {
70470
+ "type": "number"
70471
+ },
70008
70472
  "cursor": {
70009
70473
  "$ref": "#/definitions/Cursor"
70010
70474
  },
@@ -70191,6 +70655,10 @@
70191
70655
  "boundsPadding",
70192
70656
  "childrenPickable",
70193
70657
  "clipRange",
70658
+ "connectedStyle",
70659
+ "connectedType",
70660
+ "connectedX",
70661
+ "connectedY",
70194
70662
  "cursor",
70195
70663
  "curveType",
70196
70664
  "customPickShape",
@@ -70957,6 +71425,23 @@
70957
71425
  },
70958
71426
  "Required<IGroupGraphicAttribute>": {
70959
71427
  "properties": {
71428
+ "alignContent": {
71429
+ "enum": [
71430
+ "center",
71431
+ "flex-start",
71432
+ "space-around",
71433
+ "space-between"
71434
+ ],
71435
+ "type": "string"
71436
+ },
71437
+ "alignItems": {
71438
+ "enum": [
71439
+ "center",
71440
+ "flex-end",
71441
+ "flex-start"
71442
+ ],
71443
+ "type": "string"
71444
+ },
70960
71445
  "alpha": {
70961
71446
  "type": "number"
70962
71447
  },
@@ -71094,6 +71579,13 @@
71094
71579
  "customPickShape": {
71095
71580
  "typeof": "function"
71096
71581
  },
71582
+ "display": {
71583
+ "enum": [
71584
+ "flex",
71585
+ "relative"
71586
+ ],
71587
+ "type": "string"
71588
+ },
71097
71589
  "dx": {
71098
71590
  "type": "number"
71099
71591
  },
@@ -71109,12 +71601,38 @@
71109
71601
  "fillOpacity": {
71110
71602
  "type": "number"
71111
71603
  },
71604
+ "flexDirection": {
71605
+ "enum": [
71606
+ "column",
71607
+ "column-reverse",
71608
+ "row",
71609
+ "row-reverse"
71610
+ ],
71611
+ "type": "string"
71612
+ },
71613
+ "flexWrap": {
71614
+ "enum": [
71615
+ "nowrap",
71616
+ "wrap"
71617
+ ],
71618
+ "type": "string"
71619
+ },
71112
71620
  "height": {
71113
71621
  "type": "number"
71114
71622
  },
71115
71623
  "innerBorder": {
71116
71624
  "$ref": "#/definitions/Partial<IBorderStyle>"
71117
71625
  },
71626
+ "justifyContent": {
71627
+ "enum": [
71628
+ "center",
71629
+ "flex-end",
71630
+ "flex-start",
71631
+ "space-around",
71632
+ "space-between"
71633
+ ],
71634
+ "type": "string"
71635
+ },
71118
71636
  "keepDirIn3d": {
71119
71637
  "type": "boolean"
71120
71638
  },
@@ -71262,6 +71780,8 @@
71262
71780
  }
71263
71781
  },
71264
71782
  "required": [
71783
+ "alignContent",
71784
+ "alignItems",
71265
71785
  "alpha",
71266
71786
  "anchor",
71267
71787
  "anchor3d",
@@ -71277,13 +71797,17 @@
71277
71797
  "cornerRadius",
71278
71798
  "cursor",
71279
71799
  "customPickShape",
71800
+ "display",
71280
71801
  "dx",
71281
71802
  "dy",
71282
71803
  "dz",
71283
71804
  "fill",
71284
71805
  "fillOpacity",
71806
+ "flexDirection",
71807
+ "flexWrap",
71285
71808
  "height",
71286
71809
  "innerBorder",
71810
+ "justifyContent",
71287
71811
  "keepDirIn3d",
71288
71812
  "layout",
71289
71813
  "lineCap",
@@ -71811,6 +72335,23 @@
71811
72335
  "clipRangeByDimension": {
71812
72336
  "$ref": "#/definitions/IClipRangeByDimensionType"
71813
72337
  },
72338
+ "connectedStyle": {
72339
+ "typeof": "function"
72340
+ },
72341
+ "connectedType": {
72342
+ "enum": [
72343
+ "connect",
72344
+ "none",
72345
+ "zero"
72346
+ ],
72347
+ "type": "string"
72348
+ },
72349
+ "connectedX": {
72350
+ "type": "number"
72351
+ },
72352
+ "connectedY": {
72353
+ "type": "number"
72354
+ },
71814
72355
  "cursor": {
71815
72356
  "$ref": "#/definitions/Cursor"
71816
72357
  },
@@ -71998,6 +72539,10 @@
71998
72539
  "childrenPickable",
71999
72540
  "clipRange",
72000
72541
  "clipRangeByDimension",
72542
+ "connectedStyle",
72543
+ "connectedType",
72544
+ "connectedX",
72545
+ "connectedY",
72001
72546
  "cursor",
72002
72547
  "curveType",
72003
72548
  "customPickShape",
@@ -74793,6 +75338,13 @@
74793
75338
  "customPickShape": {
74794
75339
  "typeof": "function"
74795
75340
  },
75341
+ "direction": {
75342
+ "enum": [
75343
+ "horizontal",
75344
+ "vertical"
75345
+ ],
75346
+ "type": "string"
75347
+ },
74796
75348
  "dx": {
74797
75349
  "type": "number"
74798
75350
  },
@@ -74999,6 +75551,13 @@
74999
75551
  "visible": {
75000
75552
  "type": "boolean"
75001
75553
  },
75554
+ "wordBreak": {
75555
+ "enum": [
75556
+ "break-all",
75557
+ "break-word"
75558
+ ],
75559
+ "type": "string"
75560
+ },
75002
75561
  "x": {
75003
75562
  "type": "number"
75004
75563
  },
@@ -75026,6 +75585,7 @@
75026
75585
  "childrenPickable",
75027
75586
  "cursor",
75028
75587
  "customPickShape",
75588
+ "direction",
75029
75589
  "dx",
75030
75590
  "dy",
75031
75591
  "dz",
@@ -75077,6 +75637,7 @@
75077
75637
  "textureSize",
75078
75638
  "underline",
75079
75639
  "visible",
75640
+ "wordBreak",
75080
75641
  "x",
75081
75642
  "y",
75082
75643
  "z",
@@ -78421,6 +78982,25 @@
78421
78982
  ],
78422
78983
  "type": "string"
78423
78984
  },
78985
+ "SheetParseOptions": {
78986
+ "properties": {
78987
+ "options": {
78988
+ "$ref": "#/definitions/IDsvParserOptions"
78989
+ },
78990
+ "type": {
78991
+ "enum": [
78992
+ "csv",
78993
+ "dsv",
78994
+ "tsv"
78995
+ ],
78996
+ "type": "string"
78997
+ }
78998
+ },
78999
+ "required": [
79000
+ "type"
79001
+ ],
79002
+ "type": "object"
79003
+ },
78424
79004
  "SlotAssignmentMode": {
78425
79005
  "enum": [
78426
79006
  "manual",
@@ -78582,6 +79162,16 @@
78582
79162
  ],
78583
79163
  "type": "string"
78584
79164
  },
79165
+ "TooltipContentProperty<ITooltipTextTheme>": {
79166
+ "anyOf": [
79167
+ {
79168
+ "$ref": "#/definitions/ITooltipTextTheme"
79169
+ },
79170
+ {
79171
+ "typeof": "function"
79172
+ }
79173
+ ]
79174
+ },
78585
79175
  "TooltipContentProperty<boolean>": {
78586
79176
  "anyOf": [
78587
79177
  {
@@ -78592,6 +79182,16 @@
78592
79182
  }
78593
79183
  ]
78594
79184
  },
79185
+ "TooltipContentProperty<number>": {
79186
+ "anyOf": [
79187
+ {
79188
+ "typeof": "function"
79189
+ },
79190
+ {
79191
+ "type": "number"
79192
+ }
79193
+ ]
79194
+ },
78595
79195
  "TooltipContentProperty<string>": {
78596
79196
  "anyOf": [
78597
79197
  {