@ibiz/model-core 0.1.64 → 0.1.66
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/iapplication.d.ts +8 -0
- package/out/app/res/iapp-definput-tip-set.d.ts +50 -0
- package/out/app/res/iapp-definput-tip-set.js +1 -0
- package/out/app/theme/iapp-uitheme.d.ts +6 -0
- package/out/control/editor/icode-list-editor.d.ts +6 -4
- package/out/control/form/ideform-button.d.ts +22 -0
- package/out/control/form/ideform-item.d.ts +12 -0
- package/out/control/form/ideform.d.ts +14 -0
- package/out/control/grid/idegrid.d.ts +3 -3
- package/out/dataentity/der/ider1-n.d.ts +7 -0
- package/out/exports.d.ts +1 -0
- package/out/view/iuiaction-group-detail.d.ts +8 -0
- package/out/view/iuiaction.d.ts +8 -0
- package/package.json +1 -1
- package/src/app/iapplication.ts +9 -0
- package/src/app/res/iapp-definput-tip-set.ts +56 -0
- package/src/app/theme/iapp-uitheme.ts +7 -0
- package/src/control/editor/icode-list-editor.ts +6 -4
- package/src/control/form/ideform-button.ts +36 -0
- package/src/control/form/ideform-item.ts +14 -0
- package/src/control/form/ideform.ts +16 -0
- package/src/control/grid/idegrid.ts +3 -2
- package/src/dataentity/der/ider1-n.ts +8 -0
- package/src/exports.ts +1 -0
- package/src/view/iuiaction-group-detail.ts +20 -0
- package/src/view/iuiaction.ts +20 -0
|
@@ -9,6 +9,7 @@ import { IAppDEUIAction } from './dataentity/iapp-deuiaction';
|
|
|
9
9
|
import { IAppFunc } from './func/iapp-func';
|
|
10
10
|
import { IAppUILogic } from './logic/iapp-uilogic';
|
|
11
11
|
import { IAppMsgTempl } from './msg/iapp-msg-templ';
|
|
12
|
+
import { IAppDEFInputTipSet } from './res/iapp-definput-tip-set';
|
|
12
13
|
import { IAppPFPluginRef } from './res/iapp-pfplugin-ref';
|
|
13
14
|
import { IAppSubViewTypeRef } from './res/iapp-sub-view-type-ref';
|
|
14
15
|
import { IAppUITheme } from './theme/iapp-uitheme';
|
|
@@ -38,6 +39,13 @@ export interface IApplication extends IModelObject {
|
|
|
38
39
|
* 来源 getAllPSAppBISchemes
|
|
39
40
|
*/
|
|
40
41
|
appBISchemeIds?: string[];
|
|
42
|
+
/**
|
|
43
|
+
* 应用实体属性输入提示集合集合
|
|
44
|
+
*
|
|
45
|
+
* @type {IAppDEFInputTipSet[]}
|
|
46
|
+
* 来源 getAllPSAppDEFInputTipSets
|
|
47
|
+
*/
|
|
48
|
+
appDEFInputTipSets?: IAppDEFInputTipSet[];
|
|
41
49
|
/**
|
|
42
50
|
* 应用界面行为集合
|
|
43
51
|
*
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { IModelObject } from '../../imodel-object';
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* @export
|
|
5
|
+
* @interface IAppDEFInputTipSet
|
|
6
|
+
*/
|
|
7
|
+
export interface IAppDEFInputTipSet extends IModelObject {
|
|
8
|
+
/**
|
|
9
|
+
* 内容应用实体属性
|
|
10
|
+
*
|
|
11
|
+
* @type {string}
|
|
12
|
+
* 来源 getContentPSAppDEField
|
|
13
|
+
*/
|
|
14
|
+
contentAppDEFieldId?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 关闭标志应用实体属性
|
|
17
|
+
*
|
|
18
|
+
* @type {string}
|
|
19
|
+
* 来源 getEnableClosePSAppDEField
|
|
20
|
+
*/
|
|
21
|
+
enableCloseAppDEFieldId?: string;
|
|
22
|
+
/**
|
|
23
|
+
* 链接应用实体属性
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* 来源 getLinkPSAppDEField
|
|
27
|
+
*/
|
|
28
|
+
linkAppDEFieldId?: string;
|
|
29
|
+
/**
|
|
30
|
+
* 应用实体数据集合
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* 来源 getPSAppDEDataSet
|
|
34
|
+
*/
|
|
35
|
+
appDEDataSetId?: string;
|
|
36
|
+
/**
|
|
37
|
+
* 应用实体
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* 来源 getPSAppDataEntity
|
|
41
|
+
*/
|
|
42
|
+
appDataEntityId?: string;
|
|
43
|
+
/**
|
|
44
|
+
* 唯一标记应用实体属性
|
|
45
|
+
*
|
|
46
|
+
* @type {string}
|
|
47
|
+
* 来源 getUniqueTagPSAppDEField
|
|
48
|
+
*/
|
|
49
|
+
uniqueTagAppDEFieldId?: string;
|
|
50
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IAppCodeList } from '../../app/codelist/iapp-code-list';
|
|
1
2
|
import { IEditor } from '../ieditor';
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
@@ -12,11 +13,12 @@ export interface ICodeListEditor extends IEditor {
|
|
|
12
13
|
*/
|
|
13
14
|
itemsText?: string;
|
|
14
15
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
17
|
-
*
|
|
16
|
+
* 代码表(运行时内联)
|
|
17
|
+
*
|
|
18
|
+
* @type {IAppCodeList}
|
|
19
|
+
* 来源 getInlinePSAppCodeList
|
|
18
20
|
*/
|
|
19
|
-
|
|
21
|
+
inlineAppCodeList?: IAppCodeList;
|
|
20
22
|
/**
|
|
21
23
|
* 应用代码表对象
|
|
22
24
|
*
|
|
@@ -15,12 +15,34 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
|
|
|
15
15
|
* 来源 getActionType
|
|
16
16
|
*/
|
|
17
17
|
actionType?: string | 'UIACTION' | 'FIUPDATE';
|
|
18
|
+
/**
|
|
19
|
+
* 边框样式
|
|
20
|
+
* @description 值模式 [边框样式] {NONE:无边框、 SOLID:实线边框、 DOTTED:点状边框、 DASHED:虚线边框、 DOUBLE:双线边框 }
|
|
21
|
+
* @type {( string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE')}
|
|
22
|
+
* 来源 getBorderStyle
|
|
23
|
+
*/
|
|
24
|
+
borderStyle?: string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE';
|
|
25
|
+
/**
|
|
26
|
+
* 按钮样式
|
|
27
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
28
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
29
|
+
* @default DEFAULT
|
|
30
|
+
* 来源 getButtonStyle
|
|
31
|
+
*/
|
|
32
|
+
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
18
33
|
/**
|
|
19
34
|
* 动态标题绑定值项
|
|
20
35
|
* @type {string}
|
|
21
36
|
* 来源 getCaptionItemName
|
|
22
37
|
*/
|
|
23
38
|
captionItemName?: string;
|
|
39
|
+
/**
|
|
40
|
+
* 图标对齐
|
|
41
|
+
* @description 值模式 [按钮图标方向] {LEFT:左侧、 TOP:上方、 RIGHT:右侧、 BOTTOM:下方 }
|
|
42
|
+
* @type {( string | 'LEFT' | 'TOP' | 'RIGHT' | 'BOTTOM')}
|
|
43
|
+
* 来源 getIconAlign
|
|
44
|
+
*/
|
|
45
|
+
iconAlign?: string | 'LEFT' | 'TOP' | 'RIGHT' | 'BOTTOM';
|
|
24
46
|
/**
|
|
25
47
|
* 界面行为(运行时内联)
|
|
26
48
|
*
|
|
@@ -66,6 +66,18 @@ export interface IDEFormItem extends IDEFormDetail, IEditorContainer {
|
|
|
66
66
|
* 来源 getInputTip
|
|
67
67
|
*/
|
|
68
68
|
inputTip?: string;
|
|
69
|
+
/**
|
|
70
|
+
* 输入提示信息语言标记
|
|
71
|
+
* @type {string}
|
|
72
|
+
* 来源 getInputTipLanResTag
|
|
73
|
+
*/
|
|
74
|
+
inputTipLanResTag?: string;
|
|
75
|
+
/**
|
|
76
|
+
* 输入提示全局标记
|
|
77
|
+
* @type {string}
|
|
78
|
+
* 来源 getInputTipUniqueTag
|
|
79
|
+
*/
|
|
80
|
+
inputTipUniqueTag?: string;
|
|
69
81
|
/**
|
|
70
82
|
* 输入提示链接
|
|
71
83
|
* @type {string}
|
|
@@ -30,6 +30,13 @@ export interface IDEForm extends IAjaxControl, ILayoutContainer, IControlContain
|
|
|
30
30
|
* 来源 getFormWidth
|
|
31
31
|
*/
|
|
32
32
|
formWidth?: number;
|
|
33
|
+
/**
|
|
34
|
+
* 应用实体属性输入提示集合
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* 来源 getPSAppDEFInputTipSet
|
|
38
|
+
*/
|
|
39
|
+
appDEFInputTipSetId?: string;
|
|
33
40
|
/**
|
|
34
41
|
* 表单项更新集合
|
|
35
42
|
*
|
|
@@ -58,6 +65,13 @@ export interface IDEForm extends IAjaxControl, ILayoutContainer, IControlContain
|
|
|
58
65
|
* 来源 getTabHeaderPos
|
|
59
66
|
*/
|
|
60
67
|
tabHeaderPos?: string | 'LEFT' | 'TOP' | 'RIGHT' | 'BOTTOM';
|
|
68
|
+
/**
|
|
69
|
+
* 启用表单项过滤器
|
|
70
|
+
* @type {boolean}
|
|
71
|
+
* @default false
|
|
72
|
+
* 来源 isEnableItemFilter
|
|
73
|
+
*/
|
|
74
|
+
enableItemFilter?: boolean;
|
|
61
75
|
/**
|
|
62
76
|
* 移动端部件
|
|
63
77
|
* @type {boolean}
|
|
@@ -116,11 +116,11 @@ export interface IDEGrid extends IMDAjaxControl, IControlContainer, IControlNavi
|
|
|
116
116
|
getControlAction?: IControlAction;
|
|
117
117
|
/**
|
|
118
118
|
* 表格样式
|
|
119
|
-
* @description 值模式 [云实体表格样式] {TREEGRID:树表格、 GROUPGRID:分组表格、 LIST:单列无头表格(列表)、 LIST_SORT:单列无头表格(列表),支持排序、 USER:用户自定义、 USER2:用户自定义2 }
|
|
120
|
-
* @type {( string | 'TREEGRID' | 'GROUPGRID' | 'LIST' | 'LIST_SORT' | 'USER' | 'USER2')}
|
|
119
|
+
* @description 值模式 [云实体表格样式] {TREEGRID:树表格、 GROUPGRID:分组表格、 AUTOGRID:自动表格、 LIST:单列无头表格(列表)、 LIST_SORT:单列无头表格(列表),支持排序、 USER:用户自定义、 USER2:用户自定义2 }
|
|
120
|
+
* @type {( string | 'TREEGRID' | 'GROUPGRID' | 'AUTOGRID' | 'LIST' | 'LIST_SORT' | 'USER' | 'USER2')}
|
|
121
121
|
* 来源 getGridStyle
|
|
122
122
|
*/
|
|
123
|
-
gridStyle?: string | 'TREEGRID' | 'GROUPGRID' | 'LIST' | 'LIST_SORT' | 'USER' | 'USER2';
|
|
123
|
+
gridStyle?: string | 'TREEGRID' | 'GROUPGRID' | 'AUTOGRID' | 'LIST' | 'LIST_SORT' | 'USER' | 'USER2';
|
|
124
124
|
/**
|
|
125
125
|
* 分组模式
|
|
126
126
|
* @description 值模式 [多数据部件分组模式] {NONE:无分组、 AUTO:自动分组、 CODELIST:分组代码表 }
|
|
@@ -67,6 +67,13 @@ export interface IDER1N extends IDERBase, IDER1NBase {
|
|
|
67
67
|
* 来源 getRemoveRejectMsg
|
|
68
68
|
*/
|
|
69
69
|
removeRejectMsg?: string;
|
|
70
|
+
/**
|
|
71
|
+
* 临时数据次序
|
|
72
|
+
* @type {number}
|
|
73
|
+
* @default -1
|
|
74
|
+
* 来源 getTempDataOrder
|
|
75
|
+
*/
|
|
76
|
+
tempDataOrder?: number;
|
|
70
77
|
/**
|
|
71
78
|
* 支持克隆
|
|
72
79
|
* @type {boolean}
|
package/out/exports.d.ts
CHANGED
|
@@ -72,6 +72,7 @@ export { IAppUINewDataLogic } from './app/logic/iapp-uinew-data-logic';
|
|
|
72
72
|
export { IAppUIOpenDataLogic } from './app/logic/iapp-uiopen-data-logic';
|
|
73
73
|
export { IMobAppStartPage } from './app/mob/imob-app-start-page';
|
|
74
74
|
export { IAppMsgTempl } from './app/msg/iapp-msg-templ';
|
|
75
|
+
export { IAppDEFInputTipSet } from './app/res/iapp-definput-tip-set';
|
|
75
76
|
export { IAppPFPluginRef } from './app/res/iapp-pfplugin-ref';
|
|
76
77
|
export { IAppSubViewTypeRef } from './app/res/iapp-sub-view-type-ref';
|
|
77
78
|
export { IAppUITheme } from './app/theme/iapp-uitheme';
|
|
@@ -13,6 +13,14 @@ export interface IUIActionGroupDetail extends IModelObject {
|
|
|
13
13
|
* 来源 getActionLevel
|
|
14
14
|
*/
|
|
15
15
|
actionLevel?: number | 50 | 100 | 200 | 250;
|
|
16
|
+
/**
|
|
17
|
+
* 按钮样式
|
|
18
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
19
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
20
|
+
* @default DEFAULT
|
|
21
|
+
* 来源 getButtonStyle
|
|
22
|
+
*/
|
|
23
|
+
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
16
24
|
/**
|
|
17
25
|
* 标题
|
|
18
26
|
* @type {string}
|
package/out/view/iuiaction.d.ts
CHANGED
|
@@ -22,6 +22,14 @@ export interface IUIAction extends INavigateParamContainer {
|
|
|
22
22
|
* 来源 getActionTarget
|
|
23
23
|
*/
|
|
24
24
|
actionTarget?: string | 'SINGLEDATA' | 'SINGLEKEY' | 'MULTIDATA' | 'MULTIKEY' | 'NONE';
|
|
25
|
+
/**
|
|
26
|
+
* 按钮样式
|
|
27
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
28
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
29
|
+
* @default 100
|
|
30
|
+
* 来源 getButtonStyle
|
|
31
|
+
*/
|
|
32
|
+
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
25
33
|
/**
|
|
26
34
|
* 确认信息语言资源
|
|
27
35
|
*
|
package/package.json
CHANGED
package/src/app/iapplication.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { IAppDEUIAction } from './dataentity/iapp-deuiaction';
|
|
|
9
9
|
import { IAppFunc } from './func/iapp-func';
|
|
10
10
|
import { IAppUILogic } from './logic/iapp-uilogic';
|
|
11
11
|
import { IAppMsgTempl } from './msg/iapp-msg-templ';
|
|
12
|
+
import { IAppDEFInputTipSet } from './res/iapp-definput-tip-set';
|
|
12
13
|
import { IAppPFPluginRef } from './res/iapp-pfplugin-ref';
|
|
13
14
|
import { IAppSubViewTypeRef } from './res/iapp-sub-view-type-ref';
|
|
14
15
|
import { IAppUITheme } from './theme/iapp-uitheme';
|
|
@@ -41,6 +42,14 @@ export interface IApplication extends IModelObject {
|
|
|
41
42
|
*/
|
|
42
43
|
appBISchemeIds?: string[];
|
|
43
44
|
|
|
45
|
+
/**
|
|
46
|
+
* 应用实体属性输入提示集合集合
|
|
47
|
+
*
|
|
48
|
+
* @type {IAppDEFInputTipSet[]}
|
|
49
|
+
* 来源 getAllPSAppDEFInputTipSets
|
|
50
|
+
*/
|
|
51
|
+
appDEFInputTipSets?: IAppDEFInputTipSet[];
|
|
52
|
+
|
|
44
53
|
/**
|
|
45
54
|
* 应用界面行为集合
|
|
46
55
|
*
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { IModelObject } from '../../imodel-object';
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface IAppDEFInputTipSet
|
|
7
|
+
*/
|
|
8
|
+
export interface IAppDEFInputTipSet extends IModelObject {
|
|
9
|
+
/**
|
|
10
|
+
* 内容应用实体属性
|
|
11
|
+
*
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getContentPSAppDEField
|
|
14
|
+
*/
|
|
15
|
+
contentAppDEFieldId?: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 关闭标志应用实体属性
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* 来源 getEnableClosePSAppDEField
|
|
22
|
+
*/
|
|
23
|
+
enableCloseAppDEFieldId?: string;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 链接应用实体属性
|
|
27
|
+
*
|
|
28
|
+
* @type {string}
|
|
29
|
+
* 来源 getLinkPSAppDEField
|
|
30
|
+
*/
|
|
31
|
+
linkAppDEFieldId?: string;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* 应用实体数据集合
|
|
35
|
+
*
|
|
36
|
+
* @type {string}
|
|
37
|
+
* 来源 getPSAppDEDataSet
|
|
38
|
+
*/
|
|
39
|
+
appDEDataSetId?: string;
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* 应用实体
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* 来源 getPSAppDataEntity
|
|
46
|
+
*/
|
|
47
|
+
appDataEntityId?: string;
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* 唯一标记应用实体属性
|
|
51
|
+
*
|
|
52
|
+
* @type {string}
|
|
53
|
+
* 来源 getUniqueTagPSAppDEField
|
|
54
|
+
*/
|
|
55
|
+
uniqueTagAppDEFieldId?: string;
|
|
56
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IAppCodeList } from '../../app/codelist/iapp-code-list';
|
|
1
2
|
import { IEditor } from '../ieditor';
|
|
2
3
|
|
|
3
4
|
/**
|
|
@@ -14,11 +15,12 @@ export interface ICodeListEditor extends IEditor {
|
|
|
14
15
|
itemsText?: string;
|
|
15
16
|
|
|
16
17
|
/**
|
|
17
|
-
*
|
|
18
|
-
*
|
|
19
|
-
*
|
|
18
|
+
* 代码表(运行时内联)
|
|
19
|
+
*
|
|
20
|
+
* @type {IAppCodeList}
|
|
21
|
+
* 来源 getInlinePSAppCodeList
|
|
20
22
|
*/
|
|
21
|
-
|
|
23
|
+
inlineAppCodeList?: IAppCodeList;
|
|
22
24
|
|
|
23
25
|
/**
|
|
24
26
|
* 应用代码表对象
|
|
@@ -17,6 +17,34 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
|
|
|
17
17
|
*/
|
|
18
18
|
actionType?: string | 'UIACTION' | 'FIUPDATE';
|
|
19
19
|
|
|
20
|
+
/**
|
|
21
|
+
* 边框样式
|
|
22
|
+
* @description 值模式 [边框样式] {NONE:无边框、 SOLID:实线边框、 DOTTED:点状边框、 DASHED:虚线边框、 DOUBLE:双线边框 }
|
|
23
|
+
* @type {( string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE')}
|
|
24
|
+
* 来源 getBorderStyle
|
|
25
|
+
*/
|
|
26
|
+
borderStyle?: string | 'NONE' | 'SOLID' | 'DOTTED' | 'DASHED' | 'DOUBLE';
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* 按钮样式
|
|
30
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
31
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
32
|
+
* @default DEFAULT
|
|
33
|
+
* 来源 getButtonStyle
|
|
34
|
+
*/
|
|
35
|
+
buttonStyle?:
|
|
36
|
+
| string
|
|
37
|
+
| 'DEFAULT'
|
|
38
|
+
| 'INVERSE'
|
|
39
|
+
| 'PRIMARY'
|
|
40
|
+
| 'INFO'
|
|
41
|
+
| 'SUCCESS'
|
|
42
|
+
| 'WARNING'
|
|
43
|
+
| 'DANGER'
|
|
44
|
+
| 'STYLE2'
|
|
45
|
+
| 'STYLE3'
|
|
46
|
+
| 'STYLE4';
|
|
47
|
+
|
|
20
48
|
/**
|
|
21
49
|
* 动态标题绑定值项
|
|
22
50
|
* @type {string}
|
|
@@ -24,6 +52,14 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
|
|
|
24
52
|
*/
|
|
25
53
|
captionItemName?: string;
|
|
26
54
|
|
|
55
|
+
/**
|
|
56
|
+
* 图标对齐
|
|
57
|
+
* @description 值模式 [按钮图标方向] {LEFT:左侧、 TOP:上方、 RIGHT:右侧、 BOTTOM:下方 }
|
|
58
|
+
* @type {( string | 'LEFT' | 'TOP' | 'RIGHT' | 'BOTTOM')}
|
|
59
|
+
* 来源 getIconAlign
|
|
60
|
+
*/
|
|
61
|
+
iconAlign?: string | 'LEFT' | 'TOP' | 'RIGHT' | 'BOTTOM';
|
|
62
|
+
|
|
27
63
|
/**
|
|
28
64
|
* 界面行为(运行时内联)
|
|
29
65
|
*
|
|
@@ -117,6 +117,20 @@ export interface IDEFormItem extends IDEFormDetail, IEditorContainer {
|
|
|
117
117
|
*/
|
|
118
118
|
inputTip?: string;
|
|
119
119
|
|
|
120
|
+
/**
|
|
121
|
+
* 输入提示信息语言标记
|
|
122
|
+
* @type {string}
|
|
123
|
+
* 来源 getInputTipLanResTag
|
|
124
|
+
*/
|
|
125
|
+
inputTipLanResTag?: string;
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* 输入提示全局标记
|
|
129
|
+
* @type {string}
|
|
130
|
+
* 来源 getInputTipUniqueTag
|
|
131
|
+
*/
|
|
132
|
+
inputTipUniqueTag?: string;
|
|
133
|
+
|
|
120
134
|
/**
|
|
121
135
|
* 输入提示链接
|
|
122
136
|
* @type {string}
|
|
@@ -37,6 +37,14 @@ export interface IDEForm
|
|
|
37
37
|
*/
|
|
38
38
|
formWidth?: number;
|
|
39
39
|
|
|
40
|
+
/**
|
|
41
|
+
* 应用实体属性输入提示集合
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* 来源 getPSAppDEFInputTipSet
|
|
45
|
+
*/
|
|
46
|
+
appDEFInputTipSetId?: string;
|
|
47
|
+
|
|
40
48
|
/**
|
|
41
49
|
* 表单项更新集合
|
|
42
50
|
*
|
|
@@ -69,6 +77,14 @@ export interface IDEForm
|
|
|
69
77
|
*/
|
|
70
78
|
tabHeaderPos?: string | 'LEFT' | 'TOP' | 'RIGHT' | 'BOTTOM';
|
|
71
79
|
|
|
80
|
+
/**
|
|
81
|
+
* 启用表单项过滤器
|
|
82
|
+
* @type {boolean}
|
|
83
|
+
* @default false
|
|
84
|
+
* 来源 isEnableItemFilter
|
|
85
|
+
*/
|
|
86
|
+
enableItemFilter?: boolean;
|
|
87
|
+
|
|
72
88
|
/**
|
|
73
89
|
* 移动端部件
|
|
74
90
|
* @type {boolean}
|
|
@@ -135,14 +135,15 @@ export interface IDEGrid
|
|
|
135
135
|
|
|
136
136
|
/**
|
|
137
137
|
* 表格样式
|
|
138
|
-
* @description 值模式 [云实体表格样式] {TREEGRID:树表格、 GROUPGRID:分组表格、 LIST:单列无头表格(列表)、 LIST_SORT:单列无头表格(列表),支持排序、 USER:用户自定义、 USER2:用户自定义2 }
|
|
139
|
-
* @type {( string | 'TREEGRID' | 'GROUPGRID' | 'LIST' | 'LIST_SORT' | 'USER' | 'USER2')}
|
|
138
|
+
* @description 值模式 [云实体表格样式] {TREEGRID:树表格、 GROUPGRID:分组表格、 AUTOGRID:自动表格、 LIST:单列无头表格(列表)、 LIST_SORT:单列无头表格(列表),支持排序、 USER:用户自定义、 USER2:用户自定义2 }
|
|
139
|
+
* @type {( string | 'TREEGRID' | 'GROUPGRID' | 'AUTOGRID' | 'LIST' | 'LIST_SORT' | 'USER' | 'USER2')}
|
|
140
140
|
* 来源 getGridStyle
|
|
141
141
|
*/
|
|
142
142
|
gridStyle?:
|
|
143
143
|
| string
|
|
144
144
|
| 'TREEGRID'
|
|
145
145
|
| 'GROUPGRID'
|
|
146
|
+
| 'AUTOGRID'
|
|
146
147
|
| 'LIST'
|
|
147
148
|
| 'LIST_SORT'
|
|
148
149
|
| 'USER'
|
|
@@ -91,6 +91,14 @@ export interface IDER1N extends IDERBase, IDER1NBase {
|
|
|
91
91
|
*/
|
|
92
92
|
removeRejectMsg?: string;
|
|
93
93
|
|
|
94
|
+
/**
|
|
95
|
+
* 临时数据次序
|
|
96
|
+
* @type {number}
|
|
97
|
+
* @default -1
|
|
98
|
+
* 来源 getTempDataOrder
|
|
99
|
+
*/
|
|
100
|
+
tempDataOrder?: number;
|
|
101
|
+
|
|
94
102
|
/**
|
|
95
103
|
* 支持克隆
|
|
96
104
|
* @type {boolean}
|
package/src/exports.ts
CHANGED
|
@@ -72,6 +72,7 @@ export { IAppUINewDataLogic } from './app/logic/iapp-uinew-data-logic';
|
|
|
72
72
|
export { IAppUIOpenDataLogic } from './app/logic/iapp-uiopen-data-logic';
|
|
73
73
|
export { IMobAppStartPage } from './app/mob/imob-app-start-page';
|
|
74
74
|
export { IAppMsgTempl } from './app/msg/iapp-msg-templ';
|
|
75
|
+
export { IAppDEFInputTipSet } from './app/res/iapp-definput-tip-set';
|
|
75
76
|
export { IAppPFPluginRef } from './app/res/iapp-pfplugin-ref';
|
|
76
77
|
export { IAppSubViewTypeRef } from './app/res/iapp-sub-view-type-ref';
|
|
77
78
|
export { IAppUITheme } from './app/theme/iapp-uitheme';
|
|
@@ -15,6 +15,26 @@ export interface IUIActionGroupDetail extends IModelObject {
|
|
|
15
15
|
*/
|
|
16
16
|
actionLevel?: number | 50 | 100 | 200 | 250;
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* 按钮样式
|
|
20
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
21
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
22
|
+
* @default DEFAULT
|
|
23
|
+
* 来源 getButtonStyle
|
|
24
|
+
*/
|
|
25
|
+
buttonStyle?:
|
|
26
|
+
| string
|
|
27
|
+
| 'DEFAULT'
|
|
28
|
+
| 'INVERSE'
|
|
29
|
+
| 'PRIMARY'
|
|
30
|
+
| 'INFO'
|
|
31
|
+
| 'SUCCESS'
|
|
32
|
+
| 'WARNING'
|
|
33
|
+
| 'DANGER'
|
|
34
|
+
| 'STYLE2'
|
|
35
|
+
| 'STYLE3'
|
|
36
|
+
| 'STYLE4';
|
|
37
|
+
|
|
18
38
|
/**
|
|
19
39
|
* 标题
|
|
20
40
|
* @type {string}
|
package/src/view/iuiaction.ts
CHANGED
|
@@ -31,6 +31,26 @@ export interface IUIAction extends INavigateParamContainer {
|
|
|
31
31
|
| 'MULTIKEY'
|
|
32
32
|
| 'NONE';
|
|
33
33
|
|
|
34
|
+
/**
|
|
35
|
+
* 按钮样式
|
|
36
|
+
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
37
|
+
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
38
|
+
* @default 100
|
|
39
|
+
* 来源 getButtonStyle
|
|
40
|
+
*/
|
|
41
|
+
buttonStyle?:
|
|
42
|
+
| string
|
|
43
|
+
| 'DEFAULT'
|
|
44
|
+
| 'INVERSE'
|
|
45
|
+
| 'PRIMARY'
|
|
46
|
+
| 'INFO'
|
|
47
|
+
| 'SUCCESS'
|
|
48
|
+
| 'WARNING'
|
|
49
|
+
| 'DANGER'
|
|
50
|
+
| 'STYLE2'
|
|
51
|
+
| 'STYLE3'
|
|
52
|
+
| 'STYLE4';
|
|
53
|
+
|
|
34
54
|
/**
|
|
35
55
|
* 确认信息语言资源
|
|
36
56
|
*
|