@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.
- package/out/control/toolbar/idetoolbar-item.d.ts +14 -0
- package/out/view/iuiaction.d.ts +6 -0
- package/package.json +1 -1
- package/src/control/toolbar/idetoolbar-item.ts +16 -0
- package/src/dataentity/datamap/idemap-action.ts +1 -1
- package/src/dataentity/datamap/idemap-data-set.ts +1 -1
- package/src/view/iuiaction.ts +7 -0
|
@@ -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}
|
package/out/view/iuiaction.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -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}
|
package/src/view/iuiaction.ts
CHANGED