@visactor/vchart-schema 1.2.1-beta.1 → 1.2.2-hotfix.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/vchart.json +100 -563
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "1.2.1-beta.1",
3
+ "version": "1.2.2-hotfix.0",
4
4
  "description": "The VChart JSON schema file.",
5
5
  "sideEffects": false,
6
6
  "main": "vchart.json",
package/vchart.json CHANGED
@@ -708,17 +708,6 @@
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
- },
722
711
  "ControllerTypeEnum": {
723
712
  "enum": [
724
713
  "backward",
@@ -17778,6 +17767,12 @@
17778
17767
  },
17779
17768
  "IAreaChartSpec": {
17780
17769
  "properties": {
17770
+ "activePoint": {
17771
+ "default": false,
17772
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
17773
+ "since": "1.3.0",
17774
+ "type": "boolean"
17775
+ },
17781
17776
  "animation": {
17782
17777
  "description": "是否开启系列动画",
17783
17778
  "type": "boolean"
@@ -18454,23 +18449,6 @@
18454
18449
  }
18455
18450
  ]
18456
18451
  },
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
- },
18474
18452
  "fill": {
18475
18453
  "$ref": "#/definitions/IFillType"
18476
18454
  },
@@ -18503,6 +18481,12 @@
18503
18481
  },
18504
18482
  "IAreaSeriesSpec": {
18505
18483
  "properties": {
18484
+ "activePoint": {
18485
+ "default": false,
18486
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
18487
+ "since": "1.3.0",
18488
+ "type": "boolean"
18489
+ },
18506
18490
  "animation": {
18507
18491
  "description": "是否开启系列动画",
18508
18492
  "type": "boolean"
@@ -18812,7 +18796,14 @@
18812
18796
  "$ref": "#/definitions/Partial<IMarkTheme<ILineMarkSpec>>"
18813
18797
  },
18814
18798
  "point": {
18815
- "$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
18799
+ "allOf": [
18800
+ {
18801
+ "$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
18802
+ },
18803
+ {
18804
+ "typeof": "function"
18805
+ }
18806
+ ]
18816
18807
  }
18817
18808
  },
18818
18809
  "type": "object"
@@ -25292,12 +25283,6 @@
25292
25283
  "getPointAt": {
25293
25284
  "typeof": "function"
25294
25285
  },
25295
- "originP1": {
25296
- "$ref": "#/definitions/IPointLike"
25297
- },
25298
- "originP2": {
25299
- "$ref": "#/definitions/IPointLike"
25300
- },
25301
25286
  "p0": {
25302
25287
  "$ref": "#/definitions/IPoint"
25303
25288
  },
@@ -25669,14 +25654,7 @@
25669
25654
  "description": "数据唯一标识"
25670
25655
  },
25671
25656
  "parser": {
25672
- "anyOf": [
25673
- {
25674
- "$ref": "#/definitions/SheetParseOptions"
25675
- },
25676
- {
25677
- "$ref": "#/definitions/CommonParseOptions"
25678
- }
25679
- ]
25657
+ "typeof": "function"
25680
25658
  },
25681
25659
  "transforms": {
25682
25660
  "description": "数据 transform 配置",
@@ -26105,23 +26083,6 @@
26105
26083
  },
26106
26084
  "IDiscreteLegendTheme": {
26107
26085
  "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
- },
26125
26086
  "allowAllCanceled": {
26126
26087
  "type": "boolean"
26127
26088
  },
@@ -26296,13 +26257,6 @@
26296
26257
  "customPickShape": {
26297
26258
  "typeof": "function"
26298
26259
  },
26299
- "display": {
26300
- "enum": [
26301
- "flex",
26302
- "relative"
26303
- ],
26304
- "type": "string"
26305
- },
26306
26260
  "dx": {
26307
26261
  "type": "number"
26308
26262
  },
@@ -26326,22 +26280,6 @@
26326
26280
  "description": "是否进行数据筛选,默认为 true",
26327
26281
  "type": "boolean"
