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
63 changes: 63 additions & 0 deletions .history/package_20221003212803.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
{
"name": "react-native-snap-carousel",
"version": "3.9.1",
"description": "Swiper/carousel component for React Native with previews, multiple layouts, parallax images, performant handling of huge numbers of items, and RTL support. Compatible with Android & iOS.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "github.com/meliorence/react-native-snap-carousel"
},
"keywords": [
"react",
"native",
"carousel",
"slider",
"swiper",
"flatlist",
"scrollview",
"parallax",
"images",
"infinite",
"scroll",
"scrolling",
"items",
"edge",
"snap",
"card",
"cards",
"stack",
"deck",
"tinder",
"android",
"ios",
"snapping",
"component",
"rtl"
],
"author": "Meliorence <[email protected]> (github.com/meliorence)",
"license": "BSD-3-Clause",
"dependencies": {
"prop-types": "^15.6.1",
"react-addons-shallow-compare": "15.6.2"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-native": "*"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"homepage": "https://github.com/meliorence/react-native-snap-carousel",
"bugs": {
"url": "https://github.com/meliorence/react-native-snap-carousel/issues"
},
"readmeFilename": "README.md"
}
65 changes: 65 additions & 0 deletions .history/package_20221003213733.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"name": "react-native-snap-carousel",
"version": "3.9.1",
"description": "Swiper/carousel component for React Native with previews, multiple layouts, parallax images, performant handling of huge numbers of items, and RTL support. Compatible with Android & iOS.",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "github.com/meliorence/react-native-snap-carousel"
},
"keywords": [
"react",
"native",
"carousel",
"slider",
"swiper",
"flatlist",
"scrollview",
"parallax",
"images",
"infinite",
"scroll",
"scrolling",
"items",
"edge",
"snap",
"card",
"cards",
"stack",
"deck",
"tinder",
"android",
"ios",
"snapping",
"component",
"rtl"
],
"author": "Meliorence <[email protected]> (github.com/meliorence)",
"license": "BSD-3-Clause",
"dependencies": {
"prop-types": "^15.6.1",
"react-addons-shallow-compare": "15.6.2",
"deprecated-react-native-prop-types": "2.2.0"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-native": "*",
"deprecated-react-native-prop-types": ">=2.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"homepage": "https://github.com/meliorence/react-native-snap-carousel",
"bugs": {
"url": "https://github.com/meliorence/react-native-snap-carousel/issues"
},
"readmeFilename": "README.md"
}
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,13 @@
"license": "BSD-3-Clause",
"dependencies": {
"prop-types": "^15.6.1",
"react-addons-shallow-compare": "15.6.2"
"react-addons-shallow-compare": "15.6.2",
"deprecated-react-native-prop-types": "2.2.0"
},
"peerDependencies": {
"react": ">=15.0.0",
"react-native": "*"
"react-native": "*",
"deprecated-react-native-prop-types": ">=2.0.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
Expand Down
3 changes: 2 additions & 1 deletion src/carousel/Carousel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, { Component } from 'react';
import { Animated, Easing, FlatList, I18nManager, Platform, ScrollView, View, ViewPropTypes } from 'react-native';
import { Animated, Easing, FlatList, I18nManager, Platform, ScrollView, View } from 'react-native';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
import PropTypes from 'prop-types';
import shallowCompare from 'react-addons-shallow-compare';
import {
Expand Down
3 changes: 2 additions & 1 deletion src/pagination/Pagination.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, { PureComponent } from 'react';
import { I18nManager, Platform, View, ViewPropTypes } from 'react-native';
import { I18nManager, Platform, View } from 'react-native';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
import PropTypes from 'prop-types';
import PaginationDot from './PaginationDot';
import styles from './Pagination.style';
Expand Down
3 changes: 2 additions & 1 deletion src/pagination/PaginationDot.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, { PureComponent } from 'react';
import { View, Animated, Easing, TouchableOpacity, ViewPropTypes } from 'react-native';
import { View, Animated, Easing, TouchableOpacity } from 'react-native';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
import PropTypes from 'prop-types';
import styles from './Pagination.style';

Expand Down
3 changes: 2 additions & 1 deletion src/parallaximage/ParallaxImage.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
// Parallax effect inspired by https://github.com/oblador/react-native-parallax/

import React, { Component } from 'react';
import { View, ViewPropTypes, Image, Animated, Easing, ActivityIndicator, findNodeHandle } from 'react-native';
import { View, Image, Animated, Easing, ActivityIndicator, findNodeHandle } from 'react-native';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
import PropTypes from 'prop-types';
import styles from './ParallaxImage.style';

Expand Down