@hzab/flowlong-designer 0.2.2 → 0.2.3

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
@@ -1,3 +1,7 @@
1
+ # @hzab/flowlong-designer@0.2.3
2
+
3
+ fix:条件节点去除下拉数据不包含
4
+
1
5
  # @hzab/flowlong-designer@0.2.2
2
6
 
3
7
  fix:其他条件文案修改
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hzab/flowlong-designer",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "自定义审批流配置组件",
5
5
  "main": "src",
6
6
  "scripts": {
@@ -18,7 +18,7 @@ export const operatorOptions = [
18
18
  { label: "小于", value: "<" },
19
19
  { label: "小于等于", value: "<=" },
20
20
  { label: "包含", value: "include" },
21
- { label: "不包含", value: "notinclude" },
21
+ // { label: "不包含", value: "notinclude" },
22
22
  ];
23
23
 
24
24
  /**描述下拉字段 */
@@ -235,7 +235,7 @@ export const Branch = (props) => {
235
235
  { label: "小于", value: "<" },
236
236
  { label: "小于等于", value: "<=" },
237
237
  { label: "包含", value: "include" },
238
- { label: "不包含", value: "notinclude" },
238
+ // { label: "不包含", value: "notinclude" },
239
239
  ];
240
240
 
241
241
  if (timeType.includes(condition?.field)) {
@@ -254,7 +254,7 @@ export const Branch = (props) => {
254
254
  operatorOptions = [
255
255
  { label: "等于", value: "==" },
256
256
  { label: "包含", value: "include" },
257
- { label: "不包含", value: "notinclude" },
257
+ // { label: "不包含", value: "notinclude" },
258
258
  ];
259
259
  }
260
260
  if (condition?.label === "发起人") {