@ecan-bi/datav 1.4.80 → 1.4.81

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecan-bi/datav",
3
- "version": "1.4.80",
3
+ "version": "1.4.81",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "types/index.d.ts",
@@ -83,6 +83,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
83
83
  type?: import("vue").PropType<boolean>;
84
84
  default?: boolean;
85
85
  };
86
+ isFixed: {
87
+ type?: import("vue").PropType<boolean>;
88
+ default?: boolean;
89
+ };
86
90
  id: {
87
91
  type?: import("vue").PropType<string>;
88
92
  default?: string;
@@ -301,6 +305,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
301
305
  type?: import("vue").PropType<boolean>;
302
306
  default?: boolean;
303
307
  };
308
+ isFixed: {
309
+ type?: import("vue").PropType<boolean>;
310
+ default?: boolean;
311
+ };
304
312
  id: {
305
313
  type?: import("vue").PropType<string>;
306
314
  default?: string;
@@ -83,6 +83,10 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
83
83
  type?: import("vue").PropType<boolean>;
84
84
  default?: boolean;
85
85
  };
86
+ isFixed: {
87
+ type?: import("vue").PropType<boolean>;
88
+ default?: boolean;
89
+ };
86
90
  id: {
87
91
  type?: import("vue").PropType<string>;
88
92
  default?: string;
@@ -301,6 +305,10 @@ export declare const EcanBorder: import('../../utils/withInstall').SFCWithInstal
301
305
  type?: import("vue").PropType<boolean>;
302
306
  default?: boolean;
303
307
  };
308
+ isFixed: {
309
+ type?: import("vue").PropType<boolean>;
310
+ default?: boolean;
311
+ };
304
312
  id: {
305
313
  type?: import("vue").PropType<string>;
306
314
  default?: string;
@@ -22,6 +22,7 @@ export interface BorderProps extends Props {
22
22
  gradientAngle: string;
23
23
  titleMode: 'type-1' | 'type-2';
24
24
  isTransparent: boolean;
25
+ isFixed: boolean;
25
26
  }
26
27
  export declare const borderProps: BorderProps;
27
28
  export declare const borderComponentProps: {
@@ -109,6 +110,10 @@ export declare const borderComponentProps: {
109
110
  type?: import("vue").PropType<boolean>;
110
111
  default?: boolean;
111
112
  };
113
+ isFixed: {
114
+ type?: import("vue").PropType<boolean>;
115
+ default?: boolean;
116
+ };
112
117
  id: {
113
118
  type?: import("vue").PropType<string>;
114
119
  default?: string;
@@ -6,3 +6,4 @@ export * from './checkbox';
6
6
  export * from './select';
7
7
  export * from './tree-select';
8
8
  export * from './radio';
9
+ export * from './nav-tab';
@@ -0,0 +1,354 @@
1
+ declare const _sfc_main: 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
+ }>>, {}>;
354
+ export default _sfc_main;