Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@smui/image-list
Advanced tools
Image lists are RTL aware containers for sets of images and optional content.
npm install --save-dev @smui/image-list
The latest SMUI v3 had a lot of changes, and these docs haven't been caught up yet. You should check out the demo page's code to see the latest usage.
<ImageList class="my-image-list">
{#each $images as image}
<Item>
<ImageAspectContainer>
<Image src={image.src} alt={image.title} />
</ImageAspectContainer>
<Supporting>
<Label>{image.description}</Label>
</Supporting>
</Item>
{/each}
</ImageList>
<script>
import ImageList, {
Item,
ImageAspectContainer,
Image,
Supporting,
Label,
} from '@smui/image-list';
import { images } from './store.js';
</script>
// style.scss
.my-image-list {
@include mdc-image-list-standard-columns(5);
max-width: 680px;
}
@media (max-width: 599px) {
.my-image-list {
@include mdc-image-list-standard-columns(3);
}
}
todo...
See Image lists in the Material design spec.
See Image List in MDC-Web for information about the upstream library's architecture.
FAQs
Svelte Material UI - Image List
The npm package @smui/image-list receives a total of 2,272 weekly downloads. As such, @smui/image-list popularity was classified as popular.
We found that @smui/image-list 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.