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.
@smui/select
Advanced tools
Select menus provide the user with a choice between multiple items.
See MDC Select for more information on API and Sass mixins.
See the Sass variable file for styling variables.
npm install --save-dev @smui/select
<script>
import Select, {Option} from '@smui/select';
let fruits = ['Apple', 'Orange', 'Banana', 'Mango'];
let fruitChoice = '';
</script>
<Select bind:value={fruitChoice} label="Fruit">
<Option value=""></Option>
{#each fruits as fruit}
<Option value={fruit} selected={fruitChoice === fruit}>{fruit}</Option>
{/each}
</Select>
in action: https://sveltematerialui.com/demo/select
demo code: https://github.com/hperrin/svelte-material-ui/blob/master/site/src/routes/demo/select.svelte
todo...
1.0.0 (2020-08-04)
Note: Version bump only for package svelte-material-ui
FAQs
Svelte Material UI - Select
The npm package @smui/select receives a total of 6,666 weekly downloads. As such, @smui/select popularity was classified as popular.
We found that @smui/select 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.
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.