@visactor/vchart-schema 1.12.6 → 1.12.7-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 +189 -19
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "1.12.6",
3
+ "version": "1.12.7-hotfix.0",
4
4
  "description": "The VChart JSON schema file.",
5
5
  "sideEffects": false,
6
6
  "main": "vchart.json",
package/vchart.json CHANGED
@@ -30394,6 +30394,9 @@
30394
30394
  "description": "模块是否裁剪超出布局区域外的绘图内容",
30395
30395
  "type": "boolean"
30396
30396
  },
30397
+ "customFilter": {
30398
+ "typeof": "function"
30399
+ },
30397
30400
  "endText": {
30398
30401
  "typeof": "function"
30399
30402
  },
@@ -33317,6 +33320,9 @@
33317
33320
  "cursor": {
33318
33321
  "$ref": "#/definitions/Cursor"
33319
33322
  },
33323
+ "customFilter": {
33324
+ "typeof": "function"
33325
+ },
33320
33326
  "customPickShape": {
33321
33327
  "typeof": "function"
33322
33328
  },
@@ -36594,7 +36600,17 @@
36594
36600
  "type": "number"
36595
36601
  },
36596
36602
  "line": {
36597
- "$ref": "#/definitions/IMarkSpec<IRuleMarkSpec>",
36603
+ "allOf": [
36604
+ {
36605
+ "typeof": "function"
36606
+ },
36607
+ {
36608
+ "typeof": "function"
36609
+ },
36610
+ {
36611
+ "typeof": "function"
36612
+ }
36613
+ ],
36598
36614
  "description": "标签引导线样式"
36599
36615
  },
36600
36616
  "position": {
@@ -38896,6 +38912,9 @@
38896
38912
  "AABBBounds": {
38897
38913
  "$ref": "#/definitions/IBounds"
38898
38914
  },
38915
+ "OBBBounds": {
38916
+ "$ref": "#/definitions/IOBBBounds"
38917
+ },
38899
38918
  "_next": {
38900
38919
  "$ref": "#/definitions/INode"
38901
38920
  },
@@ -39341,6 +39360,7 @@
39341
39360
  },
39342
39361
  "required": [
39343
39362
  "AABBBounds",
39363
+ "OBBBounds",
39344
39364
  "_uid",
39345
39365
  "add",
39346
39366
  "addEventListener",
@@ -39450,6 +39470,9 @@
39450
39470
  "AABBBounds": {
39451
39471
  "$ref": "#/definitions/IBounds"
39452
39472
  },
39473
+ "OBBBounds": {
39474
+ "$ref": "#/definitions/IOBBBounds"
39475
+ },
39453
39476
  "_next": {
39454
39477
  "$ref": "#/definitions/INode"
39455
39478
  },
@@ -39895,6 +39918,7 @@
39895
39918
  },
39896
39919
  "required": [
39897
39920
  "AABBBounds",
39921
+ "OBBBounds",
39898
39922
  "_uid",
39899
39923
  "add",
39900
39924
  "addEventListener",
@@ -40004,6 +40028,9 @@
40004
40028
  "AABBBounds": {
40005
40029
  "$ref": "#/definitions/IBounds"
40006
40030
  },
40031
+ "OBBBounds": {
40032
+ "$ref": "#/definitions/IOBBBounds"
40033
+ },
40007
40034
  "_next": {
40008
40035
  "$ref": "#/definitions/INode"
40009
40036
  },
@@ -40449,6 +40476,7 @@
40449
40476
  },
40450
40477
  "required": [
40451
40478
  "AABBBounds",
40479
+ "OBBBounds",
40452
40480
  "_uid",
40453
40481
  "add",
40454
40482
  "addEventListener",
@@ -40641,6 +40669,9 @@
40641
40669
  "AABBBounds": {
40642
40670
  "$ref": "#/definitions/IBounds"
40643
40671
  },
40672
+ "OBBBounds": {
40673
+ "$ref": "#/definitions/IOBBBounds"
40674
+ },
40644
40675
  "_next": {
40645
40676
  "$ref": "#/definitions/INode"
40646
40677
  },
@@ -41113,6 +41144,7 @@
41113
41144
  },
41114
41145
  "required": [
41115
41146
  "AABBBounds",
41147
+ "OBBBounds",
41116
41148
  "_uid",
41117
41149
  "add",
41118
41150
  "addEventListener",
@@ -46265,6 +46297,9 @@
46265
46297
  "AABBBounds": {
46266
46298
  "$ref": "#/definitions/IBounds"
46267
46299
  },
46300
+ "OBBBounds": {
46301
+ "$ref": "#/definitions/IOBBBounds"
46302
+ },
46268
46303
  "_next": {
46269
46304
  "$ref": "#/definitions/INode"
46270
46305
  },
@@ -46822,6 +46857,7 @@
46822
46857
  },
