akeyless-client-commons 1.0.165 → 1.0.167
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 +25 -17
- package/dist/components/index.mjs +25 -17
- package/package.json +1 -1
package/dist/components/index.js
CHANGED
|
@@ -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",
|
|
@@ -6274,43 +6274,51 @@ var ModularForm = function(param) {
|
|
|
6274
6274
|
children: elements.map(function(element, index2) {
|
|
6275
6275
|
switch(element.type){
|
|
6276
6276
|
case "input":
|
|
6277
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(InputContainer, _object_spread_props(_object_spread({
|
|
6278
|
-
direction: direction
|
|
6277
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(InputContainer, _object_spread_props(_object_spread({
|
|
6278
|
+
direction: direction
|
|
6279
|
+
}, element), {
|
|
6279
6280
|
labelsCommonClassName: labelsCommonClassName
|
|
6280
6281
|
}), index2);
|
|
6281
6282
|
case "textarea":
|
|
6282
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(TextAreaContainer, _object_spread_props(_object_spread({
|
|
6283
|
-
direction: direction
|
|
6283
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(TextAreaContainer, _object_spread_props(_object_spread({
|
|
6284
|
+
direction: direction
|
|
6285
|
+
}, element), {
|
|
6284
6286
|
labelsCommonClassName: labelsCommonClassName
|
|
6285
6287
|
}), index2);
|
|
6286
6288
|
case "select":
|
|
6287
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(SelectContainer, _object_spread_props(_object_spread({
|
|
6288
|
-
direction: direction
|
|
6289
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(SelectContainer, _object_spread_props(_object_spread({
|
|
6290
|
+
direction: direction
|
|
6291
|
+
}, element), {
|
|
6289
6292
|
labelsCommonClassName: labelsCommonClassName
|
|
6290
6293
|
}), index2);
|
|
6291
6294
|
case "checkbox":
|
|
6292
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(CheckboxContainer, _object_spread_props(_object_spread({
|
|
6293
|
-
direction: direction
|
|
6295
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(CheckboxContainer, _object_spread_props(_object_spread({
|
|
6296
|
+
direction: direction
|
|
6297
|
+
}, element), {
|
|
6294
6298
|
labelsCommonClassName: labelsCommonClassName
|
|
6295
6299
|
}), index2);
|
|
6296
6300
|
case "multiSelect":
|
|
6297
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(MultiSelect, _object_spread_props(_object_spread({
|
|
6298
|
-
direction: direction
|
|
6301
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(MultiSelect, _object_spread_props(_object_spread({
|
|
6302
|
+
direction: direction
|
|
6303
|
+
}, element), {
|
|
6299
6304
|
labelsCommonClassName: labelsCommonClassName
|
|
6300
6305
|
}), index2);
|
|
6301
6306
|
case "selectWithSearch":
|
|
6302
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(SelectWithSearch, _object_spread_props(_object_spread({
|
|
6303
|
-
direction: direction
|
|
6307
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(SelectWithSearch, _object_spread_props(_object_spread({
|
|
6308
|
+
direction: direction
|
|
6309
|
+
}, element), {
|
|
6304
6310
|
labelsCommonClassName: labelsCommonClassName
|
|
6305
6311
|
}), index2);
|
|
6306
6312
|
case "internationalPhoneInput":
|
|
6307
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(InternationalPhonePicker, _object_spread_props(_object_spread({
|
|
6308
|
-
direction: direction
|
|
6313
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(InternationalPhonePicker, _object_spread_props(_object_spread({
|
|
6314
|
+
direction: direction
|
|
6315
|
+
}, element), {
|
|
6309
6316
|
labelsCommonClassName: labelsCommonClassName
|
|
6310
6317
|
}), index2);
|
|
6311
6318
|
case "separator":
|
|
6312
|
-
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(FormSeparator, _object_spread_props(_object_spread({
|
|
6313
|
-
direction: direction
|
|
6319
|
+
return /* @__PURE__ */ (0, import_jsx_runtime21.jsx)(FormSeparator, _object_spread_props(_object_spread({
|
|
6320
|
+
direction: direction
|
|
6321
|
+
}, element), {
|
|
6314
6322
|
children: element.children
|
|
6315
6323
|
}), index2);
|
|
6316
6324
|
case "custom":
|
|
@@ -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",
|
|
@@ -6058,43 +6058,51 @@ var ModularForm = function(param) {
|
|
|
6058
6058
|
children: elements.map(function(element, index2) {
|
|
6059
6059
|
switch(element.type){
|
|
6060
6060
|
case "input":
|
|
6061
|
-
return /* @__PURE__ */ jsx20(InputContainer, _object_spread_props(_object_spread({
|
|
6062
|
-
direction: direction
|
|
6061
|
+
return /* @__PURE__ */ jsx20(InputContainer, _object_spread_props(_object_spread({
|
|
6062
|
+
direction: direction
|
|
6063
|
+
}, element), {
|
|
6063
6064
|
labelsCommonClassName: labelsCommonClassName
|
|
6064
6065
|
}), index2);
|
|
6065
6066
|
case "textarea":
|
|
6066
|
-
return /* @__PURE__ */ jsx20(TextAreaContainer, _object_spread_props(_object_spread({
|
|
6067
|
-
direction: direction
|
|
6067
|
+
return /* @__PURE__ */ jsx20(TextAreaContainer, _object_spread_props(_object_spread({
|
|
6068
|
+
direction: direction
|
|
6069
|
+
}, element), {
|
|
6068
6070
|
labelsCommonClassName: labelsCommonClassName
|
|
6069
6071
|
}), index2);
|
|
6070
6072
|
case "select":
|
|
6071
|
-
return /* @__PURE__ */ jsx20(SelectContainer, _object_spread_props(_object_spread({
|
|
6072
|
-
direction: direction
|
|
6073
|
+
return /* @__PURE__ */ jsx20(SelectContainer, _object_spread_props(_object_spread({
|
|
6074
|
+
direction: direction
|
|
6075
|
+
}, element), {
|
|
6073
6076
|
labelsCommonClassName: labelsCommonClassName
|
|
6074
6077
|
}), index2);
|
|
6075
6078
|
case "checkbox":
|
|
6076
|
-
return /* @__PURE__ */ jsx20(CheckboxContainer, _object_spread_props(_object_spread({
|
|
6077
|
-
direction: direction
|
|
6079
|
+
return /* @__PURE__ */ jsx20(CheckboxContainer, _object_spread_props(_object_spread({
|
|
6080
|
+
direction: direction
|
|
6081
|
+
}, element), {
|
|
6078
6082
|
labelsCommonClassName: labelsCommonClassName
|
|
6079
6083
|
}), index2);
|
|
6080
6084
|
case "multiSelect":
|
|
6081
|
-
return /* @__PURE__ */ jsx20(MultiSelect, _object_spread_props(_object_spread({
|
|
6082
|
-
direction: direction
|
|
6085
|
+
return /* @__PURE__ */ jsx20(MultiSelect, _object_spread_props(_object_spread({
|
|
6086
|
+
direction: direction
|
|
6087
|
+
}, element), {
|
|
6083
6088
|
labelsCommonClassName: labelsCommonClassName
|
|
6084
6089
|
}), index2);
|
|
6085
6090
|
case "selectWithSearch":
|
|
6086
|
-
return /* @__PURE__ */ jsx20(SelectWithSearch, _object_spread_props(_object_spread({
|
|
6087
|
-
direction: direction
|
|
6091
|
+
return /* @__PURE__ */ jsx20(SelectWithSearch, _object_spread_props(_object_spread({
|
|
6092
|
+
direction: direction
|
|
6093
|
+
}, element), {
|
|
6088
6094
|
labelsCommonClassName: labelsCommonClassName
|
|
6089
6095
|
}), index2);
|
|
6090
6096
|
case "internationalPhoneInput":
|
|
6091
|
-
return /* @__PURE__ */ jsx20(InternationalPhonePicker, _object_spread_props(_object_spread({
|
|
6092
|
-
direction: direction
|
|
6097
|
+
return /* @__PURE__ */ jsx20(InternationalPhonePicker, _object_spread_props(_object_spread({
|
|
6098
|
+
direction: direction
|
|
6099
|
+
}, element), {
|
|
6093
6100
|
labelsCommonClassName: labelsCommonClassName
|
|
6094
6101
|
}), index2);
|
|
6095
6102
|
case "separator":
|
|
6096
|
-
return /* @__PURE__ */ jsx20(FormSeparator, _object_spread_props(_object_spread({
|
|
6097
|
-
direction: direction
|
|
6103
|
+
return /* @__PURE__ */ jsx20(FormSeparator, _object_spread_props(_object_spread({
|
|
6104
|
+
direction: direction
|
|
6105
|
+
}, element), {
|
|
6098
6106
|
children: element.children
|
|
6099
6107
|
}), index2);
|
|
6100
6108
|
case "custom":
|