@artsy/palette-mobile 11.2.2 → 11.2.4

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 CHANGED
@@ -1,3 +1,31 @@
1
+ # v11.2.4 (Mon Jul 10 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - fix: tab title breaking in smaller phone layouts [#123](https://github.com/artsy/palette-mobile/pull/123) ([@gkartalis](https://github.com/gkartalis))
6
+
7
+ #### Authors: 1
8
+
9
+ - George Kartalis ([@gkartalis](https://github.com/gkartalis))
10
+
11
+ ---
12
+
13
+ # v11.2.3 (Fri Jul 07 2023)
14
+
15
+ :tada: This release contains work from a new contributor! :tada:
16
+
17
+ Thank you, Carlos Alberto de Araujo Barreto ([@araujobarret](https://github.com/araujobarret)), for all your work!
18
+
19
+ #### 🐛 Bug Fix
20
+
21
+ - doc(setup): improve setup instructions [#121](https://github.com/artsy/palette-mobile/pull/121) ([@araujobarret](https://github.com/araujobarret))
22
+
23
+ #### Authors: 1
24
+
25
+ - Carlos Alberto de Araujo Barreto ([@araujobarret](https://github.com/araujobarret))
26
+
27
+ ---
28
+
1
29
  # v11.2.2 (Thu Jun 29 2023)
2
30
 
3
31
  :tada: This release contains work from a new contributor! :tada:
package/README.md CHANGED
@@ -42,6 +42,7 @@ If you'd like to add a new component to Palette please create an issue using the
42
42
  Set up using:
43
43
 
44
44
  ```sh
45
+ yarn setup:artsy
45
46
  yarn install:all
46
47
  ```
47
48
 
@@ -33,7 +33,7 @@ const TabsContainer = ({ children, indicators = [], initialTabName, renderHeader
33
33
  return indicator.tabName === props.name;
34
34
  });
35
35
  return ((0, jsx_runtime_1.jsxs)(Box_1.Box, { flex: 1, children: [(0, jsx_runtime_1.jsx)(Flex_1.Flex, { position: "absolute", width: "100%", children: !!Indicator?.Component && (0, jsx_runtime_1.jsx)(Indicator.Component, { ...props }) }), (0, jsx_runtime_1.jsx)(react_native_collapsible_tab_view_1.MaterialTabItem, { ...props })] }));
36
- }, contentContainerStyle: {}, activeColor: color("onBackground"), inactiveColor: color("onBackgroundMedium"), labelStyle: { marginTop: 0 }, indicatorStyle: {
36
+ }, contentContainerStyle: {}, activeColor: color("onBackground"), inactiveColor: color("onBackgroundMedium"), labelStyle: { marginHorizontal: 0 }, indicatorStyle: {
37
37
  backgroundColor: color("onBackground"),
38
38
  height: 1,
39
39
  // on android this line breaks the active indicator and it is not visible
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "11.2.2",
3
+ "version": "11.2.4",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "react-native run-android",