@fixefy/fixefy-ui-components 0.3.2 → 0.3.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.
@@ -143,7 +143,8 @@ const FxAsyncDropdown = /*#__PURE__*/ _react.default.forwardRef((props)=>{
143
143
  return searchValue ? _object_spread_props(_object_spread({}, where), {
144
144
  _id: ws,
145
145
  [search_path]: {
146
- $regex: searchValue
146
+ $regex: searchValue,
147
+ $options: 'i'
147
148
  }
148
149
  }) : _object_spread_props(_object_spread({}, where), {
149
150
  _id: ws
@@ -151,7 +152,8 @@ const FxAsyncDropdown = /*#__PURE__*/ _react.default.forwardRef((props)=>{
151
152
  } else {
152
153
  return searchValue ? _object_spread_props(_object_spread({}, where), {
153
154
  [search_path]: {
154
- $regex: searchValue
155
+ $regex: searchValue,
156
+ $options: 'i'
155
157
  }
156
158
  }) : _object_spread({}, where);
157
159
  }
package/package.json CHANGED
@@ -65,5 +65,5 @@
65
65
  "require": "./dist/index.js"
66
66
  }
67
67
  },
68
- "version": "0.3.2"
68
+ "version": "0.3.3"
69
69
  }