bhl-forms 0.1.18 → 0.1.20
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.
|
@@ -9444,7 +9444,7 @@ var keyValOverlap = (o1, o2) => {
|
|
|
9444
9444
|
};
|
|
9445
9445
|
var strSubUrl = function strSubUrl2(str, obj) {
|
|
9446
9446
|
var d3 = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : "";
|
|
9447
|
-
return str.replace(/\${(.*?)}/g, (x2, g) => encodeURIComponent(_getKey(obj, g)
|
|
9447
|
+
return str.replace(/\${(.*?)}/g, (x2, g) => encodeURIComponent(_getKey(obj, g) || d3));
|
|
9448
9448
|
};
|
|
9449
9449
|
function usePrepop() {
|
|
9450
9450
|
var prepopSettings = {};
|
|
@@ -18097,7 +18097,7 @@ var fireStepEvent = (formNode) => (stepResult, stepHistory2, stepQueue2) => {
|
|
|
18097
18097
|
}
|
|
18098
18098
|
var step_values = null;
|
|
18099
18099
|
try {
|
|
18100
|
-
scrollAnchor(formNode)
|
|
18100
|
+
setTimeout(scrollAnchor(formNode), 100);
|
|
18101
18101
|
if (stepHistory2.value.length > 0) {
|
|
18102
18102
|
step_values = flattenObj(formNode.value[stepHistory2.value[stepHistory2.value.length - 1]] || {});
|
|
18103
18103
|
}
|