@ecan-bi/datav 1.5.83 → 1.5.85
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 +4077 -4059
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +68 -68
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/tree-select/TreeSelect.vue.d.ts +11 -1
- package/types/control/tree-select/index.d.ts +11 -1
- package/types/control/tree-select/props.d.ts +11 -0
- package/types/setting/provider-config/drill-modal/CustomModal.vue.d.ts +1 -0
package/package.json
CHANGED
|
@@ -48,6 +48,14 @@ declare const _sfc_main: {
|
|
|
48
48
|
type?: import("vue").PropType<boolean>;
|
|
49
49
|
default?: boolean;
|
|
50
50
|
};
|
|
51
|
+
graphicConfig: {
|
|
52
|
+
type?: import("vue").PropType<{
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
}>;
|
|
55
|
+
default?: {
|
|
56
|
+
[key: string]: any;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
51
59
|
id: {
|
|
52
60
|
type?: import("vue").PropType<string>;
|
|
53
61
|
default?: string;
|
|
@@ -193,7 +201,9 @@ declare const _sfc_main: {
|
|
|
193
201
|
default?: string;
|
|
194
202
|
};
|
|
195
203
|
};
|
|
196
|
-
setup(props: any
|
|
204
|
+
setup(props: any, { expose }: {
|
|
205
|
+
expose: any;
|
|
206
|
+
}): {
|
|
197
207
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
198
208
|
treeData: any;
|
|
199
209
|
filterTreeNode: (inputValue: string, treeNode: any) => boolean;
|
|
@@ -48,6 +48,14 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
|
|
|
48
48
|
type?: import("vue").PropType<boolean>;
|
|
49
49
|
default?: boolean;
|
|
50
50
|
};
|
|
51
|
+
graphicConfig: {
|
|
52
|
+
type?: import("vue").PropType<{
|
|
53
|
+
[key: string]: any;
|
|
54
|
+
}>;
|
|
55
|
+
default?: {
|
|
56
|
+
[key: string]: any;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
51
59
|
id: {
|
|
52
60
|
type?: import("vue").PropType<string>;
|
|
53
61
|
default?: string;
|
|
@@ -193,7 +201,9 @@ export declare const EcanTreeSelect: import('../../utils/withInstall').SFCWithIn
|
|
|
193
201
|
default?: string;
|
|
194
202
|
};
|
|
195
203
|
};
|
|
196
|
-
setup(props: any
|
|
204
|
+
setup(props: any, { expose }: {
|
|
205
|
+
expose: any;
|
|
206
|
+
}): {
|
|
197
207
|
style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
|
|
198
208
|
treeData: any;
|
|
199
209
|
filterTreeNode: (inputValue: string, treeNode: any) => boolean;
|
|
@@ -24,6 +24,9 @@ export interface TreeSelectProps extends Props {
|
|
|
24
24
|
treeCheckable: boolean;
|
|
25
25
|
treeCheckStrictly: boolean;
|
|
26
26
|
selectFirstOption: boolean;
|
|
27
|
+
graphicConfig: {
|
|
28
|
+
[key: string]: any;
|
|
29
|
+
};
|
|
27
30
|
}
|
|
28
31
|
export declare const treeSelectProps: TreeSelectProps;
|
|
29
32
|
export declare const treeSelectComponentProps: {
|
|
@@ -71,6 +74,14 @@ export declare const treeSelectComponentProps: {
|
|
|
71
74
|
type?: import("vue").PropType<boolean>;
|
|
72
75
|
default?: boolean;
|
|
73
76
|
};
|
|
77
|
+
graphicConfig: {
|
|
78
|
+
type?: import("vue").PropType<{
|
|
79
|
+
[key: string]: any;
|
|
80
|
+
}>;
|
|
81
|
+
default?: {
|
|
82
|
+
[key: string]: any;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
74
85
|
id: {
|
|
75
86
|
type?: import("vue").PropType<string>;
|
|
76
87
|
default?: string;
|
|
@@ -21,6 +21,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
21
21
|
linkUrl: import("vue").Ref<string>;
|
|
22
22
|
isIndFullScreen: import("vue").Ref<boolean>;
|
|
23
23
|
modalTitle: import("vue").Ref<string>;
|
|
24
|
+
handleClose: () => void;
|
|
24
25
|
getContainer: () => Element;
|
|
25
26
|
onCancel: () => void;
|
|
26
27
|
toggleFullScreen: () => void;
|