46823
46858
  "required": [
46824
46859
  "AABBBounds",
46860
+ "OBBBounds",
46825
46861
  "_uid",
46826
46862
  "add",
46827
46863
  "addEventListener",
@@ -55101,6 +55137,133 @@
55101
55137
  ],
55102
55138
  "type": "object"
55103
55139
  },
55140
+ "IOBBBounds": {
55141
+ "properties": {
55142
+ "add": {
55143
+ "typeof": "function"
55144
+ },
55145
+ "alignsWith": {
55146
+ "typeof": "function"
55147
+ },
55148
+ "angle": {
55149
+ "type": "number"
55150
+ },
55151
+ "clear": {
55152
+ "typeof": "function"
55153
+ },
55154
+ "clone": {
55155
+ "typeof": "function"
55156
+ },
55157
+ "contains": {
55158
+ "typeof": "function"
55159
+ },
55160
+ "containsPoint": {
55161
+ "typeof": "function"
55162
+ },
55163
+ "copy": {
55164
+ "typeof": "function"
55165
+ },
55166
+ "empty": {
55167
+ "typeof": "function"
55168
+ },
55169
+ "encloses": {
55170
+ "typeof": "function"
55171
+ },
55172
+ "equals": {
55173
+ "typeof": "function"
55174
+ },
55175
+ "expand": {
55176
+ "typeof": "function"
55177
+ },
55178
+ "height": {
55179
+ "typeof": "function"
55180
+ },
55181
+ "intersect": {
55182
+ "typeof": "function"
55183
+ },
55184
+ "intersects": {
55185
+ "typeof": "function"
55186
+ },
55187
+ "rotate": {
55188
+ "typeof": "function"
55189
+ },
55190
+ "round": {
55191
+ "typeof": "function"
55192
+ },
55193
+ "scale": {
55194
+ "typeof": "function"
55195
+ },
55196
+ "scaleX": {
55197
+ "typeof": "function"
55198
+ },
55199
+ "scaleY": {
55200
+ "typeof": "function"
55201
+ },
55202
+ "set": {
55203
+ "typeof": "function"
55204
+ },
55205
+ "setValue": {
55206
+ "typeof": "function"
55207
+ },
55208
+ "transformWithMatrix": {
55209
+ "typeof": "function"
55210
+ },
55211
+ "translate": {
55212
+ "typeof": "function"
55213
+ },
55214
+ "union": {
55215
+ "typeof": "function"
55216
+ },
55217
+ "width": {
55218
+ "typeof": "function"
55219
+ },
55220
+ "x1": {
55221
+ "type": "number"
55222
+ },
55223
+ "x2": {
55224
+ "type": "number"
55225
+ },
55226
+ "y1": {
55227
+ "type": "number"
55228
+ },
55229
+ "y2": {
55230
+ "type": "number"
55231
+ }
55232
+ },
55233
+ "required": [
55234
+ "add",
55235
+ "alignsWith",
55236
+ "angle",
55237
+ "clear",
55238
+ "clone",
55239
+ "contains",
55240
+ "containsPoint",
55241
+ "copy",
55242
+ "empty",
55243
+ "encloses",
55244
+ "equals",
55245
+ "expand",
55246
+ "height",
55247
+ "intersect",
55248
+ "intersects",
55249
+ "rotate",
55250
+ "round",
55251
+ "scale",
55252
+ "scaleX",
55253
+ "scaleY",
55254
+ "set",
55255
+ "setValue",
55256
+ "transformWithMatrix",
55257
+ "translate",
55258
+ "union",
55259
+ "width",
55260
+ "x1",
55261
+ "x2",
55262
+ "y1",
55263
+ "y2"
55264
+ ],
55265
+ "type": "object"
55266
+ },
55104
55267
  "IOption3D": {
55105
55268
  "properties": {
55106
55269
  "alpha": {
@@ -70501,6 +70664,9 @@
70501
70664
  "AABBBounds": {
70502
70665
  "$ref": "#/definitions/IBounds"
70503
70666
  },
70667
+ "OBBBounds": {
70668
+ "$ref": "#/definitions/IOBBBounds"
70669
+ },
70504
70670
  "_next": {
70505
70671
  "$ref": "#/definitions/INode"
70506
70672
  },
@@ -70976,6 +71142,7 @@
70976
71142
  },
70977
71143
  "required": [
70978
71144
  "AABBBounds",
71145
+ "OBBBounds",
70979
71146
  "_uid",
70980
71147
  "add",
70981
71148
  "addEventListener",
@@ -81804,7 +81971,7 @@
81804
81971
  },
81805
81972
  "Map<Function,(...args:any[])=>void>": {
81806
81973
  "properties": {
81807
- "__@toStringTag@13705": {
81974
+ "__@toStringTag@13709": {
81808
81975
  "type": "string"
81809
81976
  },
81810
81977
  "size": {
@@ -81812,14 +81979,14 @@
81812
81979
  }
81813
81980
  },
81814
81981
  "required": [
81815
- "__@toStringTag@13705",
81982
+ "__@toStringTag@13709",
81816
81983
  "size"
81817
81984
  ],
81818
81985
  "type": "object"
81819
81986
  },
81820
81987
  "Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
81821
81988
  "properties": {
81822
- "__@toStringTag@13705": {
81989
+ "__@toStringTag@13709": {
81823
81990
  "type": "string"
81824
81991
  },
81825
81992
  "size": {
@@ -81827,14 +81994,14 @@
81827
81994
  }
81828
81995
  },
81829
81996
  "required": [
81830
- "__@toStringTag@13705",
81997
+ "__@toStringTag@13709",
81831
81998
  "size"
81832
81999
  ],
81833
82000
  "type": "object"
81834
82001
  },
81835
82002
  "Map<string,any>": {
81836
82003
  "properties": {
81837
- "__@toStringTag@13705": {
82004
+ "__@toStringTag@13709": {
81838
82005
  "type": "string"
81839
82006
  },
81840
82007
  "size": {
@@ -81842,14 +82009,14 @@
81842
82009
  }
81843
82010
  },
81844
82011
  "required": [
81845
- "__@toStringTag@13705",
82012
+ "__@toStringTag@13709",
81846
82013
  "size"
81847
82014
  ],
81848
82015
  "type": "object"
81849
82016
  },
81850
82017
  "Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
81851
82018
  "properties": {
81852
- "__@toStringTag@13705": {
82019
+ "__@toStringTag@13709": {
81853
82020
  "type": "string"
81854
82021
  },
81855
82022
  "size": {
@@ -81857,14 +82024,14 @@
81857
82024
  }
81858
82025
  },
81859
82026
  "required": [
81860
- "__@toStringTag@13705",
82027
+ "__@toStringTag@13709",
81861
82028
  "size"
81862
82029
  ],
81863
82030
  "type": "object"
81864
82031
  },
81865
82032
  "Map<string|HTMLElement,{container:string|HTMLElement;dom:any;wrapGroup:any;root?:any;}>": {
81866
82033
  "properties": {
81867
- "__@toStringTag@13705": {
82034
+ "__@toStringTag@13709": {
81868
82035
  "type": "string"
81869
82036
  },
81870
82037
  "size": {
@@ -81872,14 +82039,14 @@
81872
82039
  }
81873
82040
  },
81874
82041
  "required": [
81875
- "__@toStringTag@13705",
82042
+ "__@toStringTag@13709",
81876
82043
  "size"
81877
82044
  ],
81878
82045
  "type": "object"
81879
82046
  },
81880
82047
  "Map<string|number,IAnimate>": {
81881
82048
  "properties": {
81882
- "__@toStringTag@13705": {
82049
+ "__@toStringTag@13709": {
81883
82050
  "type": "string"
81884
82051
  },
81885
82052
  "size": {
@@ -81887,7 +82054,7 @@
81887
82054
  }
81888
82055
  },
81889
82056
  "required": [
81890
- "__@toStringTag@13705",
82057
+ "__@toStringTag@13709",
81891
82058
  "size"
81892
82059
  ],
81893
82060
  "type": "object"
@@ -88648,6 +88815,9 @@
88648
88815
  "renderable": {
88649
88816
  "type": "boolean"
88650
88817
  },
88818
+ "roamScroll": {
88819
+ "type": "boolean"
88820
+ },
88651
88821
  "round": {
88652
88822
  "type": "boolean"
88653
88823
  },
@@ -102934,34 +103104,34 @@
102934
103104
  },
102935
103105
  "Promise<FontFaceSet>": {
102936
103106
  "properties": {
102937
- "__@toStringTag@13705": {
103107
+ "__@toStringTag@13709": {
102938
103108
  "type": "string"
102939
103109
  }
102940
103110
  },
102941
103111
  "required": [
102942
- "__@toStringTag@13705"
103112
+ "__@toStringTag@13709"
102943
103113
  ],
102944
103114
  "type": "object"
102945
103115
  },
102946
103116
  "Promise<ServiceWorkerRegistration>": {
102947
103117
  "properties": {
102948
- "__@toStringTag@13705": {
103118
+ "__@toStringTag@13709": {
102949
103119
  "type": "string"
102950
103120
  }
102951
103121
  },
102952
103122
  "required": [
102953
- "__@toStringTag@13705"
103123
+ "__@toStringTag@13709"
102954
103124
  ],
102955
103125
  "type": "object"
102956
103126
  },
102957
103127
  "Promise<any>": {
102958
103128
  "properties": {
102959
- "__@toStringTag@13705": {
103129
+ "__@toStringTag@13709": {
102960
103130
  "type": "string"
102961
103131
  }
102962
103132
  },
102963
103133
  "required": [
102964
- "__@toStringTag@13705"
103134
+ "__@toStringTag@13709"
102965
103135
  ],
102966
103136
  "type": "object"
102967
103137
  },