@byteluck-fe/model-driven-controls 2.23.1-beta.1 → 2.23.1-beta.2

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.
@@ -120,6 +120,15 @@ export var UndersignedPerson = function UndersignedPerson(props) {
120
120
  * 指定位置
121
121
  * */ _define_property(this, "indexSignature", void 0);
122
122
  /**
123
+ * 指定X轴位置
124
+ * */ _define_property(this, "posX", void 0);
125
+ /**
126
+ * 指定Y轴位置
127
+ * */ _define_property(this, "posY", void 0);
128
+ /**
129
+ * 平台是否自动签署
130
+ * */ _define_property(this, "platformAutoSign", void 0);
131
+ /**
123
132
  * 备注
124
133
  * */ _define_property(this, "remark", void 0);
125
134
  var _props_type;
@@ -144,6 +153,12 @@ export var UndersignedPerson = function UndersignedPerson(props) {
144
153
  });
145
154
  var _props_signaturePosition;
146
155
  this.signaturePosition = (_props_signaturePosition = props === null || props === void 0 ? void 0 : props.signaturePosition) !== null && _props_signaturePosition !== void 0 ? _props_signaturePosition : 'free';
156
+ var _props_platformAutoSign;
157
+ this.platformAutoSign = (_props_platformAutoSign = props === null || props === void 0 ? void 0 : props.platformAutoSign) !== null && _props_platformAutoSign !== void 0 ? _props_platformAutoSign : false;
158
+ var _props_posX;
159
+ this.posX = (_props_posX = props === null || props === void 0 ? void 0 : props.posX) !== null && _props_posX !== void 0 ? _props_posX : 0;
160
+ var _props_posY;
161
+ this.posY = (_props_posY = props === null || props === void 0 ? void 0 : props.posY) !== null && _props_posY !== void 0 ? _props_posY : 0;
147
162
  var _props_remark;
148
163
  this.remark = (_props_remark = props === null || props === void 0 ? void 0 : props.remark) !== null && _props_remark !== void 0 ? _props_remark : '';
149
164
  };