@formio/js 5.0.0-rc.46 → 5.0.0-rc.47
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/formio.embed.js +1 -1
- package/dist/formio.embed.min.js +1 -1
- package/dist/formio.embed.min.js.LICENSE.txt +1 -1
- package/dist/formio.form.js +3 -3
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.form.min.js.LICENSE.txt +1 -1
- package/dist/formio.full.js +3 -3
- package/dist/formio.full.min.js +1 -1
- package/dist/formio.full.min.js.LICENSE.txt +1 -1
- package/dist/formio.js +2 -2
- package/dist/formio.min.js +1 -1
- package/dist/formio.min.js.LICENSE.txt +1 -1
- package/dist/formio.utils.js +1 -1
- package/dist/formio.utils.min.js +1 -1
- package/dist/formio.utils.min.js.LICENSE.txt +1 -1
- package/lib/cjs/utils/Evaluator.d.ts +1 -3
- package/lib/cjs/utils/Evaluator.js +1 -5
- package/lib/mjs/utils/Evaluator.d.ts +1 -3
- package/lib/mjs/utils/Evaluator.js +1 -5
- package/package.json +1 -1
package/dist/formio.utils.js
CHANGED
@@ -3327,7 +3327,7 @@ eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3327
3327
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
3328
3328
|
|
3329
3329
|
"use strict";
|
3330
|
-
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.Evaluator = void 0;\nconst lodash_1 = __importDefault(__webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\"));\nconst string_hash_1 = __importDefault(__webpack_require__(/*! string-hash */ \"./node_modules/string-hash/index.js\"));\nconst utils_1 = __webpack_require__(/*! @formio/core/utils */ \"./node_modules/@formio/core/lib/utils/index.js\");\nclass Evaluator extends utils_1.Evaluator {\n static template(template, hash) {\n hash = hash || (0, string_hash_1.default)(template);\n if (Evaluator.cache[hash]) {\n return Evaluator.cache[hash];\n }\n try {\n // Ensure we handle copied templates from the ejs files.\n template = template.replace(/ctx\\./g, '');\n return (Evaluator.cache[hash] = lodash_1.default.template(template, Evaluator.templateSettings));\n }\n catch (err) {\n console.warn('Error while processing template', err, template);\n }\n }\n static interpolate(rawTemplate, data, _options) {\n // Ensure reverse compatability.\n const options = lodash_1.default.isObject(_options) ? _options : { noeval: _options };\n if (typeof rawTemplate === 'function') {\n try {\n return rawTemplate(data);\n }\n catch (err) {\n console.warn('Error interpolating template', err, data);\n return err.message;\n }\n }\n rawTemplate = String(rawTemplate);\n let template;\n if (Evaluator.noeval || options.noeval) {\n return utils_1.Evaluator.interpolateString(rawTemplate, data, _options);\n }\n else {\n template = Evaluator.template(rawTemplate);\n }\n if (typeof template === 'function') {\n try {\n return template(data);\n }\n catch (err) {\n console.warn('Error interpolating template', err, rawTemplate, data);\n return err.message;\n }\n }\n return template;\n }\n static evaluate(func, args) {\n return Array.isArray(args) ? func(...args) : func(args);\n }\n}\nexports.Evaluator = Evaluator;\nEvaluator.cache = {};\nEvaluator.protectedEval = false;\nEvaluator.
|
3330
|
+
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nexports.Evaluator = void 0;\nconst lodash_1 = __importDefault(__webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\"));\nconst string_hash_1 = __importDefault(__webpack_require__(/*! string-hash */ \"./node_modules/string-hash/index.js\"));\nconst utils_1 = __webpack_require__(/*! @formio/core/utils */ \"./node_modules/@formio/core/lib/utils/index.js\");\nclass Evaluator extends utils_1.Evaluator {\n static template(template, hash) {\n hash = hash || (0, string_hash_1.default)(template);\n if (Evaluator.cache[hash]) {\n return Evaluator.cache[hash];\n }\n try {\n // Ensure we handle copied templates from the ejs files.\n template = template.replace(/ctx\\./g, '');\n return (Evaluator.cache[hash] = lodash_1.default.template(template, Evaluator.templateSettings));\n }\n catch (err) {\n console.warn('Error while processing template', err, template);\n }\n }\n static interpolate(rawTemplate, data, _options) {\n // Ensure reverse compatability.\n const options = lodash_1.default.isObject(_options) ? _options : { noeval: _options };\n if (typeof rawTemplate === 'function') {\n try {\n return rawTemplate(data);\n }\n catch (err) {\n console.warn('Error interpolating template', err, data);\n return err.message;\n }\n }\n rawTemplate = String(rawTemplate);\n let template;\n if (Evaluator.noeval || options.noeval) {\n return utils_1.Evaluator.interpolateString(rawTemplate, data, _options);\n }\n else {\n template = Evaluator.template(rawTemplate);\n }\n if (typeof template === 'function') {\n try {\n return template(data);\n }\n catch (err) {\n console.warn('Error interpolating template', err, rawTemplate, data);\n return err.message;\n }\n }\n return template;\n }\n static evaluate(func, args) {\n return Array.isArray(args) ? func(...args) : func(args);\n }\n}\nexports.Evaluator = Evaluator;\nEvaluator.cache = {};\nEvaluator.protectedEval = false;\nEvaluator.noeval = false;\n\n\n//# sourceURL=webpack://Formio/./lib/cjs/utils/Evaluator.js?");
|
3331
3331
|
|
3332
3332
|
/***/ }),
|
3333
3333
|
|