akeyless-client-commons 1.0.164 → 1.0.166

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.
@@ -5565,7 +5565,7 @@ function InternationalPhonePicker(param) {
5565
5565
  style: {
5566
5566
  direction: "ltr"
5567
5567
  },
5568
- className: cn("flex flex-1 rounded-sm shadow-sm shadow-black/5", className),
5568
+ className: cn("flex flex-1 rounded-sm shadow-sm shadow-black/5 border-[1px] border-gray-300", className),
5569
5569
  international: true,
5570
5570
  countries: [
5571
5571
  "US",
@@ -6101,7 +6101,7 @@ var ElementsContainer = (0, import_react15.memo)(function(props) {
6101
6101
  var labels = containerRef.current.getElementsByClassName("form-label");
6102
6102
  var max_width = 0;
6103
6103
  Array.from(labels).forEach(function(label) {
6104
- var label_width = label.clientWidth || label.offsetWidth || label.scrollWidth;
6104
+ var label_width = label.scrollWidth;
6105
6105
  if (label_width > max_width) {
6106
6106
  max_width = label_width;
6107
6107
  }
@@ -5349,7 +5349,7 @@ function InternationalPhonePicker(param) {
5349
5349
  style: {
5350
5350
  direction: "ltr"
5351
5351
  },
5352
- className: cn("flex flex-1 rounded-sm shadow-sm shadow-black/5", className),
5352
+ className: cn("flex flex-1 rounded-sm shadow-sm shadow-black/5 border-[1px] border-gray-300", className),
5353
5353
  international: true,
5354
5354
  countries: [
5355
5355
  "US",
@@ -5885,7 +5885,7 @@ var ElementsContainer = memo2(function(props) {
5885
5885
  var labels = containerRef.current.getElementsByClassName("form-label");
5886
5886
  var max_width = 0;
5887
5887
  Array.from(labels).forEach(function(label) {
5888
- var label_width = label.clientWidth || label.offsetWidth || label.scrollWidth;
5888
+ var label_width = label.scrollWidth;
5889
5889
  if (label_width > max_width) {
5890
5890
  max_width = label_width;
5891
5891
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akeyless-client-commons",
3
- "version": "1.0.164",
3
+ "version": "1.0.166",
4
4
  "scripts": {
5
5
  "build": "tsup",
6
6
  "deploy": "npm run build && npm version patch --no-git-tag-version && npm publish",