@sikka/hawa 0.49.9-next → 0.49.10-next

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.
@@ -1071,7 +1071,7 @@ var Input = forwardRef5(
1071
1071
  "input",
1072
1072
  {
1073
1073
  required: true,
1074
- dir: props.dir,
1074
+ dir: props.alwaysLTR ? "ltr" : props.dir,
1075
1075
  type: props.type,
1076
1076
  value: props.value || value,
1077
1077
  onChange: handleChange,
@@ -1092,6 +1092,7 @@ var Input = forwardRef5(
1092
1092
  "hawa-pe-[60px]": countPosition === "center"
1093
1093
  },
1094
1094
  preview && "hawa-border-transparent hawa-bg-transparent hawa-px-0",
1095
+ props.alwaysLTR && "hawa-text-end",
1095
1096
  inputProps == null ? void 0 : inputProps.className
1096
1097
  )
1097
1098
  }