@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.
- package/build/components/index.native.js +1 -1
- package/build/components/index.native.js.map +1 -1
- package/build/components/index.web.js +8 -8
- package/build/components/index.web.js.map +1 -1
- package/build/css/bankingThemeDarkDesktop.css +1 -1
- package/build/css/bankingThemeDarkMobile.css +1 -1
- package/build/css/bankingThemeLightDesktop.css +1 -1
- package/build/css/bankingThemeLightMobile.css +1 -1
- package/build/css/paymentThemeDarkDesktop.css +1 -1
- package/build/css/paymentThemeDarkMobile.css +1 -1
- package/build/css/paymentThemeLightDesktop.css +1 -1
- package/build/css/paymentThemeLightMobile.css +1 -1
- package/package.json +1 -1
|
@@ -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({
|