@ibiz/model-core 0.1.10 → 0.1.12
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 +15 -0
- package/out/app/dataentity/iapp-deuiaction-group.d.ts +7 -0
- package/out/app/iapplication.d.ts +40 -0
- package/out/app/view/iapp-deedit-view.d.ts +1 -1
- package/out/control/counter/isys-counter.d.ts +8 -2
- package/out/control/form/ideedit-form.d.ts +7 -0
- package/out/control/form/ideform-detail.d.ts +21 -0
- package/package.json +1 -1
- package/src/app/dataentity/iapp-deuiaction-group.ts +8 -0
- package/src/app/iapplication.ts +45 -0
- package/src/app/view/iapp-deedit-view.ts +1 -1
- package/src/control/counter/isys-counter.ts +9 -2
- package/src/control/form/ideedit-form.ts +8 -0
- package/src/control/form/ideform-detail.ts +24 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.1.12] - 2024-02-21
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- 系统计数器、应用计数器新增参数 navigateContexts、navigateParams、uniqueTag
|
|
15
|
+
- 实体界面行为组新增参数 appDataEntityId
|
|
16
|
+
- 编辑表单新增参数 appCounterRefId
|
|
17
|
+
- 表单新增参数 counterId、counterMode、appCounterRefId
|
|
18
|
+
|
|
19
|
+
## [0.1.11] - 2024-02-04
|
|
20
|
+
|
|
21
|
+
### Added
|
|
22
|
+
|
|
23
|
+
- IApplication 新增 bottomInfo、headerInfo、title、caption、subCaption
|
|
24
|
+
|
|
10
25
|
## [0.1.10] - 2024-02-04
|
|
11
26
|
|
|
12
27
|
### Added
|
|
@@ -5,6 +5,13 @@ import { IDEUIActionGroup } from '../../dataentity/uiaction/ideuiaction-group';
|
|
|
5
5
|
* @interface IAppDEUIActionGroup
|
|
6
6
|
*/
|
|
7
7
|
export interface IAppDEUIActionGroup extends IDEUIActionGroup {
|
|
8
|
+
/**
|
|
9
|
+
* 应用实体
|
|
10
|
+
*
|
|
11
|
+
* @type {string}
|
|
12
|
+
* 来源 getPSAppDataEntity
|
|
13
|
+
*/
|
|
14
|
+
appDataEntityId?: string;
|
|
8
15
|
/**
|
|
9
16
|
* 唯一标记
|
|
10
17
|
* @type {string}
|
|
@@ -300,4 +300,44 @@ export interface IApplication extends IModelObject {
|
|
|
300
300
|
* 来源 isWFAppMode
|
|
301
301
|
*/
|
|
302
302
|
wfappMode?: boolean;
|
|
303
|
+
/**
|
|
304
|
+
* 应用下方信息
|
|
305
|
+
*
|
|
306
|
+
* @author chitanda
|
|
307
|
+
* @date 2024-02-04 15:02:20
|
|
308
|
+
* @type {string}
|
|
309
|
+
*/
|
|
310
|
+
bottomInfo?: string;
|
|
311
|
+
/**
|
|
312
|
+
* 应用头部信息
|
|
313
|
+
*
|
|
314
|
+
* @author chitanda
|
|
315
|
+
* @date 2024-02-04 15:02:39
|
|
316
|
+
* @type {string}
|
|
317
|
+
*/
|
|
318
|
+
headerInfo?: string;
|
|
319
|
+
/**
|
|
320
|
+
* 应用抬头
|
|
321
|
+
*
|
|
322
|
+
* @author chitanda
|
|
323
|
+
* @date 2024-02-04 15:02:04
|
|
324
|
+
* @type {string}
|
|
325
|
+
*/
|
|
326
|
+
title?: string;
|
|
327
|
+
/**
|
|
328
|
+
* 应用标题
|
|
329
|
+
*
|
|
330
|
+
* @author chitanda
|
|
331
|
+
* @date 2024-02-04 15:02:20
|
|
332
|
+
* @type {string}
|
|
333
|
+
*/
|
|
334
|
+
caption?: string;
|
|
335
|
+
/**
|
|
336
|
+
* 应用子标题
|
|
337
|
+
*
|
|
338
|
+
* @author chitanda
|
|
339
|
+
* @date 2024-02-04 15:02:35
|
|
340
|
+
* @type {string}
|
|
341
|
+
*/
|
|
342
|
+
subCaption?: string;
|
|
303
343
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { INavigateParamContainer } from '../inavigate-param-container';
|
|
2
2
|
/**
|
|
3
3
|
*
|
|
4
4
|
* @export
|
|
5
5
|
* @interface ISysCounter
|
|
6
6
|
*/
|
|
7
|
-
export interface ISysCounter extends
|
|
7
|
+
export interface ISysCounter extends INavigateParamContainer {
|
|
8
8
|
/**
|
|
9
9
|
* 代码标识
|
|
10
10
|
* @type {string}
|
|
@@ -56,4 +56,10 @@ export interface ISysCounter extends IModelObject {
|
|
|
56
56
|
* 来源 getTimer
|
|
57
57
|
*/
|
|
58
58
|
timer?: number;
|
|
59
|
+
/**
|
|
60
|
+
* 计数器标记
|
|
61
|
+
* @type {string}
|
|
62
|
+
* 来源 getUniqueTag
|
|
63
|
+
*/
|
|
64
|
+
uniqueTag?: string;
|
|
59
65
|
}
|
|
@@ -43,6 +43,13 @@ export interface IDEEditForm extends IDEForm, ISDAjaxControl {
|
|
|
43
43
|
* 来源 getGetPSControlAction
|
|
44
44
|
*/
|
|
45
45
|
getControlAction?: IControlAction;
|
|
46
|
+
/**
|
|
47
|
+
* 应用计数器引用
|
|
48
|
+
*
|
|
49
|
+
* @type {string}
|
|
50
|
+
* 来源 getPSAppCounterRef
|
|
51
|
+
*/
|
|
52
|
+
appCounterRefId?: string;
|
|
46
53
|
/**
|
|
47
54
|
* 删除数据行为
|
|
48
55
|
*
|
|
@@ -52,6 +52,20 @@ export interface IDEFormDetail extends IControlItem {
|
|
|
52
52
|
* 来源 getContentWidth
|
|
53
53
|
*/
|
|
54
54
|
contentWidth?: number;
|
|
55
|
+
/**
|
|
56
|
+
* 计数器标识
|
|
57
|
+
* @type {string}
|
|
58
|
+
* 来源 getCounterId
|
|
59
|
+
*/
|
|
60
|
+
counterId?: string;
|
|
61
|
+
/**
|
|
62
|
+
* 计数器模式
|
|
63
|
+
* @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
|
|
64
|
+
* @type {( number | 0 | 1)}
|
|
65
|
+
* @default 0
|
|
66
|
+
* 来源 getCounterMode
|
|
67
|
+
*/
|
|
68
|
+
counterMode?: number | 0 | 1;
|
|
55
69
|
/**
|
|
56
70
|
* 成员直接样式
|
|
57
71
|
* @type {string}
|
|
@@ -104,6 +118,13 @@ export interface IDEFormDetail extends IControlItem {
|
|
|
104
118
|
* 来源 getLabelPSSysCss
|
|
105
119
|
*/
|
|
106
120
|
labelSysCss?: ISysCss;
|
|
121
|
+
/**
|
|
122
|
+
* 应用计数器引用
|
|
123
|
+
*
|
|
124
|
+
* @type {string}
|
|
125
|
+
* 来源 getPSAppCounterRef
|
|
126
|
+
*/
|
|
127
|
+
appCounterRefId?: string;
|
|
107
128
|
/**
|
|
108
129
|
* 表单成员动态逻辑
|
|
109
130
|
*
|
package/package.json
CHANGED
|
@@ -6,6 +6,14 @@ import { IDEUIActionGroup } from '../../dataentity/uiaction/ideuiaction-group';
|
|
|
6
6
|
* @interface IAppDEUIActionGroup
|
|
7
7
|
*/
|
|
8
8
|
export interface IAppDEUIActionGroup extends IDEUIActionGroup {
|
|
9
|
+
/**
|
|
10
|
+
* 应用实体
|
|
11
|
+
*
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getPSAppDataEntity
|
|
14
|
+
*/
|
|
15
|
+
appDataEntityId?: string;
|
|
16
|
+
|
|
9
17
|
/**
|
|
10
18
|
* 唯一标记
|
|
11
19
|
* @type {string}
|
package/src/app/iapplication.ts
CHANGED
|
@@ -351,4 +351,49 @@ export interface IApplication extends IModelObject {
|
|
|
351
351
|
* 来源 isWFAppMode
|
|
352
352
|
*/
|
|
353
353
|
wfappMode?: boolean;
|
|
354
|
+
|
|
355
|
+
/**
|
|
356
|
+
* 应用下方信息
|
|
357
|
+
*
|
|
358
|
+
* @author chitanda
|
|
359
|
+
* @date 2024-02-04 15:02:20
|
|
360
|
+
* @type {string}
|
|
361
|
+
*/
|
|
362
|
+
bottomInfo?: string;
|
|
363
|
+
|
|
364
|
+
/**
|
|
365
|
+
* 应用头部信息
|
|
366
|
+
*
|
|
367
|
+
* @author chitanda
|
|
368
|
+
* @date 2024-02-04 15:02:39
|
|
369
|
+
* @type {string}
|
|
370
|
+
*/
|
|
371
|
+
headerInfo?: string;
|
|
372
|
+
|
|
373
|
+
/**
|
|
374
|
+
* 应用抬头
|
|
375
|
+
*
|
|
376
|
+
* @author chitanda
|
|
377
|
+
* @date 2024-02-04 15:02:04
|
|
378
|
+
* @type {string}
|
|
379
|
+
*/
|
|
380
|
+
title?: string;
|
|
381
|
+
|
|
382
|
+
/**
|
|
383
|
+
* 应用标题
|
|
384
|
+
*
|
|
385
|
+
* @author chitanda
|
|
386
|
+
* @date 2024-02-04 15:02:20
|
|
387
|
+
* @type {string}
|
|
388
|
+
*/
|
|
389
|
+
caption?: string;
|
|
390
|
+
|
|
391
|
+
/**
|
|
392
|
+
* 应用子标题
|
|
393
|
+
*
|
|
394
|
+
* @author chitanda
|
|
395
|
+
* @date 2024-02-04 15:02:35
|
|
396
|
+
* @type {string}
|
|
397
|
+
*/
|
|
398
|
+
subCaption?: string;
|
|
354
399
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { INavigateParamContainer } from '../inavigate-param-container';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
*
|
|
5
5
|
* @export
|
|
6
6
|
* @interface ISysCounter
|
|
7
7
|
*/
|
|
8
|
-
export interface ISysCounter extends
|
|
8
|
+
export interface ISysCounter extends INavigateParamContainer {
|
|
9
9
|
/**
|
|
10
10
|
* 代码标识
|
|
11
11
|
* @type {string}
|
|
@@ -64,4 +64,11 @@ export interface ISysCounter extends IModelObject {
|
|
|
64
64
|
* 来源 getTimer
|
|
65
65
|
*/
|
|
66
66
|
timer?: number;
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* 计数器标记
|
|
70
|
+
* @type {string}
|
|
71
|
+
* 来源 getUniqueTag
|
|
72
|
+
*/
|
|
73
|
+
uniqueTag?: string;
|
|
67
74
|
}
|
|
@@ -59,6 +59,22 @@ export interface IDEFormDetail extends IControlItem {
|
|
|
59
59
|
*/
|
|
60
60
|
contentWidth?: number;
|
|
61
61
|
|
|
62
|
+
/**
|
|
63
|
+
* 计数器标识
|
|
64
|
+
* @type {string}
|
|
65
|
+
* 来源 getCounterId
|
|
66
|
+
*/
|
|
67
|
+
counterId?: string;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* 计数器模式
|
|
71
|
+
* @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
|
|
72
|
+
* @type {( number | 0 | 1)}
|
|
73
|
+
* @default 0
|
|
74
|
+
* 来源 getCounterMode
|
|
75
|
+
*/
|
|
76
|
+
counterMode?: number | 0 | 1;
|
|
77
|
+
|
|
62
78
|
/**
|
|
63
79
|
* 成员直接样式
|
|
64
80
|
* @type {string}
|
|
@@ -133,6 +149,14 @@ export interface IDEFormDetail extends IControlItem {
|
|
|
133
149
|
*/
|
|
134
150
|
labelSysCss?: ISysCss;
|
|
135
151
|
|
|
152
|
+
/**
|
|
153
|
+
* 应用计数器引用
|
|
154
|
+
*
|
|
155
|
+
* @type {string}
|
|
156
|
+
* 来源 getPSAppCounterRef
|
|
157
|
+
*/
|
|
158
|
+
appCounterRefId?: string;
|
|
159
|
+
|
|
136
160
|
/**
|
|
137
161
|
* 表单成员动态逻辑
|
|
138
162
|
*
|