@byteluck-fe/model-driven-core 2.23.0-beta.23-zt → 2.23.0-beta.25-dx
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/framework/index.js +378 -364
- package/dist/index.umd.js +1 -1
- package/dist/types/framework/index.d.ts +14 -1
- package/package.json +3 -3
|
@@ -390,6 +390,18 @@ export declare class DataSourceBind {
|
|
|
390
390
|
* @public
|
|
391
391
|
*/
|
|
392
392
|
showOrder?: boolean;
|
|
393
|
+
/**
|
|
394
|
+
* 部门或者人员指定部门配置
|
|
395
|
+
* @defaultValue {}
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
assignDepartment?: RightVariable;
|
|
399
|
+
/**
|
|
400
|
+
* 部门或者人员指定部门配置是否开启
|
|
401
|
+
* @defaultValue {}
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
404
|
+
openAssignDepartment?: boolean;
|
|
393
405
|
constructor(props?: Partial<DataSourceBind>);
|
|
394
406
|
}
|
|
395
407
|
export declare class SelectedContentConfig {
|
|
@@ -781,7 +793,8 @@ export declare enum COMMON_SETTING_TYPE {
|
|
|
781
793
|
IS_PASTE = "isPaste",
|
|
782
794
|
SORTABLE = "sortable",
|
|
783
795
|
IS_SHOW_SIMPLE_SEARCH = "isShowSimpleSearch",
|
|
784
|
-
IS_SHOW_TOOL_BAE = "isShowToolbar"
|
|
796
|
+
IS_SHOW_TOOL_BAE = "isShowToolbar",
|
|
797
|
+
MAIN_DEPT_FLAG = "mainDeptFlag"
|
|
785
798
|
}
|
|
786
799
|
export declare enum PAGE_STATUS {
|
|
787
800
|
UNKNOWN = 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-core",
|
|
3
|
-
"version": "2.23.0-beta.
|
|
3
|
+
"version": "2.23.0-beta.25-dx",
|
|
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.23.0-beta.
|
|
29
|
+
"@byteluck-fe/model-driven-shared": "2.23.0-beta.22-dx",
|
|
30
30
|
"async-validator": "3.5.1",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "a3e0239b1f2e1e715e0c68c925a609eafd9b9542"
|
|
34
34
|
}
|