Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@material/shape
Advanced tools
Shapes direct attention, identify components, communicate state, and express brand.
Currently shape system for web only supports rounded corners.
npm install @material/shape
@import "@material/shape/mixins";
@import "@material/shape/functions";
Components are categorized as small, medium and large in shape system. Overriding below sass variables applies shape (rounded) to respective categories. For example, overriding $mdc-shape-medium-radius
variable would apply shape to all components that belong to medium category.
Variable | Description |
---|---|
$mdc-shape-small-component-radius | Rounded shape radius size for small components. Default value 4px . |
$mdc-shape-medium-component-radius | Rounded shape radius size for medium components. Default value 4px . |
$mdc-shape-large-component-radius | Rounded shape radius size for large components. Default value 0 . |
Please refer Material Design guidelines: Shape to learn about how components are categorized.
Mixin | Description |
---|---|
mdc-shape-radius($radius, $rtl-reflexive) | Shape API used by all other components to apply radius to appropriate corners. $radius can be single value or list of up to 4 radius corner values. Set $rtl-reflexive to true to flip the radius in RTL case, false by default. |
Use
mdc-shape-resolve-percentage-radius
sass function to resolve percentage unit value to absolute radius value.
Function | Description |
---|---|
mdc-shape-flip-radius($radius) | Flips the radius values in RTL context. $radius is list of 2-4 corner values. |
mdc-shape-resolve-percentage-radius($component-height, $radius) | Calculates the absolute radius value based on its component height. Use this for fixed height components only. |
mdc-shape-mask-radius($radius, $masked-corners) | Accepts radius number or list of 2-4 radius values and returns 4 value list with masked corners as mentioned in $masked-corners . |
mdc-shape-prop-value($radius) | Returns $radius value of shape category - large , medium or small . Otherwise, it returns the $radius itself if valid. $radius can be a single value or list of up to 4. |
Styles for applying shape to a fixed height component such as button looks like this:
@include mdc-shape-radius(mdc-shape-resolve-percentage-radius($mdc-button-height, $radius));
Where, $mdc-button-height
is the height of standard button and $radius
is the size of shape. mdc-shape-resolve-percentage-radius
function is used to resolve percentage unit value to absolute $radius
value based on component height.
Styles for applying shapes to dynamic height component such as card looks like this:
@include mdc-shape-radius($radius);
Where, $radius
is absolute value only.
Styles for applying shapes for specific corners such as drawer looks like this:
@include mdc-shape-radius(0 $radius $radius 0, $rtl-reflexive: true);
Where, only top-right & bottom-right corners are customizable and it automatically flips radius values based on RTL context when $rtl-reflexive
is set to true.
The styles for applying custom shape to button component instance looks like this:
@import "@material/button/mixins";
.my-custom-button {
@include mdc-button-shape-radius(50%);
}
In this example, the above styles applies 50% (pill) shape to button. It can also be absolute value (e.g., 8px
);
You would indirectly use the Shape API through respective component's mixin which takes care of applying radius to applicable corners for all its variants.
FAQs
Shape utilities for Material Components for the web
The npm package @material/shape receives a total of 355,862 weekly downloads. As such, @material/shape popularity was classified as popular.
We found that @material/shape 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.