
Security News
Deno 2.4 Brings Back deno bundle, Improves Dependency Management and Observability
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
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 56 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.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.