@ecan-bi/datav 1.1.39 → 1.1.41
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 +1525 -1499
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +6 -6
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/container/border/Border.vue.d.ts +144 -618
- package/types/container/border/index.d.ts +144 -618
- package/types/container/border/props.d.ts +72 -309
- package/types/container/modal/Modal.vue.d.ts +74 -237
- package/types/container/modal/index.d.ts +73 -237
- package/types/container/modal/props.d.ts +36 -117
- package/types/container/tabs/Tabs.vue.d.ts +184 -380
- package/types/container/tabs/index.d.ts +184 -380
- package/types/container/tabs/props.d.ts +94 -190
- package/types/control/button/Button.vue.d.ts +126 -418
- package/types/control/button/index.d.ts +126 -418
- package/types/control/button/props.d.ts +63 -209
- package/types/control/checkbox/Checkbox.vue.d.ts +102 -334
- package/types/control/checkbox/index.d.ts +102 -334
- package/types/control/checkbox/props.d.ts +51 -167
- package/types/control/date-picker/DatePicker.vue.d.ts +119 -391
- package/types/control/date-picker/index.d.ts +119 -391
- package/types/control/date-picker/props.d.ts +59 -195
- package/types/control/input/Input.vue.d.ts +102 -334
- package/types/control/input/index.d.ts +102 -334
- package/types/control/input/props.d.ts +51 -167
- package/types/control/range-picker/RangePicker.vue.d.ts +128 -420
- package/types/control/range-picker/index.d.ts +128 -420
- package/types/control/range-picker/props.d.ts +63 -209
- package/types/control/select/Select.vue.d.ts +125 -531
- package/types/control/select/index.d.ts +125 -531
- package/types/control/select/props.d.ts +59 -265
- package/types/graph/bar/Bar.vue.d.ts +374 -2044
- package/types/graph/bar/index.d.ts +373 -2043
- package/types/graph/bar/props.d.ts +166 -962
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +340 -741
- package/types/graph/combo-graph/index.d.ts +339 -741
- package/types/graph/combo-graph/props.d.ts +154 -355
- package/types/graph/custom-graph/CustomGraph.vue.d.ts +100 -420
- package/types/graph/custom-graph/index.d.ts +100 -420
- package/types/graph/custom-graph/props.d.ts +50 -210
- package/types/graph/line/Line.vue.d.ts +364 -2546
- package/types/graph/line/index.d.ts +364 -2546
- package/types/graph/line/props.d.ts +149 -1211
- package/types/graph/pie/Pie.vue.d.ts +317 -722
- package/types/graph/pie/index.d.ts +316 -722
- package/types/graph/pie/props.d.ts +142 -345
- package/types/graph/scatter/Scatter.vue.d.ts +293 -639
- package/types/graph/scatter/index.d.ts +293 -639
- package/types/graph/scatter/props.d.ts +132 -305
- package/types/map/map/Map.vue.d.ts +269 -1404
- package/types/map/map/index.d.ts +269 -1404
- package/types/map/map/props.d.ts +121 -664
- package/types/media/iframe/Iframe.vue.d.ts +102 -334
- package/types/media/iframe/index.d.ts +102 -334
- package/types/media/iframe/props.d.ts +51 -167
- package/types/media/image/Image.vue.d.ts +110 -362
- package/types/media/image/index.d.ts +110 -362
- package/types/media/image/props.d.ts +55 -181
- package/types/setting/page-config/PageConfig.vue.d.ts +28 -70
- package/types/setting/page-config/index.d.ts +28 -70
- package/types/setting/page-config/props.d.ts +14 -35
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +22 -62
- package/types/setting/provider-config/index.d.ts +22 -62
- package/types/setting/provider-config/props.d.ts +11 -31
- package/types/table/table/Table.vue.d.ts +234 -1660
- package/types/table/table/index.d.ts +234 -1660
- package/types/table/table/props.d.ts +101 -811
- package/types/text/list/List.vue.d.ts +136 -688
- package/types/text/list/index.d.ts +136 -688
- package/types/text/list/props.d.ts +68 -344
- package/types/text/proportion/Proportion.vue.d.ts +148 -636
- package/types/text/proportion/index.d.ts +148 -636
- package/types/text/proportion/props.d.ts +74 -318
- package/types/text/text/Text.vue.d.ts +160 -690
- package/types/text/text/index.d.ts +160 -690
- package/types/text/text/props.d.ts +81 -346
- package/types/text/time-display/TimeDisplay.vue.d.ts +126 -418
- package/types/text/time-display/index.d.ts +126 -418
- package/types/text/time-display/props.d.ts +63 -209
- package/types/utils/props.d.ts +3 -5
|
@@ -6,220 +6,104 @@ export interface InputProps extends Props {
|
|
|
6
6
|
export declare const inputProps: InputProps;
|
|
7
7
|
export declare const inputComponentProps: {
|
|
8
8
|
value: {
|
|
9
|
-
type?:
|
|
10
|
-
default?:
|
|
11
|
-
} | {
|
|
12
|
-
type: any;
|
|
13
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
14
|
-
[key: string]: any;
|
|
15
|
-
} | import('../../utils/props').RequestParams;
|
|
9
|
+
type?: import("vue").PropType<string>;
|
|
10
|
+
default?: string;
|
|
16
11
|
};
|
|
17
12
|
placeholder: {
|
|
18
|
-
type?:
|
|
19
|
-
default?:
|
|
20
|
-
} | {
|
|
21
|
-
type: any;
|
|
22
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
23
|
-
[key: string]: any;
|
|
24
|
-
} | import('../../utils/props').RequestParams;
|
|
13
|
+
type?: import("vue").PropType<string>;
|
|
14
|
+
default?: string;
|
|
25
15
|
};
|
|
26
16
|
id: {
|
|
27
|
-
type?:
|
|
28
|
-
default?:
|
|
29
|
-
} | {
|
|
30
|
-
type: any;
|
|
31
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
32
|
-
[key: string]: any;
|
|
33
|
-
} | import('../../utils/props').RequestParams;
|
|
17
|
+
type?: import("vue").PropType<string>;
|
|
18
|
+
default?: string;
|
|
34
19
|
};
|
|
35
20
|
name: {
|
|
36
|
-
type?:
|
|
37
|
-
default?:
|
|
38
|
-
} | {
|
|
39
|
-
type: any;
|
|
40
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
41
|
-
[key: string]: any;
|
|
42
|
-
} | import('../../utils/props').RequestParams;
|
|
21
|
+
type?: import("vue").PropType<string>;
|
|
22
|
+
default?: string;
|
|
43
23
|
};
|
|
44
24
|
keyName: {
|
|
45
|
-
type?:
|
|
46
|
-
default?:
|
|
47
|
-
} | {
|
|
48
|
-
type: any;
|
|
49
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
50
|
-
[key: string]: any;
|
|
51
|
-
} | import('../../utils/props').RequestParams;
|
|
25
|
+
type?: import("vue").PropType<string>;
|
|
26
|
+
default?: string;
|
|
52
27
|
};
|
|
53
28
|
type: {
|
|
54
|
-
type?:
|
|
55
|
-
default?:
|
|
56
|
-
} | {
|
|
57
|
-
type: any;
|
|
58
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
59
|
-
[key: string]: any;
|
|
60
|
-
} | import('../../utils/props').RequestParams;
|
|
29
|
+
type?: import("vue").PropType<string>;
|
|
30
|
+
default?: string;
|
|
61
31
|
};
|
|
62
32
|
width: {
|
|
63
|
-
type?:
|
|
64
|
-
default?:
|
|
65
|
-
} | {
|
|
66
|
-
type: any;
|
|
67
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
68
|
-
[key: string]: any;
|
|
69
|
-
} | import('../../utils/props').RequestParams;
|
|
33
|
+
type?: import("vue").PropType<string>;
|
|
34
|
+
default?: string;
|
|
70
35
|
};
|
|
71
36
|
height: {
|
|
72
|
-
type?:
|
|
73
|
-
default?:
|
|
74
|
-
} | {
|
|
75
|
-
type: any;
|
|
76
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
77
|
-
[key: string]: any;
|
|
78
|
-
} | import('../../utils/props').RequestParams;
|
|
37
|
+
type?: import("vue").PropType<string>;
|
|
38
|
+
default?: string;
|
|
79
39
|
};
|
|
80
40
|
position: {
|
|
81
|
-
type?:
|
|
82
|
-
default?:
|
|
83
|
-
} | {
|
|
84
|
-
type: any;
|
|
85
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
86
|
-
[key: string]: any;
|
|
87
|
-
} | import('../../utils/props').RequestParams;
|
|
41
|
+
type?: import("vue").PropType<string>;
|
|
42
|
+
default?: string;
|
|
88
43
|
};
|
|
89
44
|
top: {
|
|
90
|
-
type?:
|
|
91
|
-
default?:
|
|
92
|
-
} | {
|
|
93
|
-
type: any;
|
|
94
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
95
|
-
[key: string]: any;
|
|
96
|
-
} | import('../../utils/props').RequestParams;
|
|
45
|
+
type?: import("vue").PropType<string>;
|
|
46
|
+
default?: string;
|
|
97
47
|
};
|
|
98
48
|
left: {
|
|
99
|
-
type?:
|
|
100
|
-
default?:
|
|
101
|
-
} | {
|
|
102
|
-
type: any;
|
|
103
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
104
|
-
[key: string]: any;
|
|
105
|
-
} | import('../../utils/props').RequestParams;
|
|
49
|
+
type?: import("vue").PropType<string>;
|
|
50
|
+
default?: string;
|
|
106
51
|
};
|
|
107
52
|
zIndex: {
|
|
108
|
-
type?:
|
|
109
|
-
default?:
|
|
110
|
-
} | {
|
|
111
|
-
type: any;
|
|
112
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
113
|
-
[key: string]: any;
|
|
114
|
-
} | import('../../utils/props').RequestParams;
|
|
53
|
+
type?: import("vue").PropType<number>;
|
|
54
|
+
default?: number;
|
|
115
55
|
};
|
|
116
56
|
rotate: {
|
|
117
|
-
type?:
|
|
118
|
-
default?:
|
|
119
|
-
} | {
|
|
120
|
-
type: any;
|
|
121
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
122
|
-
[key: string]: any;
|
|
123
|
-
} | import('../../utils/props').RequestParams;
|
|
57
|
+
type?: import("vue").PropType<string>;
|
|
58
|
+
default?: string;
|
|
124
59
|
};
|
|
125
60
|
isShow: {
|
|
126
|
-
type?:
|
|
127
|
-
default?:
|
|
128
|
-
} | {
|
|
129
|
-
type: any;
|
|
130
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
131
|
-
[key: string]: any;
|
|
132
|
-
} | import('../../utils/props').RequestParams;
|
|
61
|
+
type?: import("vue").PropType<boolean>;
|
|
62
|
+
default?: boolean;
|
|
133
63
|
};
|
|
134
64
|
isRender: {
|
|
135
|
-
type?:
|
|
136
|
-
default?:
|
|
137
|
-
} | {
|
|
138
|
-
type: any;
|
|
139
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
140
|
-
[key: string]: any;
|
|
141
|
-
} | import('../../utils/props').RequestParams;
|
|
65
|
+
type?: import("vue").PropType<boolean>;
|
|
66
|
+
default?: boolean;
|
|
142
67
|
};
|
|
143
68
|
events: {
|
|
144
|
-
type?:
|
|
145
|
-
default?:
|
|
146
|
-
} | {
|
|
147
|
-
type: any;
|
|
148
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
149
|
-
[key: string]: any;
|
|
150
|
-
} | import('../../utils/props').RequestParams;
|
|
69
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
70
|
+
default?: import('../../utils/props').Events;
|
|
151
71
|
};
|
|
152
72
|
requestUrl: {
|
|
153
|
-
type?:
|
|
154
|
-
default?:
|
|
155
|
-
} | {
|
|
156
|
-
type: any;
|
|
157
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
158
|
-
[key: string]: any;
|
|
159
|
-
} | import('../../utils/props').RequestParams;
|
|
73
|
+
type?: import("vue").PropType<string>;
|
|
74
|
+
default?: string;
|
|
160
75
|
};
|
|
161
76
|
requestMethod: {
|
|
162
|
-
type?:
|
|
163
|
-
default?:
|
|
164
|
-
} | {
|
|
165
|
-
type: any;
|
|
166
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
167
|
-
[key: string]: any;
|
|
168
|
-
} | import('../../utils/props').RequestParams;
|
|
77
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
78
|
+
default?: import('../../utils/props').RequestMethod;
|
|
169
79
|
};
|
|
170
80
|
requestHeaders: {
|
|
171
|
-
type?:
|
|
172
|
-
default?: undefined;
|
|
173
|
-
} | {
|
|
174
|
-
type: any;
|
|
175
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
81
|
+
type?: import("vue").PropType<{
|
|
176
82
|
[key: string]: any;
|
|
177
|
-
}
|
|
83
|
+
}>;
|
|
84
|
+
default?: {
|
|
85
|
+
[key: string]: any;
|
|
86
|
+
};
|
|
178
87
|
};
|
|
179
88
|
isOpenRequestTimer: {
|
|
180
|
-
type?:
|
|
181
|
-
default?:
|
|
182
|
-
} | {
|
|
183
|
-
type: any;
|
|
184
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
185
|
-
[key: string]: any;
|
|
186
|
-
} | import('../../utils/props').RequestParams;
|
|
89
|
+
type?: import("vue").PropType<boolean>;
|
|
90
|
+
default?: boolean;
|
|
187
91
|
};
|
|
188
92
|
requestInterval: {
|
|
189
|
-
type?:
|
|
190
|
-
default?:
|
|
191
|
-
} | {
|
|
192
|
-
type: any;
|
|
193
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
194
|
-
[key: string]: any;
|
|
195
|
-
} | import('../../utils/props').RequestParams;
|
|
93
|
+
type?: import("vue").PropType<number>;
|
|
94
|
+
default?: number;
|
|
196
95
|
};
|
|
197
96
|
requestParams: {
|
|
198
|
-
type?:
|
|
199
|
-
default?:
|
|
200
|
-
} | {
|
|
201
|
-
type: any;
|
|
202
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
203
|
-
[key: string]: any;
|
|
204
|
-
} | import('../../utils/props').RequestParams;
|
|
97
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
98
|
+
default?: import('../../utils/props').RequestParams;
|
|
205
99
|
};
|
|
206
100
|
requestSort: {
|
|
207
|
-
type?:
|
|
208
|
-
default?:
|
|
209
|
-
} | {
|
|
210
|
-
type: any;
|
|
211
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
212
|
-
[key: string]: any;
|
|
213
|
-
} | import('../../utils/props').RequestParams;
|
|
101
|
+
type?: import("vue").PropType<number>;
|
|
102
|
+
default?: number;
|
|
214
103
|
};
|
|
215
104
|
dataType: {
|
|
216
|
-
type?:
|
|
217
|
-
default?:
|
|
218
|
-
} | {
|
|
219
|
-
type: any;
|
|
220
|
-
default: string | number | boolean | import('../../utils/props').Events | {
|
|
221
|
-
[key: string]: any;
|
|
222
|
-
} | import('../../utils/props').RequestParams;
|
|
105
|
+
type?: import("vue").PropType<"indicator" | "static" | "request">;
|
|
106
|
+
default?: "indicator" | "static" | "request";
|
|
223
107
|
};
|
|
224
108
|
};
|
|
225
109
|
export declare const inputEvents: string[];
|