akeyless-client-commons 1.0.222 → 1.0.223
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.
package/dist/components/index.js
CHANGED
|
@@ -1727,7 +1727,7 @@ var TableProvider = function(props) {
|
|
|
1727
1727
|
return !(noneSearchKeys === null || noneSearchKeys === void 0 ? void 0 : noneSearchKeys.includes(val));
|
|
1728
1728
|
});
|
|
1729
1729
|
filtered = data.filter(function(item) {
|
|
1730
|
-
return
|
|
1730
|
+
return allKeys.some(function(key) {
|
|
1731
1731
|
return cleanString(String(item[key])).includes(normalizedSearchQuery);
|
|
1732
1732
|
});
|
|
1733
1733
|
});
|
|
@@ -5083,7 +5083,7 @@ var Filter = (0, import_react11.memo)(function(param) {
|
|
|
5083
5083
|
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("div", {
|
|
5084
5084
|
className: "overflow-auto h-[80%] flex flex-col gap-1 w-full cursor-pointer ",
|
|
5085
5085
|
children: (_filterOptions_filterableColumn_dataKey = filterOptions[filterableColumn.dataKey]) === null || _filterOptions_filterableColumn_dataKey === void 0 ? void 0 : _filterOptions_filterableColumn_dataKey.sort(function(a, b) {
|
|
5086
|
-
return
|
|
5086
|
+
return a.localeCompare(b);
|
|
5087
5087
|
}).map(function(option, i) {
|
|
5088
5088
|
var _filters_filterableColumn_dataKey;
|
|
5089
5089
|
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("div", {
|
|
@@ -1511,7 +1511,7 @@ var TableProvider = function(props) {
|
|
|
1511
1511
|
return !(noneSearchKeys === null || noneSearchKeys === void 0 ? void 0 : noneSearchKeys.includes(val));
|
|
1512
1512
|
});
|
|
1513
1513
|
filtered = data.filter(function(item) {
|
|
1514
|
-
return
|
|
1514
|
+
return allKeys.some(function(key) {
|
|
1515
1515
|
return cleanString(String(item[key])).includes(normalizedSearchQuery);
|
|
1516
1516
|
});
|
|
1517
1517
|
});
|
|
@@ -4867,7 +4867,7 @@ var Filter = memo(function(param) {
|
|
|
4867
4867
|
/* @__PURE__ */ jsx17("div", {
|
|
4868
4868
|
className: "overflow-auto h-[80%] flex flex-col gap-1 w-full cursor-pointer ",
|
|
4869
4869
|
children: (_filterOptions_filterableColumn_dataKey = filterOptions[filterableColumn.dataKey]) === null || _filterOptions_filterableColumn_dataKey === void 0 ? void 0 : _filterOptions_filterableColumn_dataKey.sort(function(a, b) {
|
|
4870
|
-
return
|
|
4870
|
+
return a.localeCompare(b);
|
|
4871
4871
|
}).map(function(option, i) {
|
|
4872
4872
|
var _filters_filterableColumn_dataKey;
|
|
4873
4873
|
return /* @__PURE__ */ jsxs12("div", {
|