/** * ## SleekGrid (@serenity-is/sleekgrid) * * A modern, lightweight, and highly customizable data grid component for web applications. * * - This is a complete rewrite of the original [SlickGrid](https://github.com/mleibman/SlickGrid) in TypeScript with ES6 modules * - Includes many of the extra features and fixes from the [6pac fork](https://github.com/6pac/SlickGrid/) * - Designed for high performance with large datasets and smooth scrolling * - Modular architecture with support for plugins, custom formatters, editors, and data providers * * @packageDocumentation */ export * from "./core"; export * from "./grid"; export * from "./layouts/frozen-layout"; export * from "./formatters"; export * from "./editors"; export * from "./data/groupitemmetadataprovider"; export * from "./plugins/autotooltips"; export * from "./plugins/rowmovemanager"; export * from "./plugins/rowselectionmodel";