Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@wedgekit/primitives
Advanced tools
Primitives are the building blocks of WedgeKit components. They are largely settings or wrapper components designed for keeping all WedgeKit components consistent in a composable and discoverable way.
Primitives are the building blocks of WedgeKit components. They are largely settings or wrapper components designed for keeping all WedgeKit components consistent in a composable and discoverable way.
yarn add @wedgekit/primitives
Base primitives like Row and Gutter should largely be avoided outside of building WedgeKit components, while Layout should be used for wider grid usage.
Gutter provides a consistent row gutter for elements and should wrap all base WedgeKit components.
const Button = () => (
<Gutter>
<button>Click Me</button>
</Gutter>
);
Row provides a consistent column gutter for elements and can wrap a composition of base WedgeKit components.
const Notification = () => (
<Row>
<Input />
<Button>Send</Button>
</Row>
);
The default export for @wedgekit/primitives is the primitive settings. At this time the only exported variable is base
.
FAQs
Primitives are the building blocks of WedgeKit components. They are largely settings or wrapper components designed for keeping all WedgeKit components consistent in a composable and discoverable way.
We found that @wedgekit/primitives demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 18 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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.