Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@planview/pv-details

Package Overview
Dependencies
Maintainers
7
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@planview/pv-details

Implementation of Planview Design system details panel

latest
Source
npmnpm
Version
1.6.2
Version published
Maintainers
7
Created
Source

@planview/pv-details

@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.

Setup

You can install @planview/pv-details in multiple ways:

NPM

npm install @planview/pv-details --save

Yarn

yarn add @planview/pv-details

Usage

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>
)

Keywords

planview

FAQs

Package last updated on 10 Sep 2025

Did you know?

Socket

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.

Install

Related posts