@byteluck-fe/model-driven-controls 1.5.0-beta.8 → 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.
@@ -8,7 +8,7 @@ declare class CreateFormListButtonPropertyRules extends PropertyRules {
8
8
  declare class CreateFormListButtonProperty extends ButtonProperty {
9
9
  static readonly Rules: typeof CreateFormListButtonPropertyRules;
10
10
  formKey: string;
11
- openType: 'modal' | 'window';
11
+ openType: 'modal' | 'window' | 'dialog' | 'tab';
12
12
  constructor(props?: Partial<CreateFormListButtonProperty>);
13
13
  }
14
14
  export default CreateFormListButtonProperty;
@@ -10,6 +10,7 @@ declare class SelectProperty extends BaseControlProperty {
10
10
  defaultValue: string;
11
11
  datasourceBind: DataSourceBind;
12
12
  multistageFilling: MultistageFillingItem[];
13
+ allowCopyOptions: boolean;
13
14
  constructor(props?: Partial<SelectProperty>);
14
15
  }
15
16
  export default SelectProperty;
@@ -15,6 +15,7 @@ declare class TextareaProperty extends BaseControlProperty {
15
15
  maxLength: number;
16
16
  minLength: number;
17
17
  defaultValue: string;
18
+ lineEllipsis: number;
18
19
  constructor(props?: Partial<TextareaProperty>);
19
20
  }
20
21
  export default TextareaProperty;
@@ -25,6 +25,7 @@ declare class WPSProperty extends BaseControlProperty {
25
25
  wpsSetting: WPSSetting;
26
26
  maxSize: AttachmentProperty['maxSize'];
27
27
  defaultValue: AttachmentProperty['defaultValue'];
28
+ revisionsMode: boolean;
28
29
  constructor(props?: Partial<WPSProperty>);
29
30
  }
30
31
  export default WPSProperty;
@@ -163,7 +163,8 @@ export declare enum EncryptTypeEnum {
163
163
  export declare enum OrganizeType {
164
164
  ALL = "ALL",
165
165
  INTERNAL = "INTERNAL",
166
- EXTERNAL = "EXTERNAL"
166
+ EXTERNAL = "EXTERNAL",
167
+ INTERNAL_EXTERNAL = "INTERNAL_EXTERNAL"
167
168
  }
168
169
  /**
169
170
  * 新部门 行政 or 业务
@@ -60,7 +60,7 @@ declare class SubTableControlProperty<Mode extends MODE | 'Schema', Control exte
60
60
  * 打开方式(查看,编辑,创建)
61
61
  * default列表模式 modal表单模式
62
62
  * */
63
- openType: 'default' | 'modal';
63
+ openType: 'default' | 'modal' | 'dialog';
64
64
  /**
65
65
  * openedMode = form的时候,formKey为绑定的表单
66
66
  * */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-controls",
3
- "version": "1.5.0-beta.8",
3
+ "version": "1.7.0",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -22,10 +22,10 @@
22
22
  "postpublish": "node ../../scripts/postpublish.js"
23
23
  },
24
24
  "dependencies": {
25
- "@byteluck-fe/model-driven-core": "^1.5.0-beta.7",
26
- "@byteluck-fe/model-driven-settings": "^1.5.0-beta.7",
27
- "@byteluck-fe/model-driven-shared": "^1.5.0-beta.7",
25
+ "@byteluck-fe/model-driven-core": "^1.7.0",
26
+ "@byteluck-fe/model-driven-settings": "^1.7.0",
27
+ "@byteluck-fe/model-driven-shared": "^1.7.0",
28
28
  "async-validator": "3.5.1"
29
29
  },
30
- "gitHead": "b8941979b31a5beee434ecc6b2bfb373271cfcd8"
30
+ "gitHead": "8450ef2f928f886c6cb0cf0f9d504f328b3d8a80"
31
31
  }