@visactor/vchart-schema 1.5.1-alpha.2 → 1.5.1-alpha.3
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.
- package/package.json +1 -1
- package/vchart.json +155 -28
package/package.json
CHANGED
package/vchart.json
CHANGED
|
@@ -7527,6 +7527,50 @@
|
|
|
7527
7527
|
}
|
|
7528
7528
|
]
|
|
7529
7529
|
},
|
|
7530
|
+
"EasingType_1": {
|
|
7531
|
+
"anyOf": [
|
|
7532
|
+
{
|
|
7533
|
+
"typeof": "function"
|
|
7534
|
+
},
|
|
7535
|
+
{
|
|
7536
|
+
"enum": [
|
|
7537
|
+
"",
|
|
7538
|
+
"backIn",
|
|
7539
|
+
"backInOut",
|
|
7540
|
+
"backOut",
|
|
7541
|
+
"bounceIn",
|
|
7542
|
+
"bounceInOut",
|
|
7543
|
+
"bounceOut",
|
|
7544
|
+
"circIn",
|
|
7545
|
+
"circInOut",
|
|
7546
|
+
"circOut",
|
|
7547
|
+
"cubicIn",
|
|
7548
|
+
"cubicInOut",
|
|
7549
|
+
"cubicOut",
|
|
7550
|
+
"elasticIn",
|
|
7551
|
+
"elasticInOut",
|
|
7552
|
+
"elasticOut",
|
|
7553
|
+
"expoIn",
|
|
7554
|
+
"expoInOut",
|
|
7555
|
+
"expoOut",
|
|
7556
|
+
"linear",
|
|
7557
|
+
"quadIn",
|
|
7558
|
+
"quadInOut",
|
|
7559
|
+
"quadOut",
|
|
7560
|
+
"quartIn",
|
|
7561
|
+
"quartInOut",
|
|
7562
|
+
"quartOut",
|
|
7563
|
+
"quintIn",
|
|
7564
|
+
"quintInOut",
|
|
7565
|
+
"quintOut",
|
|
7566
|
+
"sineIn",
|
|
7567
|
+
"sineInOut",
|
|
7568
|
+
"sineOut"
|
|
7569
|
+
],
|
|
7570
|
+
"type": "string"
|
|
7571
|
+
}
|
|
7572
|
+
]
|
|
7573
|
+
},
|
|
7530
7574
|
"Element": {
|
|
7531
7575
|
"properties": {
|
|
7532
7576
|
"ATTRIBUTE_NODE": {
|
|
@@ -16978,7 +17022,7 @@
|
|
|
16978
17022
|
},
|
|
16979
17023
|
"customParameters": {},
|
|
16980
17024
|
"easing": {
|
|
16981
|
-
"$ref": "#/definitions/
|
|
17025
|
+
"$ref": "#/definitions/EasingType_1"
|
|
16982
17026
|
},
|
|
16983
17027
|
"options": {},
|
|
16984
17028
|
"type": {
|
|
@@ -17174,7 +17218,7 @@
|
|
|
17174
17218
|
"$ref": "#/definitions/MarkFunctionValueType<number>"
|
|
17175
17219
|
},
|
|
17176
17220
|
"easing": {
|
|
17177
|
-
"$ref": "#/definitions/
|
|
17221
|
+
"$ref": "#/definitions/EasingType_1"
|
|
17178
17222
|
},
|
|
17179
17223
|
"loop": {
|
|
17180
17224
|
"type": [
|
|
@@ -28296,6 +28340,9 @@
|
|
|
28296
28340
|
"customPickShape": {
|
|
28297
28341
|
"typeof": "function"
|
|
28298
28342
|
},
|
|
28343
|
+
"disableTriggerEvent": {
|
|
28344
|
+
"type": "boolean"
|
|
28345
|
+
},
|
|
28299
28346
|
"display": {
|
|
28300
28347
|
"enum": [
|
|
28301
28348
|
"flex",
|
|
@@ -58834,6 +58881,11 @@
|
|
|
58834
58881
|
},
|
|
58835
58882
|
"ITooltipTextTheme": {
|
|
58836
58883
|
"properties": {
|
|
58884
|
+
"autoWidth": {
|
|
58885
|
+
"description": "是否开启自动宽度。效果分为以下几种情况:\n- tooltip 标题:`autoWidth` 默认为 `false`。如果配置为 `true`,则 tooltip 标题会保持和 tooltip 内容一致的宽度\n- tooltip key 标签:`autoWidth` 不适用\n- tooltip value 标签:`autoWidth` 默认为 `true`。如果配置为 `true`,则 tooltip value 标签会自动占满 tooltip 整体宽度的剩余部分",
|
|
58886
|
+
"since": "1.4.2",
|
|
58887
|
+
"type": "boolean"
|
|
58888
|
+
},
|
|
58837
58889
|
"fill": {
|
|
58838
58890
|
"anyOf": [
|
|
58839
58891
|
{
|
|
@@ -58904,7 +58956,7 @@
|
|
|
58904
58956
|
"ITooltipTheme": {
|
|
58905
58957
|
"properties": {
|
|
58906
58958
|
"keyLabel": {
|
|
58907
|
-
"$ref": "#/definitions/ITooltipTextTheme",
|
|
58959
|
+
"$ref": "#/definitions/Omit<ITooltipTextTheme,\"autoWidth\">",
|
|
58908
58960
|
"description": "tooltip内容,key字段"
|
|
58909
58961
|
},
|
|
58910
58962
|
"offset": {
|
|
@@ -64634,7 +64686,7 @@
|
|
|
64634
64686
|
},
|
|
64635
64687
|
"Map<Function,(...args:any[])=>void>": {
|
|
64636
64688
|
"properties": {
|
|
64637
|
-
"__@toStringTag@
|
|
64689
|
+
"__@toStringTag@15608": {
|
|
64638
64690
|
"type": "string"
|
|
64639
64691
|
},
|
|
64640
64692
|
"size": {
|
|
@@ -64642,14 +64694,14 @@
|
|
|
64642
64694
|
}
|
|
64643
64695
|
},
|
|
64644
64696
|
"required": [
|
|
64645
|
-
"__@toStringTag@
|
|
64697
|
+
"__@toStringTag@15608",
|
|
64646
64698
|
"size"
|
|
64647
64699
|
],
|
|
64648
64700
|
"type": "object"
|
|
64649
64701
|
},
|
|
64650
64702
|
"Map<number,IGraphicPicker>": {
|
|
64651
64703
|
"properties": {
|
|
64652
|
-
"__@toStringTag@
|
|
64704
|
+
"__@toStringTag@15608": {
|
|
64653
64705
|
"type": "string"
|
|
64654
64706
|
},
|
|
64655
64707
|
"size": {
|
|
@@ -64657,14 +64709,14 @@
|
|
|
64657
64709
|
}
|
|
64658
64710
|
},
|
|
64659
64711
|
"required": [
|
|
64660
|
-
"__@toStringTag@
|
|
64712
|
+
"__@toStringTag@15608",
|
|
64661
64713
|
"size"
|
|
64662
64714
|
],
|
|
64663
64715
|
"type": "object"
|
|
64664
64716
|
},
|
|
64665
64717
|
"Map<number,IGraphicRender>": {
|
|
64666
64718
|
"properties": {
|
|
64667
|
-
"__@toStringTag@
|
|
64719
|
+
"__@toStringTag@15608": {
|
|
64668
64720
|
"type": "string"
|
|
64669
64721
|
},
|
|
64670
64722
|
"size": {
|
|
@@ -64672,14 +64724,14 @@
|
|
|
64672
64724
|
}
|
|
64673
64725
|
},
|
|
64674
64726
|
"required": [
|
|
64675
|
-
"__@toStringTag@
|
|
64727
|
+
"__@toStringTag@15608",
|
|
64676
64728
|
"size"
|
|
64677
64729
|
],
|
|
64678
64730
|
"type": "object"
|
|
64679
64731
|
},
|
|
64680
64732
|
"Map<number,{layer:ILayer;group?:IGroup;zIndex:number;drawContribution?:IDrawContribution;}>": {
|
|
64681
64733
|
"properties": {
|
|
64682
|
-
"__@toStringTag@
|
|
64734
|
+
"__@toStringTag@15608": {
|
|
64683
64735
|
"type": "string"
|
|
64684
64736
|
},
|
|
64685
64737
|
"size": {
|
|
@@ -64687,14 +64739,14 @@
|
|
|
64687
64739
|
}
|
|
64688
64740
|
},
|
|
64689
64741
|
"required": [
|
|
64690
|
-
"__@toStringTag@
|
|
64742
|
+
"__@toStringTag@15608",
|
|
64691
64743
|
"size"
|
|
64692
64744
|
],
|
|
64693
64745
|
"type": "object"
|
|
64694
64746
|
},
|
|
64695
64747
|
"Map<string,Map<number,IGraphicRender>>": {
|
|
64696
64748
|
"properties": {
|
|
64697
|
-
"__@toStringTag@
|
|
64749
|
+
"__@toStringTag@15608": {
|
|
64698
64750
|
"type": "string"
|
|
64699
64751
|
},
|
|
64700
64752
|
"size": {
|
|
@@ -64702,14 +64754,14 @@
|
|
|
64702
64754
|
}
|
|
64703
64755
|
},
|
|
64704
64756
|
"required": [
|
|
64705
|
-
"__@toStringTag@
|
|
64757
|
+
"__@toStringTag@15608",
|
|
64706
64758
|
"size"
|
|
64707
64759
|
],
|
|
64708
64760
|
"type": "object"
|
|
64709
64761
|
},
|
|
64710
64762
|
"Map<string,any>": {
|
|
64711
64763
|
"properties": {
|
|
64712
|
-
"__@toStringTag@
|
|
64764
|
+
"__@toStringTag@15608": {
|
|
64713
64765
|
"type": "string"
|
|
64714
64766
|
},
|
|
64715
64767
|
"size": {
|
|
@@ -64717,14 +64769,14 @@
|
|
|
64717
64769
|
}
|
|
64718
64770
|
},
|
|
64719
64771
|
"required": [
|
|
64720
|
-
"__@toStringTag@
|
|
64772
|
+
"__@toStringTag@15608",
|
|
64721
64773
|
"size"
|
|
64722
64774
|
],
|
|
64723
64775
|
"type": "object"
|
|
64724
64776
|
},
|
|
64725
64777
|
"Map<string|HTMLCanvasElement|HTMLImageElement|IBackgroundConfig,{state:\"loading\"|\"fail\"|\"success\"|\"init\";data?:HTMLCanvasElement|HTMLImageElement;}>": {
|
|
64726
64778
|
"properties": {
|
|
64727
|
-
"__@toStringTag@
|
|
64779
|
+
"__@toStringTag@15608": {
|
|
64728
64780
|
"type": "string"
|
|
64729
64781
|
},
|
|
64730
64782
|
"size": {
|
|
@@ -64732,14 +64784,14 @@
|
|
|
64732
64784
|
}
|
|
64733
64785
|
},
|
|
64734
64786
|
"required": [
|
|
64735
|
-
"__@toStringTag@
|
|
64787
|
+
"__@toStringTag@15608",
|
|
64736
64788
|
"size"
|
|
64737
64789
|
],
|
|
64738
64790
|
"type": "object"
|
|
64739
64791
|
},
|
|
64740
64792
|
"Map<string|HTMLElement,{container:string|HTMLElement;dom:HTMLElement;wrapGroup:HTMLDivElement;}>": {
|
|
64741
64793
|
"properties": {
|
|
64742
|
-
"__@toStringTag@
|
|
64794
|
+
"__@toStringTag@15608": {
|
|
64743
64795
|
"type": "string"
|
|
64744
64796
|
},
|
|
64745
64797
|
"size": {
|
|
@@ -64747,14 +64799,14 @@
|
|
|
64747
64799
|
}
|
|
64748
64800
|
},
|
|
64749
64801
|
"required": [
|
|
64750
|
-
"__@toStringTag@
|
|
64802
|
+
"__@toStringTag@15608",
|
|
64751
64803
|
"size"
|
|
64752
64804
|
],
|
|
64753
64805
|
"type": "object"
|
|
64754
64806
|
},
|
|
64755
64807
|
"Map<string|number,IAnimate>": {
|
|
64756
64808
|
"properties": {
|
|
64757
|
-
"__@toStringTag@
|
|
64809
|
+
"__@toStringTag@15608": {
|
|
64758
64810
|
"type": "string"
|
|
64759
64811
|
},
|
|
64760
64812
|
"size": {
|
|
@@ -64762,7 +64814,7 @@
|
|
|
64762
64814
|
}
|
|
64763
64815
|
},
|
|
64764
64816
|
"required": [
|
|
64765
|
-
"__@toStringTag@
|
|
64817
|
+
"__@toStringTag@15608",
|
|
64766
64818
|
"size"
|
|
64767
64819
|
],
|
|
64768
64820
|
"type": "object"
|
|
@@ -65253,6 +65305,9 @@
|
|
|
65253
65305
|
},
|
|
65254
65306
|
"type": "array"
|
|
65255
65307
|
},
|
|
65308
|
+
"disableTriggerEvent": {
|
|
65309
|
+
"type": "boolean"
|
|
65310
|
+
},
|
|
65256
65311
|
"display": {
|
|
65257
65312
|
"enum": [
|
|
65258
65313
|
"flex",
|
|
@@ -68857,10 +68912,79 @@
|
|
|
68857
68912
|
},
|
|
68858
68913
|
"type": "object"
|
|
68859
68914
|
},
|
|
68915
|
+
"Omit<ITooltipTextTheme,\"autoWidth\">": {
|
|
68916
|
+
"properties": {
|
|
68917
|
+
"fill": {
|
|
68918
|
+
"anyOf": [
|
|
68919
|
+
{
|
|
68920
|
+
"$ref": "#/definitions/IColorKey"
|
|
68921
|
+
},
|
|
68922
|
+
{
|
|
68923
|
+
"type": "string"
|
|
68924
|
+
}
|
|
68925
|
+
],
|
|
68926
|
+
"description": "字体颜色"
|
|
68927
|
+
},
|
|
68928
|
+
"fontColor": {
|
|
68929
|
+
"anyOf": [
|
|
68930
|
+
{
|
|
68931
|
+
"$ref": "#/definitions/IColorKey"
|
|
68932
|
+
},
|
|
68933
|
+
{
|
|
68934
|
+
"type": "string"
|
|
68935
|
+
}
|
|
68936
|
+
]
|
|
68937
|
+
},
|
|
68938
|
+
"fontFamily": {
|
|
68939
|
+
"description": "字体",
|
|
68940
|
+
"type": "string"
|
|
68941
|
+
},
|
|
68942
|
+
"fontSize": {
|
|
68943
|
+
"description": "字体大小",
|
|
68944
|
+
"type": "number"
|
|
68945
|
+
},
|
|
68946
|
+
"fontWeight": {
|
|
68947
|
+
"$ref": "#/definitions/StringOrNumber",
|
|
68948
|
+
"description": "字重"
|
|
68949
|
+
},
|
|
68950
|
+
"lineHeight": {
|
|
68951
|
+
"description": "行高",
|
|
68952
|
+
"type": [
|
|
68953
|
+
"string",
|
|
68954
|
+
"number"
|
|
68955
|
+
]
|
|
68956
|
+
},
|
|
68957
|
+
"maxWidth": {
|
|
68958
|
+
"description": "最大宽度",
|
|
68959
|
+
"type": "number"
|
|
68960
|
+
},
|
|
68961
|
+
"multiLine": {
|
|
68962
|
+
"description": "是否支持换行",
|
|
68963
|
+
"type": "boolean"
|
|
68964
|
+
},
|
|
68965
|
+
"spacing": {
|
|
68966
|
+
"description": "与相邻元素的水平间距",
|
|
68967
|
+
"type": "number"
|
|
68968
|
+
},
|
|
68969
|
+
"textAlign": {
|
|
68970
|
+
"$ref": "#/definitions/TextAlign",
|
|
68971
|
+
"description": "对齐方式"
|
|
68972
|
+
},
|
|
68973
|
+
"textBaseline": {
|
|
68974
|
+
"$ref": "#/definitions/TextBaseLine",
|
|
68975
|
+
"description": "字体基线"
|
|
68976
|
+
},
|
|
68977
|
+
"wordBreak": {
|
|
68978
|
+
"$ref": "#/definitions/RichTextWordBreak",
|
|
68979
|
+
"description": "换行模式,默认为'break-word'"
|
|
68980
|
+
}
|
|
68981
|
+
},
|
|
68982
|
+
"type": "object"
|
|
68983
|
+
},
|
|
68860
68984
|
"Omit<ITooltipTheme,\"offset\">": {
|
|
68861
68985
|
"properties": {
|
|
68862
68986
|
"keyLabel": {
|
|
68863
|
-
"$ref": "#/definitions/ITooltipTextTheme",
|
|
68987
|
+
"$ref": "#/definitions/Omit<ITooltipTextTheme,\"autoWidth\">",
|
|
68864
68988
|
"description": "tooltip内容,key字段"
|
|
68865
68989
|
},
|
|
68866
68990
|
"panel": {
|
|
@@ -69176,6 +69300,9 @@
|
|
|
69176
69300
|
"defaultCurrent": {
|
|
69177
69301
|
"type": "number"
|
|
69178
69302
|
},
|
|
69303
|
+
"disableTriggerEvent": {
|
|
69304
|
+
"type": "boolean"
|
|
69305
|
+
},
|
|
69179
69306
|
"display": {
|
|
69180
69307
|
"enum": [
|
|
69181
69308
|
"flex",
|
|
@@ -79877,34 +80004,34 @@
|
|
|
79877
80004
|
},
|
|
79878
80005
|
"Promise<FontFaceSet>": {
|
|
79879
80006
|
"properties": {
|
|
79880
|
-
"__@toStringTag@
|
|
80007
|
+
"__@toStringTag@15608": {
|
|
79881
80008
|
"type": "string"
|
|
79882
80009
|
}
|
|
79883
80010
|
},
|
|
79884
80011
|
"required": [
|
|
79885
|
-
"__@toStringTag@
|
|
80012
|
+
"__@toStringTag@15608"
|
|
79886
80013
|
],
|
|
79887
80014
|
"type": "object"
|
|
79888
80015
|
},
|
|
79889
80016
|
"Promise<ServiceWorkerRegistration>": {
|
|
79890
80017
|
"properties": {
|
|
79891
|
-
"__@toStringTag@
|
|
80018
|
+
"__@toStringTag@15608": {
|
|
79892
80019
|
"type": "string"
|
|
79893
80020
|
}
|
|
79894
80021
|
},
|
|
79895
80022
|
"required": [
|
|
79896
|
-
"__@toStringTag@
|
|
80023
|
+
"__@toStringTag@15608"
|
|
79897
80024
|
],
|
|
79898
80025
|
"type": "object"
|
|
79899
80026
|
},
|
|
79900
80027
|
"Promise<any>": {
|
|
79901
80028
|
"properties": {
|
|
79902
|
-
"__@toStringTag@
|
|
80029
|
+
"__@toStringTag@15608": {
|
|
79903
80030
|
"type": "string"
|
|
79904
80031
|
}
|
|
79905
80032
|
},
|
|
79906
80033
|
"required": [
|
|
79907
|
-
"__@toStringTag@
|
|
80034
|
+
"__@toStringTag@15608"
|
|
79908
80035
|
],
|
|
79909
80036
|
"type": "object"
|
|
79910
80037
|
},
|