@94ai/nf-conditions 100.1.7 → 100.1.9
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/lib/nf-conditions.cjs.js
CHANGED
|
@@ -473,7 +473,9 @@ var _sfc_render = function render() {
|
|
|
473
473
|
return _vm.removeCondition(i);
|
|
474
474
|
}
|
|
475
475
|
}
|
|
476
|
-
}, [
|
|
476
|
+
}, [_c("span", {
|
|
477
|
+
staticClass: "remove-condition-icon"
|
|
478
|
+
}, [_vm._v(_vm._s(_vm.deleteConditionDesc))])]) : _vm._e()]), _c("nf-rules", {
|
|
477
479
|
ref: "nfRules",
|
|
478
480
|
refInFor: true,
|
|
479
481
|
attrs: {
|
|
@@ -543,7 +545,9 @@ var _sfc_render = function render() {
|
|
|
543
545
|
return _vm.addCondition();
|
|
544
546
|
}
|
|
545
547
|
}
|
|
546
|
-
}, [
|
|
548
|
+
}, [_c("span", {
|
|
549
|
+
staticClass: "add-condition-icon"
|
|
550
|
+
}, [_vm._v(_vm._s(_vm.addConditionDesc))])]) : _vm._e()])], 2)], 1);
|
|
547
551
|
};
|
|
548
552
|
var _sfc_staticRenderFns = [];
|
|
549
553
|
var __component__ = /* @__PURE__ */ vue2RuntimeHelpers.normalizeComponent(__sfc_main, _sfc_render, _sfc_staticRenderFns, false, null, null, null, null);
|
|
@@ -471,7 +471,9 @@ var _sfc_render = function render() {
|
|
|
471
471
|
return _vm.removeCondition(i);
|
|
472
472
|
}
|
|
473
473
|
}
|
|
474
|
-
}, [
|
|
474
|
+
}, [_c("span", {
|
|
475
|
+
staticClass: "remove-condition-icon"
|
|
476
|
+
}, [_vm._v(_vm._s(_vm.deleteConditionDesc))])]) : _vm._e()]), _c("nf-rules", {
|
|
475
477
|
ref: "nfRules",
|
|
476
478
|
refInFor: true,
|
|
477
479
|
attrs: {
|
|
@@ -541,7 +543,9 @@ var _sfc_render = function render() {
|
|
|
541
543
|
return _vm.addCondition();
|
|
542
544
|
}
|
|
543
545
|
}
|
|
544
|
-
}, [
|
|
546
|
+
}, [_c("span", {
|
|
547
|
+
staticClass: "add-condition-icon"
|
|
548
|
+
}, [_vm._v(_vm._s(_vm.addConditionDesc))])]) : _vm._e()])], 2)], 1);
|
|
545
549
|
};
|
|
546
550
|
var _sfc_staticRenderFns = [];
|
|
547
551
|
var __component__ = /* @__PURE__ */ normalizeComponent(__sfc_main, _sfc_render, _sfc_staticRenderFns, false, null, null, null, null);
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
>
|
|
20
20
|
<div class="condition-header">
|
|
21
21
|
<span class="condition-pre"><span style="color: red;margin-right: 5px;vertical-align: middle">*</span>{{ conditionDesc }} {{ (i + 1) }}</span>
|
|
22
|
-
<span class="remove-condition" @click="removeCondition(i)" v-if="!hiddenConditionReduce">{{ deleteConditionDesc }}</span>
|
|
22
|
+
<span class="remove-condition" @click="removeCondition(i)" v-if="!hiddenConditionReduce"><span class="remove-condition-icon">{{ deleteConditionDesc }}</span></span>
|
|
23
23
|
</div>
|
|
24
24
|
<nf-rules
|
|
25
25
|
ref="nfRules"
|
|
@@ -79,7 +79,9 @@
|
|
|
79
79
|
/>
|
|
80
80
|
</el-form-item>
|
|
81
81
|
<div class="condition-footer">
|
|
82
|
-
<span class="add-condition" @click="addCondition()" v-if="!hiddenConditionAdd && (!conditionLimit || plan.conditions?.length < conditionLimit)">
|
|
82
|
+
<span class="add-condition" @click="addCondition()" v-if="!hiddenConditionAdd && (!conditionLimit || plan.conditions?.length < conditionLimit)">
|
|
83
|
+
<span class="add-condition-icon">{{ addConditionDesc }}</span>
|
|
84
|
+
</span>
|
|
83
85
|
</div>
|
|
84
86
|
</condition-container>
|
|
85
87
|
</div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@94ai/nf-conditions",
|
|
3
|
-
"version": "100.1.
|
|
3
|
+
"version": "100.1.9",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "zoujiahe <zoujiahe@94ai.com>",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"url": "http://94ai.gitlab.com/ui/common-ui.git"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@94ai/nf-
|
|
17
|
+
"@94ai/nf-rules": "^100.1.9",
|
|
18
|
+
"@94ai/nf-theme-chalk": "^100.1.9",
|
|
18
19
|
"vue-demi": "^0.14.5"
|
|
19
20
|
},
|
|
20
21
|
"peerDependenciesMeta": {
|
|
@@ -30,5 +31,5 @@
|
|
|
30
31
|
"types": "lib/index.d.ts",
|
|
31
32
|
"main": "lib/nf-conditions.cjs.js",
|
|
32
33
|
"module": "lib/nf-conditions.esm-bundler.js",
|
|
33
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "39459d15baea73427838a5d69ff485723b3dc9f2"
|
|
34
35
|
}
|