@formio/js 5.0.0-dev.5917.280d8f5 → 5.0.0-dev.5919.408636c
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/Changelog.md +3 -0
- package/dist/formio.form.js +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +3 -3
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/WebformBuilder.js +14 -23
- package/lib/cjs/components/hidden/Hidden.d.ts +0 -1
- package/lib/cjs/components/hidden/Hidden.js +1 -1
- package/lib/cjs/components/select/editForm/Select.edit.data.d.ts +1 -1
- package/lib/cjs/components/select/editForm/Select.edit.data.js +1 -0
- package/lib/mjs/WebformBuilder.js +14 -23
- package/lib/mjs/components/hidden/Hidden.d.ts +0 -1
- package/lib/mjs/components/hidden/Hidden.js +1 -1
- package/lib/mjs/components/select/editForm/Select.edit.data.d.ts +1 -1
- package/lib/mjs/components/select/editForm/Select.edit.data.js +1 -0
- package/package.json +1 -1
package/Changelog.md
CHANGED
|
@@ -114,6 +114,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
114
114
|
- FIO-7195: Fixes an issue where Radio/SelectBoxes will show values instead of labels on View tab and in DataTable
|
|
115
115
|
- FIO-9217 Fix: allow moment.js datetime custom default values in calendar widget-text field components
|
|
116
116
|
- FIO-8677: Fixes an issue where its possible to draweon Signature on the View tab of PDF form
|
|
117
|
+
- FIO-9314: made select data property a hidden component and changed hidden component empty value to null
|
|
118
|
+
- FIO-9347: fixed select preview issue in form builder
|
|
119
|
+
- FIO-8518: fixed adding checkbox with radio type to pdf design page
|
|
117
120
|
|
|
118
121
|
### New Features
|
|
119
122
|
|
package/dist/formio.form.js
CHANGED
|
@@ -5237,7 +5237,7 @@ eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5237
5237
|
/***/ (function(__unused_webpack_module, exports, __webpack_require__) {
|
|
5238
5238
|
|
|
5239
5239
|
"use strict";
|
|
5240
|
-
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst Input_1 = __importDefault(__webpack_require__(/*! ../_classes/input/Input */ \"./lib/cjs/components/_classes/input/Input.js\"));\nclass HiddenComponent extends Input_1.default {\n static schema(...extend) {\n return Input_1.default.schema({\n type: 'hidden',\n tableView: false,\n inputType: 'hidden'\n }, ...extend);\n }\n static get builderInfo() {\n return {\n title: 'Hidden',\n group: 'data',\n icon: 'user-secret',\n weight: 0,\n documentation: '/userguide/form-building/data-components#hidden',\n showPreview: false,\n schema: HiddenComponent.schema()\n };\n }\n get defaultSchema() {\n return HiddenComponent.schema();\n }\n get inputInfo() {\n const info = super.elementInfo();\n info.type = 'input';\n info.attr.type = 'hidden';\n info.changeEvent = 'change';\n return info;\n }\n get skipInEmail() {\n return true;\n }\n /**\n * Check if a component is eligible for multiple validation\n * @returns {boolean} - If the component is eligible for multiple validation.\n */\n validateMultiple() {\n // Since \"arrays\" are able to be stored in hidden components, we need to turn off multiple validation.\n return false;\n }\n labelIsHidden() {\n return true;\n }\n get emptyValue() {\n return
|
|
5240
|
+
eval("\nvar __importDefault = (this && this.__importDefault) || function (mod) {\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\n};\nObject.defineProperty(exports, \"__esModule\", ({ value: true }));\nconst Input_1 = __importDefault(__webpack_require__(/*! ../_classes/input/Input */ \"./lib/cjs/components/_classes/input/Input.js\"));\nclass HiddenComponent extends Input_1.default {\n static schema(...extend) {\n return Input_1.default.schema({\n type: 'hidden',\n tableView: false,\n inputType: 'hidden'\n }, ...extend);\n }\n static get builderInfo() {\n return {\n title: 'Hidden',\n group: 'data',\n icon: 'user-secret',\n weight: 0,\n documentation: '/userguide/form-building/data-components#hidden',\n showPreview: false,\n schema: HiddenComponent.schema()\n };\n }\n get defaultSchema() {\n return HiddenComponent.schema();\n }\n get inputInfo() {\n const info = super.elementInfo();\n info.type = 'input';\n info.attr.type = 'hidden';\n info.changeEvent = 'change';\n return info;\n }\n get skipInEmail() {\n return true;\n }\n /**\n * Check if a component is eligible for multiple validation\n * @returns {boolean} - If the component is eligible for multiple validation.\n */\n validateMultiple() {\n // Since \"arrays\" are able to be stored in hidden components, we need to turn off multiple validation.\n return false;\n }\n labelIsHidden() {\n return true;\n }\n get emptyValue() {\n return null;\n }\n setValue(value, flags = {}) {\n return this.updateValue(value, flags);\n }\n getValue() {\n return this.dataValue;\n }\n}\nexports[\"default\"] = HiddenComponent;\n\n\n//# sourceURL=webpack://Formio/./lib/cjs/components/hidden/Hidden.js?");
|
|
5241
5241
|
|
|
5242
5242
|
/***/ }),
|
|
5243
5243
|
|