@zengenti/contensis-react-base 3.0.0-beta.31 → 3.0.0-beta.32

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/esm/search.js CHANGED
@@ -995,7 +995,7 @@ const equalToOrIn = (field, value, operator = 'equalTo') => {
995
995
 
996
996
  const between = (field, value) => {
997
997
  const handle = betweenValue => {
998
- const valArr = betweenValue.split('-');
998
+ const valArr = betweenValue.split('--');
999
999
 
1000
1000
  if (valArr.length > 1) {
1001
1001
  const [minimum, maximum] = betweenValue.split('-');