
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
An Ionic component similar to Ionic Select, that allows to search items, including async search, group, add, edit, delete items, and much more.
Demo | Features | Getting started | FAQ | Docs
An Ionic component similar to Ionic Select, that allows to search items, including async search, infinite scrolling and more.
// Ionic 3
npm install ionic-selectable@3.4.0 --save
// Ionic 4
npm install ionic-selectable@4.5.0 --save
// Ionic 5 (Web Component) npm install ionic-selectable@5.0.0 --save
2. Import it.
First, import `IonicSelectableModule` to your `app.module.ts` that is normally located in `src\app\app.module.ts`.
import { IonicSelectableModule } from 'ionic-selectable';
@NgModule({ imports: [ IonicSelectableModule ] }) export class AppModule { }
**Note:** Additionally, if you use Ionic 3+ you might be as well using lazy loaded pages. Check if your pages have a module file, for example, `home.module.ts`, and if they do then import `IonicSelectableModule` to each page module too.
import { IonicSelectableModule } from 'ionic-selectable'; import { HomePage } from './home';
@NgModule({ declarations: [ HomePage ], imports: [ IonicPageModule.forChild(HomePage), IonicSelectableModule ] }) export class HomePageModule { }
3. Add it to template.
Port
```
import { IonicSelectableComponent } from 'ionic-selectable';
class Port {
public id: number;
public name: string;
}
@Component({ ... })
export class HomePage {
ports: Port[];
port: Port;
constructor() {
this.ports = [
{ id: 1, name: 'Tokai' },
{ id: 2, name: 'Vladivostok' },
{ id: 3, name: 'Navlakhi' }
];
}
portChange(event: {
component: IonicSelectableComponent,
value: any
}) {
console.log('port:', event.value);
}
}
For contribution and delevopment please refer to Contribution.
If you find this component useful, please star the repo to let others know that it's reliable. Also, share it with friends and colleagues who might find it useful as well. Thank you 😄
FAQs
An Ionic component similar to Ionic Select, that allows to search items, including async search, group, add, edit, delete items, and much more.
The npm package test-isc receives a total of 11 weekly downloads. As such, test-isc popularity was classified as not popular.
We found that test-isc 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.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.