26328
26282
  },
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
- },
26345
26283
  "height": {
26346
26284
  "anyOf": [
26347
26285
  {
@@ -26373,16 +26311,6 @@
26373
26311
  "$ref": "#/definitions/IItem",
26374
26312
  "description": "图例项配置"
26375
26313
  },
26376
- "justifyContent": {
26377
- "enum": [
26378
- "center",
26379
- "flex-end",
26380
- "flex-start",
26381
- "space-around",
26382
- "space-between"
26383
- ],
26384
- "type": "string"
26385
- },
26386
26314
  "keepDirIn3d": {
26387
26315
  "type": "boolean"
26388
26316
  },
@@ -27154,14 +27082,6 @@
27154
27082
  ],
27155
27083
  "type": "object"
27156
27084
  },
27157
- "IDsvParserOptions": {
27158
- "properties": {
27159
- "delimiter": {
27160
- "type": "string"
27161
- }
27162
- },
27163
- "type": "object"
27164
- },
27165
27085
  "IExtensionGroupMarkSpec": {
27166
27086
  "properties": {
27167
27087
  "children": {
@@ -32795,14 +32715,7 @@
32795
32715
  "description": "数据唯一标识"
32796
32716
  },
32797
32717
  "parser": {
32798
- "anyOf": [
32799
- {
32800
- "$ref": "#/definitions/SheetParseOptions"
32801
- },
32802
- {
32803
- "$ref": "#/definitions/CommonParseOptions"
32804
- }
32805
- ]
32718
+ "typeof": "function"
32806
32719
  },
32807
32720
  "transforms": {
32808
32721
  "description": "数据 transform 配置",
@@ -35081,6 +34994,12 @@
35081
34994
  },
35082
34995
  "ILineChartSpec": {
35083
34996
  "properties": {
34997
+ "activePoint": {
34998
+ "default": false,
34999
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
35000
+ "since": "1.3.0",
35001
+ "type": "boolean"
35002
+ },
35084
35003
  "animation": {
35085
35004
  "description": "是否开启系列动画",
35086
35005
  "type": "boolean"
@@ -35748,6 +35667,12 @@
35748
35667
  },
35749
35668
  "ILineSeriesSpec": {
35750
35669
  "properties": {
35670
+ "activePoint": {
35671
+ "default": false,
35672
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
35673
+ "since": "1.3.0",
35674
+ "type": "boolean"
35675
+ },
35751
35676
  "animation": {
35752
35677
  "description": "是否开启系列动画",
35753
35678
  "type": "boolean"
@@ -36059,7 +35984,14 @@
36059
35984
  "$ref": "#/definitions/Partial<IMarkTheme<ILineMarkSpec>>"
36060
35985
  },
36061
35986
  "point": {
36062
- "$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
35987
+ "allOf": [
35988
+ {
35989
+ "$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
35990
+ },
35991
+ {
35992
+ "typeof": "function"
35993
+ }
35994
+ ]
36063
35995
  }
36064
35996
  },
36065
35997
  "type": "object"
@@ -41880,6 +41812,12 @@
41880
41812
  },
41881
41813
  "IRadarChartSpec": {
41882
41814
  "properties": {
41815
+ "activePoint": {
41816
+ "default": false,
41817
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
41818
+ "since": "1.3.0",
41819
+ "type": "boolean"
41820
+ },
41883
41821
  "angleField": {
41884
41822
  "anyOf": [
41885
41823
  {
@@ -42348,6 +42286,12 @@
42348
42286
  },
42349
42287
  "IRadarSeriesSpec": {
42350
42288
  "properties": {
42289
+ "activePoint": {
42290
+ "default": false,
42291
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
42292
+ "since": "1.3.0",
42293
+ "type": "boolean"
42294
+ },
42351
42295
  "angleField": {
42352
42296
  "anyOf": [
42353
42297
  {
@@ -42699,7 +42643,14 @@
42699
42643
  "type": "number"
42700
42644
  },
42701
42645
  "point": {
42702
- "$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
42646
+ "allOf": [
42647
+ {
42648
+ "$ref": "#/definitions/Partial<IMarkTheme<ISymbolMarkSpec>>"
42649
+ },
42650
+ {
42651
+ "typeof": "function"
42652
+ }
42653
+ ]
42703
42654
  },
42704
42655
  "radius": {
42705
42656
  "type": "number"
@@ -42749,6 +42700,12 @@
42749
42700
  },
42750
42701
  "IRangeAreaChartSpec": {
42751
42702
  "properties": {
42703
+ "activePoint": {
42704
+ "default": false,
42705
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
42706
+ "since": "1.3.0",
42707
+ "type": "boolean"
42708
+ },
42752
42709
  "animation": {
42753
42710
  "description": "是否开启系列动画",
42754
42711
  "type": "boolean"
@@ -43204,6 +43161,12 @@
43204
43161
  },
43205
43162
  "IRangeAreaSeriesSpec": {
43206
43163
  "properties": {
43164
+ "activePoint": {
43165
+ "default": false,
43166
+ "description": "是否使用额外的 activePoint 显示交互点,可以在点隐藏时显示被交互的点",
43167
+ "since": "1.3.0",
43168
+ "type": "boolean"
43169
+ },
43207
43170
  "animation": {
43208
43171
  "description": "是否开启系列动画",
43209
43172
  "type": "boolean"
@@ -48711,23 +48674,6 @@
48711
48674
  },
48712
48675
  "ISegment": {
48713
48676
  "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
- },
48731
48677
  "lineCap": {
48732
48678
  "$ref": "#/definitions/CanvasLineCap"
48733
48679
  },
@@ -51861,12 +51807,6 @@
51861
51807
  "description": "刻度线朝向,默认朝外(坐标线包围盒外部)",
51862
51808
  "type": "boolean"
51863
51809
  },
51864
- "noDecimals": {
51865
- "default": false,
51866
- "description": "当配置了 tickStep 或 forceTickCount 时不生效。",
51867
- "since": "1.3.0",
51868
- "type": "boolean"
51869
- },
51870
51810
  "state": {
51871
51811
  "typeof": "function"
51872
51812
  },
@@ -51886,16 +51826,6 @@
51886
51826
  "description": "建议的tick数量,并不保证结果一定是配置值",
51887
51827
  "type": "number"
51888
51828
  },
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
- },
51899
51829
  "tickSize": {
51900
51830
  "default": 4,
51901
51831
  "description": "Length of tick lines\n坐标轴刻度线的长度",
@@ -52424,6 +52354,10 @@
52424
52354
  "position": {
52425
52355
  "$ref": "#/definitions/TooltipPatternProperty<TooltipPosition>"
52426
52356
  },
52357
+ "seriesId": {
52358
+ "description": "该 pattern 属于哪个系列id(用户不需要设置)",
52359
+ "type": "number"
52360
+ },
52427
52361
  "shapeColor": {
52428
52362
  "$ref": "#/definitions/TooltipContentProperty<string>"
52429
52363
  },
@@ -57893,7 +57827,7 @@
57893
57827
  },
57894
57828
  "Map<Function,(...args:any[])=>void>": {
57895
57829
  "properties": {
57896
- "__@toStringTag@11330": {
57830
+ "__@toStringTag@11366": {
57897
57831
  "type": "string"
57898
57832
  },
57899
57833
  "size": {
@@ -57901,14 +57835,14 @@
57901
57835
  }
57902
57836
  },
57903
57837
  "required": [
57904
- "__@toStringTag@11330",
57838
+ "__@toStringTag@11366",
57905
57839
  "size"
57906
57840
  ],
57907
57841
  "type": "object"
57908
57842
  },
57909
57843
  "Map<number,IGraphicPicker>": {
57910
57844
  "properties": {
57911
- "__@toStringTag@11330": {
57845
+ "__@toStringTag@11366": {
57912
57846
  "type": "string"
57913
57847
  },
57914
57848
  "size": {
@@ -57916,14 +57850,14 @@
57916
57850
  }
57917
57851
  },
57918
57852
  "required": [
57919
- "__@toStringTag@11330",
57853
+ "__@toStringTag@11366",
57920
57854
  "size"
57921
57855
  ],
57922
57856
  "type": "object"
57923
57857
  },
57924
57858
  "Map<number,IGraphicRender>": {
57925
57859
  "properties": {
57926
- "__@toStringTag@11330": {
57860
+ "__@toStringTag@11366": {
57927
57861
  "type": "string"
57928
57862
  },
57929
57863
  "size": {
@@ -57931,14 +57865,14 @@
57931
57865
  }
57932
57866
  },
57933
57867
  "required": [
57934
- "__@toStringTag@11330",
57868
+ "__@toStringTag@11366",
57935
57869
  "size"
57936
57870
  ],
57937
57871
  "type": "object"
57938
57872
  },
57939
57873
  "Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
57940
57874
  "properties": {
57941
- "__@toStringTag@11330": {
57875
+ "__@toStringTag@11366": {
57942
57876
  "type": "string"
57943
57877
  },
57944
57878
  "size": {
@@ -57946,14 +57880,14 @@
57946
57880
  }
57947
57881
  },
57948
57882
  "required": [
57949
- "__@toStringTag@11330",
57883
+ "__@toStringTag@11366",
57950
57884
  "size"
57951
57885
  ],
57952
57886
  "type": "object"
57953
57887
  },
57954
57888
  "Map<string,Map<number,IGraphicRender>>": {
57955
57889
  "properties": {
57956
- "__@toStringTag@11330": {
57890
+ "__@toStringTag@11366": {
57957
57891
  "type": "string"
57958
57892
  },
57959
57893
  "size": {
@@ -57961,14 +57895,14 @@
57961
57895
  }
57962
57896
  },
57963
57897
  "required": [
57964
- "__@toStringTag@11330",
57898
+ "__@toStringTag@11366",
57965
57899
  "size"
57966
57900
  ],
57967
57901
  "type": "object"
57968
57902
  },
57969
57903
  "Map<string,any>": {
57970
57904
  "properties": {
57971
- "__@toStringTag@11330": {
57905
+ "__@toStringTag@11366": {
57972
57906
  "type": "string"
57973
57907
  },
57974
57908
  "size": {
@@ -57976,14 +57910,14 @@
57976
57910
  }
57977
57911
  },
57978
57912
  "required": [
57979
- "__@toStringTag@11330",
57913
+ "__@toStringTag@11366",
57980
57914
  "size"
57981
57915
  ],
57982
57916
  "type": "object"
57983
57917
  },
57984
57918
  "Map<string|HTMLCanvasElement|HTMLImageElement,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
57985
57919
  "properties": {
57986
- "__@toStringTag@11330": {
57920
+ "__@toStringTag@11366": {
57987
57921
  "type": "string"
57988
57922
  },
57989
57923
  "size": {
@@ -57991,14 +57925,14 @@
57991
57925
  }
57992
57926
  },
57993
57927
  "required": [
57994
- "__@toStringTag@11330",
57928
+ "__@toStringTag@11366",
57995
57929
  "size"
57996
57930
  ],
57997
57931
  "type": "object"
57998
57932
  },
57999
57933
  "Map<string|number,IAnimate>": {
58000
57934
  "properties": {
58001
- "__@toStringTag@11330": {
57935
+ "__@toStringTag@11366": {
58002
57936
  "type": "string"
58003
57937
  },
58004
57938
  "size": {
@@ -58006,7 +57940,7 @@
58006
57940
  }
58007
57941
  },
58008
57942
  "required": [
58009
- "__@toStringTag@11330",
57943
+ "__@toStringTag@11366",
58010
57944
  "size"
58011
57945
  ],
58012
57946
  "type": "object"
@@ -58334,23 +58268,6 @@
58334
58268
  },
58335
58269
  "Omit<DiscreteLegendAttrs,\"title\"|\"layout\"|\"items\"|\"pager\"|\"item\">": {
58336
58270
  "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
- },
58354
58271
  "allowAllCanceled": {
58355
58272
  "type": "boolean"
58356
58273
  },
@@ -58503,13 +58420,6 @@
58503
58420
  },
58504
58421
  "type": "array"
58505
58422
  },
58506
- "display": {
58507
- "enum": [
58508
- "flex",
58509
- "relative"
58510
- ],
58511
- "type": "string"
58512
- },
58513
58423
  "dx": {
58514
58424
  "type": "number"
58515
58425
  },
@@ -58525,22 +58435,6 @@
58525
58435
  "fillOpacity": {
58526
58436
  "type": "number"
58527
58437
  },
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
- },
58544
58438
  "height": {
58545
58439
  "type": "number"
58546
58440
  },
@@ -58553,16 +58447,6 @@
58553
58447
  "interactive": {
58554
58448
  "type": "boolean"
58555
58449
  },
58556
- "justifyContent": {
58557
- "enum": [
58558
- "center",
58559
- "flex-end",
58560
- "flex-start",
58561
- "space-around",
58562
- "space-between"
58563
- ],
58564
- "type": "string"
58565
- },
58566
58450
  "keepDirIn3d": {
58567
58451
  "type": "boolean"
58568
58452
  },
@@ -60285,23 +60169,6 @@
60285
60169
  },
60286
60170
  "Omit<IGroupGraphicAttribute,\"background\">": {
60287
60171
  "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
- },
60305
60172
  "alpha": {
60306
60173
  "type": "number"
60307
60174
  },
@@ -60426,13 +60293,6 @@
60426
60293
  "customPickShape": {
60427
60294
  "typeof": "function"
60428
60295
  },
60429
- "display": {
60430
- "enum": [
60431
- "flex",
60432
- "relative"
60433
- ],
60434
- "type": "string"
60435
- },
60436
60296
  "dx": {
60437
60297
  "type": "number"
60438
60298
  },
@@ -60448,38 +60308,12 @@
60448
60308
  "fillOpacity": {
60449
60309
  "type": "number"
60450
60310
  },
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
- },
60467
60311
  "height": {
60468
60312
  "type": "number"
60469
60313
  },
60470
60314
  "innerBorder": {
60471
60315
  "$ref": "#/definitions/Partial<IBorderStyle>"
60472
60316
  },
60473
- "justifyContent": {
60474
- "enum": [
60475
- "center",
60476
- "flex-end",
60477
- "flex-start",
60478
- "space-around",
60479
- "space-between"
60480
- ],
60481
- "type": "string"
60482
- },
60483
60317
  "keepDirIn3d": {
60484
60318
  "type": "boolean"
60485
60319
  },
@@ -61545,23 +61379,6 @@
61545
61379
  },
61546
61380
  "Omit<Omit<PagerAttributes,\"total\">&{space?:number;animation?:boolean;animationDuration?:number;animationEasing?:EasingType;},\"textStyle\"|\"handler\">": {
61547
61381
  "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
- },
61565
61382
  "alpha": {
61566
61383
  "type": "number"
61567
61384
  },
@@ -61711,13 +61528,6 @@
61711
61528
  "defaultCurrent": {
61712
61529
  "type": "number"
61713
61530
  },
61714
- "display": {
61715
- "enum": [
61716
- "flex",
61717
- "relative"
61718
- ],
61719
- "type": "string"
61720
- },
61721
61531
  "dx": {
61722
61532
  "type": "number"
61723
61533
  },
@@ -61733,38 +61543,12 @@
61733
61543
  "fillOpacity": {
61734
61544
  "type": "number"
61735
61545
  },
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
- },
61752
61546
  "height": {
61753
61547
  "type": "number"
61754
61548
  },
61755
61549
  "innerBorder": {
61756
61550
  "$ref": "#/definitions/Partial<IBorderStyle>"
61757
61551
  },
61758
- "justifyContent": {
61759
- "enum": [
61760
- "center",
61761
- "flex-end",
61762
- "flex-start",
61763
- "space-around",
61764
- "space-between"
61765
- ],
61766
- "type": "string"
61767
- },
61768
61552
  "keepDirIn3d": {
61769
61553
  "type": "boolean"
61770
61554
  },
@@ -61945,22 +61729,6 @@
61945
61729
  "avoidBaseMark": {
61946
61730
  "type": "boolean"
61947
61731
  },
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
- },
61964
61732
  "clampForce": {
61965
61733
  "type": "boolean"
61966
61734
  },
@@ -62626,23 +62394,6 @@
62626
62394
  "clipRange": {
62627
62395
  "type": "number"
62628
62396
  },
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
- },
62646
62397
  "cursor": {
62647
62398
  "$ref": "#/definitions/Cursor"
62648
62399
  },
@@ -63755,23 +63506,6 @@
63755
63506
  },
63756
63507
  "Partial<IGroupGraphicAttribute>": {
63757
63508
  "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
- },
63775
63509
  "alpha": {
63776
63510
  "type": "number"
63777
63511
  },
@@ -63909,13 +63643,6 @@
63909
63643
  "customPickShape": {
63910
63644
  "typeof": "function"
63911
63645
  },
63912
- "display": {
63913
- "enum": [
63914
- "flex",
63915
- "relative"
63916
- ],
63917
- "type": "string"
63918
- },
63919
63646
  "dx": {
63920
63647
  "type": "number"
63921
63648
  },
@@ -63931,38 +63658,12 @@
63931
63658
  "fillOpacity": {
63932
63659
  "type": "number"
63933
63660
  },
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
- },
63950
63661
  "height": {
63951
63662
  "type": "number"
63952
63663
  },
63953
63664
  "innerBorder": {
63954
63665
  "$ref": "#/definitions/Partial<IBorderStyle>"
63955
63666
  },
63956
- "justifyContent": {
63957
- "enum": [
63958
- "center",
63959
- "flex-end",
63960
- "flex-start",
63961
- "space-around",
63962
- "space-between"
63963
- ],
63964
- "type": "string"
63965
- },
63966
63667
  "keepDirIn3d": {
63967
63668
  "type": "boolean"
63968
63669
  },
@@ -64681,23 +64382,6 @@
64681
64382
  "clipRangeByDimension": {
64682
64383
  "$ref": "#/definitions/IClipRangeByDimensionType"
64683
64384
  },
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
- },
64701
64385
  "cursor": {
64702
64386
  "$ref": "#/definitions/Cursor"
64703
64387
  },
@@ -67436,13 +67120,6 @@
67436
67120
  "customPickShape": {
67437
67121
  "typeof": "function"
67438
67122
  },
67439
- "direction": {
67440
- "enum": [
67441
- "horizontal",
67442
- "vertical"
67443
- ],
67444
- "type": "string"
67445
- },
67446
67123
  "dx": {
67447
67124
  "type": "number"
67448
67125
  },
@@ -67649,13 +67326,6 @@
67649
67326
  "visible": {
67650
67327
  "type": "boolean"
67651
67328
  },
67652
- "wordBreak": {
67653
- "enum": [
67654
- "break-all",
67655
- "break-word"
67656
- ],
67657
- "type": "string"
67658
- },
67659
67329
  "x": {
67660
67330
  "type": "number"
67661
67331
  },
@@ -69717,34 +69387,34 @@
69717
69387
  },
69718
69388
  "Promise<FontFaceSet>": {
69719
69389
  "properties": {
69720
- "__@toStringTag@11330": {
69390
+ "__@toStringTag@11366": {
69721
69391
  "type": "string"
69722
69392
  }
69723
69393
  },
69724
69394
  "required": [
69725
- "__@toStringTag@11330"
69395
+ "__@toStringTag@11366"
69726
69396
  ],
69727
69397
  "type": "object"
69728
69398
  },
69729
69399
  "Promise<ServiceWorkerRegistration>": {
69730
69400
  "properties": {
69731
- "__@toStringTag@11330": {
69401
+ "__@toStringTag@11366": {
69732
69402
  "type": "string"
69733
69403
  }
69734
69404
  },
69735
69405
  "required": [
69736
- "__@toStringTag@11330"
69406
+ "__@toStringTag@11366"
69737
69407
  ],
69738
69408
  "type": "object"
69739
69409
  },
69740
69410
  "Promise<any>": {
69741
69411
  "properties": {
69742
- "__@toStringTag@11330": {
69412
+ "__@toStringTag@11366": {
69743
69413
  "type": "string"
69744
69414
  }
69745
69415
  },
69746
69416
  "required": [
69747
- "__@toStringTag@11330"
69417
+ "__@toStringTag@11366"
69748
69418
  ],
69749
69419
  "type": "object"
69750
69420
  },
@@ -70335,23 +70005,6 @@
70335
70005
  "clipRange": {
70336
70006
  "type": "number"
70337
70007
  },
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
- },
70355
70008
  "cursor": {
70356
70009
  "$ref": "#/definitions/Cursor"
70357
70010
  },
@@ -70538,10 +70191,6 @@
70538
70191
  "boundsPadding",
70539
70192
  "childrenPickable",
70540
70193
  "clipRange",
70541
- "connectedStyle",
70542
- "connectedType",
70543
- "connectedX",
70544
- "connectedY",
70545
70194
  "cursor",
70546
70195
  "curveType",
70547
70196
  "customPickShape",
@@ -71308,23 +70957,6 @@
71308
70957
  },
71309
70958
  "Required<IGroupGraphicAttribute>": {
71310
70959
  "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
- },
71328
70960
  "alpha": {
71329
70961
  "type": "number"
71330
70962
  },
@@ -71462,13 +71094,6 @@
71462
71094
  "customPickShape": {
71463
71095
  "typeof": "function"
71464
71096
  },
71465
- "display": {
71466
- "enum": [
71467
- "flex",
71468
- "relative"
71469
- ],
71470
- "type": "string"
71471
- },
71472
71097
  "dx": {
71473
71098
  "type": "number"
71474
71099
  },
@@ -71484,38 +71109,12 @@
71484
71109
  "fillOpacity": {
71485
71110
  "type": "number"
71486
71111
  },
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
- },
71503
71112
  "height": {
71504
71113
  "type": "number"
71505
71114
  },
71506
71115
  "innerBorder": {
71507
71116
  "$ref": "#/definitions/Partial<IBorderStyle>"
71508
71117
  },
71509
- "justifyContent": {
71510
- "enum": [
71511
- "center",
71512
- "flex-end",
71513
- "flex-start",
71514
- "space-around",
71515
- "space-between"
71516
- ],
71517
- "type": "string"
71518
- },
71519
71118
  "keepDirIn3d": {
71520
71119
  "type": "boolean"
71521
71120
  },
@@ -71663,8 +71262,6 @@
71663
71262
  }
71664
71263
  },
71665
71264
  "required": [
71666
- "alignContent",
71667
- "alignItems",
71668
71265
  "alpha",
71669
71266
  "anchor",
71670
71267
  "anchor3d",
@@ -71680,17 +71277,13 @@
71680
71277
  "cornerRadius",
71681
71278
  "cursor",
71682
71279
  "customPickShape",
71683
- "display",
71684
71280
  "dx",
71685
71281
  "dy",
71686
71282
  "dz",
71687
71283
  "fill",
71688
71284
  "fillOpacity",
71689
- "flexDirection",
71690
- "flexWrap",
71691
71285
  "height",
71692
71286
  "innerBorder",
71693
- "justifyContent",
71694
71287
  "keepDirIn3d",
71695
71288
  "layout",
71696
71289
  "lineCap",
@@ -72218,23 +71811,6 @@
72218
71811
  "clipRangeByDimension": {
72219
71812
  "$ref": "#/definitions/IClipRangeByDimensionType"
72220
71813
  },
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
- },
72238
71814
  "cursor": {
72239
71815
  "$ref": "#/definitions/Cursor"
72240
71816
  },
@@ -72422,10 +71998,6 @@
72422
71998
  "childrenPickable",
72423
71999
  "clipRange",
72424
72000
  "clipRangeByDimension",
72425
- "connectedStyle",
72426
- "connectedType",
72427
- "connectedX",
72428
- "connectedY",
72429
72001
  "cursor",
72430
72002
  "curveType",
72431
72003
  "customPickShape",
@@ -75221,13 +74793,6 @@
75221
74793
  "customPickShape": {
75222
74794
  "typeof": "function"
75223
74795
  },
75224
- "direction": {
75225
- "enum": [
75226
- "horizontal",
75227
- "vertical"
75228
- ],
75229
- "type": "string"
75230
- },
75231
74796
  "dx": {
75232
74797
  "type": "number"
75233
74798
  },
@@ -75434,13 +74999,6 @@
75434
74999
  "visible": {
75435
75000
  "type": "boolean"
75436
75001
  },
75437
- "wordBreak": {
75438
- "enum": [
75439
- "break-all",
75440
- "break-word"
75441
- ],
75442
- "type": "string"
75443
- },
75444
75002
  "x": {
75445
75003
  "type": "number"
75446
75004
  },
@@ -75468,7 +75026,6 @@
75468
75026
  "childrenPickable",
75469
75027
  "cursor",
75470
75028
  "customPickShape",
75471
- "direction",
75472
75029
  "dx",
75473
75030
  "dy",
75474
75031
  "dz",
@@ -75520,7 +75077,6 @@
75520
75077
  "textureSize",
75521
75078
  "underline",
75522
75079
  "visible",
75523
- "wordBreak",
75524
75080
  "x",
75525
75081
  "y",
75526
75082
  "z",
@@ -78865,25 +78421,6 @@
78865
78421
  ],
78866
78422
  "type": "string"
78867
78423
  },
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
- },
78887
78424
  "SlotAssignmentMode": {
78888
78425
  "enum": [
78889
78426
  "manual",