@byteluck-fe/model-driven-controls 1.5.0-beta.9 → 1.7.0

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.
@@ -157,7 +157,8 @@ SelectControl.setting = [
157
157
  COMMON_SETTING_TYPE.IS_HIDE,
158
158
  COMMON_SETTING_TYPE.IS_HIDE_CAPTION,
159
159
  COMMON_SETTING_TYPE.DEFAULT_SHOW_OPTIONS,
160
- COMMON_SETTING_TYPE.IS_SHOW_CAPTION_TIP,
160
+ COMMON_SETTING_TYPE.IS_SHOW_CAPTION_TIP,
161
+ COMMON_SETTING_TYPE.ALLOW_COPY_OPTIONS,
161
162
  ]
162
163
  },
163
164
  {
@@ -115,6 +115,8 @@ var SelectProperty = /*#__PURE__*/ function(BaseControlProperty) {
115
115
  _this.placeholder = (ref4 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && ref4 !== void 0 ? ref4 : "请选择";
116
116
  var ref5;
117
117
  _this.defaultValue = (ref5 = props === null || props === void 0 ? void 0 : props.defaultValue) !== null && ref5 !== void 0 ? ref5 : "";
118
+ var ref6;
119
+ _this.allowCopyOptions = (ref6 = props === null || props === void 0 ? void 0 : props.allowCopyOptions) !== null && ref6 !== void 0 ? ref6 : false;
118
120
  _this.multistageFilling = [];
119
121
  if (Array.isArray(props === null || props === void 0 ? void 0 : props.multistageFilling)) {
120
122
  props === null || props === void 0 ? void 0 : props.multistageFilling.map(function(item) {
@@ -177,6 +177,10 @@ TextareaControl.setting = [
177
177
  key: "default-value",
178
178
  visible: true
179
179
  },
180
+ {
181
+ key: "column-line-ellipsis",
182
+ visible: true
183
+ },
180
184
  {
181
185
  key: "super-setting",
182
186
  visible: true
@@ -147,6 +147,8 @@ var TextareaProperty = /*#__PURE__*/ function(BaseControlProperty) {
147
147
  _this.caption = (ref3 = props === null || props === void 0 ? void 0 : props.caption) !== null && ref3 !== void 0 ? ref3 : TextareaControl.controlName;
148
148
  var ref4;
149
149
  _this.placeholder = (ref4 = props === null || props === void 0 ? void 0 : props.placeholder) !== null && ref4 !== void 0 ? ref4 : "请输入";
150
+ var ref5;
151
+ _this.lineEllipsis = (ref5 = props === null || props === void 0 ? void 0 : props.lineEllipsis) !== null && ref5 !== void 0 ? ref5 : 4;
150
152
  return _this;
151
153
  }
152
154
  return TextareaProperty;
@@ -158,7 +158,8 @@ WPSControl.setting = [
158
158
  showItems: [
159
159
  COMMON_SETTING_TYPE.REQUIRED,
160
160
  COMMON_SETTING_TYPE.IS_HIDE,
161
- COMMON_SETTING_TYPE.IS_SHOW_CAPTION_TIP,
161
+ COMMON_SETTING_TYPE.IS_SHOW_CAPTION_TIP,
162
+ COMMON_SETTING_TYPE.REVISIONS_MODE,
162
163
  ]
163
164
  },
164
165
  {
@@ -170,6 +170,8 @@ var WPSProperty = /*#__PURE__*/ function(BaseControlProperty) {
170
170
  var ref10;
171
171
  _this.defaultValue = (ref10 = props === null || props === void 0 ? void 0 : props.defaultValue) !== null && ref10 !== void 0 ? ref10 : [];
172
172
  _this.wpsSetting = new WPSSetting(props === null || props === void 0 ? void 0 : props.wpsSetting);
173
+ var ref11;
174
+ _this.revisionsMode = (ref11 = props === null || props === void 0 ? void 0 : props.revisionsMode) !== null && ref11 !== void 0 ? ref11 : false;
173
175
  return _this;
174
176
  }
175
177
  return WPSProperty;
@@ -195,6 +195,7 @@ export var OrganizeType;
195
195
  OrganizeType["ALL"] = "ALL";
196
196
  OrganizeType["INTERNAL"] = "INTERNAL";
197
197
  OrganizeType["EXTERNAL"] = "EXTERNAL";
198
+ OrganizeType["INTERNAL_EXTERNAL"] = "INTERNAL_EXTERNAL";
198
199
  })(OrganizeType || (OrganizeType = {}));
199
200
  export var DepartmentType;
200
201
  (function(DepartmentType) {
@@ -127,7 +127,8 @@ ListViewControl.controlEventKeys = [
127
127
  "on_list_mounted",
128
128
  "on_list_actions",
129
129
  "on_list_rowclick",
130
- "on_list_before_rowdelete",
130
+ "on_list_before_rowdelete",
131
+ "on_list_rows_checked",
131
132
  ];
132
133
  ListViewControl.setting = [
133
134
  {