@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 +6 -0
- package/out/control/form/ideform-button.d.ts +8 -0
- package/out/control/ibutton-base.d.ts +8 -0
- package/out/control/iraw-item-base.d.ts +14 -0
- package/package.json +1 -1
- package/src/control/form/ideform-button.ts +9 -0
- package/src/control/ibutton-base.ts +9 -0
- package/src/control/iraw-item-base.ts +16 -0
package/CHANGELOG.md
CHANGED
|
@@ -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,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}
|