@byteluck-fe/model-driven-controls 6.1.0-1-beta.8 → 6.1.0-2-beta.1

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.
@@ -19,6 +19,7 @@ declare class OperationButtonProperty extends Property {
19
19
  defaultState: 'default' | 'readonly';
20
20
  priorityProcess?: boolean;
21
21
  isLoading: boolean;
22
+ isSyncDelete: boolean;
22
23
  constructor(props?: Partial<OperationButtonProperty>);
23
24
  }
24
25
  export default OperationButtonProperty;
@@ -58,6 +58,7 @@ declare class Department2Property extends BaseControlProperty {
58
58
  businessType: string;
59
59
  businessScope: string[];
60
60
  openMultistageFilling: boolean;
61
+ defaultShowOptions: boolean;
61
62
  constructor(props?: Partial<Department2Property>);
62
63
  }
63
64
  export default Department2Property;
@@ -28,6 +28,7 @@ declare class Employee2Property extends BaseControlProperty {
28
28
  externalScope: string[];
29
29
  openMultistageFilling: boolean;
30
30
  mainDeptFlag: boolean;
31
+ defaultShowOptions: boolean;
31
32
  constructor(props?: Partial<Employee2Property>);
32
33
  }
33
34
  export default Employee2Property;
@@ -57,6 +57,17 @@ declare class InputProperty extends BaseControlProperty {
57
57
  * @public
58
58
  */
59
59
  aiContentSearch: boolean;
60
+ /**
61
+ * 在明细子表中自动高度
62
+ * @defaultValue false
63
+ */
64
+ autoHeight: boolean;
65
+ /**
66
+ * 在明细子表中行数设置
67
+ * @defaultValue 1
68
+ * @public
69
+ */
70
+ lineEllipsis: number;
60
71
  constructor(props?: Partial<InputProperty>);
61
72
  }
62
73
  export default InputProperty;
@@ -33,6 +33,17 @@ declare class RichTextProperty extends BaseControlProperty {
33
33
  * @public
34
34
  */
35
35
  aiOptions: AiOptionSetting[];
36
+ /**
37
+ * 在明细子表中自动高度
38
+ * @defaultValue false
39
+ */
40
+ autoHeight: boolean;
41
+ /**
42
+ * 在明细子表中行数设置
43
+ * @defaultValue 1
44
+ * @public
45
+ */
46
+ lineEllipsis: number;
36
47
  constructor(props?: Partial<RichTextProperty>);
37
48
  }
38
49
  export default RichTextProperty;
@@ -79,6 +79,7 @@ declare class SelectRelationProperty extends BaseControlProperty {
79
79
  * @public
80
80
  */
81
81
  aiContentSearch: boolean;
82
+ defaultShowOptions: boolean;
82
83
  constructor(props?: Partial<SelectRelationProperty>);
83
84
  }
84
85
  export default SelectRelationProperty;
@@ -58,6 +58,17 @@ declare class TextareaProperty extends BaseControlProperty {
58
58
  * @public
59
59
  */
60
60
  aiOptions: AiOptionSetting[];
61
+ /**
62
+ * 在明细子表中自动高度
63
+ * @defaultValue false
64
+ */
65
+ autoHeight: boolean;
66
+ /**
67
+ * 在明细子表中行数设置
68
+ * @defaultValue 1
69
+ * @public
70
+ */
71
+ lineEllipsis: number;
61
72
  constructor(props?: Partial<TextareaProperty>);
62
73
  }
63
74
  export default TextareaProperty;
@@ -202,6 +202,7 @@ declare class SubTableControlProperty<Mode extends MODE | 'Schema', Control exte
202
202
  * 排序or筛选字段
203
203
  * */
204
204
  sortKey: Record<string, 'asc' | 'desc'>;
205
+ showTableIndex: Boolean;
205
206
  constructor(parent: DesignerSubTableControl | RuntimeSubTableControl, props?: Partial<SubTableControlProperty<Mode> & {
206
207
  headers: Control[];
207
208
  footers?: Control[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-controls",
3
- "version": "6.1.0-1-beta.8",
3
+ "version": "6.1.0-2-beta.1",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -26,10 +26,10 @@
26
26
  "postpublish": "node ../../scripts/postpublish.js"
27
27
  },
28
28
  "dependencies": {
29
- "@byteluck-fe/model-driven-core": "6.1.0-1-beta.4",
30
- "@byteluck-fe/model-driven-settings": "6.1.0-1-beta.4",
29
+ "@byteluck-fe/model-driven-core": "6.1.0-2-beta.1",
30
+ "@byteluck-fe/model-driven-settings": "6.1.0-2-beta.1",
31
31
  "@byteluck-fe/model-driven-shared": "6.1.0-1-beta.4",
32
32
  "async-validator": "3.5.1"
33
33
  },
34
- "gitHead": "13b1816e0602711693fd5efd201fda7d8c264407"
34
+ "gitHead": "85b2626e3a43874881c3e919c20a62ba9f2593c2"
35
35
  }