Skip to content

material-table-core/core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a7465c5 Β· Oct 18, 2024
Oct 5, 2023
May 21, 2024
Oct 17, 2024
May 21, 2024
Jan 10, 2021
Nov 8, 2023
Jul 26, 2021
Jan 10, 2021
Jul 30, 2021
May 21, 2024
Aug 6, 2018
Oct 18, 2024
May 1, 2022
Aug 6, 2021
Aug 7, 2021
Oct 17, 2024
May 21, 2024

Repository files navigation

@material-table/core

A highly customizable table library built on Material UI, forked from mbrn/material-table

build publish npm version discord


Check out our roadmap for upcoming features and improvements.

πŸ’Ύ Installation β€’ πŸŽ‰ Basic Usage
βœ… Why this repo exists? β€’ 🚧 Documentation β€’ βš™οΈ Demos


🚧 Mui V6 Support is in Progress

The team is working on migrating the library to be fully compatible with Material UI V6. Stay tuned!


πŸ› οΈ Installation

Install @material-table/core using npm or yarn:

npm install @material-table/core
or

bash
Code kopieren
yarn add @material-table/core
Refer to the installation guide for more information and advanced usage.

πŸ’‘ Basic Usage
javascript
Code kopieren
import MaterialTable from '@material-table/core';

function MyTable() {
  return (
    <MaterialTable
      title="Simple Table"
      columns={[
        { title: 'Name', field: 'name' },
        { title: 'Age', field: 'age', type: 'numeric' },
      ]}
      data={[
        { name: 'John', age: 30 },
        { name: 'Jane', age: 25 },
      ]}
      options={{
        sorting: true,
        filtering: true,
      }}
    />
  );
}

Explore more features and advanced usage in our documentation.

πŸ™Œ Sponsorship

We appreciate contributions and sponsorships! You can support this project through:

GitHub Sponsors

Open Collective Your support helps us maintain and improve the project.

πŸš€ Contributing

Thank you for considering contributing to the project! The following items are in urgent need of attention:

Refactor: Replace data-manager.js with React Context. Documentation: Help us improve the docs. Tests: Implement unit tests using Jest to improve stability. We appreciate all contributions, big or small. Check out our contributing guide for more details.