@byteluck-fe/model-driven-controls 2.23.1-beta.2 → 2.23.1-beta.4
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/framework.js +7 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/framework.d.ts +4 -0
- package/package.json +2 -2
package/dist/esm/framework.js
CHANGED
|
@@ -129,6 +129,9 @@ export var UndersignedPerson = function UndersignedPerson(props) {
|
|
|
129
129
|
* 平台是否自动签署
|
|
130
130
|
* */ _define_property(this, "platformAutoSign", void 0);
|
|
131
131
|
/**
|
|
132
|
+
* 印章ID
|
|
133
|
+
* */ _define_property(this, "seal", void 0);
|
|
134
|
+
/**
|
|
132
135
|
* 备注
|
|
133
136
|
* */ _define_property(this, "remark", void 0);
|
|
134
137
|
var _props_type;
|
|
@@ -153,6 +156,10 @@ export var UndersignedPerson = function UndersignedPerson(props) {
|
|
|
153
156
|
});
|
|
154
157
|
var _props_signaturePosition;
|
|
155
158
|
this.signaturePosition = (_props_signaturePosition = props === null || props === void 0 ? void 0 : props.signaturePosition) !== null && _props_signaturePosition !== void 0 ? _props_signaturePosition : 'free';
|
|
159
|
+
var _props_seal;
|
|
160
|
+
this.seal = new RightVariable((_props_seal = props === null || props === void 0 ? void 0 : props.seal) !== null && _props_seal !== void 0 ? _props_seal : {
|
|
161
|
+
type: 'form'
|
|
162
|
+
});
|
|
156
163
|
var _props_platformAutoSign;
|
|
157
164
|
this.platformAutoSign = (_props_platformAutoSign = props === null || props === void 0 ? void 0 : props.platformAutoSign) !== null && _props_platformAutoSign !== void 0 ? _props_platformAutoSign : false;
|
|
158
165
|
var _props_posX;
|