Skip to content

Commit ca92a9a

Browse files
committed
improved animations and merged PRs for version creation
1 parent bfd076b commit ca92a9a

File tree

8 files changed

+2682
-239
lines changed

8 files changed

+2682
-239
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,4 +65,4 @@ buck-out/
6565
/ios/Pods/
6666

6767
# ignore test files
68-
/app.js
68+
/app.*

app.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"name": "react-native-floating-label-input",
3-
"displayName": "react-native-floating-label-input"
2+
"name": "react_native_floating_label_input",
3+
"displayName": "react_native_floating_label_input"
44
}

src/global.d.ts global.d.ts

File renamed without changes.

index.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,13 @@ import FloatingLabelInput, {
77

88
export { FloatingLabelInput, setGlobalStyles };
99
export type { CustomLabelProps, FloatingLabelProps, SetGlobalStylesProps };
10+
11+
// /**
12+
// * @format
13+
// */
14+
15+
// import { AppRegistry } from 'react-native';
16+
// import App from './App';
17+
// import { name as appName } from './app.json';
18+
19+
// AppRegistry.registerComponent(appName, () => App);

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "react-native-floating-label-input",
33
"description": "A simple and customizable React Native TextInput with it's placeholder always shown.",
4-
"version": "1.3.14",
4+
"version": "1.4.0",
55
"author": "Caio Nilton <cnilton>",
66
"main": "index.tsx",
77
"private": false,
@@ -36,7 +36,7 @@
3636
"test": "jest",
3737
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
3838
},
39-
"peerDependencies": {
39+
"dependencies": {
4040
"react": "*",
4141
"react-native": "*",
4242
"react-native-reanimated": "*"

0 commit comments

Comments
 (0)