@ecan-bi/datav 1.3.87 → 1.3.89
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 +4519 -4355
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +24 -24
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/radio/Radio.vue.d.ts +8 -0
- package/types/control/radio/index.d.ts +8 -0
- package/types/control/radio/props.d.ts +5 -0
- package/types/map/map/Map.vue.d.ts +109 -0
- package/types/map/map/index.d.ts +109 -0
- package/types/map/map/props.d.ts +65 -0
- package/types/media/iframe/Iframe.vue.d.ts +16 -0
- package/types/media/iframe/index.d.ts +16 -0
- package/types/media/iframe/props.d.ts +11 -0
- package/types/table/table/Table.vue.d.ts +26 -3
- package/types/table/table/index.d.ts +26 -3
- package/types/table/table/props.d.ts +15 -0
package/package.json
CHANGED
|
@@ -36,6 +36,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
36
|
type?: import("vue").PropType<string>;
|
|
37
37
|
default?: string;
|
|
38
38
|
};
|
|
39
|
+
tabVerticalPadding: {
|
|
40
|
+
type?: import("vue").PropType<string>;
|
|
41
|
+
default?: string;
|
|
42
|
+
};
|
|
39
43
|
tabBarGutter: {
|
|
40
44
|
type?: import("vue").PropType<string>;
|
|
41
45
|
default?: string;
|
|
@@ -227,6 +231,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
227
231
|
type?: import("vue").PropType<string>;
|
|
228
232
|
default?: string;
|
|
229
233
|
};
|
|
234
|
+
tabVerticalPadding: {
|
|
235
|
+
type?: import("vue").PropType<string>;
|
|
236
|
+
default?: string;
|
|
237
|
+
};
|
|
230
238
|
tabBarGutter: {
|
|
231
239
|
type?: import("vue").PropType<string>;
|
|
232
240
|
default?: string;
|
|
@@ -35,6 +35,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
35
35
|
type?: import("vue").PropType<string>;
|
|
36
36
|
default?: string;
|
|
37
37
|
};
|
|
38
|
+
tabVerticalPadding: {
|
|
39
|
+
type?: import("vue").PropType<string>;
|
|
40
|
+
default?: string;
|
|
41
|
+
};
|
|
38
42
|
tabBarGutter: {
|
|
39
43
|
type?: import("vue").PropType<string>;
|
|
40
44
|
default?: string;
|
|
@@ -226,6 +230,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
226
230
|
type?: import("vue").PropType<string>;
|
|
227
231
|
default?: string;
|
|
228
232
|
};
|
|
233
|
+
tabVerticalPadding: {
|
|
234
|
+
type?: import("vue").PropType<string>;
|
|
235
|
+
default?: string;
|
|
236
|
+
};
|
|
229
237
|
tabBarGutter: {
|
|
230
238
|
type?: import("vue").PropType<string>;
|
|
231
239
|
default?: string;
|
|
@@ -16,6 +16,7 @@ export interface RadioProps extends Props {
|
|
|
16
16
|
tabColor: string;
|
|
17
17
|
tabFontSize: string;
|
|
18
18
|
tabHorizontalPadding: string;
|
|
19
|
+
tabVerticalPadding: string;
|
|
19
20
|
tabBarGutter: string;
|
|
20
21
|
tabFlexDirection: 'row' | 'column';
|
|
21
22
|
graphicConfig: {
|
|
@@ -61,6 +62,10 @@ export declare const radioComponentProps: {
|
|
|
61
62
|
type?: import("vue").PropType<string>;
|
|
62
63
|
default?: string;
|
|
63
64
|
};
|
|
65
|
+
tabVerticalPadding: {
|
|
66
|
+
type?: import("vue").PropType<string>;
|
|
67
|
+
default?: string;
|
|
68
|
+
};
|
|
64
69
|
tabBarGutter: {
|
|
65
70
|
type?: import("vue").PropType<string>;
|
|
66
71
|
default?: string;
|
|
@@ -171,6 +171,58 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
171
171
|
[key: string]: any;
|
|
172
172
|
}[];
|
|
173
173
|
};
|
|
174
|
+
legendShow: {
|
|
175
|
+
type?: import("vue").PropType<boolean>;
|
|
176
|
+
default?: boolean;
|
|
177
|
+
};
|
|
178
|
+
legendTextStyleColor: {
|
|
179
|
+
type?: import("vue").PropType<string>;
|
|
180
|
+
default?: string;
|
|
181
|
+
};
|
|
182
|
+
legendLeft: {
|
|
183
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
184
|
+
default?: "left" | "right";
|
|
185
|
+
};
|
|
186
|
+
legendTop: {
|
|
187
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
188
|
+
default?: "top" | "bottom";
|
|
189
|
+
};
|
|
190
|
+
legendOrient: {
|
|
191
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
192
|
+
default?: "vertical" | "horizontal";
|
|
193
|
+
};
|
|
194
|
+
mapLegendType: {
|
|
195
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
196
|
+
default?: "circle" | "rect";
|
|
197
|
+
};
|
|
198
|
+
legendTextShow: {
|
|
199
|
+
type?: import("vue").PropType<boolean>;
|
|
200
|
+
default?: boolean;
|
|
201
|
+
};
|
|
202
|
+
legendTitle: {
|
|
203
|
+
type?: import("vue").PropType<string>;
|
|
204
|
+
default?: string;
|
|
205
|
+
};
|
|
206
|
+
legendTitleColor: {
|
|
207
|
+
type?: import("vue").PropType<string>;
|
|
208
|
+
default?: string;
|
|
209
|
+
};
|
|
210
|
+
legendTitleFontSize: {
|
|
211
|
+
type?: import("vue").PropType<string>;
|
|
212
|
+
default?: string;
|
|
213
|
+
};
|
|
214
|
+
legendFrontText: {
|
|
215
|
+
type?: import("vue").PropType<string>;
|
|
216
|
+
default?: string;
|
|
217
|
+
};
|
|
218
|
+
legendAfterText: {
|
|
219
|
+
type?: import("vue").PropType<string>;
|
|
220
|
+
default?: string;
|
|
221
|
+
};
|
|
222
|
+
legendBoxShadow: {
|
|
223
|
+
type?: import("vue").PropType<string>;
|
|
224
|
+
default?: string;
|
|
225
|
+
};
|
|
174
226
|
id: {
|
|
175
227
|
type?: import("vue").PropType<string>;
|
|
176
228
|
default?: string;
|
|
@@ -368,8 +420,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
368
420
|
isLoadedData: import("vue").Ref<boolean>;
|
|
369
421
|
geoBackgroundImageRef: import("vue").Ref<any>;
|
|
370
422
|
myGeoBackgroundImage: import("vue").ComputedRef<string>;
|
|
423
|
+
mapLegendStyle: import("vue").ComputedRef<any>;
|
|
424
|
+
legendContainerStyle: import("vue").ComputedRef<any>;
|
|
425
|
+
mapLegendList: import("vue").ComputedRef<any[]>;
|
|
426
|
+
hiddenLegendKey: import("vue").Ref<any[]>;
|
|
371
427
|
customClick: () => void;
|
|
372
428
|
onMouseOver: (data?: any) => void;
|
|
429
|
+
handleToggleVisible: (key: string) => void;
|
|
373
430
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
374
431
|
mapJson: {
|
|
375
432
|
type?: import("vue").PropType<{
|
|
@@ -543,6 +600,58 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
543
600
|
[key: string]: any;
|
|
544
601
|
}[];
|
|
545
602
|
};
|
|
603
|
+
legendShow: {
|
|
604
|
+
type?: import("vue").PropType<boolean>;
|
|
605
|
+
default?: boolean;
|
|
606
|
+
};
|
|
607
|
+
legendTextStyleColor: {
|
|
608
|
+
type?: import("vue").PropType<string>;
|
|
609
|
+
default?: string;
|
|
610
|
+
};
|
|
611
|
+
legendLeft: {
|
|
612
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
613
|
+
default?: "left" | "right";
|
|
614
|
+
};
|
|
615
|
+
legendTop: {
|
|
616
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
617
|
+
default?: "top" | "bottom";
|
|
618
|
+
};
|
|
619
|
+
legendOrient: {
|
|
620
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
621
|
+
default?: "vertical" | "horizontal";
|
|
622
|
+
};
|
|
623
|
+
mapLegendType: {
|
|
624
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
625
|
+
default?: "circle" | "rect";
|
|
626
|
+
};
|
|
627
|
+
legendTextShow: {
|
|
628
|
+
type?: import("vue").PropType<boolean>;
|
|
629
|
+
default?: boolean;
|
|
630
|
+
};
|
|
631
|
+
legendTitle: {
|
|
632
|
+
type?: import("vue").PropType<string>;
|
|
633
|
+
default?: string;
|
|
634
|
+
};
|
|
635
|
+
legendTitleColor: {
|
|
636
|
+
type?: import("vue").PropType<string>;
|
|
637
|
+
default?: string;
|
|
638
|
+
};
|
|
639
|
+
legendTitleFontSize: {
|
|
640
|
+
type?: import("vue").PropType<string>;
|
|
641
|
+
default?: string;
|
|
642
|
+
};
|
|
643
|
+
legendFrontText: {
|
|
644
|
+
type?: import("vue").PropType<string>;
|
|
645
|
+
default?: string;
|
|
646
|
+
};
|
|
647
|
+
legendAfterText: {
|
|
648
|
+
type?: import("vue").PropType<string>;
|
|
649
|
+
default?: string;
|
|
650
|
+
};
|
|
651
|
+
legendBoxShadow: {
|
|
652
|
+
type?: import("vue").PropType<string>;
|
|
653
|
+
default?: string;
|
|
654
|
+
};
|
|
546
655
|
id: {
|
|
547
656
|
type?: import("vue").PropType<string>;
|
|
548
657
|
default?: string;
|
package/types/map/map/index.d.ts
CHANGED
|
@@ -171,6 +171,58 @@ export declare const EcanMap: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
171
171
|
[key: string]: any;
|
|
172
172
|
}[];
|
|
173
173
|
};
|
|
174
|
+
legendShow: {
|
|
175
|
+
type?: import("vue").PropType<boolean>;
|
|
176
|
+
default?: boolean;
|
|
177
|
+
};
|
|
178
|
+
legendTextStyleColor: {
|
|
179
|
+
type?: import("vue").PropType<string>;
|
|
180
|
+
default?: string;
|
|
181
|
+
};
|
|
182
|
+
legendLeft: {
|
|
183
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
184
|
+
default?: "left" | "right";
|
|
185
|
+
};
|
|
186
|
+
legendTop: {
|
|
187
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
188
|
+
default?: "top" | "bottom";
|
|
189
|
+
};
|
|
190
|
+
legendOrient: {
|
|
191
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
192
|
+
default?: "vertical" | "horizontal";
|
|
193
|
+
};
|
|
194
|
+
mapLegendType: {
|
|
195
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
196
|
+
default?: "circle" | "rect";
|
|
197
|
+
};
|
|
198
|
+
legendTextShow: {
|
|
199
|
+
type?: import("vue").PropType<boolean>;
|
|
200
|
+
default?: boolean;
|
|
201
|
+
};
|
|
202
|
+
legendTitle: {
|
|
203
|
+
type?: import("vue").PropType<string>;
|
|
204
|
+
default?: string;
|
|
205
|
+
};
|
|
206
|
+
legendTitleColor: {
|
|
207
|
+
type?: import("vue").PropType<string>;
|
|
208
|
+
default?: string;
|
|
209
|
+
};
|
|
210
|
+
legendTitleFontSize: {
|
|
211
|
+
type?: import("vue").PropType<string>;
|
|
212
|
+
default?: string;
|
|
213
|
+
};
|
|
214
|
+
legendFrontText: {
|
|
215
|
+
type?: import("vue").PropType<string>;
|
|
216
|
+
default?: string;
|
|
217
|
+
};
|
|
218
|
+
legendAfterText: {
|
|
219
|
+
type?: import("vue").PropType<string>;
|
|
220
|
+
default?: string;
|
|
221
|
+
};
|
|
222
|
+
legendBoxShadow: {
|
|
223
|
+
type?: import("vue").PropType<string>;
|
|
224
|
+
default?: string;
|
|
225
|
+
};
|
|
174
226
|
id: {
|
|
175
227
|
type?: import("vue").PropType<string>;
|
|
176
228
|
default?: string;
|
|
@@ -368,8 +420,13 @@ export declare const EcanMap: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
368
420
|
isLoadedData: import("vue").Ref<boolean>;
|
|
369
421
|
geoBackgroundImageRef: import("vue").Ref<any>;
|
|
370
422
|
myGeoBackgroundImage: import("vue").ComputedRef<string>;
|
|
423
|
+
mapLegendStyle: import("vue").ComputedRef<any>;
|
|
424
|
+
legendContainerStyle: import("vue").ComputedRef<any>;
|
|
425
|
+
mapLegendList: import("vue").ComputedRef<any[]>;
|
|
426
|
+
hiddenLegendKey: import("vue").Ref<any[]>;
|
|
371
427
|
customClick: () => void;
|
|
372
428
|
onMouseOver: (data?: any) => void;
|
|
429
|
+
handleToggleVisible: (key: string) => void;
|
|
373
430
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
374
431
|
mapJson: {
|
|
375
432
|
type?: import("vue").PropType<{
|
|
@@ -543,6 +600,58 @@ export declare const EcanMap: import('../../utils/withInstall').SFCWithInstall<i
|
|
|
543
600
|
[key: string]: any;
|
|
544
601
|
}[];
|
|
545
602
|
};
|
|
603
|
+
legendShow: {
|
|
604
|
+
type?: import("vue").PropType<boolean>;
|
|
605
|
+
default?: boolean;
|
|
606
|
+
};
|
|
607
|
+
legendTextStyleColor: {
|
|
608
|
+
type?: import("vue").PropType<string>;
|
|
609
|
+
default?: string;
|
|
610
|
+
};
|
|
611
|
+
legendLeft: {
|
|
612
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
613
|
+
default?: "left" | "right";
|
|
614
|
+
};
|
|
615
|
+
legendTop: {
|
|
616
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
617
|
+
default?: "top" | "bottom";
|
|
618
|
+
};
|
|
619
|
+
legendOrient: {
|
|
620
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
621
|
+
default?: "vertical" | "horizontal";
|
|
622
|
+
};
|
|
623
|
+
mapLegendType: {
|
|
624
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
625
|
+
default?: "circle" | "rect";
|
|
626
|
+
};
|
|
627
|
+
legendTextShow: {
|
|
628
|
+
type?: import("vue").PropType<boolean>;
|
|
629
|
+
default?: boolean;
|
|
630
|
+
};
|
|
631
|
+
legendTitle: {
|
|
632
|
+
type?: import("vue").PropType<string>;
|
|
633
|
+
default?: string;
|
|
634
|
+
};
|
|
635
|
+
legendTitleColor: {
|
|
636
|
+
type?: import("vue").PropType<string>;
|
|
637
|
+
default?: string;
|
|
638
|
+
};
|
|
639
|
+
legendTitleFontSize: {
|
|
640
|
+
type?: import("vue").PropType<string>;
|
|
641
|
+
default?: string;
|
|
642
|
+
};
|
|
643
|
+
legendFrontText: {
|
|
644
|
+
type?: import("vue").PropType<string>;
|
|
645
|
+
default?: string;
|
|
646
|
+
};
|
|
647
|
+
legendAfterText: {
|
|
648
|
+
type?: import("vue").PropType<string>;
|
|
649
|
+
default?: string;
|
|
650
|
+
};
|
|
651
|
+
legendBoxShadow: {
|
|
652
|
+
type?: import("vue").PropType<string>;
|
|
653
|
+
default?: string;
|
|
654
|
+
};
|
|
546
655
|
id: {
|
|
547
656
|
type?: import("vue").PropType<string>;
|
|
548
657
|
default?: string;
|
package/types/map/map/props.d.ts
CHANGED
|
@@ -48,6 +48,19 @@ export interface MapProps extends Props {
|
|
|
48
48
|
mapAreaStyleConfig: {
|
|
49
49
|
[key: string]: any;
|
|
50
50
|
}[];
|
|
51
|
+
legendShow: boolean;
|
|
52
|
+
legendTextStyleColor: string;
|
|
53
|
+
legendLeft: 'left' | 'right';
|
|
54
|
+
legendTop: 'top' | 'bottom';
|
|
55
|
+
legendOrient: 'vertical' | 'horizontal';
|
|
56
|
+
mapLegendType: 'rect' | 'circle';
|
|
57
|
+
legendTextShow: boolean;
|
|
58
|
+
legendTitle: string;
|
|
59
|
+
legendTitleColor: string;
|
|
60
|
+
legendTitleFontSize: string;
|
|
61
|
+
legendFrontText: string;
|
|
62
|
+
legendAfterText: string;
|
|
63
|
+
legendBoxShadow: string;
|
|
51
64
|
}
|
|
52
65
|
export declare const mapProps: MapProps;
|
|
53
66
|
export declare const mapComponentProps: {
|
|
@@ -223,6 +236,58 @@ export declare const mapComponentProps: {
|
|
|
223
236
|
[key: string]: any;
|
|
224
237
|
}[];
|
|
225
238
|
};
|
|
239
|
+
legendShow: {
|
|
240
|
+
type?: import("vue").PropType<boolean>;
|
|
241
|
+
default?: boolean;
|
|
242
|
+
};
|
|
243
|
+
legendTextStyleColor: {
|
|
244
|
+
type?: import("vue").PropType<string>;
|
|
245
|
+
default?: string;
|
|
246
|
+
};
|
|
247
|
+
legendLeft: {
|
|
248
|
+
type?: import("vue").PropType<"left" | "right">;
|
|
249
|
+
default?: "left" | "right";
|
|
250
|
+
};
|
|
251
|
+
legendTop: {
|
|
252
|
+
type?: import("vue").PropType<"top" | "bottom">;
|
|
253
|
+
default?: "top" | "bottom";
|
|
254
|
+
};
|
|
255
|
+
legendOrient: {
|
|
256
|
+
type?: import("vue").PropType<"vertical" | "horizontal">;
|
|
257
|
+
default?: "vertical" | "horizontal";
|
|
258
|
+
};
|
|
259
|
+
mapLegendType: {
|
|
260
|
+
type?: import("vue").PropType<"circle" | "rect">;
|
|
261
|
+
default?: "circle" | "rect";
|
|
262
|
+
};
|
|
263
|
+
legendTextShow: {
|
|
264
|
+
type?: import("vue").PropType<boolean>;
|
|
265
|
+
default?: boolean;
|
|
266
|
+
};
|
|
267
|
+
legendTitle: {
|
|
268
|
+
type?: import("vue").PropType<string>;
|
|
269
|
+
default?: string;
|
|
270
|
+
};
|
|
271
|
+
legendTitleColor: {
|
|
272
|
+
type?: import("vue").PropType<string>;
|
|
273
|
+
default?: string;
|
|
274
|
+
};
|
|
275
|
+
legendTitleFontSize: {
|
|
276
|
+
type?: import("vue").PropType<string>;
|
|
277
|
+
default?: string;
|
|
278
|
+
};
|
|
279
|
+
legendFrontText: {
|
|
280
|
+
type?: import("vue").PropType<string>;
|
|
281
|
+
default?: string;
|
|
282
|
+
};
|
|
283
|
+
legendAfterText: {
|
|
284
|
+
type?: import("vue").PropType<string>;
|
|
285
|
+
default?: string;
|
|
286
|
+
};
|
|
287
|
+
legendBoxShadow: {
|
|
288
|
+
type?: import("vue").PropType<string>;
|
|
289
|
+
default?: string;
|
|
290
|
+
};
|
|
226
291
|
id: {
|
|
227
292
|
type?: import("vue").PropType<string>;
|
|
228
293
|
default?: string;
|
|
@@ -7,6 +7,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
7
7
|
type?: import("vue").PropType<"web" | "erd">;
|
|
8
8
|
default?: "web" | "erd";
|
|
9
9
|
};
|
|
10
|
+
transParams: {
|
|
11
|
+
type?: import("vue").PropType<{
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}[]>;
|
|
14
|
+
default?: {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}[];
|
|
17
|
+
};
|
|
10
18
|
id: {
|
|
11
19
|
type?: import("vue").PropType<string>;
|
|
12
20
|
default?: string;
|
|
@@ -131,6 +139,14 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
131
139
|
type?: import("vue").PropType<"web" | "erd">;
|
|
132
140
|
default?: "web" | "erd";
|
|
133
141
|
};
|
|
142
|
+
transParams: {
|
|
143
|
+
type?: import("vue").PropType<{
|
|
144
|
+
[key: string]: any;
|
|
145
|
+
}[]>;
|
|
146
|
+
default?: {
|
|
147
|
+
[key: string]: any;
|
|
148
|
+
}[];
|
|
149
|
+
};
|
|
134
150
|
id: {
|
|
135
151
|
type?: import("vue").PropType<string>;
|
|
136
152
|
default?: string;
|
|
@@ -7,6 +7,14 @@ export declare const EcanIframe: import('../../utils/withInstall').SFCWithInstal
|
|
|
7
7
|
type?: import("vue").PropType<"web" | "erd">;
|
|
8
8
|
default?: "web" | "erd";
|
|
9
9
|
};
|
|
10
|
+
transParams: {
|
|
11
|
+
type?: import("vue").PropType<{
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
}[]>;
|
|
14
|
+
default?: {
|
|
15
|
+
[key: string]: any;
|
|
16
|
+
}[];
|
|
17
|
+
};
|
|
10
18
|
id: {
|
|
11
19
|
type?: import("vue").PropType<string>;
|
|
12
20
|
default?: string;
|
|
@@ -131,6 +139,14 @@ export declare const EcanIframe: import('../../utils/withInstall').SFCWithInstal
|
|
|
131
139
|
type?: import("vue").PropType<"web" | "erd">;
|
|
132
140
|
default?: "web" | "erd";
|
|
133
141
|
};
|
|
142
|
+
transParams: {
|
|
143
|
+
type?: import("vue").PropType<{
|
|
144
|
+
[key: string]: any;
|
|
145
|
+
}[]>;
|
|
146
|
+
default?: {
|
|
147
|
+
[key: string]: any;
|
|
148
|
+
}[];
|
|
149
|
+
};
|
|
134
150
|
id: {
|
|
135
151
|
type?: import("vue").PropType<string>;
|
|
136
152
|
default?: string;
|
|
@@ -2,6 +2,9 @@ import { Props } from '../../utils/props';
|
|
|
2
2
|
export interface IframeProps extends Props {
|
|
3
3
|
link: string;
|
|
4
4
|
linkType: 'web' | 'erd';
|
|
5
|
+
transParams: {
|
|
6
|
+
[key: string]: any;
|
|
7
|
+
}[];
|
|
5
8
|
}
|
|
6
9
|
export declare const iframeProps: IframeProps;
|
|
7
10
|
export declare const iframeComponentProps: {
|
|
@@ -13,6 +16,14 @@ export declare const iframeComponentProps: {
|
|
|
13
16
|
type?: import("vue").PropType<"web" | "erd">;
|
|
14
17
|
default?: "web" | "erd";
|
|
15
18
|
};
|
|
19
|
+
transParams: {
|
|
20
|
+
type?: import("vue").PropType<{
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
}[]>;
|
|
23
|
+
default?: {
|
|
24
|
+
[key: string]: any;
|
|
25
|
+
}[];
|
|
26
|
+
};
|
|
16
27
|
id: {
|
|
17
28
|
type?: import("vue").PropType<string>;
|
|
18
29
|
default?: string;
|
|
@@ -231,6 +231,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
231
231
|
type?: import("vue").PropType<number>;
|
|
232
232
|
default?: number;
|
|
233
233
|
};
|
|
234
|
+
clickTarget: {
|
|
235
|
+
type?: import("vue").PropType<"cell" | "row">;
|
|
236
|
+
default?: "cell" | "row";
|
|
237
|
+
};
|
|
238
|
+
clickTargetColumns: {
|
|
239
|
+
type?: import("vue").PropType<string[]>;
|
|
240
|
+
default?: string[];
|
|
241
|
+
};
|
|
242
|
+
linkTextColor: {
|
|
243
|
+
type?: import("vue").PropType<string>;
|
|
244
|
+
default?: string;
|
|
245
|
+
};
|
|
234
246
|
id: {
|
|
235
247
|
type?: import("vue").PropType<string>;
|
|
236
248
|
default?: string;
|
|
@@ -347,9 +359,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
347
359
|
x: import("vue").ComputedRef<number>;
|
|
348
360
|
y: import("vue").Ref<number>;
|
|
349
361
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
350
|
-
customRow: (record: any, index: any) => {
|
|
351
|
-
onClick: () => void;
|
|
352
|
-
};
|
|
353
362
|
pagination: import("vue").ComputedRef<any>;
|
|
354
363
|
formatFn: (value: string | number, column: any) => string | number;
|
|
355
364
|
contrastClass: (format: "" | "boolean" | "progress" | "money" | "percentage" | "contrast" | "decimals" | "custom") => "" | "upDown";
|
|
@@ -406,9 +415,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
406
415
|
};
|
|
407
416
|
getCellText: (text: string | number, column: any) => any;
|
|
408
417
|
autoScrollHeight: import("vue").Ref<number>;
|
|
418
|
+
autoScrollClass: import("vue").Ref<string>;
|
|
409
419
|
autoScrollTop: import("vue").Ref<number>;
|
|
410
420
|
isScroll: import("vue").ComputedRef<boolean>;
|
|
411
421
|
scrollWrapStyle: import("vue").Ref<{}>;
|
|
422
|
+
isLinkStyle: (column: any) => boolean;
|
|
412
423
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
413
424
|
columns: {
|
|
414
425
|
type?: import("vue").PropType<{
|
|
@@ -642,6 +653,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
642
653
|
type?: import("vue").PropType<number>;
|
|
643
654
|
default?: number;
|
|
644
655
|
};
|
|
656
|
+
clickTarget: {
|
|
657
|
+
type?: import("vue").PropType<"cell" | "row">;
|
|
658
|
+
default?: "cell" | "row";
|
|
659
|
+
};
|
|
660
|
+
clickTargetColumns: {
|
|
661
|
+
type?: import("vue").PropType<string[]>;
|
|
662
|
+
default?: string[];
|
|
663
|
+
};
|
|
664
|
+
linkTextColor: {
|
|
665
|
+
type?: import("vue").PropType<string>;
|
|
666
|
+
default?: string;
|
|
667
|
+
};
|
|
645
668
|
id: {
|
|
646
669
|
type?: import("vue").PropType<string>;
|
|
647
670
|
default?: string;
|
|
@@ -231,6 +231,18 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
231
231
|
type?: import("vue").PropType<number>;
|
|
232
232
|
default?: number;
|
|
233
233
|
};
|
|
234
|
+
clickTarget: {
|
|
235
|
+
type?: import("vue").PropType<"cell" | "row">;
|
|
236
|
+
default?: "cell" | "row";
|
|
237
|
+
};
|
|
238
|
+
clickTargetColumns: {
|
|
239
|
+
type?: import("vue").PropType<string[]>;
|
|
240
|
+
default?: string[];
|
|
241
|
+
};
|
|
242
|
+
linkTextColor: {
|
|
243
|
+
type?: import("vue").PropType<string>;
|
|
244
|
+
default?: string;
|
|
245
|
+
};
|
|
234
246
|
id: {
|
|
235
247
|
type?: import("vue").PropType<string>;
|
|
236
248
|
default?: string;
|
|
@@ -347,9 +359,6 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
347
359
|
x: import("vue").ComputedRef<number>;
|
|
348
360
|
y: import("vue").Ref<number>;
|
|
349
361
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
350
|
-
customRow: (record: any, index: any) => {
|
|
351
|
-
onClick: () => void;
|
|
352
|
-
};
|
|
353
362
|
pagination: import("vue").ComputedRef<any>;
|
|
354
363
|
formatFn: (value: string | number, column: any) => string | number;
|
|
355
364
|
contrastClass: (format: "" | "boolean" | "progress" | "money" | "percentage" | "contrast" | "decimals" | "custom") => "" | "upDown";
|
|
@@ -406,9 +415,11 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
406
415
|
};
|
|
407
416
|
getCellText: (text: string | number, column: any) => any;
|
|
408
417
|
autoScrollHeight: import("vue").Ref<number>;
|
|
418
|
+
autoScrollClass: import("vue").Ref<string>;
|
|
409
419
|
autoScrollTop: import("vue").Ref<number>;
|
|
410
420
|
isScroll: import("vue").ComputedRef<boolean>;
|
|
411
421
|
scrollWrapStyle: import("vue").Ref<{}>;
|
|
422
|
+
isLinkStyle: (column: any) => boolean;
|
|
412
423
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
413
424
|
columns: {
|
|
414
425
|
type?: import("vue").PropType<{
|
|
@@ -642,6 +653,18 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
642
653
|
type?: import("vue").PropType<number>;
|
|
643
654
|
default?: number;
|
|
644
655
|
};
|
|
656
|
+
clickTarget: {
|
|
657
|
+
type?: import("vue").PropType<"cell" | "row">;
|
|
658
|
+
default?: "cell" | "row";
|
|
659
|
+
};
|
|
660
|
+
clickTargetColumns: {
|
|
661
|
+
type?: import("vue").PropType<string[]>;
|
|
662
|
+
default?: string[];
|
|
663
|
+
};
|
|
664
|
+
linkTextColor: {
|
|
665
|
+
type?: import("vue").PropType<string>;
|
|
666
|
+
default?: string;
|
|
667
|
+
};
|
|
645
668
|
id: {
|
|
646
669
|
type?: import("vue").PropType<string>;
|
|
647
670
|
default?: string;
|
|
@@ -63,6 +63,9 @@ export interface TableProps extends Props {
|
|
|
63
63
|
href: string;
|
|
64
64
|
isAutoScroll: boolean;
|
|
65
65
|
scrollSpeed: number;
|
|
66
|
+
clickTarget: 'row' | 'cell';
|
|
67
|
+
clickTargetColumns: string[];
|
|
68
|
+
linkTextColor: string;
|
|
66
69
|
}
|
|
67
70
|
export declare const tableProps: TableProps;
|
|
68
71
|
export declare const tableComponentProps: {
|
|
@@ -298,6 +301,18 @@ export declare const tableComponentProps: {
|
|
|
298
301
|
type?: import("vue").PropType<number>;
|
|
299
302
|
default?: number;
|
|
300
303
|
};
|
|
304
|
+
clickTarget: {
|
|
305
|
+
type?: import("vue").PropType<"cell" | "row">;
|
|
306
|
+
default?: "cell" | "row";
|
|
307
|
+
};
|
|
308
|
+
clickTargetColumns: {
|
|
309
|
+
type?: import("vue").PropType<string[]>;
|
|
310
|
+
default?: string[];
|
|
311
|
+
};
|
|
312
|
+
linkTextColor: {
|
|
313
|
+
type?: import("vue").PropType<string>;
|
|
314
|
+
default?: string;
|
|
315
|
+
};
|
|
301
316
|
id: {
|
|
302
317
|
type?: import("vue").PropType<string>;
|
|
303
318
|
default?: string;
|