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.
@ausbom/card
Advanced tools
> Cards represent a unit of information and can consist of a title, image and description.
Cards represent a unit of information and can consist of a title, image and description.
When cards don’t include an image they should use a title with description text as mandatory fields. They also include an arrow to indicate it is clickable. Use this card type sparingly for specific components, such as a group of child links. The description has a max of 160 characters.
npm install @ausbom/card
import Card from '@ausbom/card'
import React from 'react'
import image from './image.png'
import ExternalLink16 from '@ausbom/icon/lib/icons/system/ExternalLink16'
<Card
image={(<img src={image} />)}
title="Card with image and no text"
id="card-image-1"
href="#"
/>
<Card
title="Gender Equality"
id="card-image-2"
href="/gender-equality"
titleTag="h4"
icon={ExternalLink16}
>
<p>The Bureau strives to be the model of an inclusive culture where diversity is valued to provide better outcomes for our people, customers and the community. </p>
</Card>
Media cards represent a piece of media and can consist of a title, image and meta data about the media.
npm install @ausbom/card
import { MediaCard } from '@ausbom/card'
import React from 'react'
import image from './image.png'
import ExternalLink16 from '@ausbom/icon/lib/icons/system/ExternalLink16'
<MediaCard
id="card1"
title="Card title"
image={(<img src="/my/image" />)}
meta={['2 mins read', '25 Jun 2019']}
href="/link/to/media"
/>
FAQs
> Cards represent a unit of information. They can consist of a title, image, description and metadata about media.
The npm package @ausbom/card receives a total of 15 weekly downloads. As such, @ausbom/card popularity was classified as not popular.
We found that @ausbom/card demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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.