odaptos_design_system 2.0.287 → 2.0.288

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.
@@ -2184,13 +2184,13 @@ function AI_UserTest({
2184
2184
  strokeLinecap: "round",
2185
2185
  strokeLinejoin: "round"
2186
2186
  }), /*#__PURE__*/React__default.createElement("path", {
2187
- d: "M202.945 37.3238C202.76 36.3485 202.574 35.3731 202.389 34.3977",
2187
+ d: "M202.945 37.3238C202.76 36.3484 202.574 35.3731 202.389 34.3977",
2188
2188
  stroke: "#004799",
2189
2189
  strokeWidth: "4",
2190
2190
  strokeLinecap: "round",
2191
2191
  strokeLinejoin: "round"
2192
2192
  }), /*#__PURE__*/React__default.createElement("path", {
2193
- d: "M228.357 35.7303C228.715 34.8419 229.073 33.9536 229.431 33.0653",
2193
+ d: "M228.357 35.7302C228.715 34.8419 229.073 33.9536 229.431 33.0652",
2194
2194
  stroke: "#004799",
2195
2195
  strokeWidth: "4",
2196
2196
  strokeLinecap: "round",
@@ -91598,7 +91598,16 @@ const RowCell = ({
91598
91598
  const noValues = ['no', 'non', 'nein', 'não', 'nao'];
91599
91599
  const showCheckmark = value ? yesValues.includes(value.toLowerCase()) : false;
91600
91600
  const hideCheckmark = value ? noValues.includes(value.toLowerCase()) : false;
91601
- const yearlyValue = Number(value) ? Number(value) * 12 : value;
91601
+ const yearlyValue = (() => {
91602
+ if (!value) return value;
91603
+ if (value.endsWith('+')) {
91604
+ const num = Number(value.replace('+', ''));
91605
+ if (!isNaN(num)) {
91606
+ return `${num * 12}+`;
91607
+ }
91608
+ }
91609
+ return value;
91610
+ })();
91602
91611
  return /*#__PURE__*/React__default.createElement("div", {
91603
91612
  className: styles$s.rowCell
91604
91613
  }, showCheckmark ? /*#__PURE__*/React__default.createElement(PricingCheckedIcon, {
@@ -91665,7 +91674,7 @@ const SectionTitleRow = ({
91665
91674
  checked: isYearly,
91666
91675
  onChange: () => onChangeYearly(!isYearly)
91667
91676
  }), /*#__PURE__*/React__default.createElement(Text, {
91668
- text: cmsContent ? cmsContent.Yearly : 'Yearly'
91677
+ text: cmsContent ? cmsContent.Yearly : 'Annually'
91669
91678
  })));
91670
91679
  };
91671
91680