Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@ionic-selectable/core
Advanced tools
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.
<head>
.<!-- Ionic -->
<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic/core/dist/ionic/ionic.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@ionic/core/css/ionic.bundle.css" />
<!-- Ionic Selectable -->
<script type="module" src="https://cdn.jsdelivr.net/npm/@ionic-selectable/core/dist/ionic-selectable/ionic-selectable.esm.js"></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@ionic-selectable/core/dist/ionic-selectable/ionic-selectable.js"></script>
<ion-item>
<ion-label>Ports</ion-label>
<ionic-selectable
id="port"
should-store-item-value="false"
is-multiple="false"
item-value-field="id"
item-text-field="name"
placeholder="Select One"
group-text-field="country.name"
></ionic-selectable>
</ion-item>
var portElement = document.getElementById("port");
portElement.items = [
{ id: 1, name: "Salina Cruz", country: { name: "Mexico" } },
{ id: 3, name: "Veracruz", country: { name: "Mexico" } },
{ id: 2, name: "Alicante", country: { name: "Spain" } },
{ id: 4, name: "Santa Eugenia De Riveira", country: { name: "Spain" } },
{ id: 5, name: "Mantes", country: { name: "France" } },
];
portElement.value = { id: 1, name: 'Salina Cruz', country: { name: "Mexico"} };
portElement.hasConfirmButton = true;
portElement.addEventListener("changed", (event) => {
console.log(event);
});
portElement.addEventListener("closed", (event) => {
console.log(event);
});
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 @ionic-selectable/core receives a total of 197 weekly downloads. As such, @ionic-selectable/core popularity was classified as not popular.
We found that @ionic-selectable/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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.