@ecan-bi/datav 1.3.91 → 1.3.93
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 +63944 -15019
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +345 -41
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -1
- package/types/graph/pie/Pie.vue.d.ts +8 -0
- package/types/graph/pie/index.d.ts +8 -0
- package/types/graph/pie/props.d.ts +5 -0
- package/types/hooks/useIndicatorData.d.ts +1 -1
- package/types/laboratory/index.d.ts +1 -0
- package/types/laboratory/pivotTable/PivotTable.vue.d.ts +265 -0
- package/types/laboratory/pivotTable/index.d.ts +266 -0
- package/types/laboratory/pivotTable/props.d.ts +141 -0
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import { Props } from '../../utils/props';
|
|
2
|
+
export interface PivotTableProps extends Props {
|
|
3
|
+
graphicConfig: {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
};
|
|
6
|
+
data: {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
}[];
|
|
9
|
+
}
|
|
10
|
+
export declare const pivotTableProps: PivotTableProps;
|
|
11
|
+
export declare const pivotTableComponentProps: {
|
|
12
|
+
graphicConfig: {
|
|
13
|
+
type?: import("vue").PropType<{
|
|
14
|
+
[key: string]: any;
|
|
15
|
+
}>;
|
|
16
|
+
default?: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
data: {
|
|
21
|
+
type?: import("vue").PropType<{
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
}[]>;
|
|
24
|
+
default?: {
|
|
25
|
+
[key: string]: any;
|
|
26
|
+
}[];
|
|
27
|
+
};
|
|
28
|
+
id: {
|
|
29
|
+
type?: import("vue").PropType<string>;
|
|
30
|
+
default?: string;
|
|
31
|
+
};
|
|
32
|
+
name: {
|
|
33
|
+
type?: import("vue").PropType<string>;
|
|
34
|
+
default?: string;
|
|
35
|
+
};
|
|
36
|
+
keyName: {
|
|
37
|
+
type?: import("vue").PropType<string>;
|
|
38
|
+
default?: string;
|
|
39
|
+
};
|
|
40
|
+
type: {
|
|
41
|
+
type?: import("vue").PropType<string>;
|
|
42
|
+
default?: string;
|
|
43
|
+
};
|
|
44
|
+
width: {
|
|
45
|
+
type?: import("vue").PropType<string>;
|
|
46
|
+
default?: string;
|
|
47
|
+
};
|
|
48
|
+
height: {
|
|
49
|
+
type?: import("vue").PropType<string>;
|
|
50
|
+
default?: string;
|
|
51
|
+
};
|
|
52
|
+
position: {
|
|
53
|
+
type?: import("vue").PropType<string>;
|
|
54
|
+
default?: string;
|
|
55
|
+
};
|
|
56
|
+
top: {
|
|
57
|
+
type?: import("vue").PropType<string>;
|
|
58
|
+
default?: string;
|
|
59
|
+
};
|
|
60
|
+
left: {
|
|
61
|
+
type?: import("vue").PropType<string>;
|
|
62
|
+
default?: string;
|
|
63
|
+
};
|
|
64
|
+
zIndex: {
|
|
65
|
+
type?: import("vue").PropType<number>;
|
|
66
|
+
default?: number;
|
|
67
|
+
};
|
|
68
|
+
rotate: {
|
|
69
|
+
type?: import("vue").PropType<string>;
|
|
70
|
+
default?: string;
|
|
71
|
+
};
|
|
72
|
+
isShow: {
|
|
73
|
+
type?: import("vue").PropType<boolean>;
|
|
74
|
+
default?: boolean;
|
|
75
|
+
};
|
|
76
|
+
isRender: {
|
|
77
|
+
type?: import("vue").PropType<boolean>;
|
|
78
|
+
default?: boolean;
|
|
79
|
+
};
|
|
80
|
+
events: {
|
|
81
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
82
|
+
default?: import('../../utils/props').Events;
|
|
83
|
+
};
|
|
84
|
+
requestUrl: {
|
|
85
|
+
type?: import("vue").PropType<string>;
|
|
86
|
+
default?: string;
|
|
87
|
+
};
|
|
88
|
+
requestMethod: {
|
|
89
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
90
|
+
default?: import('../../utils/props').RequestMethod;
|
|
91
|
+
};
|
|
92
|
+
requestHeaders: {
|
|
93
|
+
type?: import("vue").PropType<string>;
|
|
94
|
+
default?: string;
|
|
95
|
+
};
|
|
96
|
+
isOpenRequestTimer: {
|
|
97
|
+
type?: import("vue").PropType<boolean>;
|
|
98
|
+
default?: boolean;
|
|
99
|
+
};
|
|
100
|
+
isViewRedrawing: {
|
|
101
|
+
type?: import("vue").PropType<boolean>;
|
|
102
|
+
default?: boolean;
|
|
103
|
+
};
|
|
104
|
+
requestInterval: {
|
|
105
|
+
type?: import("vue").PropType<number>;
|
|
106
|
+
default?: number;
|
|
107
|
+
};
|
|
108
|
+
requestParams: {
|
|
109
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
110
|
+
default?: import('../../utils/props').RequestParams;
|
|
111
|
+
};
|
|
112
|
+
requestSort: {
|
|
113
|
+
type?: import("vue").PropType<number>;
|
|
114
|
+
default?: number;
|
|
115
|
+
};
|
|
116
|
+
dataType: {
|
|
117
|
+
type?: import("vue").PropType<"indicator" | "request" | "static">;
|
|
118
|
+
default?: "indicator" | "request" | "static";
|
|
119
|
+
};
|
|
120
|
+
scale?: {
|
|
121
|
+
type?: import("vue").PropType<number>;
|
|
122
|
+
default?: number;
|
|
123
|
+
};
|
|
124
|
+
requestParamsMode: {
|
|
125
|
+
type?: import("vue").PropType<"1" | "2">;
|
|
126
|
+
default?: "1" | "2";
|
|
127
|
+
};
|
|
128
|
+
customRequestParams: {
|
|
129
|
+
type?: import("vue").PropType<string>;
|
|
130
|
+
default?: string;
|
|
131
|
+
};
|
|
132
|
+
dataSetParam?: {
|
|
133
|
+
type?: import("vue").PropType<any>;
|
|
134
|
+
default?: any;
|
|
135
|
+
};
|
|
136
|
+
requestType?: {
|
|
137
|
+
type?: import("vue").PropType<any>;
|
|
138
|
+
default?: any;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
export declare const pivotTableEvents: string[];
|