vlad-doru / react-native-calendar-datepicker

React-Native cross-platform, calendar component.
Apache License 2.0
85 stars 37 forks source link

NPM package not up-tp-date #29

Open de-perotti opened 6 years ago

de-perotti commented 6 years ago

Last PR with the propTypes change hasn't been uploaded to NPM

src/pure/DaySelector.react.js

NPM

/**
* DaySelector pure component.
* @flow
*/

import React, { Component, PropTypes } from 'react';
import {
  Dimensions,
  PanResponder,
  TouchableHighlight,
  LayoutAnimation,
  View,
  Text,
  StyleSheet,
} from 'react-native';

GIT

/**
* DaySelector pure component.
* @flow
*/

import PropTypes from 'prop-types';
import React, { Component } from 'react';
import {
  Dimensions,
  PanResponder,
  TouchableHighlight,
  LayoutAnimation,
  View,
  Text,
  StyleSheet,
} from 'react-native';
import ViewPropTypes from '../util/ViewPropTypes';