@bpmn-io/form-js-viewer 1.16.0 → 1.17.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/index.cjs +1 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.es.js +1 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -12,7 +12,6 @@ var luxon = require('luxon');
|
|
|
12
12
|
var flatpickr = require('flatpickr');
|
|
13
13
|
var React = require('preact/compat');
|
|
14
14
|
var DOMPurify = require('dompurify');
|
|
15
|
-
var lodash = require('lodash');
|
|
16
15
|
var didi = require('didi');
|
|
17
16
|
var feelin = require('feelin');
|
|
18
17
|
var feelers = require('feelers');
|
|
@@ -5118,7 +5117,7 @@ function ExpressionField(props) {
|
|
|
5118
5117
|
});
|
|
5119
5118
|
}, [field, evaluationMemo, onChange]);
|
|
5120
5119
|
hooks.useEffect(() => {
|
|
5121
|
-
if (computeOn !== 'change' ||
|
|
5120
|
+
if (computeOn !== 'change' || isEqual(evaluationMemo, value) || !expressionLoopPreventer.registerExpressionExecution(this)) {
|
|
5122
5121
|
return;
|
|
5123
5122
|
}
|
|
5124
5123
|
sendValue();
|