@megha-ui/react 1.2.401 → 1.2.402
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.
|
@@ -145,6 +145,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
145
145
|
const value = item[column.key] && item[column.key].value
|
|
146
146
|
? (_b = item[column.key].value) === null || _b === void 0 ? void 0 : _b.toString()
|
|
147
147
|
: "";
|
|
148
|
+
console.log("Coming here");
|
|
148
149
|
if (query.includes("*") || query.includes("?")) {
|
|
149
150
|
const regex = createRegexFromWildcard(query);
|
|
150
151
|
return regex.test(value);
|
|
@@ -226,6 +227,7 @@ const Grid = ({ columns, wrapperClass, updateGridColumns, data, height, sortable
|
|
|
226
227
|
const value = item[column.key] && item[column.key].value
|
|
227
228
|
? (_b = item[column.key].value) === null || _b === void 0 ? void 0 : _b.toString()
|
|
228
229
|
: "";
|
|
230
|
+
console.log("Coming here2");
|
|
229
231
|
if (query.includes("*") || query.includes("?")) {
|
|
230
232
|
const regex = createRegexFromWildcard(query);
|
|
231
233
|
return regex.test(value);
|
package/package.json
CHANGED