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