Not Working in Ionic v3
I have tried installing both ionic2-auto-complete and ionic3-auto-complete however, neither of them have worked. Here's my package.json:
{
"private": true,
"scripts": {
"start": "ionic-app-scripts serve",
"clean": "ionic-app-scripts clean",
"build": "ionic-app-scripts build",
"lint": "ionic-app-scripts lint"
},
"dependencies": {
"@angular/animations": "5.2.11",
"@angular/common": "5.2.11",
"@angular/compiler": "5.2.11",
"@angular/compiler-cli": "^7.2.7",
"@angular/core": "5.2.11",
"@angular/forms": "5.2.11",
"@angular/http": "5.2.11",
"@angular/platform-browser": "^5.2.11",
"@angular/platform-browser-dynamic": "5.2.11",
"@ionic-native/camera": "^4.18.0",
"@ionic-native/core": "~4.18.0",
"@ionic-native/file": "^4.18.0",
"@ionic-native/file-transfer": "^4.18.0",
"@ionic-native/in-app-browser": "^4.20.0",
"@ionic-native/media-capture": "^4.20.0",
"@ionic-native/screen-orientation": "^5.14.0",
"@ionic-native/splash-screen": "~4.18.0",
"@ionic-native/status-bar": "~4.18.0",
"@ionic/storage": "2.2.0",
"@ngx-translate/core": "^8.0.0",
"@ngx-translate/http-loader": "^1.0.0",
"chart.js": "^2.7.3",
"cordova-android": "^8.1.0",
"cordova-ios": "^5.0.1",
"cordova-plugin-camera": "^4.1.0",
"cordova-plugin-compat": "^1.2.0",
"cordova-plugin-device": "^2.0.3",
"cordova-plugin-file": "^6.0.2",
"cordova-plugin-file-transfer": "^1.7.1",
"cordova-plugin-inappbrowser": "3.1.0",
"cordova-plugin-ionic-keyboard": "^2.1.3",
"cordova-plugin-ionic-webview": "^4.1.0",
"cordova-plugin-media-capture": "^3.0.3",
"cordova-plugin-screen-orientation": "3.0.2",
"cordova-plugin-splashscreen": "^5.0.3",
"cordova-plugin-statusbar": "^2.4.3",
"cordova-plugin-transport-security": "^0.1.2",
"cordova-plugin-whitelist": "^1.3.4",
"dotenv": "^4.0.0",
"es6-promise-plugin": "4.2.2",
"ionic-angular": "3.9.2",
"ionicons": "^3.0.0",
"lodash": "^4.17.14",
"moment": "^2.24.0",
"rxjs": "5.5.11",
"sw-toolbox": "3.6.0",
"zone.js": "0.8.26"
},
"devDependencies": {
"@ionic/app-scripts": "3.2.4",
"typescript": "~2.6.2"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"cordova-plugin-statusbar": {},
"cordova-plugin-device": {},
"cordova-plugin-splashscreen": {},
"cordova-plugin-transport-security": {},
"cordova-plugin-camera": {},
"cordova-plugin-ionic-keyboard": {},
"cordova-plugin-media-capture": {},
"cordova-plugin-file-transfer": {},
"cordova-plugin-file": {},
"cordova-plugin-inappbrowser": {},
"cordova-plugin-screen-orientation": {},
"cordova-plugin-ionic-webview": {
"ANDROID_SUPPORT_ANNOTATIONS_VERSION": "27.+"
}
},
"platforms": [
"ios",
"android"
]
}
}
When I install ionic3-auto-complete, the only files that exist are CHANGELOG.md, LICENSE, package.json and README.md making it unusable.
When I install ionic2-auto-complete, I am unsure on how to pass the data. I am using a JSON API that is returning data based on a result. For example, when a user starts typing in the input field, the search is triggered and a JSON result is returned which should be parsed and displayed in the options list.
Any help is appreciated
I know the name is not clear but checkout ionic4-auto-complete for a compatable and currently maintained version.