@byteluck-fe/model-driven-controls 1.7.9 → 1.7.11
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/baseControls/Title/designer.js +11 -0
- package/dist/esm/baseControls/Title/property.js +2 -0
- package/dist/esm/framework.js +1 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/baseControls/Title/property.d.ts +1 -0
- package/dist/types/framework.d.ts +2 -1
- package/package.json +2 -2
|
@@ -133,6 +133,17 @@ TitleControl.setting = [
|
|
|
133
133
|
key: "title-setting",
|
|
134
134
|
visible: true
|
|
135
135
|
},
|
|
136
|
+
{
|
|
137
|
+
key: "common-setting",
|
|
138
|
+
visible: true,
|
|
139
|
+
showItems: [
|
|
140
|
+
COMMON_SETTING_TYPE.IS_HIDE
|
|
141
|
+
]
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
key: "position",
|
|
145
|
+
visible: true
|
|
146
|
+
},
|
|
136
147
|
{
|
|
137
148
|
key: "super-setting",
|
|
138
149
|
visible: true
|
|
@@ -131,6 +131,8 @@ var TitleProperty = /*#__PURE__*/ function(Property) {
|
|
|
131
131
|
];
|
|
132
132
|
var ref1, ref2;
|
|
133
133
|
_this.caption = (ref2 = (ref1 = props === null || props === void 0 ? void 0 : props.caption) !== null && ref1 !== void 0 ? ref1 : DesignerTitleControl === null || DesignerTitleControl === void 0 ? void 0 : DesignerTitleControl.controlName) !== null && ref2 !== void 0 ? ref2 : "";
|
|
134
|
+
var ref3;
|
|
135
|
+
_this.position = (ref3 = props === null || props === void 0 ? void 0 : props.position) !== null && ref3 !== void 0 ? ref3 : "top";
|
|
134
136
|
return _this;
|
|
135
137
|
}
|
|
136
138
|
return TitleProperty;
|
package/dist/esm/framework.js
CHANGED
|
@@ -12,6 +12,7 @@ export var TitleConfigEnum;
|
|
|
12
12
|
TitleConfigEnum["ShowSubmitTime"] = "is_show_submit_time";
|
|
13
13
|
TitleConfigEnum["ShowSubmitDept"] = "is_show_submit_dept";
|
|
14
14
|
TitleConfigEnum["ShowCurrentApprovar"] = "is_show_current_approvar";
|
|
15
|
+
TitleConfigEnum["ShowTitle"] = "is_show_title";
|
|
15
16
|
})(TitleConfigEnum || (TitleConfigEnum = {}));
|
|
16
17
|
export var DATE_CONFIG_TYPE;
|
|
17
18
|
(function(DATE_CONFIG_TYPE) {
|