Update version number to 1.3.8

This commit is contained in:
Markus Lindqvist 2023-01-19 08:08:16 +02:00
parent 87859ff684
commit a93b501aea
3 changed files with 8787 additions and 28 deletions

6
index.d.ts vendored
View File

@ -2,12 +2,10 @@ declare module 'react-native-circular-progress' {
import * as React from 'react';
import {
Animated,
Easing,
EasingFunction,
StyleProp,
ViewStyle
} from 'react-native';
import { ViewPropTypes } from 'deprecated-react-native-prop-types';
export interface AnimatedCircularProgressProps {
/**
@ -105,7 +103,7 @@ declare module 'react-native-circular-progress' {
/**
* Style of the entire progress container
*
* @type {ViewPropTypes.style}
* @type {StyleProp<ViewStyle>}
*/
style?: StyleProp<ViewStyle>;
@ -121,7 +119,7 @@ declare module 'react-native-circular-progress' {
/**
* Style of the children container
*
* @type {ViewPropTypes.style}
* @type {StyleProp<ViewStyle>}
*/
childrenContainerStyle?: StyleProp<ViewStyle>;

8804
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "react-native-circular-progress",
"version": "1.3.7",
"version": "1.3.8",
"description": "React Native component for creating animated, circular progress with react-native-svg",
"main": "index.js",
"repository": {
@ -25,10 +25,9 @@
},
"homepage": "https://github.com/bgryszko/react-native-circular-progress",
"dependencies": {
"prop-types": "^15.7.2"
"prop-types": "^15.8.1"
},
"peerDependencies": {
"deprecated-react-native-prop-types": "^2.3.0",
"react": ">=16.0.0",
"react-native": ">=0.50.0",
"react-native-svg": ">=7.0.0"