@idooel/components 0.0.2-beta.21 → 0.0.2-beta.22
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.
|
@@ -14801,8 +14801,8 @@ var script$4 = {
|
|
|
14801
14801
|
const currentTableSelectionRet = type.isArray(currentTableSelection) ? currentTableSelection : [currentTableSelection];
|
|
14802
14802
|
this.entityValue = currentTableSelectionRet.map(item => {
|
|
14803
14803
|
return {
|
|
14804
|
-
label: item[this.replaceFields.label],
|
|
14805
|
-
value: item[this.replaceFields.value]
|
|
14804
|
+
label: item[this.returnValues[this.replaceFields.label]],
|
|
14805
|
+
value: item[this.returnValues[this.replaceFields.value]]
|
|
14806
14806
|
};
|
|
14807
14807
|
});
|
|
14808
14808
|
this.emitEntityValue(currentTableSelection);
|
|
@@ -14806,8 +14806,8 @@
|
|
|
14806
14806
|
const currentTableSelectionRet = shared.type.isArray(currentTableSelection) ? currentTableSelection : [currentTableSelection];
|
|
14807
14807
|
this.entityValue = currentTableSelectionRet.map(item => {
|
|
14808
14808
|
return {
|
|
14809
|
-
label: item[this.replaceFields.label],
|
|
14810
|
-
value: item[this.replaceFields.value]
|
|
14809
|
+
label: item[this.returnValues[this.replaceFields.label]],
|
|
14810
|
+
value: item[this.returnValues[this.replaceFields.value]]
|
|
14811
14811
|
};
|
|
14812
14812
|
});
|
|
14813
14813
|
this.emitEntityValue(currentTableSelection);
|
package/package.json
CHANGED
|
@@ -154,8 +154,8 @@ export default {
|
|
|
154
154
|
const currentTableSelectionRet = type.isArray(currentTableSelection) ? currentTableSelection : [currentTableSelection]
|
|
155
155
|
this.entityValue = currentTableSelectionRet.map(item => {
|
|
156
156
|
return {
|
|
157
|
-
label: item[this.replaceFields.label],
|
|
158
|
-
value: item[this.replaceFields.value]
|
|
157
|
+
label: item[this.returnValues[this.replaceFields.label]],
|
|
158
|
+
value: item[this.returnValues[this.replaceFields.value]]
|
|
159
159
|
}
|
|
160
160
|
})
|
|
161
161
|
this.emitEntityValue(currentTableSelection)
|