@visactor/vseed 0.0.20 → 0.0.22

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 (53) hide show
  1. package/dist/builder/builder/advanced/colorItems.d.ts +1 -0
  2. package/dist/builder/builder/advanced/index.d.ts +1 -1
  3. package/dist/builder/builder/builder.d.ts +220 -118
  4. package/dist/index.cjs +595 -74
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.js +558 -62
  7. package/dist/index.js.map +1 -1
  8. package/dist/pipeline/advanced/chart/pipes/analysis/index.d.ts +1 -0
  9. package/dist/pipeline/advanced/chart/pipes/analysis/sort.d.ts +4 -0
  10. package/dist/pipeline/advanced/chart/pipes/index.d.ts +1 -0
  11. package/dist/pipeline/spec/chart/pipes/dataset/datasetPivot.d.ts +0 -1
  12. package/dist/pipeline/spec/chart/pipes/dataset/index.d.ts +1 -1
  13. package/dist/pipeline/spec/table/pipes/index.d.ts +1 -0
  14. package/dist/pipeline/spec/table/pipes/theme/bodyStyle.d.ts +2 -0
  15. package/dist/pipeline/spec/table/pipes/theme/cornerHeaderStyle.d.ts +2 -0
  16. package/dist/pipeline/spec/table/pipes/theme/frameStyle.d.ts +2 -0
  17. package/dist/pipeline/spec/table/pipes/theme/headerStyle.d.ts +2 -0
  18. package/dist/pipeline/spec/table/pipes/theme/index.d.ts +6 -0
  19. package/dist/pipeline/spec/table/pipes/theme/rowHeaderStyle.d.ts +2 -0
  20. package/dist/pipeline/spec/table/pipes/theme/scrollStyle.d.ts +2 -0
  21. package/dist/pipeline/spec/table/pipes/theme/selectionStyle.d.ts +2 -0
  22. package/dist/types/advancedVSeed.d.ts +58 -61
  23. package/dist/types/chartType/area/area.d.ts +32 -46
  24. package/dist/types/chartType/areaPercent/areaPercent.d.ts +32 -46
  25. package/dist/types/chartType/bar/bar.d.ts +33 -46
  26. package/dist/types/chartType/barParallel/barParallel.d.ts +32 -46
  27. package/dist/types/chartType/barPercent/barPercent.d.ts +32 -46
  28. package/dist/types/chartType/column/column.d.ts +32 -46
  29. package/dist/types/chartType/columnParallel/columnParallel.d.ts +32 -46
  30. package/dist/types/chartType/columnPercent/columnPercent.d.ts +32 -46
  31. package/dist/types/chartType/donut/donut.d.ts +8 -46
  32. package/dist/types/chartType/dualAxis/dualAxis.d.ts +2 -2
  33. package/dist/types/chartType/funnel/funnel.d.ts +8 -46
  34. package/dist/types/chartType/line/line.d.ts +48 -46
  35. package/dist/types/chartType/pie/pie.d.ts +8 -46
  36. package/dist/types/chartType/pivotTable/pivotTable.d.ts +8 -7
  37. package/dist/types/chartType/rose/rose.d.ts +9 -46
  38. package/dist/types/chartType/roseParallel/roseParallel.d.ts +10 -47
  39. package/dist/types/chartType/scatter/scatter.d.ts +8 -46
  40. package/dist/types/chartType/table/table.d.ts +6 -44
  41. package/dist/types/properties/analysis/analysis.d.ts +4 -0
  42. package/dist/types/properties/analysis/index.d.ts +3 -0
  43. package/dist/types/properties/analysis/sortAxis.d.ts +39 -0
  44. package/dist/types/properties/analysis/sortLegend.d.ts +39 -0
  45. package/dist/types/properties/config/config.d.ts +50 -2
  46. package/dist/types/properties/dimensions/dimensions.d.ts +20 -44
  47. package/dist/types/properties/index.d.ts +1 -0
  48. package/dist/types/properties/measures/measures.d.ts +11 -87
  49. package/dist/types/properties/theme/customTheme.d.ts +48 -4
  50. package/dist/types/vseed.d.ts +117 -709
  51. package/dist/umd/index.js +8818 -128
  52. package/dist/umd/index.js.map +1 -1
  53. package/package.json +1 -1
@@ -1,2 +1,3 @@
1
1
  import type { Builder } from '../builder';
2
2
  export declare const getColorItems: (builder: Builder) => string[];
