@ecan-bi/datav 1.0.40 → 1.0.43
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 +757 -201
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +755 -199
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +137 -74
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +2 -1
- package/types/_utils/hooks/index.d.ts +2 -0
- package/types/_utils/hooks/useHrefParamsToGlobalVariables.d.ts +2 -0
- package/types/_utils/hooks/useIndicatorData.d.ts +4 -0
- package/types/common/echarts/Echarts.d.ts +418 -0
- package/types/common/echarts/index.d.ts +2 -2
- package/types/common/index.d.ts +1 -1
- package/types/common/skeleton/Skeleton.vue.d.ts +14 -0
- package/types/common/skeleton/index.d.ts +2 -0
- package/types/container/border/Border.vue.d.ts +54 -54
- package/types/container/border/props.d.ts +54 -54
- package/types/container/modal/Modal.vue.d.ts +1 -1
- package/types/container/modal/index.d.ts +1 -1
- package/types/control/button/Button.vue.d.ts +110 -0
- package/types/control/button/index.d.ts +111 -1
- package/types/control/button/props.d.ts +104 -44
- package/types/control/date-picker/props.d.ts +52 -52
- package/types/control/input/props.d.ts +48 -48
- package/types/control/range-picker/RangePicker.vue.d.ts +52 -52
- package/types/control/range-picker/props.d.ts +52 -52
- package/types/control/select/Select.vue.d.ts +50 -50
- package/types/control/select/props.d.ts +50 -50
- package/types/graph/bar/Bar.vue.d.ts +128 -128
- package/types/graph/bar/index.d.ts +128 -128
- package/types/graph/bar/props.d.ts +65 -65
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +155 -0
- package/types/graph/combo-graph/index.d.ts +155 -0
- package/types/graph/combo-graph/props.d.ts +72 -0
- package/types/graph/custom-graph/props.d.ts +48 -48
- package/types/graph/line/Line.vue.d.ts +155 -0
- package/types/graph/line/index.d.ts +155 -0
- package/types/graph/line/props.d.ts +72 -0
- package/types/graph/pie/Pie.vue.d.ts +155 -0
- package/types/graph/pie/index.d.ts +155 -0
- package/types/graph/pie/props.d.ts +72 -0
- package/types/graph/scatter/Scatter.vue.d.ts +155 -0
- package/types/graph/scatter/index.d.ts +155 -0
- package/types/graph/scatter/props.d.ts +72 -0
- package/types/map/map/props.d.ts +112 -112
- package/types/media/image/props.d.ts +52 -52
- package/types/table/table/Table.vue.d.ts +900 -79
- package/types/table/table/index.d.ts +899 -79
- package/types/table/table/props.d.ts +451 -39
- package/types/text/list/List.vue.d.ts +64 -64
- package/types/text/list/props.d.ts +64 -64
- package/types/text/proportion/Proportion.vue.d.ts +68 -68
- package/types/text/proportion/props.d.ts +68 -68
- package/types/text/text/Text.vue.d.ts +66 -66
- package/types/text/text/props.d.ts +66 -66
- package/types/text/time-display/props.d.ts +60 -60
|
@@ -13,243 +13,243 @@ export declare const borderComponentProps: {
|
|
|
13
13
|
default?: undefined;
|
|
14
14
|
} | {
|
|
15
15
|
type: any;
|
|
16
|
-
default: string | number | boolean | import(
|
|
16
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
17
17
|
[key: string]: any;
|
|
18
|
-
} | import(
|
|
18
|
+
} | import('../../_utils/props').RequestParams;
|
|
19
19
|
};
|
|
20
20
|
fontFamily: {
|
|
21
21
|
type?: undefined;
|
|
22
22
|
default?: undefined;
|
|
23
23
|
} | {
|
|
24
24
|
type: any;
|
|
25
|
-
default: string | number | boolean | import(
|
|
25
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
26
26
|
[key: string]: any;
|
|
27
|
-
} | import(
|
|
27
|
+
} | import('../../_utils/props').RequestParams;
|
|
28
28
|
};
|
|
29
29
|
fontWeight: {
|
|
30
30
|
type?: undefined;
|
|
31
31
|
default?: undefined;
|
|
32
32
|
} | {
|
|
33
33
|
type: any;
|
|
34
|
-
default: string | number | boolean | import(
|
|
34
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
35
35
|
[key: string]: any;
|
|
36
|
-
} | import(
|
|
36
|
+
} | import('../../_utils/props').RequestParams;
|
|
37
37
|
};
|
|
38
38
|
title: {
|
|
39
39
|
type?: undefined;
|
|
40
40
|
default?: undefined;
|
|
41
41
|
} | {
|
|
42
42
|
type: any;
|
|
43
|
-
default: string | number | boolean | import(
|
|
43
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
44
44
|
[key: string]: any;
|
|
45
|
-
} | import(
|
|
45
|
+
} | import('../../_utils/props').RequestParams;
|
|
46
46
|
};
|
|
47
47
|
mode: {
|
|
48
48
|
type?: undefined;
|
|
49
49
|
default?: undefined;
|
|
50
50
|
} | {
|
|
51
51
|
type: any;
|
|
52
|
-
default: string | number | boolean | import(
|
|
52
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
53
53
|
[key: string]: any;
|
|
54
|
-
} | import(
|
|
54
|
+
} | import('../../_utils/props').RequestParams;
|
|
55
55
|
};
|
|
56
56
|
id: {
|
|
57
57
|
type?: undefined;
|
|
58
58
|
default?: undefined;
|
|
59
59
|
} | {
|
|
60
60
|
type: any;
|
|
61
|
-
default: string | number | boolean | import(
|
|
61
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
62
62
|
[key: string]: any;
|
|
63
|
-
} | import(
|
|
63
|
+
} | import('../../_utils/props').RequestParams;
|
|
64
64
|
};
|
|
65
65
|
name: {
|
|
66
66
|
type?: undefined;
|
|
67
67
|
default?: undefined;
|
|
68
68
|
} | {
|
|
69
69
|
type: any;
|
|
70
|
-
default: string | number | boolean | import(
|
|
70
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
71
71
|
[key: string]: any;
|
|
72
|
-
} | import(
|
|
72
|
+
} | import('../../_utils/props').RequestParams;
|
|
73
73
|
};
|
|
74
74
|
keyName: {
|
|
75
75
|
type?: undefined;
|
|
76
76
|
default?: undefined;
|
|
77
77
|
} | {
|
|
78
78
|
type: any;
|
|
79
|
-
default: string | number | boolean | import(
|
|
79
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
80
80
|
[key: string]: any;
|
|
81
|
-
} | import(
|
|
81
|
+
} | import('../../_utils/props').RequestParams;
|
|
82
82
|
};
|
|
83
83
|
type: {
|
|
84
84
|
type?: undefined;
|
|
85
85
|
default?: undefined;
|
|
86
86
|
} | {
|
|
87
87
|
type: any;
|
|
88
|
-
default: string | number | boolean | import(
|
|
88
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
89
89
|
[key: string]: any;
|
|
90
|
-
} | import(
|
|
90
|
+
} | import('../../_utils/props').RequestParams;
|
|
91
91
|
};
|
|
92
92
|
width: {
|
|
93
93
|
type?: undefined;
|
|
94
94
|
default?: undefined;
|
|
95
95
|
} | {
|
|
96
96
|
type: any;
|
|
97
|
-
default: string | number | boolean | import(
|
|
97
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
98
98
|
[key: string]: any;
|
|
99
|
-
} | import(
|
|
99
|
+
} | import('../../_utils/props').RequestParams;
|
|
100
100
|
};
|
|
101
101
|
height: {
|
|
102
102
|
type?: undefined;
|
|
103
103
|
default?: undefined;
|
|
104
104
|
} | {
|
|
105
105
|
type: any;
|
|
106
|
-
default: string | number | boolean | import(
|
|
106
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
107
107
|
[key: string]: any;
|
|
108
|
-
} | import(
|
|
108
|
+
} | import('../../_utils/props').RequestParams;
|
|
109
109
|
};
|
|
110
110
|
position: {
|
|
111
111
|
type?: undefined;
|
|
112
112
|
default?: undefined;
|
|
113
113
|
} | {
|
|
114
114
|
type: any;
|
|
115
|
-
default: string | number | boolean | import(
|
|
115
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
116
116
|
[key: string]: any;
|
|
117
|
-
} | import(
|
|
117
|
+
} | import('../../_utils/props').RequestParams;
|
|
118
118
|
};
|
|
119
119
|
top: {
|
|
120
120
|
type?: undefined;
|
|
121
121
|
default?: undefined;
|
|
122
122
|
} | {
|
|
123
123
|
type: any;
|
|
124
|
-
default: string | number | boolean | import(
|
|
124
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
125
125
|
[key: string]: any;
|
|
126
|
-
} | import(
|
|
126
|
+
} | import('../../_utils/props').RequestParams;
|
|
127
127
|
};
|
|
128
128
|
left: {
|
|
129
129
|
type?: undefined;
|
|
130
130
|
default?: undefined;
|
|
131
131
|
} | {
|
|
132
132
|
type: any;
|
|
133
|
-
default: string | number | boolean | import(
|
|
133
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
134
134
|
[key: string]: any;
|
|
135
|
-
} | import(
|
|
135
|
+
} | import('../../_utils/props').RequestParams;
|
|
136
136
|
};
|
|
137
137
|
zIndex: {
|
|
138
138
|
type?: undefined;
|
|
139
139
|
default?: undefined;
|
|
140
140
|
} | {
|
|
141
141
|
type: any;
|
|
142
|
-
default: string | number | boolean | import(
|
|
142
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
143
143
|
[key: string]: any;
|
|
144
|
-
} | import(
|
|
144
|
+
} | import('../../_utils/props').RequestParams;
|
|
145
145
|
};
|
|
146
146
|
rotate: {
|
|
147
147
|
type?: undefined;
|
|
148
148
|
default?: undefined;
|
|
149
149
|
} | {
|
|
150
150
|
type: any;
|
|
151
|
-
default: string | number | boolean | import(
|
|
151
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
152
152
|
[key: string]: any;
|
|
153
|
-
} | import(
|
|
153
|
+
} | import('../../_utils/props').RequestParams;
|
|
154
154
|
};
|
|
155
155
|
isShow: {
|
|
156
156
|
type?: undefined;
|
|
157
157
|
default?: undefined;
|
|
158
158
|
} | {
|
|
159
159
|
type: any;
|
|
160
|
-
default: string | number | boolean | import(
|
|
160
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
161
161
|
[key: string]: any;
|
|
162
|
-
} | import(
|
|
162
|
+
} | import('../../_utils/props').RequestParams;
|
|
163
163
|
};
|
|
164
164
|
isRender: {
|
|
165
165
|
type?: undefined;
|
|
166
166
|
default?: undefined;
|
|
167
167
|
} | {
|
|
168
168
|
type: any;
|
|
169
|
-
default: string | number | boolean | import(
|
|
169
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
170
170
|
[key: string]: any;
|
|
171
|
-
} | import(
|
|
171
|
+
} | import('../../_utils/props').RequestParams;
|
|
172
172
|
};
|
|
173
173
|
events: {
|
|
174
174
|
type?: undefined;
|
|
175
175
|
default?: undefined;
|
|
176
176
|
} | {
|
|
177
177
|
type: any;
|
|
178
|
-
default: string | number | boolean | import(
|
|
178
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
179
179
|
[key: string]: any;
|
|
180
|
-
} | import(
|
|
180
|
+
} | import('../../_utils/props').RequestParams;
|
|
181
181
|
};
|
|
182
182
|
requestUrl: {
|
|
183
183
|
type?: undefined;
|
|
184
184
|
default?: undefined;
|
|
185
185
|
} | {
|
|
186
186
|
type: any;
|
|
187
|
-
default: string | number | boolean | import(
|
|
187
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
188
188
|
[key: string]: any;
|
|
189
|
-
} | import(
|
|
189
|
+
} | import('../../_utils/props').RequestParams;
|
|
190
190
|
};
|
|
191
191
|
requestMethod: {
|
|
192
192
|
type?: undefined;
|
|
193
193
|
default?: undefined;
|
|
194
194
|
} | {
|
|
195
195
|
type: any;
|
|
196
|
-
default: string | number | boolean | import(
|
|
196
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
197
197
|
[key: string]: any;
|
|
198
|
-
} | import(
|
|
198
|
+
} | import('../../_utils/props').RequestParams;
|
|
199
199
|
};
|
|
200
200
|
requestHeaders: {
|
|
201
201
|
type?: undefined;
|
|
202
202
|
default?: undefined;
|
|
203
203
|
} | {
|
|
204
204
|
type: any;
|
|
205
|
-
default: string | number | boolean | import(
|
|
205
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
206
206
|
[key: string]: any;
|
|
207
|
-
} | import(
|
|
207
|
+
} | import('../../_utils/props').RequestParams;
|
|
208
208
|
};
|
|
209
209
|
isOpenRequestTimer: {
|
|
210
210
|
type?: undefined;
|
|
211
211
|
default?: undefined;
|
|
212
212
|
} | {
|
|
213
213
|
type: any;
|
|
214
|
-
default: string | number | boolean | import(
|
|
214
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
215
215
|
[key: string]: any;
|
|
216
|
-
} | import(
|
|
216
|
+
} | import('../../_utils/props').RequestParams;
|
|
217
217
|
};
|
|
218
218
|
requestInterval: {
|
|
219
219
|
type?: undefined;
|
|
220
220
|
default?: undefined;
|
|
221
221
|
} | {
|
|
222
222
|
type: any;
|
|
223
|
-
default: string | number | boolean | import(
|
|
223
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
224
224
|
[key: string]: any;
|
|
225
|
-
} | import(
|
|
225
|
+
} | import('../../_utils/props').RequestParams;
|
|
226
226
|
};
|
|
227
227
|
requestParams: {
|
|
228
228
|
type?: undefined;
|
|
229
229
|
default?: undefined;
|
|
230
230
|
} | {
|
|
231
231
|
type: any;
|
|
232
|
-
default: string | number | boolean | import(
|
|
232
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
233
233
|
[key: string]: any;
|
|
234
|
-
} | import(
|
|
234
|
+
} | import('../../_utils/props').RequestParams;
|
|
235
235
|
};
|
|
236
236
|
requestSort: {
|
|
237
237
|
type?: undefined;
|
|
238
238
|
default?: undefined;
|
|
239
239
|
} | {
|
|
240
240
|
type: any;
|
|
241
|
-
default: string | number | boolean | import(
|
|
241
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
242
242
|
[key: string]: any;
|
|
243
|
-
} | import(
|
|
243
|
+
} | import('../../_utils/props').RequestParams;
|
|
244
244
|
};
|
|
245
245
|
dataType: {
|
|
246
246
|
type?: undefined;
|
|
247
247
|
default?: undefined;
|
|
248
248
|
} | {
|
|
249
249
|
type: any;
|
|
250
|
-
default: string | number | boolean | import(
|
|
250
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
251
251
|
[key: string]: any;
|
|
252
|
-
} | import(
|
|
252
|
+
} | import('../../_utils/props').RequestParams;
|
|
253
253
|
};
|
|
254
254
|
};
|
|
255
255
|
export declare const borderEvents: string[];
|
|
@@ -210,7 +210,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
210
210
|
'aria-colindex'?: string | number;
|
|
211
211
|
'aria-colspan'?: string | number;
|
|
212
212
|
'aria-controls'?: string;
|
|
213
|
-
'aria-current'?: "time" | "date" | "page" | (boolean | "false" | "true") | "step"
|
|
213
|
+
'aria-current'?: "time" | "location" | "date" | "page" | (boolean | "false" | "true") | "step";
|
|
214
214
|
'aria-describedby'?: string;
|
|
215
215
|
'aria-details'?: string;
|
|
216
216
|
'aria-disabled'?: boolean | "false" | "true";
|
|
@@ -210,7 +210,7 @@ export declare const EcanModal: import("../../_utils/withInstall").SFCWithInstal
|
|
|
210
210
|
'aria-colindex'?: string | number;
|
|
211
211
|
'aria-colspan'?: string | number;
|
|
212
212
|
'aria-controls'?: string;
|
|
213
|
-
'aria-current'?: "time" | "date" | "page" | (boolean | "false" | "true") | "step"
|
|
213
|
+
'aria-current'?: "time" | "location" | "date" | "page" | (boolean | "false" | "true") | "step";
|
|
214
214
|
'aria-describedby'?: string;
|
|
215
215
|
'aria-details'?: string;
|
|
216
216
|
'aria-disabled'?: boolean | "false" | "true";
|
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
import { Events } from '../../_utils/props';
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
|
+
text: {
|
|
4
|
+
type?: undefined;
|
|
5
|
+
default?: undefined;
|
|
6
|
+
} | {
|
|
7
|
+
type: any;
|
|
8
|
+
default: string | number | boolean | Events | {
|
|
9
|
+
[key: string]: any;
|
|
10
|
+
} | import('../../_utils/props').RequestParams;
|
|
11
|
+
};
|
|
12
|
+
mode: {
|
|
13
|
+
type?: undefined;
|
|
14
|
+
default?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
type: any;
|
|
17
|
+
default: string | number | boolean | Events | {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
} | import('../../_utils/props').RequestParams;
|
|
20
|
+
};
|
|
21
|
+
danger: {
|
|
22
|
+
type?: undefined;
|
|
23
|
+
default?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
type: any;
|
|
26
|
+
default: string | number | boolean | Events | {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
} | import('../../_utils/props').RequestParams;
|
|
29
|
+
};
|
|
30
|
+
shape: {
|
|
31
|
+
type?: undefined;
|
|
32
|
+
default?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
type: any;
|
|
35
|
+
default: string | number | boolean | Events | {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
} | import('../../_utils/props').RequestParams;
|
|
38
|
+
};
|
|
39
|
+
href: {
|
|
40
|
+
type?: undefined;
|
|
41
|
+
default?: undefined;
|
|
42
|
+
} | {
|
|
43
|
+
type: any;
|
|
44
|
+
default: string | number | boolean | Events | {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
} | import('../../_utils/props').RequestParams;
|
|
47
|
+
};
|
|
48
|
+
target: {
|
|
49
|
+
type?: undefined;
|
|
50
|
+
default?: undefined;
|
|
51
|
+
} | {
|
|
52
|
+
type: any;
|
|
53
|
+
default: string | number | boolean | Events | {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
} | import('../../_utils/props').RequestParams;
|
|
56
|
+
};
|
|
3
57
|
id: {
|
|
4
58
|
type?: undefined;
|
|
5
59
|
default?: undefined;
|
|
@@ -201,7 +255,63 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
201
255
|
}, {
|
|
202
256
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
203
257
|
click: () => void;
|
|
258
|
+
myText: import("vue").ComputedRef<string>;
|
|
259
|
+
myHref: import("vue").ComputedRef<string>;
|
|
204
260
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
261
|
+
text: {
|
|
262
|
+
type?: undefined;
|
|
263
|
+
default?: undefined;
|
|
264
|
+
} | {
|
|
265
|
+
type: any;
|
|
266
|
+
default: string | number | boolean | Events | {
|
|
267
|
+
[key: string]: any;
|
|
268
|
+
} | import('../../_utils/props').RequestParams;
|
|
269
|
+
};
|
|
270
|
+
mode: {
|
|
271
|
+
type?: undefined;
|
|
272
|
+
default?: undefined;
|
|
273
|
+
} | {
|
|
274
|
+
type: any;
|
|
275
|
+
default: string | number | boolean | Events | {
|
|
276
|
+
[key: string]: any;
|
|
277
|
+
} | import('../../_utils/props').RequestParams;
|
|
278
|
+
};
|
|
279
|
+
danger: {
|
|
280
|
+
type?: undefined;
|
|
281
|
+
default?: undefined;
|
|
282
|
+
} | {
|
|
283
|
+
type: any;
|
|
284
|
+
default: string | number | boolean | Events | {
|
|
285
|
+
[key: string]: any;
|
|
286
|
+
} | import('../../_utils/props').RequestParams;
|
|
287
|
+
};
|
|
288
|
+
shape: {
|
|
289
|
+
type?: undefined;
|
|
290
|
+
default?: undefined;
|
|
291
|
+
} | {
|
|
292
|
+
type: any;
|
|
293
|
+
default: string | number | boolean | Events | {
|
|
294
|
+
[key: string]: any;
|
|
295
|
+
} | import('../../_utils/props').RequestParams;
|
|
296
|
+
};
|
|
297
|
+
href: {
|
|
298
|
+
type?: undefined;
|
|
299
|
+
default?: undefined;
|
|
300
|
+
} | {
|
|
301
|
+
type: any;
|
|
302
|
+
default: string | number | boolean | Events | {
|
|
303
|
+
[key: string]: any;
|
|
304
|
+
} | import('../../_utils/props').RequestParams;
|
|
305
|
+
};
|
|
306
|
+
target: {
|
|
307
|
+
type?: undefined;
|
|
308
|
+
default?: undefined;
|
|
309
|
+
} | {
|
|
310
|
+
type: any;
|
|
311
|
+
default: string | number | boolean | Events | {
|
|
312
|
+
[key: string]: any;
|
|
313
|
+
} | import('../../_utils/props').RequestParams;
|
|
314
|
+
};
|
|
205
315
|
id: {
|
|
206
316
|
type?: undefined;
|
|
207
317
|
default?: undefined;
|
|
@@ -1,4 +1,58 @@
|
|
|
1
|
-
export declare const EcanButton: import(
|
|
1
|
+
export declare const EcanButton: import('../../_utils/withInstall').SFCWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
text: {
|
|
3
|
+
type?: undefined;
|
|
4
|
+
default?: undefined;
|
|
5
|
+
} | {
|
|
6
|
+
type: any;
|
|
7
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
8
|
+
[key: string]: any;
|
|
9
|
+
} | import("../../_utils/props").RequestParams;
|
|
10
|
+
};
|
|
11
|
+
mode: {
|
|
12
|
+
type?: undefined;
|
|
13
|
+
default?: undefined;
|
|
14
|
+
} | {
|
|
15
|
+
type: any;
|
|
16
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
} | import("../../_utils/props").RequestParams;
|
|
19
|
+
};
|
|
20
|
+
danger: {
|
|
21
|
+
type?: undefined;
|
|
22
|
+
default?: undefined;
|
|
23
|
+
} | {
|
|
24
|
+
type: any;
|
|
25
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
} | import("../../_utils/props").RequestParams;
|
|
28
|
+
};
|
|
29
|
+
shape: {
|
|
30
|
+
type?: undefined;
|
|
31
|
+
default?: undefined;
|
|
32
|
+
} | {
|
|
33
|
+
type: any;
|
|
34
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
35
|
+
[key: string]: any;
|
|
36
|
+
} | import("../../_utils/props").RequestParams;
|
|
37
|
+
};
|
|
38
|
+
href: {
|
|
39
|
+
type?: undefined;
|
|
40
|
+
default?: undefined;
|
|
41
|
+
} | {
|
|
42
|
+
type: any;
|
|
43
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
44
|
+
[key: string]: any;
|
|
45
|
+
} | import("../../_utils/props").RequestParams;
|
|
46
|
+
};
|
|
47
|
+
target: {
|
|
48
|
+
type?: undefined;
|
|
49
|
+
default?: undefined;
|
|
50
|
+
} | {
|
|
51
|
+
type: any;
|
|
52
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
} | import("../../_utils/props").RequestParams;
|
|
55
|
+
};
|
|
2
56
|
id: {
|
|
3
57
|
type?: undefined;
|
|
4
58
|
default?: undefined;
|
|
@@ -200,7 +254,63 @@ export declare const EcanButton: import("../../_utils/withInstall").SFCWithInsta
|
|
|
200
254
|
}, {
|
|
201
255
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
202
256
|
click: () => void;
|
|
257
|
+
myText: import("vue").ComputedRef<string>;
|
|
258
|
+
myHref: import("vue").ComputedRef<string>;
|
|
203
259
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
260
|
+
text: {
|
|
261
|
+
type?: undefined;
|
|
262
|
+
default?: undefined;
|
|
263
|
+
} | {
|
|
264
|
+
type: any;
|
|
265
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
266
|
+
[key: string]: any;
|
|
267
|
+
} | import("../../_utils/props").RequestParams;
|
|
268
|
+
};
|
|
269
|
+
mode: {
|
|
270
|
+
type?: undefined;
|
|
271
|
+
default?: undefined;
|
|
272
|
+
} | {
|
|
273
|
+
type: any;
|
|
274
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
275
|
+
[key: string]: any;
|
|
276
|
+
} | import("../../_utils/props").RequestParams;
|
|
277
|
+
};
|
|
278
|
+
danger: {
|
|
279
|
+
type?: undefined;
|
|
280
|
+
default?: undefined;
|
|
281
|
+
} | {
|
|
282
|
+
type: any;
|
|
283
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
284
|
+
[key: string]: any;
|
|
285
|
+
} | import("../../_utils/props").RequestParams;
|
|
286
|
+
};
|
|
287
|
+
shape: {
|
|
288
|
+
type?: undefined;
|
|
289
|
+
default?: undefined;
|
|
290
|
+
} | {
|
|
291
|
+
type: any;
|
|
292
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
293
|
+
[key: string]: any;
|
|
294
|
+
} | import("../../_utils/props").RequestParams;
|
|
295
|
+
};
|
|
296
|
+
href: {
|
|
297
|
+
type?: undefined;
|
|
298
|
+
default?: undefined;
|
|
299
|
+
} | {
|
|
300
|
+
type: any;
|
|
301
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
302
|
+
[key: string]: any;
|
|
303
|
+
} | import("../../_utils/props").RequestParams;
|
|
304
|
+
};
|
|
305
|
+
target: {
|
|
306
|
+
type?: undefined;
|
|
307
|
+
default?: undefined;
|
|
308
|
+
} | {
|
|
309
|
+
type: any;
|
|
310
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
311
|
+
[key: string]: any;
|
|
312
|
+
} | import("../../_utils/props").RequestParams;
|
|
313
|
+
};
|
|
204
314
|
id: {
|
|
205
315
|
type?: undefined;
|
|
206
316
|
default?: undefined;
|