@byteluck-fe/model-driven-controls 2.21.0-beta.1 → 2.21.0-beta.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/columnControls/OperationColumn/designer.js +1 -3
- package/dist/esm/columnControls/OperationColumn/runtime.js +1 -3
- package/dist/index.umd.js +1 -1
- package/dist/types/columnControls/OperationColumn/designer.d.ts +1 -2
- package/dist/types/columnControls/OperationColumn/runtime.d.ts +1 -2
- package/dist/types/listControls/GridTable/property.d.ts +1 -1
- package/package.json +5 -5
|
@@ -282,7 +282,7 @@ function _ts_generator(thisArg, body) {
|
|
|
282
282
|
};
|
|
283
283
|
}
|
|
284
284
|
}
|
|
285
|
-
import { DesignerColumnControl, COMMON_SETTING_TYPE
|
|
285
|
+
import { DesignerColumnControl, COMMON_SETTING_TYPE } from "@byteluck-fe/model-driven-core";
|
|
286
286
|
import { DesignerOperationButtonControl } from "../../baseControls/OperationButton";
|
|
287
287
|
import OperationColumnControlProperty from "./property";
|
|
288
288
|
var OperationColumnControl = /*#__PURE__*/ function(DesignerColumnControl) {
|
|
@@ -294,9 +294,7 @@ var OperationColumnControl = /*#__PURE__*/ function(DesignerColumnControl) {
|
|
|
294
294
|
var _this;
|
|
295
295
|
_this = _super.call(this, props);
|
|
296
296
|
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
297
|
-
_define_property(_assert_this_initialized(_this), "children", void 0);
|
|
298
297
|
_this.props = new OperationColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
299
|
-
defineControlArrayToProperty(_assert_this_initialized(_this), "children", props === null || props === void 0 ? void 0 : props.children, undefined, "Designer");
|
|
300
298
|
return _this;
|
|
301
299
|
}
|
|
302
300
|
_create_class(OperationColumnControl, [
|
|
@@ -82,7 +82,7 @@ function _create_super(Derived) {
|
|
|
82
82
|
return _possible_constructor_return(this, result);
|
|
83
83
|
};
|
|
84
84
|
}
|
|
85
|
-
import {
|
|
85
|
+
import { RuntimeColumnControl } from "@byteluck-fe/model-driven-core";
|
|
86
86
|
import OperationColumnControlProperty from "./property";
|
|
87
87
|
import { FieldTypes } from "@byteluck-fe/model-driven-shared";
|
|
88
88
|
var OperationColumnControl = /*#__PURE__*/ function(RuntimeColumnControl) {
|
|
@@ -94,9 +94,7 @@ var OperationColumnControl = /*#__PURE__*/ function(RuntimeColumnControl) {
|
|
|
94
94
|
var _this;
|
|
95
95
|
_this = _super.call(this, props);
|
|
96
96
|
_define_property(_assert_this_initialized(_this), "props", void 0);
|
|
97
|
-
_define_property(_assert_this_initialized(_this), "children", void 0);
|
|
98
97
|
_this.props = new OperationColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
99
|
-
defineControlArrayToProperty(_assert_this_initialized(_this), "children", props === null || props === void 0 ? void 0 : props.children, undefined, "Runtime");
|
|
100
98
|
return _this;
|
|
101
99
|
}
|
|
102
100
|
return OperationColumnControl;
|