akeyless-client-commons 1.0.31 → 1.0.32

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.
@@ -4313,6 +4313,7 @@ function SearchSelect(param) {
4313
4313
  return setSearchQuery(val);
4314
4314
  },
4315
4315
  onKeyDown: function(e) {
4316
+ console.log("Key pressed", e.key);
4316
4317
  if (e.key === "Enter" && searchQuery) {
4317
4318
  addNewOption();
4318
4319
  }
@@ -4118,6 +4118,7 @@ function SearchSelect(param) {
4118
4118
  return setSearchQuery(val);
4119
4119
  },
4120
4120
  onKeyDown: function(e) {
4121
+ console.log("Key pressed", e.key);
4121
4122
  if (e.key === "Enter" && searchQuery) {
4122
4123
  addNewOption();
4123
4124
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.31",
3
+ "version": "1.0.32",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",