@megha-ui/react 1.2.161 → 1.2.162

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.
@@ -351,6 +351,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
351
351
  filterColumns.forEach(column => {
352
352
  if (prev[column.key] && Array.isArray(prev[column.key]) && prev[column.key].length > 0) {
353
353
  _filteredData.forEach(item => {
354
+ console.log(item[column.key], uniqueSearch[column.key]);
354
355
  if (item[column.key] && !prev[column.key].includes(item[column.key].value)) {
355
356
  prev[column.key].push(item[column.key].value);
356
357
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megha-ui/react",
3
- "version": "1.2.161",
3
+ "version": "1.2.162",
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.mjs",