@byteluck-fe/model-driven-controls 7.0.0-props.73 → 7.0.0-props.75
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.
|
@@ -96,18 +96,19 @@ var BlankContainerProperty = /*#__PURE__*/ function(LayoutControlProperty) {
|
|
|
96
96
|
function BlankContainerProperty(props) {
|
|
97
97
|
_class_call_check(this, BlankContainerProperty);
|
|
98
98
|
var _this;
|
|
99
|
-
var _ref, _ref1, _ref2, _ref3, _ref4;
|
|
99
|
+
var _ref, _ref1, _ref2, _ref3, _ref4, _ref5;
|
|
100
100
|
_this = _call_super(this, BlankContainerProperty, [
|
|
101
101
|
props
|
|
102
|
-
]), _define_property(_this, "caption", void 0), _define_property(_this, "captionSize", void 0), _define_property(_this, "captionColor", void 0), _define_property(_this, "isCaptionItalic", void 0), _define_property(_this, "captionFontWeight", void 0), _define_property(_this, "position", void 0), _define_property(_this, "backgroundColor", void 0), _define_property(_this, "showShadow", void 0);
|
|
102
|
+
]), _define_property(_this, "caption", void 0), _define_property(_this, "isHideCaption", void 0), _define_property(_this, "captionSize", void 0), _define_property(_this, "captionColor", void 0), _define_property(_this, "isCaptionItalic", void 0), _define_property(_this, "captionFontWeight", void 0), _define_property(_this, "position", void 0), _define_property(_this, "backgroundColor", void 0), _define_property(_this, "showShadow", void 0);
|
|
103
103
|
_this.caption = (_ref = props === null || props === void 0 ? void 0 : props.caption) !== null && _ref !== void 0 ? _ref : '空白容器';
|
|
104
|
+
_this.isHideCaption = (_ref1 = props === null || props === void 0 ? void 0 : props.isHideCaption) !== null && _ref1 !== void 0 ? _ref1 : false;
|
|
104
105
|
_this.captionColor = (props === null || props === void 0 ? void 0 : props.captionColor) || '';
|
|
105
106
|
_this.captionSize = (props === null || props === void 0 ? void 0 : props.captionSize) || '';
|
|
106
107
|
_this.isCaptionItalic = (props === null || props === void 0 ? void 0 : props.isCaptionItalic) || false;
|
|
107
|
-
_this.captionFontWeight = (
|
|
108
|
-
_this.position = (
|
|
109
|
-
_this.backgroundColor = (
|
|
110
|
-
_this.showShadow = (
|
|
108
|
+
_this.captionFontWeight = (_ref2 = props === null || props === void 0 ? void 0 : props.captionFontWeight) !== null && _ref2 !== void 0 ? _ref2 : FONT_WEIGHT.NORMAL;
|
|
109
|
+
_this.position = (_ref3 = props === null || props === void 0 ? void 0 : props.position) !== null && _ref3 !== void 0 ? _ref3 : 'left';
|
|
110
|
+
_this.backgroundColor = (_ref4 = props === null || props === void 0 ? void 0 : props.backgroundColor) !== null && _ref4 !== void 0 ? _ref4 : '#ffffff';
|
|
111
|
+
_this.showShadow = (_ref5 = props === null || props === void 0 ? void 0 : props.showShadow) !== null && _ref5 !== void 0 ? _ref5 : false;
|
|
111
112
|
return _this;
|
|
112
113
|
}
|
|
113
114
|
return BlankContainerProperty;
|