Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@framv/sheet

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@framv/sheet

Spreadsheet component for framv — sort, filter, formulas and CSV export as a declarative custom element

latest
Source
npmnpm
Version
0.1.3
Version published
Maintainers
1
Created
Source

@framv/sheet

<framv-sheet> — spreadsheet component with sort, filter, formula bar, and CSV/PDF export.

Install

npm install @framv/sheet

CDN

<script src="https://cdn.jsdelivr.net/npm/@framv/core/dist/bundle.iife.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@framv/sheet/dist/bundle.iife.js"></script>

<framv-sheet sortable filterable>
  <table>
    <thead>
      <tr>
        <th>Product</th>
        <th>Price</th>
        <th>Stock</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td>Widget</td>
        <td>29.99</td>
        <td>150</td>
      </tr>
      <tr>
        <td>Gadget</td>
        <td>49.99</td>
        <td>85</td>
      </tr>
    </tbody>
  </table>
</framv-sheet>

Attributes

AttributeDescription
sortableClick headers to sort
filterableShow filter row
editableInline cell editing

Formula bar

Supports =SUM(A2:A10), =AVG(B:B), =MAX(...), =MIN(...), =COUNT(...).

Export

CSV and PDF export buttons in the toolbar.

FAQs

Package last updated on 23 May 2026

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