odaptos_design_system 2.0.290 → 2.0.292
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/odaptos_design_system.cjs.development.js +3 -3
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +3 -3
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Molecules/FeaturesTable/components/TableBody/components/RowCell.tsx +9 -3
|
@@ -91609,8 +91609,8 @@ const RowCell = ({
|
|
|
91609
91609
|
return `${num * 12}+`;
|
|
91610
91610
|
}
|
|
91611
91611
|
}
|
|
91612
|
-
if (/^\d
|
|
91613
|
-
return value.replace('
|
|
91612
|
+
if (/^\d+\.$/.test(value)) {
|
|
91613
|
+
return value.replace('.', '');
|
|
91614
91614
|
}
|
|
91615
91615
|
return value;
|
|
91616
91616
|
})();
|
|
@@ -91624,7 +91624,7 @@ const RowCell = ({
|
|
|
91624
91624
|
color: "#F54C4C",
|
|
91625
91625
|
size: "xl"
|
|
91626
91626
|
}) : /*#__PURE__*/React__default.createElement(Text, {
|
|
91627
|
-
text: isYearly ? `${yearlyValue}` : value
|
|
91627
|
+
text: isYearly ? `${yearlyValue}` : value && value.endsWith('.') ? value.slice(0, -1) : value
|
|
91628
91628
|
}));
|
|
91629
91629
|
};
|
|
91630
91630
|
|