@megha-ui/react 1.2.690 → 1.2.696
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.
|
@@ -402,16 +402,16 @@ withCard = false, cardClassName, cardHeader, title, headerLeft, headerRight, sub
|
|
|
402
402
|
.filter((item) => filterValue
|
|
403
403
|
? filterValue.split(">").length > 1
|
|
404
404
|
? groupedKey.split(">").every((group) => {
|
|
405
|
-
var _a;
|
|
405
|
+
var _a, _b;
|
|
406
406
|
return filterValue
|
|
407
407
|
.split(">")
|
|
408
|
-
.includes((_a = item[group].value) === null ||
|
|
408
|
+
.includes((_b = ((_a = item[group]) !== null && _a !== void 0 ? _a : { value: "" }).value) === null || _b === void 0 ? void 0 : _b.toString());
|
|
409
409
|
})
|
|
410
410
|
: groupedKey.split(">").some((group) => {
|
|
411
|
-
var _a;
|
|
411
|
+
var _a, _b;
|
|
412
412
|
return filterValue
|
|
413
413
|
.split(">")
|
|
414
|
-
.includes((_a = item[group].value) === null ||
|
|
414
|
+
.includes((_b = ((_a = item[group]) !== null && _a !== void 0 ? _a : { value: "" }).value) === null || _b === void 0 ? void 0 : _b.toString());
|
|
415
415
|
})
|
|
416
416
|
: true)
|
|
417
417
|
.map((item) => {
|
package/package.json
CHANGED