Skip to content

Commit

Permalink
Merge pull request #15 from GeekyAnts/releases/3.0.4
Browse files Browse the repository at this point in the history
Releases/3.0.4
  • Loading branch information
Ajamuar authored Jul 15, 2021
2 parents 209eb18 + 5bc7a55 commit 9e49d0d
Show file tree
Hide file tree
Showing 235 changed files with 15,286 additions and 8,705 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# [nativebase.io](https://alpha.nativebase.io/)
# [nativebase.io](https://nativebase.io/)

This repo contains the website configuration and documentation for [NativeBase website](https://alpha.nativebase.io/).
This repo contains the website configuration and documentation for [NativeBase website](https://nativebase.io/).

## Contents

Expand Down
2 changes: 1 addition & 1 deletion docs/actionSheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ An Action Sheet is a dialog that displays a set of options. It appears on top of
NativeBase exports 3 modal-related components:

- **Actionsheet**: Provides the context and state for all components.
- **Actionsheet.Content**: Wrapper for the **Actionsheet.Header and Actionsheet.Item** components.
- **Actionsheet.Content**: Component to wrap the list of **Actionsheet.Item** components.
- **Actionsheet.Item**: A button to wrap the options of the Actionsheet.

```jsx
Expand Down
2 changes: 1 addition & 1 deletion docs/aspectRatio.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function Component() {
<Image
resizeMode="cover"
source={{
uri: "https://alpha.nativebase.io/img/icon.png",
uri: "https://nativebase.io/img/icon.png",
}}
/>
</AspectRatio>
Expand Down
8 changes: 4 additions & 4 deletions docs/breadCrumb.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function BreadcrumbComponent () {
<Breadcrumb.Link>Home (This is currently active)</Breadcrumb.Link>
</Breadcrumb.Item>
<Breadcrumb.Item>
<Breadcrumb.Link href="https://alpha.nativebase.io/" isExternal>
<Breadcrumb.Link href="https://nativebase.io/" isExternal>
Docs
</Breadcrumb.Link>
</Breadcrumb.Item>
Expand Down Expand Up @@ -90,7 +90,7 @@ function BreadcrumbComponent () {
<Breadcrumb.Link>Home (This is currently active)</Breadcrumb.Link>
</Breadcrumb.Item>
<Breadcrumb.Item>
<Breadcrumb.Link href="https://alpha.nativebase.io/" isExternal>
<Breadcrumb.Link href="https://nativebase.io/" isExternal>
Docs
</Breadcrumb.Link>
</Breadcrumb.Item>
Expand Down Expand Up @@ -138,7 +138,7 @@ function BreadcrumbComponent () {
<Breadcrumb.Link>Home (This is currently active)</Breadcrumb.Link>
</Breadcrumb.Item>
<Breadcrumb.Item>
<Breadcrumb.Link href="https://alpha.nativebase.io/" isExternal>
<Breadcrumb.Link href="https://nativebase.io/" isExternal>
Docs
</Breadcrumb.Link>
</Breadcrumb.Item>
Expand Down Expand Up @@ -186,7 +186,7 @@ function BreadcrumbComponent () {
</Breadcrumb.Link>
</Breadcrumb.Item>
<Breadcrumb.Item>
<Breadcrumb.Link href="https://alpha.nativebase.io/" isExternal>
<Breadcrumb.Link href="https://nativebase.io/" isExternal>
<HStack>
<Icon name="file-document" type="MaterialCommunityIcons" mr={1} />
<Text>Docs</Text>
Expand Down
28 changes: 13 additions & 15 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@ id: changelog
title: Changelog
---

## Features

- [Android] Shift accessibility focus on modal open
- Disabled style in button
- Drag indicator in ActionSheet

## Fixes

- Radio and checkbox accessibility warnings on web
- Modal multiple clicks lead to screen freeze on web
- Select scrolling fix for long list
- Actionsheet flicker on swipe
- Add safearea bottom inset in ActionSheet
- Select option invisible on iOS (Safari)
- Platform props type definitions fixes in Basic components
- Button type fixes
- Version bump from 3.0.3 to 3.0.4
- Add tokenised fontFamily support in Input #3796
- Make drag indicator optional in actionsheet #3797
- Export Toast TS props definition #3795
- Set fontFamily to heading in Heading component #3788
- Fix SSR not working #3786
- Fix box with linear gradient warning #3777
- Add color prop in Select's TS definition #3779
- Remove additional wrapper from Checkbox group #3798
- Add a prop to render FAB outside of portal #3829
- Fix input padding(top/bottom) not working on android #3825
- Fix custom fonts not working on android for some cases #3821

For more details. Visit [releases](https://github.com/GeekyAnts/NativeBase/releases/tag/v3.0.3).
For more details. Visit [releases](https://github.com/GeekyAnts/NativeBase/releases/tag/v3.0.4).
8 changes: 5 additions & 3 deletions docs/install-cra.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import { TileLink } from '../src/components';
<Tabs
defaultValue='template'
values={[
{ label: 'NativeBase template', value: 'template' },
{ label: 'Create React app CLI', value: 'cli' }
{ label: 'New Project', value: 'template' },
{ label: 'Existing Project', value: 'cli' }
]}>

<TabItem value="template">
Expand All @@ -22,21 +22,23 @@ The easiest way to get started with NativeBase in create react app is using Nati

```bash
npx create-react-app my-app --template nativebase
cd my-app/
yarn start
```

### TypeScript

```bash
npx create-react-app my-app --template nativebase-typescript
cd my-app/
yarn start
```

</TabItem>

<TabItem value="cli">

Create a new CRA project
Create a new CRA project If not exist

```bash
npx create-react-app my-app
Expand Down
Loading

0 comments on commit 9e49d0d

Please sign in to comment.