Gathering detailed insights and metrics for ionic-search2
Gathering detailed insights and metrics for ionic-search2
Ionic Selectable is an Ionic versatile and highly customizable component that serves as a replacement to Ionic Select, and allows to search items, including async search, create items, customize the layout with templates and much more. It provides an intuitive API and is easy to set up and use.
npm install ionic-search2
Typescript
Module System
Min. Node Version
Node Version
NPM Version
73.8
Supply Chain
99
Quality
74.8
Maintenance
100
Vulnerability
100
License
TypeScript (69.66%)
HTML (25.46%)
SCSS (2.74%)
JavaScript (2.15%)
Total Downloads
597
Last Day
1
Last Week
3
Last Month
7
Last Year
47
553 Stars
163 Commits
127 Forks
12 Watching
6 Branches
5 Contributors
Minified
Minified + Gzipped
Latest Version
0.0.0
Package Id
ionic-search2@0.0.0
Unpacked Size
133.28 kB
Size
61.96 kB
File Count
21
NPM Version
5.6.0
Node Version
8.9.4
Cumulative downloads
Total Downloads
Last day
0%
1
Compared to previous day
Last week
0%
3
Compared to previous week
Last month
40%
7
Compared to previous month
Last year
-32.9%
47
Compared to previous year
28
An Ionic component similar to ion-select
, that allows to search items, including async search and infinite scrolling.
Download it using npm:
npm install ionic-select-searchable --save
SelectSearchable
to your main app module.import { NgModule } from '@angular/core';
import { SelectSearchableModule } from 'ionic-select-searchable';
@NgModule({
...
imports: [
...
SelectSearchableModule
],
...
})
export class AppModule { }
SelectSearchable
to your component template.<ion-item>
<select-searchable
title="Port"
[(ngModel)]="port"
[items]="ports"
itemValueField="id"
itemTextField="name"
[canSearch]="true"
(onChange)="portChange($event)">
</select-searchable>
</ion-item>
SelectSearchable
.import { Component } from '@angular/core';
import { SelectSearchable } from 'ionic-select-searchable';
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: SelectSearchable, value: any }) {
console.log('port:', event.value);
}
}
If you find this project useful, please star the repo to let people know that it's reliable. Also, share it with friends and colleagues that might find this useful as well. Thank you 😄
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 1
Reason
Found 0/15 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
68 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More