@razorpay/blade 8.11.1 → 8.11.2

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.
@@ -5729,15 +5729,15 @@ var getBaseTextStyles = function getBaseTextStyles(_ref) {
5729
5729
  if (numberOfLines !== undefined) {
5730
5730
  if (isReactNative$4()) {
5731
5731
  truncateStyles = {};
5732
+ } else {
5733
+ truncateStyles = {
5734
+ overflow: 'hidden',
5735
+ display: '-webkit-box',
5736
+ 'line-clamp': "".concat(numberOfLines),
5737
+ '-webkit-line-clamp': "".concat(numberOfLines),
5738
+ '-webkit-box-orient': 'vertical'
5739
+ };
5732
5740
  }
5733
-
5734
- truncateStyles = {
5735
- overflow: 'hidden',
5736
- display: '-webkit-box',
5737
- 'line-clamp': "".concat(numberOfLines),
5738
- '-webkit-line-clamp': "".concat(numberOfLines),
5739
- '-webkit-box-orient': 'vertical'
5740
- };
5741
5741
  }
5742
5742
 
5743
5743
  return _objectSpread$5E({