@ibiz/model-core 0.1.11 → 0.1.13

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/out/app/dataentity/iapp-deuiaction-group.d.ts +7 -0
  3. package/out/app/iapplication.d.ts +7 -40
  4. package/out/app/view/iapp-deedit-view.d.ts +1 -1
  5. package/out/app/view/iapp-detree-grid-view.d.ts +24 -1
  6. package/out/app/view/iapp-view-logic.d.ts +7 -0
  7. package/out/control/counter/isys-counter.d.ts +8 -2
  8. package/out/control/form/ideedit-form.d.ts +7 -0
  9. package/out/control/form/ideform-button-list.d.ts +24 -0
  10. package/out/control/form/ideform-button-list.js +1 -0
  11. package/out/control/form/ideform-detail.d.ts +21 -0
  12. package/out/control/panel/ipanel-button-list.d.ts +25 -0
  13. package/out/control/panel/ipanel-button-list.js +1 -0
  14. package/out/control/panel/ipanel-container.d.ts +16 -0
  15. package/out/control/panel/isys-panel-button-list.d.ts +10 -0
  16. package/out/control/panel/isys-panel-button-list.js +1 -0
  17. package/out/exports.d.ts +3 -0
  18. package/package.json +1 -1
  19. package/src/app/dataentity/iapp-deuiaction-group.ts +8 -0
  20. package/src/app/iapplication.ts +14 -45
  21. package/src/app/view/iapp-deedit-view.ts +1 -1
  22. package/src/app/view/iapp-detree-grid-view.ts +26 -1
  23. package/src/app/view/iapp-view-logic.ts +8 -0
  24. package/src/control/counter/isys-counter.ts +9 -2
  25. package/src/control/form/ideedit-form.ts +8 -0
  26. package/src/control/form/ideform-button-list.ts +26 -0
  27. package/src/control/form/ideform-detail.ts +24 -0
  28. package/src/control/panel/ipanel-button-list.ts +27 -0
  29. package/src/control/panel/ipanel-container.ts +18 -0
  30. package/src/control/panel/isys-panel-button-list.ts +10 -0
  31. package/src/exports.ts +3 -0
package/CHANGELOG.md CHANGED
@@ -7,6 +7,23 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.1.13] - 2024-02-27
11
+
12
+ ### Added
13
+
14
+ - IAppDETreeGridView 新增参数 gridRowActiveMode、enableRowEdit、rowEditDefault
15
+ - IAppViewLogic 新增参数 appDEUIActionId
16
+ - 面板容器支持定义行为组展开模式,表单、面板支持按钮列表元素
17
+
18
+ ## [0.1.12] - 2024-02-21
19
+
20
+ ### Added
21
+
22
+ - 系统计数器、应用计数器新增参数 navigateContexts、navigateParams、uniqueTag
23
+ - 实体界面行为组新增参数 appDataEntityId
24
+ - 编辑表单新增参数 appCounterRefId
25
+ - 表单新增参数 counterId、counterMode、appCounterRefId
26
+
10
27
  ## [0.1.11] - 2024-02-04
11
28
 
12
29
  ### 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}
@@ -205,6 +205,13 @@ export interface IApplication extends IModelObject {
205
205
  * 来源 getCodeName
206
206
  */
207
207
  codeName?: string;
208
+ /**
209
+ * 模型代码标识模式
210
+ * @description 值模式 [代码标识格式] {LOWER_UNDERSCORE:小写(下划线分隔)、 UPPER_UNDERSCORE:大写(下划线分隔)、 LOWER_CAMEL:驼峰(首字母小写)、 UPPER_CAMEL:驼峰(首字母大写)、 LOWER_HYPHEN:小写(中划线分隔) }
211
+ * @type {( string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER_HYPHEN')}
212
+ * 来源 getCodeNameMode
213
+ */
214
+ codeNameMode?: string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER_HYPHEN';
208
215
  /**
209
216
  * 默认对象存储分类
210
217
  * @type {string}
@@ -300,44 +307,4 @@ export interface IApplication extends IModelObject {
300
307
  * 来源 isWFAppMode
301
308
  */
302
309
  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;
343
310
  }
@@ -26,7 +26,7 @@ export interface IAppDEEditView extends IAppDEView, IAppDataRelationView, IAppDE
26
26
  /**
27
27
  * 启用脏检查
28
28
  * @type {boolean}
29
- * @default false
29
+ * @default true
30
30
  * 来源 isEnableDirtyChecking
31
31
  */
