@formio/js 5.1.0-dev.5992.ff65eb8 → 5.1.0-dev.6000.fab85ea
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/formio.form.js +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +2 -2
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/components/_classes/nesteddata/NestedDataComponent.d.ts +1 -0
- package/lib/cjs/components/_classes/nesteddata/NestedDataComponent.js +3 -0
- package/lib/cjs/components/form/editForm/Form.edit.data.js +1 -1
- package/lib/mjs/components/_classes/nesteddata/NestedDataComponent.d.ts +1 -0
- package/lib/mjs/components/_classes/nesteddata/NestedDataComponent.js +3 -0
- package/lib/mjs/components/form/editForm/Form.edit.data.js +1 -1
- package/package.json +1 -1
package/dist/formio.full.js
CHANGED
@@ -5732,7 +5732,7 @@ eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {
|
|
5732
5732
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
5733
5733
|
|
5734
5734
|
"use strict";
|
5735
|
-
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst Component_1 = __importDefault(__webpack_require__(/*! ../component/Component */ \"./lib/cjs/components/_classes/component/Component.js\"));\nconst NestedComponent_1 = __importDefault(__webpack_require__(/*! ../nested/NestedComponent */ \"./lib/cjs/components/_classes/nested/NestedComponent.js\"));\nconst lodash_1 = __importDefault(__webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\"));\nconst utils_1 = __webpack_require__(/*! ../../../utils/utils */ \"./lib/cjs/utils/utils.js\");\nclass NestedDataComponent extends NestedComponent_1.default {\n hasChanged(newValue, oldValue) {\n // If we do not have a value and are getting set to anything other than undefined or null, then we changed.\n if (newValue !== undefined &&\n newValue !== null &&\n !this.hasValue()) {\n return true;\n }\n return !lodash_1.default.isEqual(newValue, oldValue);\n }\n static savedValueTypes(schema) {\n return (0, utils_1.getComponentSavedTypes)(schema) || [utils_1.componentValueTypes.object];\n }\n get allowData() {\n return true;\n }\n get emptyValue() {\n return {};\n }\n componentContext() {\n return this.dataValue;\n }\n getValueAsString(value, options) {\n if (options === null || options === void 0 ? void 0 : options.email) {\n let result = (`\n <table border=\"1\" style=\"width:100%\">\n <tbody>\n `);\n this.everyComponent((component) => {\n if (component.isInputComponent && component.visible && !component.skipInEmail) {\n result += (`\n <tr>\n <th style=\"padding: 5px 10px;\">${component.label}</th>\n <td style=\"width:100%;padding:5px 10px;\">${component.getView(component.dataValue, options)}</td>\n </tr>\n `);\n }\n }, Object.assign(Object.assign({}, options), { fromRoot: true }));\n result += (`\n </tbody>\n </table>\n `);\n return result;\n }\n if (lodash_1.default.isEmpty(value)) {\n return '';\n }\n if (options === null || options === void 0 ? void 0 : options.modalPreview) {\n delete options.modalPreview;\n return this.getDataValueAsTable(value, options);\n }\n return '[Complex Data]';\n }\n getDataValueAsTable(value, options) {\n let result = (`\n <table border=\"1\" style=\"width:100%\">\n <tbody>\n `);\n const htmlTagRegExp = new RegExp('<(.*?)>');\n this.everyComponent((component) => {\n if (component.isInputComponent && component.visible && !component.skipInEmail) {\n const componentValue = component.getView(component.dataValue, options);\n result += (`\n <tr>\n <th style=\"padding: 5px 10px;\">${component.label}</th>\n <td style=\"width:100%;padding:5px 10px;\">${component.component && component.component.inputFormat === 'html' && htmlTagRegExp.test(componentValue)\n ? componentValue\n : `<input type=\"text\" value=\"${componentValue.replace(/\"/g, '"')}\" readonly/>`}</td>\n </tr>\n `);\n }\n }, Object.assign(Object.assign({}, options), { fromRoot: true }));\n result += (`\n </tbody>\n </table>\n `);\n return result;\n }\n everyComponent(fn, options = {}) {\n if (options === null || options === void 0 ? void 0 : options.email) {\n if (options.fromRoot) {\n delete options.fromRoot;\n }\n else {\n return;\n }\n }\n return super.everyComponent(fn, options);\n }\n /**\n * Get the value of this component.\n * @returns {any} - Return the value of this component.\n */\n getValue() {\n return this.dataValue;\n }\n updateValue(value, flags = {}) {\n // Intentionally skip over nested component updateValue method to keep\n // recursive update from occurring with sub components.\n return Component_1.default.prototype.updateValue.call(this, value, flags);\n }\n setValue(value, flags = {}) {\n let changed = false;\n const hasValue = this.hasValue();\n if (hasValue && lodash_1.default.isEmpty(this.dataValue)) {\n flags.noValidate = true;\n }\n if (!value || !lodash_1.default.isObject(value) || !hasValue) {\n changed = true;\n this.dataValue = this.defaultValue;\n }\n changed = super.setValue(value, flags) || changed;\n this.updateOnChange(flags, changed);\n return changed;\n }\n}\nexports[\"default\"] = NestedDataComponent;\n\n\n//# sourceURL=webpack://Formio/./lib/cjs/components/_classes/nesteddata/NestedDataComponent.js?");
|
5735
|
+
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst Component_1 = __importDefault(__webpack_require__(/*! ../component/Component */ \"./lib/cjs/components/_classes/component/Component.js\"));\nconst NestedComponent_1 = __importDefault(__webpack_require__(/*! ../nested/NestedComponent */ \"./lib/cjs/components/_classes/nested/NestedComponent.js\"));\nconst lodash_1 = __importDefault(__webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\"));\nconst utils_1 = __webpack_require__(/*! ../../../utils/utils */ \"./lib/cjs/utils/utils.js\");\nclass NestedDataComponent extends NestedComponent_1.default {\n hasChanged(newValue, oldValue) {\n // If we do not have a value and are getting set to anything other than undefined or null, then we changed.\n if (newValue !== undefined &&\n newValue !== null &&\n !this.hasValue()) {\n return true;\n }\n return !lodash_1.default.isEqual(newValue, oldValue);\n }\n static savedValueTypes(schema) {\n return (0, utils_1.getComponentSavedTypes)(schema) || [utils_1.componentValueTypes.object];\n }\n get allowData() {\n return true;\n }\n get emptyValue() {\n return {};\n }\n get shouldAddDefaultValue() {\n return !this.options.noDefaults || !this.options.server;\n }\n componentContext() {\n return this.dataValue;\n }\n getValueAsString(value, options) {\n if (options === null || options === void 0 ? void 0 : options.email) {\n let result = (`\n <table border=\"1\" style=\"width:100%\">\n <tbody>\n `);\n this.everyComponent((component) => {\n if (component.isInputComponent && component.visible && !component.skipInEmail) {\n result += (`\n <tr>\n <th style=\"padding: 5px 10px;\">${component.label}</th>\n <td style=\"width:100%;padding:5px 10px;\">${component.getView(component.dataValue, options)}</td>\n </tr>\n `);\n }\n }, Object.assign(Object.assign({}, options), { fromRoot: true }));\n result += (`\n </tbody>\n </table>\n `);\n return result;\n }\n if (lodash_1.default.isEmpty(value)) {\n return '';\n }\n if (options === null || options === void 0 ? void 0 : options.modalPreview) {\n delete options.modalPreview;\n return this.getDataValueAsTable(value, options);\n }\n return '[Complex Data]';\n }\n getDataValueAsTable(value, options) {\n let result = (`\n <table border=\"1\" style=\"width:100%\">\n <tbody>\n `);\n const htmlTagRegExp = new RegExp('<(.*?)>');\n this.everyComponent((component) => {\n if (component.isInputComponent && component.visible && !component.skipInEmail) {\n const componentValue = component.getView(component.dataValue, options);\n result += (`\n <tr>\n <th style=\"padding: 5px 10px;\">${component.label}</th>\n <td style=\"width:100%;padding:5px 10px;\">${component.component && component.component.inputFormat === 'html' && htmlTagRegExp.test(componentValue)\n ? componentValue\n : `<input type=\"text\" value=\"${componentValue.replace(/\"/g, '"')}\" readonly/>`}</td>\n </tr>\n `);\n }\n }, Object.assign(Object.assign({}, options), { fromRoot: true }));\n result += (`\n </tbody>\n </table>\n `);\n return result;\n }\n everyComponent(fn, options = {}) {\n if (options === null || options === void 0 ? void 0 : options.email) {\n if (options.fromRoot) {\n delete options.fromRoot;\n }\n else {\n return;\n }\n }\n return super.everyComponent(fn, options);\n }\n /**\n * Get the value of this component.\n * @returns {any} - Return the value of this component.\n */\n getValue() {\n return this.dataValue;\n }\n updateValue(value, flags = {}) {\n // Intentionally skip over nested component updateValue method to keep\n // recursive update from occurring with sub components.\n return Component_1.default.prototype.updateValue.call(this, value, flags);\n }\n setValue(value, flags = {}) {\n let changed = false;\n const hasValue = this.hasValue();\n if (hasValue && lodash_1.default.isEmpty(this.dataValue)) {\n flags.noValidate = true;\n }\n if (!value || !lodash_1.default.isObject(value) || !hasValue) {\n changed = true;\n this.dataValue = this.defaultValue;\n }\n changed = super.setValue(value, flags) || changed;\n this.updateOnChange(flags, changed);\n return changed;\n }\n}\nexports[\"default\"] = NestedDataComponent;\n\n\n//# sourceURL=webpack://Formio/./lib/cjs/components/_classes/nesteddata/NestedDataComponent.js?");
|
5736
5736
|
|
5737
5737
|
/***/ }),
|
5738
5738
|
|
@@ -6568,7 +6568,7 @@ eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {
|
|
6568
6568
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
6569
6569
|
|
6570
6570
|
"use strict";
|
6571
|
-
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst utils_1 = __importDefault(__webpack_require__(/*! ../../_classes/component/editForm/utils */ \"./lib/cjs/components/_classes/component/editForm/utils.js\"));\n/* eslint-disable max-len */\nexports[\"default\"] = [\n utils_1.default.javaScriptValue('Custom Default Value', 'customDefaultValue', 'customDefaultValue', 120, '<p><h4>Example:</h4><pre>value = data.firstName + \" \" + data.lastName;</pre></p>', '<p><h4>Example:</h4><pre>{\"cat\": [{\"var\": \"data.firstName\"}, \" \", {\"var\": \"data.lastName\"}]}</pre>'),\n utils_1.default.javaScriptValue('Calculated Value', 'calculateValue', 'calculateValue', 130, '<p><h4>Example:</h4><pre>value = data.a + data.b + data.c;</pre></p>', '<p><h4>Example:</h4><pre>{\"+\": [{\"var\": \"data.a\"}, {\"var\": \"data.b\"}, {\"var\": \"data.c\"}]}</pre><p><a href=\"https://help.form.io/userguide/form-building/logic-and-conditions#calculated-values\" target=\"_blank\" rel=\"noopener noreferrer\">Click here for an example</a></p>'),\n {\n weight: 140,\n type: 'checkbox',\n label: '
|
6571
|
+
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst utils_1 = __importDefault(__webpack_require__(/*! ../../_classes/component/editForm/utils */ \"./lib/cjs/components/_classes/component/editForm/utils.js\"));\n/* eslint-disable max-len */\nexports[\"default\"] = [\n utils_1.default.javaScriptValue('Custom Default Value', 'customDefaultValue', 'customDefaultValue', 120, '<p><h4>Example:</h4><pre>value = data.firstName + \" \" + data.lastName;</pre></p>', '<p><h4>Example:</h4><pre>{\"cat\": [{\"var\": \"data.firstName\"}, \" \", {\"var\": \"data.lastName\"}]}</pre>'),\n utils_1.default.javaScriptValue('Calculated Value', 'calculateValue', 'calculateValue', 130, '<p><h4>Example:</h4><pre>value = data.a + data.b + data.c;</pre></p>', '<p><h4>Example:</h4><pre>{\"+\": [{\"var\": \"data.a\"}, {\"var\": \"data.b\"}, {\"var\": \"data.c\"}]}</pre><p><a href=\"https://help.form.io/userguide/form-building/logic-and-conditions#calculated-values\" target=\"_blank\" rel=\"noopener noreferrer\">Click here for an example</a></p>'),\n {\n weight: 140,\n type: 'checkbox',\n label: 'Omit Value From Submission Data When Conditionally Hidden',\n key: 'clearOnHide',\n defaultValue: true,\n tooltip: 'When a field is hidden, clear the value.',\n input: true\n },\n];\n/* eslint-enable max-len */\n\n\n//# sourceURL=webpack://Formio/./lib/cjs/components/form/editForm/Form.edit.data.js?");
|
6572
6572
|
|
6573
6573
|
/***/ }),
|
6574
6574
|
|