@ecan-bi/datav 1.6.29 → 1.6.31
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 +8466 -8438
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +80 -79
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/types/control/input/Input.vue.d.ts +9 -0
- package/types/control/input/index.d.ts +9 -0
- package/types/control/input/props.d.ts +5 -0
- package/types/control/tree-select/TreeSelect.vue.d.ts +9 -0
- package/types/control/tree-select/index.d.ts +9 -0
- package/types/control/tree-select/props.d.ts +5 -0
- package/types/table/table/Table.vue.d.ts +1 -1
- package/types/table/table/index.d.ts +1 -1
- package/types/text/text/Text.vue.d.ts +4 -4
- package/types/text/text/index.d.ts +4 -4
- package/types/text/text/props.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecan-bi/datav",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.31",
|
|
4
4
|
"main": "dist/index.umd.js",
|
|
5
5
|
"module": "dist/index.es.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
},
|
|
80
80
|
"dependencies": {
|
|
81
81
|
"@ecan-bi/indicator-library": "^1.1.1",
|
|
82
|
-
"@ecan-bi/tools": "^1.0.
|
|
82
|
+
"@ecan-bi/tools": "^1.0.72",
|
|
83
83
|
"@microsoft/fetch-event-source": "2.0.1",
|
|
84
84
|
"@types/big.js": "^6.1.6",
|
|
85
85
|
"ant-design-vue": "^3.1.1",
|
|
@@ -11,6 +11,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
limitNumber: {
|
|
15
|
+
type?: import("vue").PropType<boolean>;
|
|
16
|
+
default?: boolean;
|
|
17
|
+
};
|
|
14
18
|
id: {
|
|
15
19
|
type?: import("vue").PropType<string>;
|
|
16
20
|
default?: string;
|
|
@@ -163,6 +167,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
163
167
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
164
168
|
myValue: import("vue").Ref<string>;
|
|
165
169
|
inputBlur: () => void;
|
|
170
|
+
inputInput: () => void;
|
|
166
171
|
inputChange: import("lodash").DebouncedFunc<() => void>;
|
|
167
172
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
168
173
|
value: {
|
|
@@ -177,6 +182,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
177
182
|
type?: import("vue").PropType<string>;
|
|
178
183
|
default?: string;
|
|
179
184
|
};
|
|
185
|
+
limitNumber: {
|
|
186
|
+
type?: import("vue").PropType<boolean>;
|
|
187
|
+
default?: boolean;
|
|
188
|
+
};
|
|
180
189
|
id: {
|
|
181
190
|
type?: import("vue").PropType<string>;
|
|
182
191
|
default?: string;
|
|
@@ -11,6 +11,10 @@ export declare const EcanInput: import('../../utils/withInstall').SFCWithInstall
|
|
|
11
11
|
type?: import("vue").PropType<string>;
|
|
12
12
|
default?: string;
|
|
13
13
|
};
|
|
14
|
+
limitNumber: {
|
|
15
|
+
type?: import("vue").PropType<boolean>;
|
|
16
|
+
default?: boolean;
|
|
17
|
+
};
|
|
14
18
|
id: {
|
|
15
19
|
type?: import("vue").PropType<string>;
|
|
16
20
|
default?: string;
|
|
@@ -163,6 +167,7 @@ export declare const EcanInput: import('../../utils/withInstall').SFCWithInstall
|
|
|
163
167
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
164
168
|
myValue: import("vue").Ref<string>;
|
|
165
169
|
inputBlur: () => void;
|
|
170
|
+
inputInput: () => void;
|
|
166
171
|
inputChange: import("lodash").DebouncedFunc<() => void>;
|
|
167
172
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
168
173
|
value: {
|
|
@@ -177,6 +182,10 @@ export declare const EcanInput: import('../../utils/withInstall').SFCWithInstall
|
|
|
177
182
|
type?: import("vue").PropType<string>;
|
|
178
183
|
default?: string;
|
|
179
184
|
};
|
|
185
|
+
limitNumber: {
|
|
186
|
+
type?: import("vue").PropType<boolean>;
|
|
187
|
+
default?: boolean;
|
|
188
|
+
};
|
|
180
189
|
id: {
|
|
181
190
|
type?: import("vue").PropType<string>;
|
|
182
191
|
default?: string;
|
|
@@ -3,6 +3,7 @@ export interface InputProps extends Props {
|
|
|
3
3
|
value: string;
|
|
4
4
|
placeholder: string;
|
|
5
5
|
optionFontSize: string;
|
|
6
|
+
limitNumber: boolean;
|
|
6
7
|
}
|
|
7
8
|
export declare const inputProps: InputProps;
|
|
8
9
|
export declare const inputComponentProps: {
|
|
@@ -18,6 +19,10 @@ export declare const inputComponentProps: {
|
|
|
18
19
|
type?: import("vue").PropType<string>;
|
|
19
20
|
default?: string;
|
|
20
21
|
};
|
|
22
|
+
limitNumber: {
|
|
23
|
+
type?: import("vue").PropType<boolean>;
|
|
24
|
+
default?: boolean;
|
|
25
|
+
};
|
|
21
26
|
id: {
|
|
22
27
|
type?: import("vue").PropType<string>;
|
|
23
28
|
default?: string;
|
|
@@ -69,6 +69,10 @@ declare const _sfc_main: {
|
|
|
69
69
|
type?: import("vue").PropType<boolean>;
|
|
70
70
|
default?: boolean;
|
|
71
71
|
};
|
|
72
|
+
isLinkageSekectAll: {
|
|
73
|
+
type?: import("vue").PropType<boolean>;
|
|
74
|
+
default?: boolean;
|
|
75
|
+
};
|
|
72
76
|
id: {
|
|
73
77
|
type?: import("vue").PropType<string>;
|
|
74
78
|
default?: string;
|
|
@@ -223,6 +227,11 @@ declare const _sfc_main: {
|
|
|
223
227
|
}): {
|
|
224
228
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
225
229
|
treeData: any;
|
|
230
|
+
treeRenderKey: import("vue").Ref<number>;
|
|
231
|
+
dropdownStyle: {
|
|
232
|
+
width: string;
|
|
233
|
+
maxWidth: string;
|
|
234
|
+
};
|
|
226
235
|
filterTreeNode: (inputValue: string, treeNode: any) => boolean;
|
|
227
236
|
myValue: import("vue").Ref<any>;
|
|
228
237
|
loading: import("vue").Ref<boolean>;
|
|
@@ -69,6 +69,10 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
|
|
|
69
69
|
type?: import("vue").PropType<boolean>;
|
|
70
70
|
default?: boolean;
|
|
71
71
|
};
|
|
72
|
+
isLinkageSekectAll: {
|
|
73
|
+
type?: import("vue").PropType<boolean>;
|
|
74
|
+
default?: boolean;
|
|
75
|
+
};
|
|
72
76
|
id: {
|
|
73
77
|
type?: import("vue").PropType<string>;
|
|
74
78
|
default?: string;
|
|
@@ -223,6 +227,11 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
|
|
|
223
227
|
}): {
|
|
224
228
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
225
229
|
treeData: any;
|
|
230
|
+
treeRenderKey: import("vue").Ref<number>;
|
|
231
|
+
dropdownStyle: {
|
|
232
|
+
width: string;
|
|
233
|
+
maxWidth: string;
|
|
234
|
+
};
|
|
226
235
|
filterTreeNode: (inputValue: string, treeNode: any) => boolean;
|
|
227
236
|
myValue: import("vue").Ref<any>;
|
|
228
237
|
loading: import("vue").Ref<boolean>;
|
|
@@ -29,6 +29,7 @@ export interface TreeSelectProps extends Props {
|
|
|
29
29
|
};
|
|
30
30
|
selectAllOption: boolean;
|
|
31
31
|
hasAllCheck: boolean;
|
|
32
|
+
isLinkageSekectAll: boolean;
|
|
32
33
|
}
|
|
33
34
|
export declare const treeSelectProps: TreeSelectProps;
|
|
34
35
|
export declare const treeSelectComponentProps: {
|
|
@@ -92,6 +93,10 @@ export declare const treeSelectComponentProps: {
|
|
|
92
93
|
type?: import("vue").PropType<boolean>;
|
|
93
94
|
default?: boolean;
|
|
94
95
|
};
|
|
96
|
+
isLinkageSekectAll: {
|
|
97
|
+
type?: import("vue").PropType<boolean>;
|
|
98
|
+
default?: boolean;
|
|
99
|
+
};
|
|
95
100
|
id: {
|
|
96
101
|
type?: import("vue").PropType<string>;
|
|
97
102
|
default?: string;
|
|
@@ -421,7 +421,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
421
421
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
422
422
|
pagination: import("vue").ComputedRef<any>;
|
|
423
423
|
formatFn: (value: string | number, column: any) => string | number;
|
|
424
|
-
contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals") => "" | "upDown";
|
|
424
|
+
contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals" | "thousands") => "" | "upDown";
|
|
425
425
|
tableChange: ({ current }: {
|
|
426
426
|
current: number;
|
|
427
427
|
}, _filters: any, sorter: any) => void;
|
|
@@ -421,7 +421,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
|
|
|
421
421
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
422
422
|
pagination: import("vue").ComputedRef<any>;
|
|
423
423
|
formatFn: (value: string | number, column: any) => string | number;
|
|
424
|
-
contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals") => "" | "upDown";
|
|
424
|
+
contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals" | "thousands") => "" | "upDown";
|
|
425
425
|
tableChange: ({ current }: {
|
|
426
426
|
current: number;
|
|
427
427
|
}, _filters: any, sorter: any) => void;
|
|
@@ -36,8 +36,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
36
36
|
default?: string;
|
|
37
37
|
};
|
|
38
38
|
format: {
|
|
39
|
-
type?: import("vue").PropType<"" | "money" | "percentage" | "
|
|
40
|
-
default?: "" | "money" | "percentage" | "
|
|
39
|
+
type?: import("vue").PropType<"" | "money" | "percentage" | "thousands" | "percent">;
|
|
40
|
+
default?: "" | "money" | "percentage" | "thousands" | "percent";
|
|
41
41
|
};
|
|
42
42
|
href: {
|
|
43
43
|
type?: import("vue").PropType<string>;
|
|
@@ -601,8 +601,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
601
601
|
default?: string;
|
|
602
602
|
};
|
|
603
603
|
format: {
|
|
604
|
-
type?: import("vue").PropType<"" | "money" | "percentage" | "
|
|
605
|
-
default?: "" | "money" | "percentage" | "
|
|
604
|
+
type?: import("vue").PropType<"" | "money" | "percentage" | "thousands" | "percent">;
|
|
605
|
+
default?: "" | "money" | "percentage" | "thousands" | "percent";
|
|
606
606
|
};
|
|
607
607
|
href: {
|
|
608
608
|
type?: import("vue").PropType<string>;
|
|
@@ -36,8 +36,8 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
36
36
|
default?: string;
|
|
37
37
|
};
|
|
38
38
|
format: {
|
|
39
|
-
type?: import("vue").PropType<"" | "money" | "percentage" | "
|
|
40
|
-
default?: "" | "money" | "percentage" | "
|
|
39
|
+
type?: import("vue").PropType<"" | "money" | "percentage" | "thousands" | "percent">;
|
|
40
|
+
default?: "" | "money" | "percentage" | "thousands" | "percent";
|
|
41
41
|
};
|
|
42
42
|
href: {
|
|
43
43
|
type?: import("vue").PropType<string>;
|
|
@@ -601,8 +601,8 @@ export declare const EcanText: import("../../utils/withInstall").SFCWithInstall<
|
|
|
601
601
|
default?: string;
|
|
602
602
|
};
|
|
603
603
|
format: {
|
|
604
|
-
type?: import("vue").PropType<"" | "money" | "percentage" | "
|
|
605
|
-
default?: "" | "money" | "percentage" | "
|
|
604
|
+
type?: import("vue").PropType<"" | "money" | "percentage" | "thousands" | "percent">;
|
|
605
|
+
default?: "" | "money" | "percentage" | "thousands" | "percent";
|
|
606
606
|
};
|
|
607
607
|
href: {
|
|
608
608
|
type?: import("vue").PropType<string>;
|
|
@@ -101,8 +101,8 @@ export declare const textComponentProps: {
|
|
|
101
101
|
default?: string;
|
|
102
102
|
};
|
|
103
103
|
format: {
|
|
104
|
-
type?: import("vue").PropType<"" | "money" | "percentage" | "
|
|
105
|
-
default?: "" | "money" | "percentage" | "
|
|
104
|
+
type?: import("vue").PropType<"" | "money" | "percentage" | "thousands" | "percent">;
|
|
105
|
+
default?: "" | "money" | "percentage" | "thousands" | "percent";
|
|
106
106
|
};
|
|
107
107
|
href: {
|
|
108
108
|
type?: import("vue").PropType<string>;
|