https://github.com/revolist/svelte-datagrid
Svelte data grid spreadsheet best best features and performance from excel
https://github.com/revolist/svelte-datagrid
datagrid datatable export filtering grid grouping sorting spreadsheet svelte svelte-grid sveltejs
Last synced: 3 months ago
JSON representation
Svelte data grid spreadsheet best best features and performance from excel
- Host: GitHub
- URL: https://github.com/revolist/svelte-datagrid
- Owner: revolist
- License: mit
- Created: 2021-01-23T19:35:54.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-12T15:35:39.000Z (about 2 years ago)
- Last Synced: 2024-05-02T02:21:32.105Z (about 1 year ago)
- Topics: datagrid, datatable, export, filtering, grid, grouping, sorting, spreadsheet, svelte, svelte-grid, sveltejs
- Language: TypeScript
- Homepage: https://revolist.github.io/revogrid/
- Size: 479 KB
- Stars: 87
- Watchers: 8
- Forks: 9
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-svelte - svelte-datagrid - Powerful data grid library based on [revogrid](https://rv-grid.com) with best features from Excel. (UI Components / Table)
README
Powerful Svelte Data Grid component built on top of RevoGrid.
Support Millions of cells and thousands of columns easy and efficiently for fast data rendering. Easy to use.
Demo and API •
Key Features •
How To Use •
Installation •
Docs •
License
![]()
RevoGrid material theme.## Key Features
- **High Performance**: Handles millions of cells in the viewport with a powerful core built by default.
- **[Accessibility](https://rv-grid.com/guide/wcag)**: Follows WAI-ARIA best practices.
- **[Keyboard Support](https://rv-grid.com/guide/defs#Keyboard)**:
- Excel-like focus for efficient navigation and editing.
- Seamless copy/paste from Excel, Google Sheets, or any other sheet format.- **Lightweight**: Minimal initial bundle size . Can be imported with polyfills or as a module for modern browsers.
- **[Intelligent Virtual DOM](https://rv-grid.com/guide/overview#VNode-Reactive-DOM)**: Smart row recombination to minimize redraws.
- **[Virtual Scroll](https://rv-grid.com/guide/viewports)**: Handles large datasets with infinite scroll.
- **[Drag and Drop](https://rv-grid.com/guide/row/order)**: Drag and drop in [rows](https://rv-grid.com/guide/row/order) and [columns](https://rv-grid.com/guide/column/order).
- **[Sorting](https://rv-grid.com/guide/sorting)**: Multiple options, customizable per column, with advanced event handling.
- **[Filtering](https://rv-grid.com/guide/filters)**:
- Predefined system filters.
- Multi column filters.
- Conditional filters.
- Preserve existing collections.
- Custom filters to extend system filters with your own set.- **[Export](https://rv-grid.com/guide/export.plugin)**: Export data to file.
- **Custom Sizes**: Define custom sizes for [columns](https://rv-grid.com/guide/column/#Column-Size) and [rows](https://rv-grid.com/guide/row/height). Automatic sizing based on content.
- **[Column Resizing](https://rv-grid.com/guide/column/resize)**: Adjust column widths.
- **Pinned/Sticky/Freezed Elements**:
- [Columns](https://rv-grid.com/guide/column/pin) (define left or right).
- [Rows](https://rv-grid.com/guide/row/pin) (define top or bottom).- **Grouping**:
- [Column grouping](https://rv-grid.com/guide/column/grouping) (nested headers).
- [Row grouping](https://rv-grid.com/guide/row/grouping) (nested rows).- **Column Types**: [More details](https://rv-grid.com/guide/column/#Column-Formats)
- [Text/String](https://rv-grid.com/guide/column/types#String) (default).
- [Number](https://rv-grid.com/guide/column/types#Number).
- [Select/Dropdown](https://rv-grid.com/guide/column/types#Select-Dropdown).
- [Date](https://rv-grid.com/guide/column/types#Date).
- Custom (create extended styles using any template).- **Range Operations**:
- [Selection](https://rv-grid.com/guide/defs#Range).
- [Editing](https://rv-grid.com/guide/defs#Range-Autofill).- **[Theme Packages](https://rv-grid.com/guide/theme)**:
- Excel-like (default).
- Material (compact, dark, or light).- **[Extensibility](https://rv-grid.com/guide/jsx.template)**: Modern VNode features and tsx support for easy extension.
- **[Trimmed Rows](https://rv-grid.com/guide/row/#Trimmed-Rows)**: Hide rows on demand.
- **[Plugin System](https://rv-grid.com/guide/plugin/)**: Create custom plugins or extend existing ones easily.
- **[Formula Support](https://rv-grid.com/guide/cell/formula)**: Evaluate formulas in cell data.
- **[Master Detail/Subtables/Forms](https://rv-grid.com/guide/row/master.pro)**: Expand rows to reveal child data.
- **[Cell/Column/Row Span/Merge](https://rv-grid.com/guide/cell/merge)**: Merge cells to form groups.- **Customizations**:
- [Column header template](https://rv-grid.com/guide/column/header.template).
- [Row header template](https://rv-grid.com/guide/row/headers).
- [Cell properties](https://rv-grid.com/guide/cell/) (define custom properties for rendered cells).> ⚠️ **Note**: Repository Notice: This repo is read-only. Create new issues at the [revogrid repo](https://github.com/revolist/revogrid)
- [Cell template](https://rv-grid.com/guide/cell/renderer) (create your own cell views).
- [Cell editor](https://rv-grid.com/guide/cell/editor) (use predefined or apply your own custom editors and cell types).- **Rich API & Additional Improvements**: Explore hundreds of other small customizations and improvements in [RevoGrid](https://rv-grid.com/).
### Usage Svelte
With NPM:
```bash
npm i @revolist/svelte-datagrid
```With Yarn:
```bash
yarn add @revolist/svelte-datagrid;
``````svelte
// App.svelteimport { RevoGrid, type ColumnRegular } from '@revolist/svelte-datagrid';
const source = [
{
name: '1',
details: 'Item 1',
},
{
name: '2',
details: 'Item 2',
},
];
const columns: ColumnRegular[] = [
{
prop: 'name',
name: 'First',
cellTemplate(h, { value }) {
return h('span', { style: { background: 'red' } }, value);
}
},
{
prop: 'details',
name: 'Second',
},
];
```
[Example and guide](https://rv-grid.com/guide/svelte/)
We have updated our latest version to support **Svelte 5** following its official release. 🎉
Read more about the announcement here: [Svelte 5 is Alive](https://svelte.dev/blog/svelte-5-is-alive).If you want to continue using **Svelte 4**, please switch to the [svelte-4](https://github.com/revolist/svelte-datagrid/tree/svelte-4) branch or use version prior to 4.11.0.
---
- [ Vue 3](https://rv-grid.com/guide/vue3/) and [Vue 2](https://rv-grid.com/guide/vue2/)
- [ React](https://rv-grid.com/guide/react/)
- [ Angular](https://rv-grid.com/guide/angular/)
- [ Svelte](https://rv-grid.com/guide/svelte/)
- [ JavaScript](https://rv-grid.com/guide/)## Versions
- **2.0+**: Introduced the plugin system, grouping, sorting, and filtering.
- **3.0+**: Breaking changes introduced:
- Removed the redundant viewport component.
- Renamed classes to support Bootstrap and other libraries:
- `row` -> `rgRow`
- `col` -> `rgCol`
- `data-cell` -> `rgCell`
- `data-header-cell` -> `rgHeaderCell`
- Migrated all method names to lowercase to align with modern event naming conventions. For example, `afterEdit` is now `afteredit`. Check the API for details.
- Added support for pure ESM modules to enable the use of the grid in all modern frontend tooling like Vite, Parcel, etc. You can now import custom elements without lazy loading. Note that you are responsible for polyfills.- **4.0+**: Breaking changes introduced. See the [migration guide](https://rv-grid.com/guide/migration).
- Redesigned type support:
- Removed deprecated namespaces:
- **Before**: `RevoGrid.ColumnRegular`
- **Now**: `ColumnRegular`;
- Improved type import:
- **Before**: `import { RevoGrid } from '@revolist/revogrid/dist/types/interfaces'`
- **Now**: `import { ColumnRegular } from '@revolist/revogrid'`.
- Changed viewport type names everywhere. For example, before: `rowDefinitions: [{ type: "row", index: 0, size: 145 }]`, after: `rowDefinitions: [{ type: "rgRow", index: 0, size: 145 }]`.
- Updated [event](https://rv-grid.com/guide/api/revoGrid.html#Events) naming convention. Review your [event](https://rv-grid.com/guide/api/revoGrid.html#Events) usage. [Event names](https://rv-grid.com/guide/api/revoGrid.html#Events) are all lowercase now and are aligned with modern event naming conventions. For example, `afterEdit` -> `afteredit`.
- Multiple event breaking changes introduced: beforerowrender now returns `BeforeRowRenderEvent`. Check all events for details.- **Major improvements**:
- Rethought the entire framework approach. Introduced Pro version with advance support and pro features.
- Introduced slot support.
- Updated scrolling system for better mobile support.
- Advance template support. Introduced `additionalData` for templates and editors. `Prop` gives access to parent/root app context.
- Redesigned the documentation.
- Fixed major issues and significantly improved overall performance, making the grid multiple time faster.
- Enhanced plugin support - now with full access to grid providers.
- Updated documentation.
- Provided full framework support and native render for Angular, React, Svelte and Vue.
- **What next?**
- Check our [Roadmap](https://github.com/users/revolist/projects/3)## Our Sponsors
We would like to extend our heartfelt gratitude to our sponsors for their generous support. Their contributions help us maintain and develop RevoGrid.
[](https://altruistiq.com)
### Become a Sponsor
If you or your company would like to support the ongoing development of RevoGrid, please consider [](https://opencollective.com/revogrid) or use a [Pro version](https://rv-grid.com/pro/). Your support will help us continue to improve the project and provide the best possible tool for the community.
Thank you for supporting RevoGrid! 🙏
## Contributing
By getting involved, you'll have the opportunity to enhance your skills, gain valuable experience, and make a significant impact on an innovative project. Your contribution, no matter how big or small, is valuable.
### Why Contribute?
- **Expand Your Knowledge**: Working on complex libraries allows you to dive deep into modern web technologies, improve your coding skills, and learn best practices in performance optimization, data handling, and component-based architecture.
- **Experience**: Contributing to an open-source project like provides you with practical experience that can be a great addition to your portfolio. It demonstrates your ability to work collaboratively, solve complex problems, and contribute to a project's success.
- **Professional Growth**: By contributing, you become part of a network of talented developers. This can lead to mentorship opportunities, collaborations, and professional connections that can benefit your career.## License
MIT
---