Skip to content

Commit ab5d1dd

Browse files
fix path in versioned_docs
1 parent 78238fb commit ab5d1dd

34 files changed

+35
-35
lines changed

versioned_docs/version-3.0.6/FAB.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: FAB
33
title: FAB
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
A floating action button is a circular icon button that hovers over content to promote a primary action in the application.
99

versioned_docs/version-3.0.6/actionSheet.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: actionSheet
33
title: ActionSheet
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
An Action Sheet is a dialog that displays a set of options. It appears on top of the app's content.
99

versioned_docs/version-3.0.6/alert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: alert
33
title: Alert
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Alerts` are used to communicate a state that affects a system, feature or page.
99

versioned_docs/version-3.0.6/alertDialog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: alertDialog
33
title: AlertDialog
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`AlertDialog` component is used to interrupt the user with a mandatory confirmation or action. AlertDialog composes [`Modal`](modal.md) so you can use all its props.
99

versioned_docs/version-3.0.6/avatar.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: avatar
33
title: Avatar
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Avatar` component is used to represent a user and it can display a profile picture, initials or a fallback icon.
99

versioned_docs/version-3.0.6/badge.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: badge
33
title: Badge
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Badges` are used to highlight an item's status for quick recognition.
99

versioned_docs/version-3.0.6/button.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: button
33
title: Button
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
The `Button` component is used to trigger an action or event.
99

versioned_docs/version-3.0.6/checkBox.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: checkBox
33
title: CheckBox
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
The `Checkbox` component is used in forms when a user needs to select multiple values from several options.
99

versioned_docs/version-3.0.6/divider.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: divider
33
title: Divider
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Divider` is used to visually separate content in a list or group.
99

versioned_docs/version-3.0.6/formControl.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: formControl
33
title: FormControl
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`FormControl` provides context such as `isInvalid`, `isDisabled`, and `isRequired` to form elements.
99

versioned_docs/version-3.0.6/heading.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: heading
33
title: Heading
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
Headings are used for rendering headlines. `Heading` composes [`Text`](text.md) so you can use all the style props.
99

versioned_docs/version-3.0.6/iconButton.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: iconButton
33
title: IconButton
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`IconButton` composes the `Button` component. It is generally used to make an Icon pressable.
99

versioned_docs/version-3.0.6/input.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: input
33
title: Input
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
The `Input` component is a component that is used to get user input in a text field.
99

versioned_docs/version-3.0.6/install-cra.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Install in Create React App project
55

66
import Tabs from '@theme/Tabs';
77
import TabItem from '@theme/TabItem';
8-
import { TileLink } from '../src/components';
8+
import { TileLink } from '../../src/components';
99

1010
<Tabs
1111
defaultValue='template'

versioned_docs/version-3.0.6/install-expo.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Install in Expo project
55

66
import Tabs from '@theme/Tabs';
77
import TabItem from '@theme/TabItem';
8-
import { TileLink } from '../src/components';
8+
import { TileLink } from '../../src/components';
99

1010
Expo helps you to create universal (iOS, Android and Web) React Native apps with no build configuration.
1111

versioned_docs/version-3.0.6/install-next.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Install in Next.js project
55

66
import Tabs from '@theme/Tabs';
77
import TabItem from '@theme/TabItem';
8-
import { TileLink } from '../src/components';
8+
import { TileLink } from '../../src/components';
99

1010
<Tabs
1111
defaultValue='new'

versioned_docs/version-3.0.6/install-rn.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ title: Install in React Native project
55

66
import Tabs from '@theme/Tabs';
77
import TabItem from '@theme/TabItem';
8-
import { TileLink } from '../src/components';
8+
import { TileLink } from '../../src/components';
99

1010
### Create a new project
1111

versioned_docs/version-3.0.6/installation.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: installation
33
title: Installation
44
---
55

6-
import { InstallationTiles } from '../src/components';
6+
import { InstallationTiles } from '../../src/components';
77

