Satyajit Sahoo
b66e3436a7
chore: publish
...
- @react-navigation/bottom-tabs@5.3.1
- @react-navigation/compat@5.1.12
- @react-navigation/drawer@5.6.1
- @react-navigation/material-bottom-tabs@5.1.12
- @react-navigation/material-top-tabs@5.1.12
- @react-navigation/native@5.2.1
- @react-navigation/stack@5.2.16
2020-05-01 00:28:55 +02:00
Satyajit Sahoo
1c075ffb16
fix: render fallback only if linking is enabled. closes #8161
2020-05-01 00:27:42 +02:00
Satyajit Sahoo
1ee3038a4d
chore: publish
...
- @react-navigation/bottom-tabs@5.3.0
- @react-navigation/compat@5.1.11
- @react-navigation/core@5.4.0
- @react-navigation/drawer@5.6.0
- @react-navigation/material-bottom-tabs@5.1.11
- @react-navigation/material-top-tabs@5.1.11
- @react-navigation/native@5.2.0
- @react-navigation/routers@5.4.2
- @react-navigation/stack@5.2.15
2020-04-30 23:01:46 +02:00
Satyajit Sahoo
499c50cd43
refactor: make history type-checked
2020-04-29 19:13:14 +02:00
Satyajit Sahoo
ae5442ebe8
fix: return onPress instead of onClick for useLinkProps
2020-04-28 23:05:16 +02:00
Satyajit Sahoo
6dd52d35cf
refactor: simplify resolving the thenable
2020-04-28 16:14:58 +02:00
Satyajit Sahoo
d6fa279d93
fix: add catch to thenable returned by getInitialState
2020-04-28 15:35:06 +02:00
Satyajit Sahoo
f2291d110f
feat: add a useLinkProps hook
2020-04-27 17:45:20 +02:00
Satyajit Sahoo
942d2be2c7
feat: add action prop to Link
2020-04-27 17:45:20 +02:00
Satyajit Sahoo
b747e527a4
refactor: remove onLink prop for now
2020-04-27 17:45:20 +02:00
Satyajit Sahoo
38020de80b
refactor: simplify API for useLinkBuilder
2020-04-27 17:45:20 +02:00
Satyajit Sahoo
2792f438fe
feat: add useLinkBuilder hook to build links
...
We need to be able to create links from a navigate action to have accessible links in the built-in components such as drawer and tabs.
2020-04-27 17:45:20 +02:00
satyajit.happy
2573b5beaa
feat: add Link component as useLinkTo hook for navigating to links
...
The `Link` component can be used to navigate to URLs. On web, it'll use an `a` tag for proper accessibility. On React Native, it'll use a `Text`.
Example:
```js
<Link to="/feed/hot">Go to 🔥 </Link>
```
Sometimes we might want more complex styling and more control over the behaviour, or navigate to a URL programmatically. The `useLinkTo` hook can be used for that.
Example:
```js
function LinkButton({ to, ...rest }) {
const linkTo = useLinkTo();
return (
<Button
{...rest}
href={to}
onPress={(e) => {
e.preventDefault();
linkTo(to);
}}
/>
);
}
```
2020-04-27 17:45:20 +02:00
Satyajit Sahoo
2697355ab2
chore: publish
...
- @react-navigation/bottom-tabs@5.2.8
- @react-navigation/compat@5.1.10
- @react-navigation/core@5.3.5
- @react-navigation/drawer@5.5.1
- @react-navigation/material-bottom-tabs@5.1.10
- @react-navigation/material-top-tabs@5.1.10
- @react-navigation/native@5.1.7
- @react-navigation/routers@5.4.1
- @react-navigation/stack@5.2.14
2020-04-27 02:57:03 +02:00
Satyajit Sahoo
5e0069a896
chore: publish
...
- @react-navigation/bottom-tabs@5.2.7
- @react-navigation/compat@5.1.9
- @react-navigation/core@5.3.4
- @react-navigation/drawer@5.5.0
- @react-navigation/material-bottom-tabs@5.1.9
- @react-navigation/material-top-tabs@5.1.9
- @react-navigation/native@5.1.6
- @react-navigation/routers@5.4.0
- @react-navigation/stack@5.2.11
2020-04-18 01:28:05 +02:00
Satyajit Sahoo
6bdf6ae4ed
fix: handle in-page go back when there's no history
...
fixes #7852
2020-04-10 17:59:40 +02:00
Satyajit Sahoo
49f658fbc0
chore: publish
...
- @react-navigation/bottom-tabs@5.2.6
- @react-navigation/compat@5.1.8
- @react-navigation/core@5.3.3
- @react-navigation/drawer@5.4.1
- @react-navigation/material-bottom-tabs@5.1.8
- @react-navigation/material-top-tabs@5.1.8
- @react-navigation/native@5.1.5
- @react-navigation/routers@5.3.0
- @react-navigation/stack@5.2.10
2020-04-08 12:17:31 +02:00
Juang, Yi-Lin
c4acdaa703
docs: fix typo ( #7865 )
2020-04-08 11:35:45 +02:00
Satyajit Sahoo
de5d985f3b
chore: upgrade depenendecies
2020-04-07 15:44:58 +02:00
Satyajit Sahoo
9556aa9eff
chore: publish
...
- @react-navigation/bottom-tabs@5.2.5
- @react-navigation/compat@5.1.7
- @react-navigation/core@5.3.2
- @react-navigation/drawer@5.4.0
- @react-navigation/material-bottom-tabs@5.1.7
- @react-navigation/material-top-tabs@5.1.7
- @react-navigation/native@5.1.4
- @react-navigation/routers@5.2.1
- @react-navigation/stack@5.2.9
2020-03-30 22:22:25 +02:00
Satyajit Sahoo
4ac40b5c5d
chore: update typescript and babel
2020-03-30 21:42:58 +02:00
Satyajit Sahoo
856449b200
chore: publish
...
- @react-navigation/bottom-tabs@5.2.4
- @react-navigation/compat@5.1.6
- @react-navigation/core@5.3.1
- @react-navigation/drawer@5.3.4
- @react-navigation/material-bottom-tabs@5.1.6
- @react-navigation/material-top-tabs@5.1.6
- @react-navigation/native@5.1.3
- @react-navigation/stack@5.2.6
2020-03-23 17:07:43 +01:00
Steven Bell
d94e43c3c8
fix: add info about android launchMode in useLinking error
2020-03-23 16:39:18 +01:00
Satyajit Sahoo
853740bfaf
chore: publish
...
- @react-navigation/bottom-tabs@5.2.3
- @react-navigation/compat@5.1.5
- @react-navigation/core@5.3.0
- @react-navigation/drawer@5.3.3
- @react-navigation/material-bottom-tabs@5.1.5
- @react-navigation/material-top-tabs@5.1.5
- @react-navigation/native@5.1.2
- @react-navigation/routers@5.2.0
- @react-navigation/stack@5.2.4
2020-03-23 00:00:55 +01:00
Satyajit Sahoo
179b6312fe
chore: update prettier
2020-03-22 23:58:06 +01:00
Satyajit Sahoo
bc9b044fb3
chore: publish
...
- @react-navigation/bottom-tabs@5.2.2
- @react-navigation/compat@5.1.4
- @react-navigation/core@5.2.3
- @react-navigation/drawer@5.3.2
- @react-navigation/material-bottom-tabs@5.1.4
- @react-navigation/material-top-tabs@5.1.4
- @react-navigation/native@5.1.1
- @react-navigation/stack@5.2.2
2020-03-19 19:48:37 +01:00
Satyajit Sahoo
358d9e9feb
chore: publish
...
- @react-navigation/bottom-tabs@5.2.1
- @react-navigation/compat@5.1.3
- @react-navigation/drawer@5.3.0
- @react-navigation/material-bottom-tabs@5.1.3
- @react-navigation/material-top-tabs@5.1.3
- @react-navigation/native@5.1.0
- @react-navigation/stack@5.2.1
2020-03-17 14:37:21 +01:00
Satyajit Sahoo
6a5d0a035a
feat: add permanent drawer type ( #7818 )
...
Co-authored-by: NoemiRozpara <nrozpara@gmail.com >
2020-03-17 14:11:00 +01:00
Satyajit Sahoo
b75744abd5
chore: publish
...
- @react-navigation/bottom-tabs@5.2.0
- @react-navigation/compat@5.1.2
- @react-navigation/core@5.2.2
- @react-navigation/drawer@5.2.0
- @react-navigation/material-bottom-tabs@5.1.2
- @react-navigation/material-top-tabs@5.1.2
- @react-navigation/native@5.0.10
- @react-navigation/routers@5.1.1
- @react-navigation/stack@5.2.0
2020-03-16 14:29:25 +01:00
Satyajit Sahoo
6dbda1a0c2
chore: upgrade depenendecies
2020-03-16 14:28:10 +01:00
Satyajit Sahoo
e071a978e6
chore: publish
...
- @react-navigation/bottom-tabs@5.1.1
- @react-navigation/compat@5.1.1
- @react-navigation/core@5.2.1
- @react-navigation/drawer@5.1.1
- @react-navigation/material-bottom-tabs@5.1.1
- @react-navigation/material-top-tabs@5.1.1
- @react-navigation/native@5.0.9
- @react-navigation/routers@5.1.0
- @react-navigation/stack@5.1.1
2020-03-03 11:58:45 +01:00
Satyajit Sahoo
3677818f63
chore: publish
...
- @react-navigation/bottom-tabs@5.1.0
- @react-navigation/compat@5.1.0
- @react-navigation/core@5.2.0
- @react-navigation/drawer@5.1.0
- @react-navigation/material-bottom-tabs@5.1.0
- @react-navigation/material-top-tabs@5.1.0
- @react-navigation/native@5.0.8
- @react-navigation/routers@5.0.3
- @react-navigation/stack@5.1.0
2020-02-26 13:57:42 +01:00
Satyajit Sahoo
225cb298b6
chore: publish
...
- @react-navigation/bottom-tabs@5.0.7
- @react-navigation/compat@5.0.7
- @react-navigation/core@5.1.6
- @react-navigation/drawer@5.0.7
- @react-navigation/material-bottom-tabs@5.0.7
- @react-navigation/material-top-tabs@5.0.7
- @react-navigation/native@5.0.7
- @react-navigation/routers@5.0.2
- @react-navigation/stack@5.0.7
2020-02-21 19:18:56 +01:00
Satyajit Sahoo
4578849ebf
chore: publish
...
- @react-navigation/bottom-tabs@5.0.6
- @react-navigation/compat@5.0.6
- @react-navigation/core@5.1.5
- @react-navigation/drawer@5.0.6
- @react-navigation/material-bottom-tabs@5.0.6
- @react-navigation/material-top-tabs@5.0.6
- @react-navigation/native@5.0.6
- @react-navigation/stack@5.0.6
2020-02-19 23:34:10 +01:00
Satyajit Sahoo
c084517d7b
chore: add release script
2020-02-19 23:30:12 +01:00
Satyajit Sahoo
5b7bbbdfd9
chore: publish
...
- @react-navigation/bottom-tabs@5.0.5
- @react-navigation/compat@5.0.5
- @react-navigation/core@5.1.4
- @react-navigation/drawer@5.0.5
- @react-navigation/material-bottom-tabs@5.0.5
- @react-navigation/material-top-tabs@5.0.5
- @react-navigation/native-stack@5.0.5
- @react-navigation/native@5.0.5
- @react-navigation/stack@5.0.5
2020-02-15 00:18:52 +01:00
Satyajit Sahoo
ac242fd281
refactor: discard all routes but last when getting action from state
2020-02-14 23:04:09 +01:00
Satyajit Sahoo
424c9469e4
chore: publish
...
- @react-navigation/bottom-tabs@5.0.4
- @react-navigation/compat@5.0.4
- @react-navigation/core@5.1.3
- @react-navigation/drawer@5.0.4
- @react-navigation/material-bottom-tabs@5.0.4
- @react-navigation/material-top-tabs@5.0.4
- @react-navigation/native-stack@5.0.4
- @react-navigation/native@5.0.4
- @react-navigation/stack@5.0.4
2020-02-14 18:50:01 +01:00
Satyajit Sahoo
0cca1309ec
chore: publish
...
- @react-navigation/bottom-tabs@5.0.3
- @react-navigation/compat@5.0.3
- @react-navigation/core@5.1.2
- @react-navigation/drawer@5.0.3
- @react-navigation/material-bottom-tabs@5.0.3
- @react-navigation/material-top-tabs@5.0.3
- @react-navigation/native-stack@5.0.3
- @react-navigation/native@5.0.3
- @react-navigation/stack@5.0.3
2020-02-12 16:58:48 +01:00
Satyajit Sahoo
94cff2380a
chore: publish
...
- @react-navigation/bottom-tabs@5.0.2
- @react-navigation/compat@5.0.2
- @react-navigation/core@5.1.1
- @react-navigation/drawer@5.0.2
- @react-navigation/material-bottom-tabs@5.0.2
- @react-navigation/material-top-tabs@5.0.2
- @react-navigation/native-stack@5.0.2
- @react-navigation/native@5.0.2
- @react-navigation/stack@5.0.2
2020-02-11 18:57:48 +01:00
Satyajit Sahoo
6c6102b459
fix: make getInitialState async on web
2020-02-11 15:40:49 +01:00
Satyajit Sahoo
b234b035c3
chore: publish
...
- @react-navigation/bottom-tabs@5.0.1
- @react-navigation/compat@5.0.1
- @react-navigation/core@5.1.0
- @react-navigation/drawer@5.0.1
- @react-navigation/material-bottom-tabs@5.0.1
- @react-navigation/material-top-tabs@5.0.1
- @react-navigation/native-stack@5.0.1
- @react-navigation/native@5.0.1
- @react-navigation/routers@5.0.1
- @react-navigation/stack@5.0.1
2020-02-10 17:22:48 +01:00
Satyajit Sahoo
86c39d2e0e
refactor: move types and base router to routers package
2020-02-10 16:04:20 +01:00
Satyajit Sahoo
ae680a1e3c
chore: upgrade depenendecies
2020-02-10 16:04:20 +01:00
Satyajit Sahoo
79ab56fe41
chore: release stable version
2020-02-05 14:54:44 +01:00
Satyajit Sahoo
a121844148
chore: prepare for stable release ( #354 )
2020-02-05 14:47:36 +01:00
Satyajit Sahoo
264537bdb4
chore: publish
...
- @react-navigation/bottom-tabs@5.0.0-alpha.45
- @react-navigation/compat@5.0.0-alpha.34
- @react-navigation/core@5.0.0-alpha.43
- @react-navigation/drawer@5.0.0-alpha.47
- @react-navigation/material-bottom-tabs@5.0.0-alpha.42
- @react-navigation/material-top-tabs@5.0.0-alpha.41
- @react-navigation/native-stack@5.0.0-alpha.35
- @react-navigation/native@5.0.0-alpha.35
- @react-navigation/routers@5.0.0-alpha.33
- @react-navigation/stack@5.0.0-alpha.70
2020-02-04 17:34:55 +01:00
osdnk
25c3fc440f
chore: publish
...
- @react-navigation/bottom-tabs@5.0.0-alpha.44
- @react-navigation/compat@5.0.0-alpha.33
- @react-navigation/core@5.0.0-alpha.42
- @react-navigation/drawer@5.0.0-alpha.46
- @react-navigation/material-bottom-tabs@5.0.0-alpha.41
- @react-navigation/material-top-tabs@5.0.0-alpha.40
- @react-navigation/native-stack@5.0.0-alpha.34
- @react-navigation/native@5.0.0-alpha.34
- @react-navigation/routers@5.0.0-alpha.32
- @react-navigation/stack@5.0.0-alpha.69
2020-02-04 11:04:43 +01:00
Michał Osadnik
bec2f754d4
refactor: rename NavigationNativeContainer to NavigationContainer ( #344 )
2020-02-04 10:21:16 +01:00
Satyajit Sahoo
ba85db28d4
chore: publish
...
- @react-navigation/bottom-tabs@5.0.0-alpha.43
- @react-navigation/compat@5.0.0-alpha.32
- @react-navigation/core@5.0.0-alpha.41
- @react-navigation/drawer@5.0.0-alpha.45
- @react-navigation/material-bottom-tabs@5.0.0-alpha.40
- @react-navigation/material-top-tabs@5.0.0-alpha.39
- @react-navigation/native-stack@5.0.0-alpha.33
- @react-navigation/native@5.0.0-alpha.33
- @react-navigation/routers@5.0.0-alpha.31
- @react-navigation/stack@5.0.0-alpha.67
2020-02-03 05:18:49 +01:00