@aslaluroba/help-center-react 3.0.9 → 3.0.10

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/index.esm.js CHANGED
@@ -34484,7 +34484,7 @@ var Card = props => {
34484
34484
  var {
34485
34485
  dir
34486
34486
  } = useLocalTranslation();
34487
- var isLTR = dir === "ltr";
34487
+ var isRTL = String(dir) === "rtl";
34488
34488
  return jsxs("div", {
34489
34489
  className: "babylai-flex babylai-items-center babylai-justify-between babylai-gap-4 babylai-bg-black-white-50 babylai-rounded-3xl babylai-p-6",
34490
34490
  children: [jsx("p", {
@@ -34496,7 +34496,7 @@ var Card = props => {
34496
34496
  className: "babylai-bg-primary-500 babylai-text-black-white-50 hover:babylai-bg-primary-600 md:!babylai-w-10 md:!babylai-h-10",
34497
34497
  onClick: () => props.handleClick(),
34498
34498
  children: jsx(ArrowRight, {
34499
- className: "babylai-w-4 babylai-h-4 ".concat(isLTR ? "" : "babylai-rotate-180")
34499
+ className: "babylai-w-4 babylai-h-4 ".concat(!isRTL ? "" : "babylai-rotate-180")
34500
34500
  })
34501
34501
  })]
34502
34502
  });
@@ -34685,7 +34685,7 @@ var OptionsListHeader = _ref => {
34685
34685
  } = useLocalTranslation();
34686
34686
  var isRTL = String(dir) === "rtl";
34687
34687
  return jsxs("header", {
34688
- className: "babylai-flex babylai-w-full babylai-items-center babylai-mb-2 ".concat(!showHelpScreen ? "babylai-justify-end" : "babylai-justify-between"),
34688
+ className: "babylai-flex babylai-w-full babylai-items-center babylai-mb-2 ".concat(showHelpScreen ? "babylai-justify-end" : "babylai-justify-between"),
34689
34689
  children: [jsx(Button, {
34690
34690
  variant: "rounded-icon",
34691
34691
  size: "icon",