@byteluck-fe/model-driven-controls 2.23.1-beta.4 → 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.
|
@@ -135,6 +135,12 @@ var Employee2Control = /*#__PURE__*/ function(DesignerFormControl) {
|
|
|
135
135
|
return Employee2Control;
|
|
136
136
|
}(DesignerFormControl);
|
|
137
137
|
_define_property(Employee2Control, "controlFieldType", FieldTypes.EMPLOYEES);
|
|
138
|
+
_define_property(Employee2Control, "controlEventKeys", [
|
|
139
|
+
'on_change',
|
|
140
|
+
'on_focus',
|
|
141
|
+
'on_blur',
|
|
142
|
+
'on_option_selected'
|
|
143
|
+
]);
|
|
138
144
|
_define_property(Employee2Control, "setting", [
|
|
139
145
|
{
|
|
140
146
|
key: 'data-bind',
|
package/dist/esm/framework.js
CHANGED
|
@@ -129,6 +129,15 @@ export var UndersignedPerson = function UndersignedPerson(props) {
|
|
|
129
129
|
* 平台是否自动签署
|
|
130
130
|
* */ _define_property(this, "platformAutoSign", void 0);
|
|
131
131
|
/**
|
|
132
|
+
* 是否需要添加签署日期 0-禁止 1-必须 2-不限制,默认0
|
|
133
|
+
* */ _define_property(this, "signDateBeanType", void 0);
|
|
134
|
+
/**
|
|
135
|
+
* 签署日期字体大小
|
|
136
|
+
* */ _define_property(this, "signDateFontSize", void 0);
|
|
137
|
+
/**
|
|
138
|
+
* 签署日期格式
|
|
139
|
+
* */ _define_property(this, "signDateFormat", void 0);
|
|
140
|
+
/**
|
|
132
141
|
* 印章ID
|
|
133
142
|
* */ _define_property(this, "seal", void 0);
|
|
134
143
|
/**
|
|
@@ -162,6 +171,10 @@ export var UndersignedPerson = function UndersignedPerson(props) {
|
|
|
162
171
|
});
|
|
163
172
|
var _props_platformAutoSign;
|
|
164
173
|
this.platformAutoSign = (_props_platformAutoSign = props === null || props === void 0 ? void 0 : props.platformAutoSign) !== null && _props_platformAutoSign !== void 0 ? _props_platformAutoSign : false;
|
|
174
|
+
var _props_signDateBeanType;
|
|
175
|
+
this.signDateBeanType = (_props_signDateBeanType = props === null || props === void 0 ? void 0 : props.signDateBeanType) !== null && _props_signDateBeanType !== void 0 ? _props_signDateBeanType : 0;
|
|
176
|
+
var _props_signDateFontSize;
|
|
177
|
+
this.signDateFontSize = (_props_signDateFontSize = props === null || props === void 0 ? void 0 : props.signDateFontSize) !== null && _props_signDateFontSize !== void 0 ? _props_signDateFontSize : 12;
|
|
165
178
|
var _props_posX;
|
|
166
179
|
this.posX = (_props_posX = props === null || props === void 0 ? void 0 : props.posX) !== null && _props_posX !== void 0 ? _props_posX : 0;
|
|
167
180
|
var _props_posY;
|