@byteluck-fe/model-driven-controls 6.2.0-beta.13 → 6.2.0-beta.14

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,5 +1,35 @@
1
1
  import { RuleItem } from 'async-validator';
2
2
  import { BaseControlProperty, BaseControlPropertyRules, BaseControlPropertyRuntimeRules, MultistageFillingItem, TreeDataSourceBind } from '@byteluck-fe/model-driven-core';
3
+ interface DisplayBoListItem {
4
+ type: 'FIELD' | 'MOSAICS';
5
+ value: string;
6
+ fieldType: string;
7
+ }
8
+ export declare enum DataQueryTypeEnum {
9
+ EQ = 0,
10
+ GT = 1,
11
+ LT = 2,
12
+ IN = 3,
13
+ LIKE = 4,
14
+ RANGE = 5,
15
+ GE = 6,
16
+ LE = 7,
17
+ CONTAINS_ONE = 8,
18
+ CONCAT_LIKE = 9,
19
+ CONTAINS_IN_WITH_SUB_DEPT = 10,
20
+ NOT_EQ = 11,
21
+ CONCAT_NOT_EQ = 12,
22
+ IS_NULL = 13,
23
+ IS_NOT_NULL = 14,
24
+ EQ_FIELD = 15,
25
+ IS_NULL_OR_EQ_FIELD = 16,
26
+ NOT_EQ_FIELD = 17
27
+ }
28
+ interface TreeQueryProperty {
29
+ ctrl_value: string;
30
+ display_bo_list: Array<DisplayBoListItem>;
31
+ query_type: DataQueryTypeEnum;
32
+ }
3
33
  declare class TreePropertyRules extends BaseControlPropertyRules {
4
34
  datasourceBind: RuleItem[];
5
35
  constructor(props: TreeProperty);
@@ -28,6 +58,7 @@ declare class TreeProperty extends BaseControlProperty {
28
58
  multistageFilling: MultistageFillingItem[];
29
59
  defaultValue: string[];
30
60
  openMultistageFilling: boolean;
61
+ treeQuery: Array<TreeQueryProperty>;
31
62
  constructor(props?: Partial<TreeProperty>);
32
63
  }
33
64
  export default TreeProperty;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@byteluck-fe/model-driven-controls",
3
- "version": "6.2.0-beta.13",
3
+ "version": "6.2.0-beta.14",
4
4
  "description": "> TODO: description",
5
5
  "author": "郝晨光 <2293885211@qq.com>",
6
6
  "homepage": "",
@@ -31,5 +31,5 @@
31
31
  "@byteluck-fe/model-driven-shared": "6.2.0-beta.13",
32
32
  "async-validator": "3.5.1"
33
33
  },
34
- "gitHead": "3ce3b81115093fd52a468b67cf2392f34bd24564"
34
+ "gitHead": "cac6ac86fcd6488d7899e631f32b43491163ae9e"
35
35
  }