@newview/file-ui 1.1.33 → 1.1.34
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/README.md +2 -0
- package/dist/file-ui.js +3 -2
- package/dist/file-ui.umd.cjs +1 -1
- package/package.json +3 -3
package/dist/file-ui.js
CHANGED
|
@@ -19808,9 +19808,10 @@ class ComFormInstance extends BaseInstance {
|
|
|
19808
19808
|
* @param data
|
|
19809
19809
|
*/
|
|
19810
19810
|
__publicField(this, "signOnSuccess", (item, { result, img }) => {
|
|
19811
|
-
var _a;
|
|
19812
19811
|
this.props.formModel[item.model] = result;
|
|
19813
|
-
(
|
|
19812
|
+
if (item.signProp && item.signProp.onSignSuccess) {
|
|
19813
|
+
item.signProp.onSignSuccess({ result, img });
|
|
19814
|
+
}
|
|
19814
19815
|
});
|
|
19815
19816
|
this.props = props;
|
|
19816
19817
|
this.ctx = ctx;
|