New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

a-autocomplete

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

a-autocomplete

Wrapper for Jquery ui autocomplete

latest
Source
npmnpm
Version
0.0.1-beta-9
Version published
Weekly downloads
50
47.06%
Maintainers
1
Weekly downloads
 
Created
Source

A-Autocomplete

Angular lib wrapper for JQuery ui Autocomplete

Install

npm install --save a-autocomplete

Usage

  • Import the module in your module.
  import {AAutocompleteModule} from 'a-autocomplete';


  @NgModule({
    ...
    imports:[AAutocompleteModule]
    ...
  })
  • Include the js and the css in your .angular-cli.json
  ...
  "styles": [
    "../node_modules/jquery-ui-dist/jquery-ui.min.css"
  ],
  "scripts": [
    "../node_modules/jquery/dist/jquery.min.js",
    "../node_modules/jquery-ui-dist/jquery-ui.min.js"
  ]
  ...
  • Use it in the component
  <input [options]="{source: ['hola', 'mundo']}" a-autocomplete>

You can set any autocomplete option, that jquery-ui autocomplete in [Autocomplete Docs] (http://api.jqueryui.com/autocomplete/)

FAQs

Package last updated on 18 Nov 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts