@ecan-bi/datav 1.3.86 → 1.3.88
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 +4146 -4049
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +21 -21
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- 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 +46 -3
- package/types/table/table/index.d.ts +46 -3
- package/types/table/table/props.d.ts +25 -0
package/package.json
CHANGED
|
@@ -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;
|
|
@@ -223,6 +223,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
223
223
|
type?: import("vue").PropType<string>;
|
|
224
224
|
default?: string;
|
|
225
225
|
};
|
|
226
|
+
isAutoScroll: {
|
|
227
|
+
type?: import("vue").PropType<boolean>;
|
|
228
|
+
default?: boolean;
|
|
229
|
+
};
|
|
230
|
+
scrollSpeed: {
|
|
231
|
+
type?: import("vue").PropType<number>;
|
|
232
|
+
default?: number;
|
|
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
|
+
};
|
|
226
246
|
id: {
|
|
227
247
|
type?: import("vue").PropType<string>;
|
|
228
248
|
default?: string;
|
|
@@ -339,9 +359,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
339
359
|
x: import("vue").ComputedRef<number>;
|
|
340
360
|
y: import("vue").Ref<number>;
|
|
341
361
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
342
|
-
customRow: (record: any, index: any) => {
|
|
343
|
-
onClick: () => void;
|
|
344
|
-
};
|
|
345
362
|
pagination: import("vue").ComputedRef<any>;
|
|
346
363
|
formatFn: (value: string | number, column: any) => string | number;
|
|
347
364
|
contrastClass: (format: "" | "boolean" | "progress" | "money" | "percentage" | "contrast" | "decimals" | "custom") => "" | "upDown";
|
|
@@ -397,6 +414,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
397
414
|
height: string;
|
|
398
415
|
};
|
|
399
416
|
getCellText: (text: string | number, column: any) => any;
|
|
417
|
+
autoScrollHeight: import("vue").Ref<number>;
|
|
418
|
+
autoScrollClass: import("vue").Ref<string>;
|
|
419
|
+
autoScrollTop: import("vue").Ref<number>;
|
|
420
|
+
isScroll: import("vue").ComputedRef<boolean>;
|
|
421
|
+
scrollWrapStyle: import("vue").Ref<{}>;
|
|
422
|
+
isLinkStyle: (column: any) => boolean;
|
|
400
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<{
|
|
401
424
|
columns: {
|
|
402
425
|
type?: import("vue").PropType<{
|
|
@@ -622,6 +645,26 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
622
645
|
type?: import("vue").PropType<string>;
|
|
623
646
|
default?: string;
|
|
624
647
|
};
|
|
648
|
+
isAutoScroll: {
|
|
649
|
+
type?: import("vue").PropType<boolean>;
|
|
650
|
+
default?: boolean;
|
|
651
|
+
};
|
|
652
|
+
scrollSpeed: {
|
|
653
|
+
type?: import("vue").PropType<number>;
|
|
654
|
+
default?: number;
|
|
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
|
+
};
|
|
625
668
|
id: {
|
|
626
669
|
type?: import("vue").PropType<string>;
|
|
627
670
|
default?: string;
|
|
@@ -223,6 +223,26 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
223
223
|
type?: import("vue").PropType<string>;
|
|
224
224
|
default?: string;
|
|
225
225
|
};
|
|
226
|
+
isAutoScroll: {
|
|
227
|
+
type?: import("vue").PropType<boolean>;
|
|
228
|
+
default?: boolean;
|
|
229
|
+
};
|
|
230
|
+
scrollSpeed: {
|
|
231
|
+
type?: import("vue").PropType<number>;
|
|
232
|
+
default?: number;
|
|
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
|
+
};
|
|
226
246
|
id: {
|
|
227
247
|
type?: import("vue").PropType<string>;
|
|
228
248
|
default?: string;
|
|
@@ -339,9 +359,6 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
339
359
|
x: import("vue").ComputedRef<number>;
|
|
340
360
|
y: import("vue").Ref<number>;
|
|
341
361
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
342
|
-
customRow: (record: any, index: any) => {
|
|
343
|
-
onClick: () => void;
|
|
344
|
-
};
|
|
345
362
|
pagination: import("vue").ComputedRef<any>;
|
|
346
363
|
formatFn: (value: string | number, column: any) => string | number;
|
|
347
364
|
contrastClass: (format: "" | "boolean" | "progress" | "money" | "percentage" | "contrast" | "decimals" | "custom") => "" | "upDown";
|
|
@@ -397,6 +414,12 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
397
414
|
height: string;
|
|
398
415
|
};
|
|
399
416
|
getCellText: (text: string | number, column: any) => any;
|
|
417
|
+
autoScrollHeight: import("vue").Ref<number>;
|
|
418
|
+
autoScrollClass: import("vue").Ref<string>;
|
|
419
|
+
autoScrollTop: import("vue").Ref<number>;
|
|
420
|
+
isScroll: import("vue").ComputedRef<boolean>;
|
|
421
|
+
scrollWrapStyle: import("vue").Ref<{}>;
|
|
422
|
+
isLinkStyle: (column: any) => boolean;
|
|
400
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<{
|
|
401
424
|
columns: {
|
|
402
425
|
type?: import("vue").PropType<{
|
|
@@ -622,6 +645,26 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
622
645
|
type?: import("vue").PropType<string>;
|
|
623
646
|
default?: string;
|
|
624
647
|
};
|
|
648
|
+
isAutoScroll: {
|
|
649
|
+
type?: import("vue").PropType<boolean>;
|
|
650
|
+
default?: boolean;
|
|
651
|
+
};
|
|
652
|
+
scrollSpeed: {
|
|
653
|
+
type?: import("vue").PropType<number>;
|
|
654
|
+
default?: number;
|
|
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
|
+
};
|
|
625
668
|
id: {
|
|
626
669
|
type?: import("vue").PropType<string>;
|
|
627
670
|
default?: string;
|
|
@@ -61,6 +61,11 @@ export interface TableProps extends Props {
|
|
|
61
61
|
target: 'self' | 'blank' | 'event';
|
|
62
62
|
linkPage: string;
|
|
63
63
|
href: string;
|
|
64
|
+
isAutoScroll: boolean;
|
|
65
|
+
scrollSpeed: number;
|
|
66
|
+
clickTarget: 'row' | 'cell';
|
|
67
|
+
clickTargetColumns: string[];
|
|
68
|
+
linkTextColor: string;
|
|
64
69
|
}
|
|
65
70
|
export declare const tableProps: TableProps;
|
|
66
71
|
export declare const tableComponentProps: {
|
|
@@ -288,6 +293,26 @@ export declare const tableComponentProps: {
|
|
|
288
293
|
type?: import("vue").PropType<string>;
|
|
289
294
|
default?: string;
|
|
290
295
|
};
|
|
296
|
+
isAutoScroll: {
|
|
297
|
+
type?: import("vue").PropType<boolean>;
|
|
298
|
+
default?: boolean;
|
|
299
|
+
};
|
|
300
|
+
scrollSpeed: {
|
|
301
|
+
type?: import("vue").PropType<number>;
|
|
302
|
+
default?: number;
|
|
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
|
+
};
|
|
291
316
|
id: {
|
|
292
317
|
type?: import("vue").PropType<string>;
|
|
293
318
|
default?: string;
|