@ecan-bi/datav 1.3.93 → 1.3.95
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/index.es.js +14987 -63838
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +41 -345
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/graph/bar/Bar.vue.d.ts +9 -0
- package/types/graph/bar/index.d.ts +9 -0
- package/types/graph/bar/props.d.ts +5 -0
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +9 -0
- package/types/graph/combo-graph/index.d.ts +9 -0
- package/types/graph/combo-graph/props.d.ts +5 -0
- package/types/graph/line/Line.vue.d.ts +9 -0
- package/types/graph/line/index.d.ts +9 -0
- package/types/graph/line/props.d.ts +6 -0
- package/types/graph/scatter/Scatter.vue.d.ts +9 -0
- package/types/graph/scatter/index.d.ts +9 -0
- package/types/graph/scatter/props.d.ts +5 -0
- package/types/laboratory/pivotTable/PivotTable.vue.d.ts +180 -0
- package/types/laboratory/pivotTable/index.d.ts +180 -0
- package/types/laboratory/pivotTable/props.d.ts +22 -0
package/package.json
CHANGED
|
@@ -432,6 +432,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
432
432
|
type?: import("vue").PropType<number>;
|
|
433
433
|
default?: number;
|
|
434
434
|
};
|
|
435
|
+
xAxisLabelShow: {
|
|
436
|
+
type?: import("vue").PropType<boolean>;
|
|
437
|
+
default?: boolean;
|
|
438
|
+
};
|
|
435
439
|
id: {
|
|
436
440
|
type?: import("vue").PropType<string>;
|
|
437
441
|
default?: string;
|
|
@@ -657,6 +661,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
657
661
|
show: any;
|
|
658
662
|
};
|
|
659
663
|
axisLabel: {
|
|
664
|
+
show: any;
|
|
660
665
|
color: any;
|
|
661
666
|
interval: any;
|
|
662
667
|
rotate: any;
|
|
@@ -1172,6 +1177,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1172
1177
|
type?: import("vue").PropType<number>;
|
|
1173
1178
|
default?: number;
|
|
1174
1179
|
};
|
|
1180
|
+
xAxisLabelShow: {
|
|
1181
|
+
type?: import("vue").PropType<boolean>;
|
|
1182
|
+
default?: boolean;
|
|
1183
|
+
};
|
|
1175
1184
|
id: {
|
|
1176
1185
|
type?: import("vue").PropType<string>;
|
|
1177
1186
|
default?: string;
|
|
@@ -431,6 +431,10 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
431
431
|
type?: import("vue").PropType<number>;
|
|
432
432
|
default?: number;
|
|
433
433
|
};
|
|
434
|
+
xAxisLabelShow: {
|
|
435
|
+
type?: import("vue").PropType<boolean>;
|
|
436
|
+
default?: boolean;
|
|
437
|
+
};
|
|
434
438
|
id: {
|
|
435
439
|
type?: import("vue").PropType<string>;
|
|
436
440
|
default?: string;
|
|
@@ -656,6 +660,7 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
656
660
|
show: any;
|
|
657
661
|
};
|
|
658
662
|
axisLabel: {
|
|
663
|
+
show: any;
|
|
659
664
|
color: any;
|
|
660
665
|
interval: any;
|
|
661
666
|
rotate: any;
|
|
@@ -1171,6 +1176,10 @@ export declare const EcanBar: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
1171
1176
|
type?: import("vue").PropType<number>;
|
|
1172
1177
|
default?: number;
|
|
1173
1178
|
};
|
|
1179
|
+
xAxisLabelShow: {
|
|
1180
|
+
type?: import("vue").PropType<boolean>;
|
|
1181
|
+
default?: boolean;
|
|
1182
|
+
};
|
|
1174
1183
|
id: {
|
|
1175
1184
|
type?: import("vue").PropType<string>;
|
|
1176
1185
|
default?: string;
|
|
@@ -109,6 +109,7 @@ export interface BarProps extends Props {
|
|
|
109
109
|
endValue: string;
|
|
110
110
|
xAxisMaxValue: number;
|
|
111
111
|
yAxisMaxValue: number;
|
|
112
|
+
xAxisLabelShow: boolean;
|
|
112
113
|
}
|
|
113
114
|
export declare const barProps: BarProps;
|
|
114
115
|
export declare const barComponentProps: {
|
|
@@ -544,6 +545,10 @@ export declare const barComponentProps: {
|
|
|
544
545
|
type?: import("vue").PropType<number>;
|
|
545
546
|
default?: number;
|
|
546
547
|
};
|
|
548
|
+
xAxisLabelShow: {
|
|
549
|
+
type?: import("vue").PropType<boolean>;
|
|
550
|
+
default?: boolean;
|
|
551
|
+
};
|
|
547
552
|
id: {
|
|
548
553
|
type?: import("vue").PropType<string>;
|
|
549
554
|
default?: string;
|
|
@@ -436,6 +436,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
436
436
|
type?: import("vue").PropType<number>;
|
|
437
437
|
default?: number;
|
|
438
438
|
};
|
|
439
|
+
xAxisLabelShow: {
|
|
440
|
+
type?: import("vue").PropType<boolean>;
|
|
441
|
+
default?: boolean;
|
|
442
|
+
};
|
|
439
443
|
id: {
|
|
440
444
|
type?: import("vue").PropType<string>;
|
|
441
445
|
default?: string;
|
|
@@ -660,6 +664,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
660
664
|
show: any;
|
|
661
665
|
};
|
|
662
666
|
axisLabel: {
|
|
667
|
+
show: any;
|
|
663
668
|
color: any;
|
|
664
669
|
interval: any;
|
|
665
670
|
rotate: any;
|
|
@@ -1140,6 +1145,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1140
1145
|
type?: import("vue").PropType<number>;
|
|
1141
1146
|
default?: number;
|
|
1142
1147
|
};
|
|
1148
|
+
xAxisLabelShow: {
|
|
1149
|
+
type?: import("vue").PropType<boolean>;
|
|
1150
|
+
default?: boolean;
|
|
1151
|
+
};
|
|
1143
1152
|
id: {
|
|
1144
1153
|
type?: import("vue").PropType<string>;
|
|
1145
1154
|
default?: string;
|
|
@@ -435,6 +435,10 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
435
435
|
type?: import("vue").PropType<number>;
|
|
436
436
|
default?: number;
|
|
437
437
|
};
|
|
438
|
+
xAxisLabelShow: {
|
|
439
|
+
type?: import("vue").PropType<boolean>;
|
|
440
|
+
default?: boolean;
|
|
441
|
+
};
|
|
438
442
|
id: {
|
|
439
443
|
type?: import("vue").PropType<string>;
|
|
440
444
|
default?: string;
|
|
@@ -659,6 +663,7 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
659
663
|
show: any;
|
|
660
664
|
};
|
|
661
665
|
axisLabel: {
|
|
666
|
+
show: any;
|
|
662
667
|
color: any;
|
|
663
668
|
interval: any;
|
|
664
669
|
rotate: any;
|
|
@@ -1139,6 +1144,10 @@ export declare const EcanComboGraph: import("../../utils/withInstall").SFCWithIn
|
|
|
1139
1144
|
type?: import("vue").PropType<number>;
|
|
1140
1145
|
default?: number;
|
|
1141
1146
|
};
|
|
1147
|
+
xAxisLabelShow: {
|
|
1148
|
+
type?: import("vue").PropType<boolean>;
|
|
1149
|
+
default?: boolean;
|
|
1150
|
+
};
|
|
1142
1151
|
id: {
|
|
1143
1152
|
type?: import("vue").PropType<string>;
|
|
1144
1153
|
default?: string;
|
|
@@ -112,6 +112,7 @@ export interface ComboGraphProps extends Props {
|
|
|
112
112
|
endValue: string;
|
|
113
113
|
xAxisMaxValue: number;
|
|
114
114
|
yAxisMaxValue: number;
|
|
115
|
+
xAxisLabelShow: boolean;
|
|
115
116
|
}
|
|
116
117
|
export declare const comboGraphProps: ComboGraphProps;
|
|
117
118
|
export declare const comboGraphComponentProps: {
|
|
@@ -551,6 +552,10 @@ export declare const comboGraphComponentProps: {
|
|
|
551
552
|
type?: import("vue").PropType<number>;
|
|
552
553
|
default?: number;
|
|
553
554
|
};
|
|
555
|
+
xAxisLabelShow: {
|
|
556
|
+
type?: import("vue").PropType<boolean>;
|
|
557
|
+
default?: boolean;
|
|
558
|
+
};
|
|
554
559
|
id: {
|
|
555
560
|
type?: import("vue").PropType<string>;
|
|
556
561
|
default?: string;
|
|
@@ -425,6 +425,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
425
425
|
type?: import("vue").PropType<any>;
|
|
426
426
|
default?: any;
|
|
427
427
|
};
|
|
428
|
+
xAxisLabelShow: {
|
|
429
|
+
type?: import("vue").PropType<boolean>;
|
|
430
|
+
default?: boolean;
|
|
431
|
+
};
|
|
428
432
|
position: {
|
|
429
433
|
type?: import("vue").PropType<string>;
|
|
430
434
|
default?: string;
|
|
@@ -576,6 +580,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
576
580
|
show: boolean;
|
|
577
581
|
};
|
|
578
582
|
axisLabel: {
|
|
583
|
+
show: boolean;
|
|
579
584
|
color: string;
|
|
580
585
|
interval: number;
|
|
581
586
|
rotate: number;
|
|
@@ -1101,6 +1106,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1101
1106
|
type?: import("vue").PropType<any>;
|
|
1102
1107
|
default?: any;
|
|
1103
1108
|
};
|
|
1109
|
+
xAxisLabelShow: {
|
|
1110
|
+
type?: import("vue").PropType<boolean>;
|
|
1111
|
+
default?: boolean;
|
|
1112
|
+
};
|
|
1104
1113
|
position: {
|
|
1105
1114
|
type?: import("vue").PropType<string>;
|
|
1106
1115
|
default?: string;
|
|
@@ -425,6 +425,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
425
425
|
type?: import("vue").PropType<any>;
|
|
426
426
|
default?: any;
|
|
427
427
|
};
|
|
428
|
+
xAxisLabelShow: {
|
|
429
|
+
type?: import("vue").PropType<boolean>;
|
|
430
|
+
default?: boolean;
|
|
431
|
+
};
|
|
428
432
|
position: {
|
|
429
433
|
type?: import("vue").PropType<string>;
|
|
430
434
|
default?: string;
|
|
@@ -576,6 +580,7 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
576
580
|
show: boolean;
|
|
577
581
|
};
|
|
578
582
|
axisLabel: {
|
|
583
|
+
show: boolean;
|
|
579
584
|
color: string;
|
|
580
585
|
interval: number;
|
|
581
586
|
rotate: number;
|
|
@@ -1101,6 +1106,10 @@ export declare const EcanLine: import("../../utils/withInstall").SFCWithInstall<
|
|
|
1101
1106
|
type?: import("vue").PropType<any>;
|
|
1102
1107
|
default?: any;
|
|
1103
1108
|
};
|
|
1109
|
+
xAxisLabelShow: {
|
|
1110
|
+
type?: import("vue").PropType<boolean>;
|
|
1111
|
+
default?: boolean;
|
|
1112
|
+
};
|
|
1104
1113
|
position: {
|
|
1105
1114
|
type?: import("vue").PropType<string>;
|
|
1106
1115
|
default?: string;
|
|
@@ -96,6 +96,7 @@ export interface LineProps extends Props {
|
|
|
96
96
|
xAxisName: string;
|
|
97
97
|
xAxisMaxValue: number;
|
|
98
98
|
yAxisMaxValue: number;
|
|
99
|
+
xAxisLabelShow: boolean;
|
|
99
100
|
}
|
|
100
101
|
export declare const lineProps: {
|
|
101
102
|
id: string;
|
|
@@ -210,6 +211,7 @@ export declare const lineProps: {
|
|
|
210
211
|
xAxisName: string;
|
|
211
212
|
xAxisMaxValue: any;
|
|
212
213
|
yAxisMaxValue: any;
|
|
214
|
+
xAxisLabelShow: boolean;
|
|
213
215
|
position: string;
|
|
214
216
|
zIndex: number;
|
|
215
217
|
isShow: boolean;
|
|
@@ -657,6 +659,10 @@ export declare const lineComponentProps: {
|
|
|
657
659
|
type?: import("vue").PropType<any>;
|
|
658
660
|
default?: any;
|
|
659
661
|
};
|
|
662
|
+
xAxisLabelShow: {
|
|
663
|
+
type?: import("vue").PropType<boolean>;
|
|
664
|
+
default?: boolean;
|
|
665
|
+
};
|
|
660
666
|
position: {
|
|
661
667
|
type?: import("vue").PropType<string>;
|
|
662
668
|
default?: string;
|
|
@@ -325,6 +325,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
325
325
|
type?: import("vue").PropType<number>;
|
|
326
326
|
default?: number;
|
|
327
327
|
};
|
|
328
|
+
xAxisLabelShow: {
|
|
329
|
+
type?: import("vue").PropType<boolean>;
|
|
330
|
+
default?: boolean;
|
|
331
|
+
};
|
|
328
332
|
id: {
|
|
329
333
|
type?: import("vue").PropType<string>;
|
|
330
334
|
default?: string;
|
|
@@ -500,6 +504,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
500
504
|
show: boolean;
|
|
501
505
|
};
|
|
502
506
|
axisLabel: {
|
|
507
|
+
show: boolean;
|
|
503
508
|
fontSize: string;
|
|
504
509
|
color: string;
|
|
505
510
|
interval: number;
|
|
@@ -947,6 +952,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
947
952
|
type?: import("vue").PropType<number>;
|
|
948
953
|
default?: number;
|
|
949
954
|
};
|
|
955
|
+
xAxisLabelShow: {
|
|
956
|
+
type?: import("vue").PropType<boolean>;
|
|
957
|
+
default?: boolean;
|
|
958
|
+
};
|
|
950
959
|
id: {
|
|
951
960
|
type?: import("vue").PropType<string>;
|
|
952
961
|
default?: string;
|
|
@@ -325,6 +325,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
325
325
|
type?: import("vue").PropType<number>;
|
|
326
326
|
default?: number;
|
|
327
327
|
};
|
|
328
|
+
xAxisLabelShow: {
|
|
329
|
+
type?: import("vue").PropType<boolean>;
|
|
330
|
+
default?: boolean;
|
|
331
|
+
};
|
|
328
332
|
id: {
|
|
329
333
|
type?: import("vue").PropType<string>;
|
|
330
334
|
default?: string;
|
|
@@ -500,6 +504,7 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
500
504
|
show: boolean;
|
|
501
505
|
};
|
|
502
506
|
axisLabel: {
|
|
507
|
+
show: boolean;
|
|
503
508
|
fontSize: string;
|
|
504
509
|
color: string;
|
|
505
510
|
interval: number;
|
|
@@ -947,6 +952,10 @@ export declare const EcanScatter: import('../../utils/withInstall').SFCWithInsta
|
|
|
947
952
|
type?: import("vue").PropType<number>;
|
|
948
953
|
default?: number;
|
|
949
954
|
};
|
|
955
|
+
xAxisLabelShow: {
|
|
956
|
+
type?: import("vue").PropType<boolean>;
|
|
957
|
+
default?: boolean;
|
|
958
|
+
};
|
|
950
959
|
id: {
|
|
951
960
|
type?: import("vue").PropType<string>;
|
|
952
961
|
default?: string;
|
|
@@ -87,6 +87,7 @@ export interface ScatterProps extends Props {
|
|
|
87
87
|
xAxisMin: number;
|
|
88
88
|
yAxisMax: number;
|
|
89
89
|
yAxisMin: number;
|
|
90
|
+
xAxisLabelShow: boolean;
|
|
90
91
|
}
|
|
91
92
|
export declare const scatterProps: ScatterProps;
|
|
92
93
|
export declare const scatterComponentProps: {
|
|
@@ -416,6 +417,10 @@ export declare const scatterComponentProps: {
|
|
|
416
417
|
type?: import("vue").PropType<number>;
|
|
417
418
|
default?: number;
|
|
418
419
|
};
|
|
420
|
+
xAxisLabelShow: {
|
|
421
|
+
type?: import("vue").PropType<boolean>;
|
|
422
|
+
default?: boolean;
|
|
423
|
+
};
|
|
419
424
|
id: {
|
|
420
425
|
type?: import("vue").PropType<string>;
|
|
421
426
|
default?: string;
|
|
@@ -15,6 +15,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
15
15
|
[key: string]: any;
|
|
16
16
|
}[];
|
|
17
17
|
};
|
|
18
|
+
dimensionList: {
|
|
19
|
+
type?: import("vue").PropType<{
|
|
20
|
+
[key: string]: any;
|
|
21
|
+
}[]>;
|
|
22
|
+
default?: {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
}[];
|
|
25
|
+
};
|
|
26
|
+
indicatorList: {
|
|
27
|
+
type?: import("vue").PropType<{
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
}[]>;
|
|
30
|
+
default?: {
|
|
31
|
+
[key: string]: any;
|
|
32
|
+
}[];
|
|
33
|
+
};
|
|
18
34
|
id: {
|
|
19
35
|
type?: import("vue").PropType<string>;
|
|
20
36
|
default?: string;
|
|
@@ -128,6 +144,154 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
128
144
|
default?: any;
|
|
129
145
|
};
|
|
130
146
|
}, {
|
|
147
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
|
148
|
+
graphicConfig: {
|
|
149
|
+
type?: import("vue").PropType<{
|
|
150
|
+
[key: string]: any;
|
|
151
|
+
}>;
|
|
152
|
+
default?: {
|
|
153
|
+
[key: string]: any;
|
|
154
|
+
};
|
|
155
|
+
};
|
|
156
|
+
data: {
|
|
157
|
+
type?: import("vue").PropType<{
|
|
158
|
+
[key: string]: any;
|
|
159
|
+
}[]>;
|
|
160
|
+
default?: {
|
|
161
|
+
[key: string]: any;
|
|
162
|
+
}[];
|
|
163
|
+
};
|
|
164
|
+
dimensionList: {
|
|
165
|
+
type?: import("vue").PropType<{
|
|
166
|
+
[key: string]: any;
|
|
167
|
+
}[]>;
|
|
168
|
+
default?: {
|
|
169
|
+
[key: string]: any;
|
|
170
|
+
}[];
|
|
171
|
+
};
|
|
172
|
+
indicatorList: {
|
|
173
|
+
type?: import("vue").PropType<{
|
|
174
|
+
[key: string]: any;
|
|
175
|
+
}[]>;
|
|
176
|
+
default?: {
|
|
177
|
+
[key: string]: any;
|
|
178
|
+
}[];
|
|
179
|
+
};
|
|
180
|
+
id: {
|
|
181
|
+
type?: import("vue").PropType<string>;
|
|
182
|
+
default?: string;
|
|
183
|
+
};
|
|
184
|
+
name: {
|
|
185
|
+
type?: import("vue").PropType<string>;
|
|
186
|
+
default?: string;
|
|
187
|
+
};
|
|
188
|
+
keyName: {
|
|
189
|
+
type?: import("vue").PropType<string>;
|
|
190
|
+
default?: string;
|
|
191
|
+
};
|
|
192
|
+
type: {
|
|
193
|
+
type?: import("vue").PropType<string>;
|
|
194
|
+
default?: string;
|
|
195
|
+
};
|
|
196
|
+
width: {
|
|
197
|
+
type?: import("vue").PropType<string>;
|
|
198
|
+
default?: string;
|
|
199
|
+
};
|
|
200
|
+
height: {
|
|
201
|
+
type?: import("vue").PropType<string>;
|
|
202
|
+
default?: string;
|
|
203
|
+
};
|
|
204
|
+
position: {
|
|
205
|
+
type?: import("vue").PropType<string>;
|
|
206
|
+
default?: string;
|
|
207
|
+
};
|
|
208
|
+
top: {
|
|
209
|
+
type?: import("vue").PropType<string>;
|
|
210
|
+
default?: string;
|
|
211
|
+
};
|
|
212
|
+
left: {
|
|
213
|
+
type?: import("vue").PropType<string>;
|
|
214
|
+
default?: string;
|
|
215
|
+
};
|
|
216
|
+
zIndex: {
|
|
217
|
+
type?: import("vue").PropType<number>;
|
|
218
|
+
default?: number;
|
|
219
|
+
};
|
|
220
|
+
rotate: {
|
|
221
|
+
type?: import("vue").PropType<string>;
|
|
222
|
+
default?: string;
|
|
223
|
+
};
|
|
224
|
+
isShow: {
|
|
225
|
+
type?: import("vue").PropType<boolean>;
|
|
226
|
+
default?: boolean;
|
|
227
|
+
};
|
|
228
|
+
isRender: {
|
|
229
|
+
type?: import("vue").PropType<boolean>;
|
|
230
|
+
default?: boolean;
|
|
231
|
+
};
|
|
232
|
+
events: {
|
|
233
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
234
|
+
default?: import("../../utils/props").Events;
|
|
235
|
+
};
|
|
236
|
+
requestUrl: {
|
|
237
|
+
type?: import("vue").PropType<string>;
|
|
238
|
+
default?: string;
|
|
239
|
+
};
|
|
240
|
+
requestMethod: {
|
|
241
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
242
|
+
default?: import("../../utils/props").RequestMethod;
|
|
243
|
+
};
|
|
244
|
+
requestHeaders: {
|
|
245
|
+
type?: import("vue").PropType<string>;
|
|
246
|
+
default?: string;
|
|
247
|
+
};
|
|
248
|
+
isOpenRequestTimer: {
|
|
249
|
+
type?: import("vue").PropType<boolean>;
|
|
250
|
+
default?: boolean;
|
|
251
|
+
};
|
|
252
|
+
isViewRedrawing: {
|
|
253
|
+
type?: import("vue").PropType<boolean>;
|
|
254
|
+
default?: boolean;
|
|
255
|
+
};
|
|
256
|
+
requestInterval: {
|
|
257
|
+
type?: import("vue").PropType<number>;
|
|
258
|
+
default?: number;
|
|
259
|
+
};
|
|
260
|
+
requestParams: {
|
|
261
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
262
|
+
default?: import("../../utils/props").RequestParams;
|
|
263
|
+
};
|
|
264
|
+
requestSort: {
|
|
265
|
+
type?: import("vue").PropType<number>;
|
|
266
|
+
default?: number;
|
|
267
|
+
};
|
|
268
|
+
dataType: {
|
|
269
|
+
type?: import("vue").PropType<"indicator" | "request" | "static">;
|
|
270
|
+
default?: "indicator" | "request" | "static";
|
|
271
|
+
};
|
|
272
|
+
scale?: {
|
|
273
|
+
type?: import("vue").PropType<number>;
|
|
274
|
+
default?: number;
|
|
275
|
+
};
|
|
276
|
+
requestParamsMode: {
|
|
277
|
+
type?: import("vue").PropType<"1" | "2">;
|
|
278
|
+
default?: "1" | "2";
|
|
279
|
+
};
|
|
280
|
+
customRequestParams: {
|
|
281
|
+
type?: import("vue").PropType<string>;
|
|
282
|
+
default?: string;
|
|
283
|
+
};
|
|
284
|
+
dataSetParam?: {
|
|
285
|
+
type?: import("vue").PropType<any>;
|
|
286
|
+
default?: any;
|
|
287
|
+
};
|
|
288
|
+
requestType?: {
|
|
289
|
+
type?: import("vue").PropType<any>;
|
|
290
|
+
default?: any;
|
|
291
|
+
};
|
|
292
|
+
}>> & {
|
|
293
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any);
|
|
294
|
+
}>>;
|
|
131
295
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
132
296
|
pageMode: string;
|
|
133
297
|
pivotTableRef: import("vue").Ref<any>;
|
|
@@ -149,6 +313,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
149
313
|
[key: string]: any;
|
|
150
314
|
}[];
|
|
151
315
|
};
|
|
316
|
+
dimensionList: {
|
|
317
|
+
type?: import("vue").PropType<{
|
|
318
|
+
[key: string]: any;
|
|
319
|
+
}[]>;
|
|
320
|
+
default?: {
|
|
321
|
+
[key: string]: any;
|
|
322
|
+
}[];
|
|
323
|
+
};
|
|
324
|
+
indicatorList: {
|
|
325
|
+
type?: import("vue").PropType<{
|
|
326
|
+
[key: string]: any;
|
|
327
|
+
}[]>;
|
|
328
|
+
default?: {
|
|
329
|
+
[key: string]: any;
|
|
330
|
+
}[];
|
|
331
|
+
};
|
|
152
332
|
id: {
|
|
153
333
|
type?: import("vue").PropType<string>;
|
|
154
334
|
default?: string;
|