rb-document-form-constructor 0.7.8 → 0.8.0
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.
|
@@ -11424,7 +11424,7 @@ var __vue_inject_styles__$3 = undefined;
|
|
|
11424
11424
|
var __vue_scope_id__$3 = undefined;
|
|
11425
11425
|
/* module identifier */
|
|
11426
11426
|
|
|
11427
|
-
var __vue_module_identifier__$3 = "data-v-
|
|
11427
|
+
var __vue_module_identifier__$3 = "data-v-c064812c";
|
|
11428
11428
|
/* functional template */
|
|
11429
11429
|
|
|
11430
11430
|
var __vue_is_functional_template__$3 = false;
|
package/package.json
CHANGED
|
@@ -204,19 +204,19 @@ export default {
|
|
|
204
204
|
});
|
|
205
205
|
},
|
|
206
206
|
setResolveValue(name, id, multiple = false) {
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
207
|
+
name = name.substring(0, name.length - 2);
|
|
208
|
+
if (this.doc.name) {
|
|
209
|
+
if (multiple) {
|
|
210
|
+
this.doc.name.forEach((el, index) => {
|
|
211
|
+
if (el.id === id) {
|
|
212
|
+
this.doc.name[index] = null;
|
|
213
|
+
}
|
|
214
|
+
})
|
|
215
|
+
} else {
|
|
216
|
+
this.doc.name = null;
|
|
217
|
+
}
|
|
218
|
+
}
|
|
218
219
|
}
|
|
219
|
-
}
|
|
220
220
|
},
|
|
221
221
|
mounted() {
|
|
222
222
|
this.execApplyDefaultValues();
|