akeyless-client-commons 1.0.99 → 1.0.100
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
|
@@ -5917,7 +5917,9 @@ var ModularForm = function(param) {
|
|
|
5917
5917
|
return /* @__PURE__ */ (0, import_jsx_runtime21.jsxs)("form", {
|
|
5918
5918
|
onLoad: function(e) {
|
|
5919
5919
|
var form = e.currentTarget;
|
|
5920
|
+
console.log("form loaded");
|
|
5920
5921
|
var labels = form.getElementsByClassName("form-label");
|
|
5922
|
+
console.log("labels length", labels.length);
|
|
5921
5923
|
var max_width = 0;
|
|
5922
5924
|
Array.from(labels).forEach(function(label) {
|
|
5923
5925
|
var label_width = label.scrollWidth;
|
|
@@ -5925,7 +5927,7 @@ var ModularForm = function(param) {
|
|
|
5925
5927
|
max_width = label_width;
|
|
5926
5928
|
}
|
|
5927
5929
|
});
|
|
5928
|
-
console.log("
|
|
5930
|
+
console.log("max label width:", max_width);
|
|
5929
5931
|
},
|
|
5930
5932
|
onSubmit: onSubmit,
|
|
5931
5933
|
style: {
|
|
@@ -5713,7 +5713,9 @@ var ModularForm = function(param) {
|
|
|
5713
5713
|
return /* @__PURE__ */ jsxs15("form", {
|
|
5714
5714
|
onLoad: function(e) {
|
|
5715
5715
|
var form = e.currentTarget;
|
|
5716
|
+
console.log("form loaded");
|
|
5716
5717
|
var labels = form.getElementsByClassName("form-label");
|
|
5718
|
+
console.log("labels length", labels.length);
|
|
5717
5719
|
var max_width = 0;
|
|
5718
5720
|
Array.from(labels).forEach(function(label) {
|
|
5719
5721
|
var label_width = label.scrollWidth;
|
|
@@ -5721,7 +5723,7 @@ var ModularForm = function(param) {
|
|
|
5721
5723
|
max_width = label_width;
|
|
5722
5724
|
}
|
|
5723
5725
|
});
|
|
5724
|
-
console.log("
|
|
5726
|
+
console.log("max label width:", max_width);
|
|
5725
5727
|
},
|
|
5726
5728
|
onSubmit: onSubmit,
|
|
5727
5729
|
style: {
|