@byteluck-fe/model-driven-core 2.23.0-beta.9 → 3.0.0-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.
- package/dist/esm/common/ColumnControl/property.js +6 -6
- package/dist/esm/common/FormControl/property.js +15 -14
- package/dist/esm/common/initLinkOperationRules.js +2 -2
- package/dist/esm/common/initOptionAndDataSourceRules.js +31 -30
- package/dist/esm/framework/index.js +403 -364
- package/dist/index.umd.js +1 -1
- package/dist/types/framework/index.d.ts +22 -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 {
|
|
@@ -564,8 +576,14 @@ export declare class ImageOptionSetting extends OptionSetting {
|
|
|
564
576
|
type: 'attachment' | 'src';
|
|
565
577
|
constructor(props?: Partial<ImageOptionSetting>);
|
|
566
578
|
}
|
|
579
|
+
export declare class AiOptionSetting extends OptionSetting {
|
|
580
|
+
cueWord: string;
|
|
581
|
+
checked: boolean;
|
|
582
|
+
constructor(props?: Partial<AiOptionSetting>);
|
|
583
|
+
}
|
|
567
584
|
export declare function initOptions(options?: Partial<OptionSetting>[]): OptionSetting[];
|
|
568
585
|
export declare function initImageOptions(options?: Partial<ImageOptionSetting>[]): ImageOptionSetting[];
|
|
586
|
+
export declare function initAiOptions(options?: Partial<AiOptionSetting>[]): AiOptionSetting[];
|
|
569
587
|
/**
|
|
570
588
|
* 对象类型数据绑定配置
|
|
571
589
|
* @public
|
|
@@ -779,7 +797,10 @@ export declare enum COMMON_SETTING_TYPE {
|
|
|
779
797
|
REVISIONS_MODE = "revisionsMode",
|
|
780
798
|
ALLOW_COPY_OPTIONS = "allowCopyOptions",
|
|
781
799
|
IS_PASTE = "isPaste",
|
|
782
|
-
SORTABLE = "sortable"
|
|
800
|
+
SORTABLE = "sortable",
|
|
801
|
+
IS_SHOW_SIMPLE_SEARCH = "isShowSimpleSearch",
|
|
802
|
+
IS_SHOW_TOOL_BAE = "isShowToolbar",
|
|
803
|
+
MAIN_DEPT_FLAG = "mainDeptFlag"
|
|
783
804
|
}
|
|
784
805
|
export declare enum PAGE_STATUS {
|
|
785
806
|
UNKNOWN = 0,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@byteluck-fe/model-driven-core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0-beta.1",
|
|
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
|
|
29
|
+
"@byteluck-fe/model-driven-shared": "2.23.0",
|
|
30
30
|
"async-validator": "3.5.1",
|
|
31
31
|
"tslib": "^2.1.0"
|
|
32
32
|
},
|
|
33
|
-
"gitHead": "
|
|
33
|
+
"gitHead": "e2a82eab774742e40a51384b0943425fee5e5bdb"
|
|
34
34
|
}
|