Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
analysis-ui-components
Advanced tools
React components to build analysis UI
Maintained by Zakodium
> npm i analysis-ui-components
> npm i react-icons
import {
Accordion,
Header,
RootLayout,
SplitPane,
Toolbar,
} from 'analysis-ui-components';
import {
FaMeteor,
FaBook,
FaCogs,
FaTabletAlt,
FaGlasses,
FaArrowsAlt,
} from 'react-icons/fa';
function BasicExample() {
return (
<RootLayout
style={{
borderStyle: 'solid',
borderColor: 'rgb(213, 213, 213)',
borderWidth: '1px',
}}
>
<div style={{ display: 'flex', flexDirection: 'column' }}>
<Header>
<Toolbar orientation="horizontal">
<Toolbar.Item titleOrientation="horizontal" id="logo" title="Logo">
<FaMeteor />
</Toolbar.Item>
</Toolbar>
<Toolbar orientation="horizontal">
<Toolbar.Item id="a" title="User manual">
<FaBook />
</Toolbar.Item>
<Toolbar.Item id="b" title="General settings">
<FaCogs>
</Toolbar.Item>
<Toolbar.Item id="c" title="Full screen">
<FaTabletAlt />
</Toolbar.Item>
</Toolbar>
</Header>
</div>
<div
style={{
display: 'flex',
flexDirection: 'row',
}}
>
<div>
<Toolbar orientation="vertical">
<Toolbar.Item id="a" title="Glasses" active>
<FaGlasses />
</Toolbar.Item>
<Toolbar.Item id="b" title="Open in large mode">
<FaArrowsAlt />
</Toolbar.Item>
</Toolbar>
</div>
<div
ref={ref}
style={{
width: '100%',
height: '300px',
}}
>
<SplitPane initialSize="35%">
<div style={{ padding: 5 }}>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Illum
earum omnis, et voluptatum veniam repellendus similique! Sunt
nostrum necessitatibus reprehenderit asperiores excepturi
corrupti? Optio soluta illo quae ex nam nulla.
</div>
<div
style={{
width: '100%',
height: '100%',
flex: '1 1 0%',
}}
>
<Accordion>
<Accordion.Item title="Spectra" defaultOpened>
<p style={{ padding: 5 }}>Spectra lorem</p>
</Accordion.Item>
<Accordion.Item title="Integral">
<p style={{ padding: 5 }}>Integral lorem</p>
</Accordion.Item>
</Accordion>
</div>
</SplitPane>
</div>
</div>
</RootLayout>
);
}
0.18.0 (2022-10-20)
FAQs
React components to build analysis UI
The npm package analysis-ui-components receives a total of 1 weekly downloads. As such, analysis-ui-components popularity was classified as not popular.
We found that analysis-ui-components demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.