expo-blur
Advanced tools
Comparing version 9.0.2 to 9.0.3
import * as React from 'react'; | ||
import { View } from 'react-native'; | ||
export declare type BlurProps = { | ||
/** | ||
* A tint mode which will be applied to the view. | ||
* @default 'default' | ||
*/ | ||
tint: BlurTint; | ||
/** | ||
* A number from `1` to `100` to control the intensity of the blur effect. | ||
*/ | ||
intensity: number; | ||
@@ -6,0 +13,0 @@ } & React.ComponentProps<typeof View>; |
@@ -11,2 +11,6 @@ # Changelog | ||
## 9.0.3 — 2021-03-30 | ||
_This version does not introduce any user-facing changes._ | ||
## 9.0.2 — 2021-03-23 | ||
@@ -13,0 +17,0 @@ |
{ | ||
"name": "expo-blur", | ||
"version": "9.0.2", | ||
"version": "9.0.3", | ||
"description": "A component that renders a native blur view on iOS and falls back to a semi-transparent view on Android. A common usage of this is for navigation bars, tab bars, and modals.", | ||
@@ -39,3 +39,3 @@ "main": "build/index.js", | ||
}, | ||
"gitHead": "c2520eef58fddcc435c41d95829084f5f89b3e8e" | ||
"gitHead": "425be641cd8dd9eb89cba3f2649ce292856fab39" | ||
} |
@@ -5,3 +5,10 @@ import * as React from 'react'; | ||
export type BlurProps = { | ||
/** | ||
* A tint mode which will be applied to the view. | ||
* @default 'default' | ||
*/ | ||
tint: BlurTint; | ||
/** | ||
* A number from `1` to `100` to control the intensity of the blur effect. | ||
*/ | ||
intensity: number; | ||
@@ -8,0 +15,0 @@ } & React.ComponentProps<typeof View>; |
Sorry, the diff of this file is not supported yet
26442
254