@byteluck-fe/model-driven-controls 2.2.2-beta.9 → 2.3.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.
- package/dist/esm/columnControls/TextColumn/designer.js +4 -0
- package/dist/esm/columnControls/VarcharColumn/designer.js +4 -0
- package/dist/esm/formControls/Checkbox/property.js +2 -0
- package/dist/esm/formControls/Department/property.js +2 -0
- package/dist/esm/formControls/Department2/property.js +2 -0
- package/dist/esm/formControls/Employee/property.js +2 -0
- package/dist/esm/formControls/Employee2/property.js +2 -0
- package/dist/esm/formControls/Radio/property.js +2 -0
- package/dist/esm/formControls/Select/property.js +2 -0
- package/dist/esm/formControls/SelectMultiple/property.js +2 -0
- package/dist/esm/formControls/SelectRelation/property.js +2 -0
- package/dist/esm/formControls/Tree/property.js +2 -0
- package/dist/esm/layoutControls/Tab/designer.js +3 -0
- package/dist/esm/listControls/SubTable/designer.js +8 -0
- package/dist/esm/listControls/SubTable/property.js +2 -0
- package/dist/index.umd.js +1 -1
- package/dist/types/formControls/Checkbox/property.d.ts +1 -0
- package/dist/types/formControls/Department/property.d.ts +1 -0
- package/dist/types/formControls/Department2/property.d.ts +1 -0
- package/dist/types/formControls/Employee/property.d.ts +1 -0
- package/dist/types/formControls/Employee2/property.d.ts +1 -0
- package/dist/types/formControls/Radio/property.d.ts +1 -0
- package/dist/types/formControls/Select/property.d.ts +1 -0
- package/dist/types/formControls/SelectMultiple/property.d.ts +1 -0
- package/dist/types/formControls/SelectRelation/property.d.ts +1 -0
- package/dist/types/formControls/Tree/property.d.ts +1 -0
- package/dist/types/layoutControls/Tab/designer.d.ts +1 -0
- package/dist/types/listControls/SubTable/property.d.ts +4 -0
- package/package.json +5 -5
|
@@ -23,6 +23,7 @@ declare class CheckboxProperty extends BaseControlProperty {
|
|
|
23
23
|
multistageFilling?: MultistageFillingItem[];
|
|
24
24
|
interreaction: [];
|
|
25
25
|
defaultValue: string[];
|
|
26
|
+
openMultistageFilling: boolean;
|
|
26
27
|
constructor(props?: Partial<CheckboxProperty>);
|
|
27
28
|
}
|
|
28
29
|
export default CheckboxProperty;
|
|
@@ -57,6 +57,7 @@ declare class Department2Property extends BaseControlProperty {
|
|
|
57
57
|
datasourceType: string;
|
|
58
58
|
businessType: string;
|
|
59
59
|
businessScope: string[];
|
|
60
|
+
openMultistageFilling: boolean;
|
|
60
61
|
constructor(props?: Partial<Department2Property>);
|
|
61
62
|
}
|
|
62
63
|
export default Department2Property;
|
|
@@ -14,6 +14,7 @@ declare class EmployeeProperty extends BaseControlProperty {
|
|
|
14
14
|
defaultValueType: 'none' | 'current' | 'assigned';
|
|
15
15
|
defaultValue: string[];
|
|
16
16
|
multistageFilling?: MultistageFillingItem[];
|
|
17
|
+
openMultistageFilling: boolean;
|
|
17
18
|
constructor(props?: Partial<EmployeeProperty>);
|
|
18
19
|
}
|
|
19
20
|
export default EmployeeProperty;
|
|
@@ -26,6 +26,7 @@ declare class Employee2Property extends BaseControlProperty {
|
|
|
26
26
|
insideType: string;
|
|
27
27
|
externalType: string;
|
|
28
28
|
externalScope: string[];
|
|
29
|
+
openMultistageFilling: boolean;
|
|
29
30
|
constructor(props?: Partial<Employee2Property>);
|
|
30
31
|
}
|
|
31
32
|
export default Employee2Property;
|
|
@@ -15,6 +15,7 @@ declare class RadioProperty extends BaseControlProperty {
|
|
|
15
15
|
multistageFilling?: MultistageFillingItem[];
|
|
16
16
|
interreaction: [];
|
|
17
17
|
defaultValue: string;
|
|
18
|
+
openMultistageFilling: boolean;
|
|
18
19
|
constructor(props?: Partial<RadioProperty>);
|
|
19
20
|
}
|
|
20
21
|
export default RadioProperty;
|
|
@@ -11,6 +11,7 @@ declare class SelectProperty extends BaseControlProperty {
|
|
|
11
11
|
datasourceBind: DataSourceBind;
|
|
12
12
|
multistageFilling: MultistageFillingItem[];
|
|
13
13
|
allowCopyOptions: boolean;
|
|
14
|
+
openMultistageFilling: boolean;
|
|
14
15
|
constructor(props?: Partial<SelectProperty>);
|
|
15
16
|
}
|
|
16
17
|
export default SelectProperty;
|
|
@@ -14,6 +14,7 @@ declare class SelectMultipleProperty extends BaseControlProperty {
|
|
|
14
14
|
defaultValue: string[];
|
|
15
15
|
datasourceBind: DataSourceBind;
|
|
16
16
|
multistageFilling?: MultistageFillingItem[];
|
|
17
|
+
openMultistageFilling: boolean;
|
|
17
18
|
constructor(props?: Partial<SelectMultipleProperty>);
|
|
18
19
|
}
|
|
19
20
|
export default SelectMultipleProperty;
|
|
@@ -16,6 +16,7 @@ declare class SelectRelationProperty extends BaseControlProperty {
|
|
|
16
16
|
* @description 查看详情 https://www.tapd.cn/49877295/prong/stories/view/1149877295001003559
|
|
17
17
|
*/
|
|
18
18
|
canViewForm: boolean;
|
|
19
|
+
openMultistageFilling: boolean;
|
|
19
20
|
constructor(props?: Partial<SelectRelationProperty>);
|
|
20
21
|
}
|
|
21
22
|
export default SelectRelationProperty;
|
|
@@ -22,6 +22,7 @@ declare class TreeProperty extends BaseControlProperty {
|
|
|
22
22
|
datasourceBind: TreeDataSourceBind;
|
|
23
23
|
multistageFilling: MultistageFillingItem[];
|
|
24
24
|
defaultValue: string[];
|
|
25
|
+
openMultistageFilling: boolean;
|
|
25
26
|
constructor(props?: Partial<TreeProperty>);
|
|
26
27
|
}
|
|
27
28
|
export default TreeProperty;
|
|
@@ -7,6 +7,7 @@ declare class TabControl extends DesignerLayoutControl<DesignerTabPaneControl> {
|
|
|
7
7
|
static get controlType(): string;
|
|
8
8
|
static get controlIcon(): string;
|
|
9
9
|
static excludes: CONTROL_TYPE[];
|
|
10
|
+
static readonly controlEventKeys: string[];
|
|
10
11
|
static setting: SettingOption[];
|
|
11
12
|
props: TabControlProperty;
|
|
12
13
|
constructor(props?: LayoutControlSchema<'tab', TabControlProperty, DesignerTabPaneControl>);
|
|
@@ -115,6 +115,10 @@ declare class SubTableControlProperty<Mode extends MODE | 'Schema', Control exte
|
|
|
115
115
|
* 开启后端分页
|
|
116
116
|
* */
|
|
117
117
|
serverPagination: boolean;
|
|
118
|
+
/**
|
|
119
|
+
* 固定列 字段
|
|
120
|
+
* */
|
|
121
|
+
fixedColumn: string[];
|
|
118
122
|
constructor(parent: DesignerSubTableControl | RuntimeSubTableControl, props?: Partial<SubTableControlProperty<Mode> & {
|
|
119
123
|
headers: Control[];
|
|
120
124
|
}>);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
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": "2.2.2-beta.
|
|
30
|
-
"@byteluck-fe/model-driven-settings": "2.2.2-beta.
|
|
31
|
-
"@byteluck-fe/model-driven-shared": "2.2.2-beta.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "2.2.2-beta.17",
|
|
30
|
+
"@byteluck-fe/model-driven-settings": "2.2.2-beta.17",
|
|
31
|
+
"@byteluck-fe/model-driven-shared": "2.2.2-beta.14",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "e5c5408e9ef3166a7d348e48f15c7bcf596ccb29"
|
|
35
35
|
}
|