akeyless-client-commons 1.0.101 → 1.0.102

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.
@@ -5921,7 +5921,7 @@ var ModularForm = function(param) {
5921
5921
  console.log("labels:", labels.length);
5922
5922
  var max_width = 0;
5923
5923
  Array.from(labels).forEach(function(label) {
5924
- var label_width = label.scrollWidth;
5924
+ var label_width = label.clientWidth;
5925
5925
  if (label_width > max_width) {
5926
5926
  max_width = label_width;
5927
5927
  }
@@ -5717,7 +5717,7 @@ var ModularForm = function(param) {
5717
5717
  console.log("labels:", labels.length);
5718
5718
  var max_width = 0;
5719
5719
  Array.from(labels).forEach(function(label) {
5720
- var label_width = label.scrollWidth;
5720
+ var label_width = label.clientWidth;
5721
5721
  if (label_width > max_width) {
5722
5722
  max_width = label_width;
5723
5723
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.101",
3
+ "version": "1.0.102",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",