@ibiz/model-core 0.1.26 → 0.1.27

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.
@@ -1,5 +1,6 @@
1
1
  import { INavigateParamContainer } from '../inavigate-param-container';
2
2
  import { IDEFormDetail } from './ideform-detail';
3
+ import { IUIAction } from '../../view/iuiaction';
3
4
  /**
4
5
  *
5
6
  * 继承父接口类型值[BUTTON]
@@ -20,6 +21,13 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
20
21
  * 来源 getCaptionItemName
21
22
  */
22
23
  captionItemName?: string;
24
+ /**
25
+ * 界面行为(运行时内联)
26
+ *
27
+ * @type {IUIAction}
28
+ * 来源 getInlinePSUIAction
29
+ */
30
+ inlineUIAction?: IUIAction;
23
31
  /**
24
32
  * 调用表单项更新
25
33
  *
@@ -1,5 +1,6 @@
1
1
  import { IButtonBase } from '../ibutton-base';
2
2
  import { IPanelItem } from './ipanel-item';
3
+ import { IUIAction } from '../../view/iuiaction';
3
4
  /**
4
5
  *
5
6
  * 继承父接口类型值[BUTTON]
@@ -20,6 +21,13 @@ export interface IPanelButton extends IPanelItem, IButtonBase {
20
21
  * 来源 getCaptionItemName
21
22
  */
22
23
  captionItemName?: string;
24
+ /**
25
+ * 界面行为(运行时内联)
26
+ *
27
+ * @type {IUIAction}
28
+ * 来源 getInlinePSUIAction
29
+ */
30
+ inlineUIAction?: IUIAction;
23
31
  /**
24
32
  * 调用界面行为
25
33
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -1,5 +1,6 @@
1
1
  import { INavigateParamContainer } from '../inavigate-param-container';
2
2
  import { IDEFormDetail } from './ideform-detail';
3
+ import { IUIAction } from '../../view/iuiaction';
3
4
 
4
5
  /**
5
6
  *
@@ -23,6 +24,14 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
23
24
  */
24
25
  captionItemName?: string;
25
26
 
27
+ /**
28
+ * 界面行为(运行时内联)
29
+ *
30
+ * @type {IUIAction}
31
+ * 来源 getInlinePSUIAction
32
+ */
33
+ inlineUIAction?: IUIAction;
34
+
26
35
  /**
27
36
  * 调用表单项更新
28
37
  *
@@ -1,5 +1,6 @@
1
1
  import { IButtonBase } from '../ibutton-base';
2
2
  import { IPanelItem } from './ipanel-item';
3
+ import { IUIAction } from '../../view/iuiaction';
3
4
 
4
5
  /**
5
6
  *
@@ -52,6 +53,14 @@ export interface IPanelButton extends IPanelItem, IButtonBase {
52
53
  */
53
54
  captionItemName?: string;
54
55
 
56
+ /**
57
+ * 界面行为(运行时内联)
58
+ *
59
+ * @type {IUIAction}
60
+ * 来源 getInlinePSUIAction
61
+ */
62
+ inlineUIAction?: IUIAction;
63
+
55
64
  /**
56
65
  * 调用界面行为
57
66
  *