react-native-input-autosuggest 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/package.json +8 -9
- package/src/index.tsx +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 VLS
|
|
4
4
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
5
5
|
of this software and associated documentation files (the "Software"), to deal
|
|
6
6
|
in the Software without restriction, including without limitation the rights
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-input-autosuggest",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "input autosuggest react native",
|
|
5
5
|
"main": "./lib/module/index.js",
|
|
6
6
|
"types": "./lib/typescript/src/index.d.ts",
|
|
@@ -60,19 +60,19 @@
|
|
|
60
60
|
"@eslint/compat": "^1.3.2",
|
|
61
61
|
"@eslint/eslintrc": "^3.3.1",
|
|
62
62
|
"@eslint/js": "^9.35.0",
|
|
63
|
-
"@react-native/babel-preset": "0.
|
|
64
|
-
"@react-native/eslint-config": "
|
|
63
|
+
"@react-native/babel-preset": "0.83.0",
|
|
64
|
+
"@react-native/eslint-config": "0.83.0",
|
|
65
65
|
"@types/jest": "^29.5.14",
|
|
66
66
|
"@types/react": "^19.1.12",
|
|
67
|
-
"@types/react-native": "^0.73.0",
|
|
68
67
|
"del-cli": "^6.0.0",
|
|
69
68
|
"eslint": "^9.35.0",
|
|
70
69
|
"eslint-config-prettier": "^10.1.8",
|
|
71
70
|
"eslint-plugin-prettier": "^5.5.4",
|
|
72
71
|
"jest": "^29.7.0",
|
|
73
72
|
"prettier": "^2.8.8",
|
|
74
|
-
"react
|
|
75
|
-
"react-native
|
|
73
|
+
"react": "19.1.0",
|
|
74
|
+
"react-native": "0.81.5",
|
|
75
|
+
"react-native-builder-bob": "^0.40.17",
|
|
76
76
|
"typescript": "^5.9.2"
|
|
77
77
|
},
|
|
78
78
|
"peerDependencies": {
|
|
@@ -113,13 +113,12 @@
|
|
|
113
113
|
]
|
|
114
114
|
},
|
|
115
115
|
"create-react-native-library": {
|
|
116
|
-
"typescript": true,
|
|
117
|
-
"languages": "js",
|
|
118
116
|
"type": "library",
|
|
117
|
+
"languages": "js",
|
|
119
118
|
"tools": [
|
|
120
119
|
"eslint",
|
|
121
120
|
"jest"
|
|
122
121
|
],
|
|
123
|
-
"version": "0.
|
|
122
|
+
"version": "0.56.1"
|
|
124
123
|
}
|
|
125
124
|
}
|
package/src/index.tsx
CHANGED