@ibiz/model-core 0.0.15 → 0.0.17
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 +12 -0
- package/out/app/view/iapp-view.d.ts +1 -1
- package/out/control/editor/icode.d.ts +14 -0
- package/out/control/editor/iraw.d.ts +6 -0
- package/out/control/form/ideform-druipart.d.ts +22 -0
- package/out/control/rawitem/iunkown-item.d.ts +28 -0
- package/out/control/rawitem/iunkown-item.js +1 -0
- package/out/exports.d.ts +1 -0
- package/package.json +1 -1
- package/src/app/view/iapp-view.ts +1 -1
- package/src/control/editor/icode.ts +16 -0
- package/src/control/editor/iraw.ts +7 -0
- package/src/control/form/ideform-druipart.ts +25 -0
- package/src/control/rawitem/iunkown-item.ts +31 -0
- package/src/exports.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -65,7 +65,7 @@ export interface IAppView extends IControlContainer {
|
|
|
65
65
|
mainMenuAlign?: string | 'LEFT' | 'TOP' | 'CENTER' | 'TREEEXP' | 'TABEXP_TOP' | 'TABEXP_LEFT' | 'TABEXP_BOTTOM' | 'TABEXP_RIGHT' | 'NONE';
|
|
66
66
|
/**
|
|
67
67
|
* 默认打开模式
|
|
68
|
-
* @description 值模式 [云实体视图打开方式] {INDEXVIEWTAB:顶级容器分页、 POPUP:非模式弹出、 POPUPMODAL:模式弹出、 POPUPAPP:独立程序弹出、 DRAWER_LEFT:模态左侧抽屉弹出、 DRAWER_RIGHT:模态右侧抽屉弹出、 DRAWER_TOP:模态上方抽屉弹出、 DRAWER_BOTTOM
|
|
68
|
+
* @description 值模式 [云实体视图打开方式] {INDEXVIEWTAB:顶级容器分页、 POPUP:非模式弹出、 POPUPMODAL:模式弹出、 POPUPAPP:独立程序弹出、 DRAWER_LEFT:模态左侧抽屉弹出、 DRAWER_RIGHT:模态右侧抽屉弹出、 DRAWER_TOP:模态上方抽屉弹出、 DRAWER_BOTTOM:模态下方抽屉弹出、 POPOVER:气泡卡片、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
|
|
69
69
|
* @type {( string | 'INDEXVIEWTAB' | 'POPUP' | 'POPUPMODAL' | 'POPUPAPP' | 'DRAWER_LEFT' | 'DRAWER_RIGHT' | 'DRAWER_TOP' | 'DRAWER_BOTTOM' | 'POPOVER' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
|
|
70
70
|
* 来源 getOpenMode
|
|
71
71
|
*/
|
|
@@ -12,4 +12,18 @@ export interface ICode extends ITextEditor {
|
|
|
12
12
|
* 来源 getCodeType
|
|
13
13
|
*/
|
|
14
14
|
codeType?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 启用全屏[FULLSCREEN]
|
|
17
|
+
* @type {boolean}
|
|
18
|
+
* @default false
|
|
19
|
+
* 来源 isEnableFullScreen
|
|
20
|
+
*/
|
|
21
|
+
enableFullScreen?: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* 启用缩略图[MINIMAP]
|
|
24
|
+
* @type {boolean}
|
|
25
|
+
* @default false
|
|
26
|
+
* 来源 isEnableMinimap
|
|
27
|
+
*/
|
|
28
|
+
enableMinimap?: boolean;
|
|
15
29
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { INavigateParamContainer } from '../inavigate-param-container';
|
|
2
2
|
import { IDEFormDetail } from './ideform-detail';
|
|
3
|
+
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
/**
|
|
4
5
|
*
|
|
5
6
|
* 继承父接口类型值[DRUIPART]
|
|
@@ -7,6 +8,27 @@ import { IDEFormDetail } from './ideform-detail';
|
|
|
7
8
|
* @interface IDEFormDRUIPart
|
|
8
9
|
*/
|
|
9
10
|
export interface IDEFormDRUIPart extends IDEFormDetail, INavigateParamContainer {
|
|
11
|
+
/**
|
|
12
|
+
* 自定义遮罩信息
|
|
13
|
+
* @type {string}
|
|
14
|
+
* 来源 getMaskInfo
|
|
15
|
+
*/
|
|
16
|
+
maskInfo?: string;
|
|
17
|
+
/**
|
|
18
|
+
* 遮罩模式
|
|
19
|
+
* @description 值模式 [表单多数据部件遮罩模式] {-1:自动判断、 0:不显示、 1:新建数据时遮盖 }
|
|
20
|
+
* @type {( number | -1 | 0 | 1)}
|
|
21
|
+
* @default -1
|
|
22
|
+
* 来源 getMaskMode
|
|
23
|
+
*/
|
|
24
|
+
maskMode?: number | -1 | 0 | 1;
|
|
25
|
+
/**
|
|
26
|
+
* 遮罩信息语言资源
|
|
27
|
+
*
|
|
28
|
+
* @type {ILanguageRes}
|
|
29
|
+
* 来源 getMaskPSLanguageRes
|
|
30
|
+
*/
|
|
31
|
+
maskLanguageRes?: ILanguageRes;
|
|
10
32
|
/**
|
|
11
33
|
* 嵌入视图
|
|
12
34
|
*
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { IRawItemBase } from '../iraw-item-base';
|
|
2
|
+
import { ISysImage } from '../../res/isys-image';
|
|
3
|
+
/**
|
|
4
|
+
*
|
|
5
|
+
* @export
|
|
6
|
+
* @interface IUnkownItem
|
|
7
|
+
*/
|
|
8
|
+
export interface IUnkownItem extends IRawItemBase {
|
|
9
|
+
/**
|
|
10
|
+
* Html内容
|
|
11
|
+
* @type {string}
|
|
12
|
+
* 来源 getHtmlContent
|
|
13
|
+
*/
|
|
14
|
+
htmlContent?: string;
|
|
15
|
+
/**
|
|
16
|
+
* 图片对象
|
|
17
|
+
*
|
|
18
|
+
* @type {ISysImage}
|
|
19
|
+
* 来源 getPSSysImage
|
|
20
|
+
*/
|
|
21
|
+
sysImage?: ISysImage;
|
|
22
|
+
/**
|
|
23
|
+
* 直接内容
|
|
24
|
+
* @type {string}
|
|
25
|
+
* 来源 getRawContent
|
|
26
|
+
*/
|
|
27
|
+
rawContent?: string;
|
|
28
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/out/exports.d.ts
CHANGED
|
@@ -537,6 +537,7 @@ export { IImageItem } from './control/rawitem/iimage-item';
|
|
|
537
537
|
export { IMarkdownItem } from './control/rawitem/imarkdown-item';
|
|
538
538
|
export { IPlaceholderItem } from './control/rawitem/iplaceholder-item';
|
|
539
539
|
export { ITextItem } from './control/rawitem/itext-item';
|
|
540
|
+
export { IUnkownItem } from './control/rawitem/iunkown-item';
|
|
540
541
|
export { IVideoItem } from './control/rawitem/ivideo-item';
|
|
541
542
|
export { IDEReportPanel } from './control/reportpanel/idereport-panel';
|
|
542
543
|
export { ISearchBar } from './control/searchbar/isearch-bar';
|
package/package.json
CHANGED
|
@@ -83,7 +83,7 @@ export interface IAppView extends IControlContainer {
|
|
|
83
83
|
|
|
84
84
|
/**
|
|
85
85
|
* 默认打开模式
|
|
86
|
-
* @description 值模式 [云实体视图打开方式] {INDEXVIEWTAB:顶级容器分页、 POPUP:非模式弹出、 POPUPMODAL:模式弹出、 POPUPAPP:独立程序弹出、 DRAWER_LEFT:模态左侧抽屉弹出、 DRAWER_RIGHT:模态右侧抽屉弹出、 DRAWER_TOP:模态上方抽屉弹出、 DRAWER_BOTTOM
|
|
86
|
+
* @description 值模式 [云实体视图打开方式] {INDEXVIEWTAB:顶级容器分页、 POPUP:非模式弹出、 POPUPMODAL:模式弹出、 POPUPAPP:独立程序弹出、 DRAWER_LEFT:模态左侧抽屉弹出、 DRAWER_RIGHT:模态右侧抽屉弹出、 DRAWER_TOP:模态上方抽屉弹出、 DRAWER_BOTTOM:模态下方抽屉弹出、 POPOVER:气泡卡片、 USER:用户自定义、 USER2:用户自定义2、 USER3:用户自定义3、 USER4:用户自定义4 }
|
|
87
87
|
* @type {( string | 'INDEXVIEWTAB' | 'POPUP' | 'POPUPMODAL' | 'POPUPAPP' | 'DRAWER_LEFT' | 'DRAWER_RIGHT' | 'DRAWER_TOP' | 'DRAWER_BOTTOM' | 'POPOVER' | 'USER' | 'USER2' | 'USER3' | 'USER4')}
|
|
88
88
|
* 来源 getOpenMode
|
|
89
89
|
*/
|
|
@@ -13,4 +13,20 @@ export interface ICode extends ITextEditor {
|
|
|
13
13
|
* 来源 getCodeType
|
|
14
14
|
*/
|
|
15
15
|
codeType?: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 启用全屏[FULLSCREEN]
|
|
19
|
+
* @type {boolean}
|
|
20
|
+
* @default false
|
|
21
|
+
* 来源 isEnableFullScreen
|
|
22
|
+
*/
|
|
23
|
+
enableFullScreen?: boolean;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 启用缩略图[MINIMAP]
|
|
27
|
+
* @type {boolean}
|
|
28
|
+
* @default false
|
|
29
|
+
* 来源 isEnableMinimap
|
|
30
|
+
*/
|
|
31
|
+
enableMinimap?: boolean;
|
|
16
32
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { INavigateParamContainer } from '../inavigate-param-container';
|
|
2
2
|
import { IDEFormDetail } from './ideform-detail';
|
|
3
|
+
import { ILanguageRes } from '../../res/ilanguage-res';
|
|
3
4
|
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
@@ -10,6 +11,30 @@ import { IDEFormDetail } from './ideform-detail';
|
|
|
10
11
|
export interface IDEFormDRUIPart
|
|
11
12
|
extends IDEFormDetail,
|
|
12
13
|
INavigateParamContainer {
|
|
14
|
+
/**
|
|
15
|
+
* 自定义遮罩信息
|
|
16
|
+
* @type {string}
|
|
17
|
+
* 来源 getMaskInfo
|
|
18
|
+
*/
|
|
19
|
+
maskInfo?: string;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* 遮罩模式
|
|
23
|
+
* @description 值模式 [表单多数据部件遮罩模式] {-1:自动判断、 0:不显示、 1:新建数据时遮盖 }
|
|
24
|
+
* @type {( number | -1 | 0 | 1)}
|
|
25
|
+
* @default -1
|
|
26
|
+
* 来源 getMaskMode
|
|
27
|
+
*/
|
|
28
|
+
maskMode?: number | -1 | 0 | 1;
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 遮罩信息语言资源
|
|
32
|
+
*
|
|
33
|
+
* @type {ILanguageRes}
|
|
34
|
+
* 来源 getMaskPSLanguageRes
|
|
35
|
+
*/
|
|
36
|
+
maskLanguageRes?: ILanguageRes;
|
|
37
|
+
|
|
13
38
|
/**
|
|
14
39
|
* 嵌入视图
|
|
15
40
|
*
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { IRawItemBase } from '../iraw-item-base';
|
|
2
|
+
import { ISysImage } from '../../res/isys-image';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
* @export
|
|
7
|
+
* @interface IUnkownItem
|
|
8
|
+
*/
|
|
9
|
+
export interface IUnkownItem extends IRawItemBase {
|
|
10
|
+
/**
|
|
11
|
+
* Html内容
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getHtmlContent
|
|
14
|
+
*/
|
|
15
|
+
htmlContent?: string;
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* 图片对象
|
|
19
|
+
*
|
|
20
|
+
* @type {ISysImage}
|
|
21
|
+
* 来源 getPSSysImage
|
|
22
|
+
*/
|
|
23
|
+
sysImage?: ISysImage;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* 直接内容
|
|
27
|
+
* @type {string}
|
|
28
|
+
* 来源 getRawContent
|
|
29
|
+
*/
|
|
30
|
+
rawContent?: string;
|
|
31
|
+
}
|
package/src/exports.ts
CHANGED
|
@@ -537,6 +537,7 @@ export { IImageItem } from './control/rawitem/iimage-item';
|
|
|
537
537
|
export { IMarkdownItem } from './control/rawitem/imarkdown-item';
|
|
538
538
|
export { IPlaceholderItem } from './control/rawitem/iplaceholder-item';
|
|
539
539
|
export { ITextItem } from './control/rawitem/itext-item';
|
|
540
|
+
export { IUnkownItem } from './control/rawitem/iunkown-item';
|
|
540
541
|
export { IVideoItem } from './control/rawitem/ivideo-item';
|
|
541
542
|
export { IDEReportPanel } from './control/reportpanel/idereport-panel';
|
|
542
543
|
export { ISearchBar } from './control/searchbar/isearch-bar';
|