@artsy/palette-mobile 13.0.35 → 13.0.36

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.
@@ -10,7 +10,7 @@ export interface HeaderProps {
10
10
  rightElements?: React.ReactNode;
11
11
  scrollY?: number;
12
12
  scrollYOffset?: number;
13
- title?: string;
13
+ title?: string | JSX.Element;
14
14
  titleProps?: FlexProps;
15
15
  titleShown?: boolean;
16
16
  }
@@ -3,7 +3,7 @@ import { CollapsibleProps } from "react-native-collapsible-tab-view";
3
3
  import { TabsContainerProps } from "./TabsContainer";
4
4
  import { HeaderProps } from "../Screen/Header";
5
5
  export interface TabsWithHeaderProps extends TabsContainerProps {
6
- title: string;
6
+ title: string | JSX.Element;
7
7
  BelowTitleHeaderComponent?: () => JSX.Element;
8
8
  headerProps?: HeaderProps;
9
9
  showLargeHeaderText?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@artsy/palette-mobile",
3
- "version": "13.0.35",
3
+ "version": "13.0.36",
4
4
  "description": "Artsy's design system for React Native",
5
5
  "scripts": {
6
6
  "android": "RCT_METRO_PORT=8082 react-native run-android --port 8082",