@byteluck-fe/model-driven-controls 2.22.3-beta.5 → 2.22.3-beta.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.
- package/dist/esm/baseControls/BatchSubmissionListButton/designer.js +1 -1
- package/dist/esm/baseControls/ReferenceList/property.js +3 -3
- package/dist/esm/columnControls/FileColumn/designer.js +4 -0
- package/dist/esm/columnControls/FileColumn/property.js +21 -1
- package/dist/esm/formControls/Attachment/designer.js +4 -0
- package/dist/esm/formControls/Attachment/property.js +8 -1
- package/dist/esm/formControls/Checkbox/property.js +6 -6
- package/dist/esm/formControls/Radio/property.js +7 -6
- package/dist/esm/formControls/Select/property.js +6 -6
- package/dist/esm/formControls/SelectMultiple/property.js +6 -6
- package/dist/index.umd.js +1 -1
- package/dist/types/columnControls/FileColumn/property.d.ts +1 -0
- package/dist/types/formControls/Attachment/property.d.ts +1 -0
- package/package.json +5 -5
|
@@ -3,6 +3,7 @@ import { ColumnControlProperty } from '@byteluck-fe/model-driven-core';
|
|
|
3
3
|
* FileColumn 文件列
|
|
4
4
|
*/
|
|
5
5
|
declare class FileColumnControlProperty extends ColumnControlProperty {
|
|
6
|
+
operation: string[];
|
|
6
7
|
constructor(props?: Partial<FileColumnControlProperty>);
|
|
7
8
|
}
|
|
8
9
|
export default FileColumnControlProperty;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "2.22.3-beta.
|
|
3
|
+
"version": "2.22.3-beta.7",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-core": "2.22.3-beta.
|
|
30
|
-
"@byteluck-fe/model-driven-settings": "2.22.3-beta.
|
|
31
|
-
"@byteluck-fe/model-driven-shared": "2.22.3-beta.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "2.22.3-beta.7",
|
|
30
|
+
"@byteluck-fe/model-driven-settings": "2.22.3-beta.7",
|
|
31
|
+
"@byteluck-fe/model-driven-shared": "2.22.3-beta.7",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "c421bc84fc1ed9ee02ffc51cf23c09b3fbff4dc6"
|
|
35
35
|
}
|