Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@crave/farmblocks-empty-state
Advanced tools
A placeholder to use on screens without content.
import React from "react";
import { render } from "react-dom";
import EmptyState from "@crave/farmblocks-empty-state";
const text =
"Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Etiam porta sem malesuada magna mollis euismod.";
const imgSrc =
"https://sourcewhatsgood.com/assets/images/utility_images/gallery-third-about-a518a29f64.jpg";
const App = () => (
<EmptyState
imageSrc={imgSrc}
title="Empty State Title"
description={text}
actions={[
{
text: "Primary Action",
onClick: () => console.log("clicked"),
type: buttonTypes.PRIMARY,
},
]}
info={text}
/>
);
render(<App />, document.getElementById("root"));
property | type | description | Required |
---|---|---|---|
title | string | a text that is bold and will be rendered on the first line | Yes |
description | string | a text that will be rendered bellow title | |
imageSrc | string | image source to be rendered. This property overrides icon if both are present | |
icon | node | icon name to be rendered | |
actions | array of objects | each object corresponds to one button that will be rendered. We expect 3 required properties on each object: text (string), type(string) a valid farmblocks-theme.buttonTypes or any color, onClick (function) | |
info | string | a text that is smaller than the others and will be rendered bellow buttons |
MIT
FAQs
Farmblocks empty state
The npm package @crave/farmblocks-empty-state receives a total of 74 weekly downloads. As such, @crave/farmblocks-empty-state popularity was classified as not popular.
We found that @crave/farmblocks-empty-state demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 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
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.