Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"author": "Varun Kumar <varunon9@gmail.com>",
"license": "MIT",
"dependencies": {
"deprecated-react-native-prop-types": "^5.0.0",
"lodash.get": "^4.4.2",
"lodash.isequal": "^4.5.0",
"prop-types": "^15.5.10",
Expand Down
2 changes: 1 addition & 1 deletion src/agenda/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import {
View,
Dimensions,
Animated,
ViewPropTypes,
} from 'react-native';
import PropTypes from 'prop-types';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
import XDate from 'xdate';

import {parseDate, xdateToData} from '../interface';
Expand Down
2 changes: 1 addition & 1 deletion src/calendar/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import React, {Component} from 'react';
import {
View,
ViewPropTypes,
ScrollView,
Dimensions,
ActivityIndicator,
Platform
} from 'react-native';
import PropTypes from 'prop-types';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';

import XDate from 'xdate';
import dateutils from '../dateutils';
Expand Down