@ibiz/model-core 0.1.33 → 0.1.34
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDEToolbarItem } from './idetoolbar-item';
|
|
2
|
+
import { IUIActionGroup } from '../../view/iuiaction-group';
|
|
2
3
|
/**
|
|
3
4
|
*
|
|
4
5
|
* 继承父接口类型值[ITEMS]
|
|
@@ -28,6 +29,13 @@ export interface IDETBGroupItem extends IDEToolbarItem {
|
|
|
28
29
|
* 来源 getButtonStyle
|
|
29
30
|
*/
|
|
30
31
|
buttonStyle?: string | 'DEFAULT' | 'INVERSE' | 'PRIMARY' | 'INFO' | 'SUCCESS' | 'WARNING' | 'DANGER' | 'STYLE2' | 'STYLE3' | 'STYLE4';
|
|
32
|
+
/**
|
|
33
|
+
* 界面行为组展开模式
|
|
34
|
+
* @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
|
|
35
|
+
* @type {( string | 'ITEM' | 'ITEMS')}
|
|
36
|
+
* 来源 getGroupExtractMode
|
|
37
|
+
*/
|
|
38
|
+
groupExtractMode?: string | 'ITEM' | 'ITEMS';
|
|
31
39
|
/**
|
|
32
40
|
* 子项集合
|
|
33
41
|
*
|
|
@@ -35,4 +43,11 @@ export interface IDETBGroupItem extends IDEToolbarItem {
|
|
|
35
43
|
* 来源 getPSDEToolbarItems
|
|
36
44
|
*/
|
|
37
45
|
detoolbarItems?: IDEToolbarItem[];
|
|
46
|
+
/**
|
|
47
|
+
* 界面行为组对象
|
|
48
|
+
*
|
|
49
|
+
* @type {IUIActionGroup}
|
|
50
|
+
* 来源 getPSUIActionGroup
|
|
51
|
+
*/
|
|
52
|
+
uiactionGroup?: IUIActionGroup;
|
|
38
53
|
}
|
package/package.json
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { IDEToolbarItem } from './idetoolbar-item';
|
|
2
|
+
import { IUIActionGroup } from '../../view/iuiaction-group';
|
|
2
3
|
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
@@ -43,6 +44,14 @@ export interface IDETBGroupItem extends IDEToolbarItem {
|
|
|
43
44
|
| 'STYLE3'
|
|
44
45
|
| 'STYLE4';
|
|
45
46
|
|
|
47
|
+
/**
|
|
48
|
+
* 界面行为组展开模式
|
|
49
|
+
* @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
|
|
50
|
+
* @type {( string | 'ITEM' | 'ITEMS')}
|
|
51
|
+
* 来源 getGroupExtractMode
|
|
52
|
+
*/
|
|
53
|
+
groupExtractMode?: string | 'ITEM' | 'ITEMS';
|
|
54
|
+
|
|
46
55
|
/**
|
|
47
56
|
* 子项集合
|
|
48
57
|
*
|
|
@@ -50,4 +59,12 @@ export interface IDETBGroupItem extends IDEToolbarItem {
|
|
|
50
59
|
* 来源 getPSDEToolbarItems
|
|
51
60
|
*/
|
|
52
61
|
detoolbarItems?: IDEToolbarItem[];
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* 界面行为组对象
|
|
65
|
+
*
|
|
66
|
+
* @type {IUIActionGroup}
|
|
67
|
+
* 来源 getPSUIActionGroup
|
|
68
|
+
*/
|
|
69
|
+
uiactionGroup?: IUIActionGroup;
|
|
53
70
|
}
|