I don't believe modules currently work in listViews For the other example, did you just want to return a comma separated list of each input?
Is this helpful?
let arr = [];
listView1.data.map((x, index) => {
listView2[index].data.map((y) => {
arr.push(y.colorInput1);
});
});
return arr;