@ecan-bi/datav 1.4.80 → 1.4.82
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 +4959 -4818
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +35 -35
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/types/container/border/Border.vue.d.ts +8 -0
- package/types/container/border/index.d.ts +8 -0
- package/types/container/border/props.d.ts +5 -0
- package/types/control/index.d.ts +1 -0
- package/types/control/nav-tab/NavTab.vue.d.ts +354 -0
- package/types/control/nav-tab/index.d.ts +355 -0
- package/types/control/nav-tab/props.d.ts +195 -0
- package/types/setting/page-config/PageConfig.vue.d.ts +18 -0
- package/types/setting/page-config/index.d.ts +18 -0
- package/types/setting/provider-config/ProviderConfig.vue.d.ts +9 -0
- package/types/setting/provider-config/index.d.ts +9 -0
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
export declare const EcanNavTab: import("../../utils/withInstall").SFCWithInstall<import("vue").DefineComponent<{
|
|
2
|
+
data: {
|
|
3
|
+
type?: import("vue").PropType<{
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
}[]>;
|
|
6
|
+
default?: {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
}[];
|
|
9
|
+
};
|
|
10
|
+
tabFontSize: {
|
|
11
|
+
type?: import("vue").PropType<string>;
|
|
12
|
+
default?: string;
|
|
13
|
+
};
|
|
14
|
+
tabFontWeight: {
|
|
15
|
+
type?: import("vue").PropType<number>;
|
|
16
|
+
default?: number;
|
|
17
|
+
};
|
|
18
|
+
tabColor: {
|
|
19
|
+
type?: import("vue").PropType<string>;
|
|
20
|
+
default?: string;
|
|
21
|
+
};
|
|
22
|
+
activeTabColor: {
|
|
23
|
+
type?: import("vue").PropType<string>;
|
|
24
|
+
default?: string;
|
|
25
|
+
};
|
|
26
|
+
activeKey: {
|
|
27
|
+
type?: import("vue").PropType<number>;
|
|
28
|
+
default?: number;
|
|
29
|
+
};
|
|
30
|
+
isShrink: {
|
|
31
|
+
type?: import("vue").PropType<boolean>;
|
|
32
|
+
default?: boolean;
|
|
33
|
+
};
|
|
34
|
+
tabLineWidth: {
|
|
35
|
+
type?: import("vue").PropType<string>;
|
|
36
|
+
default?: string;
|
|
37
|
+
};
|
|
38
|
+
tabLineHeight: {
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
41
|
+
};
|
|
42
|
+
backgroundColor: {
|
|
43
|
+
type?: import("vue").PropType<string>;
|
|
44
|
+
default?: string;
|
|
45
|
+
};
|
|
46
|
+
isScrollspy: {
|
|
47
|
+
type?: import("vue").PropType<boolean>;
|
|
48
|
+
default?: boolean;
|
|
49
|
+
};
|
|
50
|
+
scrollspyConfig: {
|
|
51
|
+
type?: import("vue").PropType<{
|
|
52
|
+
[key: string]: any;
|
|
53
|
+
}[]>;
|
|
54
|
+
default?: {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
}[];
|
|
57
|
+
};
|
|
58
|
+
id: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
62
|
+
name: {
|
|
63
|
+
type?: import("vue").PropType<string>;
|
|
64
|
+
default?: string;
|
|
65
|
+
};
|
|
66
|
+
keyName: {
|
|
67
|
+
type?: import("vue").PropType<string>;
|
|
68
|
+
default?: string;
|
|
69
|
+
};
|
|
70
|
+
type: {
|
|
71
|
+
type?: import("vue").PropType<string>;
|
|
72
|
+
default?: string;
|
|
73
|
+
};
|
|
74
|
+
width: {
|
|
75
|
+
type?: import("vue").PropType<string>;
|
|
76
|
+
default?: string;
|
|
77
|
+
};
|
|
78
|
+
height: {
|
|
79
|
+
type?: import("vue").PropType<string>;
|
|
80
|
+
default?: string;
|
|
81
|
+
};
|
|
82
|
+
position: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
86
|
+
top: {
|
|
87
|
+
type?: import("vue").PropType<string>;
|
|
88
|
+
default?: string;
|
|
89
|
+
};
|
|
90
|
+
left: {
|
|
91
|
+
type?: import("vue").PropType<string>;
|
|
92
|
+
default?: string;
|
|
93
|
+
};
|
|
94
|
+
zIndex: {
|
|
95
|
+
type?: import("vue").PropType<number>;
|
|
96
|
+
default?: number;
|
|
97
|
+
};
|
|
98
|
+
rotate: {
|
|
99
|
+
type?: import("vue").PropType<string>;
|
|
100
|
+
default?: string;
|
|
101
|
+
};
|
|
102
|
+
isShow: {
|
|
103
|
+
type?: import("vue").PropType<boolean>;
|
|
104
|
+
default?: boolean;
|
|
105
|
+
};
|
|
106
|
+
isRender: {
|
|
107
|
+
type?: import("vue").PropType<boolean>;
|
|
108
|
+
default?: boolean;
|
|
109
|
+
};
|
|
110
|
+
events: {
|
|
111
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
112
|
+
default?: import("../../utils/props").Events;
|
|
113
|
+
};
|
|
114
|
+
requestUrl: {
|
|
115
|
+
type?: import("vue").PropType<string>;
|
|
116
|
+
default?: string;
|
|
117
|
+
};
|
|
118
|
+
requestMethod: {
|
|
119
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
120
|
+
default?: import("../../utils/props").RequestMethod;
|
|
121
|
+
};
|
|
122
|
+
requestHeaders: {
|
|
123
|
+
type?: import("vue").PropType<string>;
|
|
124
|
+
default?: string;
|
|
125
|
+
};
|
|
126
|
+
isOpenRequestTimer: {
|
|
127
|
+
type?: import("vue").PropType<boolean>;
|
|
128
|
+
default?: boolean;
|
|
129
|
+
};
|
|
130
|
+
isViewRedrawing: {
|
|
131
|
+
type?: import("vue").PropType<boolean>;
|
|
132
|
+
default?: boolean;
|
|
133
|
+
};
|
|
134
|
+
requestInterval: {
|
|
135
|
+
type?: import("vue").PropType<number>;
|
|
136
|
+
default?: number;
|
|
137
|
+
};
|
|
138
|
+
requestParams: {
|
|
139
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
140
|
+
default?: import("../../utils/props").RequestParams;
|
|
141
|
+
};
|
|
142
|
+
requestSort: {
|
|
143
|
+
type?: import("vue").PropType<number>;
|
|
144
|
+
default?: number;
|
|
145
|
+
};
|
|
146
|
+
dataType: {
|
|
147
|
+
type?: import("vue").PropType<"indicator" | "request" | "static">;
|
|
148
|
+
default?: "indicator" | "request" | "static";
|
|
149
|
+
};
|
|
150
|
+
scale?: {
|
|
151
|
+
type?: import("vue").PropType<number>;
|
|
152
|
+
default?: number;
|
|
153
|
+
};
|
|
154
|
+
requestParamsMode: {
|
|
155
|
+
type?: import("vue").PropType<"2" | "1">;
|
|
156
|
+
default?: "2" | "1";
|
|
157
|
+
};
|
|
158
|
+
customRequestParams: {
|
|
159
|
+
type?: import("vue").PropType<string>;
|
|
160
|
+
default?: string;
|
|
161
|
+
};
|
|
162
|
+
dataSetParam?: {
|
|
163
|
+
type?: import("vue").PropType<any>;
|
|
164
|
+
default?: any;
|
|
165
|
+
};
|
|
166
|
+
requestType?: {
|
|
167
|
+
type?: import("vue").PropType<any>;
|
|
168
|
+
default?: any;
|
|
169
|
+
};
|
|
170
|
+
componentDoc?: {
|
|
171
|
+
type?: import("vue").PropType<null>;
|
|
172
|
+
default?: null;
|
|
173
|
+
};
|
|
174
|
+
}, {
|
|
175
|
+
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
176
|
+
active: import("vue").Ref<number>;
|
|
177
|
+
pageMode: string;
|
|
178
|
+
renderKey: import("vue").Ref<string>;
|
|
179
|
+
tabChange: () => void;
|
|
180
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
181
|
+
data: {
|
|
182
|
+
type?: import("vue").PropType<{
|
|
183
|
+
[key: string]: any;
|
|
184
|
+
}[]>;
|
|
185
|
+
default?: {
|
|
186
|
+
[key: string]: any;
|
|
187
|
+
}[];
|
|
188
|
+
};
|
|
189
|
+
tabFontSize: {
|
|
190
|
+
type?: import("vue").PropType<string>;
|
|
191
|
+
default?: string;
|
|
192
|
+
};
|
|
193
|
+
tabFontWeight: {
|
|
194
|
+
type?: import("vue").PropType<number>;
|
|
195
|
+
default?: number;
|
|
196
|
+
};
|
|
197
|
+
tabColor: {
|
|
198
|
+
type?: import("vue").PropType<string>;
|
|
199
|
+
default?: string;
|
|
200
|
+
};
|
|
201
|
+
activeTabColor: {
|
|
202
|
+
type?: import("vue").PropType<string>;
|
|
203
|
+
default?: string;
|
|
204
|
+
};
|
|
205
|
+
activeKey: {
|
|
206
|
+
type?: import("vue").PropType<number>;
|
|
207
|
+
default?: number;
|
|
208
|
+
};
|
|
209
|
+
isShrink: {
|
|
210
|
+
type?: import("vue").PropType<boolean>;
|
|
211
|
+
default?: boolean;
|
|
212
|
+
};
|
|
213
|
+
tabLineWidth: {
|
|
214
|
+
type?: import("vue").PropType<string>;
|
|
215
|
+
default?: string;
|
|
216
|
+
};
|
|
217
|
+
tabLineHeight: {
|
|
218
|
+
type?: import("vue").PropType<string>;
|
|
219
|
+
default?: string;
|
|
220
|
+
};
|
|
221
|
+
backgroundColor: {
|
|
222
|
+
type?: import("vue").PropType<string>;
|
|
223
|
+
default?: string;
|
|
224
|
+
};
|
|
225
|
+
isScrollspy: {
|
|
226
|
+
type?: import("vue").PropType<boolean>;
|
|
227
|
+
default?: boolean;
|
|
228
|
+
};
|
|
229
|
+
scrollspyConfig: {
|
|
230
|
+
type?: import("vue").PropType<{
|
|
231
|
+
[key: string]: any;
|
|
232
|
+
}[]>;
|
|
233
|
+
default?: {
|
|
234
|
+
[key: string]: any;
|
|
235
|
+
}[];
|
|
236
|
+
};
|
|
237
|
+
id: {
|
|
238
|
+
type?: import("vue").PropType<string>;
|
|
239
|
+
default?: string;
|
|
240
|
+
};
|
|
241
|
+
name: {
|
|
242
|
+
type?: import("vue").PropType<string>;
|
|
243
|
+
default?: string;
|
|
244
|
+
};
|
|
245
|
+
keyName: {
|
|
246
|
+
type?: import("vue").PropType<string>;
|
|
247
|
+
default?: string;
|
|
248
|
+
};
|
|
249
|
+
type: {
|
|
250
|
+
type?: import("vue").PropType<string>;
|
|
251
|
+
default?: string;
|
|
252
|
+
};
|
|
253
|
+
width: {
|
|
254
|
+
type?: import("vue").PropType<string>;
|
|
255
|
+
default?: string;
|
|
256
|
+
};
|
|
257
|
+
height: {
|
|
258
|
+
type?: import("vue").PropType<string>;
|
|
259
|
+
default?: string;
|
|
260
|
+
};
|
|
261
|
+
position: {
|
|
262
|
+
type?: import("vue").PropType<string>;
|
|
263
|
+
default?: string;
|
|
264
|
+
};
|
|
265
|
+
top: {
|
|
266
|
+
type?: import("vue").PropType<string>;
|
|
267
|
+
default?: string;
|
|
268
|
+
};
|
|
269
|
+
left: {
|
|
270
|
+
type?: import("vue").PropType<string>;
|
|
271
|
+
default?: string;
|
|
272
|
+
};
|
|
273
|
+
zIndex: {
|
|
274
|
+
type?: import("vue").PropType<number>;
|
|
275
|
+
default?: number;
|
|
276
|
+
};
|
|
277
|
+
rotate: {
|
|
278
|
+
type?: import("vue").PropType<string>;
|
|
279
|
+
default?: string;
|
|
280
|
+
};
|
|
281
|
+
isShow: {
|
|
282
|
+
type?: import("vue").PropType<boolean>;
|
|
283
|
+
default?: boolean;
|
|
284
|
+
};
|
|
285
|
+
isRender: {
|
|
286
|
+
type?: import("vue").PropType<boolean>;
|
|
287
|
+
default?: boolean;
|
|
288
|
+
};
|
|
289
|
+
events: {
|
|
290
|
+
type?: import("vue").PropType<import("../../utils/props").Events>;
|
|
291
|
+
default?: import("../../utils/props").Events;
|
|
292
|
+
};
|
|
293
|
+
requestUrl: {
|
|
294
|
+
type?: import("vue").PropType<string>;
|
|
295
|
+
default?: string;
|
|
296
|
+
};
|
|
297
|
+
requestMethod: {
|
|
298
|
+
type?: import("vue").PropType<import("../../utils/props").RequestMethod>;
|
|
299
|
+
default?: import("../../utils/props").RequestMethod;
|
|
300
|
+
};
|
|
301
|
+
requestHeaders: {
|
|
302
|
+
type?: import("vue").PropType<string>;
|
|
303
|
+
default?: string;
|
|
304
|
+
};
|
|
305
|
+
isOpenRequestTimer: {
|
|
306
|
+
type?: import("vue").PropType<boolean>;
|
|
307
|
+
default?: boolean;
|
|
308
|
+
};
|
|
309
|
+
isViewRedrawing: {
|
|
310
|
+
type?: import("vue").PropType<boolean>;
|
|
311
|
+
default?: boolean;
|
|
312
|
+
};
|
|
313
|
+
requestInterval: {
|
|
314
|
+
type?: import("vue").PropType<number>;
|
|
315
|
+
default?: number;
|
|
316
|
+
};
|
|
317
|
+
requestParams: {
|
|
318
|
+
type?: import("vue").PropType<import("../../utils/props").RequestParams>;
|
|
319
|
+
default?: import("../../utils/props").RequestParams;
|
|
320
|
+
};
|
|
321
|
+
requestSort: {
|
|
322
|
+
type?: import("vue").PropType<number>;
|
|
323
|
+
default?: number;
|
|
324
|
+
};
|
|
325
|
+
dataType: {
|
|
326
|
+
type?: import("vue").PropType<"indicator" | "request" | "static">;
|
|
327
|
+
default?: "indicator" | "request" | "static";
|
|
328
|
+
};
|
|
329
|
+
scale?: {
|
|
330
|
+
type?: import("vue").PropType<number>;
|
|
331
|
+
default?: number;
|
|
332
|
+
};
|
|
333
|
+
requestParamsMode: {
|
|
334
|
+
type?: import("vue").PropType<"2" | "1">;
|
|
335
|
+
default?: "2" | "1";
|
|
336
|
+
};
|
|
337
|
+
customRequestParams: {
|
|
338
|
+
type?: import("vue").PropType<string>;
|
|
339
|
+
default?: string;
|
|
340
|
+
};
|
|
341
|
+
dataSetParam?: {
|
|
342
|
+
type?: import("vue").PropType<any>;
|
|
343
|
+
default?: any;
|
|
344
|
+
};
|
|
345
|
+
requestType?: {
|
|
346
|
+
type?: import("vue").PropType<any>;
|
|
347
|
+
default?: any;
|
|
348
|
+
};
|
|
349
|
+
componentDoc?: {
|
|
350
|
+
type?: import("vue").PropType<null>;
|
|
351
|
+
default?: null;
|
|
352
|
+
};
|
|
353
|
+
}>>, {}>> & Record<string, any>;
|
|
354
|
+
export default EcanNavTab;
|
|
355
|
+
export * from './props';
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
import { Props } from '../../utils/props';
|
|
2
|
+
export interface NavTabProps extends Props {
|
|
3
|
+
data: {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
}[];
|
|
6
|
+
tabFontSize: string;
|
|
7
|
+
tabFontWeight: number;
|
|
8
|
+
tabColor: string;
|
|
9
|
+
activeTabColor: string;
|
|
10
|
+
activeKey: number;
|
|
11
|
+
isShrink: boolean;
|
|
12
|
+
tabLineWidth: string;
|
|
13
|
+
tabLineHeight: string;
|
|
14
|
+
backgroundColor: string;
|
|
15
|
+
isScrollspy: boolean;
|
|
16
|
+
scrollspyConfig: {
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
}[];
|
|
19
|
+
}
|
|
20
|
+
export declare const navTabProps: NavTabProps;
|
|
21
|
+
export declare const navTabComponentProps: {
|
|
22
|
+
data: {
|
|
23
|
+
type?: import("vue").PropType<{
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
}[]>;
|
|
26
|
+
default?: {
|
|
27
|
+
[key: string]: any;
|
|
28
|
+
}[];
|
|
29
|
+
};
|
|
30
|
+
tabFontSize: {
|
|
31
|
+
type?: import("vue").PropType<string>;
|
|
32
|
+
default?: string;
|
|
33
|
+
};
|
|
34
|
+
tabFontWeight: {
|
|
35
|
+
type?: import("vue").PropType<number>;
|
|
36
|
+
default?: number;
|
|
37
|
+
};
|
|
38
|
+
tabColor: {
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
41
|
+
};
|
|
42
|
+
activeTabColor: {
|
|
43
|
+
type?: import("vue").PropType<string>;
|
|
44
|
+
default?: string;
|
|
45
|
+
};
|
|
46
|
+
activeKey: {
|
|
47
|
+
type?: import("vue").PropType<number>;
|
|
48
|
+
default?: number;
|
|
49
|
+
};
|
|
50
|
+
isShrink: {
|
|
51
|
+
type?: import("vue").PropType<boolean>;
|
|
52
|
+
default?: boolean;
|
|
53
|
+
};
|
|
54
|
+
tabLineWidth: {
|
|
55
|
+
type?: import("vue").PropType<string>;
|
|
56
|
+
default?: string;
|
|
57
|
+
};
|
|
58
|
+
tabLineHeight: {
|
|
59
|
+
type?: import("vue").PropType<string>;
|
|
60
|
+
default?: string;
|
|
61
|
+
};
|
|
62
|
+
backgroundColor: {
|
|
63
|
+
type?: import("vue").PropType<string>;
|
|
64
|
+
default?: string;
|
|
65
|
+
};
|
|
66
|
+
isScrollspy: {
|
|
67
|
+
type?: import("vue").PropType<boolean>;
|
|
68
|
+
default?: boolean;
|
|
69
|
+
};
|
|
70
|
+
scrollspyConfig: {
|
|
71
|
+
type?: import("vue").PropType<{
|
|
72
|
+
[key: string]: any;
|
|
73
|
+
}[]>;
|
|
74
|
+
default?: {
|
|
75
|
+
[key: string]: any;
|
|
76
|
+
}[];
|
|
77
|
+
};
|
|
78
|
+
id: {
|
|
79
|
+
type?: import("vue").PropType<string>;
|
|
80
|
+
default?: string;
|
|
81
|
+
};
|
|
82
|
+
name: {
|
|
83
|
+
type?: import("vue").PropType<string>;
|
|
84
|
+
default?: string;
|
|
85
|
+
};
|
|
86
|
+
keyName: {
|
|
87
|
+
type?: import("vue").PropType<string>;
|
|
88
|
+
default?: string;
|
|
89
|
+
};
|
|
90
|
+
type: {
|
|
91
|
+
type?: import("vue").PropType<string>;
|
|
92
|
+
default?: string;
|
|
93
|
+
};
|
|
94
|
+
width: {
|
|
95
|
+
type?: import("vue").PropType<string>;
|
|
96
|
+
default?: string;
|
|
97
|
+
};
|
|
98
|
+
height: {
|
|
99
|
+
type?: import("vue").PropType<string>;
|
|
100
|
+
default?: string;
|
|
101
|
+
};
|
|
102
|
+
position: {
|
|
103
|
+
type?: import("vue").PropType<string>;
|
|
104
|
+
default?: string;
|
|
105
|
+
};
|
|
106
|
+
top: {
|
|
107
|
+
type?: import("vue").PropType<string>;
|
|
108
|
+
default?: string;
|
|
109
|
+
};
|
|
110
|
+
left: {
|
|
111
|
+
type?: import("vue").PropType<string>;
|
|
112
|
+
default?: string;
|
|
113
|
+
};
|
|
114
|
+
zIndex: {
|
|
115
|
+
type?: import("vue").PropType<number>;
|
|
116
|
+
default?: number;
|
|
117
|
+
};
|
|
118
|
+
rotate: {
|
|
119
|
+
type?: import("vue").PropType<string>;
|
|
120
|
+
default?: string;
|
|
121
|
+
};
|
|
122
|
+
isShow: {
|
|
123
|
+
type?: import("vue").PropType<boolean>;
|
|
124
|
+
default?: boolean;
|
|
125
|
+
};
|
|
126
|
+
isRender: {
|
|
127
|
+
type?: import("vue").PropType<boolean>;
|
|
128
|
+
default?: boolean;
|
|
129
|
+
};
|
|
130
|
+
events: {
|
|
131
|
+
type?: import("vue").PropType<import('../../utils/props').Events>;
|
|
132
|
+
default?: import('../../utils/props').Events;
|
|
133
|
+
};
|
|
134
|
+
requestUrl: {
|
|
135
|
+
type?: import("vue").PropType<string>;
|
|
136
|
+
default?: string;
|
|
137
|
+
};
|
|
138
|
+
requestMethod: {
|
|
139
|
+
type?: import("vue").PropType<import('../../utils/props').RequestMethod>;
|
|
140
|
+
default?: import('../../utils/props').RequestMethod;
|
|
141
|
+
};
|
|
142
|
+
requestHeaders: {
|
|
143
|
+
type?: import("vue").PropType<string>;
|
|
144
|
+
default?: string;
|
|
145
|
+
};
|
|
146
|
+
isOpenRequestTimer: {
|
|
147
|
+
type?: import("vue").PropType<boolean>;
|
|
148
|
+
default?: boolean;
|
|
149
|
+
};
|
|
150
|
+
isViewRedrawing: {
|
|
151
|
+
type?: import("vue").PropType<boolean>;
|
|
152
|
+
default?: boolean;
|
|
153
|
+
};
|
|
154
|
+
requestInterval: {
|
|
155
|
+
type?: import("vue").PropType<number>;
|
|
156
|
+
default?: number;
|
|
157
|
+
};
|
|
158
|
+
requestParams: {
|
|
159
|
+
type?: import("vue").PropType<import('../../utils/props').RequestParams>;
|
|
160
|
+
default?: import('../../utils/props').RequestParams;
|
|
161
|
+
};
|
|
162
|
+
requestSort: {
|
|
163
|
+
type?: import("vue").PropType<number>;
|
|
164
|
+
default?: number;
|
|
165
|
+
};
|
|
166
|
+
dataType: {
|
|
167
|
+
type?: import("vue").PropType<"indicator" | "request" | "static">;
|
|
168
|
+
default?: "indicator" | "request" | "static";
|
|
169
|
+
};
|
|
170
|
+
scale?: {
|
|
171
|
+
type?: import("vue").PropType<number>;
|
|
172
|
+
default?: number;
|
|
173
|
+
};
|
|
174
|
+
requestParamsMode: {
|
|
175
|
+
type?: import("vue").PropType<"2" | "1">;
|
|
176
|
+
default?: "2" | "1";
|
|
177
|
+
};
|
|
178
|
+
customRequestParams: {
|
|
179
|
+
type?: import("vue").PropType<string>;
|
|
180
|
+
default?: string;
|
|
181
|
+
};
|
|
182
|
+
dataSetParam?: {
|
|
183
|
+
type?: import("vue").PropType<any>;
|
|
184
|
+
default?: any;
|
|
185
|
+
};
|
|
186
|
+
requestType?: {
|
|
187
|
+
type?: import("vue").PropType<any>;
|
|
188
|
+
default?: any;
|
|
189
|
+
};
|
|
190
|
+
componentDoc?: {
|
|
191
|
+
type?: import("vue").PropType<null>;
|
|
192
|
+
default?: null;
|
|
193
|
+
};
|
|
194
|
+
};
|
|
195
|
+
export declare const navTabEvents: string[];
|
|
@@ -3,6 +3,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
customId: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
portId: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
6
14
|
width: {
|
|
7
15
|
type?: import("vue").PropType<string>;
|
|
8
16
|
default?: string;
|
|
@@ -72,6 +80,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
72
80
|
type: StringConstructor;
|
|
73
81
|
default: string;
|
|
74
82
|
};
|
|
83
|
+
customId: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
portId: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
75
91
|
width: {
|
|
76
92
|
type?: import("vue").PropType<string>;
|
|
77
93
|
default?: string;
|
|
@@ -134,5 +150,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
134
150
|
};
|
|
135
151
|
}>>, {
|
|
136
152
|
pageId: string;
|
|
153
|
+
customId: string;
|
|
154
|
+
portId: string;
|
|
137
155
|
}>;
|
|
138
156
|
export default _sfc_main;
|
|
@@ -3,6 +3,14 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
customId: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
10
|
+
portId: {
|
|
11
|
+
type: StringConstructor;
|
|
12
|
+
default: string;
|
|
13
|
+
};
|
|
6
14
|
width: {
|
|
7
15
|
type?: import("vue").PropType<string>;
|
|
8
16
|
default?: string;
|
|
@@ -72,6 +80,14 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
72
80
|
type: StringConstructor;
|
|
73
81
|
default: string;
|
|
74
82
|
};
|
|
83
|
+
customId: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
portId: {
|
|
88
|
+
type: StringConstructor;
|
|
89
|
+
default: string;
|
|
90
|
+
};
|
|
75
91
|
width: {
|
|
76
92
|
type?: import("vue").PropType<string>;
|
|
77
93
|
default?: string;
|
|
@@ -134,6 +150,8 @@ export declare const EcanPageConfig: import("../../utils/withInstall").SFCWithIn
|
|
|
134
150
|
};
|
|
135
151
|
}>>, {
|
|
136
152
|
pageId: string;
|
|
153
|
+
customId: string;
|
|
154
|
+
portId: string;
|
|
137
155
|
}>> & Record<string, any>;
|
|
138
156
|
export default EcanPageConfig;
|
|
139
157
|
export * from './props';
|
|
@@ -3,6 +3,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
customId: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
6
10
|
contextRequestUrl: {
|
|
7
11
|
type?: import("vue").PropType<string>;
|
|
8
12
|
default?: string;
|
|
@@ -103,6 +107,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
103
107
|
type: StringConstructor;
|
|
104
108
|
default: string;
|
|
105
109
|
};
|
|
110
|
+
customId: {
|
|
111
|
+
type: StringConstructor;
|
|
112
|
+
default: string;
|
|
113
|
+
};
|
|
106
114
|
contextRequestUrl: {
|
|
107
115
|
type?: import("vue").PropType<string>;
|
|
108
116
|
default?: string;
|
|
@@ -181,5 +189,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
181
189
|
};
|
|
182
190
|
}>>, {
|
|
183
191
|
pageId: string;
|
|
192
|
+
customId: string;
|
|
184
193
|
}>;
|
|
185
194
|
export default _sfc_main;
|
|
@@ -3,6 +3,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
3
3
|
type: StringConstructor;
|
|
4
4
|
default: string;
|
|
5
5
|
};
|
|
6
|
+
customId: {
|
|
7
|
+
type: StringConstructor;
|
|
8
|
+
default: string;
|
|
9
|
+
};
|
|
6
10
|
contextRequestUrl: {
|
|
7
11
|
type?: import("vue").PropType<string>;
|
|
8
12
|
default?: string;
|
|
@@ -103,6 +107,10 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
103
107
|
type: StringConstructor;
|
|
104
108
|
default: string;
|
|
105
109
|
};
|
|
110
|
+
customId: {
|
|
111
|
+
type: StringConstructor;
|
|
112
|
+
default: string;
|
|
113
|
+
};
|
|
106
114
|
contextRequestUrl: {
|
|
107
115
|
type?: import("vue").PropType<string>;
|
|
108
116
|
default?: string;
|
|
@@ -181,6 +189,7 @@ export declare const EcanProviderConfig: import('../../utils/withInstall').SFCWi
|
|
|
181
189
|
};
|
|
182
190
|
}>>, {
|
|
183
191
|
pageId: string;
|
|
192
|
+
customId: string;
|
|
184
193
|
}>> & Record<string, any>;
|
|
185
194
|
export default EcanProviderConfig;
|
|
186
195
|
export * from './props';
|