@ecan-bi/datav 1.1.35 → 1.1.37
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 +1528 -1487
- 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/control/date-picker/DatePicker.vue.d.ts +74 -55
- package/types/control/date-picker/index.d.ts +73 -55
- package/types/control/date-picker/props.d.ts +43 -27
- package/types/control/range-picker/RangePicker.vue.d.ts +79 -60
- package/types/control/range-picker/index.d.ts +78 -60
- package/types/control/range-picker/props.d.ts +40 -29
- package/types/graph/bar/Bar.vue.d.ts +128 -66
- package/types/graph/bar/index.d.ts +128 -66
- package/types/graph/bar/props.d.ts +66 -36
- package/types/graph/combo-graph/ComboGraph.vue.d.ts +30 -0
- package/types/graph/combo-graph/index.d.ts +30 -0
- package/types/graph/combo-graph/props.d.ts +16 -0
- package/types/graph/line/Line.vue.d.ts +2127 -271
- package/types/graph/line/index.d.ts +2127 -271
- package/types/graph/line/props.d.ts +1106 -122
- package/types/graph/pie/Pie.vue.d.ts +15 -0
- package/types/graph/pie/index.d.ts +15 -0
- package/types/graph/pie/props.d.ts +8 -0
- package/types/utils/util.d.ts +10 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import dayjs from 'dayjs';
|
|
2
|
+
import { DateOperate } from '../date-picker/props';
|
|
2
3
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
4
|
picker: {
|
|
4
5
|
type?: undefined;
|
|
@@ -7,7 +8,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7
8
|
type: any;
|
|
8
9
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
9
10
|
[key: string]: any;
|
|
10
|
-
} | import("../../utils/props").RequestParams;
|
|
11
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
11
12
|
};
|
|
12
13
|
format: {
|
|
13
14
|
type?: undefined;
|
|
@@ -16,7 +17,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
16
17
|
type: any;
|
|
17
18
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
18
19
|
[key: string]: any;
|
|
19
|
-
} | import("../../utils/props").RequestParams;
|
|
20
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
20
21
|
};
|
|
21
22
|
startTime: {
|
|
22
23
|
type?: undefined;
|
|
@@ -25,7 +26,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
25
26
|
type: any;
|
|
26
27
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
27
28
|
[key: string]: any;
|
|
28
|
-
} | import("../../utils/props").RequestParams;
|
|
29
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
29
30
|
};
|
|
30
31
|
endTime: {
|
|
31
32
|
type?: undefined;
|
|
@@ -34,7 +35,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
34
35
|
type: any;
|
|
35
36
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
36
37
|
[key: string]: any;
|
|
37
|
-
} | import("../../utils/props").RequestParams;
|
|
38
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
38
39
|
};
|
|
39
40
|
useCurrentTime: {
|
|
40
41
|
type?: undefined;
|
|
@@ -43,7 +44,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
43
44
|
type: any;
|
|
44
45
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
45
46
|
[key: string]: any;
|
|
46
|
-
} | import("../../utils/props").RequestParams;
|
|
47
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
47
48
|
};
|
|
48
49
|
interval: {
|
|
49
50
|
type?: undefined;
|
|
@@ -52,7 +53,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
52
53
|
type: any;
|
|
53
54
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
54
55
|
[key: string]: any;
|
|
55
|
-
} | import("../../utils/props").RequestParams;
|
|
56
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
56
57
|
};
|
|
57
58
|
intervalUnit: {
|
|
58
59
|
type?: undefined;
|
|
@@ -61,7 +62,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
61
62
|
type: any;
|
|
62
63
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
63
64
|
[key: string]: any;
|
|
64
|
-
} | import("../../utils/props").RequestParams;
|
|
65
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
66
|
+
};
|
|
67
|
+
operate: {
|
|
68
|
+
type?: undefined;
|
|
69
|
+
default?: undefined;
|
|
70
|
+
} | {
|
|
71
|
+
type: any;
|
|
72
|
+
default: string | number | boolean | import("../../utils/props").Events | {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
65
75
|
};
|
|
66
76
|
id: {
|
|
67
77
|
type?: undefined;
|
|
@@ -70,7 +80,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
70
80
|
type: any;
|
|
71
81
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
72
82
|
[key: string]: any;
|
|
73
|
-
} | import("../../utils/props").RequestParams;
|
|
83
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
74
84
|
};
|
|
75
85
|
name: {
|
|
76
86
|
type?: undefined;
|
|
@@ -79,7 +89,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
79
89
|
type: any;
|
|
80
90
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
81
91
|
[key: string]: any;
|
|
82
|
-
} | import("../../utils/props").RequestParams;
|
|
92
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
83
93
|
};
|
|
84
94
|
keyName: {
|
|
85
95
|
type?: undefined;
|
|
@@ -88,7 +98,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
88
98
|
type: any;
|
|
89
99
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
90
100
|
[key: string]: any;
|
|
91
|
-
} | import("../../utils/props").RequestParams;
|
|
101
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
92
102
|
};
|
|
93
103
|
type: {
|
|
94
104
|
type?: undefined;
|
|
@@ -97,7 +107,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
97
107
|
type: any;
|
|
98
108
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
99
109
|
[key: string]: any;
|
|
100
|
-
} | import("../../utils/props").RequestParams;
|
|
110
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
101
111
|
};
|
|
102
112
|
width: {
|
|
103
113
|
type?: undefined;
|
|
@@ -106,7 +116,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
106
116
|
type: any;
|
|
107
117
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
108
118
|
[key: string]: any;
|
|
109
|
-
} | import("../../utils/props").RequestParams;
|
|
119
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
110
120
|
};
|
|
111
121
|
height: {
|
|
112
122
|
type?: undefined;
|
|
@@ -115,7 +125,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
115
125
|
type: any;
|
|
116
126
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
117
127
|
[key: string]: any;
|
|
118
|
-
} | import("../../utils/props").RequestParams;
|
|
128
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
119
129
|
};
|
|
120
130
|
position: {
|
|
121
131
|
type?: undefined;
|
|
@@ -124,7 +134,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
124
134
|
type: any;
|
|
125
135
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
126
136
|
[key: string]: any;
|
|
127
|
-
} | import("../../utils/props").RequestParams;
|
|
137
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
128
138
|
};
|
|
129
139
|
top: {
|
|
130
140
|
type?: undefined;
|
|
@@ -133,7 +143,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
133
143
|
type: any;
|
|
134
144
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
135
145
|
[key: string]: any;
|
|
136
|
-
} | import("../../utils/props").RequestParams;
|
|
146
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
137
147
|
};
|
|
138
148
|
left: {
|
|
139
149
|
type?: undefined;
|
|
@@ -142,7 +152,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
142
152
|
type: any;
|
|
143
153
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
144
154
|
[key: string]: any;
|
|
145
|
-
} | import("../../utils/props").RequestParams;
|
|
155
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
146
156
|
};
|
|
147
157
|
zIndex: {
|
|
148
158
|
type?: undefined;
|
|
@@ -151,7 +161,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
151
161
|
type: any;
|
|
152
162
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
153
163
|
[key: string]: any;
|
|
154
|
-
} | import("../../utils/props").RequestParams;
|
|
164
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
155
165
|
};
|
|
156
166
|
rotate: {
|
|
157
167
|
type?: undefined;
|
|
@@ -160,7 +170,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
160
170
|
type: any;
|
|
161
171
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
162
172
|
[key: string]: any;
|
|
163
|
-
} | import("../../utils/props").RequestParams;
|
|
173
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
164
174
|
};
|
|
165
175
|
isShow: {
|
|
166
176
|
type?: undefined;
|
|
@@ -169,7 +179,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
169
179
|
type: any;
|
|
170
180
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
171
181
|
[key: string]: any;
|
|
172
|
-
} | import("../../utils/props").RequestParams;
|
|
182
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
173
183
|
};
|
|
174
184
|
isRender: {
|
|
175
185
|
type?: undefined;
|
|
@@ -178,7 +188,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
178
188
|
type: any;
|
|
179
189
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
180
190
|
[key: string]: any;
|
|
181
|
-
} | import("../../utils/props").RequestParams;
|
|
191
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
182
192
|
};
|
|
183
193
|
events: {
|
|
184
194
|
type?: undefined;
|
|
@@ -187,7 +197,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
187
197
|
type: any;
|
|
188
198
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
189
199
|
[key: string]: any;
|
|
190
|
-
} | import("../../utils/props").RequestParams;
|
|
200
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
191
201
|
};
|
|
192
202
|
requestUrl: {
|
|
193
203
|
type?: undefined;
|
|
@@ -196,7 +206,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
196
206
|
type: any;
|
|
197
207
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
198
208
|
[key: string]: any;
|
|
199
|
-
} | import("../../utils/props").RequestParams;
|
|
209
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
200
210
|
};
|
|
201
211
|
requestMethod: {
|
|
202
212
|
type?: undefined;
|
|
@@ -205,7 +215,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
205
215
|
type: any;
|
|
206
216
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
207
217
|
[key: string]: any;
|
|
208
|
-
} | import("../../utils/props").RequestParams;
|
|
218
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
209
219
|
};
|
|
210
220
|
requestHeaders: {
|
|
211
221
|
type?: undefined;
|
|
@@ -214,7 +224,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
214
224
|
type: any;
|
|
215
225
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
216
226
|
[key: string]: any;
|
|
217
|
-
} | import("../../utils/props").RequestParams;
|
|
227
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
218
228
|
};
|
|
219
229
|
isOpenRequestTimer: {
|
|
220
230
|
type?: undefined;
|
|
@@ -223,7 +233,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
223
233
|
type: any;
|
|
224
234
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
225
235
|
[key: string]: any;
|
|
226
|
-
} | import("../../utils/props").RequestParams;
|
|
236
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
227
237
|
};
|
|
228
238
|
requestInterval: {
|
|
229
239
|
type?: undefined;
|
|
@@ -232,7 +242,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
232
242
|
type: any;
|
|
233
243
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
234
244
|
[key: string]: any;
|
|
235
|
-
} | import("../../utils/props").RequestParams;
|
|
245
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
236
246
|
};
|
|
237
247
|
requestParams: {
|
|
238
248
|
type?: undefined;
|
|
@@ -241,7 +251,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
241
251
|
type: any;
|
|
242
252
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
243
253
|
[key: string]: any;
|
|
244
|
-
} | import("../../utils/props").RequestParams;
|
|
254
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
245
255
|
};
|
|
246
256
|
requestSort: {
|
|
247
257
|
type?: undefined;
|
|
@@ -250,7 +260,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
250
260
|
type: any;
|
|
251
261
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
252
262
|
[key: string]: any;
|
|
253
|
-
} | import("../../utils/props").RequestParams;
|
|
263
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
254
264
|
};
|
|
255
265
|
dataType: {
|
|
256
266
|
type?: undefined;
|
|
@@ -259,7 +269,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
259
269
|
type: any;
|
|
260
270
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
261
271
|
[key: string]: any;
|
|
262
|
-
} | import("../../utils/props").RequestParams;
|
|
272
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
263
273
|
};
|
|
264
274
|
}, {
|
|
265
275
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
@@ -308,7 +318,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
308
318
|
startOf: (unit: dayjs.OpUnitType) => dayjs.Dayjs;
|
|
309
319
|
endOf: (unit: dayjs.OpUnitType) => dayjs.Dayjs;
|
|
310
320
|
format: (template?: string) => string;
|
|
311
|
-
diff: (date?: string | number | Date | dayjs.Dayjs, unit?: "s" | "date" | "D" | "M" | "y" | "week" | "month" | "quarter" | "year" | "
|
|
321
|
+
diff: (date?: string | number | Date | dayjs.Dayjs, unit?: "s" | "date" | "D" | "M" | "y" | "week" | "month" | "quarter" | "year" | "millisecond" | "second" | "minute" | "hour" | "day" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "h" | "m" | "ms" | "weeks" | "w" | "quarters" | "Q", float?: boolean) => number;
|
|
312
322
|
valueOf: () => number;
|
|
313
323
|
unix: () => number;
|
|
314
324
|
daysInMonth: () => number;
|
|
@@ -366,7 +376,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
366
376
|
startOf: (unit: dayjs.OpUnitType) => dayjs.Dayjs;
|
|
367
377
|
endOf: (unit: dayjs.OpUnitType) => dayjs.Dayjs;
|
|
368
378
|
format: (template?: string) => string;
|
|
369
|
-
diff: (date?: string | number | Date | dayjs.Dayjs, unit?: "s" | "date" | "D" | "M" | "y" | "week" | "month" | "quarter" | "year" | "
|
|
379
|
+
diff: (date?: string | number | Date | dayjs.Dayjs, unit?: "s" | "date" | "D" | "M" | "y" | "week" | "month" | "quarter" | "year" | "millisecond" | "second" | "minute" | "hour" | "day" | "milliseconds" | "seconds" | "minutes" | "hours" | "days" | "months" | "years" | "dates" | "d" | "h" | "m" | "ms" | "weeks" | "w" | "quarters" | "Q", float?: boolean) => number;
|
|
370
380
|
valueOf: () => number;
|
|
371
381
|
unix: () => number;
|
|
372
382
|
daysInMonth: () => number;
|
|
@@ -391,7 +401,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
391
401
|
type: any;
|
|
392
402
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
393
403
|
[key: string]: any;
|
|
394
|
-
} | import("../../utils/props").RequestParams;
|
|
404
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
395
405
|
};
|
|
396
406
|
format: {
|
|
397
407
|
type?: undefined;
|
|
@@ -400,7 +410,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
400
410
|
type: any;
|
|
401
411
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
402
412
|
[key: string]: any;
|
|
403
|
-
} | import("../../utils/props").RequestParams;
|
|
413
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
404
414
|
};
|
|
405
415
|
startTime: {
|
|
406
416
|
type?: undefined;
|
|
@@ -409,7 +419,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
409
419
|
type: any;
|
|
410
420
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
411
421
|
[key: string]: any;
|
|
412
|
-
} | import("../../utils/props").RequestParams;
|
|
422
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
413
423
|
};
|
|
414
424
|
endTime: {
|
|
415
425
|
type?: undefined;
|
|
@@ -418,7 +428,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
418
428
|
type: any;
|
|
419
429
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
420
430
|
[key: string]: any;
|
|
421
|
-
} | import("../../utils/props").RequestParams;
|
|
431
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
422
432
|
};
|
|
423
433
|
useCurrentTime: {
|
|
424
434
|
type?: undefined;
|
|
@@ -427,7 +437,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
427
437
|
type: any;
|
|
428
438
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
429
439
|
[key: string]: any;
|
|
430
|
-
} | import("../../utils/props").RequestParams;
|
|
440
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
431
441
|
};
|
|
432
442
|
interval: {
|
|
433
443
|
type?: undefined;
|
|
@@ -436,7 +446,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
436
446
|
type: any;
|
|
437
447
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
438
448
|
[key: string]: any;
|
|
439
|
-
} | import("../../utils/props").RequestParams;
|
|
449
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
440
450
|
};
|
|
441
451
|
intervalUnit: {
|
|
442
452
|
type?: undefined;
|
|
@@ -445,7 +455,16 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
445
455
|
type: any;
|
|
446
456
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
447
457
|
[key: string]: any;
|
|
448
|
-
} | import("../../utils/props").RequestParams;
|
|
458
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
459
|
+
};
|
|
460
|
+
operate: {
|
|
461
|
+
type?: undefined;
|
|
462
|
+
default?: undefined;
|
|
463
|
+
} | {
|
|
464
|
+
type: any;
|
|
465
|
+
default: string | number | boolean | import("../../utils/props").Events | {
|
|
466
|
+
[key: string]: any;
|
|
467
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
449
468
|
};
|
|
450
469
|
id: {
|
|
451
470
|
type?: undefined;
|
|
@@ -454,7 +473,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
454
473
|
type: any;
|
|
455
474
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
456
475
|
[key: string]: any;
|
|
457
|
-
} | import("../../utils/props").RequestParams;
|
|
476
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
458
477
|
};
|
|
459
478
|
name: {
|
|
460
479
|
type?: undefined;
|
|
@@ -463,7 +482,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
463
482
|
type: any;
|
|
464
483
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
465
484
|
[key: string]: any;
|
|
466
|
-
} | import("../../utils/props").RequestParams;
|
|
485
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
467
486
|
};
|
|
468
487
|
keyName: {
|
|
469
488
|
type?: undefined;
|
|
@@ -472,7 +491,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
472
491
|
type: any;
|
|
473
492
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
474
493
|
[key: string]: any;
|
|
475
|
-
} | import("../../utils/props").RequestParams;
|
|
494
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
476
495
|
};
|
|
477
496
|
type: {
|
|
478
497
|
type?: undefined;
|
|
@@ -481,7 +500,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
481
500
|
type: any;
|
|
482
501
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
483
502
|
[key: string]: any;
|
|
484
|
-
} | import("../../utils/props").RequestParams;
|
|
503
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
485
504
|
};
|
|
486
505
|
width: {
|
|
487
506
|
type?: undefined;
|
|
@@ -490,7 +509,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
490
509
|
type: any;
|
|
491
510
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
492
511
|
[key: string]: any;
|
|
493
|
-
} | import("../../utils/props").RequestParams;
|
|
512
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
494
513
|
};
|
|
495
514
|
height: {
|
|
496
515
|
type?: undefined;
|
|
@@ -499,7 +518,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
499
518
|
type: any;
|
|
500
519
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
501
520
|
[key: string]: any;
|
|
502
|
-
} | import("../../utils/props").RequestParams;
|
|
521
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
503
522
|
};
|
|
504
523
|
position: {
|
|
505
524
|
type?: undefined;
|
|
@@ -508,7 +527,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
508
527
|
type: any;
|
|
509
528
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
510
529
|
[key: string]: any;
|
|
511
|
-
} | import("../../utils/props").RequestParams;
|
|
530
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
512
531
|
};
|
|
513
532
|
top: {
|
|
514
533
|
type?: undefined;
|
|
@@ -517,7 +536,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
517
536
|
type: any;
|
|
518
537
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
519
538
|
[key: string]: any;
|
|
520
|
-
} | import("../../utils/props").RequestParams;
|
|
539
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
521
540
|
};
|
|
522
541
|
left: {
|
|
523
542
|
type?: undefined;
|
|
@@ -526,7 +545,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
526
545
|
type: any;
|
|
527
546
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
528
547
|
[key: string]: any;
|
|
529
|
-
} | import("../../utils/props").RequestParams;
|
|
548
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
530
549
|
};
|
|
531
550
|
zIndex: {
|
|
532
551
|
type?: undefined;
|
|
@@ -535,7 +554,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
535
554
|
type: any;
|
|
536
555
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
537
556
|
[key: string]: any;
|
|
538
|
-
} | import("../../utils/props").RequestParams;
|
|
557
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
539
558
|
};
|
|
540
559
|
rotate: {
|
|
541
560
|
type?: undefined;
|
|
@@ -544,7 +563,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
544
563
|
type: any;
|
|
545
564
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
546
565
|
[key: string]: any;
|
|
547
|
-
} | import("../../utils/props").RequestParams;
|
|
566
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
548
567
|
};
|
|
549
568
|
isShow: {
|
|
550
569
|
type?: undefined;
|
|
@@ -553,7 +572,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
553
572
|
type: any;
|
|
554
573
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
555
574
|
[key: string]: any;
|
|
556
|
-
} | import("../../utils/props").RequestParams;
|
|
575
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
557
576
|
};
|
|
558
577
|
isRender: {
|
|
559
578
|
type?: undefined;
|
|
@@ -562,7 +581,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
562
581
|
type: any;
|
|
563
582
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
564
583
|
[key: string]: any;
|
|
565
|
-
} | import("../../utils/props").RequestParams;
|
|
584
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
566
585
|
};
|
|
567
586
|
events: {
|
|
568
587
|
type?: undefined;
|
|
@@ -571,7 +590,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
571
590
|
type: any;
|
|
572
591
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
573
592
|
[key: string]: any;
|
|
574
|
-
} | import("../../utils/props").RequestParams;
|
|
593
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
575
594
|
};
|
|
576
595
|
requestUrl: {
|
|
577
596
|
type?: undefined;
|
|
@@ -580,7 +599,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
580
599
|
type: any;
|
|
581
600
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
582
601
|
[key: string]: any;
|
|
583
|
-
} | import("../../utils/props").RequestParams;
|
|
602
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
584
603
|
};
|
|
585
604
|
requestMethod: {
|
|
586
605
|
type?: undefined;
|
|
@@ -589,7 +608,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
589
608
|
type: any;
|
|
590
609
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
591
610
|
[key: string]: any;
|
|
592
|
-
} | import("../../utils/props").RequestParams;
|
|
611
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
593
612
|
};
|
|
594
613
|
requestHeaders: {
|
|
595
614
|
type?: undefined;
|
|
@@ -598,7 +617,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
598
617
|
type: any;
|
|
599
618
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
600
619
|
[key: string]: any;
|
|
601
|
-
} | import("../../utils/props").RequestParams;
|
|
620
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
602
621
|
};
|
|
603
622
|
isOpenRequestTimer: {
|
|
604
623
|
type?: undefined;
|
|
@@ -607,7 +626,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
607
626
|
type: any;
|
|
608
627
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
609
628
|
[key: string]: any;
|
|
610
|
-
} | import("../../utils/props").RequestParams;
|
|
629
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
611
630
|
};
|
|
612
631
|
requestInterval: {
|
|
613
632
|
type?: undefined;
|
|
@@ -616,7 +635,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
616
635
|
type: any;
|
|
617
636
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
618
637
|
[key: string]: any;
|
|
619
|
-
} | import("../../utils/props").RequestParams;
|
|
638
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
620
639
|
};
|
|
621
640
|
requestParams: {
|
|
622
641
|
type?: undefined;
|
|
@@ -625,7 +644,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
625
644
|
type: any;
|
|
626
645
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
627
646
|
[key: string]: any;
|
|
628
|
-
} | import("../../utils/props").RequestParams;
|
|
647
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
629
648
|
};
|
|
630
649
|
requestSort: {
|
|
631
650
|
type?: undefined;
|
|
@@ -634,7 +653,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
634
653
|
type: any;
|
|
635
654
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
636
655
|
[key: string]: any;
|
|
637
|
-
} | import("../../utils/props").RequestParams;
|
|
656
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
638
657
|
};
|
|
639
658
|
dataType: {
|
|
640
659
|
type?: undefined;
|
|
@@ -643,7 +662,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
643
662
|
type: any;
|
|
644
663
|
default: string | number | boolean | import("../../utils/props").Events | {
|
|
645
664
|
[key: string]: any;
|
|
646
|
-
} | import("../../utils/props").RequestParams;
|
|
665
|
+
} | import("../../utils/props").RequestParams | DateOperate;
|
|
647
666
|
};
|
|
648
667
|
}>>, {}>;
|
|
649
668
|
export default _sfc_main;
|