@ibiz/model-core 0.1.80 → 0.1.81

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/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@
5
5
  此日志格式基于 [Keep a Changelog](https://keepachangelog.com/zh-CN/1.0.0/),
6
6
  并且此项目遵循 [Semantic Versioning](https://semver.org/lang/zh-CN/).
7
7
 
8
+ ## [0.1.81] - 2025-08-25
9
+
10
+ ### Added
11
+
12
+ - 界面行为分组新增界面行为分组类型
13
+
8
14
  ## [0.1.80] - 2025-08-20
9
15
 
10
16
  ### Added
@@ -1,4 +1,5 @@
1
1
  import { ILanguageRes } from '../../res/ilanguage-res';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
2
3
  import { IUIActionGroupDetail } from '../../view/iuiaction-group-detail';
3
4
  /**
4
5
  *
@@ -58,11 +59,18 @@ export interface IDEUIActionGroupDetail extends IUIActionGroupDetail {
58
59
  capLanguageRes?: ILanguageRes;
59
60
  /**
60
61
  * 成员类型
61
- * @description 值模式 [云平台工具栏项类型(界面行为组成员)] {DEUIACTION:实体界面行为 }
62
+ * @description 值模式 [云平台工具栏项类型(界面行为组成员)] {DEUIACTION:实体界面行为、DEUIACTIONGROUP:实体界面行为分组 }
62
63
  * @type {( string | 'DEUIACTION')}
63
64
  * 来源 getDetailType
64
65
  */
65
- detailType?: string | 'DEUIACTION';
66
+ detailType?: string | 'DEUIACTION' | 'DEUIACTIONGROUP';
67
+ /**
68
+ * 引用界面行为对象
69
+ *
70
+ * @type {IUIActionGroup}
71
+ * 来源 getRefPSUIActionGroup
72
+ */
73
+ refUIActionGroup?: IUIActionGroup;
66
74
  /**
67
75
  * 提示语言资源对象
68
76
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.80",
3
+ "version": "0.1.81",
4
4
  "license": "MIT",
5
5
  "description": "iBiz网页端模型接口",
6
6
  "author": "iBiz",
@@ -6,4 +6,4 @@ import { IDELogicNode } from './idelogic-node';
6
6
  * @export
7
7
  * @interface IDEMemoLogic
8
8
  */
9
- export type IDEMemoLogic = IDELogicNode
9
+ export type IDEMemoLogic = IDELogicNode;
@@ -6,4 +6,4 @@ import { IDEUILogicNode } from './ideuilogic-node';
6
6
  * @export
7
7
  * @interface IDEUIMemoLogic
8
8
  */
9
- export type IDEUIMemoLogic = IDEUILogicNode
9
+ export type IDEUIMemoLogic = IDEUILogicNode;
@@ -1,4 +1,5 @@
1
1
  import { ILanguageRes } from '../../res/ilanguage-res';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
2
3
  import { IUIActionGroupDetail } from '../../view/iuiaction-group-detail';
3
4
 
4
5
  /**
@@ -66,11 +67,19 @@ export interface IDEUIActionGroupDetail extends IUIActionGroupDetail {
66
67
 
67
68
  /**
68
69
  * 成员类型
69
- * @description 值模式 [云平台工具栏项类型(界面行为组成员)] {DEUIACTION:实体界面行为 }
70
+ * @description 值模式 [云平台工具栏项类型(界面行为组成员)] {DEUIACTION:实体界面行为、DEUIACTIONGROUP:实体界面行为分组 }
70
71
  * @type {( string | 'DEUIACTION')}
71
72
  * 来源 getDetailType
72
73
  */
73
- detailType?: string | 'DEUIACTION';
74
+ detailType?: string | 'DEUIACTION' | 'DEUIACTIONGROUP';
75
+
76
+ /**
77
+ * 引用界面行为对象
78
+ *
79
+ * @type {IUIActionGroup}
80
+ * 来源 getRefPSUIActionGroup
81
+ */
82
+ refUIActionGroup?: IUIActionGroup;
74
83
 
75
84
  /**
76
85
  * 提示语言资源对象