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.
@@ -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 keys.some(function(key) {
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 b.localeCompare(a);
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 keys.some(function(key) {
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 b.localeCompare(a);
4870
+ return a.localeCompare(b);
4871
4871
  }).map(function(option, i) {
4872
4872
  var _filters_filterableColumn_dataKey;
4873
4873
  return /* @__PURE__ */ jsxs12("div", {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.222",
3
+ "version": "1.0.223",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",