gcs-ui-lib 1.2.21 → 1.2.23

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gcs-ui-lib",
3
- "version": "1.2.21",
3
+ "version": "1.2.23",
4
4
  "private": false,
5
5
  "main": "./lib/gcs-ui-lib.common.js",
6
6
  "scripts": {
@@ -50,7 +50,7 @@
50
50
  ]"
51
51
  >
52
52
  <el-option
53
- :label="item.budgetUnitName"
53
+ :label="`(${item.budgetUnitNo})${item.budgetUnitName}`"
54
54
  :value="item.budgetUnitNo"
55
55
  v-for="item in budgetUnitNameArr"
56
56
  :key="item.budgetUnitNo"
@@ -1,6 +1,6 @@
1
1
  <template>
2
2
  <div>
3
- <template v-if="isCustomType">
3
+ <template v-if="isCustomType && !isCustomName">
4
4
  <component
5
5
  :is="typeMap[row.fieldProperty]"
6
6
  :value.sync="value"
@@ -470,7 +470,7 @@ export default {
470
470
  function fl(node) {
471
471
  node?.matchingRules?.forEach((i) => {
472
472
  let l1 = i.matchingValueType === "DYNAMIC";
473
- let l3 = i.matchingOperation == "EQUALS";
473
+ let l3 = ["EQUALS", "NOT_EQUALS", "CONTAINS", "NOT_CONTAINS"].includes(i.matchingOperation);
474
474
  const tmval = i.TmValues?.[0] || "";
475
475
  if (l1 && l3 && !TmValueArr.includes(tmval)) {
476
476
  TmValueArr.push(tmval);