
Security News
PodRocket Podcast: Inside the Recent npm Supply Chain Attacks
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
@planview/pv-details
Advanced tools
@planview/pv-details
is a set of components meant to be composed to follow the patterns and specifications of the Planview Design System.
The Details panel allows users to view and modify information about selected artifacts. It typically displays specific details, attributes and actions related to the artifact in a structured format, providing users with access to relevant information and editing capabilities.
You can install @planview/pv-details
in multiple ways:
npm install @planview/pv-details --save
yarn add @planview/pv-details
DetailsPanel
is meant to be used in the ContentLayout
right panel:
import { ContentLayout } from '@planview/pv-uikit'
import { Input } from '@planview/pv-form'
import { DetailsPanel, DetailsPanelSection } from '@planview/pv-details'
const MyView = () => (
<ContentLayout right={true}>
<ContentLayout.Middle>{/*main content*/}</ContentLayout.Middle>
<ContentLayout.Right label="Selected artifact details">
<DetailsPanel header="My artifact">
<DetailsPanelSection label="Details">
<Input label="Name" value="My artifact">
</DetailsPanelSection>
</DetailsPanel>
</ContentLayout.Right>
</ContentLayout>
)
FAQs
Implementation of Planview Design system details panel
We found that @planview/pv-details demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 7 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
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.
Product
Socket Firewall is a free tool that blocks malicious packages at install time, giving developers proactive protection against rising supply chain attacks.