@visactor/vchart-schema 1.12.4 → 1.12.5

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 +317 -171
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visactor/vchart-schema",
3
- "version": "1.12.4",
3
+ "version": "1.12.5",
4
4
  "description": "The VChart JSON schema file.",
5
5
  "sideEffects": false,
6
6
  "main": "vchart.json",
package/vchart.json CHANGED
@@ -32195,6 +32195,11 @@
32195
32195
  "$ref": "#/definitions/ILayoutNumber",
32196
32196
  "description": "模块的布局最小宽度"
32197
32197
  },
32198
+ "name": {
32199
+ "description": "mark对应的名称,主要用于事件过滤如: { markName: 'yourName' }",
32200
+ "since": "1.12.5",
32201
+ "type": "string"
32202
+ },
32198
32203
  "noOuterPadding": {
32199
32204
  "description": "是否按照 orient 自动修改 padding,隐藏位于外侧的 padding。目前只在组件上生效",
32200
32205
  "type": "boolean"
@@ -34415,56 +34420,6 @@
34415
34420
  },
34416
34421
  "type": "object"
34417
34422
  },
34418
- "IDrawContribution": {
34419
- "properties": {
34420
- "afterDraw": {
34421
- "typeof": "function"
34422
- },
34423
- "backupDirtyBounds": {
34424
- "$ref": "#/definitions/IBounds"
34425
- },
34426
- "currentRenderMap": {
34427
- "$ref": "#/definitions/Map<number,IGraphicRender>"
34428
- },
34429
- "defaultRenderMap": {
34430
- "$ref": "#/definitions/Map<number,IGraphicRender>"
34431
- },
34432
- "dirtyBounds": {
34433
- "$ref": "#/definitions/IBounds"
34434
- },
34435
- "draw": {
34436
- "typeof": "function"
34437
- },
34438
- "getRenderContribution": {
34439
- "typeof": "function"
34440
- },
34441
- "hooks": {
34442
- "typeof": "function"
34443
- },
34444
- "renderGroup": {
34445
- "typeof": "function"
34446
- },
34447
- "renderItem": {
34448
- "typeof": "function"
34449
- },
34450
- "rendering": {
34451
- "type": "boolean"
34452
- },
34453
- "styleRenderMap": {
34454
- "$ref": "#/definitions/Map<string,Map<number,IGraphicRender>>"
34455
- }
34456
- },
34457
- "required": [
34458
- "currentRenderMap",
34459
- "defaultRenderMap",
34460
- "draw",
34461
- "getRenderContribution",
34462
- "renderGroup",
34463
- "renderItem",
34464
- "styleRenderMap"
34465
- ],
34466
- "type": "object"
34467
- },
34468
34423
  "IDsvParserOptions": {
34469
34424
  "properties": {
34470
34425
  "delimiter": {
@@ -34748,6 +34703,11 @@
34748
34703
  "$ref": "#/definitions/ILayoutNumber",
34749
34704
  "description": "模块的布局最小宽度"
34750
34705
  },
34706
+ "name": {
34707
+ "description": "mark对应的名称,主要用于事件过滤如: { markName: 'yourName' }",
34708
+ "since": "1.12.5",
34709
+ "type": "string"
34710
+ },
34751
34711
  "noOuterPadding": {
34752
34712
  "description": "是否按照 orient 自动修改 padding,隐藏位于外侧的 padding。目前只在组件上生效",
34753
34713
  "type": "boolean"
@@ -35008,6 +34968,11 @@
35008
34968
  "$ref": "#/definitions/ILayoutNumber",
35009
34969
  "description": "模块的布局最小宽度"
35010
34970
  },
34971
+ "name": {
34972
+ "description": "mark对应的名称,主要用于事件过滤如: { markName: 'yourName' }",
34973
+ "since": "1.12.5",
34974
+ "type": "string"
34975
+ },
35011
34976
  "noOuterPadding": {
35012
34977
  "description": "是否按照 orient 自动修改 padding,隐藏位于外侧的 padding。目前只在组件上生效",
35013
34978
  "type": "boolean"
@@ -36299,8 +36264,43 @@
36299
36264
  {
36300
36265
  "type": "boolean"
36301
36266
  }
36302
- ],
36303
- "description": "动画配置"
36267
+ ]
36268
+ },
36269
+ "animationEnter": {
36270
+ "anyOf": [
36271
+ {
36272
+ "$ref": "#/definitions/ILabelUpdateAnimation"
36273
+ },
36274
+ {
36275
+ "type": "boolean"
36276
+ }
36277
+ ]
36278
+ },
36279
+ "animationExit": {
36280
+ "anyOf": [
36281
+ {
36282
+ "$ref": "#/definitions/ILabelExitAnimation"
36283
+ },
36284
+ {
36285
+ "type": "boolean"
36286
+ }
36287
+ ]
36288
+ },
36289
+ "animationUpdate": {
36290
+ "anyOf": [
36291
+ {
36292
+ "$ref": "#/definitions/ILabelUpdateAnimation"
36293
+ },
36294
+ {
36295
+ "items": {
36296
+ "$ref": "#/definitions/ILabelUpdateChannelAnimation"
36297
+ },
36298
+ "type": "array"
36299
+ },
36300
+ {
36301
+ "type": "boolean"
36302
+ }
36303
+ ]
36304
36304
  },
