@ibiz/model-core 0.0.16 → 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 CHANGED
@@ -7,6 +7,12 @@
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.0.17] - 2023-09-18
11
+
12
+ ### Added
13
+
14
+ - 新增 IUnkownItem 直接内容解释接口
15
+
10
16
  ## [0.0.16] - 2023-09-11
11
17
 
12
18
  ### Added
@@ -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
  }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -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
  }
@@ -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';