@byteluck-fe/model-driven-core 2.4.1-beta.0 → 2.4.1-beta.1

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.
Files changed (43) hide show
  1. package/dist/esm/api-doc-index.js +4 -4
  2. package/dist/esm/common/BaseControl/designer.js +121 -240
  3. package/dist/esm/common/BaseControl/index.js +7 -7
  4. package/dist/esm/common/BaseControl/property.js +60 -77
  5. package/dist/esm/common/BaseControl/runtime.js +24 -45
  6. package/dist/esm/common/ColumnControl/designer.js +27 -41
  7. package/dist/esm/common/ColumnControl/index.js +6 -6
  8. package/dist/esm/common/ColumnControl/property.js +74 -122
  9. package/dist/esm/common/ColumnControl/runtime.js +27 -41
  10. package/dist/esm/common/ControlArray.js +20 -20
  11. package/dist/esm/common/FormControl/designer.js +32 -47
  12. package/dist/esm/common/FormControl/index.js +6 -6
  13. package/dist/esm/common/FormControl/property.js +116 -181
  14. package/dist/esm/common/FormControl/runtime.js +27 -42
  15. package/dist/esm/common/LayoutControl/designer.js +77 -205
  16. package/dist/esm/common/LayoutControl/index.js +6 -6
  17. package/dist/esm/common/LayoutControl/property.js +25 -25
  18. package/dist/esm/common/LayoutControl/runtime.js +29 -44
  19. package/dist/esm/common/ListControl/designer.js +74 -199
  20. package/dist/esm/common/ListControl/index.js +6 -6
  21. package/dist/esm/common/ListControl/property.js +27 -41
  22. package/dist/esm/common/ListControl/runtime.js +32 -47
  23. package/dist/esm/common/SearchViewControl/designer.js +27 -41
  24. package/dist/esm/common/SearchViewControl/index.js +6 -6
  25. package/dist/esm/common/SearchViewControl/property.js +26 -40
  26. package/dist/esm/common/SearchViewControl/runtime.js +27 -41
  27. package/dist/esm/common/Validator.js +5 -5
  28. package/dist/esm/common/WrapControl/designer.js +27 -41
  29. package/dist/esm/common/WrapControl/index.js +6 -6
  30. package/dist/esm/common/WrapControl/property.js +25 -25
  31. package/dist/esm/common/WrapControl/runtime.js +27 -41
  32. package/dist/esm/common/controlHooksEmitter.js +1 -1
  33. package/dist/esm/common/index.js +11 -11
  34. package/dist/esm/common/initOptionAndDataSourceRules.js +82 -82
  35. package/dist/esm/framework/RegisterControls.js +19 -31
  36. package/dist/esm/framework/index.js +360 -735
  37. package/dist/esm/index.js +3 -3
  38. package/dist/index.umd.js +1 -1
  39. package/dist/types/common/Validator.d.ts +1 -1
  40. package/dist/types/common/controlHooksEmitter.d.ts +1 -1
  41. package/dist/types/framework/index.d.ts +1 -1
  42. package/dist/types/type.d.ts +23 -23
  43. package/package.json +2 -2
