akeyless-client-commons 1.0.167 → 1.0.168

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