@visactor/vchart-schema 1.2.1-alpha.3 → 1.2.1-beta.1

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 +560 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "1.2.1-alpha.3",
3
+ "version": "1.2.1-beta.1",
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",
@@ -18443,6 +18454,23 @@
18443
18454
  }
18444
18455
  ]
18445
18456
  },
18457
+ "connectedStyle": {
18458
+ "typeof": "function"
18459
+ },
18460
+ "connectedType": {
18461
+ "enum": [
18462
+ "connect",
18463
+ "none",
18464
+ "zero"
18465
+ ],
18466
+ "type": "string"
18467
+ },
18468
+ "connectedX": {
18469
+ "type": "number"
18470
+ },
18471
+ "connectedY": {
18472
+ "type": "number"
18473
+ },
18446
18474
  "fill": {
18447
18475
  "$ref": "#/definitions/IFillType"
18448
18476
  },
@@ -25264,6 +25292,12 @@
25264
25292
  "getPointAt": {
25265
25293
  "typeof": "function"
25266
25294
  },
25295
+ "originP1": {
25296
+ "$ref": "#/definitions/IPointLike"
25297
+ },
25298
+ "originP2": {
25299
+ "$ref": "#/definitions/IPointLike"
25300
+ },
25267
25301
  "p0": {
25268
25302
  "$ref": "#/definitions/IPoint"
25269
25303
  },
@@ -25635,7 +25669,14 @@
25635
25669
  "description": "数据唯一标识"
25636
25670
  },
25637
25671
  "parser": {
25638
- "typeof": "function"
25672
+ "anyOf": [
25673
+ {
25674
+ "$ref": "#/definitions/SheetParseOptions"
25675
+ },
25676
+ {
25677
+ "$ref": "#/definitions/CommonParseOptions"
25678
+ }
25679
+ ]
25639
25680
  },
25640
25681
  "transforms": {
25641
25682
  "description": "数据 transform 配置",
@@ -26064,6 +26105,23 @@
26064
26105
  },