32
32
  enableDirtyChecking?: boolean;
@@ -5,4 +5,27 @@ import { IAppDEMultiDataView } from './iapp-demulti-data-view';
5
5
  * @export
6
6
  * @interface IAppDETreeGridView
7
7
  */
8
- export type IAppDETreeGridView = IAppDEMultiDataView;
8
+ export interface IAppDETreeGridView extends IAppDEMultiDataView {
9
+ /**
10
+ * 表格行激活模式
11
+ * @description 值模式 [应用表格数据激活模式] {0:无、 1:单击、 2:双击 }
12
+ * @type {( number | 0 | 1 | 2)}
13
+ * @default 2
14
+ * 来源 getGridRowActiveMode
15
+ */
16
+ gridRowActiveMode?: number | 0 | 1 | 2;
17
+ /**
18
+ * 支持行编辑
19
+ * @type {boolean}
20
+ * @default false
21
+ * 来源 isEnableRowEdit
22
+ */
23
+ enableRowEdit?: boolean;
24
+ /**
25
+ * 视图默认进入行编辑
26
+ * @type {boolean}
27
+ * @default false
28
+ * 来源 isRowEditDefault
29
+ */
30
+ rowEditDefault?: boolean;
31
+ }
@@ -72,6 +72,13 @@ export interface IAppViewLogic extends IModelObject {
72
72
  * 来源 getOwner
73
73
  */
74
74
  owner?: IModel;
75
+ /**
76
+ * 应用实体界面行为对象
77
+ *
78
+ * @type {string}
79
+ * 来源 getPSAppDEUIAction
80
+ */
81
+ appDEUIActionId?: string;
75
82
  /**
76
83
  * 应用实体界面逻辑对象
77
84
  *
@@ -1,10 +1,10 @@
1
- import { IModelObject } from '../../imodel-object';
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 IModelObject {
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
  *
@@ -0,0 +1,24 @@
1
+ import { IDEFormDetail } from './ideform-detail';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
3
+ /**
4
+ *
5
+ * 继承父接口类型值[BUTTONLIST]
6
+ * @export
7
+ * @interface IDEFormButtonList
8
+ */
9
+ export interface IDEFormButtonList extends IDEFormDetail {
10
+ /**
11
+ * 界面行为组展开模式
12
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
13
+ * @type {( string | 'ITEM' | 'ITEMS')}
14
+ * 来源 getActionGroupExtractMode
15
+ */
16
+ actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
17
+ /**
18
+ * 界面行为组对象
19
+ *
20
+ * @type {IUIActionGroup}
21
+ * 来源 getPSUIActionGroup
22
+ */
23
+ uiactionGroup?: IUIActionGroup;
24
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -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
  *
@@ -0,0 +1,25 @@
1
+ import { IPanelItem } from './ipanel-item';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
3
+ /**
4
+ *
5
+ * 继承父接口类型值[BUTTONLIST]
6
+ * @export
7
+ * @interface IPanelButtonList
8
+ */
9
+ export interface IPanelButtonList extends IPanelItem {
10
+ /**
11
+ * 界面行为组展开模式
12
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
13
+ * @type {( string | 'ITEM' | 'ITEMS')}
14
+ * @default ITEM
15
+ * 来源 getActionGroupExtractMode
16
+ */
17
+ actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
18
+ /**
19
+ * 界面行为组对象
20
+ *
21
+ * @type {IUIActionGroup}
22
+ * 来源 getPSUIActionGroup
23
+ */
24
+ uiactionGroup?: IUIActionGroup;
25
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -1,5 +1,6 @@
1
1
  import { IPanelDataRegion } from './ipanel-data-region';
2
2
  import { IPanelItem } from './ipanel-item';
3
+ import { IUIActionGroup } from '../../view/iuiaction-group';
3
4
  /**
4
5
  *
5
6
  * 继承父接口类型值[CONTAINER]
@@ -7,6 +8,14 @@ import { IPanelItem } from './ipanel-item';
7
8
  * @interface IPanelContainer
8
9
  */
9
10
  export interface IPanelContainer extends IPanelItem, IPanelDataRegion {
11
+ /**
12
+ * 界面行为组展开模式
13
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
14
+ * @type {( string | 'ITEM' | 'ITEMS')}
15
+ * @default ITEM
16
+ * 来源 getActionGroupExtractMode
17
+ */
18
+ actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
10
19
  /**
11
20
  * 动态标题绑定值项
12
21
  * @type {string}
@@ -20,6 +29,13 @@ export interface IPanelContainer extends IPanelItem, IPanelDataRegion {
20
29
  * 来源 getPSPanelItems
21
30
  */
22
31
  panelItems?: IPanelItem[];
32
+ /**
33
+ * 界面行为组对象
34
+ *
35
+ * @type {IUIActionGroup}
36
+ * 来源 getPSUIActionGroup
37
+ */
38
+ uiactionGroup?: IUIActionGroup;
23
39
  /**
24
40
  * 预置类型
25
41
  * @type {string}
@@ -0,0 +1,10 @@
1
+ import { IPanelButtonList } from './ipanel-button-list';
2
+ import { ISysPanelItem } from './isys-panel-item';
3
+ /**
4
+ *
5
+ * 继承父接口类型值[BUTTONLIST]
6
+ * @export
7
+ * @interface ISysPanelButtonList
8
+ */
9
+ export interface ISysPanelButtonList extends IPanelButtonList, ISysPanelItem {
10
+ }
@@ -0,0 +1 @@
1
+ export {};
package/out/exports.d.ts CHANGED
@@ -394,6 +394,7 @@ export { IDEFDSingleLogic } from './control/form/idefdsingle-logic';
394
394
  export { IDEFIUpdateDetail } from './control/form/idefiupdate-detail';
395
395
  export { IDEForm } from './control/form/ideform';
396
396
  export { IDEFormButton } from './control/form/ideform-button';
397
+ export { IDEFormButtonList } from './control/form/ideform-button-list';
397
398
  export { IDEFormDRUIPart } from './control/form/ideform-druipart';
398
399
  export { IDEFormDataItem } from './control/form/ideform-data-item';
399
400
  export { IDEFormDetail } from './control/form/ideform-detail';
@@ -500,6 +501,7 @@ export { IMenuItem } from './control/menu/imenu-item';
500
501
  export { ILayoutPanel } from './control/panel/ilayout-panel';
501
502
  export { IPanel } from './control/panel/ipanel';
502
503
  export { IPanelButton } from './control/panel/ipanel-button';
504
+ export { IPanelButtonList } from './control/panel/ipanel-button-list';
503
505
  export { IPanelContainer } from './control/panel/ipanel-container';
504
506
  export { IPanelControl } from './control/panel/ipanel-control';
505
507
  export { IPanelCtrlPos } from './control/panel/ipanel-ctrl-pos';
@@ -520,6 +522,7 @@ export { IPanelUserControl } from './control/panel/ipanel-user-control';
520
522
  export { ISysLayoutPanel } from './control/panel/isys-layout-panel';
521
523
  export { ISysPanel } from './control/panel/isys-panel';
522
524
  export { ISysPanelButton } from './control/panel/isys-panel-button';
525
+ export { ISysPanelButtonList } from './control/panel/isys-panel-button-list';
523
526
  export { ISysPanelContainer } from './control/panel/isys-panel-container';
524
527
  export { ISysPanelControl } from './control/panel/isys-panel-control';
525
528
  export { ISysPanelCtrlPos } from './control/panel/isys-panel-ctrl-pos';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -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}
@@ -242,6 +242,20 @@ export interface IApplication extends IModelObject {
242
242
  */
243
243
  codeName?: string;
244
244
 
245
+ /**
246
+ * 模型代码标识模式
247
+ * @description 值模式 [代码标识格式] {LOWER_UNDERSCORE:小写(下划线分隔)、 UPPER_UNDERSCORE:大写(下划线分隔)、 LOWER_CAMEL:驼峰(首字母小写)、 UPPER_CAMEL:驼峰(首字母大写)、 LOWER_HYPHEN:小写(中划线分隔) }
248
+ * @type {( string | 'LOWER_UNDERSCORE' | 'UPPER_UNDERSCORE' | 'LOWER_CAMEL' | 'UPPER_CAMEL' | 'LOWER_HYPHEN')}
249
+ * 来源 getCodeNameMode
250
+ */
251
+ codeNameMode?:
252
+ | string
253
+ | 'LOWER_UNDERSCORE'
254
+ | 'UPPER_UNDERSCORE'
255
+ | 'LOWER_CAMEL'
256
+ | 'UPPER_CAMEL'
257
+ | 'LOWER_HYPHEN';
258
+
245
259
  /**
246
260
  * 默认对象存储分类
247
261
  * @type {string}
@@ -351,49 +365,4 @@ export interface IApplication extends IModelObject {
351
365
  * 来源 isWFAppMode
352
366
  */
353
367
  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;
399
368
  }
@@ -37,7 +37,7 @@ export interface IAppDEEditView
37
37
  /**
38
38
  * 启用脏检查
39
39
  * @type {boolean}
40
- * @default false
40
+ * @default true
41
41
  * 来源 isEnableDirtyChecking
42
42
  */
43
43
  enableDirtyChecking?: boolean;
@@ -6,4 +6,29 @@ import { IAppDEMultiDataView } from './iapp-demulti-data-view';
6
6
  * @export
7
7
  * @interface IAppDETreeGridView
8
8
  */
9
- export type IAppDETreeGridView = IAppDEMultiDataView;
9
+ export interface IAppDETreeGridView extends IAppDEMultiDataView {
10
+ /**
11
+ * 表格行激活模式
12
+ * @description 值模式 [应用表格数据激活模式] {0:无、 1:单击、 2:双击 }
13
+ * @type {( number | 0 | 1 | 2)}
14
+ * @default 2
15
+ * 来源 getGridRowActiveMode
16
+ */
17
+ gridRowActiveMode?: number | 0 | 1 | 2;
18
+
19
+ /**
20
+ * 支持行编辑
21
+ * @type {boolean}
22
+ * @default false
23
+ * 来源 isEnableRowEdit
24
+ */
25
+ enableRowEdit?: boolean;
26
+
27
+ /**
28
+ * 视图默认进入行编辑
29
+ * @type {boolean}
30
+ * @default false
31
+ * 来源 isRowEditDefault
32
+ */
33
+ rowEditDefault?: boolean;
34
+ }
@@ -107,6 +107,14 @@ export interface IAppViewLogic extends IModelObject {
107
107
  */
108
108
  owner?: IModel;
109
109
 
110
+ /**
111
+ * 应用实体界面行为对象
112
+ *
113
+ * @type {string}
114
+ * 来源 getPSAppDEUIAction
115
+ */
116
+ appDEUIActionId?: string;
117
+
110
118
  /**
111
119
  * 应用实体界面逻辑对象
112
120
  *
@@ -1,11 +1,11 @@
1
- import { IModelObject } from '../../imodel-object';
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 IModelObject {
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
  }
@@ -49,6 +49,14 @@ export interface IDEEditForm extends IDEForm, ISDAjaxControl {
49
49
  */
50
50
  getControlAction?: IControlAction;
51
51
 
52
+ /**
53
+ * 应用计数器引用
54
+ *
55
+ * @type {string}
56
+ * 来源 getPSAppCounterRef
57
+ */
58
+ appCounterRefId?: string;
59
+
52
60
  /**
53
61
  * 删除数据行为
54
62
  *
@@ -0,0 +1,26 @@
1
+ import { IDEFormDetail } from './ideform-detail';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
3
+
4
+ /**
5
+ *
6
+ * 继承父接口类型值[BUTTONLIST]
7
+ * @export
8
+ * @interface IDEFormButtonList
9
+ */
10
+ export interface IDEFormButtonList extends IDEFormDetail {
11
+ /**
12
+ * 界面行为组展开模式
13
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
14
+ * @type {( string | 'ITEM' | 'ITEMS')}
15
+ * 来源 getActionGroupExtractMode
16
+ */
17
+ actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
18
+
19
+ /**
20
+ * 界面行为组对象
21
+ *
22
+ * @type {IUIActionGroup}
23
+ * 来源 getPSUIActionGroup
24
+ */
25
+ uiactionGroup?: IUIActionGroup;
26
+ }
@@ -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
  *
@@ -0,0 +1,27 @@
1
+ import { IPanelItem } from './ipanel-item';
2
+ import { IUIActionGroup } from '../../view/iuiaction-group';
3
+
4
+ /**
5
+ *
6
+ * 继承父接口类型值[BUTTONLIST]
7
+ * @export
8
+ * @interface IPanelButtonList
9
+ */
10
+ export interface IPanelButtonList extends IPanelItem {
11
+ /**
12
+ * 界面行为组展开模式
13
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
14
+ * @type {( string | 'ITEM' | 'ITEMS')}
15
+ * @default ITEM
16
+ * 来源 getActionGroupExtractMode
17
+ */
18
+ actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
19
+
20
+ /**
21
+ * 界面行为组对象
22
+ *
23
+ * @type {IUIActionGroup}
24
+ * 来源 getPSUIActionGroup
25
+ */
26
+ uiactionGroup?: IUIActionGroup;
27
+ }
@@ -1,5 +1,6 @@
1
1
  import { IPanelDataRegion } from './ipanel-data-region';
2
2
  import { IPanelItem } from './ipanel-item';
3
+ import { IUIActionGroup } from '../../view/iuiaction-group';
3
4
 
4
5
  /**
5
6
  *
@@ -8,6 +9,15 @@ import { IPanelItem } from './ipanel-item';
8
9
  * @interface IPanelContainer
9
10
  */
10
11
  export interface IPanelContainer extends IPanelItem, IPanelDataRegion {
12
+ /**
13
+ * 界面行为组展开模式
14
+ * @description 值模式 [界面行为组展开模式] {ITEM:按项展开(默认)、 ITEMS:按分组展开 }
15
+ * @type {( string | 'ITEM' | 'ITEMS')}
16
+ * @default ITEM
17
+ * 来源 getActionGroupExtractMode
18
+ */
19
+ actionGroupExtractMode?: string | 'ITEM' | 'ITEMS';
20
+
11
21
  /**
12
22
  * 动态标题绑定值项
13
23
  * @type {string}
@@ -23,6 +33,14 @@ export interface IPanelContainer extends IPanelItem, IPanelDataRegion {
23
33
  */
24
34
  panelItems?: IPanelItem[];
25
35
 
36
+ /**
37
+ * 界面行为组对象
38
+ *
39
+ * @type {IUIActionGroup}
40
+ * 来源 getPSUIActionGroup
41
+ */
42
+ uiactionGroup?: IUIActionGroup;
43
+
26
44
  /**
27
45
  * 预置类型
28
46
  * @type {string}
@@ -0,0 +1,10 @@
1
+ import { IPanelButtonList } from './ipanel-button-list';
2
+ import { ISysPanelItem } from './isys-panel-item';
3
+
4
+ /**
5
+ *
6
+ * 继承父接口类型值[BUTTONLIST]
7
+ * @export
8
+ * @interface ISysPanelButtonList
9
+ */
10
+ export interface ISysPanelButtonList extends IPanelButtonList, ISysPanelItem {}
package/src/exports.ts CHANGED
@@ -394,6 +394,7 @@ export { IDEFDSingleLogic } from './control/form/idefdsingle-logic';
394
394
  export { IDEFIUpdateDetail } from './control/form/idefiupdate-detail';
395
395
  export { IDEForm } from './control/form/ideform';
396
396
  export { IDEFormButton } from './control/form/ideform-button';
397
+ export { IDEFormButtonList } from './control/form/ideform-button-list';
397
398
  export { IDEFormDRUIPart } from './control/form/ideform-druipart';
398
399
  export { IDEFormDataItem } from './control/form/ideform-data-item';
399
400
  export { IDEFormDetail } from './control/form/ideform-detail';
@@ -500,6 +501,7 @@ export { IMenuItem } from './control/menu/imenu-item';
500
501
  export { ILayoutPanel } from './control/panel/ilayout-panel';
501
502
  export { IPanel } from './control/panel/ipanel';
502
503
  export { IPanelButton } from './control/panel/ipanel-button';
504
+ export { IPanelButtonList } from './control/panel/ipanel-button-list';
503
505
  export { IPanelContainer } from './control/panel/ipanel-container';
504
506
  export { IPanelControl } from './control/panel/ipanel-control';
505
507
  export { IPanelCtrlPos } from './control/panel/ipanel-ctrl-pos';
@@ -520,6 +522,7 @@ export { IPanelUserControl } from './control/panel/ipanel-user-control';
520
522
  export { ISysLayoutPanel } from './control/panel/isys-layout-panel';
521
523
  export { ISysPanel } from './control/panel/isys-panel';
522
524
  export { ISysPanelButton } from './control/panel/isys-panel-button';
525
+ export { ISysPanelButtonList } from './control/panel/isys-panel-button-list';
523
526
  export { ISysPanelContainer } from './control/panel/isys-panel-container';
524
527
  export { ISysPanelControl } from './control/panel/isys-panel-control';
525
528
  export { ISysPanelCtrlPos } from './control/panel/isys-panel-ctrl-pos';