@megha-ui/react 1.2.590 → 1.2.591

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.
@@ -361,7 +361,9 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
361
361
  console.log(_filteredData.map((item) => Object.keys(item)
362
362
  .filter((key) => Object.keys(searchQueries).includes(key))
363
363
  .reduce((acc, key) => {
364
- acc[key] = item[key];
364
+ if (searchQueries[key].type === "startsWith") {
365
+ acc[key] = item[key];
366
+ }
365
367
  return acc;
366
368
  }, {})));
367
369
  return _filteredData;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megha-ui/react",
3
- "version": "1.2.590",
3
+ "version": "1.2.591",
4
4
  "description": "A collection of reusable UI components for React applications, built with TypeScript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",