next-element-vue 0.6.6 → 0.6.7
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.
|
@@ -37,7 +37,7 @@ export interface SearchColumnProps extends Column {
|
|
|
37
37
|
searchHide?: boolean;
|
|
38
38
|
searchMultiple?: boolean;
|
|
39
39
|
searchFormat?: string;
|
|
40
|
-
searchDisabledDate?:
|
|
40
|
+
searchDisabledDate?: Function;
|
|
41
41
|
searchEditable?: boolean;
|
|
42
42
|
searchShortcuts?: any;
|
|
43
43
|
searchMin?: number;
|
|
@@ -72,6 +72,7 @@ export interface FormColunmProps extends Column {
|
|
|
72
72
|
formDefaultValue?: any;
|
|
73
73
|
formPlaceholder?: string;
|
|
74
74
|
formDisabled?: string;
|
|
75
|
+
formEditDisabled?: boolean;
|
|
75
76
|
formClearable?: boolean;
|
|
76
77
|
formReadonly?: boolean;
|
|
77
78
|
formRequired?: boolean;
|
|
@@ -86,6 +87,8 @@ export interface FormColunmProps extends Column {
|
|
|
86
87
|
formMutiple?: boolean;
|
|
87
88
|
formDisabledDate?: Function;
|
|
88
89
|
formShortcuts?: any[];
|
|
90
|
+
formFormat?: string;
|
|
91
|
+
formAccept?: string;
|
|
89
92
|
formDivider?: any;
|
|
90
93
|
formRemark?: string;
|
|
91
94
|
formRules?: any[];
|
|
@@ -167,6 +170,7 @@ declare const _default: {
|
|
|
167
170
|
dialogTitle: string;
|
|
168
171
|
dialogWidth: string;
|
|
169
172
|
dialogFullscreen: boolean;
|
|
173
|
+
dialogFormParamsDefault: {};
|
|
170
174
|
closeOnClickModal: boolean;
|
|
171
175
|
formColumns: FormColunmProps | unknown;
|
|
172
176
|
formLabelWidth: string;
|
|
@@ -12,6 +12,7 @@ export interface FormItemProps {
|
|
|
12
12
|
defaultValue?: any;
|
|
13
13
|
placeholder?: string;
|
|
14
14
|
disabled?: boolean;
|
|
15
|
+
editDisabled?: boolean;
|
|
15
16
|
required?: boolean;
|
|
16
17
|
prefix?: Function;
|
|
17
18
|
suffix?: Function;
|
|
@@ -27,6 +28,7 @@ export interface FormItemProps {
|
|
|
27
28
|
hide?: boolean;
|
|
28
29
|
multiple?: boolean;
|
|
29
30
|
limit?: number;
|
|
31
|
+
accept?: string;
|
|
30
32
|
editable?: boolean;
|
|
31
33
|
rules?: any;
|
|
32
34
|
disabledDate?: Function;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "next-element-vue",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.7",
|
|
4
4
|
"author": {
|
|
5
5
|
"name": "huangteng",
|
|
6
6
|
"email": "htengweb@163.com"
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"next",
|
|
11
11
|
"element",
|
|
12
12
|
"vue3",
|
|
13
|
-
"
|
|
13
|
+
"labelimg",
|
|
14
|
+
"labelme"
|
|
14
15
|
],
|
|
15
16
|
"main": "dist/index.min.js",
|
|
16
17
|
"module": "dist/index.js",
|
|
@@ -30,30 +31,29 @@
|
|
|
30
31
|
},
|
|
31
32
|
"homepage": "https://junehunter.github.io/next-element-vue",
|
|
32
33
|
"dependencies": {
|
|
33
|
-
"@element-plus/icons-vue": "^2.1
|
|
34
|
+
"@element-plus/icons-vue": "^2.3.1",
|
|
34
35
|
"element-resize-detector": "^1.2.4",
|
|
35
36
|
"lodash-unified": "^1.0.3"
|
|
36
37
|
},
|
|
37
38
|
"peerDependencies": {
|
|
38
39
|
"@types/lodash-es": "^4.17.12",
|
|
39
40
|
"@vueuse/core": "^12.8.2",
|
|
40
|
-
"element-plus": "^2.
|
|
41
|
+
"element-plus": "^2.11.9",
|
|
41
42
|
"flv.js": "^1.6.2",
|
|
42
43
|
"lodash-es": "^4.17.21",
|
|
43
44
|
"mpegts.js": "~1.7.3",
|
|
44
|
-
"video.js": "^8.
|
|
45
|
-
"vue": "^3.5.
|
|
45
|
+
"video.js": "^8.23.4",
|
|
46
|
+
"vue": "^3.5.24",
|
|
46
47
|
"vue-i18n": "^11.1.11",
|
|
47
48
|
"vue-router": "^4.5.0"
|
|
48
49
|
},
|
|
49
50
|
"engines": {
|
|
50
|
-
"node": ">=
|
|
51
|
+
"node": ">=18"
|
|
51
52
|
},
|
|
52
53
|
"license": "MIT",
|
|
53
54
|
"pnpm": {
|
|
54
55
|
"overrides": {
|
|
55
|
-
"
|
|
56
|
-
"esbuild": "^0.25.8"
|
|
56
|
+
"esbuild@<=0.24.2": ">=0.25.0"
|
|
57
57
|
}
|
|
58
58
|
}
|
|
59
59
|
}
|