@ibiz/model-core 0.1.21 → 0.1.23
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/out/app/view/iapp-view-msg.d.ts +28 -0
- package/out/app/view/iapp-view.d.ts +3 -2
- package/out/control/form/ideform-button-list.d.ts +16 -0
- package/out/control/icontrol.d.ts +8 -0
- package/out/control/ieditor.d.ts +24 -0
- package/out/control/iraw-item-base.d.ts +24 -0
- package/out/control/panel/ipanel-button-list.d.ts +16 -0
- package/out/control/toolbar/idecmgroup-item.d.ts +22 -0
- package/out/control/toolbar/idetbgroup-item.d.ts +22 -0
- package/out/dataentity/ds/idedqcondition.d.ts +12 -0
- package/package.json +1 -1
- package/src/app/view/iapp-view-msg.ts +32 -0
- package/src/app/view/iapp-view.ts +3 -2
- package/src/control/form/ideform-button-list.ts +18 -0
- package/src/control/icontrol.ts +9 -0
- package/src/control/ieditor.ts +27 -0
- package/src/control/iraw-item-base.ts +27 -0
- package/src/control/panel/ipanel-button-list.ts +18 -0
- package/src/control/toolbar/idecmgroup-item.ts +36 -0
- package/src/control/toolbar/idetbgroup-item.ts +36 -0
- package/src/dataentity/ds/idedqcondition.ts +14 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
1
2
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
2
3
|
import { IModelObject } from '../../imodel-object';
|
|
3
4
|
/**
|
|
@@ -13,6 +14,12 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
13
14
|
* 来源 getCodeName
|
|
14
15
|
*/
|
|
15
16
|
codeName?: string;
|
|
17
|
+
/**
|
|
18
|
+
* 启用判断操作标识
|
|
19
|
+
* @type {string}
|
|
20
|
+
* 来源 getDataAccessAction
|
|
21
|
+
*/
|
|
22
|
+
dataAccessAction?: string;
|
|
16
23
|
/**
|
|
17
24
|
* 动态模式
|
|
18
25
|
* @description 值模式 [视图消息动态模式] {0:静态内容、 1:实体数据集 }
|
|
@@ -34,6 +41,13 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
34
41
|
* 来源 getMessageType
|
|
35
42
|
*/
|
|
36
43
|
messageType?: string | 'INFO' | 'WARN' | 'ERROR' | 'CUSTOM';
|
|
44
|
+
/**
|
|
45
|
+
* 启用判断实体
|
|
46
|
+
*
|
|
47
|
+
* @type {string}
|
|
48
|
+
* 来源 getPSAppDataEntity
|
|
49
|
+
*/
|
|
50
|
+
appDataEntityId?: string;
|
|
37
51
|
/**
|
|
38
52
|
* 应用消息模板
|
|
39
53
|
*
|
|
@@ -41,6 +55,13 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
41
55
|
* 来源 getPSAppMsgTempl
|
|
42
56
|
*/
|
|
43
57
|
appMsgTemplId?: string;
|
|
58
|
+
/**
|
|
59
|
+
* 布局面板
|
|
60
|
+
*
|
|
61
|
+
* @type {ILayoutPanel}
|
|
62
|
+
* 来源 getPSLayoutPanel
|
|
63
|
+
*/
|
|
64
|
+
layoutPanel?: ILayoutPanel;
|
|
44
65
|
/**
|
|
45
66
|
* 显示位置
|
|
46
67
|
* @description 值模式 [视图消息位置] {TOP:视图上方、 BOTTOM:视图下方、 BODY:视图内容区、 POPUP:弹出、 CUSTOM:自定义 }
|
|
@@ -55,6 +76,13 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
55
76
|
* 来源 getRemoveMode
|
|
56
77
|
*/
|
|
57
78
|
removeMode?: number | 0 | 1 | 2;
|
|
79
|
+
/**
|
|
80
|
+
* 启用判断实体逻辑
|
|
81
|
+
*
|
|
82
|
+
* @type {string}
|
|
83
|
+
* 来源 getTestPSAppDELogic
|
|
84
|
+
*/
|
|
85
|
+
testAppDELogicId?: string;
|
|
58
86
|
/**
|
|
59
87
|
* 抬头
|
|
60
88
|
* @type {string}
|
|
@@ -171,11 +171,12 @@ export interface IAppView extends IControlContainer {
|
|
|
171
171
|
viewLayoutPanel?: IViewLayoutPanel;
|
|
172
172
|
/**
|
|
173
173
|
* 视图优先级
|
|
174
|
-
* @
|
|
174
|
+
* @description 值模式 [应用视图优先权] {-1:未定义、 10:一级、 20:二级、 30:三级、 40:四级、 50:五级、 60:六级、 70:七级、 80:八级、 90:九级、 100:十级 }
|
|
175
|
+
* @type {( number | -1 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100)}
|
|
175
176
|
* @default -1
|
|
176
177
|
* 来源 getPriority
|
|
177
178
|
*/
|
|
178
|
-
priority?: number;
|
|
179
|
+
priority?: number | -1 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100;
|
|
179
180
|
/**
|
|
180
181
|
* 子标题语言资源
|
|
181
182
|
*
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IDEFormButton } from './ideform-button';
|
|
1
2
|
import { IDEFormDetail } from './ideform-detail';
|
|
2
3
|
import { IUIActionGroup } from '../../view/iuiaction-group';
|
|
3
4
|
/**
|
|
@@ -14,6 +15,21 @@ export interface IDEFormButtonList extends IDEFormDetail {
|
|
|
14
15
|
* 来源 getActionGroupExtractMode
|
|
15
16
|
*/
|
|
16
17
|
actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
|
|
18
|
+
/**
|
|
19
|
+
* 按钮列表类型
|
|
20
|
+
* @description 值模式 [表单按钮列表类型] {UIACTIONGROUP:界面行为组、 BUTTONS:按钮集合 }
|
|
21
|
+
* @type {( string | 'UIACTIONGROUP' | 'BUTTONS')}
|
|
22
|
+
* @default UIACTIONGROUP
|
|
23
|
+
* 来源 getButtonListType
|
|
24
|
+
*/
|
|
25
|
+
buttonListType?: string | 'UIACTIONGROUP' | 'BUTTONS';
|
|
26
|
+
/**
|
|
27
|
+
* 表单按钮集合
|
|
28
|
+
*
|
|
29
|
+
* @type {IDEFormButton[]}
|
|
30
|
+
* 来源 getPSDEFormButtons
|
|
31
|
+
*/
|
|
32
|
+
deformButtons?: IDEFormButton[];
|
|
17
33
|
/**
|
|
18
34
|
* 界面行为组对象
|
|
19
35
|
*
|
|
@@ -101,6 +101,14 @@ export interface IControl extends IModelObject {
|
|
|
101
101
|
* 来源 getPSSysPFPlugin
|
|
102
102
|
*/
|
|
103
103
|
sysPFPluginId?: string;
|
|
104
|
+
/**
|
|
105
|
+
* 部件优先级
|
|
106
|
+
* @description 值模式 [部件优先权] {-1:未定义、 10:容器部件(支持合入)、 100:插件部件(用于合入) }
|
|
107
|
+
* @type {( number | -1 | 10 | 100)}
|
|
108
|
+
* @default -1
|
|
109
|
+
* 来源 getPriority
|
|
110
|
+
*/
|
|
111
|
+
priority?: number | -1 | 10 | 100;
|
|
104
112
|
/**
|
|
105
113
|
* 用户自定义行为2
|
|
106
114
|
*
|
package/out/control/ieditor.d.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { IControlAttribute } from './icontrol-attribute';
|
|
2
|
+
import { IControlLogic } from './icontrol-logic';
|
|
3
|
+
import { IControlRender } from './icontrol-render';
|
|
1
4
|
import { IEditorItem } from './ieditor-item';
|
|
2
5
|
import { ISysCss } from '../res/isys-css';
|
|
3
6
|
import { ISysDictCat } from '../res/isys-dict-cat';
|
|
@@ -71,6 +74,27 @@ export interface IEditor extends IModelObject {
|
|
|
71
74
|
* 来源 getObjectValueField
|
|
72
75
|
*/
|
|
73
76
|
objectValueField?: string;
|
|
77
|
+
/**
|
|
78
|
+
* 部件注入属性集合
|
|
79
|
+
*
|
|
80
|
+
* @type {IControlAttribute[]}
|
|
81
|
+
* 来源 getPSControlAttributes
|
|
82
|
+
*/
|
|
83
|
+
controlAttributes?: IControlAttribute[];
|
|
84
|
+
/**
|
|
85
|
+
* 部件逻辑集合
|
|
86
|
+
*
|
|
87
|
+
* @type {IControlLogic[]}
|
|
88
|
+
* 来源 getPSControlLogics
|
|
89
|
+
*/
|
|
90
|
+
controlLogics?: IControlLogic[];
|
|
91
|
+
/**
|
|
92
|
+
* 部件绘制器集合
|
|
93
|
+
*
|
|
94
|
+
* @type {IControlRender[]}
|
|
95
|
+
* 来源 getPSControlRenders
|
|
96
|
+
*/
|
|
97
|
+
controlRenders?: IControlRender[];
|
|
74
98
|
/**
|
|
75
99
|
* 复合编辑器项集合
|
|
76
100
|
*
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { IControlAttribute } from './icontrol-attribute';
|
|
2
|
+
import { IControlLogic } from './icontrol-logic';
|
|
3
|
+
import { IControlRender } from './icontrol-render';
|
|
1
4
|
import { IRawItemParam } from './iraw-item-param';
|
|
2
5
|
import { ISysCss } from '../res/isys-css';
|
|
3
6
|
import { IModelObject } from '../imodel-object';
|
|
@@ -26,6 +29,27 @@ export interface IRawItemBase extends IModelObject {
|
|
|
26
29
|
* 来源 getDynaClass
|
|
27
30
|
*/
|
|
28
31
|
dynaClass?: string;
|
|
32
|
+
/**
|
|
33
|
+
* 部件注入属性集合
|
|
34
|
+
*
|
|
35
|
+
* @type {IControlAttribute[]}
|
|
36
|
+
* 来源 getPSControlAttributes
|
|
37
|
+
*/
|
|
38
|
+
controlAttributes?: IControlAttribute[];
|
|
39
|
+
/**
|
|
40
|
+
* 部件逻辑集合
|
|
41
|
+
*
|
|
42
|
+
* @type {IControlLogic[]}
|
|
43
|
+
* 来源 getPSControlLogics
|
|
44
|
+
*/
|
|
45
|
+
controlLogics?: IControlLogic[];
|
|
46
|
+
/**
|
|
47
|
+
* 部件绘制器集合
|
|
48
|
+
*
|
|
49
|
+
* @type {IControlRender[]}
|
|
50
|
+
* 来源 getPSControlRenders
|
|
51
|
+
*/
|
|
52
|
+
controlRenders?: IControlRender[];
|
|
29
53
|
/**
|
|
30
54
|
* 直接内容项参数集合
|
|
31
55
|
*
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IPanelButton } from './ipanel-button';
|
|
1
2
|
import { IPanelItem } from './ipanel-item';
|
|
2
3
|
import { IUIActionGroup } from '../../view/iuiaction-group';
|
|
3
4
|
/**
|
|
@@ -15,6 +16,21 @@ export interface IPanelButtonList extends IPanelItem {
|
|
|
15
16
|
* 来源 getActionGroupExtractMode
|
|
16
17
|
*/
|
|
17
18
|
actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
|
|
19
|
+
/**
|
|
20
|
+
* 按钮列表类型
|
|
21
|
+
* @description 值模式 [表单按钮列表类型] {UIACTIONGROUP:界面行为组、 BUTTONS:按钮集合 }
|
|
22
|
+
* @type {( string | 'UIACTIONGROUP' | 'BUTTONS')}
|
|
23
|
+
* @default UIACTIONGROUP
|
|
24
|
+
* 来源 getButtonListType
|
|
25
|
+
*/
|
|
26
|
+
buttonListType?: string | 'UIACTIONGROUP' | 'BUTTONS';
|
|
27
|
+
/**
|
|
28
|
+
* 按钮集合
|
|
29
|
+
*
|
|
30
|
+
* @type {IPanelButton[]}
|
|
31
|
+
* 来源 getPSPanelButtons
|
|
32
|
+
*/
|
|
33
|
+
panelButtons?: IPanelButton[];
|
|
18
34
|
/**
|
|
19
35
|
* 界面行为组对象
|
|
20
36
|
*
|
|
@@ -6,6 +6,28 @@ import { IDEContextMenuItem } from './idecontext-menu-item';
|
|
|
6
6
|
* @interface IDECMGroupItem
|
|
7
7
|
*/
|
|
8
8
|
export interface IDECMGroupItem extends IDEContextMenuItem {
|
|
9
|
+
/**
|
|
10
|
+
* 行为级别
|
|
11
|
+
* @description 值模式 [界面行为行为级别] {50:不常用、 100:一般操作、 200:常用操作、 250:关键操作 }
|
|
12
|
+
* @type {( number | 50 | 100 | 200 | 250)}
|
|
13
|
+
* @default 100
|
|
14
|
+
* 来源 getActionLevel
|
|
15
|
+
*/
|
|
16
|
+
actionLevel?: number | 50 | 100 | 200 | 250;
|
|
17
|
+
/**
|
|
18
|
+
* 边框样式
|
|
19
|
+
* @description 值模式 [边框样式] {NONE:无边框、 SOLID:实线边框、 DOTTED:点状边框、 DASHED:虚线边框、 DOUBLE:双线边框 }
|
|
20
|
+
* @type {( string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE')}
|
|
21
|
+
* 来源 getBorderStyle
|
|
22
|
+
*/
|
|
23
|
+
borderStyle?: string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE';
|
|
24
|
+
/**
|
|
25
|
+
* 按钮样式
|
|
26
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
27
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
28
|
+
* 来源 getButtonStyle
|
|
29
|
+
*/
|
|
30
|
+
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
9
31
|
/**
|
|
10
32
|
* 子项集合
|
|
11
33
|
*
|
|
@@ -6,6 +6,28 @@ import { IDEToolbarItem } from './idetoolbar-item';
|
|
|
6
6
|
* @interface IDETBGroupItem
|
|
7
7
|
*/
|
|
8
8
|
export interface IDETBGroupItem extends IDEToolbarItem {
|
|
9
|
+
/**
|
|
10
|
+
* 行为级别
|
|
11
|
+
* @description 值模式 [界面行为行为级别] {50:不常用、 100:一般操作、 200:常用操作、 250:关键操作 }
|
|
12
|
+
* @type {( number | 50 | 100 | 200 | 250)}
|
|
13
|
+
* @default 100
|
|
14
|
+
* 来源 getActionLevel
|
|
15
|
+
*/
|
|
16
|
+
actionLevel?: number | 50 | 100 | 200 | 250;
|
|
17
|
+
/**
|
|
18
|
+
* 边框样式
|
|
19
|
+
* @description 值模式 [边框样式] {NONE:无边框、 SOLID:实线边框、 DOTTED:点状边框、 DASHED:虚线边框、 DOUBLE:双线边框 }
|
|
20
|
+
* @type {( string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE')}
|
|
21
|
+
* 来源 getBorderStyle
|
|
22
|
+
*/
|
|
23
|
+
borderStyle?: string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE';
|
|
24
|
+
/**
|
|
25
|
+
* 按钮样式
|
|
26
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
27
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
28
|
+
* 来源 getButtonStyle
|
|
29
|
+
*/
|
|
30
|
+
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
9
31
|
/**
|
|
10
32
|
* 子项集合
|
|
11
33
|
*
|
|
@@ -12,6 +12,18 @@ export interface IDEDQCondition extends IModelObject {
|
|
|
12
12
|
* 来源 getCondOp
|
|
13
13
|
*/
|
|
14
14
|
condOp?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 条件标记
|
|
17
|
+
* @type {string}
|
|
18
|
+
* 来源 getCondTag
|
|
19
|
+
*/
|
|
20
|
+
condTag?: string;
|
|
21
|
+
/**
|
|
22
|
+
* 条件标记2
|
|
23
|
+
* @type {string}
|
|
24
|
+
* 来源 getCondTag2
|
|
25
|
+
*/
|
|
26
|
+
condTag2?: string;
|
|
15
27
|
/**
|
|
16
28
|
* 条件类型
|
|
17
29
|
* @description 值模式 [条件类型] {GROUP:组合条件、 SINGLE:属性条件、 CUSTOM:自定义条件、 PREDEFINED:预置条件 }
|
package/package.json
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { ILayoutPanel } from '../../control/panel/ilayout-panel';
|
|
1
2
|
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
2
3
|
import { IModelObject } from '../../imodel-object';
|
|
3
4
|
|
|
@@ -15,6 +16,13 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
15
16
|
*/
|
|
16
17
|
codeName?: string;
|
|
17
18
|
|
|
19
|
+
/**
|
|
20
|
+
* 启用判断操作标识
|
|
21
|
+
* @type {string}
|
|
22
|
+
* 来源 getDataAccessAction
|
|
23
|
+
*/
|
|
24
|
+
dataAccessAction?: string;
|
|
25
|
+
|
|
18
26
|
/**
|
|
19
27
|
* 动态模式
|
|
20
28
|
* @description 值模式 [视图消息动态模式] {0:静态内容、 1:实体数据集 }
|
|
@@ -39,6 +47,14 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
39
47
|
*/
|
|
40
48
|
messageType?: string | 'INFO' | 'WARN' | 'ERROR' | 'CUSTOM';
|
|
41
49
|
|
|
50
|
+
/**
|
|
51
|
+
* 启用判断实体
|
|
52
|
+
*
|
|
53
|
+
* @type {string}
|
|
54
|
+
* 来源 getPSAppDataEntity
|
|
55
|
+
*/
|
|
56
|
+
appDataEntityId?: string;
|
|
57
|
+
|
|
42
58
|
/**
|
|
43
59
|
* 应用消息模板
|
|
44
60
|
*
|
|
@@ -47,6 +63,14 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
47
63
|
*/
|
|
48
64
|
appMsgTemplId?: string;
|
|
49
65
|
|
|
66
|
+
/**
|
|
67
|
+
* 布局面板
|
|
68
|
+
*
|
|
69
|
+
* @type {ILayoutPanel}
|
|
70
|
+
* 来源 getPSLayoutPanel
|
|
71
|
+
*/
|
|
72
|
+
layoutPanel?: ILayoutPanel;
|
|
73
|
+
|
|
50
74
|
/**
|
|
51
75
|
* 显示位置
|
|
52
76
|
* @description 值模式 [视图消息位置] {TOP:视图上方、 BOTTOM:视图下方、 BODY:视图内容区、 POPUP:弹出、 CUSTOM:自定义 }
|
|
@@ -63,6 +87,14 @@ export interface IAppViewMsg extends IModelObject {
|
|
|
63
87
|
*/
|
|
64
88
|
removeMode?: number | 0 | 1 | 2;
|
|
65
89
|
|
|
90
|
+
/**
|
|
91
|
+
* 启用判断实体逻辑
|
|
92
|
+
*
|
|
93
|
+
* @type {string}
|
|
94
|
+
* 来源 getTestPSAppDELogic
|
|
95
|
+
*/
|
|
96
|
+
testAppDELogicId?: string;
|
|
97
|
+
|
|
66
98
|
/**
|
|
67
99
|
* 抬头
|
|
68
100
|
* @type {string}
|
|
@@ -220,11 +220,12 @@ export interface IAppView extends IControlContainer {
|
|
|
220
220
|
|
|
221
221
|
/**
|
|
222
222
|
* 视图优先级
|
|
223
|
-
* @
|
|
223
|
+
* @description 值模式 [应用视图优先权] {-1:未定义、 10:一级、 20:二级、 30:三级、 40:四级、 50:五级、 60:六级、 70:七级、 80:八级、 90:九级、 100:十级 }
|
|
224
|
+
* @type {( number | -1 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100)}
|
|
224
225
|
* @default -1
|
|
225
226
|
* 来源 getPriority
|
|
226
227
|
*/
|
|
227
|
-
priority?: number;
|
|
228
|
+
priority?: number | -1 | 10 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 90 | 100;
|
|
228
229
|
|
|
229
230
|
/**
|
|
230
231
|
* 子标题语言资源
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IDEFormButton } from './ideform-button';
|
|
1
2
|
import { IDEFormDetail } from './ideform-detail';
|
|
2
3
|
import { IUIActionGroup } from '../../view/iuiaction-group';
|
|
3
4
|
|
|
@@ -16,6 +17,23 @@ export interface IDEFormButtonList extends IDEFormDetail {
|
|
|
16
17
|
*/
|
|
17
18
|
actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
|
|
18
19
|
|
|
20
|
+
/**
|
|
21
|
+
* 按钮列表类型
|
|
22
|
+
* @description 值模式 [表单按钮列表类型] {UIACTIONGROUP:界面行为组、 BUTTONS:按钮集合 }
|
|
23
|
+
* @type {( string | 'UIACTIONGROUP' | 'BUTTONS')}
|
|
24
|
+
* @default UIACTIONGROUP
|
|
25
|
+
* 来源 getButtonListType
|
|
26
|
+
*/
|
|
27
|
+
buttonListType?: string | 'UIACTIONGROUP' | 'BUTTONS';
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* 表单按钮集合
|
|
31
|
+
*
|
|
32
|
+
* @type {IDEFormButton[]}
|
|
33
|
+
* 来源 getPSDEFormButtons
|
|
34
|
+
*/
|
|
35
|
+
deformButtons?: IDEFormButton[];
|
|
36
|
+
|
|
19
37
|
/**
|
|
20
38
|
* 界面行为组对象
|
|
21
39
|
*
|
package/src/control/icontrol.ts
CHANGED
|
@@ -156,6 +156,15 @@ export interface IControl extends IModelObject {
|
|
|
156
156
|
*/
|
|
157
157
|
sysPFPluginId?: string;
|
|
158
158
|
|
|
159
|
+
/**
|
|
160
|
+
* 部件优先级
|
|
161
|
+
* @description 值模式 [部件优先权] {-1:未定义、 10:容器部件(支持合入)、 100:插件部件(用于合入) }
|
|
162
|
+
* @type {( number | -1 | 10 | 100)}
|
|
163
|
+
* @default -1
|
|
164
|
+
* 来源 getPriority
|
|
165
|
+
*/
|
|
166
|
+
priority?: number | -1 | 10 | 100;
|
|
167
|
+
|
|
159
168
|
/**
|
|
160
169
|
* 用户自定义行为2
|
|
161
170
|
*
|
package/src/control/ieditor.ts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { IControlAttribute } from './icontrol-attribute';
|
|
2
|
+
import { IControlLogic } from './icontrol-logic';
|
|
3
|
+
import { IControlRender } from './icontrol-render';
|
|
1
4
|
import { IEditorItem } from './ieditor-item';
|
|
2
5
|
import { ISysCss } from '../res/isys-css';
|
|
3
6
|
import { ISysDictCat } from '../res/isys-dict-cat';
|
|
@@ -82,6 +85,30 @@ export interface IEditor extends IModelObject {
|
|
|
82
85
|
*/
|
|
83
86
|
objectValueField?: string;
|
|
84
87
|
|
|
88
|
+
/**
|
|
89
|
+
* 部件注入属性集合
|
|
90
|
+
*
|
|
91
|
+
* @type {IControlAttribute[]}
|
|
92
|
+
* 来源 getPSControlAttributes
|
|
93
|
+
*/
|
|
94
|
+
controlAttributes?: IControlAttribute[];
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* 部件逻辑集合
|
|
98
|
+
*
|
|
99
|
+
* @type {IControlLogic[]}
|
|
100
|
+
* 来源 getPSControlLogics
|
|
101
|
+
*/
|
|
102
|
+
controlLogics?: IControlLogic[];
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* 部件绘制器集合
|
|
106
|
+
*
|
|
107
|
+
* @type {IControlRender[]}
|
|
108
|
+
* 来源 getPSControlRenders
|
|
109
|
+
*/
|
|
110
|
+
controlRenders?: IControlRender[];
|
|
111
|
+
|
|
85
112
|
/**
|
|
86
113
|
* 复合编辑器项集合
|
|
87
114
|
*
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { IControlAttribute } from './icontrol-attribute';
|
|
2
|
+
import { IControlLogic } from './icontrol-logic';
|
|
3
|
+
import { IControlRender } from './icontrol-render';
|
|
1
4
|
import { IRawItemParam } from './iraw-item-param';
|
|
2
5
|
import { ISysCss } from '../res/isys-css';
|
|
3
6
|
import { IModelObject } from '../imodel-object';
|
|
@@ -30,6 +33,30 @@ export interface IRawItemBase extends IModelObject {
|
|
|
30
33
|
*/
|
|
31
34
|
dynaClass?: string;
|
|
32
35
|
|
|
36
|
+
/**
|
|
37
|
+
* 部件注入属性集合
|
|
38
|
+
*
|
|
39
|
+
* @type {IControlAttribute[]}
|
|
40
|
+
* 来源 getPSControlAttributes
|
|
41
|
+
*/
|
|
42
|
+
controlAttributes?: IControlAttribute[];
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* 部件逻辑集合
|
|
46
|
+
*
|
|
47
|
+
* @type {IControlLogic[]}
|
|
48
|
+
* 来源 getPSControlLogics
|
|
49
|
+
*/
|
|
50
|
+
controlLogics?: IControlLogic[];
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* 部件绘制器集合
|
|
54
|
+
*
|
|
55
|
+
* @type {IControlRender[]}
|
|
56
|
+
* 来源 getPSControlRenders
|
|
57
|
+
*/
|
|
58
|
+
controlRenders?: IControlRender[];
|
|
59
|
+
|
|
33
60
|
/**
|
|
34
61
|
* 直接内容项参数集合
|
|
35
62
|
*
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IPanelButton } from './ipanel-button';
|
|
1
2
|
import { IPanelItem } from './ipanel-item';
|
|
2
3
|
import { IUIActionGroup } from '../../view/iuiaction-group';
|
|
3
4
|
|
|
@@ -17,6 +18,23 @@ export interface IPanelButtonList extends IPanelItem {
|
|
|
17
18
|
*/
|
|
18
19
|
actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
|
|
19
20
|
|
|
21
|
+
/**
|
|
22
|
+
* 按钮列表类型
|
|
23
|
+
* @description 值模式 [表单按钮列表类型] {UIACTIONGROUP:界面行为组、 BUTTONS:按钮集合 }
|
|
24
|
+
* @type {( string | 'UIACTIONGROUP' | 'BUTTONS')}
|
|
25
|
+
* @default UIACTIONGROUP
|
|
26
|
+
* 来源 getButtonListType
|
|
27
|
+
*/
|
|
28
|
+
buttonListType?: string | 'UIACTIONGROUP' | 'BUTTONS';
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 按钮集合
|
|
32
|
+
*
|
|
33
|
+
* @type {IPanelButton[]}
|
|
34
|
+
* 来源 getPSPanelButtons
|
|
35
|
+
*/
|
|
36
|
+
panelButtons?: IPanelButton[];
|
|
37
|
+
|
|
20
38
|
/**
|
|
21
39
|
* 界面行为组对象
|
|
22
40
|
*
|
|
@@ -7,6 +7,42 @@ import { IDEContextMenuItem } from './idecontext-menu-item';
|
|
|
7
7
|
* @interface IDECMGroupItem
|
|
8
8
|
*/
|
|
9
9
|
export interface IDECMGroupItem extends IDEContextMenuItem {
|
|
10
|
+
/**
|
|
11
|
+
* 行为级别
|
|
12
|
+
* @description 值模式 [界面行为行为级别] {50:不常用、 100:一般操作、 200:常用操作、 250:关键操作 }
|
|
13
|
+
* @type {( number | 50 | 100 | 200 | 250)}
|
|
14
|
+
* @default 100
|
|
15
|
+
* 来源 getActionLevel
|
|
16
|
+
*/
|
|
17
|
+
actionLevel?: number | 50 | 100 | 200 | 250;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 边框样式
|
|
21
|
+
* @description 值模式 [边框样式] {NONE:无边框、 SOLID:实线边框、 DOTTED:点状边框、 DASHED:虚线边框、 DOUBLE:双线边框 }
|
|
22
|
+
* @type {( string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE')}
|
|
23
|
+
* 来源 getBorderStyle
|
|
24
|
+
*/
|
|
25
|
+
borderStyle?: string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE';
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* 按钮样式
|
|
29
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
30
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
31
|
+
* 来源 getButtonStyle
|
|
32
|
+
*/
|
|
33
|
+
buttonStyle?:
|
|
34
|
+
| string
|
|
35
|
+
| 'DEFAULT'
|
|
36
|
+
| 'INVERSE'
|
|
37
|
+
| 'PRIMARY'
|
|
38
|
+
| 'INFO'
|
|
39
|
+
| 'SUCCESS'
|
|
40
|
+
| 'WARNING'
|
|
41
|
+
| 'DANGER'
|
|
42
|
+
| 'STYLE2'
|
|
43
|
+
| 'STYLE3'
|
|
44
|
+
| 'STYLE4';
|
|
45
|
+
|
|
10
46
|
/**
|
|
11
47
|
* 子项集合
|
|
12
48
|
*
|
|
@@ -7,6 +7,42 @@ import { IDEToolbarItem } from './idetoolbar-item';
|
|
|
7
7
|
* @interface IDETBGroupItem
|
|
8
8
|
*/
|
|
9
9
|
export interface IDETBGroupItem extends IDEToolbarItem {
|
|
10
|
+
/**
|
|
11
|
+
* 行为级别
|
|
12
|
+
* @description 值模式 [界面行为行为级别] {50:不常用、 100:一般操作、 200:常用操作、 250:关键操作 }
|
|
13
|
+
* @type {( number | 50 | 100 | 200 | 250)}
|
|
14
|
+
* @default 100
|
|
15
|
+
* 来源 getActionLevel
|
|
16
|
+
*/
|
|
17
|
+
actionLevel?: number | 50 | 100 | 200 | 250;
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* 边框样式
|
|
21
|
+
* @description 值模式 [边框样式] {NONE:无边框、 SOLID:实线边框、 DOTTED:点状边框、 DASHED:虚线边框、 DOUBLE:双线边框 }
|
|
22
|
+
* @type {( string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE')}
|
|
23
|
+
* 来源 getBorderStyle
|
|
24
|
+
*/
|
|
25
|
+
borderStyle?: string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE';
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
* 按钮样式
|
|
29
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
30
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
31
|
+
* 来源 getButtonStyle
|
|
32
|
+
*/
|
|
33
|
+
buttonStyle?:
|
|
34
|
+
| string
|
|
35
|
+
| 'DEFAULT'
|
|
36
|
+
| 'INVERSE'
|
|
37
|
+
| 'PRIMARY'
|
|
38
|
+
| 'INFO'
|
|
39
|
+
| 'SUCCESS'
|
|
40
|
+
| 'WARNING'
|
|
41
|
+
| 'DANGER'
|
|
42
|
+
| 'STYLE2'
|
|
43
|
+
| 'STYLE3'
|
|
44
|
+
| 'STYLE4';
|
|
45
|
+
|
|
10
46
|
/**
|
|
11
47
|
* 子项集合
|
|
12
48
|
*
|
|
@@ -14,6 +14,20 @@ export interface IDEDQCondition extends IModelObject {
|
|
|
14
14
|
*/
|
|
15
15
|
condOp?: string;
|
|
16
16
|
|
|
17
|
+
/**
|
|
18
|
+
* 条件标记
|
|
19
|
+
* @type {string}
|
|
20
|
+
* 来源 getCondTag
|
|
21
|
+
*/
|
|
22
|
+
condTag?: string;
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
* 条件标记2
|
|
26
|
+
* @type {string}
|
|
27
|
+
* 来源 getCondTag2
|
|
28
|
+
*/
|
|
29
|
+
condTag2?: string;
|
|
30
|
+
|
|
17
31
|
/**
|
|
18
32
|
* 条件类型
|
|
19
33
|
* @description 值模式 [条件类型] {GROUP:组合条件、 SINGLE:属性条件、 CUSTOM:自定义条件、 PREDEFINED:预置条件 }
|