Skip to content

Commit 7db9d0a

Browse files
authored
revert repo related code (#99)
1 parent 2a2cc25 commit 7db9d0a

File tree

2 files changed

+73
-65
lines changed

2 files changed

+73
-65
lines changed

README.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Dropdown Item picker with search and autocomplete (typeahead) functionality for react native
44

55
[![license](https://img.shields.io/github/license/onmotion/react-native-autocomplete-dropdown)](https://img.shields.io/github/license/onmotion/react-native-autocomplete-dropdown)
6+
[![npm](https://img.shields.io/npm/v/react-native-autocomplete-dropdown.svg)](https://npmjs.com/package/react-native-autocomplete-dropdown)
7+
[![npm](https://img.shields.io/npm/dm/react-native-autocomplete-dropdown.svg)](https://npmjs.com/package/react-native-autocomplete-dropdown)
8+
9+
> This is documentation for version 3.x, if you are looking docs for version 2.x, you can find it [here](https://github.com/onmotion/react-native-autocomplete-dropdown/blob/main/README%5E2.md)
610
711
<p style="text-align: center;" align="center">
812
<img src="./screens/Example.png" width="500px" >
@@ -15,6 +19,10 @@ Dropdown Item picker with search and autocomplete (typeahead) functionality for
1519
<img src="./screens/ios.gif" width="280px" >
1620
</p>
1721

22+
> Run expo snack demo [@onmotion/react-native-autocomplete-dropdown](https://snack.expo.io/@onmotion/react-native-autocomplete-dropdown-v3)
23+
24+
<img src="./screens/expo-qr.png" width="150">
25+
1826
## Nav
1927

2028
- [react-native-autocomplete-dropdown](#react-native-autocomplete-dropdown)
@@ -35,13 +43,13 @@ Dropdown Item picker with search and autocomplete (typeahead) functionality for
3543
Run:
3644

3745
```bash
38-
npm install --save react-native-autocomplete-dropdown-extended
46+
npm install --save react-native-autocomplete-dropdown
3947
```
4048

4149
or
4250

4351
```bash
44-
yarn add react-native-autocomplete-dropdown-extended
52+
yarn add react-native-autocomplete-dropdown
4553
```
4654

4755
## Post-install Steps
@@ -74,7 +82,7 @@ Wrap your root component in `AutocompleteDropdownContextProvider` from `react-na
7482
import the package
7583

7684
```js
77-
import { AutocompleteDropdown } from 'react-native-autocomplete-dropdown-extended';
85+
import { AutocompleteDropdown } from 'react-native-autocomplete-dropdown';
7886
```
7987

8088
### Dataset item format
@@ -217,7 +225,7 @@ export const RemoteDataSetExample2 = memo(() => {
217225

218226
```
219227

220-
More examples see at <https://github.com/dravec/react-native-autocomplete-dropdown/tree/main/example>
228+
More examples see at <https://github.com/onmotion/react-native-autocomplete-dropdown/tree/main/example>
221229

222230
## Playground
223231

package.json

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -1,62 +1,62 @@
11
{
2-
"name": "react-native-autocomplete-dropdown-extended",
3-
"version": "1.1.0",
4-
"description": "Dropdown Item picker with search, support for accents and autocomplete (typeahead) functionality for react native",
5-
"main": "src/index.js",
6-
"typings": "src/index.d.ts",
7-
"repository": {
8-
"type": "git",
9-
"url": "git+ssh://[email protected]/dravec/react-native-autocomplete-dropdown.git"
10-
},
11-
"homepage": "https://github.com/dravec/react-native-autocomplete-dropdown",
12-
"keywords": [
13-
"react-native",
14-
"dropdown",
15-
"autocomplete",
16-
"picker",
17-
"typeahead",
18-
"select",
19-
"react native typeahead",
20-
"react native autocomplete",
21-
"react native dropdown",
22-
"react native picker",
23-
"react native select"
24-
],
25-
"author": "Alexandr Kozhevnikov <[email protected]>",
26-
"license": "MIT",
27-
"devDependencies": {
28-
"@babel/core": "^7.17.9",
29-
"@babel/eslint-parser": "^7.17.0",
30-
"@react-native-community/eslint-config": "^3.0.1",
31-
"@react-native-community/eslint-plugin": "^1.2.0",
32-
"@types/react": "*",
33-
"@types/react-native": "^0.72.0",
34-
"eslint": "^7.14.0",
35-
"eslint-config-prettier": "^8.5.0",
36-
"eslint-plugin-prettier": "^4.0.0",
37-
"eslint-plugin-unused-imports": "^2.0.0",
38-
"prettier": "^2.6.2",
39-
"typescript": "4.8.4"
40-
},
41-
"peerDependencies": {
42-
"react": "*",
43-
"react-native": ">=0.40.0",
44-
"react-native-svg": "^13.0.0"
45-
},
46-
"dependencies": {
47-
"lodash.debounce": "*",
48-
"prop-types": "*",
49-
"react-native-animatable": "^1.3.3",
50-
"react-native-feather": "^1.1.2",
51-
"react-native-size-matters": "^0.4.0"
52-
},
53-
"bugs": {
54-
"url": "https://github.com/dravec/react-native-autocomplete-dropdown/issues"
55-
},
56-
"directories": {
57-
"example": "example"
58-
},
59-
"scripts": {
60-
"test": "echo \"Error: no test specified\" && exit 1"
61-
}
62-
}
2+
"name": "react-native-autocomplete-dropdown",
3+
"version": "3.0.2",
4+
"description": "Dropdown Item picker with search and autocomplete (typeahead) functionality for react native",
5+
"main": "src/index.js",
6+
"typings": "src/index.d.ts",
7+
"repository": {
8+
"type": "git",
9+
"url": "git+ssh://[email protected]/onmotion/react-native-autocomplete-dropdown.git"
10+
},
11+
"homepage": "https://github.com/onmotion/react-native-autocomplete-dropdown",
12+
"keywords": [
13+
"react-native",
14+
"dropdown",
15+
"autocomplete",
16+
"picker",
17+
"typeahead",
18+
"select",
19+
"react native typeahead",
20+
"react native autocomplete",
21+
"react native dropdown",
22+
"react native picker",
23+
"react native select"
24+
],
25+
"author": "Alexandr Kozhevnikov <[email protected]>",
26+
"license": "MIT",
27+
"devDependencies": {
28+
"@babel/core": "^7.17.9",
29+
"@babel/eslint-parser": "^7.17.0",
30+
"@react-native-community/eslint-config": "^3.0.1",
31+
"@react-native-community/eslint-plugin": "^1.2.0",
32+
"@types/react": "*",
33+
"@types/react-native": "^0.72.0",
34+
"eslint": "^7.14.0",
35+
"eslint-config-prettier": "^8.5.0",
36+
"eslint-plugin-prettier": "^4.0.0",
37+
"eslint-plugin-unused-imports": "^2.0.0",
38+
"prettier": "^2.6.2",
39+
"typescript": "4.8.4"
40+
},
41+
"peerDependencies": {
42+
"react": "*",
43+
"react-native": ">=0.40.0",
44+
"react-native-svg": "^13.0.0"
45+
},
46+
"dependencies": {
47+
"lodash.debounce": "*",
48+
"prop-types": "*",
49+
"react-native-animatable": "^1.3.3",
50+
"react-native-feather": "^1.1.2",
51+
"react-native-size-matters": "^0.4.0"
52+
},
53+
"bugs": {
54+
"url": "https://github.com/onmotion/react-native-autocomplete-dropdown/issues"
55+
},
56+
"directories": {
57+
"example": "example"
58+
},
59+
"scripts": {
60+
"test": "echo \"Error: no test specified\" && exit 1"
61+
}
62+
}

0 commit comments

Comments
 (0)