3
+ export declare const getColorIdMap: (builder: Builder) => Record<string, string>;
@@ -1 +1 @@
1
- export { getColorItems } from './colorItems';
1
+ export * from './colorItems';
@@ -24,24 +24,15 @@ export declare class Builder implements VSeedBuilder {
24
24
  groupName: string;
25
25
  };
26
26
  }[];
27
- dimensions: ({
27
+ dimensions: (import("../../types").DimensionGroup | {
28
28
  id: string;
29
+ location: "dimension" | "rowDimension" | "columnDimension";
29
30
  alias?: string | undefined;
30
- location?: "dimension" | "rowDimension" | "columnDimension" | undefined;
31
- } | {
32
- id: string;
33
- alias?: string | undefined;
34
- children?: ({
35
- id: string;
36
- alias?: string | undefined;
37
- location?: "dimension" | "rowDimension" | "columnDimension" | undefined;
38
- } | /*elided*/ any)[] | undefined;
39
31
  })[];
40
- measures: ({
32
+ measures: (import("../../types").MeasureGroup | {
41
33
  id: string;
42
- alias?: string | undefined;
43
- autoFormat?: boolean | undefined;
44
- format?: {
34
+ autoFormat: boolean;
35
+ format: {
45
36
  type?: "number" | "percent" | "permille" | "scientific" | undefined;
46
37
  ratio?: number | undefined;
47
38
  symbol?: string | undefined;
@@ -52,27 +43,8 @@ export declare class Builder implements VSeedBuilder {
52
43
  significantDigits?: number | undefined;
53
44
  roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
54
45
  roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
55
- } | undefined;
56
- } | {
57
- id: string;
46
+ };
58
47
  alias?: string | undefined;
59
- children?: ({
60
- id: string;
61
- alias?: string | undefined;
62
- autoFormat?: boolean | undefined;
63
- format?: {
64
- type?: "number" | "percent" | "permille" | "scientific" | undefined;
65
- ratio?: number | undefined;
66
- symbol?: string | undefined;
67
- thousandSeparator?: boolean | undefined;
68
- prefix?: string | undefined;
69
- suffix?: string | undefined;
70
- fractionDigits?: number | undefined;
71
- significantDigits?: number | undefined;
72
- roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
73
- roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
74
- } | undefined;
75
- } | /*elided*/ any)[] | undefined;
76
48
  })[];
77
49
  encoding: {
78
50
  x?: string[] | undefined;
@@ -85,8 +57,30 @@ export declare class Builder implements VSeedBuilder {
85
57
  size?: string[] | undefined;
86
58
  }[];
87
59
  config: {
88
- table?: Record<string, never> | undefined;
89
- pivotTable?: Record<string, never> | undefined;
60
+ table?: {
61
+ borderColor?: string | undefined;
62
+ bodyFontSize?: number | undefined;
63
+ bodyFontColor?: string | undefined;
64
+ bodyBackgroundColor?: string | undefined;
65
+ hoverBodyBackgroundColor?: string | undefined;
66
+ headerFontSize?: number | undefined;
67
+ headerFontColor?: string | undefined;
68
+ headerBackgroundColor?: string | undefined;
69
+ hoverHeaderBackgroundColor?: string | undefined;
70
+ selectedBorderColor?: string | undefined;
71
+ } | undefined;
72
+ pivotTable?: {
73
+ borderColor?: string | undefined;
74
+ bodyFontSize?: number | undefined;
75
+ bodyFontColor?: string | undefined;
76
+ bodyBackgroundColor?: string | undefined;
77
+ hoverBodyBackgroundColor?: string | undefined;
78
+ headerFontSize?: number | undefined;
79
+ headerFontColor?: string | undefined;
80
+ headerBackgroundColor?: string | undefined;
81
+ hoverHeaderBackgroundColor?: string | undefined;
82
+ selectedBorderColor?: string | undefined;
83
+ } | undefined;
90
84
  line?: {
91
85
  backgroundColor?: string | undefined;
92
86
  label?: {
@@ -1323,6 +1317,9 @@ export declare class Builder implements VSeedBuilder {
1323
1317
  } | undefined;
1324
1318
  } | undefined;
1325
1319
  };
1320
+ analysis: {
1321
+ orderMapping?: Record<string, string[]> | undefined;
1322
+ };
1326
1323
  theme: string;
1327
1324
  markStyle: {
1328
1325
  barStyle?: {
@@ -1546,8 +1543,30 @@ export declare class Builder implements VSeedBuilder {
1546
1543
  };
1547
1544
  customTheme: {
1548
1545
  config?: {
1549
- table?: Record<string, never> | undefined;
1550
- pivotTable?: Record<string, never> | undefined;
1546
+ table?: {
1547
+ borderColor?: string | undefined;
1548
+ bodyFontSize?: number | undefined;
1549
+ bodyFontColor?: string | undefined;
1550
+ bodyBackgroundColor?: string | undefined;
1551
+ hoverBodyBackgroundColor?: string | undefined;
1552
+ headerFontSize?: number | undefined;
1553
+ headerFontColor?: string | undefined;
1554
+ headerBackgroundColor?: string | undefined;
1555
+ hoverHeaderBackgroundColor?: string | undefined;
1556
+ selectedBorderColor?: string | undefined;
1557
+ } | undefined;
1558
+ pivotTable?: {
1559
+ borderColor?: string | undefined;
1560
+ bodyFontSize?: number | undefined;
1561
+ bodyFontColor?: string | undefined;
1562
+ bodyBackgroundColor?: string | undefined;
1563
+ hoverBodyBackgroundColor?: string | undefined;
1564
+ headerFontSize?: number | undefined;
1565
+ headerFontColor?: string | undefined;
1566
+ headerBackgroundColor?: string | undefined;
1567
+ hoverHeaderBackgroundColor?: string | undefined;
1568
+ selectedBorderColor?: string | undefined;
1569
+ } | undefined;
1551
1570
  line?: {
1552
1571
  backgroundColor?: string | undefined;
1553
1572
  label?: {
@@ -3111,8 +3130,30 @@ export declare class Builder implements VSeedBuilder {
3111
3130
  getSpecPipeline: (chartType: ChartType) => SpecPipeline;
3112
3131
  getTheme: (themeKey: string) => {
3113
3132
  config?: {
3114
- table?: Record<string, never> | undefined;
3115
- pivotTable?: Record<string, never> | undefined;
3133
+ table?: {
3134
+ borderColor?: string | undefined;
3135
+ bodyFontSize?: number | undefined;
3136
+ bodyFontColor?: string | undefined;
3137
+ bodyBackgroundColor?: string | undefined;
3138
+ hoverBodyBackgroundColor?: string | undefined;
3139
+ headerFontSize?: number | undefined;
3140
+ headerFontColor?: string | undefined;
3141
+ headerBackgroundColor?: string | undefined;
3142
+ hoverHeaderBackgroundColor?: string | undefined;
3143
+ selectedBorderColor?: string | undefined;
3144
+ } | undefined;
3145
+ pivotTable?: {
3146
+ borderColor?: string | undefined;
3147
+ bodyFontSize?: number | undefined;
3148
+ bodyFontColor?: string | undefined;
3149
+ bodyBackgroundColor?: string | undefined;
3150
+ hoverBodyBackgroundColor?: string | undefined;
3151
+ headerFontSize?: number | undefined;
3152
+ headerFontColor?: string | undefined;
3153
+ headerBackgroundColor?: string | undefined;
3154
+ hoverHeaderBackgroundColor?: string | undefined;
3155
+ selectedBorderColor?: string | undefined;
3156
+ } | undefined;
3116
3157
  line?: {
3117
3158
  backgroundColor?: string | undefined;
3118
3159
  label?: {
@@ -4352,8 +4393,30 @@ export declare class Builder implements VSeedBuilder {
4352
4393
  };
4353
4394
  getThemeMap: () => Record<string, {
4354
4395
  config?: {
4355
- table?: Record<string, never> | undefined;
4356
- pivotTable?: Record<string, never> | undefined;
4396
+ table?: {
4397
+ borderColor?: string | undefined;
4398
+ bodyFontSize?: number | undefined;
4399
+ bodyFontColor?: string | undefined;
4400
+ bodyBackgroundColor?: string | undefined;
4401
+ hoverBodyBackgroundColor?: string | undefined;
4402
+ headerFontSize?: number | undefined;
4403
+ headerFontColor?: string | undefined;
4404
+ headerBackgroundColor?: string | undefined;
4405
+ hoverHeaderBackgroundColor?: string | undefined;
4406
+ selectedBorderColor?: string | undefined;
4407
+ } | undefined;
4408
+ pivotTable?: {
4409
+ borderColor?: string | undefined;
4410
+ bodyFontSize?: number | undefined;
4411
+ bodyFontColor?: string | undefined;
4412
+ bodyBackgroundColor?: string | undefined;
4413
+ hoverBodyBackgroundColor?: string | undefined;
4414
+ headerFontSize?: number | undefined;
4415
+ headerFontColor?: string | undefined;
4416
+ headerBackgroundColor?: string | undefined;
4417
+ hoverHeaderBackgroundColor?: string | undefined;
4418
+ selectedBorderColor?: string | undefined;
4419
+ } | undefined;
4357
4420
  line?: {
4358
4421
  backgroundColor?: string | undefined;
4359
4422
  label?: {
@@ -5592,6 +5655,7 @@ export declare class Builder implements VSeedBuilder {
5592
5655
  } | undefined;
5593
5656
  }>;
5594
5657
  getColorItems: () => string[];
5658
+ getColorIdMap: () => Record<string, string>;
5595
5659
  get vseed(): VSeed;
5596
5660
  set vseed(value: VSeed);
5597
5661
  get advancedVSeed(): {
@@ -5612,24 +5676,15 @@ export declare class Builder implements VSeedBuilder {
5612
5676
  groupName: string;
5613
5677
  };
5614
5678
  }[];
5615
- dimensions: ({
5616
- id: string;
5617
- alias?: string | undefined;
5618
- location?: "dimension" | "rowDimension" | "columnDimension" | undefined;
5619
- } | {
5679
+ dimensions: (import("../../types").DimensionGroup | {
5620
5680
  id: string;
5681
+ location: "dimension" | "rowDimension" | "columnDimension";
5621
5682
  alias?: string | undefined;
5622
- children?: ({
5623
- id: string;
5624
- alias?: string | undefined;
5625
- location?: "dimension" | "rowDimension" | "columnDimension" | undefined;
5626
- } | /*elided*/ any)[] | undefined;
5627
5683
  })[];
5628
- measures: ({
5684
+ measures: (import("../../types").MeasureGroup | {
5629
5685
  id: string;
5630
- alias?: string | undefined;
5631
- autoFormat?: boolean | undefined;
5632
- format?: {
5686
+ autoFormat: boolean;
5687
+ format: {
5633
5688
  type?: "number" | "percent" | "permille" | "scientific" | undefined;
5634
5689
  ratio?: number | undefined;
5635
5690
  symbol?: string | undefined;
@@ -5640,27 +5695,8 @@ export declare class Builder implements VSeedBuilder {
5640
5695
  significantDigits?: number | undefined;
5641
5696
  roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
5642
5697
  roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
5643
- } | undefined;
5644
- } | {
5645
- id: string;
5698
+ };
5646
5699
  alias?: string | undefined;
5647
- children?: ({
5648
- id: string;
5649
- alias?: string | undefined;
5650
- autoFormat?: boolean | undefined;
5651
- format?: {
5652
- type?: "number" | "percent" | "permille" | "scientific" | undefined;
5653
- ratio?: number | undefined;
5654
- symbol?: string | undefined;
5655
- thousandSeparator?: boolean | undefined;
5656
- prefix?: string | undefined;
5657
- suffix?: string | undefined;
5658
- fractionDigits?: number | undefined;
5659
- significantDigits?: number | undefined;
5660
- roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
5661
- roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
5662
- } | undefined;
5663
- } | /*elided*/ any)[] | undefined;
5664
5700
  })[];
5665
5701
  encoding: {
5666
5702
  x?: string[] | undefined;
@@ -5673,8 +5709,30 @@ export declare class Builder implements VSeedBuilder {
5673
5709
  size?: string[] | undefined;
5674
5710
  }[];
5675
5711
  config: {
5676
- table?: Record<string, never> | undefined;
5677
- pivotTable?: Record<string, never> | undefined;
5712
+ table?: {
5713
+ borderColor?: string | undefined;
5714
+ bodyFontSize?: number | undefined;
5715
+ bodyFontColor?: string | undefined;
5716
+ bodyBackgroundColor?: string | undefined;
5717
+ hoverBodyBackgroundColor?: string | undefined;
5718
+ headerFontSize?: number | undefined;
5719
+ headerFontColor?: string | undefined;
5720
+ headerBackgroundColor?: string | undefined;
5721
+ hoverHeaderBackgroundColor?: string | undefined;
5722
+ selectedBorderColor?: string | undefined;
5723
+ } | undefined;
5724
+ pivotTable?: {
5725
+ borderColor?: string | undefined;
5726
+ bodyFontSize?: number | undefined;
5727
+ bodyFontColor?: string | undefined;
5728
+ bodyBackgroundColor?: string | undefined;
5729
+ hoverBodyBackgroundColor?: string | undefined;
5730
+ headerFontSize?: number | undefined;
5731
+ headerFontColor?: string | undefined;
5732
+ headerBackgroundColor?: string | undefined;
5733
+ hoverHeaderBackgroundColor?: string | undefined;
5734
+ selectedBorderColor?: string | undefined;
5735
+ } | undefined;
5678
5736
  line?: {
5679
5737
  backgroundColor?: string | undefined;
5680
5738
  label?: {
@@ -6911,6 +6969,9 @@ export declare class Builder implements VSeedBuilder {
6911
6969
  } | undefined;
6912
6970
  } | undefined;
6913
6971
  };
6972
+ analysis: {
6973
+ orderMapping?: Record<string, string[]> | undefined;
6974
+ };
6914
6975
  theme: string;
6915
6976
  markStyle: {
6916
6977
  barStyle?: {
@@ -7134,8 +7195,30 @@ export declare class Builder implements VSeedBuilder {
7134
7195
  };
7135
7196
  customTheme: {
7136
7197
  config?: {
7137
- table?: Record<string, never> | undefined;
7138
- pivotTable?: Record<string, never> | undefined;
7198
+ table?: {
7199
+ borderColor?: string | undefined;
7200
+ bodyFontSize?: number | undefined;
7201
+ bodyFontColor?: string | undefined;
7202
+ bodyBackgroundColor?: string | undefined;
7203
+ hoverBodyBackgroundColor?: string | undefined;
7204
+ headerFontSize?: number | undefined;
7205
+ headerFontColor?: string | undefined;
7206
+ headerBackgroundColor?: string | undefined;
7207
+ hoverHeaderBackgroundColor?: string | undefined;
7208
+ selectedBorderColor?: string | undefined;
7209
+ } | undefined;
7210
+ pivotTable?: {
7211
+ borderColor?: string | undefined;
7212
+ bodyFontSize?: number | undefined;
7213
+ bodyFontColor?: string | undefined;
7214
+ bodyBackgroundColor?: string | undefined;
7215
+ hoverBodyBackgroundColor?: string | undefined;
7216
+ headerFontSize?: number | undefined;
7217
+ headerFontColor?: string | undefined;
7218
+ headerBackgroundColor?: string | undefined;
7219
+ hoverHeaderBackgroundColor?: string | undefined;
7220
+ selectedBorderColor?: string | undefined;
7221
+ } | undefined;
7139
7222
  line?: {
7140
7223
  backgroundColor?: string | undefined;
7141
7224
  label?: {
@@ -8713,24 +8796,15 @@ export declare class Builder implements VSeedBuilder {
8713
8796
  groupName: string;
8714
8797
  };
8715
8798
  }[];
8716
- dimensions: ({
8717
- id: string;
8718
- alias?: string | undefined;
8719
- location?: "dimension" | "rowDimension" | "columnDimension" | undefined;
8720
- } | {
8799
+ dimensions: (import("../../types").DimensionGroup | {
8721
8800
  id: string;
8801
+ location: "dimension" | "rowDimension" | "columnDimension";
8722
8802
  alias?: string | undefined;
8723
- children?: ({
8724
- id: string;
8725
- alias?: string | undefined;
8726
- location?: "dimension" | "rowDimension" | "columnDimension" | undefined;
8727
- } | /*elided*/ any)[] | undefined;
8728
8803
  })[];
8729
- measures: ({
8804
+ measures: (import("src/types").MeasureGroup | {
8730
8805
  id: string;
8731
- alias?: string | undefined;
8732
- autoFormat?: boolean | undefined;
8733
- format?: {
8806
+ autoFormat: boolean;
8807
+ format: {
8734
8808
  type?: "number" | "percent" | "permille" | "scientific" | undefined;
8735
8809
  ratio?: number | undefined;
8736
8810
  symbol?: string | undefined;
@@ -8741,27 +8815,8 @@ export declare class Builder implements VSeedBuilder {
8741
8815
  significantDigits?: number | undefined;
8742
8816
  roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
8743
8817
  roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
8744
- } | undefined;
8745
- } | {
8746
- id: string;
8818
+ };
8747
8819
  alias?: string | undefined;
8748
- children?: ({
8749
- id: string;
8750
- alias?: string | undefined;
8751
- autoFormat?: boolean | undefined;
8752
- format?: {
8753
- type?: "number" | "percent" | "permille" | "scientific" | undefined;
8754
- ratio?: number | undefined;
8755
- symbol?: string | undefined;
8756
- thousandSeparator?: boolean | undefined;
8757
- prefix?: string | undefined;
8758
- suffix?: string | undefined;
8759
- fractionDigits?: number | undefined;
8760
- significantDigits?: number | undefined;
8761
- roundingPriority?: "morePrecision" | "lessPrecision" | undefined;
8762
- roundingMode?: "floor" | "ceil" | "expand" | "trunc" | "halfCeil" | "halfFloor" | "halfExpand" | "halfTrunc" | "halfEven" | undefined;
8763
- } | undefined;
8764
- } | /*elided*/ any)[] | undefined;
8765
8820
  })[];
8766
8821
  encoding: {
8767
8822
  x?: string[] | undefined;
@@ -8774,8 +8829,30 @@ export declare class Builder implements VSeedBuilder {
8774
8829
  size?: string[] | undefined;
8775
8830
  }[];
8776
8831
  config: {
8777
- table?: Record<string, never> | undefined;
8778
- pivotTable?: Record<string, never> | undefined;
8832
+ table?: {
8833
+ borderColor?: string | undefined;
8834
+ bodyFontSize?: number | undefined;
8835
+ bodyFontColor?: string | undefined;
8836
+ bodyBackgroundColor?: string | undefined;
8837
+ hoverBodyBackgroundColor?: string | undefined;
8838
+ headerFontSize?: number | undefined;
8839
+ headerFontColor?: string | undefined;
8840
+ headerBackgroundColor?: string | undefined;
8841
+ hoverHeaderBackgroundColor?: string | undefined;
8842
+ selectedBorderColor?: string | undefined;
8843
+ } | undefined;
8844
+ pivotTable?: {
8845
+ borderColor?: string | undefined;
8846
+ bodyFontSize?: number | undefined;
8847
+ bodyFontColor?: string | undefined;
8848
+ bodyBackgroundColor?: string | undefined;
8849
+ hoverBodyBackgroundColor?: string | undefined;
8850
+ headerFontSize?: number | undefined;
8851
+ headerFontColor?: string | undefined;
8852
+ headerBackgroundColor?: string | undefined;
8853
+ hoverHeaderBackgroundColor?: string | undefined;
8854
+ selectedBorderColor?: string | undefined;
8855
+ } | undefined;
8779
8856
  line?: {
8780
8857
  backgroundColor?: string | undefined;
8781
8858
  label?: {
@@ -10012,6 +10089,9 @@ export declare class Builder implements VSeedBuilder {
10012
10089
  } | undefined;
10013
10090
  } | undefined;
10014
10091
  };
10092
+ analysis: {
10093
+ orderMapping?: Record<string, string[]> | undefined;
10094
+ };
10015
10095
  theme: string;
10016
10096
  markStyle: {
10017
10097
  barStyle?: {
@@ -10235,8 +10315,30 @@ export declare class Builder implements VSeedBuilder {
10235
10315
  };
10236
10316
  customTheme: {
10237
10317
  config?: {
10238
- table?: Record<string, never> | undefined;
10239
- pivotTable?: Record<string, never> | undefined;
10318
+ table?: {
10319
+ borderColor?: string | undefined;
10320
+ bodyFontSize?: number | undefined;
10321
+ bodyFontColor?: string | undefined;
10322
+ bodyBackgroundColor?: string | undefined;
10323
+ hoverBodyBackgroundColor?: string | undefined;
10324
+ headerFontSize?: number | undefined;
10325
+ headerFontColor?: string | undefined;
10326
+ headerBackgroundColor?: string | undefined;
10327
+ hoverHeaderBackgroundColor?: string | undefined;
10328
+ selectedBorderColor?: string | undefined;
10329
+ } | undefined;
10330
+ pivotTable?: {
10331
+ borderColor?: string | undefined;
10332
+ bodyFontSize?: number | undefined;
10333
+ bodyFontColor?: string | undefined;
10334
+ bodyBackgroundColor?: string | undefined;
10335
+ hoverBodyBackgroundColor?: string | undefined;
10336
+ headerFontSize?: number | undefined;
10337
+ headerFontColor?: string | undefined;
10338
+ headerBackgroundColor?: string | undefined;
10339
+ hoverHeaderBackgroundColor?: string | undefined;
10340
+ selectedBorderColor?: string | undefined;
10341
+ } | undefined;
10240
10342
  line?: {
10241
10343
  backgroundColor?: string | undefined;
10242
10344
  label?: {