@byteluck-fe/model-driven-controls 1.5.0-beta.5 → 1.5.0-beta.8

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.
@@ -109,6 +109,8 @@ var BatchPrintListButtonProperty = /*#__PURE__*/ function(ButtonProperty) {
109
109
  _this.printTemplates = (ref3 = props === null || props === void 0 ? void 0 : (ref = props.printTemplates) === null || ref === void 0 ? void 0 : ref.map(function(item) {
110
110
  return new PrintTemplate(item);
111
111
  })) !== null && ref3 !== void 0 ? ref3 : [];
112
+ var ref4;
113
+ _this.autoSelectTemplate = (ref4 = props === null || props === void 0 ? void 0 : props.autoSelectTemplate) !== null && ref4 !== void 0 ? ref4 : false;
112
114
  return _this;
113
115
  }
114
116
  return BatchPrintListButtonProperty;
@@ -167,6 +167,12 @@ export var PrintTemplate = function PrintTemplate(props) {
167
167
  this.fileId = (ref = props === null || props === void 0 ? void 0 : props.fileId) !== null && ref !== void 0 ? ref : "";
168
168
  var ref1;
169
169
  this.fileName = (ref1 = props === null || props === void 0 ? void 0 : props.fileName) !== null && ref1 !== void 0 ? ref1 : "";
170
+ var ref2;
171
+ this.ruleName = (ref2 = props === null || props === void 0 ? void 0 : props.ruleName) !== null && ref2 !== void 0 ? ref2 : "";
172
+ var _isDefault;
173
+ this.isDefault = (_isDefault = props.isDefault) !== null && _isDefault !== void 0 ? _isDefault : false;
174
+ var _rules;
175
+ this.rules = (_rules = props.rules) !== null && _rules !== void 0 ? _rules : [];
170
176
  };
171
177
  export var FlexStyleConfig = function FlexStyleConfig(props) {
172
178
  "use strict";
@@ -186,11 +192,13 @@ export var EncryptTypeEnum;
186
192
  })(EncryptTypeEnum || (EncryptTypeEnum = {}));
187
193
  export var OrganizeType;
188
194
  (function(OrganizeType) {
195
+ OrganizeType["ALL"] = "ALL";
189
196
  OrganizeType["INTERNAL"] = "INTERNAL";
190
197
  OrganizeType["EXTERNAL"] = "EXTERNAL";
191
198
  })(OrganizeType || (OrganizeType = {}));
192
199
  export var DepartmentType;
193
200
  (function(DepartmentType) {
201
+ DepartmentType["INTERNAL_BUSINESS"] = "INTERNAL_BUSINESS";
194
202
  DepartmentType["INTERNAL"] = "INTERNAL";
195
203
  DepartmentType["BUSINESS"] = "BUSINESS";
196
204
  })(DepartmentType || (DepartmentType = {}));