@ecan-bi/datav 1.0.23 → 1.0.24
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/_utils/constant.d.ts +3 -7
- package/dist/_utils/diagramParam.d.ts +145 -0
- package/dist/_utils/hooks/index.d.ts +2 -0
- package/dist/_utils/hooks/usePageUrl.d.ts +2 -0
- package/dist/_utils/hooks/useRequestDiagram.d.ts +5 -0
- package/dist/_utils/hooks/useTransformEchartsDataset.d.ts +17 -0
- package/dist/_utils/hooks/useVariablesInText.d.ts +4 -0
- package/dist/_utils/props.d.ts +1 -1
- package/dist/_utils/propsDiagram.d.ts +52 -0
- package/dist/components.d.ts +1 -0
- package/dist/container/border/Border.vue.d.ts +360 -0
- package/dist/container/border/props.d.ts +11 -10
- package/dist/container/card/props.d.ts +9 -9
- package/dist/container/modal/Modal.vue.d.ts +2 -0
- package/dist/control/button/Button.vue.d.ts +13 -13
- package/dist/control/button/props.d.ts +9 -9
- package/dist/control/date-picker/DatePicker.vue.d.ts +13 -13
- package/dist/control/date-picker/props.d.ts +9 -9
- package/dist/control/input/Input.vue.d.ts +13 -13
- package/dist/control/input/props.d.ts +9 -9
- package/dist/control/range-picker/RangePicker.vue.d.ts +13 -13
- package/dist/control/range-picker/props.d.ts +9 -9
- package/dist/control/select/Select.vue.d.ts +13 -13
- package/dist/control/select/props.d.ts +9 -9
- package/dist/control/tabs/Tabs.vue.d.ts +10 -10
- package/dist/control/tabs/props.d.ts +7 -7
- package/dist/graph/bar/Bar.vue.d.ts +1800 -59
- package/dist/graph/bar/props.d.ts +1794 -55
- package/dist/graph/combo-graph/ComboGraph.vue.d.ts +13 -13
- package/dist/graph/combo-graph/props.d.ts +9 -9
- package/dist/graph/custom-graph/CustomGraph.vue.d.ts +13 -13
- package/dist/graph/custom-graph/props.d.ts +9 -9
- package/dist/graph/line/Line.vue.d.ts +13 -13
- package/dist/graph/line/props.d.ts +9 -9
- package/dist/graph/pie/Pie.vue.d.ts +14 -13
- package/dist/graph/pie/props.d.ts +9 -9
- package/dist/graph/scatter/Scatter.vue.d.ts +213 -17
- package/dist/graph/scatter/props.d.ts +126 -9
- package/dist/index.esm.js +1 -15
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +1 -15
- package/dist/index.umd.js.map +1 -1
- package/dist/map/index.d.ts +1 -0
- package/dist/map/map/Map.vue.d.ts +710 -0
- package/dist/map/map/index.d.ts +3 -0
- package/dist/map/map/props.d.ts +514 -0
- package/dist/media/image/Image.vue.d.ts +53 -13
- package/dist/media/image/props.d.ts +39 -9
- package/dist/table/table/Table.vue.d.ts +1401 -51
- package/dist/table/table/props.d.ts +1392 -45
- package/dist/text/index.d.ts +1 -0
- package/dist/text/list/List.vue.d.ts +13 -13
- package/dist/text/list/props.d.ts +9 -9
- package/dist/text/proportion/Proportion.vue.d.ts +524 -0
- package/dist/text/proportion/index.d.ts +3 -0
- package/dist/text/proportion/props.d.ts +395 -0
- package/dist/text/text/Text.vue.d.ts +68 -51
- package/dist/text/text/props.d.ts +25 -13
- package/dist/text/time-display/TimeDisplay.vue.d.ts +13 -13
- package/dist/text/time-display/props.d.ts +9 -9
- package/package.json +1 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { Events } from '../../_utils/props';
|
|
1
2
|
declare const _default: import("vue").DefineComponent<{
|
|
2
3
|
text: {
|
|
3
4
|
type?: undefined;
|
|
@@ -6,7 +7,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
6
7
|
type: any;
|
|
7
8
|
default: string | number | boolean | {
|
|
8
9
|
[key: string]: any;
|
|
9
|
-
} |
|
|
10
|
+
} | Events | {
|
|
10
11
|
[key: string]: any;
|
|
11
12
|
} | import("../../_utils/props").RequestParams;
|
|
12
13
|
};
|
|
@@ -17,7 +18,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
17
18
|
type: any;
|
|
18
19
|
default: string | number | boolean | {
|
|
19
20
|
[key: string]: any;
|
|
20
|
-
} |
|
|
21
|
+
} | Events | {
|
|
21
22
|
[key: string]: any;
|
|
22
23
|
} | import("../../_utils/props").RequestParams;
|
|
23
24
|
};
|
|
@@ -28,7 +29,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
29
|
type: any;
|
|
29
30
|
default: string | number | boolean | {
|
|
30
31
|
[key: string]: any;
|
|
31
|
-
} |
|
|
32
|
+
} | Events | {
|
|
32
33
|
[key: string]: any;
|
|
33
34
|
} | import("../../_utils/props").RequestParams;
|
|
34
35
|
};
|
|
@@ -39,7 +40,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
39
40
|
type: any;
|
|
40
41
|
default: string | number | boolean | {
|
|
41
42
|
[key: string]: any;
|
|
42
|
-
} |
|
|
43
|
+
} | Events | {
|
|
43
44
|
[key: string]: any;
|
|
44
45
|
} | import("../../_utils/props").RequestParams;
|
|
45
46
|
};
|
|
@@ -50,29 +51,29 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
50
51
|
type: any;
|
|
51
52
|
default: string | number | boolean | {
|
|
52
53
|
[key: string]: any;
|
|
53
|
-
} |
|
|
54
|
+
} | Events | {
|
|
54
55
|
[key: string]: any;
|
|
55
56
|
} | import("../../_utils/props").RequestParams;
|
|
56
57
|
};
|
|
57
|
-
|
|
58
|
+
justifyContent: {
|
|
58
59
|
type?: undefined;
|
|
59
60
|
default?: undefined;
|
|
60
61
|
} | {
|
|
61
62
|
type: any;
|
|
62
63
|
default: string | number | boolean | {
|
|
63
64
|
[key: string]: any;
|
|
64
|
-
} |
|
|
65
|
+
} | Events | {
|
|
65
66
|
[key: string]: any;
|
|
66
67
|
} | import("../../_utils/props").RequestParams;
|
|
67
68
|
};
|
|
68
|
-
|
|
69
|
+
alignItems: {
|
|
69
70
|
type?: undefined;
|
|
70
71
|
default?: undefined;
|
|
71
72
|
} | {
|
|
72
73
|
type: any;
|
|
73
74
|
default: string | number | boolean | {
|
|
74
75
|
[key: string]: any;
|
|
75
|
-
} |
|
|
76
|
+
} | Events | {
|
|
76
77
|
[key: string]: any;
|
|
77
78
|
} | import("../../_utils/props").RequestParams;
|
|
78
79
|
};
|
|
@@ -83,7 +84,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
83
84
|
type: any;
|
|
84
85
|
default: string | number | boolean | {
|
|
85
86
|
[key: string]: any;
|
|
86
|
-
} |
|
|
87
|
+
} | Events | {
|
|
87
88
|
[key: string]: any;
|
|
88
89
|
} | import("../../_utils/props").RequestParams;
|
|
89
90
|
};
|
|
@@ -94,7 +95,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
94
95
|
type: any;
|
|
95
96
|
default: string | number | boolean | {
|
|
96
97
|
[key: string]: any;
|
|
97
|
-
} |
|
|
98
|
+
} | Events | {
|
|
98
99
|
[key: string]: any;
|
|
99
100
|
} | import("../../_utils/props").RequestParams;
|
|
100
101
|
};
|
|
@@ -105,7 +106,18 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
105
106
|
type: any;
|
|
106
107
|
default: string | number | boolean | {
|
|
107
108
|
[key: string]: any;
|
|
108
|
-
} |
|
|
109
|
+
} | Events | {
|
|
110
|
+
[key: string]: any;
|
|
111
|
+
} | import("../../_utils/props").RequestParams;
|
|
112
|
+
};
|
|
113
|
+
variableFontSize: {
|
|
114
|
+
type?: undefined;
|
|
115
|
+
default?: undefined;
|
|
116
|
+
} | {
|
|
117
|
+
type: any;
|
|
118
|
+
default: string | number | boolean | {
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
} | Events | {
|
|
109
121
|
[key: string]: any;
|
|
110
122
|
} | import("../../_utils/props").RequestParams;
|
|
111
123
|
};
|
|
@@ -116,7 +128,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
116
128
|
type: any;
|
|
117
129
|
default: string | number | boolean | {
|
|
118
130
|
[key: string]: any;
|
|
119
|
-
} |
|
|
131
|
+
} | Events | {
|
|
120
132
|
[key: string]: any;
|
|
121
133
|
} | import("../../_utils/props").RequestParams;
|
|
122
134
|
};
|
|
@@ -127,7 +139,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
127
139
|
type: any;
|
|
128
140
|
default: string | number | boolean | {
|
|
129
141
|
[key: string]: any;
|
|
130
|
-
} |
|
|
142
|
+
} | Events | {
|
|
131
143
|
[key: string]: any;
|
|
132
144
|
} | import("../../_utils/props").RequestParams;
|
|
133
145
|
};
|
|
@@ -138,7 +150,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
138
150
|
type: any;
|
|
139
151
|
default: string | number | boolean | {
|
|
140
152
|
[key: string]: any;
|
|
141
|
-
} |
|
|
153
|
+
} | Events | {
|
|
142
154
|
[key: string]: any;
|
|
143
155
|
} | import("../../_utils/props").RequestParams;
|
|
144
156
|
};
|
|
@@ -149,7 +161,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
149
161
|
type: any;
|
|
150
162
|
default: string | number | boolean | {
|
|
151
163
|
[key: string]: any;
|
|
152
|
-
} |
|
|
164
|
+
} | Events | {
|
|
153
165
|
[key: string]: any;
|
|
154
166
|
} | import("../../_utils/props").RequestParams;
|
|
155
167
|
};
|
|
@@ -160,7 +172,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
160
172
|
type: any;
|
|
161
173
|
default: string | number | boolean | {
|
|
162
174
|
[key: string]: any;
|
|
163
|
-
} |
|
|
175
|
+
} | Events | {
|
|
164
176
|
[key: string]: any;
|
|
165
177
|
} | import("../../_utils/props").RequestParams;
|
|
166
178
|
};
|
|
@@ -171,7 +183,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
171
183
|
type: any;
|
|
172
184
|
default: string | number | boolean | {
|
|
173
185
|
[key: string]: any;
|
|
174
|
-
} |
|
|
186
|
+
} | Events | {
|
|
175
187
|
[key: string]: any;
|
|
176
188
|
} | import("../../_utils/props").RequestParams;
|
|
177
189
|
};
|
|
@@ -182,7 +194,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
182
194
|
type: any;
|
|
183
195
|
default: string | number | boolean | {
|
|
184
196
|
[key: string]: any;
|
|
185
|
-
} |
|
|
197
|
+
} | Events | {
|
|
186
198
|
[key: string]: any;
|
|
187
199
|
} | import("../../_utils/props").RequestParams;
|
|
188
200
|
};
|
|
@@ -193,7 +205,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
193
205
|
type: any;
|
|
194
206
|
default: string | number | boolean | {
|
|
195
207
|
[key: string]: any;
|
|
196
|
-
} |
|
|
208
|
+
} | Events | {
|
|
197
209
|
[key: string]: any;
|
|
198
210
|
} | import("../../_utils/props").RequestParams;
|
|
199
211
|
};
|
|
@@ -204,7 +216,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
204
216
|
type: any;
|
|
205
217
|
default: string | number | boolean | {
|
|
206
218
|
[key: string]: any;
|
|
207
|
-
} |
|
|
219
|
+
} | Events | {
|
|
208
220
|
[key: string]: any;
|
|
209
221
|
} | import("../../_utils/props").RequestParams;
|
|
210
222
|
};
|
|
@@ -215,7 +227,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
215
227
|
type: any;
|
|
216
228
|
default: string | number | boolean | {
|
|
217
229
|
[key: string]: any;
|
|
218
|
-
} |
|
|
230
|
+
} | Events | {
|
|
219
231
|
[key: string]: any;
|
|
220
232
|
} | import("../../_utils/props").RequestParams;
|
|
221
233
|
};
|
|
@@ -226,7 +238,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
226
238
|
type: any;
|
|
227
239
|
default: string | number | boolean | {
|
|
228
240
|
[key: string]: any;
|
|
229
|
-
} |
|
|
241
|
+
} | Events | {
|
|
230
242
|
[key: string]: any;
|
|
231
243
|
} | import("../../_utils/props").RequestParams;
|
|
232
244
|
};
|
|
@@ -237,7 +249,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
237
249
|
type: any;
|
|
238
250
|
default: string | number | boolean | {
|
|
239
251
|
[key: string]: any;
|
|
240
|
-
} |
|
|
252
|
+
} | Events | {
|
|
241
253
|
[key: string]: any;
|
|
242
254
|
} | import("../../_utils/props").RequestParams;
|
|
243
255
|
};
|
|
@@ -248,106 +260,106 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
248
260
|
type: any;
|
|
249
261
|
default: string | number | boolean | {
|
|
250
262
|
[key: string]: any;
|
|
251
|
-
} |
|
|
263
|
+
} | Events | {
|
|
252
264
|
[key: string]: any;
|
|
253
265
|
} | import("../../_utils/props").RequestParams;
|
|
254
266
|
};
|
|
255
|
-
|
|
267
|
+
events: {
|
|
256
268
|
type?: undefined;
|
|
257
269
|
default?: undefined;
|
|
258
270
|
} | {
|
|
259
271
|
type: any;
|
|
260
272
|
default: string | number | boolean | {
|
|
261
273
|
[key: string]: any;
|
|
262
|
-
} |
|
|
274
|
+
} | Events | {
|
|
263
275
|
[key: string]: any;
|
|
264
276
|
} | import("../../_utils/props").RequestParams;
|
|
265
277
|
};
|
|
266
|
-
|
|
278
|
+
requestUrl: {
|
|
267
279
|
type?: undefined;
|
|
268
280
|
default?: undefined;
|
|
269
281
|
} | {
|
|
270
282
|
type: any;
|
|
271
283
|
default: string | number | boolean | {
|
|
272
284
|
[key: string]: any;
|
|
273
|
-
} |
|
|
285
|
+
} | Events | {
|
|
274
286
|
[key: string]: any;
|
|
275
287
|
} | import("../../_utils/props").RequestParams;
|
|
276
288
|
};
|
|
277
|
-
|
|
289
|
+
requestMethod: {
|
|
278
290
|
type?: undefined;
|
|
279
291
|
default?: undefined;
|
|
280
292
|
} | {
|
|
281
293
|
type: any;
|
|
282
294
|
default: string | number | boolean | {
|
|
283
295
|
[key: string]: any;
|
|
284
|
-
} |
|
|
296
|
+
} | Events | {
|
|
285
297
|
[key: string]: any;
|
|
286
298
|
} | import("../../_utils/props").RequestParams;
|
|
287
299
|
};
|
|
288
|
-
|
|
300
|
+
requestHeaders: {
|
|
289
301
|
type?: undefined;
|
|
290
302
|
default?: undefined;
|
|
291
303
|
} | {
|
|
292
304
|
type: any;
|
|
293
305
|
default: string | number | boolean | {
|
|
294
306
|
[key: string]: any;
|
|
295
|
-
} |
|
|
307
|
+
} | Events | {
|
|
296
308
|
[key: string]: any;
|
|
297
309
|
} | import("../../_utils/props").RequestParams;
|
|
298
310
|
};
|
|
299
|
-
|
|
311
|
+
isOpenRequestTimer: {
|
|
300
312
|
type?: undefined;
|
|
301
313
|
default?: undefined;
|
|
302
314
|
} | {
|
|
303
315
|
type: any;
|
|
304
316
|
default: string | number | boolean | {
|
|
305
317
|
[key: string]: any;
|
|
306
|
-
} |
|
|
318
|
+
} | Events | {
|
|
307
319
|
[key: string]: any;
|
|
308
320
|
} | import("../../_utils/props").RequestParams;
|
|
309
321
|
};
|
|
310
|
-
|
|
322
|
+
requestInterval: {
|
|
311
323
|
type?: undefined;
|
|
312
324
|
default?: undefined;
|
|
313
325
|
} | {
|
|
314
326
|
type: any;
|
|
315
327
|
default: string | number | boolean | {
|
|
316
328
|
[key: string]: any;
|
|
317
|
-
} |
|
|
329
|
+
} | Events | {
|
|
318
330
|
[key: string]: any;
|
|
319
331
|
} | import("../../_utils/props").RequestParams;
|
|
320
332
|
};
|
|
321
|
-
|
|
333
|
+
requestParams: {
|
|
322
334
|
type?: undefined;
|
|
323
335
|
default?: undefined;
|
|
324
336
|
} | {
|
|
325
337
|
type: any;
|
|
326
338
|
default: string | number | boolean | {
|
|
327
339
|
[key: string]: any;
|
|
328
|
-
} |
|
|
340
|
+
} | Events | {
|
|
329
341
|
[key: string]: any;
|
|
330
342
|
} | import("../../_utils/props").RequestParams;
|
|
331
343
|
};
|
|
332
|
-
|
|
344
|
+
requestSort: {
|
|
333
345
|
type?: undefined;
|
|
334
346
|
default?: undefined;
|
|
335
347
|
} | {
|
|
336
348
|
type: any;
|
|
337
349
|
default: string | number | boolean | {
|
|
338
350
|
[key: string]: any;
|
|
339
|
-
} |
|
|
351
|
+
} | Events | {
|
|
340
352
|
[key: string]: any;
|
|
341
353
|
} | import("../../_utils/props").RequestParams;
|
|
342
354
|
};
|
|
343
|
-
|
|
355
|
+
dataType: {
|
|
344
356
|
type?: undefined;
|
|
345
357
|
default?: undefined;
|
|
346
358
|
} | {
|
|
347
359
|
type: any;
|
|
348
360
|
default: string | number | boolean | {
|
|
349
361
|
[key: string]: any;
|
|
350
|
-
} |
|
|
362
|
+
} | Events | {
|
|
351
363
|
[key: string]: any;
|
|
352
364
|
} | import("../../_utils/props").RequestParams;
|
|
353
365
|
};
|
|
@@ -355,17 +367,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
355
367
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
356
368
|
myText: import("vue").ComputedRef<string>;
|
|
357
369
|
loading: import("vue").Ref<boolean>;
|
|
370
|
+
click: () => void;
|
|
358
371
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
359
372
|
text?: unknown;
|
|
360
373
|
color?: unknown;
|
|
361
374
|
fontSize?: unknown;
|
|
362
375
|
fontFamily?: unknown;
|
|
363
376
|
fontWeight?: unknown;
|
|
364
|
-
|
|
365
|
-
|
|
377
|
+
justifyContent?: unknown;
|
|
378
|
+
alignItems?: unknown;
|
|
366
379
|
textShadow?: unknown;
|
|
367
380
|
data?: unknown;
|
|
368
381
|
variableColor?: unknown;
|
|
382
|
+
variableFontSize?: unknown;
|
|
369
383
|
id?: unknown;
|
|
370
384
|
name?: unknown;
|
|
371
385
|
keyName?: unknown;
|
|
@@ -379,7 +393,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
379
393
|
rotate?: unknown;
|
|
380
394
|
isShow?: unknown;
|
|
381
395
|
isRender?: unknown;
|
|
382
|
-
isRequestData?: unknown;
|
|
383
396
|
events?: unknown;
|
|
384
397
|
requestUrl?: unknown;
|
|
385
398
|
requestMethod?: unknown;
|
|
@@ -388,6 +401,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
388
401
|
requestInterval?: unknown;
|
|
389
402
|
requestParams?: unknown;
|
|
390
403
|
requestSort?: unknown;
|
|
404
|
+
dataType?: unknown;
|
|
391
405
|
} & {} & {
|
|
392
406
|
type?: string | number | boolean | {
|
|
393
407
|
[key: string]: any;
|
|
@@ -407,10 +421,10 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
407
421
|
fontWeight?: string | number | boolean | {
|
|
408
422
|
[key: string]: any;
|
|
409
423
|
};
|
|
410
|
-
|
|
424
|
+
justifyContent?: string | number | boolean | {
|
|
411
425
|
[key: string]: any;
|
|
412
426
|
};
|
|
413
|
-
|
|
427
|
+
alignItems?: string | number | boolean | {
|
|
414
428
|
[key: string]: any;
|
|
415
429
|
};
|
|
416
430
|
textShadow?: string | number | boolean | {
|
|
@@ -422,6 +436,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
422
436
|
variableColor?: string | number | boolean | {
|
|
423
437
|
[key: string]: any;
|
|
424
438
|
};
|
|
439
|
+
variableFontSize?: string | number | boolean | {
|
|
440
|
+
[key: string]: any;
|
|
441
|
+
};
|
|
425
442
|
id?: string | number | boolean | {
|
|
426
443
|
[key: string]: any;
|
|
427
444
|
};
|
|
@@ -458,9 +475,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
458
475
|
isRender?: string | number | boolean | {
|
|
459
476
|
[key: string]: any;
|
|
460
477
|
};
|
|
461
|
-
isRequestData?: string | number | boolean | {
|
|
462
|
-
[key: string]: any;
|
|
463
|
-
};
|
|
464
478
|
events?: string | number | boolean | {
|
|
465
479
|
[key: string]: any;
|
|
466
480
|
};
|
|
@@ -485,5 +499,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
485
499
|
requestSort?: string | number | boolean | {
|
|
486
500
|
[key: string]: any;
|
|
487
501
|
};
|
|
502
|
+
dataType?: string | number | boolean | {
|
|
503
|
+
[key: string]: any;
|
|
504
|
+
};
|
|
488
505
|
}>, {}>;
|
|
489
506
|
export default _default;
|
|
@@ -5,13 +5,14 @@ export interface TextProps extends Props {
|
|
|
5
5
|
fontSize: string;
|
|
6
6
|
fontFamily: string;
|
|
7
7
|
fontWeight: number;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
justifyContent: 'flex-start' | 'center' | 'end';
|
|
9
|
+
alignItems: 'flex-start' | 'center' | 'end';
|
|
10
10
|
textShadow: string;
|
|
11
11
|
data: {
|
|
12
12
|
[key: string]: any;
|
|
13
13
|
};
|
|
14
14
|
variableColor: string;
|
|
15
|
+
variableFontSize: string;
|
|
15
16
|
}
|
|
16
17
|
export declare const textProps: TextProps;
|
|
17
18
|
export declare const textComponentProps: {
|
|
@@ -70,7 +71,7 @@ export declare const textComponentProps: {
|
|
|
70
71
|
[key: string]: any;
|
|
71
72
|
} | import("../../_utils/props").RequestParams;
|
|
72
73
|
};
|
|
73
|
-
|
|
74
|
+
justifyContent: {
|
|
74
75
|
type?: undefined;
|
|
75
76
|
default?: undefined;
|
|
76
77
|
} | {
|
|
@@ -81,7 +82,7 @@ export declare const textComponentProps: {
|
|
|
81
82
|
[key: string]: any;
|
|
82
83
|
} | import("../../_utils/props").RequestParams;
|
|
83
84
|
};
|
|
84
|
-
|
|
85
|
+
alignItems: {
|
|
85
86
|
type?: undefined;
|
|
86
87
|
default?: undefined;
|
|
87
88
|
} | {
|
|
@@ -125,6 +126,17 @@ export declare const textComponentProps: {
|
|
|
125
126
|
[key: string]: any;
|
|
126
127
|
} | import("../../_utils/props").RequestParams;
|
|
127
128
|
};
|
|
129
|
+
variableFontSize: {
|
|
130
|
+
type?: undefined;
|
|
131
|
+
default?: undefined;
|
|
132
|
+
} | {
|
|
133
|
+
type: any;
|
|
134
|
+
default: string | number | boolean | {
|
|
135
|
+
[key: string]: any;
|
|
136
|
+
} | import("../../_utils/props").Events | {
|
|
137
|
+
[key: string]: any;
|
|
138
|
+
} | import("../../_utils/props").RequestParams;
|
|
139
|
+
};
|
|
128
140
|
id: {
|
|
129
141
|
type?: undefined;
|
|
130
142
|
default?: undefined;
|
|
@@ -268,7 +280,7 @@ export declare const textComponentProps: {
|
|
|
268
280
|
[key: string]: any;
|
|
269
281
|
} | import("../../_utils/props").RequestParams;
|
|
270
282
|
};
|
|
271
|
-
|
|
283
|
+
events: {
|
|
272
284
|
type?: undefined;
|
|
273
285
|
default?: undefined;
|
|
274
286
|
} | {
|
|
@@ -279,7 +291,7 @@ export declare const textComponentProps: {
|
|
|
279
291
|
[key: string]: any;
|
|
280
292
|
} | import("../../_utils/props").RequestParams;
|
|
281
293
|
};
|
|
282
|
-
|
|
294
|
+
requestUrl: {
|
|
283
295
|
type?: undefined;
|
|
284
296
|
default?: undefined;
|
|
285
297
|
} | {
|
|
@@ -290,7 +302,7 @@ export declare const textComponentProps: {
|
|
|
290
302
|
[key: string]: any;
|
|
291
303
|
} | import("../../_utils/props").RequestParams;
|
|
292
304
|
};
|
|
293
|
-
|
|
305
|
+
requestMethod: {
|
|
294
306
|
type?: undefined;
|
|
295
307
|
default?: undefined;
|
|
296
308
|
} | {
|
|
@@ -301,7 +313,7 @@ export declare const textComponentProps: {
|
|
|
301
313
|
[key: string]: any;
|
|
302
314
|
} | import("../../_utils/props").RequestParams;
|
|
303
315
|
};
|
|
304
|
-
|
|
316
|
+
requestHeaders: {
|
|
305
317
|
type?: undefined;
|
|
306
318
|
default?: undefined;
|
|
307
319
|
} | {
|
|
@@ -312,7 +324,7 @@ export declare const textComponentProps: {
|
|
|
312
324
|
[key: string]: any;
|
|
313
325
|
} | import("../../_utils/props").RequestParams;
|
|
314
326
|
};
|
|
315
|
-
|
|
327
|
+
isOpenRequestTimer: {
|
|
316
328
|
type?: undefined;
|
|
317
329
|
default?: undefined;
|
|
318
330
|
} | {
|
|
@@ -323,7 +335,7 @@ export declare const textComponentProps: {
|
|
|
323
335
|
[key: string]: any;
|
|
324
336
|
} | import("../../_utils/props").RequestParams;
|
|
325
337
|
};
|
|
326
|
-
|
|
338
|
+
requestInterval: {
|
|
327
339
|
type?: undefined;
|
|
328
340
|
default?: undefined;
|
|
329
341
|
} | {
|
|
@@ -334,7 +346,7 @@ export declare const textComponentProps: {
|
|
|
334
346
|
[key: string]: any;
|
|
335
347
|
} | import("../../_utils/props").RequestParams;
|
|
336
348
|
};
|
|
337
|
-
|
|
349
|
+
requestParams: {
|
|
338
350
|
type?: undefined;
|
|
339
351
|
default?: undefined;
|
|
340
352
|
} | {
|
|
@@ -345,7 +357,7 @@ export declare const textComponentProps: {
|
|
|
345
357
|
[key: string]: any;
|
|
346
358
|
} | import("../../_utils/props").RequestParams;
|
|
347
359
|
};
|
|
348
|
-
|
|
360
|
+
requestSort: {
|
|
349
361
|
type?: undefined;
|
|
350
362
|
default?: undefined;
|
|
351
363
|
} | {
|
|
@@ -356,7 +368,7 @@ export declare const textComponentProps: {
|
|
|
356
368
|
[key: string]: any;
|
|
357
369
|
} | import("../../_utils/props").RequestParams;
|
|
358
370
|
};
|
|
359
|
-
|
|
371
|
+
dataType: {
|
|
360
372
|
type?: undefined;
|
|
361
373
|
default?: undefined;
|
|
362
374
|
} | {
|
|
@@ -188,15 +188,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
188
188
|
[key: string]: any;
|
|
189
189
|
} | import("../../_utils/props").RequestParams;
|
|
190
190
|
};
|
|
191
|
-
isRequestData: {
|
|
192
|
-
type?: undefined;
|
|
193
|
-
default?: undefined;
|
|
194
|
-
} | {
|
|
195
|
-
type: any;
|
|
196
|
-
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
197
|
-
[key: string]: any;
|
|
198
|
-
} | import("../../_utils/props").RequestParams;
|
|
199
|
-
};
|
|
200
191
|
events: {
|
|
201
192
|
type?: undefined;
|
|
202
193
|
default?: undefined;
|
|
@@ -269,6 +260,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
269
260
|
[key: string]: any;
|
|
270
261
|
} | import("../../_utils/props").RequestParams;
|
|
271
262
|
};
|
|
263
|
+
dataType: {
|
|
264
|
+
type?: undefined;
|
|
265
|
+
default?: undefined;
|
|
266
|
+
} | {
|
|
267
|
+
type: any;
|
|
268
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
269
|
+
[key: string]: any;
|
|
270
|
+
} | import("../../_utils/props").RequestParams;
|
|
271
|
+
};
|
|
272
272
|
}, {
|
|
273
273
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
274
274
|
time: import("vue").Ref<string>;
|
|
@@ -294,7 +294,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
294
294
|
rotate?: unknown;
|
|
295
295
|
isShow?: unknown;
|
|
296
296
|
isRender?: unknown;
|
|
297
|
-
isRequestData?: unknown;
|
|
298
297
|
events?: unknown;
|
|
299
298
|
requestUrl?: unknown;
|
|
300
299
|
requestMethod?: unknown;
|
|
@@ -303,6 +302,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
303
302
|
requestInterval?: unknown;
|
|
304
303
|
requestParams?: unknown;
|
|
305
304
|
requestSort?: unknown;
|
|
305
|
+
dataType?: unknown;
|
|
306
306
|
} & {} & {
|
|
307
307
|
type?: string | number | boolean | {
|
|
308
308
|
[key: string]: any;
|
|
@@ -367,9 +367,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
367
367
|
isRender?: string | number | boolean | {
|
|
368
368
|
[key: string]: any;
|
|
369
369
|
};
|
|
370
|
-
isRequestData?: string | number | boolean | {
|
|
371
|
-
[key: string]: any;
|
|
372
|
-
};
|
|
373
370
|
events?: string | number | boolean | {
|
|
374
371
|
[key: string]: any;
|
|
375
372
|
};
|
|
@@ -394,5 +391,8 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
394
391
|
requestSort?: string | number | boolean | {
|
|
395
392
|
[key: string]: any;
|
|
396
393
|
};
|
|
394
|
+
dataType?: string | number | boolean | {
|
|
395
|
+
[key: string]: any;
|
|
396
|
+
};
|
|
397
397
|
}>, {}>;
|
|
398
398
|
export default _default;
|
|
@@ -200,15 +200,6 @@ export declare const timeDisplayComponentProps: {
|
|
|
200
200
|
[key: string]: any;
|
|
201
201
|
} | import("../../_utils/props").RequestParams;
|
|
202
202
|
};
|
|
203
|
-
isRequestData: {
|
|
204
|
-
type?: undefined;
|
|
205
|
-
default?: undefined;
|
|
206
|
-
} | {
|
|
207
|
-
type: any;
|
|
208
|
-
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
209
|
-
[key: string]: any;
|
|
210
|
-
} | import("../../_utils/props").RequestParams;
|
|
211
|
-
};
|
|
212
203
|
events: {
|
|
213
204
|
type?: undefined;
|
|
214
205
|
default?: undefined;
|
|
@@ -281,4 +272,13 @@ export declare const timeDisplayComponentProps: {
|
|
|
281
272
|
[key: string]: any;
|
|
282
273
|
} | import("../../_utils/props").RequestParams;
|
|
283
274
|
};
|
|
275
|
+
dataType: {
|
|
276
|
+
type?: undefined;
|
|
277
|
+
default?: undefined;
|
|
278
|
+
} | {
|
|
279
|
+
type: any;
|
|
280
|
+
default: string | number | boolean | import("../../_utils/props").Events | {
|
|
281
|
+
[key: string]: any;
|
|
282
|
+
} | import("../../_utils/props").RequestParams;
|
|
283
|
+
};
|
|
284
284
|
};
|