@byteluck-fe/model-driven-engine 2.7.0-alpha.2 → 2.7.0-alpha.20

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.
@@ -203,7 +203,7 @@ function flatInstanceForChildren(controls) {
203
203
  var result = [];
204
204
  controls.forEach(function(item) {
205
205
  result.push(item);
206
- if (item.controlType === "layout") {
206
+ if (item.controlType === "layout" || item.controlType === "wrap") {
207
207
  var _result;
208
208
  (_result = result).push.apply(_result, _toConsumableArray(flatInstanceForChildren(item.children)));
209
209
  }