Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
dominguesgm-autocomplete
Advanced tools
Angular2 Input Autocomplete adaptation from ngui-auto-complete
After 0.13.0 or higher, ng2-auto-complete has been changed to @ngui/auto-complete. Here are the changes;
ng2-auto-complete
is moved to @ngui/auto-complete
.ng2-auto-complete
is moved to ngui-auto-complete
.Ng2AutoComplete
is moved to NguiAutoComplete
.Below are plunks for different scenarios:
Template Driven Forms
ngModel http://plnkr.co/edit/3pB1Gx?p=preview
Reactive Forms
FormGroup http://plnkr.co/edit/2osUq6?p=preview issue #49
FormControl http://plnkr.co/edit/A5CW2e?p=preview issue #100
Material Design
http://plnkr.co/edit/2YLDjX?p=preview&open=app/app.component.ts
Obervable Source
http://plnkr.co/edit/ExzNSh?p=preview
List Formatter Example
http://plnkr.co/edit/F9nrWp?p=preview
http://plnkr.co/edit/0QFYFHMmCAFmhbYAGQl7?p=preview (With custom css)
install @ngui/auto-complete
$ npm install @ngui/auto-complete --save
add map
and packages
to your systemjs.config.js
unless you are using webpack
map['@ngui/auto-complete'] = 'node_modules/@ngui/auto-complete/dist/auto-complete.umd.js';
import NguiAutoCompleteModule to your AppModule
import { NguiAutoCompleteModule } from '@ngui/auto-complete';
@NgModule({
imports: [BrowserModule, FormsModule, NguiAutoCompleteModule],
declarations: [AppComponent],
providers: [HTTP_PROVIDERS],
bootstrap: [ AppComponent ]
})
export class AppModule { }
<input auto-complete [(ngModel)]="myData" [source]="mySource" />
For full example, please check test
directory to see the example of;
systemjs.config.js
app.module.ts
app.component.ts
.This module is only improved and maintained by contributors like you;
As a contributor, it's NOT required to be skilled in Javascript nor Angular2. You can contribute to the following;
In result of your active contribution, you will be listed as a core contributor on https://ng2-ui.github.io, and a member of ng2-ui too.
If you are interested in becoming a contributor and/or a member of ng-ui,
please send me email to allenhwkim AT gmail.com
with your github id.
All options are optional except ngModel and source
ngModel
, any, variable that autocomplete result is assigned to
source
, array or string, required. data source for dropdown list
auto-complete-placeholder
, string, autocomplete input guide text
value-formatter
, string or function variable name, custom value formatting function. e.g. '(id) value', 'myValueFormatter'.
myValueFormatter(data: any): string {
return `(${data[id]}) ${data[value]`;
}
list-formatter
, string or function variable name, custom list formatting function. e.g. '(key) name', 'myListFormatter'.
myListFormatter(data: any): string {
return `(${data[key]}) ${data[name]`;
}
path-to-data
, string, e.g., data.myList
, path to array data in http response
min-chars, number
, when source is remote data, the number of character to see dropdown list
display-property-name
, string, key name of text to show. default is value
select-value-of
, string, when selected, return the value of this key as a selected item
blank-option-text
, string, guide text to allow empty value to be selected as in empty value of option
tag.
no-match-found-text
, string, guide text to show no result found.
valueChanged
/ ngModelChange
, callback function that is executed when a new dropdown is selected.
e.g. (valueChanged)="myCallback($event)"
loading-text
, text to be displayed when loading. Default, "Loading"
accept-user-input
boolean, if false
and does not match to source given, it goes back to the original value selected., If you don't event want user to type any, please use readonly="readonly"
to force user to select only from list.
max-num-list
number, maximun number of drop down list items. Default, unlimited
tab-to-select
boolean, if true
, pressing Tab will set the value from the selected item before focus leaves the control. Default is true
match-formatted
boolean, if true
, keyword will be matched against list values formatted with list-formatter
, instead of raw objects. Default is false
$ git clone https://github.com/ng2-ui/auto-complete.git
$ cd auto-complete
$ npm install
$ npm start
npm run
: List all available tasksnpm start
: Run app
directory for development using webpack-dev-server
with port 9001npm run clean
: Remove dist foldernpm run lint
: Lint TypeScript codenpm run build:ngc
: build ES modulenpm run build:umd
: Build UMD module ng2-map.umd.js
npm run build:app
: Build app/build/app.js
for runnable examplesnpm run build
: Build all(clean, build:ngc, build:umc, and build:app)FAQs
Angular2 Input Autocomplete adaptation from ngui-auto-complete
We found that dominguesgm-autocomplete demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.