
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
eqwad-combo-box
Advanced tools
Eqwad ComboBox is a customizable select box for Angular2.
Examples are here.
Download it using npm:
npm install eqwad-combo-box
Follow the steps below to add Eqwad ComboBox to your app. Also check out Eqwad ComboBox Demo for an example of installation.
Include Eqwad ComboBox CSS file in your main app HTML file and configure SystemJS.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="node_modules/eqwad-combo-box/eqwad-combo-box.css">
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/angular2/bundles/angular2.js"></script>
<script>
System.config({
packages: {
app: {
format: 'register'
},
'../node_modules/eqwad-combo-box/': {
defaultExtension: 'js'
}
},
map: {
'eqwad-combo-box': '../node_modules/eqwad-combo-box/eqwad-combo-box'
}
});
System.import ('app/app').then(null, console.error.bind(console));
</script>
</head>
</html>
Import it to your app component.
import { Component, ViewChild } from 'angular2/core';
import { EqwadComboBox } from 'eqwad-combo-box';
@Component({
selector: 'app',
templateUrl: 'app.component.html',
directives: [
EqwadComboBox
]
})
export class AppComponent {
fabrics = [
{ name: 'Cotton', id: '1' },
{ name: 'Polyester', id: '2' },
{ name: 'Cotton/Polyester', id: '3' },
{ name: 'Rib Knit', id: '4' }
];
@ViewChild('fabricsComboBox') fabricsComboBox: EqwadComboBox;
constructor() {
select(item: Object) {
// Handle the event.
}
}
}
Declare it in the component's HTML file.
<eq-combo-box #fabricsComboBox
[items]=fabrics
[itemValueField]="'id'"
[itemTextField]="'name'"
[placeholder]="'Select fabric...'"
(onSelect)="select($event)">
</eq-combo-box>
FAQs
Eqwad ComboBox is a customizable select box for Angular2.
The npm package eqwad-combo-box receives a total of 0 weekly downloads. As such, eqwad-combo-box popularity was classified as not popular.
We found that eqwad-combo-box 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.