next-element-vue 0.6.9 → 0.6.11
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.css +4 -4
- package/dist/index.js +3 -3
- package/dist/packages/components/crud-table/src/config.d.ts +5 -0
- package/dist/packages/components/form/src/config.d.ts +1 -0
- package/dist/packages/components/layout/src/columns/widgets/side-menu.d.ts +2 -0
- package/dist/packages/components/layout/src/widgets/layout-setting.d.ts +1 -0
- package/dist/packages/components/menu/index.d.ts +9 -0
- package/dist/packages/components/menu/src/index.d.ts +9 -0
- package/dist/packages/hooks/use-locale/index.d.ts +42 -3
- package/dist/packages/locale/lang/en.d.ts +14 -1
- package/dist/packages/locale/lang/zh-cn.d.ts +14 -1
- package/dist/packages/locale/lang/zh-tw.d.ts +14 -1
- package/package.json +3 -3
|
@@ -30,6 +30,7 @@ export interface SearchColumnProps extends Column {
|
|
|
30
30
|
searchType?: string;
|
|
31
31
|
searchSort?: number;
|
|
32
32
|
searchLabel?: string;
|
|
33
|
+
showSearchLabel?: boolean;
|
|
33
34
|
searchLabelWidth?: string | number;
|
|
34
35
|
searchDefaultValue?: any;
|
|
35
36
|
searchDisabled?: boolean;
|
|
@@ -99,6 +100,8 @@ export interface FormColunmProps extends Column {
|
|
|
99
100
|
formLoadDicData?: Function;
|
|
100
101
|
formAccordion?: boolean;
|
|
101
102
|
onChangeForm?: Function;
|
|
103
|
+
formFilterable?: boolean;
|
|
104
|
+
formAllowCreate?: boolean;
|
|
102
105
|
formNodeKey?: string;
|
|
103
106
|
formCheckStrictly?: boolean;
|
|
104
107
|
formLeafOnly?: boolean;
|
|
@@ -170,6 +173,8 @@ declare const _default: {
|
|
|
170
173
|
dialogTitle: string;
|
|
171
174
|
dialogWidth: string;
|
|
172
175
|
dialogFullscreen: boolean;
|
|
176
|
+
dialogFullscreenBtn: boolean;
|
|
177
|
+
dialogDraggable: boolean;
|
|
173
178
|
dialogFormParamsDefault: {};
|
|
174
179
|
closeOnClickModal: boolean;
|
|
175
180
|
formColumns: FormColunmProps | unknown;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
config: any;
|
|
3
|
+
t: import("packages/hooks").Translator;
|
|
3
4
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
4
5
|
export default _default;
|
|
@@ -21,6 +21,10 @@ export declare const NextMenu: import("../../utils/install").SFCWithInstall<impo
|
|
|
21
21
|
type: import("vue").PropType<import("./src/interface").MenuItemInterface[]>;
|
|
22
22
|
default: () => any[];
|
|
23
23
|
};
|
|
24
|
+
collapse: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
default: boolean;
|
|
27
|
+
};
|
|
24
28
|
}>, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
25
29
|
className: {
|
|
26
30
|
type: StringConstructor;
|
|
@@ -43,11 +47,16 @@ export declare const NextMenu: import("../../utils/install").SFCWithInstall<impo
|
|
|
43
47
|
type: import("vue").PropType<import("./src/interface").MenuItemInterface[]>;
|
|
44
48
|
default: () => any[];
|
|
45
49
|
};
|
|
50
|
+
collapse: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: boolean;
|
|
53
|
+
};
|
|
46
54
|
}>> & Readonly<{}>, {
|
|
47
55
|
className: string;
|
|
48
56
|
style: import("vue").CSSProperties;
|
|
49
57
|
router: boolean;
|
|
50
58
|
mode: "horizontal" | "vertical";
|
|
51
59
|
menuTree: import("./src/interface").MenuItemInterface[];
|
|
60
|
+
collapse: boolean;
|
|
52
61
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>> & Record<string, any>;
|
|
53
62
|
export default NextMenu;
|
|
@@ -22,6 +22,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
22
22
|
type: PropType<MenuItemInterface[]>;
|
|
23
23
|
default: () => any[];
|
|
24
24
|
};
|
|
25
|
+
collapse: {
|
|
26
|
+
type: BooleanConstructor;
|
|
27
|
+
default: boolean;
|
|
28
|
+
};
|
|
25
29
|
}>, () => any, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
26
30
|
className: {
|
|
27
31
|
type: StringConstructor;
|
|
@@ -44,11 +48,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
44
48
|
type: PropType<MenuItemInterface[]>;
|
|
45
49
|
default: () => any[];
|
|
46
50
|
};
|
|
51
|
+
collapse: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
47
55
|
}>> & Readonly<{}>, {
|
|
48
56
|
className: string;
|
|
49
57
|
style: CSSProperties;
|
|
50
58
|
router: boolean;
|
|
51
59
|
mode: "horizontal" | "vertical";
|
|
52
60
|
menuTree: MenuItemInterface[];
|
|
61
|
+
collapse: boolean;
|
|
53
62
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
54
63
|
export default _default;
|
|
@@ -72,7 +72,20 @@ export declare const localeLang: {
|
|
|
72
72
|
tabsLeft: string;
|
|
73
73
|
tabsRight: string;
|
|
74
74
|
tabsAll: string;
|
|
75
|
-
|
|
75
|
+
setting: {
|
|
76
|
+
systemSetting: string;
|
|
77
|
+
globalTheme: string;
|
|
78
|
+
themeColor: string;
|
|
79
|
+
darkMode: string;
|
|
80
|
+
headerBackground: string;
|
|
81
|
+
headerTextColor: string;
|
|
82
|
+
headerActiveTextColor: string;
|
|
83
|
+
headerGradient: string;
|
|
84
|
+
layoutMode: string;
|
|
85
|
+
isShowTab: string;
|
|
86
|
+
saveSetting: string;
|
|
87
|
+
resetSetting: string;
|
|
88
|
+
};
|
|
76
89
|
};
|
|
77
90
|
labelimg: {
|
|
78
91
|
saveTxt: string;
|
|
@@ -168,7 +181,20 @@ export declare const localeLang: {
|
|
|
168
181
|
tabsLeft: string;
|
|
169
182
|
tabsRight: string;
|
|
170
183
|
tabsAll: string;
|
|
171
|
-
|
|
184
|
+
setting: {
|
|
185
|
+
systemSetting: string;
|
|
186
|
+
globalTheme: string;
|
|
187
|
+
themeColor: string;
|
|
188
|
+
darkMode: string;
|
|
189
|
+
headerBackground: string;
|
|
190
|
+
headerTextColor: string;
|
|
191
|
+
headerActiveTextColor: string;
|
|
192
|
+
headerGradient: string;
|
|
193
|
+
layoutMode: string;
|
|
194
|
+
isShowTab: string;
|
|
195
|
+
saveSetting: string;
|
|
196
|
+
resetSetting: string;
|
|
197
|
+
};
|
|
172
198
|
};
|
|
173
199
|
labelimg: {
|
|
174
200
|
saveTxt: string;
|
|
@@ -264,7 +290,20 @@ export declare const localeLang: {
|
|
|
264
290
|
tabsLeft: string;
|
|
265
291
|
tabsRight: string;
|
|
266
292
|
tabsAll: string;
|
|
267
|
-
|
|
293
|
+
setting: {
|
|
294
|
+
systemSetting: string;
|
|
295
|
+
globalTheme: string;
|
|
296
|
+
themeColor: string;
|
|
297
|
+
darkMode: string;
|
|
298
|
+
headerBackground: string;
|
|
299
|
+
headerTextColor: string;
|
|
300
|
+
headerActiveTextColor: string;
|
|
301
|
+
headerGradient: string;
|
|
302
|
+
layoutMode: string;
|
|
303
|
+
isShowTab: string;
|
|
304
|
+
saveSetting: string;
|
|
305
|
+
resetSetting: string;
|
|
306
|
+
};
|
|
268
307
|
};
|
|
269
308
|
labelimg: {
|
|
270
309
|
saveTxt: string;
|
|
@@ -65,7 +65,20 @@ declare const _default: {
|
|
|
65
65
|
tabsLeft: string;
|
|
66
66
|
tabsRight: string;
|
|
67
67
|
tabsAll: string;
|
|
68
|
-
|
|
68
|
+
setting: {
|
|
69
|
+
systemSetting: string;
|
|
70
|
+
globalTheme: string;
|
|
71
|
+
themeColor: string;
|
|
72
|
+
darkMode: string;
|
|
73
|
+
headerBackground: string;
|
|
74
|
+
headerTextColor: string;
|
|
75
|
+
headerActiveTextColor: string;
|
|
76
|
+
headerGradient: string;
|
|
77
|
+
layoutMode: string;
|
|
78
|
+
isShowTab: string;
|
|
79
|
+
saveSetting: string;
|
|
80
|
+
resetSetting: string;
|
|
81
|
+
};
|
|
69
82
|
};
|
|
70
83
|
labelimg: {
|
|
71
84
|
saveTxt: string;
|
|
@@ -65,7 +65,20 @@ declare const _default: {
|
|
|
65
65
|
tabsLeft: string;
|
|
66
66
|
tabsRight: string;
|
|
67
67
|
tabsAll: string;
|
|
68
|
-
|
|
68
|
+
setting: {
|
|
69
|
+
systemSetting: string;
|
|
70
|
+
globalTheme: string;
|
|
71
|
+
themeColor: string;
|
|
72
|
+
darkMode: string;
|
|
73
|
+
headerBackground: string;
|
|
74
|
+
headerTextColor: string;
|
|
75
|
+
headerActiveTextColor: string;
|
|
76
|
+
headerGradient: string;
|
|
77
|
+
layoutMode: string;
|
|
78
|
+
isShowTab: string;
|
|
79
|
+
saveSetting: string;
|
|
80
|
+
resetSetting: string;
|
|
81
|
+
};
|
|
69
82
|
};
|
|
70
83
|
labelimg: {
|
|
71
84
|
saveTxt: string;
|
|
@@ -65,7 +65,20 @@ declare const _default: {
|
|
|
65
65
|
tabsLeft: string;
|
|
66
66
|
tabsRight: string;
|
|
67
67
|
tabsAll: string;
|
|
68
|
-
|
|
68
|
+
setting: {
|
|
69
|
+
systemSetting: string;
|
|
70
|
+
globalTheme: string;
|
|
71
|
+
themeColor: string;
|
|
72
|
+
darkMode: string;
|
|
73
|
+
headerBackground: string;
|
|
74
|
+
headerTextColor: string;
|
|
75
|
+
headerActiveTextColor: string;
|
|
76
|
+
headerGradient: string;
|
|
77
|
+
layoutMode: string;
|
|
78
|
+
isShowTab: string;
|
|
79
|
+
saveSetting: string;
|
|
80
|
+
resetSetting: string;
|
|
81
|
+
};
|
|
69
82
|
};
|
|
70
83
|
labelimg: {
|
|
71
84
|
saveTxt: string;
|
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-element-vue",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.11",
|
|
4
4
|
"author": {
|
|
5
|
-
"name": "
|
|
6
|
-
"email": "
|
|
5
|
+
"name": "htengweb",
|
|
6
|
+
"email": "junehunter@163.com"
|
|
7
7
|
},
|
|
8
8
|
"description": "Component library based on element-plus secondary encapsulation",
|
|
9
9
|
"keywords": [
|