@formio/js 5.0.0-dev.5848.fdc46f8 → 5.0.0-dev.5850.b6b5101
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
CHANGED
|
@@ -4786,7 +4786,7 @@ eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4786
4786
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
4787
4787
|
|
|
4788
4788
|
"use strict";
|
|
4789
|
-
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__(/*! ./_classes/component/Component */ \"./lib/cjs/components/_classes/component/Component.js\"));\nconst utils_1 = __importDefault(__webpack_require__(/*! ./_classes/component/editForm/utils */ \"./lib/cjs/components/_classes/component/editForm/utils.js\"));\nconst Component_form_1 = __importDefault(__webpack_require__(/*! ./_classes/component/Component.form */ \"./lib/cjs/components/_classes/component/Component.form.js\"));\nconst utils_2 = __webpack_require__(/*! ../utils/utils */ \"./lib/cjs/utils/utils.js\");\nconst lodash_1 = __importDefault(__webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\"));\nclass Components {\n static set EditFormUtils(value) {\n Components._editFormUtils = value;\n }\n static get EditFormUtils() {\n return Components._editFormUtils;\n }\n static set baseEditForm(value) {\n Components._baseEditForm = value;\n }\n static get baseEditForm() {\n return Components._baseEditForm;\n }\n static recalculateComponents() {\n if (window && window.Formio && window.Formio.AllComponents) {\n Components.setComponents(window.Formio.AllComponents);\n }\n }\n static get components() {\n if (!Components._components) {\n Components._components = {};\n }\n return Components._components;\n }\n static setComponents(comps) {\n // Set the tableView method on BaseComponent.\n if (comps.base) {\n // Implement the tableView method.\n comps.base.tableView = function (value, options) {\n const comp = Components.create(options.component, options.options || {}, options.data || {}, true);\n return comp.getView(value);\n };\n }\n lodash_1.default.assign(Components.components, comps);\n }\n static addComponent(name, comp) {\n return Components.setComponent(name, comp);\n }\n static setComponent(name, comp) {\n Components.components[name] = comp;\n }\n /**\n * Return a path of component's value.\n * @param {Component} component - The component instance.\n * @returns {string} - The component's value path.\n */\n static getComponentPath(component) {\n var _a;\n let path = '';\n const componentKey = (0, utils_2.getComponentKey)(component.component);\n if (componentKey) {\n let thisPath = ((_a = component.options) === null || _a === void 0 ? void 0 : _a.parent) || component;\n while (thisPath && !thisPath.allowData && thisPath.parent) {\n thisPath = thisPath.parent;\n }\n // TODO: any component that is nested in e.g. a Data Grid or an Edit Grid is going to receive a row prop; the problem\n // is that options.row is passed to each further nested component, which results in erroneous paths like\n // `editGrid[0].container[0].textField` rather than `editGrid[0].container.textField`. This should be adapted for other\n // components with a tree-like data model\n const rowIndex = component.row;\n const rowIndexPath = rowIndex && !['container'].includes(thisPath.component.type) ? `[${Number.parseInt(rowIndex)}]` : '';\n path = `${thisPath.path}${rowIndexPath}.`;\n path += componentKey;\n return lodash_1.default.trim(path, '.');\n }\n return path;\n }\n static create(component, options, data) {\n let comp = null;\n if (component.type && Components.components.hasOwnProperty(component.type)) {\n comp = new Components.components[component.type](component, options, data);\n }\n else if (component.arrayTree) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['datagrid'](component, options, data);\n }\n else if (component.tree) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['nesteddata'](component, options, data);\n }\n else if (Array.isArray(component.components)) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['nested'](component, options, data);\n }\n else if (options && options.server) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['hidden'](component, options, data);\n }\n else {\n comp = new Component_1.default(component, options, data);\n }\n const path = Components.getComponentPath(comp);\n if (path) {\n comp.path = path;\n comp.componentsMap[comp.path] = comp;\n }\n return comp;\n }\n}\nComponents._editFormUtils = utils_1.default;\nComponents._baseEditForm = Component_form_1.default;\nexports[\"default\"] = Components;\n\n\n//# sourceURL=webpack://Formio/./lib/cjs/components/Components.js?");
|
|
4789
|
+
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__(/*! ./_classes/component/Component */ \"./lib/cjs/components/_classes/component/Component.js\"));\nconst utils_1 = __importDefault(__webpack_require__(/*! ./_classes/component/editForm/utils */ \"./lib/cjs/components/_classes/component/editForm/utils.js\"));\nconst Component_form_1 = __importDefault(__webpack_require__(/*! ./_classes/component/Component.form */ \"./lib/cjs/components/_classes/component/Component.form.js\"));\nconst utils_2 = __webpack_require__(/*! ../utils/utils */ \"./lib/cjs/utils/utils.js\");\nconst lodash_1 = __importDefault(__webpack_require__(/*! lodash */ \"./node_modules/lodash/lodash.js\"));\nclass Components {\n static set EditFormUtils(value) {\n Components._editFormUtils = value;\n }\n static get EditFormUtils() {\n return Components._editFormUtils;\n }\n static set baseEditForm(value) {\n Components._baseEditForm = value;\n }\n static get baseEditForm() {\n return Components._baseEditForm;\n }\n static recalculateComponents() {\n if (window && window.Formio && window.Formio.AllComponents) {\n Components.setComponents(window.Formio.AllComponents);\n }\n }\n static get components() {\n if (!Components._components) {\n Components._components = {};\n }\n return Components._components;\n }\n static setComponents(comps) {\n // Set the tableView method on BaseComponent.\n if (comps.base) {\n // Implement the tableView method.\n comps.base.tableView = function (value, options) {\n const comp = Components.create(options.component, options.options || {}, options.data || {}, true);\n return comp.getView(value);\n };\n }\n lodash_1.default.assign(Components.components, comps);\n }\n static addComponent(name, comp) {\n return Components.setComponent(name, comp);\n }\n static setComponent(name, comp) {\n Components.components[name] = comp;\n }\n /**\n * Return a path of component's value.\n * @param {Component} component - The component instance.\n * @returns {string} - The component's value path.\n */\n static getComponentPath(component) {\n var _a;\n let path = '';\n const componentKey = (0, utils_2.getComponentKey)(component.component);\n if (componentKey) {\n let thisPath = ((_a = component.options) === null || _a === void 0 ? void 0 : _a.parent) || component;\n while (thisPath && !thisPath.allowData && thisPath.parent) {\n thisPath = thisPath.parent;\n }\n // TODO: any component that is nested in e.g. a Data Grid or an Edit Grid is going to receive a row prop; the problem\n // is that options.row is passed to each further nested component, which results in erroneous paths like\n // `editGrid[0].container[0].textField` rather than `editGrid[0].container.textField`. This should be adapted for other\n // components with a tree-like data model\n const rowIndex = component.row;\n const rowIndexPath = rowIndex && !['container'].includes(thisPath.component.type) ? `[${Number.parseInt(rowIndex)}]` : '';\n path = `${thisPath.path}${rowIndexPath}.`;\n if (rowIndexPath && (0, utils_2.getModelType)(thisPath) === 'nestedDataArray') {\n path = `${path}data.`;\n }\n path += componentKey;\n return lodash_1.default.trim(path, '.');\n }\n return path;\n }\n static create(component, options, data) {\n let comp = null;\n if (component.type && Components.components.hasOwnProperty(component.type)) {\n comp = new Components.components[component.type](component, options, data);\n }\n else if (component.arrayTree) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['datagrid'](component, options, data);\n }\n else if (component.tree) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['nesteddata'](component, options, data);\n }\n else if (Array.isArray(component.components)) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['nested'](component, options, data);\n }\n else if (options && options.server) {\n // eslint-disable-next-line new-cap\n comp = new Components.components['hidden'](component, options, data);\n }\n else {\n comp = new Component_1.default(component, options, data);\n }\n const path = Components.getComponentPath(comp);\n if (path) {\n comp.path = path;\n comp.componentsMap[comp.path] = comp;\n }\n return comp;\n }\n}\nComponents._editFormUtils = utils_1.default;\nComponents._baseEditForm = Component_form_1.default;\nexports[\"default\"] = Components;\n\n\n//# sourceURL=webpack://Formio/./lib/cjs/components/Components.js?");
|
|
4790
4790
|
|
|
4791
4791
|
/***/ }),
|
|
4792
4792
|
|