
Security News
New React Server Components Vulnerabilities: DoS and Source Code Exposure
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.
vitessce-grid
Advanced tools
A simplified wrapper for react-grid-layout inspired by HiGlass viewconfigs
A simplified wrapper for react-grid-layout,
inspired by HiGlass viewconfigs. Features:
For more details, see the demo code.
layout: The layout, and the React components which should fill it.getComponent: Given a string, returns the actual React component.draggableHandle: A CSS path.padding, margin: Optional.reactGridLayoutProps: Pass other properties through to react-grid-layout.onAllReady: Called after all components have called onReady.function getComponent(name) { ... }
const responsiveLayout = {
columns: {
1200: [0, 5, 10, 12], ...
},
layout: [
{ component: 'Demo',
props: { text: 'header' },
x: 0, y: 0, w: 2 },
{ component: 'Demo',
props: { text: 'sidebar' },
x: 2, y: 0, h: 3 },
...
],
};
ReactDOM.render(
<VitessceGrid
layout={responsiveLayout}
getComponent={getComponent}
draggableHandle={`.${handleClass}`}
padding={50}
margin={25}
onAllReady={onAllReady}
reactGridLayoutProps={{ ... }}
/>,
document.getElementById('demo'),
);
FAQs
A simplified wrapper for react-grid-layout inspired by HiGlass viewconfigs
The npm package vitessce-grid receives a total of 487 weekly downloads. As such, vitessce-grid popularity was classified as not popular.
We found that vitessce-grid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 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
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.