@visactor/vchart-schema 1.9.2 → 1.9.3-alpha.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 +73 -77
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "1.9.2",
3
+ "version": "1.9.3-alpha.1",
4
4
  "description": "The VChart JSON schema file.",
5
5
  "sideEffects": false,
6
6
  "main": "vchart.json",
package/vchart.json CHANGED
@@ -28467,6 +28467,9 @@
28467
28467
  "scalePoint": {
28468
28468
  "typeof": "function"
28469
28469
  },
28470
+ "setClearMatrix": {
28471
+ "typeof": "function"
28472
+ },
28470
28473
  "setCommonStyle": {
28471
28474
  "typeof": "function"
28472
28475
  },
@@ -28611,6 +28614,7 @@
28611
28614
  "save",
28612
28615
  "scale",
28613
28616
  "scalePoint",
28617
+ "setClearMatrix",
28614
28618
  "setCommonStyle",
28615
28619
  "setLineDash",
28616
28620
  "setStrokeStyle",
@@ -31863,7 +31867,6 @@
31863
31867
  "postMatrix": {
31864
31868
  "$ref": "#/definitions/IMatrix"
31865
31869
  },
31866
- "renderStyle": {},
31867
31870
  "reversed": {
31868
31871
  "type": "boolean"
31869
31872
  },
@@ -42123,9 +42126,6 @@
42123
42126
  "combineSubLayer": {
42124
42127
  "typeof": "function"
42125
42128
  },
42126
- "combineTo": {
42127
- "typeof": "function"
42128
- },
42129
42129
  "containNode": {
42130
42130
  "typeof": "function"
42131
42131
  },
@@ -42601,7 +42601,6 @@
42601
42601
  "clearUpdateShapeTag",
42602
42602
  "clone",
42603
42603
  "combineSubLayer",
42604
- "combineTo",
42605
42604
  "containNode",
42606
42605
  "containsPoint",
42607
42606
  "count",
@@ -47789,6 +47788,37 @@
47789
47788
  ],
47790
47789
  "type": "object"
47791
47790
  },
