@byteluck-fe/model-driven-core 2.23.0-beta.17 → 2.23.0-beta.18
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/common/BaseControl/property.js +23 -10
- package/dist/esm/common/ColumnControl/designer.js +27 -13
- package/dist/esm/common/ColumnControl/property.js +57 -32
- package/dist/esm/common/ColumnControl/runtime.js +27 -13
- package/dist/esm/common/FormControl/designer.js +25 -12
- package/dist/esm/common/FormControl/property.js +70 -42
- package/dist/esm/common/FormControl/runtime.js +26 -12
- package/dist/esm/common/LayoutControl/designer.js +29 -13
- package/dist/esm/common/LayoutControl/property.js +23 -12
- package/dist/esm/common/LayoutControl/runtime.js +27 -13
- package/dist/esm/common/ListControl/designer.js +26 -13
- package/dist/esm/common/ListControl/property.js +31 -14
- package/dist/esm/common/ListControl/runtime.js +28 -14
- package/dist/esm/common/SearchViewControl/designer.js +25 -12
- package/dist/esm/common/SearchViewControl/property.js +24 -12
- package/dist/esm/common/SearchViewControl/runtime.js +25 -12
- package/dist/esm/common/WrapControl/designer.js +25 -12
- package/dist/esm/common/WrapControl/property.js +23 -12
- package/dist/esm/common/WrapControl/runtime.js +25 -12
- package/dist/esm/framework/RegisterControls.js +0 -1
- package/dist/esm/framework/index.js +82 -51
- package/dist/index.umd.js +1 -1
- package/package.json +3 -3
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -63,24 +59,42 @@ function _type_of(obj) {
|
|
|
63
59
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
60
|
}
|
|
65
61
|
function _is_native_reflect_construct() {
|
|
62
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
+
if (Reflect.construct.sham) return false;
|
|
64
|
+
if (typeof Proxy === "function") return true;
|
|
66
65
|
try {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
return
|
|
71
|
-
}
|
|
66
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
+
return true;
|
|
68
|
+
} catch (e) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
function _create_super(Derived) {
|
|
73
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
+
return function _createSuperInternal() {
|
|
75
|
+
var Super = _get_prototype_of(Derived), result;
|
|
76
|
+
if (hasNativeReflectConstruct) {
|
|
77
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
+
} else {
|
|
80
|
+
result = Super.apply(this, arguments);
|
|
81
|
+
}
|
|
82
|
+
return _possible_constructor_return(this, result);
|
|
83
|
+
};
|
|
72
84
|
}
|
|
73
85
|
import { RuntimeControl } from '../BaseControl';
|
|
74
86
|
import BaseControlProperty from './property';
|
|
75
87
|
var FormControl = /*#__PURE__*/ function(RuntimeControl) {
|
|
76
88
|
"use strict";
|
|
77
89
|
_inherits(FormControl, RuntimeControl);
|
|
90
|
+
var _super = _create_super(FormControl);
|
|
78
91
|
function FormControl(props) {
|
|
79
92
|
_class_call_check(this, FormControl);
|
|
80
93
|
var _this;
|
|
81
|
-
_this =
|
|
82
|
-
|
|
83
|
-
|
|
94
|
+
_this = _super.call(this, props);
|
|
95
|
+
_define_property(_assert_this_initialized(_this), "controlType", 'form');
|
|
96
|
+
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
97
|
+
_define_property(_assert_this_initialized(_this), "value", void 0);
|
|
84
98
|
_this.props = new BaseControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
85
99
|
return _this;
|
|
86
100
|
}
|
|
@@ -41,10 +41,6 @@ function _async_to_generator(fn) {
|
|
|
41
41
|
});
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
|
-
function _call_super(_this, derived, args) {
|
|
45
|
-
derived = _get_prototype_of(derived);
|
|
46
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
47
|
-
}
|
|
48
44
|
function _class_call_check(instance, Constructor) {
|
|
49
45
|
if (!(instance instanceof Constructor)) {
|
|
50
46
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -200,12 +196,28 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
200
196
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
201
197
|
}
|
|
202
198
|
function _is_native_reflect_construct() {
|
|
199
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
200
|
+
if (Reflect.construct.sham) return false;
|
|
201
|
+
if (typeof Proxy === "function") return true;
|
|
203
202
|
try {
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
return
|
|
208
|
-
}
|
|
203
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
204
|
+
return true;
|
|
205
|
+
} catch (e) {
|
|
206
|
+
return false;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
function _create_super(Derived) {
|
|
210
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
211
|
+
return function _createSuperInternal() {
|
|
212
|
+
var Super = _get_prototype_of(Derived), result;
|
|
213
|
+
if (hasNativeReflectConstruct) {
|
|
214
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
215
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
216
|
+
} else {
|
|
217
|
+
result = Super.apply(this, arguments);
|
|
218
|
+
}
|
|
219
|
+
return _possible_constructor_return(this, result);
|
|
220
|
+
};
|
|
209
221
|
}
|
|
210
222
|
function _ts_generator(thisArg, body) {
|
|
211
223
|
var f, y, t, g, _ = {
|
|
@@ -311,15 +323,19 @@ var CHILDREN_MAX_LENGTH = 10000;
|
|
|
311
323
|
var LayoutControl = /*#__PURE__*/ function _target(DesignerControl) {
|
|
312
324
|
"use strict";
|
|
313
325
|
_inherits(LayoutControl, DesignerControl);
|
|
326
|
+
var _super = _create_super(LayoutControl);
|
|
314
327
|
function LayoutControl(props) {
|
|
315
328
|
_class_call_check(this, LayoutControl);
|
|
316
329
|
var _this;
|
|
317
|
-
_this =
|
|
318
|
-
|
|
319
|
-
|
|
330
|
+
_this = _super.call(this, props);
|
|
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);
|
|
320
336
|
var _ref = _instanceof(this, LayoutControl) ? this.constructor : void 0, excludes = _ref.excludes, childrenMaxLength = _ref.childrenMaxLength;
|
|
321
337
|
_this.props = new LayoutControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
322
|
-
defineControlArrayToProperty(_this, 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Designer');
|
|
338
|
+
defineControlArrayToProperty(_assert_this_initialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Designer');
|
|
323
339
|
_this.excludes = JSONCopy(excludes);
|
|
324
340
|
_this.childrenMaxLength = childrenMaxLength;
|
|
325
341
|
return _this;
|
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -50,22 +46,37 @@ function _type_of(obj) {
|
|
|
50
46
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
51
47
|
}
|
|
52
48
|
function _is_native_reflect_construct() {
|
|
49
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
50
|
+
if (Reflect.construct.sham) return false;
|
|
51
|
+
if (typeof Proxy === "function") return true;
|
|
53
52
|
try {
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
return
|
|
58
|
-
}
|
|
53
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
54
|
+
return true;
|
|
55
|
+
} catch (e) {
|
|
56
|
+
return false;
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
function _create_super(Derived) {
|
|
60
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
61
|
+
return function _createSuperInternal() {
|
|
62
|
+
var Super = _get_prototype_of(Derived), result;
|
|
63
|
+
if (hasNativeReflectConstruct) {
|
|
64
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
65
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
66
|
+
} else {
|
|
67
|
+
result = Super.apply(this, arguments);
|
|
68
|
+
}
|
|
69
|
+
return _possible_constructor_return(this, result);
|
|
70
|
+
};
|
|
59
71
|
}
|
|
60
72
|
import { Property } from '../BaseControl';
|
|
61
73
|
var LayoutControlProperty = /*#__PURE__*/ function(Property) {
|
|
62
74
|
"use strict";
|
|
63
75
|
_inherits(LayoutControlProperty, Property);
|
|
76
|
+
var _super = _create_super(LayoutControlProperty);
|
|
64
77
|
function LayoutControlProperty(props) {
|
|
65
78
|
_class_call_check(this, LayoutControlProperty);
|
|
66
|
-
return
|
|
67
|
-
props
|
|
68
|
-
]);
|
|
79
|
+
return _super.call(this, props);
|
|
69
80
|
}
|
|
70
81
|
return LayoutControlProperty;
|
|
71
82
|
}(Property);
|
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -63,12 +59,28 @@ function _type_of(obj) {
|
|
|
63
59
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
60
|
}
|
|
65
61
|
function _is_native_reflect_construct() {
|
|
62
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
+
if (Reflect.construct.sham) return false;
|
|
64
|
+
if (typeof Proxy === "function") return true;
|
|
66
65
|
try {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
return
|
|
71
|
-
}
|
|
66
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
+
return true;
|
|
68
|
+
} catch (e) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
function _create_super(Derived) {
|
|
73
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
+
return function _createSuperInternal() {
|
|
75
|
+
var Super = _get_prototype_of(Derived), result;
|
|
76
|
+
if (hasNativeReflectConstruct) {
|
|
77
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
+
} else {
|
|
80
|
+
result = Super.apply(this, arguments);
|
|
81
|
+
}
|
|
82
|
+
return _possible_constructor_return(this, result);
|
|
83
|
+
};
|
|
72
84
|
}
|
|
73
85
|
import { RuntimeControl } from '../BaseControl';
|
|
74
86
|
import LayoutControlProperty from './property';
|
|
@@ -76,14 +88,16 @@ import { defineControlArrayToProperty } from '../ControlArray';
|
|
|
76
88
|
var LayoutControl = /*#__PURE__*/ function(RuntimeControl) {
|
|
77
89
|
"use strict";
|
|
78
90
|
_inherits(LayoutControl, RuntimeControl);
|
|
91
|
+
var _super = _create_super(LayoutControl);
|
|
79
92
|
function LayoutControl(props) {
|
|
80
93
|
_class_call_check(this, LayoutControl);
|
|
81
94
|
var _this;
|
|
82
|
-
_this =
|
|
83
|
-
|
|
84
|
-
|
|
95
|
+
_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);
|
|
85
99
|
_this.props = new LayoutControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
86
|
-
defineControlArrayToProperty(_this, 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Runtime');
|
|
100
|
+
defineControlArrayToProperty(_assert_this_initialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Runtime');
|
|
87
101
|
return _this;
|
|
88
102
|
}
|
|
89
103
|
return LayoutControl;
|
|
@@ -41,10 +41,6 @@ function _async_to_generator(fn) {
|
|
|
41
41
|
});
|
|
42
42
|
};
|
|
43
43
|
}
|
|
44
|
-
function _call_super(_this, derived, args) {
|
|
45
|
-
derived = _get_prototype_of(derived);
|
|
46
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
47
|
-
}
|
|
48
44
|
function _class_call_check(instance, Constructor) {
|
|
49
45
|
if (!(instance instanceof Constructor)) {
|
|
50
46
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -193,12 +189,28 @@ function _unsupported_iterable_to_array(o, minLen) {
|
|
|
193
189
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
194
190
|
}
|
|
195
191
|
function _is_native_reflect_construct() {
|
|
192
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
193
|
+
if (Reflect.construct.sham) return false;
|
|
194
|
+
if (typeof Proxy === "function") return true;
|
|
196
195
|
try {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
return
|
|
201
|
-
}
|
|
196
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
197
|
+
return true;
|
|
198
|
+
} catch (e) {
|
|
199
|
+
return false;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
function _create_super(Derived) {
|
|
203
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
204
|
+
return function _createSuperInternal() {
|
|
205
|
+
var Super = _get_prototype_of(Derived), result;
|
|
206
|
+
if (hasNativeReflectConstruct) {
|
|
207
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
208
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
209
|
+
} else {
|
|
210
|
+
result = Super.apply(this, arguments);
|
|
211
|
+
}
|
|
212
|
+
return _possible_constructor_return(this, result);
|
|
213
|
+
};
|
|
202
214
|
}
|
|
203
215
|
function _ts_generator(thisArg, body) {
|
|
204
216
|
var f, y, t, g, _ = {
|
|
@@ -301,13 +313,14 @@ import { FieldTypes } from '@byteluck-fe/model-driven-shared';
|
|
|
301
313
|
var ListControl = /*#__PURE__*/ function(DesignerControl) {
|
|
302
314
|
"use strict";
|
|
303
315
|
_inherits(ListControl, DesignerControl);
|
|
316
|
+
var _super = _create_super(ListControl);
|
|
304
317
|
function ListControl(props) {
|
|
305
318
|
_class_call_check(this, ListControl);
|
|
306
319
|
var _this;
|
|
307
|
-
_this =
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
_this.props = new ListControlProperty(_this, props === null || props === void 0 ? void 0 : props.props, 'Designer');
|
|
320
|
+
_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, 'Designer');
|
|
311
324
|
return _this;
|
|
312
325
|
}
|
|
313
326
|
_create_class(ListControl, [
|
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -63,26 +59,47 @@ function _type_of(obj) {
|
|
|
63
59
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
60
|
}
|
|
65
61
|
function _is_native_reflect_construct() {
|
|
62
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
+
if (Reflect.construct.sham) return false;
|
|
64
|
+
if (typeof Proxy === "function") return true;
|
|
66
65
|
try {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
return
|
|
71
|
-
}
|
|
66
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
+
return true;
|
|
68
|
+
} catch (e) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
function _create_super(Derived) {
|
|
73
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
+
return function _createSuperInternal() {
|
|
75
|
+
var Super = _get_prototype_of(Derived), result;
|
|
76
|
+
if (hasNativeReflectConstruct) {
|
|
77
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
+
} else {
|
|
80
|
+
result = Super.apply(this, arguments);
|
|
81
|
+
}
|
|
82
|
+
return _possible_constructor_return(this, result);
|
|
83
|
+
};
|
|
72
84
|
}
|
|
73
85
|
import { Property } from '../BaseControl';
|
|
74
86
|
import { defineControlArrayToProperty } from '../ControlArray';
|
|
75
87
|
var ListControlProperty = /*#__PURE__*/ function(Property) {
|
|
76
88
|
"use strict";
|
|
77
89
|
_inherits(ListControlProperty, Property);
|
|
90
|
+
var _super = _create_super(ListControlProperty);
|
|
78
91
|
function ListControlProperty(parent, props, mode) {
|
|
79
92
|
_class_call_check(this, ListControlProperty);
|
|
80
93
|
var _this;
|
|
81
|
-
_this =
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
94
|
+
_this = _super.call(this, props);
|
|
95
|
+
_define_property(_assert_this_initialized(_this), "headers", void 0);
|
|
96
|
+
_define_property(_assert_this_initialized(_this), "footers", void 0);
|
|
97
|
+
_define_property(_assert_this_initialized(_this), "pageIndex", void 0);
|
|
98
|
+
_define_property(_assert_this_initialized(_this), "pageSize", void 0);
|
|
99
|
+
_define_property(_assert_this_initialized(_this), "pageSizeOptions", void 0);
|
|
100
|
+
_define_property(_assert_this_initialized(_this), "totalCount", void 0);
|
|
101
|
+
defineControlArrayToProperty(_assert_this_initialized(_this), 'headers', props === null || props === void 0 ? void 0 : props.headers, parent, mode);
|
|
102
|
+
defineControlArrayToProperty(_assert_this_initialized(_this), 'footers', props === null || props === void 0 ? void 0 : props.footers, parent);
|
|
86
103
|
var _props_pageIndex;
|
|
87
104
|
_this.pageIndex = (_props_pageIndex = props === null || props === void 0 ? void 0 : props.pageIndex) !== null && _props_pageIndex !== void 0 ? _props_pageIndex : 1;
|
|
88
105
|
var _props_pageSize;
|
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -77,12 +73,28 @@ function _type_of(obj) {
|
|
|
77
73
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
78
74
|
}
|
|
79
75
|
function _is_native_reflect_construct() {
|
|
76
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
77
|
+
if (Reflect.construct.sham) return false;
|
|
78
|
+
if (typeof Proxy === "function") return true;
|
|
80
79
|
try {
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
return
|
|
85
|
-
}
|
|
80
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
81
|
+
return true;
|
|
82
|
+
} catch (e) {
|
|
83
|
+
return false;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
function _create_super(Derived) {
|
|
87
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
88
|
+
return function _createSuperInternal() {
|
|
89
|
+
var Super = _get_prototype_of(Derived), result;
|
|
90
|
+
if (hasNativeReflectConstruct) {
|
|
91
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
92
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
93
|
+
} else {
|
|
94
|
+
result = Super.apply(this, arguments);
|
|
95
|
+
}
|
|
96
|
+
return _possible_constructor_return(this, result);
|
|
97
|
+
};
|
|
86
98
|
}
|
|
87
99
|
import { RuntimeControl } from '../BaseControl';
|
|
88
100
|
import ListControlProperty from './property';
|
|
@@ -90,14 +102,16 @@ import { defineControlArrayToProperty } from '../ControlArray';
|
|
|
90
102
|
var ListControl = /*#__PURE__*/ function(RuntimeControl) {
|
|
91
103
|
"use strict";
|
|
92
104
|
_inherits(ListControl, RuntimeControl);
|
|
105
|
+
var _super = _create_super(ListControl);
|
|
93
106
|
function ListControl(props) {
|
|
94
107
|
_class_call_check(this, ListControl);
|
|
95
108
|
var _this;
|
|
96
|
-
_this =
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
109
|
+
_this = _super.call(this, props);
|
|
110
|
+
_define_property(_assert_this_initialized(_this), "controlType", 'list');
|
|
111
|
+
_define_property(_assert_this_initialized(_this), "children", void 0);
|
|
112
|
+
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
113
|
+
_this.props = new ListControlProperty(_assert_this_initialized(_this), props === null || props === void 0 ? void 0 : props.props, 'Runtime');
|
|
114
|
+
defineControlArrayToProperty(_assert_this_initialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Runtime');
|
|
101
115
|
return _this;
|
|
102
116
|
}
|
|
103
117
|
_create_class(ListControl, [
|
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -63,24 +59,41 @@ function _type_of(obj) {
|
|
|
63
59
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
60
|
}
|
|
65
61
|
function _is_native_reflect_construct() {
|
|
62
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
+
if (Reflect.construct.sham) return false;
|
|
64
|
+
if (typeof Proxy === "function") return true;
|
|
66
65
|
try {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
return
|
|
71
|
-
}
|
|
66
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
+
return true;
|
|
68
|
+
} catch (e) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
function _create_super(Derived) {
|
|
73
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
+
return function _createSuperInternal() {
|
|
75
|
+
var Super = _get_prototype_of(Derived), result;
|
|
76
|
+
if (hasNativeReflectConstruct) {
|
|
77
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
+
} else {
|
|
80
|
+
result = Super.apply(this, arguments);
|
|
81
|
+
}
|
|
82
|
+
return _possible_constructor_return(this, result);
|
|
83
|
+
};
|
|
72
84
|
}
|
|
73
85
|
import SearchControlProperty from './property';
|
|
74
86
|
import { DesignerLayoutControl } from '../LayoutControl';
|
|
75
87
|
var SearchControl = /*#__PURE__*/ function(DesignerLayoutControl) {
|
|
76
88
|
"use strict";
|
|
77
89
|
_inherits(SearchControl, DesignerLayoutControl);
|
|
90
|
+
var _super = _create_super(SearchControl);
|
|
78
91
|
function SearchControl(props) {
|
|
79
92
|
_class_call_check(this, SearchControl);
|
|
80
93
|
var _this;
|
|
81
|
-
_this =
|
|
82
|
-
|
|
83
|
-
|
|
94
|
+
_this = _super.call(this, props);
|
|
95
|
+
_define_property(_assert_this_initialized(_this), "controlType", 'search');
|
|
96
|
+
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
84
97
|
_this.props = new SearchControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
85
98
|
return _this;
|
|
86
99
|
}
|
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -63,24 +59,40 @@ function _type_of(obj) {
|
|
|
63
59
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
60
|
}
|
|
65
61
|
function _is_native_reflect_construct() {
|
|
62
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
+
if (Reflect.construct.sham) return false;
|
|
64
|
+
if (typeof Proxy === "function") return true;
|
|
66
65
|
try {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
return
|
|
71
|
-
}
|
|
66
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
+
return true;
|
|
68
|
+
} catch (e) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
function _create_super(Derived) {
|
|
73
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
+
return function _createSuperInternal() {
|
|
75
|
+
var Super = _get_prototype_of(Derived), result;
|
|
76
|
+
if (hasNativeReflectConstruct) {
|
|
77
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
+
} else {
|
|
80
|
+
result = Super.apply(this, arguments);
|
|
81
|
+
}
|
|
82
|
+
return _possible_constructor_return(this, result);
|
|
83
|
+
};
|
|
72
84
|
}
|
|
73
85
|
import { LayoutControlProperty } from '../LayoutControl';
|
|
74
86
|
import { DataBind } from '../../framework';
|
|
75
87
|
var SearchControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
|
|
76
88
|
"use strict";
|
|
77
89
|
_inherits(SearchControlProperty, LayoutControlProperty);
|
|
90
|
+
var _super = _create_super(SearchControlProperty);
|
|
78
91
|
function SearchControlProperty(props) {
|
|
79
92
|
_class_call_check(this, SearchControlProperty);
|
|
80
93
|
var _this;
|
|
81
|
-
_this =
|
|
82
|
-
|
|
83
|
-
]), _define_property(_this, "dataBind", void 0);
|
|
94
|
+
_this = _super.call(this, props);
|
|
95
|
+
_define_property(_assert_this_initialized(_this), "dataBind", void 0);
|
|
84
96
|
_this.dataBind = new DataBind(props === null || props === void 0 ? void 0 : props.dataBind);
|
|
85
97
|
return _this;
|
|
86
98
|
}
|
|
@@ -4,10 +4,6 @@ function _assert_this_initialized(self) {
|
|
|
4
4
|
}
|
|
5
5
|
return self;
|
|
6
6
|
}
|
|
7
|
-
function _call_super(_this, derived, args) {
|
|
8
|
-
derived = _get_prototype_of(derived);
|
|
9
|
-
return _possible_constructor_return(_this, _is_native_reflect_construct() ? Reflect.construct(derived, args || [], _get_prototype_of(_this).constructor) : derived.apply(_this, args));
|
|
10
|
-
}
|
|
11
7
|
function _class_call_check(instance, Constructor) {
|
|
12
8
|
if (!(instance instanceof Constructor)) {
|
|
13
9
|
throw new TypeError("Cannot call a class as a function");
|
|
@@ -63,24 +59,41 @@ function _type_of(obj) {
|
|
|
63
59
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
64
60
|
}
|
|
65
61
|
function _is_native_reflect_construct() {
|
|
62
|
+
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
63
|
+
if (Reflect.construct.sham) return false;
|
|
64
|
+
if (typeof Proxy === "function") return true;
|
|
66
65
|
try {
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
return
|
|
71
|
-
}
|
|
66
|
+
Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function() {}));
|
|
67
|
+
return true;
|
|
68
|
+
} catch (e) {
|
|
69
|
+
return false;
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
function _create_super(Derived) {
|
|
73
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
74
|
+
return function _createSuperInternal() {
|
|
75
|
+
var Super = _get_prototype_of(Derived), result;
|
|
76
|
+
if (hasNativeReflectConstruct) {
|
|
77
|
+
var NewTarget = _get_prototype_of(this).constructor;
|
|
78
|
+
result = Reflect.construct(Super, arguments, NewTarget);
|
|
79
|
+
} else {
|
|
80
|
+
result = Super.apply(this, arguments);
|
|
81
|
+
}
|
|
82
|
+
return _possible_constructor_return(this, result);
|
|
83
|
+
};
|
|
72
84
|
}
|
|
73
85
|
import SearchControlProperty from './property';
|
|
74
86
|
import { RuntimeLayoutControl } from '../LayoutControl';
|
|
75
87
|
var SearchControl = /*#__PURE__*/ function(RuntimeLayoutControl) {
|
|
76
88
|
"use strict";
|
|
77
89
|
_inherits(SearchControl, RuntimeLayoutControl);
|
|
90
|
+
var _super = _create_super(SearchControl);
|
|
78
91
|
function SearchControl(props) {
|
|
79
92
|
_class_call_check(this, SearchControl);
|
|
80
93
|
var _this;
|
|
81
|
-
_this =
|
|
82
|
-
|
|
83
|
-
|
|
94
|
+
_this = _super.call(this, props);
|
|
95
|
+
_define_property(_assert_this_initialized(_this), "controlType", 'search');
|
|
96
|
+
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
84
97
|
_this.props = new SearchControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
85
98
|
return _this;
|
|
86
99
|
}
|