26065
26106
  "IDiscreteLegendTheme": {
26066
26107
  "properties": {
26108
+ "alignContent": {
26109
+ "enum": [
26110
+ "center",
26111
+ "flex-start",
26112
+ "space-around",
26113
+ "space-between"
26114
+ ],
26115
+ "type": "string"
26116
+ },
26117
+ "alignItems": {
26118
+ "enum": [
26119
+ "center",
26120
+ "flex-end",
26121
+ "flex-start"
26122
+ ],
26123
+ "type": "string"
26124
+ },
26067
26125
  "allowAllCanceled": {
26068
26126
  "type": "boolean"
26069
26127
  },
@@ -26238,6 +26296,13 @@
26238
26296
  "customPickShape": {
26239
26297
  "typeof": "function"
26240
26298
  },
26299
+ "display": {
26300
+ "enum": [
26301
+ "flex",
26302
+ "relative"
26303
+ ],
26304
+ "type": "string"
26305
+ },
26241
26306
  "dx": {
26242
26307
  "type": "number"
26243
26308
  },
@@ -26261,6 +26326,22 @@
26261
26326
  "description": "是否进行数据筛选,默认为 true",
26262
26327
  "type": "boolean"
26263
26328
  },
26329
+ "flexDirection": {
26330
+ "enum": [
26331
+ "column",
26332
+ "column-reverse",
26333
+ "row",
26334
+ "row-reverse"
26335
+ ],
26336
+ "type": "string"
26337
+ },
26338
+ "flexWrap": {
26339
+ "enum": [
26340
+ "nowrap",
26341
+ "wrap"
26342
+ ],
26343
+ "type": "string"
26344
+ },
26264
26345
  "height": {
26265
26346
  "anyOf": [
26266
26347
  {
@@ -26292,6 +26373,16 @@
26292
26373
  "$ref": "#/definitions/IItem",
26293
26374
  "description": "图例项配置"
26294
26375
  },
26376
+ "justifyContent": {
26377
+ "enum": [
26378
+ "center",
26379
+ "flex-end",
26380
+ "flex-start",
26381
+ "space-around",
26382
+ "space-between"
26383
+ ],
26384
+ "type": "string"
26385
+ },
26295
26386
  "keepDirIn3d": {
26296
26387
  "type": "boolean"
26297
26388
  },
@@ -27063,6 +27154,14 @@
27063
27154
  ],
27064
27155
  "type": "object"
27065
27156
  },
27157
+ "IDsvParserOptions": {
27158
+ "properties": {
27159
+ "delimiter": {
27160
+ "type": "string"
27161
+ }
27162
+ },
27163
+ "type": "object"
27164
+ },
27066
27165
  "IExtensionGroupMarkSpec": {
27067
27166
  "properties": {
27068
27167
  "children": {
@@ -32696,7 +32795,14 @@
32696
32795
  "description": "数据唯一标识"
32697
32796
  },
32698
32797
  "parser": {
32699
- "typeof": "function"
32798
+ "anyOf": [
32799
+ {
32800
+ "$ref": "#/definitions/SheetParseOptions"
32801
+ },
32802
+ {
32803
+ "$ref": "#/definitions/CommonParseOptions"
32804
+ }
32805
+ ]
32700
32806
  },
32701
32807
  "transforms": {
32702
32808
  "description": "数据 transform 配置",
@@ -48605,6 +48711,23 @@
48605
48711
  },
48606
48712
  "ISegment": {
48607
48713
  "properties": {
48714
+ "connectedStyle": {
48715
+ "typeof": "function"
48716
+ },
48717
+ "connectedType": {
48718
+ "enum": [
48719
+ "connect",
48720
+ "none",
48721
+ "zero"
48722
+ ],
48723
+ "type": "string"
48724
+ },
48725
+ "connectedX": {
48726
+ "type": "number"
48727
+ },
48728
+ "connectedY": {
48729
+ "type": "number"
48730
+ },
48608
48731
  "lineCap": {
48609
48732
  "$ref": "#/definitions/CanvasLineCap"
48610
48733
  },
@@ -51738,6 +51861,12 @@
51738
51861
  "description": "刻度线朝向,默认朝外(坐标线包围盒外部)",
51739
51862
  "type": "boolean"
51740
51863
  },
51864
+ "noDecimals": {
51865
+ "default": false,
51866
+ "description": "当配置了 tickStep 或 forceTickCount 时不生效。",
51867
+ "since": "1.3.0",
51868
+ "type": "boolean"
51869
+ },
51741
51870
  "state": {
51742
51871
  "typeof": "function"
51743
51872
  },
@@ -51757,6 +51886,16 @@
51757
51886
  "description": "建议的tick数量,并不保证结果一定是配置值",
51758
51887
  "type": "number"
51759
51888
  },
51889
+ "tickMode": {
51890
+ "default": "'average'",
51891
+ "description": "连续轴 tick 生成算法:\n'average': 尽可能均分;\n'd3':与 d3 默认逻辑一致,以 [1, 2, 5] 为基数生成;",
51892
+ "enum": [
51893
+ "average",
51894
+ "d3"
51895
+ ],
51896
+ "since": "1.3.0",
51897
+ "type": "string"
51898
+ },
51760
51899
  "tickSize": {
51761
51900
  "default": 4,
51762
51901
  "description": "Length of tick lines\n坐标轴刻度线的长度",
@@ -57754,7 +57893,7 @@
57754
57893
  },
57755
57894
  "Map<Function,(...args:any[])=>void>": {
57756
57895
  "properties": {
57757
- "__@toStringTag@11028": {
57896
+ "__@toStringTag@11330": {
57758
57897
  "type": "string"
57759
57898
  },
57760
57899
  "size": {
@@ -57762,14 +57901,14 @@
57762
57901
  }
57763
57902
  },
57764
57903
  "required": [
57765
- "__@toStringTag@11028",
57904
+ "__@toStringTag@11330",
57766
57905
  "size"
57767
57906
  ],
57768
57907
  "type": "object"
57769
57908
  },
57770
57909
  "Map<number,IGraphicPicker>": {
57771
57910
  "properties": {
57772
- "__@toStringTag@11028": {
57911
+ "__@toStringTag@11330": {
57773
57912
  "type": "string"
57774
57913
  },
57775
57914
  "size": {
@@ -57777,14 +57916,14 @@
57777
57916
  }
57778
57917
  },
57779
57918
  "required": [
57780
- "__@toStringTag@11028",
57919
+ "__@toStringTag@11330",
57781
57920
  "size"
57782
57921
  ],
57783
57922
  "type": "object"
57784
57923
  },
57785
57924
  "Map<number,IGraphicRender>": {
57786
57925
  "properties": {
57787
- "__@toStringTag@11028": {
57926
+ "__@toStringTag@11330": {
57788
57927
  "type": "string"
57789
57928
  },
57790
57929
  "size": {
@@ -57792,14 +57931,14 @@
57792
57931
  }
57793
57932
  },
57794
57933
  "required": [
57795
- "__@toStringTag@11028",
57934
+ "__@toStringTag@11330",
57796
57935
  "size"
57797
57936
  ],
57798
57937
  "type": "object"
57799
57938
  },
57800
57939
  "Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
57801
57940
  "properties": {
57802
- "__@toStringTag@11028": {
57941
+ "__@toStringTag@11330": {
57803
57942
  "type": "string"
57804
57943
  },
57805
57944
  "size": {
@@ -57807,14 +57946,14 @@
57807
57946
  }
57808
57947
  },
57809
57948
  "required": [
57810
- "__@toStringTag@11028",
57949
+ "__@toStringTag@11330",
57811
57950
  "size"
57812
57951
  ],
57813
57952
  "type": "object"
57814
57953
  },
57815
57954
  "Map<string,Map<number,IGraphicRender>>": {
57816
57955
  "properties": {
57817
- "__@toStringTag@11028": {
57956
+ "__@toStringTag@11330": {
57818
57957
  "type": "string"
57819
57958
  },
57820
57959
  "size": {
@@ -57822,14 +57961,14 @@
57822
57961
  }
57823
57962
  },
57824
57963
  "required": [
57825
- "__@toStringTag@11028",
57964
+ "__@toStringTag@11330",
57826
57965
  "size"
57827
57966
  ],
57828
57967
  "type": "object"
57829
57968
  },
57830
57969
  "Map<string,any>": {
57831
57970
  "properties": {
57832
- "__@toStringTag@11028": {
57971
+ "__@toStringTag@11330": {
57833
57972
  "type": "string"
57834
57973
  },
57835
57974
  "size": {
@@ -57837,14 +57976,14 @@
57837
57976
  }
57838
57977
  },
57839
57978
  "required": [
57840
- "__@toStringTag@11028",
57979
+ "__@toStringTag@11330",
57841
57980
  "size"
57842
57981
  ],
57843
57982
  "type": "object"
57844
57983
  },
57845
57984
  "Map<string|HTMLCanvasElement|HTMLImageElement,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
57846
57985
  "properties": {
57847
- "__@toStringTag@11028": {
57986
+ "__@toStringTag@11330": {
57848
57987
  "type": "string"
57849
57988
  },
57850
57989
  "size": {
@@ -57852,14 +57991,14 @@
57852
57991
  }
57853
57992
  },
57854
57993
  "required": [
57855
- "__@toStringTag@11028",
57994
+ "__@toStringTag@11330",
57856
57995
  "size"
57857
57996
  ],
57858
57997
  "type": "object"
57859
57998
  },
57860
57999
  "Map<string|number,IAnimate>": {
57861
58000
  "properties": {
57862
- "__@toStringTag@11028": {
58001
+ "__@toStringTag@11330": {
57863
58002
  "type": "string"
57864
58003
  },
57865
58004
  "size": {
@@ -57867,7 +58006,7 @@
57867
58006
  }
57868
58007
  },
57869
58008
  "required": [
57870
- "__@toStringTag@11028",
58009
+ "__@toStringTag@11330",
57871
58010
  "size"
57872
58011
  ],
57873
58012
  "type": "object"
@@ -58195,6 +58334,23 @@
58195
58334
  },
58196
58335
  "Omit<DiscreteLegendAttrs,\"title\"|\"layout\"|\"items\"|\"pager\"|\"item\">": {
58197
58336
  "properties": {
58337
+ "alignContent": {
58338
+ "enum": [
58339
+ "center",
58340
+ "flex-start",
58341
+ "space-around",
58342
+ "space-between"
58343
+ ],
58344
+ "type": "string"
58345
+ },
58346
+ "alignItems": {
58347
+ "enum": [
58348
+ "center",
58349
+ "flex-end",
58350
+ "flex-start"
58351
+ ],
58352
+ "type": "string"
58353
+ },
58198
58354
  "allowAllCanceled": {
58199
58355
  "type": "boolean"
58200
58356
  },
@@ -58347,6 +58503,13 @@
58347
58503
  },
58348
58504
  "type": "array"
58349
58505
  },
58506
+ "display": {
58507
+ "enum": [
58508
+ "flex",
58509
+ "relative"
58510
+ ],
58511
+ "type": "string"
58512
+ },
58350
58513
  "dx": {
58351
58514
  "type": "number"
58352
58515
  },
@@ -58362,6 +58525,22 @@
58362
58525
  "fillOpacity": {
58363
58526
  "type": "number"
58364
58527
  },
58528
+ "flexDirection": {
58529
+ "enum": [
58530
+ "column",
58531
+ "column-reverse",
58532
+ "row",
58533
+ "row-reverse"
58534
+ ],
58535
+ "type": "string"
58536
+ },
58537
+ "flexWrap": {
58538
+ "enum": [
58539
+ "nowrap",
58540
+ "wrap"
58541
+ ],
58542
+ "type": "string"
58543
+ },
58365
58544
  "height": {
58366
58545
  "type": "number"
58367
58546
  },
@@ -58374,6 +58553,16 @@
58374
58553
  "interactive": {
58375
58554
  "type": "boolean"
58376
58555
  },
58556
+ "justifyContent": {
58557
+ "enum": [
58558
+ "center",
58559
+ "flex-end",
58560
+ "flex-start",
58561
+ "space-around",
58562
+ "space-between"
58563
+ ],
58564
+ "type": "string"
58565
+ },
58377
58566
  "keepDirIn3d": {
58378
58567
  "type": "boolean"
58379
58568
  },
@@ -60096,6 +60285,23 @@
60096
60285
  },
60097
60286
  "Omit<IGroupGraphicAttribute,\"background\">": {
60098
60287
  "properties": {
60288
+ "alignContent": {
60289
+ "enum": [
60290
+ "center",
60291
+ "flex-start",
60292
+ "space-around",
60293
+ "space-between"
60294
+ ],
60295
+ "type": "string"
60296
+ },
60297
+ "alignItems": {
60298
+ "enum": [
60299
+ "center",
60300
+ "flex-end",
60301
+ "flex-start"
60302
+ ],
60303
+ "type": "string"
60304
+ },
60099
60305
  "alpha": {
60100
60306
  "type": "number"
60101
60307
  },
@@ -60220,6 +60426,13 @@
60220
60426
  "customPickShape": {
60221
60427
  "typeof": "function"
60222
60428
  },
60429
+ "display": {
60430
+ "enum": [
60431
+ "flex",
60432
+ "relative"
60433
+ ],
60434
+ "type": "string"
60435
+ },
60223
60436
  "dx": {
60224
60437
  "type": "number"
60225
60438
  },
@@ -60235,12 +60448,38 @@
60235
60448
  "fillOpacity": {
60236
60449
  "type": "number"
60237
60450
  },
60451
+ "flexDirection": {
60452
+ "enum": [
60453
+ "column",
60454
+ "column-reverse",
60455
+ "row",
60456
+ "row-reverse"
60457
+ ],
60458
+ "type": "string"
60459
+ },
60460
+ "flexWrap": {
60461
+ "enum": [
60462
+ "nowrap",
60463
+ "wrap"
60464
+ ],
60465
+ "type": "string"
60466
+ },
60238
60467
  "height": {
60239
60468
  "type": "number"
60240
60469
  },
60241
60470
  "innerBorder": {
60242
60471
  "$ref": "#/definitions/Partial<IBorderStyle>"
60243
60472
  },
60473
+ "justifyContent": {
60474
+ "enum": [
60475
+ "center",
60476
+ "flex-end",
60477
+ "flex-start",
60478
+ "space-around",
60479
+ "space-between"
60480
+ ],
60481
+ "type": "string"
60482
+ },
60244
60483
  "keepDirIn3d": {
60245
60484
  "type": "boolean"
60246
60485
  },
@@ -61306,6 +61545,23 @@
61306
61545
  },
61307
61546
  "Omit<Omit<PagerAttributes,\"total\">&{space?:number;animation?:boolean;animationDuration?:number;animationEasing?:EasingType;},\"textStyle\"|\"handler\">": {
61308
61547
  "properties": {
61548
+ "alignContent": {
61549
+ "enum": [
61550
+ "center",
61551
+ "flex-start",
61552
+ "space-around",
61553
+ "space-between"
61554
+ ],
61555
+ "type": "string"
61556
+ },
61557
+ "alignItems": {
61558
+ "enum": [
61559
+ "center",
61560
+ "flex-end",
61561
+ "flex-start"
61562
+ ],
61563
+ "type": "string"
61564
+ },
61309
61565
  "alpha": {
61310
61566
  "type": "number"
61311
61567
  },
@@ -61455,6 +61711,13 @@
61455
61711
  "defaultCurrent": {
61456
61712
  "type": "number"
61457
61713
  },
61714
+ "display": {
61715
+ "enum": [
61716
+ "flex",
61717
+ "relative"
61718
+ ],
61719
+ "type": "string"
61720
+ },
61458
61721
  "dx": {
61459
61722
  "type": "number"
61460
61723
  },
@@ -61470,12 +61733,38 @@
61470
61733
  "fillOpacity": {
61471
61734
  "type": "number"
61472
61735
  },
61736
+ "flexDirection": {
61737
+ "enum": [
61738
+ "column",
61739
+ "column-reverse",
61740
+ "row",
61741
+ "row-reverse"
61742
+ ],
61743
+ "type": "string"
61744
+ },
61745
+ "flexWrap": {
61746
+ "enum": [
61747
+ "nowrap",
61748
+ "wrap"
61749
+ ],
61750
+ "type": "string"
61751
+ },
61473
61752
  "height": {
61474
61753
  "type": "number"
61475
61754
  },
61476
61755
  "innerBorder": {
61477
61756
  "$ref": "#/definitions/Partial<IBorderStyle>"
61478
61757
  },
61758
+ "justifyContent": {
61759
+ "enum": [
61760
+ "center",
61761
+ "flex-end",
61762
+ "flex-start",
61763
+ "space-around",
61764
+ "space-between"
61765
+ ],
61766
+ "type": "string"
61767
+ },
61479
61768
  "keepDirIn3d": {
61480
61769
  "type": "boolean"
61481
61770
  },
@@ -61656,6 +61945,22 @@
61656
61945
  "avoidBaseMark": {
61657
61946
  "type": "boolean"
61658
61947
  },
61948
+ "avoidMarks": {
61949
+ "anyOf": [
61950
+ {
61951
+ "items": {
61952
+ "type": "string"
61953
+ },
61954
+ "type": "array"
61955
+ },
61956
+ {
61957
+ "items": {
61958
+ "$ref": "#/definitions/IGraphic<Partial<IGraphicAttribute>>"
61959
+ },
61960
+ "type": "array"
61961
+ }
61962
+ ]
61963
+ },
61659
61964
  "clampForce": {
61660
61965
  "type": "boolean"
61661
61966
  },
@@ -62321,6 +62626,23 @@
62321
62626
  "clipRange": {
62322
62627
  "type": "number"
62323
62628
  },
62629
+ "connectedStyle": {
62630
+ "typeof": "function"
62631
+ },
62632
+ "connectedType": {
62633
+ "enum": [
62634
+ "connect",
62635
+ "none",
62636
+ "zero"
62637
+ ],
62638
+ "type": "string"
62639
+ },
62640
+ "connectedX": {
62641
+ "type": "number"
62642
+ },
62643
+ "connectedY": {
62644
+ "type": "number"
62645
+ },
62324
62646
  "cursor": {
62325
62647
  "$ref": "#/definitions/Cursor"
62326
62648
  },
@@ -63433,6 +63755,23 @@
63433
63755
  },
63434
63756
  "Partial<IGroupGraphicAttribute>": {
63435
63757
  "properties": {
63758
+ "alignContent": {
63759
+ "enum": [
63760
+ "center",
63761
+ "flex-start",
63762
+ "space-around",
63763
+ "space-between"
63764
+ ],
63765
+ "type": "string"
63766
+ },
63767
+ "alignItems": {
63768
+ "enum": [
63769
+ "center",
63770
+ "flex-end",
63771
+ "flex-start"
63772
+ ],
63773
+ "type": "string"
63774
+ },
63436
63775
  "alpha": {
63437
63776
  "type": "number"
63438
63777
  },
@@ -63570,6 +63909,13 @@
63570
63909
  "customPickShape": {
63571
63910
  "typeof": "function"
63572
63911
  },
63912
+ "display": {
63913
+ "enum": [
63914
+ "flex",
63915
+ "relative"
63916
+ ],
63917
+ "type": "string"
63918
+ },
63573
63919
  "dx": {
63574
63920
  "type": "number"
63575
63921
  },
@@ -63585,12 +63931,38 @@
63585
63931
  "fillOpacity": {
63586
63932
  "type": "number"
63587
63933
  },
63934
+ "flexDirection": {
63935
+ "enum": [
63936
+ "column",
63937
+ "column-reverse",
63938
+ "row",
63939
+ "row-reverse"
63940
+ ],
63941
+ "type": "string"
63942
+ },
63943
+ "flexWrap": {
63944
+ "enum": [
63945
+ "nowrap",
63946
+ "wrap"
63947
+ ],
63948
+ "type": "string"
63949
+ },
63588
63950
  "height": {
63589
63951
  "type": "number"
63590
63952
  },
63591
63953
  "innerBorder": {
63592
63954
  "$ref": "#/definitions/Partial<IBorderStyle>"
63593
63955
  },
63956
+ "justifyContent": {
63957
+ "enum": [
63958
+ "center",
63959
+ "flex-end",
63960
+ "flex-start",
63961
+ "space-around",
63962
+ "space-between"
63963
+ ],
63964
+ "type": "string"
63965
+ },
63594
63966
  "keepDirIn3d": {
63595
63967
  "type": "boolean"
63596
63968
  },
@@ -64309,6 +64681,23 @@
64309
64681
  "clipRangeByDimension": {
64310
64682
  "$ref": "#/definitions/IClipRangeByDimensionType"
64311
64683
  },
64684
+ "connectedStyle": {
64685
+ "typeof": "function"
64686
+ },
64687
+ "connectedType": {
64688
+ "enum": [
64689
+ "connect",
64690
+ "none",
64691
+ "zero"
64692
+ ],
64693
+ "type": "string"
64694
+ },
64695
+ "connectedX": {
64696
+ "type": "number"
64697
+ },
64698
+ "connectedY": {
64699
+ "type": "number"
64700
+ },
64312
64701
  "cursor": {
64313
64702
  "$ref": "#/definitions/Cursor"
64314
64703
  },
@@ -67047,6 +67436,13 @@
67047
67436
  "customPickShape": {
67048
67437
  "typeof": "function"
67049
67438
  },
67439
+ "direction": {
67440
+ "enum": [
67441
+ "horizontal",
67442
+ "vertical"
67443
+ ],
67444
+ "type": "string"
67445
+ },
67050
67446
  "dx": {
67051
67447
  "type": "number"
67052
67448
  },
@@ -67253,6 +67649,13 @@
67253
67649
  "visible": {
67254
67650
  "type": "boolean"
67255
67651
  },
67652
+ "wordBreak": {
67653
+ "enum": [
67654
+ "break-all",
67655
+ "break-word"
67656
+ ],
67657
+ "type": "string"
67658
+ },
67256
67659
  "x": {
67257
67660
  "type": "number"
67258
67661
  },
@@ -69314,34 +69717,34 @@
69314
69717
  },
69315
69718
  "Promise<FontFaceSet>": {
69316
69719
  "properties": {
69317
- "__@toStringTag@11028": {
69720
+ "__@toStringTag@11330": {
69318
69721
  "type": "string"
69319
69722
  }
69320
69723
  },
69321
69724
  "required": [
69322
- "__@toStringTag@11028"
69725
+ "__@toStringTag@11330"
69323
69726
  ],
69324
69727
  "type": "object"
69325
69728
  },
69326
69729
  "Promise<ServiceWorkerRegistration>": {
69327
69730
  "properties": {
69328
- "__@toStringTag@11028": {
69731
+ "__@toStringTag@11330": {
69329
69732
  "type": "string"
69330
69733
  }
69331
69734
  },
69332
69735
  "required": [
69333
- "__@toStringTag@11028"
69736
+ "__@toStringTag@11330"
69334
69737
  ],
69335
69738
  "type": "object"
69336
69739
  },
69337
69740
  "Promise<any>": {
69338
69741
  "properties": {
69339
- "__@toStringTag@11028": {
69742
+ "__@toStringTag@11330": {
69340
69743
  "type": "string"
69341
69744
  }
69342
69745
  },
69343
69746
  "required": [
69344
- "__@toStringTag@11028"
69747
+ "__@toStringTag@11330"
69345
69748
  ],
69346
69749
  "type": "object"
69347
69750
  },
@@ -69932,6 +70335,23 @@
69932
70335
  "clipRange": {
69933
70336
  "type": "number"
69934
70337
  },
70338
+ "connectedStyle": {
70339
+ "typeof": "function"
70340
+ },
70341
+ "connectedType": {
70342
+ "enum": [
70343
+ "connect",
70344
+ "none",
70345
+ "zero"
70346
+ ],
70347
+ "type": "string"
70348
+ },
70349
+ "connectedX": {
70350
+ "type": "number"
70351
+ },
70352
+ "connectedY": {
70353
+ "type": "number"
70354
+ },
69935
70355
  "cursor": {
69936
70356
  "$ref": "#/definitions/Cursor"
69937
70357
  },
@@ -70118,6 +70538,10 @@
70118
70538
  "boundsPadding",
70119
70539
  "childrenPickable",
70120
70540
  "clipRange",
70541
+ "connectedStyle",
70542
+ "connectedType",
70543
+ "connectedX",
70544
+ "connectedY",
70121
70545
  "cursor",
70122
70546
  "curveType",
70123
70547
  "customPickShape",
@@ -70884,6 +71308,23 @@
70884
71308
  },
70885
71309
  "Required<IGroupGraphicAttribute>": {
70886
71310
  "properties": {
71311
+ "alignContent": {
71312
+ "enum": [
71313
+ "center",
71314
+ "flex-start",
71315
+ "space-around",
71316
+ "space-between"
71317
+ ],
71318
+ "type": "string"
71319
+ },
71320
+ "alignItems": {
71321
+ "enum": [
71322
+ "center",
71323
+ "flex-end",
71324
+ "flex-start"
71325
+ ],
71326
+ "type": "string"
71327
+ },
70887
71328
  "alpha": {
70888
71329
  "type": "number"
70889
71330
  },
@@ -71021,6 +71462,13 @@
71021
71462
  "customPickShape": {
71022
71463
  "typeof": "function"
71023
71464
  },
71465
+ "display": {
71466
+ "enum": [
71467
+ "flex",
71468
+ "relative"
71469
+ ],
71470
+ "type": "string"
71471
+ },
71024
71472
  "dx": {
71025
71473
  "type": "number"
71026
71474
  },
@@ -71036,12 +71484,38 @@
71036
71484
  "fillOpacity": {
71037
71485
  "type": "number"
71038
71486
  },
71487
+ "flexDirection": {
71488
+ "enum": [
71489
+ "column",
71490
+ "column-reverse",
71491
+ "row",
71492
+ "row-reverse"
71493
+ ],
71494
+ "type": "string"
71495
+ },
71496
+ "flexWrap": {
71497
+ "enum": [
71498
+ "nowrap",
71499
+ "wrap"
71500
+ ],
71501
+ "type": "string"
71502
+ },
71039
71503
  "height": {
71040
71504
  "type": "number"
71041
71505
  },
71042
71506
  "innerBorder": {
71043
71507
  "$ref": "#/definitions/Partial<IBorderStyle>"
71044
71508
  },
71509
+ "justifyContent": {
71510
+ "enum": [
71511
+ "center",
71512
+ "flex-end",
71513
+ "flex-start",
71514
+ "space-around",
71515
+ "space-between"
71516
+ ],
71517
+ "type": "string"
71518
+ },
71045
71519
  "keepDirIn3d": {
71046
71520
  "type": "boolean"
71047
71521
  },
@@ -71189,6 +71663,8 @@
71189
71663
  }
71190
71664
  },
71191
71665
  "required": [
71666
+ "alignContent",
71667
+ "alignItems",
71192
71668
  "alpha",
71193
71669
  "anchor",
71194
71670
  "anchor3d",
@@ -71204,13 +71680,17 @@
71204
71680
  "cornerRadius",
71205
71681
  "cursor",
71206
71682
  "customPickShape",
71683
+ "display",
71207
71684
  "dx",
71208
71685
  "dy",
71209
71686
  "dz",
71210
71687
  "fill",
71211
71688
  "fillOpacity",
71689
+ "flexDirection",
71690
+ "flexWrap",
71212
71691
  "height",
71213
71692
  "innerBorder",
71693
+ "justifyContent",
71214
71694
  "keepDirIn3d",
71215
71695
  "layout",
71216
71696
  "lineCap",
@@ -71738,6 +72218,23 @@
71738
72218
  "clipRangeByDimension": {
71739
72219
  "$ref": "#/definitions/IClipRangeByDimensionType"
71740
72220
  },
72221
+ "connectedStyle": {
72222
+ "typeof": "function"
72223
+ },
72224
+ "connectedType": {
72225
+ "enum": [
72226
+ "connect",
72227
+ "none",
72228
+ "zero"
72229
+ ],
72230
+ "type": "string"
72231
+ },
72232
+ "connectedX": {
72233
+ "type": "number"
72234
+ },
72235
+ "connectedY": {
72236
+ "type": "number"
72237
+ },
71741
72238
  "cursor": {
71742
72239
  "$ref": "#/definitions/Cursor"
71743
72240
  },
@@ -71925,6 +72422,10 @@
71925
72422
  "childrenPickable",
71926
72423
  "clipRange",
71927
72424
  "clipRangeByDimension",
72425
+ "connectedStyle",
72426
+ "connectedType",
72427
+ "connectedX",
72428
+ "connectedY",
71928
72429
  "cursor",
71929
72430
  "curveType",
71930
72431
  "customPickShape",
@@ -74720,6 +75221,13 @@
74720
75221
  "customPickShape": {
74721
75222
  "typeof": "function"
74722
75223
  },
75224
+ "direction": {
75225
+ "enum": [
75226
+ "horizontal",
75227
+ "vertical"
75228
+ ],
75229
+ "type": "string"
75230
+ },
74723
75231
  "dx": {
74724
75232
  "type": "number"
74725
75233
  },
@@ -74926,6 +75434,13 @@
74926
75434
  "visible": {
74927
75435
  "type": "boolean"
74928
75436
  },
75437
+ "wordBreak": {
75438
+ "enum": [
75439
+ "break-all",
75440
+ "break-word"
75441
+ ],
75442
+ "type": "string"
75443
+ },
74929
75444
  "x": {
74930
75445
  "type": "number"
74931
75446
  },
@@ -74953,6 +75468,7 @@
74953
75468
  "childrenPickable",
74954
75469
  "cursor",
74955
75470
  "customPickShape",
75471
+ "direction",
74956
75472
  "dx",
74957
75473
  "dy",
74958
75474
  "dz",
@@ -75004,6 +75520,7 @@
75004
75520
  "textureSize",
75005
75521
  "underline",
75006
75522
  "visible",
75523
+ "wordBreak",
75007
75524
  "x",
75008
75525
  "y",
75009
75526
  "z",
@@ -78348,6 +78865,25 @@
78348
78865
  ],
78349
78866
  "type": "string"
78350
78867
  },
78868
+ "SheetParseOptions": {
78869
+ "properties": {
78870
+ "options": {
78871
+ "$ref": "#/definitions/IDsvParserOptions"
78872
+ },
78873
+ "type": {
78874
+ "enum": [
78875
+ "csv",
78876
+ "dsv",
78877
+ "tsv"
78878
+ ],
78879
+ "type": "string"
78880
+ }
78881
+ },
78882
+ "required": [
78883
+ "type"
78884
+ ],
78885
+ "type": "object"
78886
+ },
78351
78887
  "SlotAssignmentMode": {
78352
78888
  "enum": [
78353
78889
  "manual",