{"id":31079618,"url":"https://github.com/esr-style/stylegrid","last_synced_at":"2025-09-16T10:47:06.740Z","repository":{"id":313663898,"uuid":"1052193873","full_name":"ESR-style/StyleGrid","owner":"ESR-style","description":"A free alternative to AG grid built by me for personal use case. ","archived":false,"fork":false,"pushed_at":"2025-09-07T16:16:00.000Z","size":610,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-07T18:21:28.578Z","etag":null,"topics":["aggrid","data-analysis","grid","pivot-chart","pivot-grid","table"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ESR-style.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-07T15:46:25.000Z","updated_at":"2025-09-07T16:17:13.000Z","dependencies_parsed_at":"2025-09-07T18:34:22.725Z","dependency_job_id":null,"html_url":"https://github.com/ESR-style/StyleGrid","commit_stats":null,"previous_names":["esr-style/stylegrid"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ESR-style/StyleGrid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESR-style%2FStyleGrid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESR-style%2FStyleGrid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESR-style%2FStyleGrid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESR-style%2FStyleGrid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ESR-style","download_url":"https://codeload.github.com/ESR-style/StyleGrid/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ESR-style%2FStyleGrid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275406503,"owners_count":25459366,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-16T02:00:10.229Z","response_time":65,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aggrid","data-analysis","grid","pivot-chart","pivot-grid","table"],"created_at":"2025-09-16T10:47:04.737Z","updated_at":"2025-09-16T10:47:06.724Z","avatar_url":"https://github.com/ESR-style.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Style Grid\n\nA modern, free, open-source React + TypeScript data grid inspired by AG Grid. Built from scratch by me to replicate as many powerful enterprise features as possible—without the license cost. It's still a work in progress, but already usable for rich data-heavy interfaces.\n\n\u003e Status: Currently a static project (not yet published to npm). The goal is to release it as an installable package / simple API so anyone can drop it into their project.\n\n## Why Style Grid?\nI wanted a fully featured grid (pivoting, grouping, filtering, exports, etc.) without paywalls. Rebuilding this was hard and still evolving, but the foundation is solid and extendable.\n\n## Core Features (Implemented)\n- Column resize, reorder, hide/show, pin left/right\n- Sorting (single \u0026 multi)\n- Text / number / date / set filters\n- Row selection (single \u0026 multi with checkboxes)\n- Grouping \u0026 pivot mode (drag \u0026 drop style configs)\n- Aggregations (sum, avg, count, min, max)\n- Virtual scrolling for large datasets\n- CSV / basic Excel-style export\n- Context menu, status bar, sidebar tools\n- Keyboard navigation \u0026 custom cell rendering\n\n## Roadmap / In Progress\n- Packaging to npm (import like: `import { StyleGrid } from 'style-grid'`)\n- Public API docs \u0026 examples site\n- More export formats \u0026 customization hooks\n- Theming system and dark mode polish\n- Better accessibility + test coverage\n- Performance tuning for 50k+ rows\n\n## Quick Start (Current Repo)\n```bash\ngit clone \u003cyour-fork-or-repo-url\u003e\ncd style-grid\nnpm install\nnpm run dev\n```\n\n## Minimal Usage Example\n```tsx\nimport { GridProvider } from './context/GridContext';\nimport { DataGridContent } from './components/DataGridContent';\nimport { generateMockData, mockColumnDefs } from './data/mockData';\n\nexport function App() {\n  const rowData = generateMockData(500);\n  return (\n    \u003cGridProvider options={{ columnDefs: mockColumnDefs, rowData }}\u003e\n      \u003cDataGridContent className=\"h-[600px]\" /\u003e\n    \u003c/GridProvider\u003e\n  );\n}\n```\n\n## Screenshots\n| Grid | Charts Panel | Data Analysis |\n|------|--------------|---------------|\n| ![Grid View](public/image1.png) | ![Charts Panel](public/image2.png) | ![Data Analysis Modal](public/image3.png) |\n\n## Contributing\nNot formal yet—open issues / ideas are welcome. Soon: guidelines + extension points.\n\n## License\nMIT – free for commercial \u0026 personal use.\n\n## Author / Contact\nCreated by **Samarth A K**  \nEmail: **esrsamarth@gmail.com**\n\n\u003cdiv align=\"center\" style=\"margin-top:32px;\"\u003e\n  \u003chr /\u003e\n  \u003cp\u003e\u003cstrong\u003eBuilt with ❤️ using React, TypeScript, Vite \u0026 Tailwind CSS\u003c/strong\u003e\u003c/p\u003e\n  \u003cblockquote style=\"font-style:italic; opacity:0.85;\"\u003e\n    “Free, open, and powerful. Style Grid exists so you don't have to choose between features and freedom.”\n  \u003c/blockquote\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesr-style%2Fstylegrid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fesr-style%2Fstylegrid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fesr-style%2Fstylegrid/lists"}