@byteluck-fe/model-driven-controls 2.8.2-beta.6 → 2.8.2-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.
- package/dist/esm/columnControls/CustomColumn/designer.js +0 -50
- package/dist/esm/columnControls/OperationColumn/designer.js +10 -54
- package/dist/esm/columnControls/OperationColumn/runtime.js +1 -3
- package/dist/index.umd.js +1 -1
- package/dist/types/columnControls/CustomColumn/designer.d.ts +0 -9
- package/dist/types/columnControls/OperationColumn/designer.d.ts +1 -11
- package/dist/types/columnControls/OperationColumn/runtime.d.ts +1 -2
- package/package.json +5 -5
|
@@ -14,15 +14,6 @@ declare class CustomColumnControl extends DesignerColumnControl {
|
|
|
14
14
|
constructor(props?: ColumnControlSchema<'custom-column'>);
|
|
15
15
|
judgeJoinChildren(type: string): boolean;
|
|
16
16
|
toDataBindModel(parentId: string | null): DataBindModelType | DataBindModelType[] | undefined;
|
|
17
|
-
toSchema(): {
|
|
18
|
-
children: import("@byteluck-fe/model-driven-core").BaseControlSchema<import("@byteluck-fe/model-driven-core").ControlsKeys, import("@byteluck-fe/model-driven-core/dist/types/common/BaseControl/property").default>[];
|
|
19
|
-
controlType: "column";
|
|
20
|
-
id: string;
|
|
21
|
-
type: "custom-column";
|
|
22
|
-
props: import("@byteluck-fe/model-driven-core/dist/types/common/ColumnControl/property").default;
|
|
23
|
-
fieldType?: import("@byteluck-fe/model-driven-shared").FieldTypes | undefined;
|
|
24
|
-
pageStatus?: import("@byteluck-fe/model-driven-core").PAGE_STATUS | undefined;
|
|
25
|
-
};
|
|
26
17
|
}
|
|
27
18
|
export default CustomColumnControl;
|
|
28
19
|
export { CustomColumnControl as DesignerCustomColumnControl };
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DesignerColumnControl, ColumnControlSchema, SettingOption, DataBindModelType,
|
|
1
|
+
import { DesignerColumnControl, ColumnControlSchema, SettingOption, DataBindModelType, Messages } from '@byteluck-fe/model-driven-core';
|
|
2
2
|
import OperationColumnControlProperty from './property';
|
|
3
3
|
declare class OperationColumnControl extends DesignerColumnControl {
|
|
4
4
|
static readonly controlType = "operation-column";
|
|
@@ -6,18 +6,8 @@ declare class OperationColumnControl extends DesignerColumnControl {
|
|
|
6
6
|
static readonly controlIcon = "operation-column";
|
|
7
7
|
static setting: SettingOption[];
|
|
8
8
|
readonly props: OperationColumnControlProperty;
|
|
9
|
-
children: DesignerControl[];
|
|
10
9
|
constructor(props?: ColumnControlSchema<'operation-column'>);
|
|
11
10
|
toDataBindModel(): DataBindModelType;
|
|
12
|
-
toSchema(): {
|
|
13
|
-
children: import("@byteluck-fe/model-driven-core").BaseControlSchema<import("@byteluck-fe/model-driven-core").ControlsKeys, import("@byteluck-fe/model-driven-core/dist/types/common/BaseControl/property").default>[];
|
|
14
|
-
controlType: "column";
|
|
15
|
-
id: string;
|
|
16
|
-
type: "custom-column";
|
|
17
|
-
props: import("@byteluck-fe/model-driven-core/dist/types/common/ColumnControl/property").default;
|
|
18
|
-
fieldType?: import("@byteluck-fe/model-driven-shared/dist/types").FieldTypes | undefined;
|
|
19
|
-
pageStatus?: import("@byteluck-fe/model-driven-core").PAGE_STATUS | undefined;
|
|
20
|
-
};
|
|
21
11
|
validate(messages?: Messages, ignore?: string[]): Promise<boolean>;
|
|
22
12
|
}
|
|
23
13
|
export default OperationColumnControl;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { RuntimeColumnControl
|
|
1
|
+
import { RuntimeColumnControl } from '@byteluck-fe/model-driven-core';
|
|
2
2
|
import OperationColumnControlProperty from './property';
|
|
3
3
|
import { ColumnControlSchema } from '@byteluck-fe/model-driven-core';
|
|
4
4
|
import { FieldTypes } from '@byteluck-fe/model-driven-shared';
|
|
@@ -6,7 +6,6 @@ declare class OperationColumnControl extends RuntimeColumnControl {
|
|
|
6
6
|
static readonly controlType = "operation-column";
|
|
7
7
|
static readonly controlFieldType = FieldTypes.FILE;
|
|
8
8
|
readonly props: OperationColumnControlProperty;
|
|
9
|
-
children: RuntimeControl[];
|
|
10
9
|
constructor(props?: ColumnControlSchema<'operation-column'>);
|
|
11
10
|
}
|
|
12
11
|
export default OperationColumnControl;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-controls",
|
|
3
|
-
"version": "2.8.2-beta.
|
|
3
|
+
"version": "2.8.2-beta.8",
|
|
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.8.2-beta.
|
|
30
|
-
"@byteluck-fe/model-driven-settings": "2.8.2-beta.
|
|
31
|
-
"@byteluck-fe/model-driven-shared": "2.8.
|
|
29
|
+
"@byteluck-fe/model-driven-core": "2.8.2-beta.8",
|
|
30
|
+
"@byteluck-fe/model-driven-settings": "2.8.2-beta.8",
|
|
31
|
+
"@byteluck-fe/model-driven-shared": "2.8.2-beta.8",
|
|
32
32
|
"async-validator": "3.5.1"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "181e2fd421faf2346999a304930a9096afe0c2ec"
|
|
35
35
|
}
|