Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
@material/image-list
Advanced tools
MDC Image List provides a RTL-aware Material Design image list component. An Image List consists of several items, each containing an image and optionally supporting content (i.e. a text label).
npm install @material/image-list
The HTML structure for a Standard Image List is as follows:
<ul class="mdc-image-list my-image-list">
<li class="mdc-image-list__item">
<div class="mdc-image-list__image-aspect-container">
<img class="mdc-image-list__image" src="...">
</div>
<div class="mdc-image-list__supporting">
<span class="mdc-image-list__label">Text label</span>
</div>
</li>
...
</ul>
@use "@material/image-list/mdc-image-list";
The HTML structure above would be combined with an invocation of the standard-columns
mixin,
to establish how many columns should be displayed per line:
@use "@material/image-list";
.my-image-list {
@include image-list.standard-columns(5);
}
Images in a Standard Image list are constrained to 1:1 aspect ratio by default; this can be overridden using the
aspect
mixin documented below.
The Masonry Image List variant presents images vertically arranged into several columns, using CSS Columns. In this layout, images may be any combination of aspect ratios.
<ul class="mdc-image-list mdc-image-list--masonry my-masonry-image-list">
<li class="mdc-image-list__item">
<img class="mdc-image-list__image" src="...">
<div class="mdc-image-list__supporting">
<span class="mdc-image-list__label">Text label</span>
</div>
</li>
...
</ul>
Note: Masonry Image List items do not include the
mdc-image-list__image-aspect-container
element, since images in the list are not expected to be locked to a common aspect ratio.
This would be combined with an invocation of the mdc-image-list-masonry-columns
mixin, to establish how many columns
should be displayed:
.my-masonry-image-list {
@include image-list.masonry-columns(5);
}
CSS Class | Description |
---|---|
mdc-image-list | Mandatory. Indicates the root Image List element. |
mdc-image-list--masonry | Optional. Indicates that this Image List should use the Masonry variant. |
mdc-image-list--with-text-protection | Optional. Indicates that supporting content should be positioned in a scrim overlaying each image (instead of positioned separately under each image). |
mdc-image-list__item | Mandatory. Indicates each item in an Image List. |
mdc-image-list__image-aspect-container | Optional. Parent of each item's image element, responsible for constraining aspect ratio. This element may be omitted entirely if images are already sized to the correct aspect ratio. |
mdc-image-list__image | Mandatory. Indicates the image element in each item. |
mdc-image-list__supporting | Optional. Indicates the area within each item containing the supporting text label, if the Image List contains text labels. |
mdc-image-list__label | Optional. Indicates the text label in each item, if the Image List contains text labels. |
Mixin | Description |
---|---|
aspect($width-height-ratio) | Styles the aspect container elements within an Image List to conform to the given ratio, where 1 is 1:1, greater than 1 is wider, and less than 1 is taller. |
shape-radius($radius, $rtl-reflexive) | Sets the rounded shape to image list item with given radius size. Set $rtl-reflexive to true to flip radius values in RTL context, defaults to false. |
standard-columns($column-count, $gutter-size) | Styles a Standard Image List to display the given number of columns. $gutter-size is optional and overrides the default amount of space between items. |
masonry-columns($column-count, $gutter-size) | Styles a Masonry Image List to display the given number of columns. $gutter-size is optional and overrides the default amount of space between items. |
Note: Only one of the
*-columns
mixins should be used for any given Image List. Use the mixin appropriate to the variant being used.
The *-columns
mixins will grow and shrink items based on the Image List's overall width. Depending on
placement, this could be directly related to the viewport width, and images could become exceedingly large compared to
their actual rendered size. This can be restricted by using any of min-width
, width
, or max-width
on the Image
List:
@use "@material/image-list";
.my-image-list {
@include image-list.standard-columns(5);
max-width: 960px;
}
Note: Remember that any specified width will apply to the entire list, so be sure to account for the gutters as well.
Presenting a different number of columns for different viewport sizes is straightforward, since the only thing that needs to be changed are styles:
.my-image-list {
@include image-list.standard-columns(5);
}
@media (max-width: 599px) {
.my-image-list {
@include image-list.standard-columns(3);
}
}
Note: This advice is not applicable to Masonry Image List, where images do not share a common aspect ratio.
Images in an Image List typically use the img
element. However, if your assets don't have the same aspect ratio as
specified for list items, they will become distorted. In these cases, you can use a div
element in place of img
,
and set the background-image
of each.
Note: Ensuring your images are appropriately-sized prior to serving them to browsers is the most efficient and ideal approach to using MDC Image List. The
div
alternative is provided as a convenience. If you use this alternative, make sure to also include themdc-image-list__image-aspect-container
element around each item's image.
14.0.0 (2022-04-27)
unset
is unsupported in IE. (f460e23)validateTooltipWithCaretDistances
method. (3e30054)theme-styles
mixin... the value being retreived from the $theme
map and css property name was swapped. The mixin would request font-size
/font-weight
/letter-spacing
from the $theme
map (which expects size
/weight
/tracking
)... so these values would always be null
. (32b3913)attachTo
. (05db65e)showTimeout
is not set (indicating that this tooltip is about to be re-shown). (6ca8b8f)minRange
param to range sliders to request a minimum gap between the two thumbs. (8fffcb5)valueToAriaValueTextFn
and valueToValueIndicatorTextFn
functions are called for. (b6510c8)PiperOrigin-RevId: 444830518
PiperOrigin-RevId: 419837612
FAQs
The Material Components for the web image list component
The npm package @material/image-list receives a total of 618,196 weekly downloads. As such, @material/image-list popularity was classified as popular.
We found that @material/image-list demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.