47791
+ "IMatrixLike": {
47792
+ "properties": {
47793
+ "a": {
47794
+ "type": "number"
47795
+ },
47796
+ "b": {
47797
+ "type": "number"
47798
+ },
47799
+ "c": {
47800
+ "type": "number"
47801
+ },
47802
+ "d": {
47803
+ "type": "number"
47804
+ },
47805
+ "e": {
47806
+ "type": "number"
47807
+ },
47808
+ "f": {
47809
+ "type": "number"
47810
+ }
47811
+ },
47812
+ "required": [
47813
+ "a",
47814
+ "b",
47815
+ "c",
47816
+ "d",
47817
+ "e",
47818
+ "f"
47819
+ ],
47820
+ "type": "object"
47821
+ },
47792
47822
  "IMediaQueryAction<any>": {
47793
47823
  "description": "命中媒体查询条件之后的动作",
47794
47824
  "properties": {
@@ -51496,7 +51526,6 @@
51496
51526
  "postMatrix": {
51497
51527
  "$ref": "#/definitions/IMatrix"
51498
51528
  },
51499
- "renderStyle": {},
51500
51529
  "scaleCenter": {
51501
51530
  "items": [
51502
51531
  {
@@ -57562,12 +57591,6 @@
57562
57591
  "context": {
57563
57592
  "$ref": "#/definitions/IContext2d"
57564
57593
  },
57565
- "height": {
57566
- "type": "number"
57567
- },
57568
- "keepMatrix": {
57569
- "type": "boolean"
57570
- },
57571
57594
  "layer": {
57572
57595
  "$ref": "#/definitions/ILayer"
57573
57596
  },
@@ -57580,28 +57603,22 @@
57580
57603
  "stage": {
57581
57604
  "$ref": "#/definitions/IStage"
57582
57605
  },
57606
+ "transMatrix": {
57607
+ "$ref": "#/definitions/IMatrixLike"
57608
+ },
57583
57609
  "updateBounds": {
57584
57610
  "type": "boolean"
57585
57611
  },
57586
- "width": {
57587
- "type": "number"
57588
- },
57589
- "x": {
57590
- "type": "number"
57591
- },
57592
- "y": {
57593
- "type": "number"
57612
+ "viewBox": {
57613
+ "$ref": "#/definitions/IBounds"
57594
57614
  }
57595
57615
  },
57596
57616
  "required": [
57597
- "height",
57598
57617
  "layer",
57599
57618
  "renderService",
57600
57619
  "stage",
57601
57620
  "updateBounds",
57602
- "width",
57603
- "x",
57604
- "y"
57621
+ "viewBox"
57605
57622
  ],
57606
57623
  "type": "object"
57607
57624
  },
@@ -62797,6 +62814,9 @@
62797
62814
  "parent": {
62798
62815
  "$ref": "#/definitions/IStage"
62799
62816
  },
62817
+ "pauseRender": {
62818
+ "typeof": "function"
62819
+ },
62800
62820
  "pick": {
62801
62821
  "typeof": "function"
62802
62822
  },
@@ -62865,6 +62885,9 @@
62865
62885
  "resizeWindow": {
62866
62886
  "typeof": "function"
62867
62887
  },
62888
+ "resumeRender": {
62889
+ "typeof": "function"
62890
+ },
62868
62891
  "set3dOptions": {
62869
62892
  "typeof": "function"
62870
62893
  },
@@ -63013,6 +63036,7 @@
63013
63036
  "once",
63014
63037
  "params",
63015
63038
  "parent",
63039
+ "pauseRender",
63016
63040
  "pick",
63017
63041
  "pluginService",
63018
63042
  "release",
@@ -63030,6 +63054,7 @@
63030
63054
  "resize",
63031
63055
  "resizeView",
63032
63056
  "resizeWindow",
63057
+ "resumeRender",
63033
63058
  "set3dOptions",
63034
63059
  "setAfterRender",
63035
63060
  "setAllDescendantsProps",
@@ -69918,6 +69943,15 @@
69918
69943
  "getTopLeft": {
69919
69944
  "typeof": "function"
69920
69945
  },
69946
+ "getViewBox": {
69947
+ "typeof": "function"
69948
+ },
69949
+ "getViewBoxTransform": {
69950
+ "typeof": "function"
69951
+ },
69952
+ "hasSubView": {
69953
+ "typeof": "function"
69954
+ },
69921
69955
  "height": {
69922
69956
  "type": "number"
69923
69957
  },
@@ -69942,6 +69976,9 @@
69942
69976
  "onVisibleChange": {
69943
69977
  "typeof": "function"
69944
69978
  },
69979
+ "pointTransform": {
69980
+ "typeof": "function"
69981
+ },
69945
69982
  "release": {
69946
69983
  "typeof": "function"
69947
69984
  },
@@ -69964,6 +70001,12 @@
69964
70001
  "setDpr": {
69965
70002
  "typeof": "function"
69966
70003
  },
70004
+ "setViewBox": {
70005
+ "typeof": "function"
70006
+ },
70007
+ "setViewBoxTransform": {
70008
+ "typeof": "function"
70009
+ },
69967
70010
  "setWindowHandler": {
69968
70011
  "typeof": "function"
69969
70012
  },
@@ -70003,6 +70046,9 @@
70003
70046
  "getImageBuffer",
70004
70047
  "getNativeHandler",
70005
70048
  "getTopLeft",
70049
+ "getViewBox",
70050
+ "getViewBoxTransform",
70051
+ "hasSubView",
70006
70052
  "height",
70007
70053
  "hooks",
70008
70054
  "isVisible",
@@ -70011,11 +70057,14 @@
70011
70057
  "minHeight",
70012
70058
  "minWidth",
70013
70059
  "onVisibleChange",
70060
+ "pointTransform",
70014
70061
  "release",
70015
70062
  "removeEventListener",
70016
70063
  "resizable",
70017
70064
  "resize",
70018
70065
  "setDpr",
70066
+ "setViewBox",
70067
+ "setViewBoxTransform",
70019
70068
  "setWindowHandler",
70020
70069
  "style",
70021
70070
  "title",
@@ -72979,7 +73028,6 @@
72979
73028
  "postMatrix": {
72980
73029
  "$ref": "#/definitions/IMatrix"
72981
73030
  },
72982
- "renderStyle": {},
72983
73031
  "reversed": {
72984
73032
  "type": "boolean"
72985
73033
  },
@@ -75624,7 +75672,6 @@
75624
75672
  "postMatrix": {
75625
75673
  "$ref": "#/definitions/IMatrix"
75626
75674
  },
75627
- "renderStyle": {},
75628
75675
  "scaleCenter": {
75629
75676
  "items": [
75630
75677
  {
@@ -77523,7 +77570,6 @@
77523
77570
  "postMatrix": {
77524
77571
  "$ref": "#/definitions/IMatrix"
77525
77572
  },
77526
- "renderStyle": {},
77527
77573
  "scaleCenter": {
77528
77574
  "items": [
77529
77575
  {
@@ -78248,7 +78294,6 @@
78248
78294
  "postMatrix": {
78249
78295
  "$ref": "#/definitions/IMatrix"
78250
78296
  },
78251
- "renderStyle": {},
78252
78297
  "scaleCenter": {
78253
78298
  "items": [
78254
78299
  {
@@ -78686,7 +78731,6 @@
78686
78731
  "postMatrix": {
78687
78732
  "$ref": "#/definitions/IMatrix"
78688
78733
  },
78689
- "renderStyle": {},
78690
78734
  "scaleCenter": {
78691
78735
  "items": [
78692
78736
  {
@@ -79167,7 +79211,6 @@
79167
79211
  "radius": {
79168
79212
  "type": "number"
79169
79213
  },
79170
- "renderStyle": {},
79171
79214
  "scaleCenter": {
79172
79215
  "items": [
79173
79216
  {
@@ -79663,7 +79706,6 @@
79663
79706
  "postMatrix": {
79664
79707
  "$ref": "#/definitions/IMatrix"
79665
79708
  },
79666
- "renderStyle": {},
79667
79709
  "scaleCenter": {
79668
79710
  "items": [
79669
79711
  {
@@ -80069,7 +80111,6 @@
80069
80111
  "postMatrix": {
80070
80112
  "$ref": "#/definitions/IMatrix"
80071
80113
  },
80072
- "renderStyle": {},
80073
80114
  "scaleCenter": {
80074
80115
  "items": [
80075
80116
  {
@@ -80547,7 +80588,6 @@
80547
80588
  "postMatrix": {
80548
80589
  "$ref": "#/definitions/IMatrix"
80549
80590
  },
80550
- "renderStyle": {},
80551
80591
  "scaleCenter": {
80552
80592
  "items": [
80553
80593
  {
@@ -80985,7 +81025,6 @@
80985
81025
  "postMatrix": {
80986
81026
  "$ref": "#/definitions/IMatrix"
80987
81027
  },
80988
- "renderStyle": {},
80989
81028
  "repeatX": {
80990
81029
  "$ref": "#/definitions/IRepeatType"
80991
81030
  },
@@ -81690,7 +81729,6 @@
81690
81729
  "postMatrix": {
81691
81730
  "$ref": "#/definitions/IMatrix"
81692
81731
  },
81693
- "renderStyle": {},
81694
81732
  "scaleCenter": {
81695
81733
  "items": [
81696
81734
  {
@@ -82921,7 +82959,6 @@
82921
82959
  "postMatrix": {
82922
82960
  "$ref": "#/definitions/IMatrix"
82923
82961
  },
82924
- "renderStyle": {},
82925
82962
  "scaleCenter": {
82926
82963
  "items": [
82927
82964
  {
@@ -83346,7 +83383,6 @@
83346
83383
  "postMatrix": {
83347
83384
  "$ref": "#/definitions/IMatrix"
83348
83385
  },
83349
- "renderStyle": {},
83350
83386
  "scaleCenter": {
83351
83387
  "items": [
83352
83388
  {
@@ -84017,7 +84053,6 @@
84017
84053
  "postMatrix": {
84018
84054
  "$ref": "#/definitions/IMatrix"
84019
84055
  },
84020
- "renderStyle": {},
84021
84056
  "scaleCenter": {
84022
84057
  "items": [
84023
84058
  {
@@ -84445,7 +84480,6 @@
84445
84480
  "postMatrix": {
84446
84481
  "$ref": "#/definitions/IMatrix"
84447
84482
  },
84448
- "renderStyle": {},
84449
84483
  "scaleCenter": {
84450
84484
  "items": [
84451
84485
  {
@@ -84909,9 +84943,6 @@
84909
84943
  "poptip": {
84910
84944
  "type": "boolean"
84911
84945
  },
84912
- "renderKeepMatrix": {
84913
- "type": "boolean"
84914
- },
84915
84946
  "renderStyle": {
84916
84947
  "type": "string"
84917
84948
  },
@@ -85222,7 +85253,6 @@
85222
85253
  "postMatrix": {
85223
85254
  "$ref": "#/definitions/IMatrix"
85224
85255
  },
85225
- "renderStyle": {},
85226
85256
  "scaleCenter": {
85227
85257
  "items": [
85228
85258
  {
@@ -85703,7 +85733,6 @@
85703
85733
  "postMatrix": {
85704
85734
  "$ref": "#/definitions/IMatrix"
85705
85735
  },
85706
- "renderStyle": {},
85707
85736
  "scaleCenter": {
85708
85737
  "items": [
85709
85738
  {
@@ -86808,7 +86837,6 @@
86808
86837
  "postMatrix": {
86809
86838
  "$ref": "#/definitions/IMatrix"
86810
86839
  },
86811
- "renderStyle": {},
86812
86840
  "scaleCenter": {
86813
86841
  "items": [
86814
86842
  {
@@ -87286,7 +87314,6 @@
87286
87314
  "postMatrix": {
87287
87315
  "$ref": "#/definitions/IMatrix"
87288
87316
  },
87289
- "renderStyle": {},
87290
87317
  "scaleCenter": {
87291
87318
  "items": [
87292
87319
  {
@@ -87696,7 +87723,6 @@
87696
87723
  "postMatrix": {
87697
87724
  "$ref": "#/definitions/IMatrix"
87698
87725
  },
87699
- "renderStyle": {},
87700
87726
  "scaleCenter": {
87701
87727
  "items": [
87702
87728
  {
@@ -90170,7 +90196,6 @@
90170
90196
  "postMatrix": {
90171
90197
  "$ref": "#/definitions/IMatrix"
90172
90198
  },
90173
- "renderStyle": {},
90174
90199
  "scaleCenter": {
90175
90200
  "items": [
90176
90201
  {
@@ -90339,7 +90364,6 @@
90339
90364
  "pickStrokeBuffer",
90340
90365
  "pickable",
90341
90366
  "postMatrix",
90342
- "renderStyle",
90343
90367
  "scaleCenter",
90344
90368
  "scaleX",
90345
90369
  "scaleY",
@@ -90687,7 +90711,6 @@
90687
90711
  "postMatrix": {
90688
90712
  "$ref": "#/definitions/IMatrix"
90689
90713
  },
90690
- "renderStyle": {},
90691
90714
  "scaleCenter": {
90692
90715
  "items": [
90693
90716
  {
@@ -90859,7 +90882,6 @@
90859
90882
  "pickable",
90860
90883
  "points",
90861
90884
  "postMatrix",
90862
- "renderStyle",
90863
90885
  "scaleCenter",
90864
90886
  "scaleX",
90865
90887
  "scaleY",
@@ -91181,7 +91203,6 @@
91181
91203
  "radius": {
91182
91204
  "type": "number"
91183
91205
  },
91184
- "renderStyle": {},
91185
91206
  "scaleCenter": {
91186
91207
  "items": [
91187
91208
  {
@@ -91344,7 +91365,6 @@
91344
91365
  "pickable",
91345
91366
  "postMatrix",
91346
91367
  "radius",
91347
- "renderStyle",
91348
91368
  "scaleCenter",
91349
91369
  "scaleX",
91350
91370
  "scaleY",
@@ -91689,7 +91709,6 @@
91689
91709
  "postMatrix": {
91690
91710
  "$ref": "#/definitions/IMatrix"
91691
91711
  },
91692
- "renderStyle": {},
91693
91712
  "scaleCenter": {
91694
91713
  "items": [
91695
91714
  {
@@ -91854,7 +91873,6 @@
91854
91873
  "pickStrokeBuffer",
91855
91874
  "pickable",
91856
91875
  "postMatrix",
91857
- "renderStyle",
91858
91876
  "scaleCenter",
91859
91877
  "scaleX",
91860
91878
  "scaleY",
@@ -92245,7 +92263,6 @@
92245
92263
  "postMatrix": {
92246
92264
  "$ref": "#/definitions/IMatrix"
92247
92265
  },
92248
- "renderStyle": {},
92249
92266
  "scaleCenter": {
92250
92267
  "items": [
92251
92268
  {
@@ -92419,7 +92436,6 @@
92419
92436
  "pickStrokeBuffer",
92420
92437
  "pickable",
92421
92438
  "postMatrix",
92422
- "renderStyle",
92423
92439
  "scaleCenter",
92424
92440
  "scaleX",
92425
92441
  "scaleY",
@@ -92765,7 +92781,6 @@
92765
92781
  "postMatrix": {
92766
92782
  "$ref": "#/definitions/IMatrix"
92767
92783
  },
92768
- "renderStyle": {},
92769
92784
  "repeatX": {
92770
92785
  "$ref": "#/definitions/IRepeatType"
92771
92786
  },
@@ -92935,7 +92950,6 @@
92935
92950
  "pickStrokeBuffer",
92936
92951
  "pickable",
92937
92952
  "postMatrix",
92938
- "renderStyle",
92939
92953
  "repeatX",
92940
92954
  "repeatY",
92941
92955
  "scaleCenter",
@@ -93288,7 +93302,6 @@
93288
93302
  "postMatrix": {
93289
93303
  "$ref": "#/definitions/IMatrix"
93290
93304
  },
93291
- "renderStyle": {},
93292
93305
  "scaleCenter": {
93293
93306
  "items": [
93294
93307
  {
@@ -93461,7 +93474,6 @@
93461
93474
  "pickable",
93462
93475
  "points",
93463
93476
  "postMatrix",
93464
- "renderStyle",
93465
93477
  "scaleCenter",
93466
93478
  "scaleX",
93467
93479
  "scaleY",
@@ -93790,7 +93802,6 @@
93790
93802
  "postMatrix": {
93791
93803
  "$ref": "#/definitions/IMatrix"
93792
93804
  },
93793
- "renderStyle": {},
93794
93805
  "scaleCenter": {
93795
93806
  "items": [
93796
93807
  {
@@ -93950,7 +93961,6 @@
93950
93961
  "pickStrokeBuffer",
93951
93962
  "pickable",
93952
93963
  "postMatrix",
93953
- "renderStyle",
93954
93964
  "scaleCenter",
93955
93965
  "scaleX",
93956
93966
  "scaleY",
@@ -94287,7 +94297,6 @@
94287
94297
  "postMatrix": {
94288
94298
  "$ref": "#/definitions/IMatrix"
94289
94299
  },
94290
- "renderStyle": {},
94291
94300
  "scaleCenter": {
94292
94301
  "items": [
94293
94302
  {
@@ -94448,7 +94457,6 @@
94448
94457
  "pickable",
94449
94458
  "points",
94450
94459
  "postMatrix",
94451
- "renderStyle",
94452
94460
  "scaleCenter",
94453
94461
  "scaleX",
94454
94462
  "scaleY",
@@ -94782,7 +94790,6 @@
94782
94790
  "postMatrix": {
94783
94791
  "$ref": "#/definitions/IMatrix"
94784
94792
  },
94785
- "renderStyle": {},
94786
94793
  "scaleCenter": {
94787
94794
  "items": [
94788
94795
  {
@@ -94952,7 +94959,6 @@
94952
94959
  "pickStrokeBuffer",
94953
94960
  "pickable",
94954
94961
  "postMatrix",
94955
- "renderStyle",
94956
94962
  "scaleCenter",
94957
94963
  "scaleX",
94958
94964
  "scaleY",
@@ -95286,7 +95292,6 @@
95286
95292
  "postMatrix": {
95287
95293
  "$ref": "#/definitions/IMatrix"
95288
95294
  },
95289
- "renderStyle": {},
95290
95295
  "scaleCenter": {
95291
95296
  "items": [
95292
95297
  {
@@ -95455,7 +95460,6 @@
95455
95460
  "pickStrokeBuffer",
95456
95461
  "pickable",
95457
95462
  "postMatrix",
95458
- "renderStyle",
95459
95463
  "scaleCenter",
95460
95464
  "scaleX",
95461
95465
  "scaleY",
@@ -95791,7 +95795,6 @@
95791
95795
  "postMatrix": {
95792
95796
  "$ref": "#/definitions/IMatrix"
95793
95797
  },
95794
- "renderStyle": {},
95795
95798
  "scaleCenter": {
95796
95799
  "items": [
95797
95800
  {
@@ -95978,7 +95981,6 @@
95978
95981
  "pickStrokeBuffer",
95979
95982
  "pickable",
95980
95983
  "postMatrix",
95981
- "renderStyle",
95982
95984
  "scaleCenter",
95983
95985
  "scaleX",
95984
95986
  "scaleY",
@@ -96409,7 +96411,6 @@
96409
96411
  "postMatrix": {
96410
96412
  "$ref": "#/definitions/IMatrix"
96411
96413
  },
96412
- "renderStyle": {},
96413
96414
  "repeatX": {
96414
96415
  "$ref": "#/definitions/IRepeatType"
96415
96416
  },
@@ -96596,7 +96597,6 @@
96596
96597
  "pickStrokeBuffer",
96597
96598
  "pickable",
96598
96599
  "postMatrix",
96599
- "renderStyle",
96600
96600
  "repeatX",
96601
96601
  "repeatY",
96602
96602
  "scaleCenter",
@@ -96916,7 +96916,6 @@
96916
96916
  "postMatrix": {
96917
96917
  "$ref": "#/definitions/IMatrix"
96918
96918
  },
96919
- "renderStyle": {},
96920
96919
  "scaleCenter": {
96921
96920
  "items": [
96922
96921
  {
@@ -97097,7 +97096,6 @@
97097
97096
  "pickStrokeBuffer",
97098
97097
  "pickable",
97099
97098
  "postMatrix",
97100
- "renderStyle",
97101
97099
  "scaleCenter",
97102
97100
  "scaleX",
97103
97101
  "scaleY",
@@ -97469,7 +97467,6 @@
97469
97467
  "postMatrix": {
97470
97468
  "$ref": "#/definitions/IMatrix"
97471
97469
  },
97472
- "renderStyle": {},
97473
97470
  "scaleCenter": {
97474
97471
  "items": [
97475
97472
  {
@@ -97703,7 +97700,6 @@
97703
97700
  "pickStrokeBuffer",
97704
97701
  "pickable",
97705
97702
  "postMatrix",
97706
- "renderStyle",
97707
97703
  "scaleCenter",
97708
97704
  "scaleIn3d",
97709
97705
  "scaleX",