@ecan-bi/datav 1.0.41 → 1.0.44
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 +906 -255
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +906 -252
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +149 -86
- package/package.json +1 -1
- package/types/_utils/constant.d.ts +3 -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/container/border/Border.vue.d.ts +183 -54
- package/types/container/border/index.d.ts +130 -1
- package/types/container/border/props.d.ts +115 -55
- 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/control/tabs/Tabs.vue.d.ts +42 -0
- package/types/control/tabs/index.d.ts +42 -0
- package/types/control/tabs/props.d.ts +24 -0
- 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/setting/index.d.ts +1 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +36 -6
- package/types/setting/provider-config/index.d.ts +37 -7
- package/types/setting/provider-config/props.d.ts +21 -3
- package/types/setting/renderer/Renderer.vue.d.ts +22 -0
- package/types/setting/renderer/index.d.ts +23 -0
- package/types/setting/renderer/props.d.ts +17 -0
- 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
|
@@ -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;
|
|
@@ -1,205 +1,265 @@
|
|
|
1
1
|
import { Props } from '../../_utils/props';
|
|
2
2
|
export interface ButtonProps extends Props {
|
|
3
|
+
text: string;
|
|
4
|
+
mode: 'primary' | 'dashed' | 'link' | 'text' | 'default';
|
|
5
|
+
danger: boolean;
|
|
6
|
+
shape: 'default' | 'circle' | 'round';
|
|
7
|
+
href: string;
|
|
8
|
+
target: '_self' | '_blank';
|
|
3
9
|
}
|
|
4
10
|
export declare const buttonProps: ButtonProps;
|
|
5
11
|
export declare const buttonComponentProps: {
|
|
12
|
+
text: {
|
|
13
|
+
type?: undefined;
|
|
14
|
+
default?: undefined;
|
|
15
|
+
} | {
|
|
16
|
+
type: any;
|
|
17
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
} | import('../../_utils/props').RequestParams;
|
|
20
|
+
};
|
|
21
|
+
mode: {
|
|
22
|
+
type?: undefined;
|
|
23
|
+
default?: undefined;
|
|
24
|
+
} | {
|
|
25
|
+
type: any;
|
|
26
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
} | import('../../_utils/props').RequestParams;
|
|
29
|
+
};
|
|
30
|
+
danger: {
|
|
31
|
+
type?: undefined;
|
|
32
|
+
default?: undefined;
|
|
33
|
+
} | {
|
|
34
|
+
type: any;
|
|
35
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
36
|
+
[key: string]: any;
|
|
37
|
+
} | import('../../_utils/props').RequestParams;
|
|
38
|
+
};
|
|
39
|
+
shape: {
|
|
40
|
+
type?: undefined;
|
|
41
|
+
default?: undefined;
|
|
42
|
+
} | {
|
|
43
|
+
type: any;
|
|
44
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
45
|
+
[key: string]: any;
|
|
46
|
+
} | import('../../_utils/props').RequestParams;
|
|
47
|
+
};
|
|
48
|
+
href: {
|
|
49
|
+
type?: undefined;
|
|
50
|
+
default?: undefined;
|
|
51
|
+
} | {
|
|
52
|
+
type: any;
|
|
53
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
54
|
+
[key: string]: any;
|
|
55
|
+
} | import('../../_utils/props').RequestParams;
|
|
56
|
+
};
|
|
57
|
+
target: {
|
|
58
|
+
type?: undefined;
|
|
59
|
+
default?: undefined;
|
|
60
|
+
} | {
|
|
61
|
+
type: any;
|
|
62
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
63
|
+
[key: string]: any;
|
|
64
|
+
} | import('../../_utils/props').RequestParams;
|
|
65
|
+
};
|
|
6
66
|
id: {
|
|
7
67
|
type?: undefined;
|
|
8
68
|
default?: undefined;
|
|
9
69
|
} | {
|
|
10
70
|
type: any;
|
|
11
|
-
default: string | number | boolean | import(
|
|
71
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
12
72
|
[key: string]: any;
|
|
13
|
-
} | import(
|
|
73
|
+
} | import('../../_utils/props').RequestParams;
|
|
14
74
|
};
|
|
15
75
|
name: {
|
|
16
76
|
type?: undefined;
|
|
17
77
|
default?: undefined;
|
|
18
78
|
} | {
|
|
19
79
|
type: any;
|
|
20
|
-
default: string | number | boolean | import(
|
|
80
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
21
81
|
[key: string]: any;
|
|
22
|
-
} | import(
|
|
82
|
+
} | import('../../_utils/props').RequestParams;
|
|
23
83
|
};
|
|
24
84
|
keyName: {
|
|
25
85
|
type?: undefined;
|
|
26
86
|
default?: undefined;
|
|
27
87
|
} | {
|
|
28
88
|
type: any;
|
|
29
|
-
default: string | number | boolean | import(
|
|
89
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
30
90
|
[key: string]: any;
|
|
31
|
-
} | import(
|
|
91
|
+
} | import('../../_utils/props').RequestParams;
|
|
32
92
|
};
|
|
33
93
|
type: {
|
|
34
94
|
type?: undefined;
|
|
35
95
|
default?: undefined;
|
|
36
96
|
} | {
|
|
37
97
|
type: any;
|
|
38
|
-
default: string | number | boolean | import(
|
|
98
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
39
99
|
[key: string]: any;
|
|
40
|
-
} | import(
|
|
100
|
+
} | import('../../_utils/props').RequestParams;
|
|
41
101
|
};
|
|
42
102
|
width: {
|
|
43
103
|
type?: undefined;
|
|
44
104
|
default?: undefined;
|
|
45
105
|
} | {
|
|
46
106
|
type: any;
|
|
47
|
-
default: string | number | boolean | import(
|
|
107
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
48
108
|
[key: string]: any;
|
|
49
|
-
} | import(
|
|
109
|
+
} | import('../../_utils/props').RequestParams;
|
|
50
110
|
};
|
|
51
111
|
height: {
|
|
52
112
|
type?: undefined;
|
|
53
113
|
default?: undefined;
|
|
54
114
|
} | {
|
|
55
115
|
type: any;
|
|
56
|
-
default: string | number | boolean | import(
|
|
116
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
57
117
|
[key: string]: any;
|
|
58
|
-
} | import(
|
|
118
|
+
} | import('../../_utils/props').RequestParams;
|
|
59
119
|
};
|
|
60
120
|
position: {
|
|
61
121
|
type?: undefined;
|
|
62
122
|
default?: undefined;
|
|
63
123
|
} | {
|
|
64
124
|
type: any;
|
|
65
|
-
default: string | number | boolean | import(
|
|
125
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
66
126
|
[key: string]: any;
|
|
67
|
-
} | import(
|
|
127
|
+
} | import('../../_utils/props').RequestParams;
|
|
68
128
|
};
|
|
69
129
|
top: {
|
|
70
130
|
type?: undefined;
|
|
71
131
|
default?: undefined;
|
|
72
132
|
} | {
|
|
73
133
|
type: any;
|
|
74
|
-
default: string | number | boolean | import(
|
|
134
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
75
135
|
[key: string]: any;
|
|
76
|
-
} | import(
|
|
136
|
+
} | import('../../_utils/props').RequestParams;
|
|
77
137
|
};
|
|
78
138
|
left: {
|
|
79
139
|
type?: undefined;
|
|
80
140
|
default?: undefined;
|
|
81
141
|
} | {
|
|
82
142
|
type: any;
|
|
83
|
-
default: string | number | boolean | import(
|
|
143
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
84
144
|
[key: string]: any;
|
|
85
|
-
} | import(
|
|
145
|
+
} | import('../../_utils/props').RequestParams;
|
|
86
146
|
};
|
|
87
147
|
zIndex: {
|
|
88
148
|
type?: undefined;
|
|
89
149
|
default?: undefined;
|
|
90
150
|
} | {
|
|
91
151
|
type: any;
|
|
92
|
-
default: string | number | boolean | import(
|
|
152
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
93
153
|
[key: string]: any;
|
|
94
|
-
} | import(
|
|
154
|
+
} | import('../../_utils/props').RequestParams;
|
|
95
155
|
};
|
|
96
156
|
rotate: {
|
|
97
157
|
type?: undefined;
|
|
98
158
|
default?: undefined;
|
|
99
159
|
} | {
|
|
100
160
|
type: any;
|
|
101
|
-
default: string | number | boolean | import(
|
|
161
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
102
162
|
[key: string]: any;
|
|
103
|
-
} | import(
|
|
163
|
+
} | import('../../_utils/props').RequestParams;
|
|
104
164
|
};
|
|
105
165
|
isShow: {
|
|
106
166
|
type?: undefined;
|
|
107
167
|
default?: undefined;
|
|
108
168
|
} | {
|
|
109
169
|
type: any;
|
|
110
|
-
default: string | number | boolean | import(
|
|
170
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
111
171
|
[key: string]: any;
|
|
112
|
-
} | import(
|
|
172
|
+
} | import('../../_utils/props').RequestParams;
|
|
113
173
|
};
|
|
114
174
|
isRender: {
|
|
115
175
|
type?: undefined;
|
|
116
176
|
default?: undefined;
|
|
117
177
|
} | {
|
|
118
178
|
type: any;
|
|
119
|
-
default: string | number | boolean | import(
|
|
179
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
120
180
|
[key: string]: any;
|
|
121
|
-
} | import(
|
|
181
|
+
} | import('../../_utils/props').RequestParams;
|
|
122
182
|
};
|
|
123
183
|
events: {
|
|
124
184
|
type?: undefined;
|
|
125
185
|
default?: undefined;
|
|
126
186
|
} | {
|
|
127
187
|
type: any;
|
|
128
|
-
default: string | number | boolean | import(
|
|
188
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
129
189
|
[key: string]: any;
|
|
130
|
-
} | import(
|
|
190
|
+
} | import('../../_utils/props').RequestParams;
|
|
131
191
|
};
|
|
132
192
|
requestUrl: {
|
|
133
193
|
type?: undefined;
|
|
134
194
|
default?: undefined;
|
|
135
195
|
} | {
|
|
136
196
|
type: any;
|
|
137
|
-
default: string | number | boolean | import(
|
|
197
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
138
198
|
[key: string]: any;
|
|
139
|
-
} | import(
|
|
199
|
+
} | import('../../_utils/props').RequestParams;
|
|
140
200
|
};
|
|
141
201
|
requestMethod: {
|
|
142
202
|
type?: undefined;
|
|
143
203
|
default?: undefined;
|
|
144
204
|
} | {
|
|
145
205
|
type: any;
|
|
146
|
-
default: string | number | boolean | import(
|
|
206
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
147
207
|
[key: string]: any;
|
|
148
|
-
} | import(
|
|
208
|
+
} | import('../../_utils/props').RequestParams;
|
|
149
209
|
};
|
|
150
210
|
requestHeaders: {
|
|
151
211
|
type?: undefined;
|
|
152
212
|
default?: undefined;
|
|
153
213
|
} | {
|
|
154
214
|
type: any;
|
|
155
|
-
default: string | number | boolean | import(
|
|
215
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
156
216
|
[key: string]: any;
|
|
157
|
-
} | import(
|
|
217
|
+
} | import('../../_utils/props').RequestParams;
|
|
158
218
|
};
|
|
159
219
|
isOpenRequestTimer: {
|
|
160
220
|
type?: undefined;
|
|
161
221
|
default?: undefined;
|
|
162
222
|
} | {
|
|
163
223
|
type: any;
|
|
164
|
-
default: string | number | boolean | import(
|
|
224
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
165
225
|
[key: string]: any;
|
|
166
|
-
} | import(
|
|
226
|
+
} | import('../../_utils/props').RequestParams;
|
|
167
227
|
};
|
|
168
228
|
requestInterval: {
|
|
169
229
|
type?: undefined;
|
|
170
230
|
default?: undefined;
|
|
171
231
|
} | {
|
|
172
232
|
type: any;
|
|
173
|
-
default: string | number | boolean | import(
|
|
233
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
174
234
|
[key: string]: any;
|
|
175
|
-
} | import(
|
|
235
|
+
} | import('../../_utils/props').RequestParams;
|
|
176
236
|
};
|
|
177
237
|
requestParams: {
|
|
178
238
|
type?: undefined;
|
|
179
239
|
default?: undefined;
|
|
180
240
|
} | {
|
|
181
241
|
type: any;
|
|
182
|
-
default: string | number | boolean | import(
|
|
242
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
183
243
|
[key: string]: any;
|
|
184
|
-
} | import(
|
|
244
|
+
} | import('../../_utils/props').RequestParams;
|
|
185
245
|
};
|
|
186
246
|
requestSort: {
|
|
187
247
|
type?: undefined;
|
|
188
248
|
default?: undefined;
|
|
189
249
|
} | {
|
|
190
250
|
type: any;
|
|
191
|
-
default: string | number | boolean | import(
|
|
251
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
192
252
|
[key: string]: any;
|
|
193
|
-
} | import(
|
|
253
|
+
} | import('../../_utils/props').RequestParams;
|
|
194
254
|
};
|
|
195
255
|
dataType: {
|
|
196
256
|
type?: undefined;
|
|
197
257
|
default?: undefined;
|
|
198
258
|
} | {
|
|
199
259
|
type: any;
|
|
200
|
-
default: string | number | boolean | import(
|
|
260
|
+
default: string | number | boolean | import('../../_utils/props').Events | {
|
|
201
261
|
[key: string]: any;
|
|
202
|
-
} | import(
|
|
262
|
+
} | import('../../_utils/props').RequestParams;
|
|
203
263
|
};
|
|
204
264
|
};
|
|
205
265
|
export declare const buttonEvents: string[];
|