@ibiz/model-core 0.1.4 → 0.1.5

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.1.5] - 2024-01-18
11
+
12
+ ### Added
13
+
14
+ - 代码表新增颜色属性相关内容
15
+
10
16
  ## [0.1.4] - 2024-01-18
11
17
 
12
18
  ### Added
@@ -5,6 +5,13 @@ import { ICodeList } from '../../codelist/icode-list';
5
5
  * @interface IAppCodeList
6
6
  */
7
7
  export interface IAppCodeList extends ICodeList {
8
+ /**
9
+ * 背景颜色值应用实体属性
10
+ *
11
+ * @type {string}
12
+ * 来源 getBKColorPSAppDEField
13
+ */
14
+ bkcolorAppDEFieldId?: string;
8
15
  /**
9
16
  * 开始值应用实体属性
10
17
  *
@@ -12,6 +19,20 @@ export interface IAppCodeList extends ICodeList {
12
19
  * 来源 getBeginValuePSAppDEField
13
20
  */
14
21
  beginValueAppDEFieldId?: string;
22
+ /**
23
+ * 样式表值应用实体属性
24
+ *
25
+ * @type {string}
26
+ * 来源 getClsPSAppDEField
27
+ */
28
+ clsAppDEFieldId?: string;
29
+ /**
30
+ * 前景颜色值应用实体属性
31
+ *
32
+ * @type {string}
33
+ * 来源 getColorPSAppDEField
34
+ */
35
+ colorAppDEFieldId?: string;
15
36
  /**
16
37
  * 数据应用实体属性
17
38
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -6,6 +6,14 @@ import { ICodeList } from '../../codelist/icode-list';
6
6
  * @interface IAppCodeList
7
7
  */
8
8
  export interface IAppCodeList extends ICodeList {
9
+ /**
10
+ * 背景颜色值应用实体属性
11
+ *
12
+ * @type {string}
13
+ * 来源 getBKColorPSAppDEField
14
+ */
15
+ bkcolorAppDEFieldId?: string;
16
+
9
17
  /**
10
18
  * 开始值应用实体属性
11
19
  *
@@ -14,6 +22,22 @@ export interface IAppCodeList extends ICodeList {
14
22
  */
15
23
  beginValueAppDEFieldId?: string;
16
24
 
25
+ /**
26
+ * 样式表值应用实体属性
27
+ *
28
+ * @type {string}
29
+ * 来源 getClsPSAppDEField
30
+ */
31
+ clsAppDEFieldId?: string;
32
+
33
+ /**
34
+ * 前景颜色值应用实体属性
35
+ *
36
+ * @type {string}
37
+ * 来源 getColorPSAppDEField
38
+ */
39
+ colorAppDEFieldId?: string;
40
+
17
41
  /**
18
42
  * 数据应用实体属性
19
43
  *