@@ -1,32 +1,19 @@
1
- function _assert_this_initialized(self) {
1
+ function _assertThisInitialized(self) {
2
2
  if (self === void 0) {
3
3
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
4
4
  }
5
5
  return self;
6
6
  }
7
- function _class_call_check(instance, Constructor) {
7
+ function _classCallCheck(instance, Constructor) {
8
8
  if (!(instance instanceof Constructor)) {
9
9
  throw new TypeError("Cannot call a class as a function");
10
10
  }
11
11
  }
12
- function _define_property(obj, key, value) {
13
- if (key in obj) {
14
- Object.defineProperty(obj, key, {
15
- value: value,
16
- enumerable: true,
17
- configurable: true,
18
- writable: true
19
- });
20
- } else {
21
- obj[key] = value;
22
- }
23
- return obj;
24
- }
25
- function _get_prototype_of(o) {
26
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
12
+ function _getPrototypeOf(o) {
13
+ _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
27
14
  return o.__proto__ || Object.getPrototypeOf(o);
28
15
  };
29
- return _get_prototype_of(o);
16
+ return _getPrototypeOf(o);
30
17
  }
31
18
  function _inherits(subClass, superClass) {
32
19
  if (typeof superClass !== "function" && superClass !== null) {
@@ -39,26 +26,26 @@ function _inherits(subClass, superClass) {
39
26
  configurable: true
40
27
  }
41
28
  });
42
- if (superClass) _set_prototype_of(subClass, superClass);
29
+ if (superClass) _setPrototypeOf(subClass, superClass);
43
30
  }
44
- function _possible_constructor_return(self, call) {
45
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
31
+ function _possibleConstructorReturn(self, call) {
32
+ if (call && (_typeof(call) === "object" || typeof call === "function")) {
46
33
  return call;
47
34
  }
48
- return _assert_this_initialized(self);
35
+ return _assertThisInitialized(self);
49
36
  }
50
- function _set_prototype_of(o, p) {
51
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
37
+ function _setPrototypeOf(o, p) {
38
+ _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
52
39
  o.__proto__ = p;
53
40
  return o;
54
41
  };
55
- return _set_prototype_of(o, p);
42
+ return _setPrototypeOf(o, p);
56
43
  }
57
- function _type_of(obj) {
44
+ var _typeof = function(obj) {
58
45
  "@swc/helpers - typeof";
59
46
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
60
- }
61
- function _is_native_reflect_construct() {
47
+ };
48
+ function _isNativeReflectConstruct() {
62
49
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
63
50
  if (Reflect.construct.sham) return false;
64
51
  if (typeof Proxy === "function") return true;
@@ -69,35 +56,33 @@ function _is_native_reflect_construct() {
69
56
  return false;
70
57
  }
71
58
  }
72
- function _create_super(Derived) {
73
- var hasNativeReflectConstruct = _is_native_reflect_construct();
59
+ function _createSuper(Derived) {
60
+ var hasNativeReflectConstruct = _isNativeReflectConstruct();
74
61
  return function _createSuperInternal() {
75
- var Super = _get_prototype_of(Derived), result;
62
+ var Super = _getPrototypeOf(Derived), result;
76
63
  if (hasNativeReflectConstruct) {
77
- var NewTarget = _get_prototype_of(this).constructor;
64
+ var NewTarget = _getPrototypeOf(this).constructor;
78
65
  result = Reflect.construct(Super, arguments, NewTarget);
79
66
  } else {
80
67
  result = Super.apply(this, arguments);
81
68
  }
82
- return _possible_constructor_return(this, result);
69
+ return _possibleConstructorReturn(this, result);
83
70
  };
84
71
  }
85
- import { RuntimeControl } from "../BaseControl";
86
- import LayoutControlProperty from "./property";
87
- import { defineControlArrayToProperty } from "../ControlArray";
88
- var LayoutControl = /*#__PURE__*/ function(RuntimeControl) {
72
+ import { RuntimeControl } from '../BaseControl';
73
+ import LayoutControlProperty from './property';
74
+ import { defineControlArrayToProperty } from '../ControlArray';
75
+ var LayoutControl = /*#__PURE__*/ function(RuntimeControl1) {
89
76
  "use strict";
90
- _inherits(LayoutControl, RuntimeControl);
91
- var _super = _create_super(LayoutControl);
77
+ _inherits(LayoutControl, RuntimeControl1);
78
+ var _super = _createSuper(LayoutControl);
92
79
  function LayoutControl(props) {
93
- _class_call_check(this, LayoutControl);
80
+ _classCallCheck(this, LayoutControl);
94
81
  var _this;
95
82
  _this = _super.call(this, props);
96
- _define_property(_assert_this_initialized(_this), "controlType", "layout");
97
- _define_property(_assert_this_initialized(_this), "children", void 0);
98
- _define_property(_assert_this_initialized(_this), "props", void 0);
83
+ _this.controlType = 'layout';
99
84
  _this.props = new LayoutControlProperty(props === null || props === void 0 ? void 0 : props.props);
100
- defineControlArrayToProperty(_assert_this_initialized(_this), "children", props === null || props === void 0 ? void 0 : props.children);
85
+ defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children);
101
86
  return _this;
102
87
  }
103
88
  return LayoutControl;
@@ -1,12 +1,12 @@
1
- function _array_like_to_array(arr, len) {
1
+ function _arrayLikeToArray(arr, len) {
2
2
  if (len == null || len > arr.length) len = arr.length;
3
3
  for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
4
4
  return arr2;
5
5
  }
6
- function _array_without_holes(arr) {
7
- if (Array.isArray(arr)) return _array_like_to_array(arr);
6
+ function _arrayWithoutHoles(arr) {
7
+ if (Array.isArray(arr)) return _arrayLikeToArray(arr);
8
8
  }
9
- function _assert_this_initialized(self) {
9
+ function _assertThisInitialized(self) {
10
10
  if (self === void 0) {
11
11
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
12
12
  }
@@ -26,7 +26,7 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
26
26
  Promise.resolve(value).then(_next, _throw);
27
27
  }
28
28
  }
29
- function _async_to_generator(fn) {
29
+ function _asyncToGenerator(fn) {
30
30
  return function() {
31
31
  var self = this, args = arguments;
32
32
  return new Promise(function(resolve, reject) {
@@ -41,7 +41,7 @@ function _async_to_generator(fn) {
41
41
  });
42
42
  };
43
43
  }
44
- function _class_call_check(instance, Constructor) {
44
+ function _classCallCheck(instance, Constructor) {
45
45
  if (!(instance instanceof Constructor)) {
46
46
  throw new TypeError("Cannot call a class as a function");
47
47
  }
@@ -55,12 +55,12 @@ function _defineProperties(target, props) {
55
55
  Object.defineProperty(target, descriptor.key, descriptor);
56
56
  }
57
57
  }
58
- function _create_class(Constructor, protoProps, staticProps) {
58
+ function _createClass(Constructor, protoProps, staticProps) {
59
59
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
60
60
  if (staticProps) _defineProperties(Constructor, staticProps);
61
61
  return Constructor;
62
62
  }
63
- function _define_property(obj, key, value) {
63
+ function _defineProperty(obj, key, value) {
64
64
  if (key in obj) {
65
65
  Object.defineProperty(obj, key, {
66
66
  value: value,
@@ -77,23 +77,23 @@ function _get(target, property, receiver) {
77
77
  if (typeof Reflect !== "undefined" && Reflect.get) {
78
78
  _get = Reflect.get;
79
79
  } else {
80
- _get = function get(target, property, receiver) {
81
- var base = _super_prop_base(target, property);
80
+ _get = function _get(target, property, receiver) {
81
+ var base = _superPropBase(target, property);
82
82
  if (!base) return;
83
83
  var desc = Object.getOwnPropertyDescriptor(base, property);
84
84
  if (desc.get) {
85
- return desc.get.call(receiver || target);
85
+ return desc.get.call(receiver);
86
86
  }
87
87
  return desc.value;
88
88
  };
89
89
  }
90
90
  return _get(target, property, receiver || target);
91
91
  }
92
- function _get_prototype_of(o) {
93
- _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
92
+ function _getPrototypeOf(o) {
93
+ _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
94
94
  return o.__proto__ || Object.getPrototypeOf(o);
95
95
  };
96
- return _get_prototype_of(o);
96
+ return _getPrototypeOf(o);
97
97
  }
98
98
  function _inherits(subClass, superClass) {
99
99
  if (typeof superClass !== "function" && superClass !== null) {
@@ -106,15 +106,15 @@ function _inherits(subClass, superClass) {
106
106
  configurable: true
107
107
  }
108
108
  });
109
- if (superClass) _set_prototype_of(subClass, superClass);
109
+ if (superClass) _setPrototypeOf(subClass, superClass);
110
110
  }
111
- function _iterable_to_array(iter) {
111
+ function _iterableToArray(iter) {
112
112
  if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
113
113
  }
114
- function _non_iterable_spread() {
114
+ function _nonIterableSpread() {
115
115
  throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
116
116
  }
117
- function _object_spread(target) {
117
+ function _objectSpread(target) {
118
118
  for(var i = 1; i < arguments.length; i++){
119
119
  var source = arguments[i] != null ? arguments[i] : {};
120
120
  var ownKeys = Object.keys(source);
@@ -124,71 +124,47 @@ function _object_spread(target) {
124
124
  }));
125
125
  }
126
126
  ownKeys.forEach(function(key) {
127
- _define_property(target, key, source[key]);
127
+ _defineProperty(target, key, source[key]);
128
128
  });
129
129
  }
130
130
  return target;
131
131
  }
132
- function ownKeys(object, enumerableOnly) {
133
- var keys = Object.keys(object);
134
- if (Object.getOwnPropertySymbols) {
135
- var symbols = Object.getOwnPropertySymbols(object);
136
- if (enumerableOnly) {
137
- symbols = symbols.filter(function(sym) {
138
- return Object.getOwnPropertyDescriptor(object, sym).enumerable;
139
- });
140
- }
141
- keys.push.apply(keys, symbols);
142
- }
143
- return keys;
144
- }
145
- function _object_spread_props(target, source) {
146
- source = source != null ? source : {};
147
- if (Object.getOwnPropertyDescriptors) {
148
- Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
149
- } else {
150
- ownKeys(Object(source)).forEach(function(key) {
151
- Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
152
- });
153
- }
154
- return target;
155
- }
156
- function _possible_constructor_return(self, call) {
157
- if (call && (_type_of(call) === "object" || typeof call === "function")) {
132
+ function _possibleConstructorReturn(self, call) {
133
+ if (call && (_typeof(call) === "object" || typeof call === "function")) {
158
134
  return call;
159
135
  }
160
- return _assert_this_initialized(self);
136
+ return _assertThisInitialized(self);
161
137
  }
162
- function _set_prototype_of(o, p) {
163
- _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
138
+ function _setPrototypeOf(o, p) {
139
+ _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
164
140
  o.__proto__ = p;
165
141
  return o;
166
142
  };
167
- return _set_prototype_of(o, p);
143
+ return _setPrototypeOf(o, p);
168
144
  }
169
- function _super_prop_base(object, property) {
145
+ function _superPropBase(object, property) {
170
146
  while(!Object.prototype.hasOwnProperty.call(object, property)){
171
- object = _get_prototype_of(object);
147
+ object = _getPrototypeOf(object);
172
148
  if (object === null) break;
173
149
  }
174
150
  return object;
175
151
  }
176
- function _to_consumable_array(arr) {
177
- return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
152
+ function _toConsumableArray(arr) {
153
+ return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
178
154
  }
179
- function _type_of(obj) {
155
+ var _typeof = function(obj) {
180
156
  "@swc/helpers - typeof";
181
157
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
182
- }
183
- function _unsupported_iterable_to_array(o, minLen) {
158
+ };
159
+ function _unsupportedIterableToArray(o, minLen) {
184
160
  if (!o) return;
185
- if (typeof o === "string") return _array_like_to_array(o, minLen);
161
+ if (typeof o === "string") return _arrayLikeToArray(o, minLen);
186
162
  var n = Object.prototype.toString.call(o).slice(8, -1);
187
163
  if (n === "Object" && o.constructor) n = o.constructor.name;
188
164
  if (n === "Map" || n === "Set") return Array.from(n);
189
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
165
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
190
166
  }
191
- function _is_native_reflect_construct() {
167
+ function _isNativeReflectConstruct() {
192
168
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
193
169
  if (Reflect.construct.sham) return false;
194
170
  if (typeof Proxy === "function") return true;
@@ -199,169 +175,68 @@ function _is_native_reflect_construct() {
199
175
  return false;
200
176
  }
201
177
  }
202
- function _create_super(Derived) {
203
- var hasNativeReflectConstruct = _is_native_reflect_construct();
178
+ function _createSuper(Derived) {
179
+ var hasNativeReflectConstruct = _isNativeReflectConstruct();
204
180
  return function _createSuperInternal() {
205
- var Super = _get_prototype_of(Derived), result;
181
+ var Super = _getPrototypeOf(Derived), result;
206
182
  if (hasNativeReflectConstruct) {
207
- var NewTarget = _get_prototype_of(this).constructor;
183
+ var NewTarget = _getPrototypeOf(this).constructor;
208
184
  result = Reflect.construct(Super, arguments, NewTarget);
209
185
  } else {
210
186
  result = Super.apply(this, arguments);
211
187
  }
212
- return _possible_constructor_return(this, result);
213
- };
214
- }
215
- function _ts_generator(thisArg, body) {
216
- var f, y, t, g, _ = {
217
- label: 0,
218
- sent: function() {
219
- if (t[0] & 1) throw t[1];
220
- return t[1];
221
- },
222
- trys: [],
223
- ops: []
188
+ return _possibleConstructorReturn(this, result);
224
189
  };
225
- return g = {
226
- next: verb(0),
227
- "throw": verb(1),
228
- "return": verb(2)
229
- }, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
230
- return this;
231
- }), g;
232
- function verb(n) {
233
- return function(v) {
234
- return step([
235
- n,
236
- v
237
- ]);
238
- };
239
- }
240
- function step(op) {
241
- if (f) throw new TypeError("Generator is already executing.");
242
- while(_)try {
243
- if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
244
- if (y = 0, t) op = [
245
- op[0] & 2,
246
- t.value
247
- ];
248
- switch(op[0]){
249
- case 0:
250
- case 1:
251
- t = op;
252
- break;
253
- case 4:
254
- _.label++;
255
- return {
256
- value: op[1],
257
- done: false
258
- };
259
- case 5:
260
- _.label++;
261
- y = op[1];
262
- op = [
263
- 0
264
- ];
265
- continue;
266
- case 7:
267
- op = _.ops.pop();
268
- _.trys.pop();
269
- continue;
270
- default:
271
- if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
272
- _ = 0;
273
- continue;
274
- }
275
- if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
276
- _.label = op[1];
277
- break;
278
- }
279
- if (op[0] === 6 && _.label < t[1]) {
280
- _.label = t[1];
281
- t = op;
282
- break;
283
- }
284
- if (t && _.label < t[2]) {
285
- _.label = t[2];
286
- _.ops.push(op);
287
- break;
288
- }
289
- if (t[2]) _.ops.pop();
290
- _.trys.pop();
291
- continue;
292
- }
293
- op = body.call(thisArg, _);
294
- } catch (e) {
295
- op = [
296
- 6,
297
- e
298
- ];
299
- y = 0;
300
- } finally{
301
- f = t = 0;
302
- }
303
- if (op[0] & 5) throw op[1];
304
- return {
305
- value: op[0] ? op[1] : void 0,
306
- done: true
307
- };
308
- }
309
190
  }
310
- import { DesignerControl } from "../BaseControl";
311
- import ListControlProperty from "./property";
312
- import { FieldTypes } from "@byteluck-fe/model-driven-shared";
313
- var ListControl = /*#__PURE__*/ function(DesignerControl) {
191
+ import regeneratorRuntime from "regenerator-runtime";
192
+ import { DesignerControl } from '../BaseControl';
193
+ import ListControlProperty from './property';
194
+ import { FieldTypes } from '@byteluck-fe/model-driven-shared';
195
+ var ListControl = /*#__PURE__*/ function(DesignerControl1) {
314
196
  "use strict";
315
- _inherits(ListControl, DesignerControl);
316
- var _super = _create_super(ListControl);
197
+ _inherits(ListControl, DesignerControl1);
198
+ var _super = _createSuper(ListControl);
317
199
  function ListControl(props) {
318
- _class_call_check(this, ListControl);
200
+ _classCallCheck(this, ListControl);
319
201
  var _this;
320
202
  _this = _super.call(this, props);
321
- _define_property(_assert_this_initialized(_this), "controlType", "list");
322
- _define_property(_assert_this_initialized(_this), "props", void 0);
323
- _this.props = new ListControlProperty(_assert_this_initialized(_this), props === null || props === void 0 ? void 0 : props.props);
203
+ _this.controlType = 'list';
204
+ _this.props = new ListControlProperty(_assertThisInitialized(_this), props === null || props === void 0 ? void 0 : props.props);
324
205
  return _this;
325
206
  }
326
- _create_class(ListControl, [
207
+ _createClass(ListControl, [
327
208
  {
328
209
  key: "validate",
329
210
  value: function validate(messages, ignore) {
330
211
  var _this = this;
331
212
  var _this1 = this, _superprop_get_validate = function() {
332
- return _get(_get_prototype_of(ListControl.prototype), "validate", _this);
213
+ return _get(_getPrototypeOf(ListControl.prototype), "validate", _this);
333
214
  };
334
- return _async_to_generator(function() {
335
- return _ts_generator(this, function(_state) {
336
- switch(_state.label){
215
+ return _asyncToGenerator(regeneratorRuntime.mark(function _callee() {
216
+ return regeneratorRuntime.wrap(function _callee$(_ctx) {
217
+ while(1)switch(_ctx.prev = _ctx.next){
337
218
  case 0:
338
- return [
339
- 4,
340
- _superprop_get_validate().call(_this1, messages)
341
- ];
342
- case 1:
343
- _state.sent();
344
- return [
345
- 4,
346
- Promise.all(_this1.props.headers.map(function(child) {
347
- return child.validate(messages, ignore);
348
- }))
349
- ];
219
+ _ctx.next = 2;
220
+ return _superprop_get_validate().call(_this1, messages);
350
221
  case 2:
351
- _state.sent();
352
- return [
353
- 2,
354
- true
355
- ];
222
+ _ctx.next = 4;
223
+ return Promise.all(_this1.props.headers.map(function(child) {
224
+ return child.validate(messages, ignore);
225
+ }));
226
+ case 4:
227
+ return _ctx.abrupt("return", true);
228
+ case 5:
229
+ case "end":
230
+ return _ctx.stop();
356
231
  }
357
- });
358
- })();
232
+ }, _callee);
233
+ }))();
359
234
  }
360
235
  },
361
236
  {
362
237
  key: "toDataBindModel",
363
238
  value: function toDataBindModel() {
364
- var listModel = _get(_get_prototype_of(ListControl.prototype), "toDataBindModel", this).call(this);
239
+ var listModel = _get(_getPrototypeOf(ListControl.prototype), "toDataBindModel", this).call(this);
365
240
  var result = listModel ? [
366
241
  listModel
367
242
  ] : [];
@@ -372,7 +247,7 @@ var ListControl = /*#__PURE__*/ function(DesignerControl) {
372
247
  var filteredModel = model.filter(function(item) {
373
248
  return !!item;
374
249
  });
375
- return _to_consumable_array(arr).concat(_to_consumable_array(filteredModel));
250
+ return _toConsumableArray(arr).concat(_toConsumableArray(filteredModel));
376
251
  }
377
252
  model && arr.push(model);
378
253
  return arr;
@@ -382,12 +257,12 @@ var ListControl = /*#__PURE__*/ function(DesignerControl) {
382
257
  {
383
258
  key: "toSchema",
384
259
  value: function toSchema() {
385
- var superSchema = _get(_get_prototype_of(ListControl.prototype), "toSchema", this).call(this);
260
+ var superSchema = _get(_getPrototypeOf(ListControl.prototype), "toSchema", this).call(this);
386
261
  var headers = this.props.headers.map(function(item) {
387
262
  return item.toSchema();
388
263
  });
389
- return _object_spread_props(_object_spread({}, superSchema), {
390
- props: _object_spread_props(_object_spread({}, this.props), {
264
+ return _objectSpread({}, superSchema, {
265
+ props: _objectSpread({}, this.props, {
391
266
  headers: headers
392
267
  })
393
268
  });
@@ -396,6 +271,6 @@ var ListControl = /*#__PURE__*/ function(DesignerControl) {
396
271
  ]);
397
272
  return ListControl;
398
273
  }(DesignerControl);
399
- _define_property(ListControl, "controlFieldType", FieldTypes.LIST);
274
+ ListControl.controlFieldType = FieldTypes.LIST;
400
275
  export default ListControl;
401
276
  export { ListControl as DesignerListControl };
@@ -1,11 +1,11 @@
1
- import Designer from "./designer";
2
- import Runtime from "./runtime";
3
- import Property from "./property";
1
+ import Designer from './designer';
2
+ import Runtime from './runtime';
3
+ import Property from './property';
4
4
  export default {
5
5
  Designer: Designer,
6
6
  Runtime: Runtime,
7
7
  Property: Property
8
8
  };
9
- export * from "./designer";
10
- export * from "./runtime";
11
- export * from "./property";
9
+ export * from './designer';
10
+ export * from './runtime';
11
+ export * from './property';