@ibiz/model-core 0.1.72 → 0.1.73

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.73] - 2025-05-20
9
+
10
+ ### Added
11
+
12
+ - 直接内容增加操作提示信息
13
+
8
14
  ## [0.1.72] - 2025-05-13
9
15
 
10
16
  ### Added
@@ -1,5 +1,6 @@
1
1
  import { INavigateParamContainer } from '../inavigate-param-container';
2
2
  import { IDEFormDetail } from './ideform-detail';
3
+ import { ILanguageRes } from '../../res/ilanguage-res';
3
4
  import { IUIAction } from '../../view/iuiaction';
4
5
  /**
5
6
  *
@@ -83,6 +84,13 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
83
84
  * 来源 getTooltip
84
85
  */
85
86
  tooltip?: string;
87
+ /**
88
+ * 操作提示语言资源
89
+ *
90
+ * @type {ILanguageRes}
91
+ * 来源 getTooltipPSLanguageRes
92
+ */
93
+ tooltipLanguageRes?: ILanguageRes;
86
94
  /**
87
95
  * 界面行为操作目标
88
96
  * @description 值模式 [界面行为操作目标] {SINGLEDATA:单项数据、 SINGLEKEY:单项数据(主键)、 MULTIDATA:多项数据、 MULTIKEY:多项数据(主键)、 NONE:无数据 }
@@ -1,3 +1,4 @@
1
+ import { ILanguageRes } from '../res/ilanguage-res';
1
2
  import { IModelObject } from '../imodel-object';
2
3
  /**
3
4
  *
@@ -67,4 +68,11 @@ export interface IButtonBase extends IModelObject {
67
68
  * 来源 getTooltip
68
69
  */
69
70
  tooltip?: string;
71
+ /**
72
+ * 操作提示语言资源
73
+ *
74
+ * @type {ILanguageRes}
75
+ * 来源 getTooltipPSLanguageRes
76
+ */
77
+ tooltipLanguageRes?: ILanguageRes;
70
78
  }
@@ -2,6 +2,7 @@ import { IControlAttribute } from './icontrol-attribute';
2
2
  import { IControlLogic } from './icontrol-logic';
3
3
  import { IControlRender } from './icontrol-render';
4
4
  import { IRawItemParam } from './iraw-item-param';
5
+ import { ILanguageRes } from '../res/ilanguage-res';
5
6
  import { ISysCss } from '../res/isys-css';
6
7
  import { IModelObject } from '../imodel-object';
7
8
  /**
@@ -85,6 +86,19 @@ export interface IRawItemBase extends IModelObject {
85
86
  * 来源 getRawItemWidth
86
87
  */
87
88
  rawItemWidth?: number;
89
+ /**
90
+ * 操作提示信息
91
+ * @type {string}
92
+ * 来源 getTooltip
93
+ */
94
+ tooltip?: string;
95
+ /**
96
+ * 操作提示语言资源
97
+ *
98
+ * @type {ILanguageRes}
99
+ * 来源 getTooltipPSLanguageRes
100
+ */
101
+ tooltipLanguageRes?: ILanguageRes;
88
102
  /**
89
103
  * 模板模式
90
104
  * @type {boolean}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.72",
3
+ "version": "0.1.73",
4
4
  "license": "MIT",
5
5
  "description": "iBiz网页端模型接口",
6
6
  "author": "iBiz",
@@ -1,5 +1,6 @@
1
1
  import { INavigateParamContainer } from '../inavigate-param-container';
2
2
  import { IDEFormDetail } from './ideform-detail';
3
+ import { ILanguageRes } from '../../res/ilanguage-res';
3
4
  import { IUIAction } from '../../view/iuiaction';
4
5
 
5
6
  /**
@@ -106,6 +107,14 @@ export interface IDEFormButton extends IDEFormDetail, INavigateParamContainer {
106
107
  */
107
108
  tooltip?: string;
108
109
 
110
+ /**
111
+ * 操作提示语言资源
112
+ *
113
+ * @type {ILanguageRes}
114
+ * 来源 getTooltipPSLanguageRes
115
+ */
116
+ tooltipLanguageRes?: ILanguageRes;
117
+
109
118
  /**
110
119
  * 界面行为操作目标
111
120
  * @description 值模式 [界面行为操作目标] {SINGLEDATA:单项数据、 SINGLEKEY:单项数据(主键)、 MULTIDATA:多项数据、 MULTIKEY:多项数据(主键)、 NONE:无数据 }
@@ -1,3 +1,4 @@
1
+ import { ILanguageRes } from '../res/ilanguage-res';
1
2
  import { IModelObject } from '../imodel-object';
2
3
 
3
4
  /**
@@ -87,4 +88,12 @@ export interface IButtonBase extends IModelObject {
87
88
  * 来源 getTooltip
88
89
  */
89
90
  tooltip?: string;
91
+
92
+ /**
93
+ * 操作提示语言资源
94
+ *
95
+ * @type {ILanguageRes}
96
+ * 来源 getTooltipPSLanguageRes
97
+ */
98
+ tooltipLanguageRes?: ILanguageRes;
90
99
  }
@@ -2,6 +2,7 @@ import { IControlAttribute } from './icontrol-attribute';
2
2
  import { IControlLogic } from './icontrol-logic';
3
3
  import { IControlRender } from './icontrol-render';
4
4
  import { IRawItemParam } from './iraw-item-param';
5
+ import { ILanguageRes } from '../res/ilanguage-res';
5
6
  import { ISysCss } from '../res/isys-css';
6
7
  import { IModelObject } from '../imodel-object';
7
8
 
@@ -97,6 +98,21 @@ export interface IRawItemBase extends IModelObject {
97
98
  */
98
99
  rawItemWidth?: number;
99
100
 
101
+ /**
102
+ * 操作提示信息
103
+ * @type {string}
104
+ * 来源 getTooltip
105
+ */
106
+ tooltip?: string;
107
+
108
+ /**
109
+ * 操作提示语言资源
110
+ *
111
+ * @type {ILanguageRes}
112
+ * 来源 getTooltipPSLanguageRes
113
+ */
114
+ tooltipLanguageRes?: ILanguageRes;
115
+
100
116
  /**
101
117
  * 模板模式
102
118
  * @type {boolean}