36305
36305
  "bottom": {
36306
36306
  "$ref": "#/definitions/ILayoutNumber",
@@ -45874,6 +45874,20 @@
45874
45874
  },
45875
45875
  "type": "object"
45876
45876
  },
45877
+ "ILabelExitAnimation": {
45878
+ "properties": {
45879
+ "delay": {
45880
+ "type": "number"
45881
+ },
45882
+ "duration": {
45883
+ "type": "number"
45884
+ },
45885
+ "easing": {
45886
+ "$ref": "#/definitions/EasingType"
45887
+ }
45888
+ },
45889
+ "type": "object"
45890
+ },
45877
45891
  "ILabelSpec": {
45878
45892
  "properties": {
45879
45893
  "alignSelf": {
@@ -45893,8 +45907,43 @@
45893
45907
  {
45894
45908
  "type": "boolean"
45895
45909
  }
45896
- ],
45897
- "description": "动画配置"
45910
+ ]
45911
+ },
45912
+ "animationEnter": {
45913
+ "anyOf": [
45914
+ {
45915
+ "$ref": "#/definitions/ILabelUpdateAnimation"
45916
+ },
45917
+ {
45918
+ "type": "boolean"
45919
+ }
45920
+ ]
45921
+ },
45922
+ "animationExit": {
45923
+ "anyOf": [
45924
+ {
45925
+ "$ref": "#/definitions/ILabelExitAnimation"
45926
+ },
45927
+ {
45928
+ "type": "boolean"
45929
+ }
45930
+ ]
45931
+ },
45932
+ "animationUpdate": {
45933
+ "anyOf": [
45934
+ {
45935
+ "$ref": "#/definitions/ILabelUpdateAnimation"
45936
+ },
45937
+ {
45938
+ "items": {
45939
+ "$ref": "#/definitions/ILabelUpdateChannelAnimation"
45940
+ },
45941
+ "type": "array"
45942
+ },
45943
+ {
45944
+ "type": "boolean"
45945
+ }
45946
+ ]
45898
45947
  },
45899
45948
  "bottom": {
45900
45949
  "$ref": "#/definitions/ILayoutNumber",
@@ -46154,6 +46203,49 @@
46154
46203
  },
46155
46204
  "type": "object"
46156
46205
  },
