Skip to content

Commit 55d64d3

Browse files
authored
Merge pull request #4906 from GeekyAnts/release/3.4.0-rc.11
Release/3.4.0 rc.11
2 parents a7ce27c + 2e1576d commit 55d64d3

File tree

25 files changed

+262
-158
lines changed

25 files changed

+262
-158
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <img src="https://raw.githubusercontent.com/GeekyAnts/NativeBase/master/img/header_new.png" alt="Nativebase Logo">
22

3-
[![Financial Contributors on Open Collective](https://opencollective.com/NativeBase/all/badge.svg?label=financial+contributors)](https://opencollective.com/NativeBase) [![](http://slack.nativebase.io/badge.svg)](http://slack.nativebase.io/) [![Build Status](https://travis-ci.org/GeekyAnts/NativeBase.svg?branch=master)](https://travis-ci.org/GeekyAnts/NativeBase) [![npm version](https://badge.fury.io/js/native-base.svg)](https://badge.fury.io/js/native-base) [![npm downloads](https://img.shields.io/npm/dt/native-base.svg)](https://npm-stat.com/charts.html?package=native-base&from=2016-04-01&to=2018-02-17)
3+
[![Financial Contributors on Open Collective](https://opencollective.com/NativeBase/all/badge.svg?label=financial+contributors)](https://opencollective.com/NativeBase) [![](https://img.shields.io/discord/785491682719301643?label=Discord&logo=discord&logoColor=%237289DA)](https://discord.com/invite/TSgCw2UPmb) [![Build Status](https://travis-ci.org/GeekyAnts/NativeBase.svg?branch=master)](https://travis-ci.org/GeekyAnts/NativeBase) [![npm version](https://badge.fury.io/js/native-base.svg)](https://badge.fury.io/js/native-base) [![npm downloads](https://img.shields.io/npm/dt/native-base.svg)](https://npm-stat.com/charts.html?package=native-base&from=2016-04-01&to=2018-02-17)
44

55
## NativeBase is a mobile-first, accessible component library for building a consistent design system across android, iOS & web.
66

example/storybook/stories/components/composites/Alert/action.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ export function Example() {
3737
<IconButton
3838
variant="unstyled"
3939
_focus={{ borderWidth: 0 }}
40-
icon={<CloseIcon size="3" color="coolGray.600" />}
40+
icon={<CloseIcon size="3" />}
41+
_icon={{ color: 'coolGray.600' }}
4142
onPress={() => setShow(false)}
4243
/>
4344
</HStack>

example/storybook/stories/components/composites/Alert/basic.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ export const Example = () => {
3030
<IconButton
3131
variant="unstyled"
3232
_focus={{ borderWidth: 0 }}
33-
icon={<CloseIcon size="3" color="coolGray.600" />}
33+
icon={<CloseIcon size="3" />}
34+
_icon={{ color: 'coolGray.600' }}
3435
/>
3536
</HStack>
3637
<Box pl="6" _text={{ color: 'coolGray.600' }}>

example/storybook/stories/components/composites/Alert/colorScheme.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ export function Example() {
3131
<IconButton
3232
variant="unstyled"
3333
_focus={{ borderWidth: 0 }}
34-
icon={<CloseIcon size="3" color="coolGray.600" />}
34+
icon={<CloseIcon size="3" />}
35+
_icon={{ color: 'coolGray.600' }}
3536
/>
3637
</HStack>
3738
<Box pl="6" _text={{ color: 'coolGray.600' }}>

example/storybook/stories/components/composites/Alert/composition.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ export function Example() {
3535
<IconButton
3636
variant="unstyled"
3737
_focus={{ borderWidth: 0 }}
38-
icon={<CloseIcon size="3" color="coolGray.600" />}
38+
icon={<CloseIcon size="3" />}
39+
_icon={{ color: 'coolGray.600' }}
3940
/>
4041
</HStack>
4142
<Box pl="6" _dark={{ _text: { color: 'coolGray.600' } }}>

example/storybook/stories/components/composites/Alert/status.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ export function Example() {
4646
<IconButton
4747
variant="unstyled"
4848
_focus={{ borderWidth: 0 }}
49-
icon={<CloseIcon size="3" color="coolGray.600" />}
49+
icon={<CloseIcon size="3" />}
50+
_icon={{ color: 'coolGray.600' }}
5051
/>
5152
</HStack>
5253
</VStack>

example/storybook/stories/components/composites/Alert/usage.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ export function Example() {
2929
<IconButton
3030
variant="unstyled"
3131
_focus={{ borderWidth: 0 }}
32-
icon={<CloseIcon size="3" color="coolGray.600" />}
32+
icon={<CloseIcon size="3" />}
33+
_icon={{ color: 'coolGray.600' }}
3334
/>
3435
</HStack>
3536
<Box pl="6" _text={{ color: 'coolGray.600' }}>

example/storybook/stories/components/composites/Divider/Basic.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ export const Example = () => {
88
<Heading mx="3" alignItems="center" flexDirection="row">
99
Chrome
1010
</Heading>
11-
<Divider my="2" />
11+
<Divider
12+
my="2"
13+
_light={{ bg: 'muted.800' }}
14+
_dark={{ bg: 'muted.50' }}
15+
/>
1216
<Heading mx="3" alignItems="center" flexDirection="row">
1317
Firefox
1418
</Heading>

example/storybook/stories/components/composites/Divider/Orientation.tsx

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,19 @@ export const Example = () => {
66
<Box alignItems="center">
77
<Box w="160">
88
<Heading mx="auto">Shoes</Heading>
9-
<Divider my="2" />
9+
<Divider
10+
my="2"
11+
_light={{ bg: 'muted.800' }}
12+
_dark={{ bg: 'muted.50' }}
13+
/>
1014
<Flex mx="3" direction="row" justify="space-evenly" h="60">
1115
<Heading py="2">Girls</Heading>
12-
<Divider orientation="vertical" mx="3" />
16+
<Divider
17+
orientation="vertical"
18+
mx="3"
19+
_light={{ bg: 'muted.800' }}
20+
_dark={{ bg: 'muted.50' }}
21+
/>
1322
<Heading py="2">Boys</Heading>
1423
</Flex>
1524
</Box>

example/storybook/stories/components/primitives/Input/Basic.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Input, Box } from 'native-base';
44
export const Example = () => {
55
return (
66
<Box alignItems="center">
7-
<Input mx="3" placeholder="Input" w="75%" maxWidth="300px" />
7+
<Input mx="3" placeholder="Input" w="100%" />
88
</Box>
99
);
1010
};

0 commit comments

Comments
 (0)