impaktapps-ui-builder 0.0.409-t → 0.0.409-v
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/impaktapps-ui-builder.es.js +6 -5
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +8 -8
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/runtime/services/events.ts +1 -2
- package/src/impaktapps-ui-builder/runtime/services/service.ts +1 -0
|
@@ -1128,7 +1128,7 @@ var lodash = { exports: {} };
|
|
|
1128
1128
|
}
|
|
1129
1129
|
var runInContext = function runInContext2(context) {
|
|
1130
1130
|
context = context == null ? root : _2.defaults(root.Object(), context, _2.pick(root, contextProps));
|
|
1131
|
-
var Array2 = context.Array, Date = context.Date,
|
|
1131
|
+
var Array2 = context.Array, Date = context.Date, Error2 = context.Error, Function2 = context.Function, Math = context.Math, Object2 = context.Object, RegExp2 = context.RegExp, String = context.String, TypeError = context.TypeError;
|
|
1132
1132
|
var arrayProto = Array2.prototype, funcProto = Function2.prototype, objectProto = Object2.prototype;
|
|
1133
1133
|
var coreJsData = context["__core-js_shared__"];
|
|
1134
1134
|
var funcToString = funcProto.toString;
|
|
@@ -4531,7 +4531,7 @@ var lodash = { exports: {} };
|
|
|
4531
4531
|
}
|
|
4532
4532
|
function isNative(value) {
|
|
4533
4533
|
if (isMaskable(value)) {
|
|
4534
|
-
throw new
|
|
4534
|
+
throw new Error2(CORE_ERROR_TEXT);
|
|
4535
4535
|
}
|
|
4536
4536
|
return baseIsNative(value);
|
|
4537
4537
|
}
|
|
@@ -5072,7 +5072,7 @@ var lodash = { exports: {} };
|
|
|
5072
5072
|
if (!variable) {
|
|
5073
5073
|
source = "with (obj) {\n" + source + "\n}\n";
|
|
5074
5074
|
} else if (reForbiddenIdentifierChars.test(variable)) {
|
|
5075
|
-
throw new
|
|
5075
|
+
throw new Error2(INVALID_TEMPL_VAR_ERROR_TEXT);
|
|
5076
5076
|
}
|
|
5077
5077
|
source = (isEvaluating ? source.replace(reEmptyStringLeading, "") : source).replace(reEmptyStringMiddle, "$1").replace(reEmptyStringTrailing, "$1;");
|
|
5078
5078
|
source = "function(" + (variable || "obj") + ") {\n" + (variable ? "" : "obj || (obj = {});\n") + "var __t, __p = ''" + (isEscaping ? ", __e = _.escape" : "") + (isEvaluating ? ", __j = Array.prototype.join;\nfunction print() { __p += __j.call(arguments, '') }\n" : ";\n") + source + "return __p\n}";
|
|
@@ -5191,7 +5191,7 @@ var lodash = { exports: {} };
|
|
|
5191
5191
|
try {
|
|
5192
5192
|
return apply(func, undefined$1, args);
|
|
5193
5193
|
} catch (e) {
|
|
5194
|
-
return isError(e) ? e : new
|
|
5194
|
+
return isError(e) ? e : new Error2(e);
|
|
5195
5195
|
}
|
|
5196
5196
|
});
|
|
5197
5197
|
var bindAll = flatRest(function(object, methodNames) {
|
|
@@ -8455,7 +8455,7 @@ const executeEvents = (params2) => {
|
|
|
8455
8455
|
if (params2.config.isSync !== "Yes") {
|
|
8456
8456
|
return shouldEventExecute(params2).then((shouldExecute2) => {
|
|
8457
8457
|
if (!shouldExecute2) {
|
|
8458
|
-
|
|
8458
|
+
throw new Error("onStart Event not allow to run Parent Events");
|
|
8459
8459
|
}
|
|
8460
8460
|
return executeEventsHandler(params2);
|
|
8461
8461
|
}).then((response) => {
|
|
@@ -8747,6 +8747,7 @@ const extractEvents = (eventConfig) => {
|
|
|
8747
8747
|
return eventGroups;
|
|
8748
8748
|
};
|
|
8749
8749
|
var service = (funcParams) => {
|
|
8750
|
+
eventGroups = {};
|
|
8750
8751
|
if (pageData) {
|
|
8751
8752
|
if (!lodash.exports.isEmpty(pageData) && typeof pageData === "object") {
|
|
8752
8753
|
eventGroups = extractEvents(pageData == null ? void 0 : pageData.config);
|