46206
+ "ILabelUpdateAnimation": {
46207
+ "properties": {
46208
+ "delay": {
46209
+ "type": "number"
46210
+ },
46211
+ "duration": {
46212
+ "type": "number"
46213
+ },
46214
+ "easing": {
46215
+ "$ref": "#/definitions/EasingType"
46216
+ },
46217
+ "increaseEffect": {
46218
+ "type": "boolean"
46219
+ }
46220
+ },
46221
+ "type": "object"
46222
+ },
46223
+ "ILabelUpdateChannelAnimation": {
46224
+ "properties": {
46225
+ "channel": {
46226
+ "items": {
46227
+ "type": "string"
46228
+ },
46229
+ "type": "array"
46230
+ },
46231
+ "delay": {
46232
+ "type": "number"
46233
+ },
46234
+ "duration": {
46235
+ "type": "number"
46236
+ },
46237
+ "easing": {
46238
+ "$ref": "#/definitions/EasingType"
46239
+ },
46240
+ "increaseEffect": {
46241
+ "type": "boolean"
46242
+ },
46243
+ "options": {
46244
+ "typeof": "function"
46245
+ }
46246
+ },
46247
+ "type": "object"
46248
+ },
46157
46249
  "ILayer": {
46158
46250
  "properties": {
46159
46251
  "AABBBounds": {
@@ -55339,47 +55431,6 @@
55339
55431
  },
55340
55432
  "type": "object"
55341
55433
  },
55342
- "IPickerService": {
55343
- "properties": {
55344
- "configure": {
55345
- "typeof": "function"
55346
- },
55347
- "containsPoint": {
55348
- "typeof": "function"
55349
- },
55350
- "drawContribution": {
55351
- "$ref": "#/definitions/IDrawContribution"
55352
- },
55353
- "pick": {
55354
- "typeof": "function"
55355
- },
55356
- "pickContext": {
55357
- "$ref": "#/definitions/IContext2d"
55358
- },
55359
- "pickGroup": {
55360
- "typeof": "function"
55361
- },
55362
- "pickItem": {
55363
- "typeof": "function"
55364
- },
55365
- "pickerMap": {
55366
- "$ref": "#/definitions/Map<number,IGraphicPicker>"
55367
- },
55368
- "type": {
55369
- "type": "string"
55370
- }
55371
- },
55372
- "required": [
55373
- "configure",
55374
- "containsPoint",
55375
- "pick",
55376
- "pickGroup",
55377
- "pickItem",
55378
- "pickerMap",
55379
- "type"
55380
- ],
55381
- "type": "object"
55382
- },
55383
55434
  "IPie3dChartSpec": {
55384
55435
  "properties": {
55385
55436
  "angle3d": {
@@ -71154,6 +71205,9 @@
71154
71205
  "getLayer": {
71155
71206
  "typeof": "function"
71156
71207
  },
71208
+ "getPickerService": {
71209
+ "typeof": "function"
71210
+ },
71157
71211
  "getPluginsByName": {
71158
71212
  "typeof": "function"
71159
71213
  },
@@ -71262,9 +71316,6 @@
71262
71316
  "pick": {
71263
71317
  "typeof": "function"
71264
71318
  },
71265
- "pickerService": {
71266
- "$ref": "#/definitions/IPickerService"
71267
- },
71268
71319
  "pluginService": {
71269
71320
  "$ref": "#/definitions/IPluginService"
71270
71321
  },
@@ -71461,6 +71512,7 @@
71461
71512
  "getElementsByName",
71462
71513
  "getElementsByType",
71463
71514
  "getLayer",
71515
+ "getPickerService",
71464
71516
  "getPluginsByName",
71465
71517
  "getTheme",
71466
71518
  "getTimeline",
@@ -74683,8 +74735,7 @@
74683
74735
  {
74684
74736
  "type": "boolean"
74685
74737
  }
74686
- ],
74687
- "description": "动画配置"
74738
+ ]
74688
74739
  },
74689
74740
  "interactive": {
74690
74741
  "default": false,
@@ -81691,7 +81742,7 @@
81691
81742
  },
81692
81743
  "Map<Function,(...args:any[])=>void>": {
81693
81744
  "properties": {
81694
- "__@toStringTag@13700": {
81745
+ "__@toStringTag@13701": {
81695
81746
  "type": "string"
81696
81747
  },
81697
81748
  "size": {
@@ -81699,44 +81750,14 @@
81699
81750
  }
81700
81751
  },
81701
81752
  "required": [
81702
- "__@toStringTag@13700",
81703
- "size"
81704
- ],
81705
- "type": "object"
81706
- },
81707
- "Map<number,IGraphicPicker>": {
81708
- "properties": {
81709
- "__@toStringTag@13700": {
81710
- "type": "string"
81711
- },
81712
- "size": {
81713
- "type": "number"
81714
- }
81715
- },
81716
- "required": [
81717
- "__@toStringTag@13700",
81718
- "size"
81719
- ],
81720
- "type": "object"
81721
- },
81722
- "Map<number,IGraphicRender>": {
81723
- "properties": {
81724
- "__@toStringTag@13700": {
81725
- "type": "string"
81726
- },
81727
- "size": {
81728
- "type": "number"
81729
- }
81730
- },
81731
- "required": [
81732
- "__@toStringTag@13700",
81753
+ "__@toStringTag@13701",
81733
81754
  "size"
81734
81755
  ],
81735
81756
  "type": "object"
81736
81757
  },
81737
81758
  "Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
81738
81759
  "properties": {
81739
- "__@toStringTag@13700": {
81760
+ "__@toStringTag@13701": {
81740
81761
  "type": "string"
81741
81762
  },
81742
81763
  "size": {
@@ -81744,29 +81765,14 @@
81744
81765
  }
81745
81766
  },
81746
81767
  "required": [
81747
- "__@toStringTag@13700",
81748
- "size"
81749
- ],
81750
- "type": "object"
81751
- },
81752
- "Map<string,Map<number,IGraphicRender>>": {
81753
- "properties": {
81754
- "__@toStringTag@13700": {
81755
- "type": "string"
81756
- },
81757
- "size": {
81758
- "type": "number"
81759
- }
81760
- },
81761
- "required": [
81762
- "__@toStringTag@13700",
81768
+ "__@toStringTag@13701",
81763
81769
  "size"
81764
81770
  ],
81765
81771
  "type": "object"
81766
81772
  },
81767
81773
  "Map<string,any>": {
81768
81774
  "properties": {
81769
- "__@toStringTag@13700": {
81775
+ "__@toStringTag@13701": {
81770
81776
  "type": "string"
81771
81777
  },
81772
81778
  "size": {
@@ -81774,14 +81780,14 @@
81774
81780
  }
81775
81781
  },
81776
81782
  "required": [
81777
- "__@toStringTag@13700",
81783
+ "__@toStringTag@13701",
81778
81784
  "size"
81779
81785
  ],
81780
81786
  "type": "object"
81781
81787
  },
81782
81788
  "Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
81783
81789
  "properties": {
81784
- "__@toStringTag@13700": {
81790
+ "__@toStringTag@13701": {
81785
81791
  "type": "string"
81786
81792
  },
81787
81793
  "size": {
@@ -81789,14 +81795,14 @@
81789
81795
  }
81790
81796
  },
81791
81797
  "required": [
81792
- "__@toStringTag@13700",
81798
+ "__@toStringTag@13701",
81793
81799
  "size"
81794
81800
  ],
81795
81801
  "type": "object"
81796
81802
  },
81797
81803
  "Map<string|HTMLElement,{container:string|HTMLElement;dom:any;wrapGroup:any;root?:any;}>": {
81798
81804
  "properties": {
81799
- "__@toStringTag@13700": {
81805
+ "__@toStringTag@13701": {
81800
81806
  "type": "string"
81801
81807
  },
81802
81808
  "size": {
@@ -81804,14 +81810,14 @@
81804
81810
  }
81805
81811
  },
81806
81812
  "required": [
81807
- "__@toStringTag@13700",
81813
+ "__@toStringTag@13701",
81808
81814
  "size"
81809
81815
  ],
81810
81816
  "type": "object"
81811
81817
  },
81812
81818
  "Map<string|number,IAnimate>": {
81813
81819
  "properties": {
81814
- "__@toStringTag@13700": {
81820
+ "__@toStringTag@13701": {
81815
81821
  "type": "string"
81816
81822
  },
81817
81823
  "size": {
@@ -81819,7 +81825,7 @@
81819
81825
  }
81820
81826
  },
81821
81827
  "required": [
81822
- "__@toStringTag@13700",
81828
+ "__@toStringTag@13701",
81823
81829
  "size"
81824
81830
  ],
81825
81831
  "type": "object"
@@ -85710,8 +85716,43 @@
85710
85716
  {
85711
85717
  "type": "boolean"
85712
85718
  }
85713
- ],
85714
- "description": "动画配置"
85719
+ ]
85720
+ },
85721
+ "animationEnter": {
85722
+ "anyOf": [
85723
+ {
85724
+ "$ref": "#/definitions/ILabelUpdateAnimation"
85725
+ },
85726
+ {
85727
+ "type": "boolean"
85728
+ }
85729
+ ]
85730
+ },
85731
+ "animationExit": {
85732
+ "anyOf": [
85733
+ {
85734
+ "$ref": "#/definitions/ILabelExitAnimation"
85735
+ },
85736
+ {
85737
+ "type": "boolean"
85738
+ }
85739
+ ]
85740
+ },
85741
+ "animationUpdate": {
85742
+ "anyOf": [
85743
+ {
85744
+ "$ref": "#/definitions/ILabelUpdateAnimation"
85745
+ },
85746
+ {
85747
+ "items": {
85748
+ "$ref": "#/definitions/ILabelUpdateChannelAnimation"
85749
+ },
85750
+ "type": "array"
85751
+ },
85752
+ {
85753
+ "type": "boolean"
85754
+ }
85755
+ ]
85715
85756
  },
85716
85757
  "bottom": {
85717
85758
  "$ref": "#/definitions/ILayoutNumber",
@@ -85986,8 +86027,43 @@
85986
86027
  {
85987
86028
  "type": "boolean"
85988
86029
  }
85989
- ],
85990
- "description": "动画配置"
86030
+ ]
86031
+ },
86032
+ "animationEnter": {
86033
+ "anyOf": [
86034
+ {
86035
+ "$ref": "#/definitions/ILabelUpdateAnimation"
86036
+ },
86037
+ {
86038
+ "type": "boolean"
86039
+ }
86040
+ ]
86041
+ },
86042
+ "animationExit": {
86043
+ "anyOf": [
86044
+ {
86045
+ "$ref": "#/definitions/ILabelExitAnimation"
86046
+ },
86047
+ {
86048
+ "type": "boolean"
86049
+ }
86050
+ ]
86051
+ },
86052
+ "animationUpdate": {
86053
+ "anyOf": [
86054
+ {
86055
+ "$ref": "#/definitions/ILabelUpdateAnimation"
86056
+ },
86057
+ {
86058
+ "items": {
86059
+ "$ref": "#/definitions/ILabelUpdateChannelAnimation"
86060
+ },
86061
+ "type": "array"
86062
+ },
86063
+ {
86064
+ "type": "boolean"
86065
+ }
86066
+ ]
85991
86067
  },
85992
86068
  "bottom": {
85993
86069
  "$ref": "#/definitions/ILayoutNumber",
@@ -93374,8 +93450,43 @@
93374
93450
  {
93375
93451
  "type": "boolean"
93376
93452
  }
93377
- ],
93378
- "description": "动画配置"
93453
+ ]
93454
+ },
93455
+ "animationEnter": {
93456
+ "anyOf": [
93457
+ {
93458
+ "$ref": "#/definitions/ILabelUpdateAnimation"
93459
+ },
93460
+ {
93461
+ "type": "boolean"
93462
+ }
93463
+ ]
93464
+ },
93465
+ "animationExit": {
93466
+ "anyOf": [
93467
+ {
93468
+ "$ref": "#/definitions/ILabelExitAnimation"
93469
+ },
93470
+ {
93471
+ "type": "boolean"
93472
+ }
93473
+ ]
93474
+ },
93475
+ "animationUpdate": {
93476
+ "anyOf": [
93477
+ {
93478
+ "$ref": "#/definitions/ILabelUpdateAnimation"
93479
+ },
93480
+ {
93481
+ "items": {
93482
+ "$ref": "#/definitions/ILabelUpdateChannelAnimation"
93483
+ },
93484
+ "type": "array"
93485
+ },
93486
+ {
93487
+ "type": "boolean"
93488
+ }
93489
+ ]
93379
93490
  },
