@bagelink/vue 1.2.111 → 1.2.115
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/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
- package/src/components/ImportData.vue +3 -3
package/dist/index.cjs
CHANGED
|
@@ -34003,7 +34003,7 @@ ${unmatchedValues.length} values could not be automatically matched.`);
|
|
|
34003
34003
|
field.disabled ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_11$2, vue.toDisplayString(field.disabledReason), 1)) : vue.createCommentVNode("", true),
|
|
34004
34004
|
getFieldDescription(field).isConditional ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_12$2, vue.toDisplayString(getFieldDescription(field).description), 1)) : vue.createCommentVNode("", true)
|
|
34005
34005
|
]),
|
|
34006
|
-
vue.createElementVNode("
|
|
34006
|
+
vue.createElementVNode("div", _hoisted_13$1, [
|
|
34007
34007
|
vue.createVNode(vue.unref(SelectInput), {
|
|
34008
34008
|
modelValue: fieldMapping[field.id],
|
|
34009
34009
|
"onUpdate:modelValue": ($event) => fieldMapping[field.id] = $event,
|
package/dist/index.mjs
CHANGED
|
@@ -34001,7 +34001,7 @@ ${unmatchedValues.length} values could not be automatically matched.`);
|
|
|
34001
34001
|
field.disabled ? (openBlock(), createElementBlock("div", _hoisted_11$2, toDisplayString(field.disabledReason), 1)) : createCommentVNode("", true),
|
|
34002
34002
|
getFieldDescription(field).isConditional ? (openBlock(), createElementBlock("div", _hoisted_12$2, toDisplayString(getFieldDescription(field).description), 1)) : createCommentVNode("", true)
|
|
34003
34003
|
]),
|
|
34004
|
-
createElementVNode("
|
|
34004
|
+
createElementVNode("div", _hoisted_13$1, [
|
|
34005
34005
|
createVNode(unref(SelectInput), {
|
|
34006
34006
|
modelValue: fieldMapping[field.id],
|
|
34007
34007
|
"onUpdate:modelValue": ($event) => fieldMapping[field.id] = $event,
|
package/package.json
CHANGED
|
@@ -546,7 +546,7 @@ function checkMappingComplete() {
|
|
|
546
546
|
// If no strictly required fields, we just need at least one mapping or default value
|
|
547
547
|
if (requiredFields.length === 0) {
|
|
548
548
|
mappingComplete.value = Object.keys(fieldMapping).some(key => !!fieldMapping[key])
|
|
549
|
-
|
|
549
|
+
|| Object.keys(defaultValues).length > 0
|
|
550
550
|
return
|
|
551
551
|
}
|
|
552
552
|
|
|
@@ -1577,7 +1577,7 @@ function getRelatedFieldWithDefaults(parentId: string, field: any) {
|
|
|
1577
1577
|
{{ getFieldDescription(field).description }}
|
|
1578
1578
|
</div>
|
|
1579
1579
|
</div>
|
|
1580
|
-
<
|
|
1580
|
+
<div class="fileColSelect">
|
|
1581
1581
|
<SelectInput
|
|
1582
1582
|
v-model="fieldMapping[field.id]"
|
|
1583
1583
|
icon="table_chart"
|
|
@@ -1586,7 +1586,7 @@ function getRelatedFieldWithDefaults(parentId: string, field: any) {
|
|
|
1586
1586
|
:disabled="field.disabled"
|
|
1587
1587
|
@change="handleSelectChange($event, field.id)"
|
|
1588
1588
|
/>
|
|
1589
|
-
</
|
|
1589
|
+
</div>
|
|
1590
1590
|
<div>
|
|
1591
1591
|
<!-- Default Value Input -->
|
|
1592
1592
|
<div class="default-value-container hideLabel">
|