Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@blueprintui/grid
Advanced tools
Accelerate your development with a flexible UI datagrid that works everywhere.
Accelerate your development with a flexible UI datagrid that works everywhere.
To use the datagrid install the following,
npm install @blueprintui/grid @blueprintui/themes
Optional packages for layout and typography utilities are also available.
npm install @blueprintui/layout @blueprintui/typography
To use components the base theme CSS file must be loaded into the page. This can be done via a CSS import or HTML link.
@import '@blueprintui/themes/index.min.css';
@import '@blueprintui/themes/modern/index.min.css';
or
<link rel="stylesheet" href="@blueprintui/themes/index.min.css">
<link rel="stylesheet" href="@blueprintui/themes/modern/index.min.css">
Blueprint UI Components can be used via CDNs for fast and easy prototyping.
<link rel="stylesheet" href="https://unpkg.com/@blueprintui/themes/index.min.css">
<link rel="stylesheet" href="https://unpkg.com/@@blueprintui/themes/modern/index.min.css">
<script type="module">
import 'https://cdn.jsdelivr.net/npm/@blueprintui/grid/include/core.js/+esm';
</script>
Once the theme CSS is loaded the grid can be imported via JavaScript imports.
import '@blueprintui/grid/include/core.js';
import '@blueprintui/grid/include/keynav.js';
<body bp-theme="modern">
<bp-grid>
<bp-grid-header>
<bp-grid-column>Column</bp-grid-column>
<bp-grid-column>Column</bp-grid-column>
<bp-grid-column>Column</bp-grid-column>
<bp-grid-column>Column</bp-grid-column>
</bp-grid-header>
<bp-grid-row>
<bp-grid-cell>Cell</bp-grid-cell>
<bp-grid-cell>Cell</bp-grid-cell>
<bp-grid-cell>Cell</bp-grid-cell>
<bp-grid-cell>Cell</bp-grid-cell>
</bp-grid-row>
</bp-grid>
</body>
FAQs
Accelerate your development with a flexible UI datagrid that works everywhere.
The npm package @blueprintui/grid receives a total of 8 weekly downloads. As such, @blueprintui/grid popularity was classified as not popular.
We found that @blueprintui/grid demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.