93380
93491
  "bottom": {
93381
93492
  "$ref": "#/definitions/ILayoutNumber",
@@ -94160,8 +94271,43 @@
94160
94271
  {
94161
94272
  "type": "boolean"
94162
94273
  }
94163
- ],
94164
- "description": "动画配置"
94274
+ ]
94275
+ },
94276
+ "animationEnter": {
94277
+ "anyOf": [
94278
+ {
94279
+ "$ref": "#/definitions/ILabelUpdateAnimation"
94280
+ },
94281
+ {
94282
+ "type": "boolean"
94283
+ }
94284
+ ]
94285
+ },
94286
+ "animationExit": {
94287
+ "anyOf": [
94288
+ {
94289
+ "$ref": "#/definitions/ILabelExitAnimation"
94290
+ },
94291
+ {
94292
+ "type": "boolean"
94293
+ }
94294
+ ]
94295
+ },
94296
+ "animationUpdate": {
94297
+ "anyOf": [
94298
+ {
94299
+ "$ref": "#/definitions/ILabelUpdateAnimation"
94300
+ },
94301
+ {
94302
+ "items": {
94303
+ "$ref": "#/definitions/ILabelUpdateChannelAnimation"
94304
+ },
94305
+ "type": "array"
94306
+ },
94307
+ {
94308
+ "type": "boolean"
94309
+ }
94310
+ ]
94165
94311
  },
