@ibiz/model-core 0.1.62 → 0.1.63

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.
@@ -22,6 +22,20 @@ export interface IDEToolbarItem extends IControlItem {
22
22
  * 来源 getCaption
23
23
  */
24
24
  caption?: string;
25
+ /**
26
+ * 计数器标识
27
+ * @type {string}
28
+ * 来源 getCounterId
29
+ */
30
+ counterId?: string;
31
+ /**
32
+ * 计数器模式
33
+ * @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
34
+ * @type {( number | 0 | 1)}
35
+ * @default 0
36
+ * 来源 getCounterMode
37
+ */
38
+ counterMode?: number | 0 | 1;
25
39
  /**
26
40
  * 项直接样式
27
41
  * @type {string}
@@ -54,6 +54,12 @@ export interface IUIAction extends INavigateParamContainer {
54
54
  * 来源 getConfirmMsg
55
55
  */
56
56
  confirmMsg?: string;
57
+ /**
58
+ * 计数项标识
59
+ * @type {string}
60
+ * 来源 getCounterId
61
+ */
62
+ counterId?: string;
57
63
  /**
58
64
  * 数据访问权限
59
65
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.62",
3
+ "version": "0.1.63",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -25,6 +25,22 @@ export interface IDEToolbarItem extends IControlItem {
25
25
  */
26
26
  caption?: string;
27
27
 
28
+ /**
29
+ * 计数器标识
30
+ * @type {string}
31
+ * 来源 getCounterId
32
+ */
33
+ counterId?: string;
34
+
35
+ /**
36
+ * 计数器模式
37
+ * @description 值模式 [树节点计数器类型] {0:默认、 1:0 值时隐藏 }
38
+ * @type {( number | 0 | 1)}
39
+ * @default 0
40
+ * 来源 getCounterMode
41
+ */
42
+ counterMode?: number | 0 | 1;
43
+
28
44
  /**
29
45
  * 项直接样式
30
46
  * @type {string}
@@ -5,4 +5,4 @@ import { IModelObject } from '../../imodel-object';
5
5
  * @export
6
6
  * @interface IDEMapAction
7
7
  */
8
- export type IDEMapAction = IModelObject
8
+ export type IDEMapAction = IModelObject;
@@ -5,4 +5,4 @@ import { IModelObject } from '../../imodel-object';
5
5
  * @export
6
6
  * @interface IDEMapDataSet
7
7
  */
8
- export type IDEMapDataSet = IModelObject
8
+ export type IDEMapDataSet = IModelObject;
@@ -68,6 +68,13 @@ export interface IUIAction extends INavigateParamContainer {
68
68
  */
69
69
  confirmMsg?: string;
70
70
 
71
+ /**
72
+ * 计数项标识
73
+ * @type {string}
74
+ * 来源 getCounterId
75
+ */
76
+ counterId?: string;
77
+
71
78
  /**
72
79
  * 数据访问权限
73
80
  * @type {string}