@byteluck-fe/model-driven-controls 2.6.0-alpha.17b → 2.6.0-alpha.17d
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/columnControls/CustomColumn/designer.js +1 -1
- package/dist/esm/columnControls/CustomColumn/runtime.js +1 -1
- package/dist/esm/columnControls/OperationColumn/designer.js +1 -1
- package/dist/esm/columnControls/OperationColumn/runtime.js +1 -1
- package/dist/esm/listControls/GridTable/designer.js +1 -1
- package/dist/esm/listControls/SubTable/property.js +1 -1
- package/dist/index.umd.js +1 -1
- package/package.json +4 -4
|
@@ -155,7 +155,7 @@ var CustomColumnControl = /*#__PURE__*/ function _target(DesignerColumnControl1)
|
|
|
155
155
|
_this = _super.call(this, props);
|
|
156
156
|
var ref = _instanceof(this, CustomColumnControl) ? this.constructor : void 0, excludes = ref.excludes, childrenMaxLength = ref.childrenMaxLength;
|
|
157
157
|
_this.props = new CustomColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
158
|
-
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children);
|
|
158
|
+
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Designer');
|
|
159
159
|
_this.excludes = JSONCopy(excludes);
|
|
160
160
|
_this.childrenMaxLength = childrenMaxLength;
|
|
161
161
|
return _this;
|
|
@@ -81,7 +81,7 @@ var CustomColumnControl = /*#__PURE__*/ function(RuntimeColumnControl1) {
|
|
|
81
81
|
var _this;
|
|
82
82
|
_this = _super.call(this, props);
|
|
83
83
|
_this.props = new CustomColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
84
|
-
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children);
|
|
84
|
+
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Runtime');
|
|
85
85
|
return _this;
|
|
86
86
|
}
|
|
87
87
|
return CustomColumnControl;
|
|
@@ -176,7 +176,7 @@ var OperationColumnControl = /*#__PURE__*/ function(DesignerColumnControl1) {
|
|
|
176
176
|
var _this;
|
|
177
177
|
_this = _super.call(this, props);
|
|
178
178
|
_this.props = new OperationColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
179
|
-
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children);
|
|
179
|
+
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Designer');
|
|
180
180
|
return _this;
|
|
181
181
|
}
|
|
182
182
|
_createClass(OperationColumnControl, [
|
|
@@ -81,7 +81,7 @@ var OperationColumnControl = /*#__PURE__*/ function(RuntimeColumnControl1) {
|
|
|
81
81
|
var _this;
|
|
82
82
|
_this = _super.call(this, props);
|
|
83
83
|
_this.props = new OperationColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
84
|
-
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children);
|
|
84
|
+
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Runtime');
|
|
85
85
|
return _this;
|
|
86
86
|
}
|
|
87
87
|
return OperationColumnControl;
|
|
@@ -178,7 +178,7 @@ var GridTableControl = /*#__PURE__*/ function(DesignerListControl1) {
|
|
|
178
178
|
var ref;
|
|
179
179
|
_this = _super.call(this, props);
|
|
180
180
|
_this.props = new GridTableControlProperty(_assertThisInitialized(_this), props === null || props === void 0 ? void 0 : props.props);
|
|
181
|
-
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children);
|
|
181
|
+
defineControlArrayToProperty(_assertThisInitialized(_this), 'children', props === null || props === void 0 ? void 0 : props.children, undefined, 'Designer');
|
|
182
182
|
if ((props === null || props === void 0 ? void 0 : props.props.headers) === undefined) {
|
|
183
183
|
_this.props.headers = [
|
|
184
184
|
new DesignerOrderColumnControl(),
|
|
@@ -167,7 +167,7 @@ var SubTableControlProperty = /**
|
|
|
167
167
|
function SubTableControlProperty(parent, props) {
|
|
168
168
|
_classCallCheck(this, SubTableControlProperty);
|
|
169
169
|
var _this;
|
|
170
|
-
_this = _super.call(this, parent, props);
|
|
170
|
+
_this = _super.call(this, parent, props, SubTableControlProperty.mode);
|
|
171
171
|
var ref;
|
|
172
172
|
_this.caption = (ref = props === null || props === void 0 ? void 0 : props.caption) !== null && ref !== void 0 ? ref : SubTableControl.controlName;
|
|
173
173
|
var ref1;
|