88
**NativeBase** is supported in [Expo](https://docs.expo.io/get-started/installation/) or React Native CLI initiated apps. Web support is made possible by [react-native-web](https://necolas.github.io/react-native-web/).
99

versioned_docs/version-3.0.6/kitchen-sink.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: kitchen-sink
33
title: Kitchen Sink
44
---
55

6-
import { KitchenSinkIframe, TileLink, NBHistory } from '../src/components';
6+
import { KitchenSinkIframe, TileLink, NBHistory } from '../../src/components';
77
import useBaseUrl from '@docusaurus/useBaseUrl';
88
import ExpoIcon from '@site/static/img/expo-icon.svg';
99
import useThemeContext from '@theme/hooks/useThemeContext';

versioned_docs/version-3.0.6/link.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: link
33
title: Link
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Links` are accessible elements used primarily for navigation. This component is styled to resemble a hyperlink.
99

versioned_docs/version-3.0.6/menu.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: menu
33
title: Menu
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
A dropdown menu for the common dropdown menu button design pattern.
99

versioned_docs/version-3.0.6/modal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: modal
33
title: Modal
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
A Modal is a window overlaid on either the primary window or another dialog window. Content behind a modal dialog is **inert**, meaning that users cannot interact with it.
99

versioned_docs/version-3.0.6/nativebase.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: Getting Started
44
slug: /
55
---
66

7-
import { KitchenSinkIframe, TileLink, NBHistory } from '../src/components';
7+
import { KitchenSinkIframe, TileLink, NBHistory } from '../../src/components';
88
import TOCInline from '@theme/TOCInline';
99

1010
<div className="tailwind">

versioned_docs/version-3.0.6/popOver.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: popOver
33
title: Popover
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Popover` is a non-modal dialog that floats around a trigger. It's used to display contextual information to the user, and should be paired with a pressable trigger element.
99

versioned_docs/version-3.0.6/progress.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: progress
33
title: Progress
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Progress` is used to display the progress status for a task that takes a long time or consists of several steps.
99

versioned_docs/version-3.0.6/radio.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: radio
33
title: Radio
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Radio` is used when only one choice may be selected in a series of options.
99

versioned_docs/version-3.0.6/select.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: select
33
title: Select
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
import { AndroidBadge } from "/src/components/index";
99

versioned_docs/version-3.0.6/skeleton.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: skeleton
33
title: Skeleton
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Skeleton` is used to display the loading state of a component.
99

versioned_docs/version-3.0.6/slider.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: slider
33
title: Slider
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
The `Slider` is used to allow users to make selections from a range of values.
99

versioned_docs/version-3.0.6/text.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: text
33
title: Text
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Text` is used to render text and paragraphs within an interface.
99

versioned_docs/version-3.0.6/textArea.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: textArea
33
title: TextArea
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
The `Textarea` component allows you to easily create multi-line text inputs.
99

versioned_docs/version-3.0.6/toast.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: toast
33
title: Toast
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
`Toast` is used to show alerts on top of an overlay. `Toast` will close itself when the close button is clicked, or after a timeout — the default is 5 seconds. The toast component is used to give feeback to users after an action has taken place.
99

versioned_docs/version-3.0.6/tooltip.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ id: tooltip
33
title: Tooltip
44
---
55

6-
import { ComponentTheme } from '../src/components';
6+
import { ComponentTheme } from '../../src/components';
77

88
A tooltip is a brief, informative message that appears when a user interacts with an element. Tooltips are usually initiated in one of two ways: through a mouse-hover gesture or through a keyboard-hover gesture.
99

versioned_docs/version-3.0.6/utility-first.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ id: utility-first
33
title: Utility First
44
---
55

6-
import { UtilityFirstExample } from '../src/components';
7-
import { KitchenSinkIframe, TileLink, NBHistory } from '../src/components';
6+
import { UtilityFirstExample } from '../../src/components';
7+
import { KitchenSinkIframe, TileLink, NBHistory } from '../../src/components';
88

99
React Native has a great StyleSheet API which is optimal for component-based systems. NativeBase leverages it and adds a layer of utility props and constraint based designed tokens on top of it.
1010

0 commit comments

Comments
 (0)