lyflowchart 1.0.97 → 1.0.98

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/dist/index.js CHANGED
@@ -36012,12 +36012,78 @@ function ZB(e, t, n, r, a, o) {
36012
36012
  }
36013
36013
  const JB = /* @__PURE__ */ _r(YB, [["render", ZB], ["__scopeId", "data-v-03e91aa5"]]), W_ = {
36014
36014
  //输入框
36015
- input: ["eq", "contains", "startswith", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
36016
- textarea: ["eq", "contains", "startswith", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
36017
- number: ["between", "gt", "lt", "eq", "gte", "lte", "notbetween", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
36018
- volume: ["between", "gt", "lt", "eq", "gte", "lte", "notbetween", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
36019
- weight: ["between", "gt", "lt", "eq", "gte", "lte", "notbetween", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
36020
- password: ["eq", "contains", "startswith", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
36015
+ input: [
36016
+ "eq",
36017
+ "contains",
36018
+ "startswith",
36019
+ "not_eq",
36020
+ "in",
36021
+ "notin",
36022
+ "not_blank_not_null",
36023
+ "is_blank"
36024
+ ],
36025
+ textarea: [
36026
+ "eq",
36027
+ "contains",
36028
+ "startswith",
36029
+ "not_eq",
36030
+ "in",
36031
+ "notin",
36032
+ "not_blank_not_null",
36033
+ "is_blank"
36034
+ ],
36035
+ number: [
36036
+ "between",
36037
+ "gt",
36038
+ "lt",
36039
+ "eq",
36040
+ "gte",
36041
+ "lte",
36042
+ "notbetween",
36043
+ "not_eq",
36044
+ "in",
36045
+ "notin",
36046
+ "not_blank_not_null",
36047
+ "is_blank"
36048
+ ],
36049
+ volume: [
36050
+ "between",
36051
+ "gt",
36052
+ "lt",
36053
+ "eq",
36054
+ "gte",
36055
+ "lte",
36056
+ "notbetween",
36057
+ "not_eq",
36058
+ "in",
36059
+ "notin",
36060
+ "not_blank_not_null",
36061
+ "is_blank"
36062
+ ],
36063
+ weight: [
36064
+ "between",
36065
+ "gt",
36066
+ "lt",
36067
+ "eq",
36068
+ "gte",
36069
+ "lte",
36070
+ "notbetween",
36071
+ "not_eq",
36072
+ "in",
36073
+ "notin",
36074
+ "not_blank_not_null",
36075
+ "is_blank"
36076
+ ],
36077
+ password: [
36078
+ "eq",
36079
+ "contains",
36080
+ "startswith",
36081
+ "not_eq",
36082
+ "in",
36083
+ "notin",
36084
+ "not_blank_not_null",
36085
+ "is_blank"
36086
+ ],
36021
36087
  //单选和多选
36022
36088
  radio: ["eq", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
36023
36089
  checkbox: ["eq", "not_eq", "in", "notin", "not_blank_not_null", "is_blank"],
@@ -36067,32 +36133,24 @@ const JB = /* @__PURE__ */ _r(YB, [["render", ZB], ["__scopeId", "data-v-03e91aa
36067
36133
  // 等于
36068
36134
  not_eq: "不等于",
36069
36135
  // 不等于
36070
- contains: "包含字符串",
36071
- // 包含,针对字符串区分大小写
36072
- icontains: "包含字符串,不区分大小写",
36073
- // 包含,针对字符串不区分大小写
36074
- startswith: "以...开头",
36075
- // 开头,针对字符串区分大小写
36076
- istartswith: "以...开头,不区分大小写",
36077
- // 开头,针对字符串不区分大小写
36078
- endswith: "以...结尾",
36079
- // 开头,针对字符串区分大小写
36080
- iendswith: "以...结尾,不区分大小写",
36081
- // 开
36136
+ contains: "包含(大小写)",
36137
+ icontains: "包含",
36138
+ startswith: "开头(大小写)",
36139
+ istartswith: "开头",
36140
+ endswith: "结尾(大小写)",
36141
+ iendswith: "结尾",
36082
36142
  notin: "不包含",
36083
36143
  // 不包含,针对多个值
36084
- notcontains: "不包含字符串",
36144
+ notcontains: "不包含(大小写)",
36085
36145
  // 不包含,针对字符串区分大小写
36086
- noticontains: "不包含字符串,不区分大小写",
36146
+ noticontains: "不包含",
36087
36147
  // 不包含,针对字符串不区分大小写
36088
36148
  notstartswith: "不以...开头",
36089
36149
  // 不包含,针对字符串区分大小写
36090
36150
  notistartswith: "不以...开头,不区分大小写",
36091
36151
  // 不包含,针对字符串不区分大小写
36092
- notendswith: "不以...结尾",
36093
- // 不包含,针对字符串区分大小写
36094
- notiendswith: "不以...结尾,不区分大小写",
36095
- // 不包含,针对字符串不区分大小写
36152
+ notendswith: "不以...结尾(大小写)",
36153
+ notiendswith: "不以...结尾",
36096
36154
  // json_list_not_blank_not_null: '非空', // 是否非空
36097
36155
  // json_list_is_blank_is_null: '为空', // 是否为空
36098
36156
  not_blank_not_null: "非空",
@@ -36260,7 +36318,6 @@ const l5 = /* @__PURE__ */ _r(r5, [["render", s5], ["__scopeId", "data-v-99361be
36260
36318
  if (e.value === null)
36261
36319
  return "";
36262
36320
  try {
36263
- debugger;
36264
36321
  return JSON.stringify(e.value);
36265
36322
  } catch {
36266
36323
  return e.value;
@@ -36275,8 +36332,9 @@ const l5 = /* @__PURE__ */ _r(r5, [["render", s5], ["__scopeId", "data-v-99361be
36275
36332
  const y = v(m);
36276
36333
  y && y.value !== a.value && (t("select", y), a.value = y.value);
36277
36334
  }, c = oi(() => typeof e.value), d = (m) => {
36278
- debugger;
36279
- o.value = e.options.filter((y) => String(y == null ? void 0 : y[n]).includes(m) || (y == null ? void 0 : y[r].includes(m))).map((y) => ({
36335
+ o.value = e.options.filter(
36336
+ (y) => String(y == null ? void 0 : y[n]).includes(m) || (y == null ? void 0 : y[r].includes(m))
36337
+ ).map((y) => ({
36280
36338
  value: y == null ? void 0 : y[n],
36281
36339
  label: y == null ? void 0 : y[r],
36282
36340
  tableTitle: y.tableTitle,