94166
94312
  "bottom": {
94167
94313
  "$ref": "#/definitions/ILayoutNumber",
@@ -102726,34 +102872,34 @@
102726
102872
  },
102727
102873
  "Promise<FontFaceSet>": {
102728
102874
  "properties": {
102729
- "__@toStringTag@13700": {
102875
+ "__@toStringTag@13701": {
102730
102876
  "type": "string"
102731
102877
  }
102732
102878
  },
102733
102879
  "required": [
102734
- "__@toStringTag@13700"
102880
+ "__@toStringTag@13701"
102735
102881
  ],
102736
102882
  "type": "object"
102737
102883
  },
102738
102884
  "Promise<ServiceWorkerRegistration>": {
102739
102885
  "properties": {
102740
- "__@toStringTag@13700": {
102886
+ "__@toStringTag@13701": {
102741
102887
  "type": "string"
102742
102888
  }
102743
102889
  },
102744
102890
  "required": [
102745
- "__@toStringTag@13700"
102891
+ "__@toStringTag@13701"
102746
102892
  ],
102747
102893
  "type": "object"
102748
102894
  },
102749
102895
  "Promise<any>": {
102750
102896
  "properties": {
102751
- "__@toStringTag@13700": {
102897
+ "__@toStringTag@13701": {
102752
102898
  "type": "string"
102753
102899
  }
102754
102900
  },
102755
102901
  "required": [
102756
- "__@toStringTag@13700"
102902
+ "__@toStringTag@13701"
102757
102903
  ],
102758
102904
  "type": "object"
102759
102905
  },