@maxtropy/v-components 0.1.17-beta.26 → 0.1.17-beta.28
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/mx-vcomponents.es.js +44397 -16795
- package/dist/style.css +1 -1
- package/dist/types/components/echartsWithTheme/MxEchartsWithTheme.vue.d.ts +55 -0
- package/dist/types/components/echartsWithTheme/darkTheme.d.ts +104 -0
- package/dist/types/components/echartsWithTheme/index.d.ts +7 -0
- package/dist/types/components/echartsWithTheme/lightTheme.d.ts +104 -0
- package/dist/types/components/echartsWithTheme/pluginsEcharts.d.ts +2 -0
- package/dist/types/components/echartsWithTheme/utils.d.ts +10 -0
- package/dist/types/components/filter/MxFilter.vue.d.ts +1 -1
- package/dist/types/components/form/MxForm.vue.d.ts +3 -3
- package/dist/types/components/form/MxFormItem.vue.d.ts +1 -1
- package/dist/types/components/form/index.d.ts +3 -3
- package/dist/types/components/index.d.ts +2 -1
- package/dist/types/components/pagination/MxPagination.vue.d.ts +1 -1
- package/dist/types/components/popconfirm/MxPopconfirm.vue.d.ts +1 -1
- package/dist/types/components/tree/MxTree.vue.d.ts +1 -1
- package/package.json +3 -1
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import './pluginsEcharts';
|
|
2
|
+
import { Themes } from '../..';
|
|
3
|
+
declare function getInstance(): import("echarts/types/dist/shared").EChartsType | null | undefined;
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
5
|
+
option: any;
|
|
6
|
+
theme: Themes;
|
|
7
|
+
className?: string | undefined;
|
|
8
|
+
style?: any;
|
|
9
|
+
loading?: boolean | undefined;
|
|
10
|
+
type?: string | undefined;
|
|
11
|
+
onEvents?: Record<string, Function> | undefined;
|
|
12
|
+
empty?: {
|
|
13
|
+
isShowEmpty: boolean;
|
|
14
|
+
} | undefined;
|
|
15
|
+
params?: {
|
|
16
|
+
dataZoomExit?: boolean | undefined;
|
|
17
|
+
XTimeFormat?: string | undefined;
|
|
18
|
+
YUnit?: string[] | undefined;
|
|
19
|
+
} | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
getInstance: typeof getInstance;
|
|
22
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
23
|
+
option: any;
|
|
24
|
+
theme: Themes;
|
|
25
|
+
className?: string | undefined;
|
|
26
|
+
style?: any;
|
|
27
|
+
loading?: boolean | undefined;
|
|
28
|
+
type?: string | undefined;
|
|
29
|
+
onEvents?: Record<string, Function> | undefined;
|
|
30
|
+
empty?: {
|
|
31
|
+
isShowEmpty: boolean;
|
|
32
|
+
} | undefined;
|
|
33
|
+
params?: {
|
|
34
|
+
dataZoomExit?: boolean | undefined;
|
|
35
|
+
XTimeFormat?: string | undefined;
|
|
36
|
+
YUnit?: string[] | undefined;
|
|
37
|
+
} | undefined;
|
|
38
|
+
}>>>, {}, {}>, {
|
|
39
|
+
empty?(_: {}): any;
|
|
40
|
+
}>;
|
|
41
|
+
export default _default;
|
|
42
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
43
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
44
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
45
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
46
|
+
} : {
|
|
47
|
+
type: import('vue').PropType<T[K]>;
|
|
48
|
+
required: true;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
52
|
+
new (): {
|
|
53
|
+
$slots: S;
|
|
54
|
+
};
|
|
55
|
+
};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
export declare const darkTheme: (type?: string, XTimeFormat?: string, YUnit?: string[]) => {
|
|
2
|
+
title: {
|
|
3
|
+
textStyle: {
|
|
4
|
+
color: string;
|
|
5
|
+
fontSize: number;
|
|
6
|
+
fontWeight?: undefined;
|
|
7
|
+
};
|
|
8
|
+
subtextStyle: {
|
|
9
|
+
color: string;
|
|
10
|
+
fontSize: number;
|
|
11
|
+
};
|
|
12
|
+
left?: undefined;
|
|
13
|
+
};
|
|
14
|
+
legend: {
|
|
15
|
+
textStyle: {
|
|
16
|
+
color: string;
|
|
17
|
+
};
|
|
18
|
+
inactiveColor?: undefined;
|
|
19
|
+
};
|
|
20
|
+
tooltip: {
|
|
21
|
+
backgroundColor: string;
|
|
22
|
+
borderColor: string;
|
|
23
|
+
padding: number[];
|
|
24
|
+
textStyle: {
|
|
25
|
+
color: string;
|
|
26
|
+
};
|
|
27
|
+
trigger?: undefined;
|
|
28
|
+
formatter?: undefined;
|
|
29
|
+
};
|
|
30
|
+
backgroundColor?: undefined;
|
|
31
|
+
grid?: undefined;
|
|
32
|
+
dataZoom?: undefined;
|
|
33
|
+
xAxis?: undefined;
|
|
34
|
+
yAxis?: undefined;
|
|
35
|
+
} | {
|
|
36
|
+
backgroundColor: string;
|
|
37
|
+
grid: {
|
|
38
|
+
left: number;
|
|
39
|
+
right: number;
|
|
40
|
+
top: number;
|
|
41
|
+
bottom: number;
|
|
42
|
+
containLabel: boolean;
|
|
43
|
+
};
|
|
44
|
+
title: {
|
|
45
|
+
textStyle: {
|
|
46
|
+
color: string;
|
|
47
|
+
fontSize: number;
|
|
48
|
+
fontWeight: number;
|
|
49
|
+
};
|
|
50
|
+
left: number;
|
|
51
|
+
subtextStyle?: undefined;
|
|
52
|
+
};
|
|
53
|
+
legend: {
|
|
54
|
+
textStyle: {
|
|
55
|
+
color: string;
|
|
56
|
+
};
|
|
57
|
+
inactiveColor: string;
|
|
58
|
+
};
|
|
59
|
+
tooltip: {
|
|
60
|
+
trigger: string;
|
|
61
|
+
backgroundColor: string;
|
|
62
|
+
borderColor: string;
|
|
63
|
+
padding: number[];
|
|
64
|
+
textStyle: {
|
|
65
|
+
color: string;
|
|
66
|
+
};
|
|
67
|
+
formatter: (items: any) => string;
|
|
68
|
+
};
|
|
69
|
+
dataZoom: {
|
|
70
|
+
type: string;
|
|
71
|
+
bottom: number;
|
|
72
|
+
left: number;
|
|
73
|
+
right: number;
|
|
74
|
+
height: number;
|
|
75
|
+
textStyle: {
|
|
76
|
+
fontSize: number;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
xAxis: {
|
|
80
|
+
axisLabel: {
|
|
81
|
+
color: string;
|
|
82
|
+
};
|
|
83
|
+
axisLine: {
|
|
84
|
+
show: boolean;
|
|
85
|
+
lineStyle: {
|
|
86
|
+
color: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
yAxis: {
|
|
91
|
+
nameTextStyle: {
|
|
92
|
+
color: string;
|
|
93
|
+
};
|
|
94
|
+
axisLabel: {
|
|
95
|
+
color: string;
|
|
96
|
+
};
|
|
97
|
+
splitLine: {
|
|
98
|
+
show: boolean;
|
|
99
|
+
lineStyle: {
|
|
100
|
+
color: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
export declare const lightTheme: (type?: string, XTimeFormat?: string, YUnit?: string[]) => {
|
|
2
|
+
title: {
|
|
3
|
+
textStyle: {
|
|
4
|
+
color: string;
|
|
5
|
+
fontSize: number;
|
|
6
|
+
fontWeight?: undefined;
|
|
7
|
+
};
|
|
8
|
+
subtextStyle: {
|
|
9
|
+
color: string;
|
|
10
|
+
fontSize: number;
|
|
11
|
+
};
|
|
12
|
+
left?: undefined;
|
|
13
|
+
};
|
|
14
|
+
legend: {
|
|
15
|
+
textStyle: {
|
|
16
|
+
color: string;
|
|
17
|
+
};
|
|
18
|
+
inactiveColor?: undefined;
|
|
19
|
+
};
|
|
20
|
+
tooltip: {
|
|
21
|
+
backgroundColor: string;
|
|
22
|
+
borderColor: string;
|
|
23
|
+
padding: number[];
|
|
24
|
+
textStyle: {
|
|
25
|
+
color: string;
|
|
26
|
+
};
|
|
27
|
+
trigger?: undefined;
|
|
28
|
+
formatter?: undefined;
|
|
29
|
+
};
|
|
30
|
+
backgroundColor?: undefined;
|
|
31
|
+
grid?: undefined;
|
|
32
|
+
dataZoom?: undefined;
|
|
33
|
+
xAxis?: undefined;
|
|
34
|
+
yAxis?: undefined;
|
|
35
|
+
} | {
|
|
36
|
+
backgroundColor: string;
|
|
37
|
+
grid: {
|
|
38
|
+
left: number;
|
|
39
|
+
right: number;
|
|
40
|
+
top: number;
|
|
41
|
+
bottom: number;
|
|
42
|
+
containLabel: boolean;
|
|
43
|
+
};
|
|
44
|
+
title: {
|
|
45
|
+
textStyle: {
|
|
46
|
+
color: string;
|
|
47
|
+
fontSize: number;
|
|
48
|
+
fontWeight: number;
|
|
49
|
+
};
|
|
50
|
+
left: number;
|
|
51
|
+
subtextStyle?: undefined;
|
|
52
|
+
};
|
|
53
|
+
legend: {
|
|
54
|
+
textStyle: {
|
|
55
|
+
color: string;
|
|
56
|
+
};
|
|
57
|
+
inactiveColor: string;
|
|
58
|
+
};
|
|
59
|
+
tooltip: {
|
|
60
|
+
trigger: string;
|
|
61
|
+
backgroundColor: string;
|
|
62
|
+
borderColor: string;
|
|
63
|
+
padding: number[];
|
|
64
|
+
textStyle: {
|
|
65
|
+
color: string;
|
|
66
|
+
};
|
|
67
|
+
formatter: (items: any) => string;
|
|
68
|
+
};
|
|
69
|
+
dataZoom: {
|
|
70
|
+
type: string;
|
|
71
|
+
bottom: number;
|
|
72
|
+
left: number;
|
|
73
|
+
right: number;
|
|
74
|
+
height: number;
|
|
75
|
+
textStyle: {
|
|
76
|
+
fontSize: number;
|
|
77
|
+
};
|
|
78
|
+
};
|
|
79
|
+
xAxis: {
|
|
80
|
+
axisLabel: {
|
|
81
|
+
color: string;
|
|
82
|
+
};
|
|
83
|
+
axisLine: {
|
|
84
|
+
show: boolean;
|
|
85
|
+
lineStyle: {
|
|
86
|
+
color: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
yAxis: {
|
|
91
|
+
nameTextStyle: {
|
|
92
|
+
color: string;
|
|
93
|
+
};
|
|
94
|
+
axisLabel: {
|
|
95
|
+
color: string;
|
|
96
|
+
};
|
|
97
|
+
splitLine: {
|
|
98
|
+
show: boolean;
|
|
99
|
+
lineStyle: {
|
|
100
|
+
color: string;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* 深层次合并对象(可以支持无限层级的递归合并),数组不合并,直接用后者替换
|
|
3
|
+
* @param target 目标对象(被合并到)
|
|
4
|
+
* @param sources 其他对象(合并来源)
|
|
5
|
+
* @returns 合并后的新对象
|
|
6
|
+
*/
|
|
7
|
+
export declare function deepMergeWithArray(target: any, sources: any): any;
|
|
8
|
+
export declare function wrapArrayObj(baseYAxis: any, input: any): any[];
|
|
9
|
+
export declare function resolveCSSVars(colorList?: string[]): string[];
|
|
10
|
+
export declare const formatOptions: (themeOptions: any, option: any, dataZoomExit?: boolean) => any;
|
|
@@ -67,9 +67,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
67
67
|
}>>, {
|
|
68
68
|
onReset: Function;
|
|
69
69
|
model: Record<string, any>;
|
|
70
|
+
rules: Record<string, any>;
|
|
70
71
|
collapseOpen: boolean;
|
|
71
72
|
colSpan: number;
|
|
72
|
-
rules: Record<string, any>;
|
|
73
73
|
hasClear: boolean;
|
|
74
74
|
isPageFilter: boolean;
|
|
75
75
|
}, {}>;
|
|
@@ -102,14 +102,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
102
102
|
disabled: BooleanConstructor;
|
|
103
103
|
}>>, {
|
|
104
104
|
disabled: boolean;
|
|
105
|
-
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
106
|
-
inlineMessage: boolean;
|
|
107
|
-
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
108
105
|
labelPosition: "top" | "right" | "left";
|
|
109
106
|
requireAsteriskPosition: import("element-plus/es/utils/index.js").EpPropMergeType<StringConstructor, "right" | "left", unknown>;
|
|
107
|
+
labelWidth: import("element-plus/es/utils/index.js").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
110
108
|
labelSuffix: string;
|
|
111
109
|
inline: boolean;
|
|
110
|
+
inlineMessage: boolean;
|
|
112
111
|
statusIcon: boolean;
|
|
112
|
+
showMessage: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
113
113
|
validateOnRuleChange: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
114
114
|
hideRequiredAsterisk: import("element-plus/es/utils/index.js").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
115
115
|
scrollToError: boolean;
|
|
@@ -90,10 +90,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
90
90
|
label: string;
|
|
91
91
|
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
92
92
|
icon: boolean | Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
93
|
-
iconTooltip: string;
|
|
94
93
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
95
94
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
96
95
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
96
|
+
iconTooltip: string;
|
|
97
97
|
}, {}>, Partial<Record<NonNullable<string | number>, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>>>;
|
|
98
98
|
export default _default;
|
|
99
99
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
@@ -14,10 +14,10 @@ export declare const MxFormItem: {
|
|
|
14
14
|
label?: string | undefined;
|
|
15
15
|
required?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
16
16
|
icon?: boolean | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
17
|
-
iconTooltip?: string | undefined;
|
|
18
17
|
labelWidth?: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
|
|
19
18
|
inlineMessage?: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown> | undefined;
|
|
20
19
|
showMessage?: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown> | undefined;
|
|
20
|
+
iconTooltip?: string | undefined;
|
|
21
21
|
key?: string | number | symbol | undefined;
|
|
22
22
|
ref?: import("vue").VNodeRef | undefined;
|
|
23
23
|
ref_for?: boolean | undefined;
|
|
@@ -129,10 +129,10 @@ export declare const MxFormItem: {
|
|
|
129
129
|
label: string;
|
|
130
130
|
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
131
131
|
icon: boolean | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
132
|
-
iconTooltip: string;
|
|
133
132
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
134
133
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
135
134
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
135
|
+
iconTooltip: string;
|
|
136
136
|
}, {}, string, {}> & {
|
|
137
137
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
138
138
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -247,10 +247,10 @@ export declare const MxFormItem: {
|
|
|
247
247
|
label: string;
|
|
248
248
|
required: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
249
249
|
icon: boolean | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>;
|
|
250
|
-
iconTooltip: string;
|
|
251
250
|
labelWidth: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
|
252
251
|
inlineMessage: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, BooleanConstructor], unknown, unknown>;
|
|
253
252
|
showMessage: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
253
|
+
iconTooltip: string;
|
|
254
254
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
255
255
|
$slots: Partial<Record<NonNullable<string | number>, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>>;
|
|
256
256
|
});
|
|
@@ -43,4 +43,5 @@ import MxFormTitle from './formTitle';
|
|
|
43
43
|
import MxSubContent from './subContent';
|
|
44
44
|
import MxAutocomplete from './autocomplete';
|
|
45
45
|
import MxLoading from './loading';
|
|
46
|
-
|
|
46
|
+
import MxEcharts from './echartsWithTheme';
|
|
47
|
+
export { MxInput, MxInputNumber, MxButton, MxSwitch, MxSelect, MxOption, MxOptionGroup, MxRadio, MxRadioGroup, MxRadioButton, MxCheckbox, MxCheckboxButton, MxCheckboxGroup, SwitchStaff, HeadNavigation, SiderMenu, UserContent, SystemContent, BreadCrumb, BasicLayout, AuthorizedPermission, usePermission, useStaffTitle, useIntegratedAuthorityList, MxTooltip, MxPopover, MxDropdown, MxDropdownItem, MxDropdownMenu, MxAlert, MxDialog, MxSlider, MxDatePicker, MxTimePicker, MxPopconfirm, MxTree, MxTreeSelect, MxUpload, MxEllipsisSpan, MxEmpty, MxSteps, MxStep, MxTag, MxTable, MxTableColumn, MxPagination, MxForm, MxFormItem, MxTabs, MxTabPane, MxTimeSelect, MxCascader, MxFilter, MxWrapper, MxFormContent, MxFormTitle, MxSubContent, MxAutocomplete, MxLoading, MxEcharts, };
|
|
@@ -26,8 +26,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
26
26
|
default: () => number[];
|
|
27
27
|
};
|
|
28
28
|
}>>, {
|
|
29
|
-
totalCount: number;
|
|
30
29
|
layout: string;
|
|
30
|
+
totalCount: number;
|
|
31
31
|
pageSizes: number[];
|
|
32
32
|
}, {}>, Partial<Record<NonNullable<string | number>, (_: {}) => any>>>;
|
|
33
33
|
export default _default;
|
|
@@ -43,8 +43,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
43
43
|
icon: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>;
|
|
44
44
|
teleported: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
|
|
45
45
|
confirmButtonLoading: boolean;
|
|
46
|
-
persistent: boolean;
|
|
47
46
|
hideAfter: number;
|
|
47
|
+
persistent: boolean;
|
|
48
48
|
confirmButtonType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "text" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
49
49
|
cancelButtonType: import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "text" | "success" | "warning" | "info" | "primary" | "danger", unknown>;
|
|
50
50
|
iconColor: string;
|
|
@@ -65,7 +65,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
65
65
|
readonly load?: import("element-plus/es/components/tree/src/tree.type.js").LoadFunction | undefined;
|
|
66
66
|
readonly icon?: string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions> | undefined;
|
|
67
67
|
readonly emptyText?: string | undefined;
|
|
68
|
-
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
69
68
|
readonly nodeKey?: string | undefined;
|
|
70
69
|
readonly defaultCheckedKeys?: import("element-plus/es/components/tree/src/tree.type.js").TreeKey[] | undefined;
|
|
71
70
|
readonly defaultExpandedKeys?: import("element-plus/es/components/tree/src/tree.type.js").TreeKey[] | undefined;
|
|
@@ -74,6 +73,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
74
73
|
readonly allowDrag?: Function | undefined;
|
|
75
74
|
readonly allowDrop?: Function | undefined;
|
|
76
75
|
readonly filterNodeMethod?: import("element-plus/es/components/tree/src/tree.type.js").FilterNodeMethodFunction | undefined;
|
|
76
|
+
"onCurrent-change"?: ((...args: any[]) => any) | undefined;
|
|
77
77
|
"onNode-expand"?: ((...args: any[]) => any) | undefined;
|
|
78
78
|
onCheck?: ((...args: any[]) => any) | undefined;
|
|
79
79
|
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maxtropy/v-components",
|
|
3
|
-
"version": "0.1.17-beta.
|
|
3
|
+
"version": "0.1.17-beta.28",
|
|
4
4
|
"files": [
|
|
5
5
|
"dist"
|
|
6
6
|
],
|
|
@@ -71,6 +71,8 @@
|
|
|
71
71
|
"@element-plus/icons-vue": "^2.3.1",
|
|
72
72
|
"@types/lodash-es": "^4.17.7",
|
|
73
73
|
"classnames": "^2.5.1",
|
|
74
|
+
"echarts": "^5.5.0",
|
|
75
|
+
"vue-echarts": "^7.0.0",
|
|
74
76
|
"element-plus": ">=2.3.4",
|
|
75
77
|
"js-cookie": "^3.0.1",
|
|
76
78
|
"lodash-es": ">=4",
|