@artsy/palette-mobile 11.2.9 → 11.2.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/CHANGELOG.md +12 -0
- package/dist/elements/Tabs/TabsContainer.js +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v11.2.10 (Fri Jul 28 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: reset tab padding style to avoid line breaks [#130](https://github.com/artsy/palette-mobile/pull/130) ([@gkartalis](https://github.com/gkartalis))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- George ([@gkartalis](https://github.com/gkartalis))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v11.2.9 (Fri Jul 28 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
|
@@ -38,6 +38,10 @@ const TabsContainer = ({ children, indicators = [], initialTabName, renderHeader
|
|
|
38
38
|
height: 1,
|
|
39
39
|
// on android this line breaks the active indicator and it is not visible
|
|
40
40
|
...(isIOS && { bottom: -1 }),
|
|
41
|
+
}, tabStyle: {
|
|
42
|
+
// resets the default padding 10 from the lib
|
|
43
|
+
// to prevent linebreaks on the tab titles
|
|
44
|
+
paddingHorizontal: 0,
|
|
41
45
|
} }) }));
|
|
42
46
|
}, children: children }));
|
|
43
47
|
};
|