@formio/js 5.0.0-dev.5686.783670c → 5.0.0-dev.5688.9b6200e
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 +1 -1
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/components/_classes/component/editForm/Component.edit.display.js +8 -0
- package/lib/mjs/components/_classes/component/editForm/Component.edit.display.js +8 -0
- package/package.json +1 -1
|
@@ -190,5 +190,13 @@ exports.default = [
|
|
|
190
190
|
key: 'tableView',
|
|
191
191
|
input: true
|
|
192
192
|
},
|
|
193
|
+
{
|
|
194
|
+
weight: 1600,
|
|
195
|
+
type: 'checkbox',
|
|
196
|
+
label: 'Modal Edit',
|
|
197
|
+
tooltip: 'Opens up a modal to edit the value of this component.',
|
|
198
|
+
key: 'modalEdit',
|
|
199
|
+
input: true
|
|
200
|
+
}
|
|
193
201
|
];
|
|
194
202
|
/* eslint-enable max-len */
|
|
@@ -187,5 +187,13 @@ export default [
|
|
|
187
187
|
key: 'tableView',
|
|
188
188
|
input: true
|
|
189
189
|
},
|
|
190
|
+
{
|
|
191
|
+
weight: 1600,
|
|
192
|
+
type: 'checkbox',
|
|
193
|
+
label: 'Modal Edit',
|
|
194
|
+
tooltip: 'Opens up a modal to edit the value of this component.',
|
|
195
|
+
key: 'modalEdit',
|
|
196
|
+
input: true
|
|
197
|
+
}
|
|
190
198
|
];
|
|
191
199
|
/* eslint-enable max-len */
|