@byteluck-fe/model-driven-core 2.8.1-alpha.13 → 2.8.1-alpha.14
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,9 @@ import { COMMON_SETTING_TYPE } from '../../framework';
|
|
|
8
8
|
declare class Control {
|
|
9
9
|
static mode: MODE;
|
|
10
10
|
static slots?: string[];
|
|
11
|
-
static slotPosition?:
|
|
11
|
+
static slotPosition?: {
|
|
12
|
+
[key: string]: string;
|
|
13
|
+
};
|
|
12
14
|
static readonly controlName: string;
|
|
13
15
|
static readonly controlIcon: string;
|
|
14
16
|
static readonly controlType: string;
|
|
@@ -29,7 +31,9 @@ declare class Control {
|
|
|
29
31
|
readonly customEvents: CustomEventItem[];
|
|
30
32
|
parent: Control | null;
|
|
31
33
|
slots?: string[];
|
|
32
|
-
slotPosition?:
|
|
34
|
+
slotPosition?: {
|
|
35
|
+
[key: string]: string;
|
|
36
|
+
};
|
|
33
37
|
constructor(props?: Partial<BaseControlSchema<ControlsKeys, Property>>);
|
|
34
38
|
get rules(): PropertyRules;
|
|
35
39
|
private _callControlHooks;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-core",
|
|
3
|
-
"version": "2.8.1-alpha.
|
|
3
|
+
"version": "2.8.1-alpha.14",
|
|
4
4
|
"description": "model engine core",
|
|
5
5
|
"author": "郝晨光 <2293885211@qq.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -26,9 +26,9 @@
|
|
|
26
26
|
"postpublish": "node ../../scripts/postpublish.js"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@byteluck-fe/model-driven-shared": "2.8.1-alpha.
|
|
29
|
+
"@byteluck-fe/model-driven-shared": "2.8.1-alpha.14",
|
|
30
30
|
"async-validator": "3.5.1",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "ddd86ce64bd275dc7a4e1d6bbb37924ae848bf49"
|
|
34
34
|
}
|