@byteluck-fe/model-driven-engine 2.8.0-alpha.7 → 2.8.0-alpha.9

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.
@@ -121,7 +121,12 @@ var Store = /*#__PURE__*/ function() {
121
121
  } else {
122
122
  var controlInfo = this.controlIdMapping[controlId];
123
123
  if (controlInfo !== undefined) {
124
- return this.state[controlInfo.dataView][controlId];
124
+ var data = this.state[controlInfo.dataView][controlId];
125
+ if (rowIndex !== undefined) {
126
+ return data[rowIndex];
127
+ } else {
128
+ return data;
129
+ }
125
130
  } else {
126
131
  if (rowIndex !== undefined) {
127
132
  var state;