@byteluck-fe/model-driven-controls 2.22.4-beta.6 → 2.22.4-beta.7
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.
|
@@ -86,7 +86,7 @@ var StepControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
|
|
|
86
86
|
), _define_property(_this, "isSticky", void 0 //是否粘性
|
|
87
87
|
);
|
|
88
88
|
var _props_direction;
|
|
89
|
-
_this.direction = (_props_direction = props === null || props === void 0 ? void 0 : props.direction) !== null && _props_direction !== void 0 ? _props_direction : '
|
|
89
|
+
_this.direction = (_props_direction = props === null || props === void 0 ? void 0 : props.direction) !== null && _props_direction !== void 0 ? _props_direction : 'horizontal';
|
|
90
90
|
var _props_labelPlacement;
|
|
91
91
|
_this.labelPlacement = (_props_labelPlacement = props === null || props === void 0 ? void 0 : props.labelPlacement) !== null && _props_labelPlacement !== void 0 ? _props_labelPlacement : 'horizontal';
|
|
92
92
|
var _props_size;
|
|
@@ -96,6 +96,8 @@ var StepPaneControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
|
|
|
96
96
|
), _define_property(_this, "icon", void 0 //步骤图标
|
|
97
97
|
), _define_property(_this, "color", void 0 //步骤激活颜色
|
|
98
98
|
), _define_property(_this, "status", void 0 //步骤状态
|
|
99
|
+
), _define_property(_this, "description", void 0 //步骤描述
|
|
100
|
+
), _define_property(_this, "isDefault", void 0 //是否默认选中
|
|
99
101
|
);
|
|
100
102
|
var _props_title;
|
|
101
103
|
_this.title = (_props_title = props === null || props === void 0 ? void 0 : props.title) !== null && _props_title !== void 0 ? _props_title : '';
|
|
@@ -109,6 +111,10 @@ var StepPaneControlProperty = /*#__PURE__*/ function(LayoutControlProperty) {
|
|
|
109
111
|
_this.color = (_props_color = props === null || props === void 0 ? void 0 : props.color) !== null && _props_color !== void 0 ? _props_color : '';
|
|
110
112
|
var _props_status;
|
|
111
113
|
_this.status = (_props_status = props === null || props === void 0 ? void 0 : props.status) !== null && _props_status !== void 0 ? _props_status : 'wait';
|
|
114
|
+
var _props_description;
|
|
115
|
+
_this.description = (_props_description = props === null || props === void 0 ? void 0 : props.description) !== null && _props_description !== void 0 ? _props_description : '';
|
|
116
|
+
var _props_isDefault;
|
|
117
|
+
_this.isDefault = (_props_isDefault = props === null || props === void 0 ? void 0 : props.isDefault) !== null && _props_isDefault !== void 0 ? _props_isDefault : false;
|
|
112
118
|
return _this;
|
|
113
119
|
}
|
|
114
120
|
return StepPaneControlProperty;
|