@ibiz/model-core 0.1.65 → 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.
|
@@ -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
|
*
|
|
@@ -17,7 +17,7 @@ export interface IUIActionGroupDetail extends IModelObject {
|
|
|
17
17
|
* 按钮样式
|
|
18
18
|
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
19
19
|
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
20
|
-
* @default
|
|
20
|
+
* @default DEFAULT
|
|
21
21
|
* 来源 getButtonStyle
|
|
22
22
|
*/
|
|
23
23
|
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
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
|
*
|
|
@@ -19,7 +19,7 @@ export interface IUIActionGroupDetail extends IModelObject {
|
|
|
19
19
|
* 按钮样式
|
|
20
20
|
* @description 值模式 [按钮样式] {DEFAULT:默认、 INVERSE:反向、 PRIMARY:主要、 INFO:信息、 SUCCESS:成功、 WARNING:警告、 DANGER:危险、 STYLE2:样式2、 STYLE3:样式3、 STYLE4:样式4 }
|
|
21
21
|
* @type {( string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4')}
|
|
22
|
-
* @default
|
|
22
|
+
* @default DEFAULT
|
|
23
23
|
* 来源 getButtonStyle
|
|
24
24
|
*/
|
|
25
25
|
buttonStyle?:
|