@byteluck-fe/model-driven-controls 2.23.1 → 2.23.2-beta.0
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/formControls/ElectronicSignature/property.js +13 -0
- package/dist/esm/formControls/Employee2/designer.js +6 -0
- package/dist/esm/framework.js +35 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/formControls/Employee2/designer.d.ts +1 -0
- package/dist/types/framework.d.ts +28 -0
- package/package.json +5 -5
|
@@ -11,6 +11,7 @@ declare class Employee2Control extends DesignerFormControl {
|
|
|
11
11
|
required: boolean;
|
|
12
12
|
}[];
|
|
13
13
|
static controlFieldType: FieldTypes;
|
|
14
|
+
static readonly controlEventKeys: string[];
|
|
14
15
|
static readonly setting: SettingOption[];
|
|
15
16
|
readonly props: Employee2Property;
|
|
16
17
|
constructor(props?: Partial<Schema<'employee2'>>);
|
|
@@ -89,6 +89,34 @@ export declare class UndersignedPerson {
|
|
|
89
89
|
* 指定位置
|
|
90
90
|
* */
|
|
91
91
|
indexSignature: RightVariable;
|
|
92
|
+
/**
|
|
93
|
+
* 指定X轴位置
|
|
94
|
+
* */
|
|
95
|
+
posX?: number;
|
|
96
|
+
/**
|
|
97
|
+
* 指定Y轴位置
|
|
98
|
+
* */
|
|
99
|
+
posY?: number;
|
|
100
|
+
/**
|
|
101
|
+
* 平台是否自动签署
|
|
102
|
+
* */
|
|
103
|
+
platformAutoSign: boolean;
|
|
104
|
+
/**
|
|
105
|
+
* 是否需要添加签署日期 0-禁止 1-必须 2-不限制,默认0
|
|
106
|
+
* */
|
|
107
|
+
signDateBeanType: 0 | 1 | 2;
|
|
108
|
+
/**
|
|
109
|
+
* 签署日期字体大小
|
|
110
|
+
* */
|
|
111
|
+
signDateFontSize?: number;
|
|
112
|
+
/**
|
|
113
|
+
* 签署日期格式
|
|
114
|
+
* */
|
|
115
|
+
signDateFormat?: string;
|
|
116
|
+
/**
|
|
117
|
+
* 印章ID
|
|
118
|
+
* */
|
|
119
|
+
seal: RightVariable;
|
|
92
120
|
/**
|
|
93
121
|
* 备注
|
|
94
122
|
* */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "2.23.
|
|
3
|
+
"version": "2.23.2-beta.0",
|
|
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.23.
|
|
30
|
-
"@byteluck-fe/model-driven-settings": "2.23.
|
|
31
|
-
"@byteluck-fe/model-driven-shared": "2.23.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "2.23.2",
|
|
30
|
+
"@byteluck-fe/model-driven-settings": "2.23.2",
|
|
31
|
+
"@byteluck-fe/model-driven-shared": "2.23.2",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "27441370d360a06cc3594f59a533227d1b07d862"
|
|
35
35
|
}
|