Skip to content

Commit

Permalink
0.34.0-canary.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ritz078 committed May 6, 2019
1 parent 2314b2c commit 9b09e2e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pebble-native",
"version": "0.34.0-canary.3",
"version": "0.34.0-canary.4",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
Expand Down
3 changes: 2 additions & 1 deletion src/components/typings/DotSeparator.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React from "react";
import { TextProps } from "./Text";

export interface DotSeparatorProps {
texts: string[];
texts: (React.ReactText | JSX.Element | undefined | null | boolean)[];
dotColor?: string;
color?: string;
textProps?: TextProps;
Expand Down
4 changes: 2 additions & 2 deletions src/recipes/Viewer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export default class extends PureComponent<ViewerProps, ViewerState> {
style={styles.circButton}
label={nI(owner.name)}
color={colors.white.base}
backgroundColor={colors.blue.base}
backgroundColor={owner.color}
/>
<View style={styles.flexOne}>
<Text color={colors.gray.darker} size={15}>
Expand Down Expand Up @@ -191,7 +191,7 @@ export default class extends PureComponent<ViewerProps, ViewerState> {
style={styles.circButton}
label={nI(viewer.name)}
color={colors.white.base}
backgroundColor={colors.blue.base}
backgroundColor={viewer.color}
/>
<View style={styles.flexOne}>
<Text color={colors.gray.darker} size={15}>
Expand Down
1 change: 1 addition & 0 deletions src/recipes/typings/Viewer.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ interface Agent {
name: string;
subText: JSX.Element;
phone: string;
color: string;
}

export interface ViewerProps {
Expand Down

0 comments on commit 9b09e2e

Please sign in to comment.