Socket
Socket
Sign inDemoInstall

react-native-blur

Package Overview
Dependencies
Maintainers
2
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-blur - npm Package Compare versions

Comparing version 3.0.0-alpha to 3.0.0

2

package.json
{
"name": "react-native-blur",
"version": "3.0.0-alpha",
"version": "3.0.0",
"description": "React Native Blur component",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -21,2 +21,4 @@ [![npm version](https://badge.fury.io/js/react-native-blur.svg)](https://badge.fury.io/js/react-native-blur)

**NOTE:** Latest version of the package is available in npm as `react-native-blur@3.0.0-alpha`
1. Install package via npm:

@@ -23,0 +25,0 @@

import React, { Component, PropTypes } from 'react';
import { View, requireNativeComponent, DeviceEventEmitter, } from 'react-native';
import { View, requireNativeComponent, DeviceEventEmitter, ViewPropTypes } from 'react-native';

@@ -77,3 +77,3 @@ const OVERLAY_COLORS = {

BlurView.propTypes = {
...View.propTypes,
...(ViewPropTypes || View.propTypes),
blurAmount: PropTypes.number,

@@ -80,0 +80,0 @@ blurType: PropTypes.oneOf(['dark', 'light', 'xlight']),

import React, { Component, PropTypes } from 'react';
import { View, requireNativeComponent } from 'react-native';
import { View, requireNativeComponent, ViewPropTypes } from 'react-native';

@@ -19,3 +19,3 @@ class BlurView extends Component {

BlurView.propTypes = {
...View.propTypes,
...(ViewPropTypes || View.propTypes),
blurType: PropTypes.oneOf(['dark', 'light', 'xlight']),

@@ -22,0 +22,0 @@ blurAmount: PropTypes.number,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc