@ecan-bi/datav 1.3.87 → 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 +733 -711
- 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/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
|
@@ -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;
|