@visactor/vseed 0.0.26 → 0.0.28
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/dist/builder/builder/builder.d.ts +51 -0
- package/dist/index.cjs +129 -64
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +129 -64
- package/dist/index.js.map +1 -1
- package/dist/pipeline/spec/chart/pipes/dataset/index.d.ts +1 -0
- package/dist/pipeline/spec/chart/pipes/dataset/progressive.d.ts +2 -0
- package/dist/types/advancedVSeed.d.ts +12 -0
- package/dist/types/chartType/area/area.d.ts +237 -6
- package/dist/types/chartType/areaPercent/areaPercent.d.ts +237 -6
- package/dist/types/chartType/areaRange/areaRange.d.ts +237 -6
- package/dist/types/chartType/bar/bar.d.ts +78 -2
- package/dist/types/chartType/barParallel/barParallel.d.ts +78 -2
- package/dist/types/chartType/barPercent/barPercent.d.ts +78 -2
- package/dist/types/chartType/column/column.d.ts +78 -2
- package/dist/types/chartType/columnParallel/columnParallel.d.ts +78 -2
- package/dist/types/chartType/columnPercent/columnPercent.d.ts +78 -2
- package/dist/types/chartType/line/line.d.ts +163 -4
- package/dist/types/chartType/scatter/scatter.d.ts +82 -2
- package/dist/types/properties/config/config.d.ts +12 -0
- package/dist/types/properties/theme/customTheme.d.ts +12 -0
- package/dist/types/vseed.d.ts +1505 -117
- package/dist/umd/index.js +132 -389
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -2
@@ -3,6 +3,7 @@ export declare class Builder implements VSeedBuilder {
|
|
3
3
|
private _vseed;
|
4
4
|
private _advancedVSeed;
|
5
5
|
private _spec;
|
6
|
+
private _performance;
|
6
7
|
constructor(vseed: VSeed);
|
7
8
|
build: () => Spec;
|
8
9
|
buildSpec: (advanced: AdvancedVSeed) => Spec;
|
@@ -63,11 +64,14 @@ export declare class Builder implements VSeedBuilder {
|
|
63
64
|
bodyFontColor?: string | undefined;
|
64
65
|
bodyBackgroundColor?: string | undefined;
|
65
66
|
hoverBodyBackgroundColor?: string | undefined;
|
67
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
66
68
|
headerFontSize?: number | undefined;
|
67
69
|
headerFontColor?: string | undefined;
|
68
70
|
headerBackgroundColor?: string | undefined;
|
69
71
|
hoverHeaderBackgroundColor?: string | undefined;
|
72
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
70
73
|
selectedBorderColor?: string | undefined;
|
74
|
+
selectedBackgroundColor?: string | undefined;
|
71
75
|
} | undefined;
|
72
76
|
pivotTable?: {
|
73
77
|
borderColor?: string | undefined;
|
@@ -75,11 +79,14 @@ export declare class Builder implements VSeedBuilder {
|
|
75
79
|
bodyFontColor?: string | undefined;
|
76
80
|
bodyBackgroundColor?: string | undefined;
|
77
81
|
hoverBodyBackgroundColor?: string | undefined;
|
82
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
78
83
|
headerFontSize?: number | undefined;
|
79
84
|
headerFontColor?: string | undefined;
|
80
85
|
headerBackgroundColor?: string | undefined;
|
81
86
|
hoverHeaderBackgroundColor?: string | undefined;
|
87
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
82
88
|
selectedBorderColor?: string | undefined;
|
89
|
+
selectedBackgroundColor?: string | undefined;
|
83
90
|
} | undefined;
|
84
91
|
line?: {
|
85
92
|
backgroundColor?: string | undefined;
|
@@ -1704,11 +1711,14 @@ export declare class Builder implements VSeedBuilder {
|
|
1704
1711
|
bodyFontColor?: string | undefined;
|
1705
1712
|
bodyBackgroundColor?: string | undefined;
|
1706
1713
|
hoverBodyBackgroundColor?: string | undefined;
|
1714
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
1707
1715
|
headerFontSize?: number | undefined;
|
1708
1716
|
headerFontColor?: string | undefined;
|
1709
1717
|
headerBackgroundColor?: string | undefined;
|
1710
1718
|
hoverHeaderBackgroundColor?: string | undefined;
|
1719
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
1711
1720
|
selectedBorderColor?: string | undefined;
|
1721
|
+
selectedBackgroundColor?: string | undefined;
|
1712
1722
|
} | undefined;
|
1713
1723
|
pivotTable?: {
|
1714
1724
|
borderColor?: string | undefined;
|
@@ -1716,11 +1726,14 @@ export declare class Builder implements VSeedBuilder {
|
|
1716
1726
|
bodyFontColor?: string | undefined;
|
1717
1727
|
bodyBackgroundColor?: string | undefined;
|
1718
1728
|
hoverBodyBackgroundColor?: string | undefined;
|
1729
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
1719
1730
|
headerFontSize?: number | undefined;
|
1720
1731
|
headerFontColor?: string | undefined;
|
1721
1732
|
headerBackgroundColor?: string | undefined;
|
1722
1733
|
hoverHeaderBackgroundColor?: string | undefined;
|
1734
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
1723
1735
|
selectedBorderColor?: string | undefined;
|
1736
|
+
selectedBackgroundColor?: string | undefined;
|
1724
1737
|
} | undefined;
|
1725
1738
|
line?: {
|
1726
1739
|
backgroundColor?: string | undefined;
|
@@ -3446,11 +3459,14 @@ export declare class Builder implements VSeedBuilder {
|
|
3446
3459
|
bodyFontColor?: string | undefined;
|
3447
3460
|
bodyBackgroundColor?: string | undefined;
|
3448
3461
|
hoverBodyBackgroundColor?: string | undefined;
|
3462
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
3449
3463
|
headerFontSize?: number | undefined;
|
3450
3464
|
headerFontColor?: string | undefined;
|
3451
3465
|
headerBackgroundColor?: string | undefined;
|
3452
3466
|
hoverHeaderBackgroundColor?: string | undefined;
|
3467
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
3453
3468
|
selectedBorderColor?: string | undefined;
|
3469
|
+
selectedBackgroundColor?: string | undefined;
|
3454
3470
|
} | undefined;
|
3455
3471
|
pivotTable?: {
|
3456
3472
|
borderColor?: string | undefined;
|
@@ -3458,11 +3474,14 @@ export declare class Builder implements VSeedBuilder {
|
|
3458
3474
|
bodyFontColor?: string | undefined;
|
3459
3475
|
bodyBackgroundColor?: string | undefined;
|
3460
3476
|
hoverBodyBackgroundColor?: string | undefined;
|
3477
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
3461
3478
|
headerFontSize?: number | undefined;
|
3462
3479
|
headerFontColor?: string | undefined;
|
3463
3480
|
headerBackgroundColor?: string | undefined;
|
3464
3481
|
hoverHeaderBackgroundColor?: string | undefined;
|
3482
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
3465
3483
|
selectedBorderColor?: string | undefined;
|
3484
|
+
selectedBackgroundColor?: string | undefined;
|
3466
3485
|
} | undefined;
|
3467
3486
|
line?: {
|
3468
3487
|
backgroundColor?: string | undefined;
|
@@ -4864,11 +4883,14 @@ export declare class Builder implements VSeedBuilder {
|
|
4864
4883
|
bodyFontColor?: string | undefined;
|
4865
4884
|
bodyBackgroundColor?: string | undefined;
|
4866
4885
|
hoverBodyBackgroundColor?: string | undefined;
|
4886
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
4867
4887
|
headerFontSize?: number | undefined;
|
4868
4888
|
headerFontColor?: string | undefined;
|
4869
4889
|
headerBackgroundColor?: string | undefined;
|
4870
4890
|
hoverHeaderBackgroundColor?: string | undefined;
|
4891
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
4871
4892
|
selectedBorderColor?: string | undefined;
|
4893
|
+
selectedBackgroundColor?: string | undefined;
|
4872
4894
|
} | undefined;
|
4873
4895
|
pivotTable?: {
|
4874
4896
|
borderColor?: string | undefined;
|
@@ -4876,11 +4898,14 @@ export declare class Builder implements VSeedBuilder {
|
|
4876
4898
|
bodyFontColor?: string | undefined;
|
4877
4899
|
bodyBackgroundColor?: string | undefined;
|
4878
4900
|
hoverBodyBackgroundColor?: string | undefined;
|
4901
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
4879
4902
|
headerFontSize?: number | undefined;
|
4880
4903
|
headerFontColor?: string | undefined;
|
4881
4904
|
headerBackgroundColor?: string | undefined;
|
4882
4905
|
hoverHeaderBackgroundColor?: string | undefined;
|
4906
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
4883
4907
|
selectedBorderColor?: string | undefined;
|
4908
|
+
selectedBackgroundColor?: string | undefined;
|
4884
4909
|
} | undefined;
|
4885
4910
|
line?: {
|
4886
4911
|
backgroundColor?: string | undefined;
|
@@ -6335,11 +6360,14 @@ export declare class Builder implements VSeedBuilder {
|
|
6335
6360
|
bodyFontColor?: string | undefined;
|
6336
6361
|
bodyBackgroundColor?: string | undefined;
|
6337
6362
|
hoverBodyBackgroundColor?: string | undefined;
|
6363
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
6338
6364
|
headerFontSize?: number | undefined;
|
6339
6365
|
headerFontColor?: string | undefined;
|
6340
6366
|
headerBackgroundColor?: string | undefined;
|
6341
6367
|
hoverHeaderBackgroundColor?: string | undefined;
|
6368
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
6342
6369
|
selectedBorderColor?: string | undefined;
|
6370
|
+
selectedBackgroundColor?: string | undefined;
|
6343
6371
|
} | undefined;
|
6344
6372
|
pivotTable?: {
|
6345
6373
|
borderColor?: string | undefined;
|
@@ -6347,11 +6375,14 @@ export declare class Builder implements VSeedBuilder {
|
|
6347
6375
|
bodyFontColor?: string | undefined;
|
6348
6376
|
bodyBackgroundColor?: string | undefined;
|
6349
6377
|
hoverBodyBackgroundColor?: string | undefined;
|
6378
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
6350
6379
|
headerFontSize?: number | undefined;
|
6351
6380
|
headerFontColor?: string | undefined;
|
6352
6381
|
headerBackgroundColor?: string | undefined;
|
6353
6382
|
hoverHeaderBackgroundColor?: string | undefined;
|
6383
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
6354
6384
|
selectedBorderColor?: string | undefined;
|
6385
|
+
selectedBackgroundColor?: string | undefined;
|
6355
6386
|
} | undefined;
|
6356
6387
|
line?: {
|
6357
6388
|
backgroundColor?: string | undefined;
|
@@ -7976,11 +8007,14 @@ export declare class Builder implements VSeedBuilder {
|
|
7976
8007
|
bodyFontColor?: string | undefined;
|
7977
8008
|
bodyBackgroundColor?: string | undefined;
|
7978
8009
|
hoverBodyBackgroundColor?: string | undefined;
|
8010
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
7979
8011
|
headerFontSize?: number | undefined;
|
7980
8012
|
headerFontColor?: string | undefined;
|
7981
8013
|
headerBackgroundColor?: string | undefined;
|
7982
8014
|
hoverHeaderBackgroundColor?: string | undefined;
|
8015
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
7983
8016
|
selectedBorderColor?: string | undefined;
|
8017
|
+
selectedBackgroundColor?: string | undefined;
|
7984
8018
|
} | undefined;
|
7985
8019
|
pivotTable?: {
|
7986
8020
|
borderColor?: string | undefined;
|
@@ -7988,11 +8022,14 @@ export declare class Builder implements VSeedBuilder {
|
|
7988
8022
|
bodyFontColor?: string | undefined;
|
7989
8023
|
bodyBackgroundColor?: string | undefined;
|
7990
8024
|
hoverBodyBackgroundColor?: string | undefined;
|
8025
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
7991
8026
|
headerFontSize?: number | undefined;
|
7992
8027
|
headerFontColor?: string | undefined;
|
7993
8028
|
headerBackgroundColor?: string | undefined;
|
7994
8029
|
hoverHeaderBackgroundColor?: string | undefined;
|
8030
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
7995
8031
|
selectedBorderColor?: string | undefined;
|
8032
|
+
selectedBackgroundColor?: string | undefined;
|
7996
8033
|
} | undefined;
|
7997
8034
|
line?: {
|
7998
8035
|
backgroundColor?: string | undefined;
|
@@ -9765,11 +9802,14 @@ export declare class Builder implements VSeedBuilder {
|
|
9765
9802
|
bodyFontColor?: string | undefined;
|
9766
9803
|
bodyBackgroundColor?: string | undefined;
|
9767
9804
|
hoverBodyBackgroundColor?: string | undefined;
|
9805
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
9768
9806
|
headerFontSize?: number | undefined;
|
9769
9807
|
headerFontColor?: string | undefined;
|
9770
9808
|
headerBackgroundColor?: string | undefined;
|
9771
9809
|
hoverHeaderBackgroundColor?: string | undefined;
|
9810
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
9772
9811
|
selectedBorderColor?: string | undefined;
|
9812
|
+
selectedBackgroundColor?: string | undefined;
|
9773
9813
|
} | undefined;
|
9774
9814
|
pivotTable?: {
|
9775
9815
|
borderColor?: string | undefined;
|
@@ -9777,11 +9817,14 @@ export declare class Builder implements VSeedBuilder {
|
|
9777
9817
|
bodyFontColor?: string | undefined;
|
9778
9818
|
bodyBackgroundColor?: string | undefined;
|
9779
9819
|
hoverBodyBackgroundColor?: string | undefined;
|
9820
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
9780
9821
|
headerFontSize?: number | undefined;
|
9781
9822
|
headerFontColor?: string | undefined;
|
9782
9823
|
headerBackgroundColor?: string | undefined;
|
9783
9824
|
hoverHeaderBackgroundColor?: string | undefined;
|
9825
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
9784
9826
|
selectedBorderColor?: string | undefined;
|
9827
|
+
selectedBackgroundColor?: string | undefined;
|
9785
9828
|
} | undefined;
|
9786
9829
|
line?: {
|
9787
9830
|
backgroundColor?: string | undefined;
|
@@ -11406,11 +11449,14 @@ export declare class Builder implements VSeedBuilder {
|
|
11406
11449
|
bodyFontColor?: string | undefined;
|
11407
11450
|
bodyBackgroundColor?: string | undefined;
|
11408
11451
|
hoverBodyBackgroundColor?: string | undefined;
|
11452
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
11409
11453
|
headerFontSize?: number | undefined;
|
11410
11454
|
headerFontColor?: string | undefined;
|
11411
11455
|
headerBackgroundColor?: string | undefined;
|
11412
11456
|
hoverHeaderBackgroundColor?: string | undefined;
|
11457
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
11413
11458
|
selectedBorderColor?: string | undefined;
|
11459
|
+
selectedBackgroundColor?: string | undefined;
|
11414
11460
|
} | undefined;
|
11415
11461
|
pivotTable?: {
|
11416
11462
|
borderColor?: string | undefined;
|
@@ -11418,11 +11464,14 @@ export declare class Builder implements VSeedBuilder {
|
|
11418
11464
|
bodyFontColor?: string | undefined;
|
11419
11465
|
bodyBackgroundColor?: string | undefined;
|
11420
11466
|
hoverBodyBackgroundColor?: string | undefined;
|
11467
|
+
hoverBodyInlineBackgroundColor?: string | undefined;
|
11421
11468
|
headerFontSize?: number | undefined;
|
11422
11469
|
headerFontColor?: string | undefined;
|
11423
11470
|
headerBackgroundColor?: string | undefined;
|
11424
11471
|
hoverHeaderBackgroundColor?: string | undefined;
|
11472
|
+
hoverHeaderInlineBackgroundColor?: string | undefined;
|
11425
11473
|
selectedBorderColor?: string | undefined;
|
11474
|
+
selectedBackgroundColor?: string | undefined;
|
11426
11475
|
} | undefined;
|
11427
11476
|
line?: {
|
11428
11477
|
backgroundColor?: string | undefined;
|
@@ -13140,6 +13189,8 @@ export declare class Builder implements VSeedBuilder {
|
|
13140
13189
|
} | null);
|
13141
13190
|
get spec(): Spec | null;
|
13142
13191
|
set spec(value: Spec | null);
|
13192
|
+
get performance(): Record<string, string | number>;
|
13193
|
+
set performance(value: Record<string, string | number>);
|
13143
13194
|
static _advancedPipelineMap: Partial<Record<ChartType, AdvancedPipeline>>;
|
13144
13195
|
static _specPipelineMap: Partial<Record<ChartType, SpecPipeline>>;
|
13145
13196
|
static _customAdvancedPipe: Partial<Record<ChartType, AdvancedPipe>>;
|