@kmkf-fe-packages/services-components 2.9.1-beta.2 → 2.9.1-beta.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.
|
@@ -119,8 +119,10 @@ var ERemark = /*#__PURE__*/_createClass(function ERemark(options) {
|
|
|
119
119
|
};
|
|
120
120
|
},
|
|
121
121
|
formatFilterValue: function formatFilterValue(value) {
|
|
122
|
-
if (['in', 'anylike'
|
|
122
|
+
if (['in', 'anylike'].includes(value.type)) {
|
|
123
123
|
return batchInput(value.keywords);
|
|
124
|
+
} else if ('nincludeLike' === value.type) {
|
|
125
|
+
return value.keywords;
|
|
124
126
|
} else {
|
|
125
127
|
return value;
|
|
126
128
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/services-components",
|
|
3
|
-
"version": "2.9.1-beta.
|
|
3
|
+
"version": "2.9.1-beta.3",
|
|
4
4
|
"module": "dist/esm/index.js",
|
|
5
5
|
"typings": "dist/esm/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "48bf3378988df967c79a46057da2d5620cd4e032",
|
|
45
45
|
"gitHooks": {
|
|
46
46
|
"pre-commit": "lint-staged"
|
|
47
47
|
}
|