rb-document-form-constructor 0.8.13 → 0.8.14
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.
|
@@ -11457,7 +11457,7 @@ var __vue_inject_styles__$3 = undefined;
|
|
|
11457
11457
|
var __vue_scope_id__$3 = undefined;
|
|
11458
11458
|
/* module identifier */
|
|
11459
11459
|
|
|
11460
|
-
var __vue_module_identifier__$3 = "data-v-
|
|
11460
|
+
var __vue_module_identifier__$3 = "data-v-458b2422";
|
|
11461
11461
|
/* functional template */
|
|
11462
11462
|
|
|
11463
11463
|
var __vue_is_functional_template__$3 = false;
|
package/package.json
CHANGED
|
@@ -81,20 +81,20 @@ export default {
|
|
|
81
81
|
if ((field.dict || field.ref) && !field.multiple) {
|
|
82
82
|
return field.name.substring(0, field.name.length - 2)
|
|
83
83
|
}
|
|
84
|
-
|
|
84
|
+
console.log('field.name', field.name)
|
|
85
85
|
return field.name
|
|
86
86
|
},
|
|
87
87
|
getResolveValue(field) {
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
88
|
+
const resolve = this.doc[this.getResolveValueName(field)] ?? null;
|
|
89
|
+
console.log('resolve', resolve);
|
|
90
|
+
return field
|
|
91
91
|
},
|
|
92
92
|
setResolveValue({field, multiple = false}) {
|
|
93
93
|
/*let resolveValue = this.getResolveValue(field);
|
|
94
94
|
if (resolveValue && !multiple) {
|
|
95
95
|
resolveValue = null
|
|
96
96
|
}*/
|
|
97
|
-
|
|
97
|
+
return null;
|
|
98
98
|
},
|
|
99
99
|
onEventFired(eventName, event, field) {
|
|
100
100
|
if (eventName === 'input' && field.ref && !field.multiple) {
|