@rebilly/revel 8.4.5 → 8.5.0
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 +6 -1
- package/dist/revel.mjs +2 -1
- package/dist/revel.umd.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,6 @@
|
|
|
1
|
-
## [8.
|
|
1
|
+
## [8.5.0](https://github.com/Rebilly/rebilly/compare/revel-v8.4.6...revel-v8.5.0) (2025-01-30)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **revel:** Add multiple terms search support for RSelect ([#9826](https://github.com/Rebilly/rebilly/issues/9826)) ([57d0871](https://github.com/Rebilly/rebilly/commit/57d0871a969ebd48de3a5fd2387aa4593541e346))
|
package/dist/revel.mjs
CHANGED
|
@@ -11256,8 +11256,9 @@ function Ey(M, b) {
|
|
|
11256
11256
|
return M === void 0 && (M = "undefined"), M === null && (M = "null"), M === !1 && (M = "false"), M.toString().toLowerCase().indexOf(b.trim()) !== -1;
|
|
11257
11257
|
}
|
|
11258
11258
|
function ky(M, b, z, p) {
|
|
11259
|
+
const o = b.split(" ").filter((O) => !!O);
|
|
11259
11260
|
return M.filter(
|
|
11260
|
-
(o) => Ey(p(
|
|
11261
|
+
(O) => o.every((e) => Ey(p(O, z), e))
|
|
11261
11262
|
);
|
|
11262
11263
|
}
|
|
11263
11264
|
const xy = (M) => M.reduce(
|