Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Awesome React Components | 35,639 | a month ago | 2 | cc0-1.0 | ||||||
Curated List of React Components & Libraries. | ||||||||||
Bootstrap Table | 11,519 | 247 | 36 | 5 days ago | 39 | September 22, 2022 | 214 | mit | JavaScript | |
An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation, Vue.js) | ||||||||||
Material Table | 3,410 | 264 | 158 | 4 months ago | 191 | March 12, 2022 | 23 | mit | JavaScript | |
Datatable for React based on material-ui's table with additional features | ||||||||||
Mui Datatables | 2,607 | 127 | 78 | a month ago | 155 | April 10, 2022 | 616 | mit | JavaScript | |
Datatables for React using Material-UI - https://www.material-ui-datatables.com | ||||||||||
Md Data Table | 1,919 | 302 | 27 | 2 years ago | 20 | December 14, 2016 | 307 | mit | JavaScript | |
Material Design Data Table for Angular Material | ||||||||||
Sketch Material | 866 | 2 years ago | 23 | mit | JavaScript | |||||
Sketch material is a sketch plugin that will help you generate complex material components like tables, chips, forms etc… | ||||||||||
Android Extensions | 547 | 5 months ago | 2 | April 19, 2021 | 5 | mit | Kotlin | |||
An Android library with modules to quickly bootstrap an Android application. | ||||||||||
Mddatatable | 527 | 13 | 2 | 4 years ago | 24 | November 23, 2016 | 152 | mit | JavaScript | |
Angular data table complete implementation of google material design based on Angular Material components. | ||||||||||
Angular Mat Table Crud | 362 | 6 months ago | 2 | TypeScript | ||||||
CRUD operations for the Angular Material Table | ||||||||||
React Table Example | 260 | 6 months ago | 9 | mit | TypeScript | |||||
React-Table v7 with Typescript and Material-UI |
paper-datatable-api
is a material design implementation of a data table.
See the component page for more information.
<link rel="import" href="bower_components/paper-datatable-api/dist/paper-datatable-api-column.html">
<link rel="import" href="bower_components/paper-datatable-api/dist/paper-datatable-api.html">
<iron-ajax auto url="data.json" last-response="{{data}}"></iron-ajax>
<paper-datatable-api data="[[data]]">
<paper-datatable-api-column draggable-column header="Fruit" property="fruit">
<template>
<span>{{value}}</span>
</template>
</paper-datatable-api-column>
<paper-datatable-api-column header="Color" property="color">
<template>
<span>{{value}}</span>
</template>
</paper-datatable-api-column>
</paper-datatable-api>
$ bower install paper-datatable-api --save
$ polymer serve --open
$ polymer test
$ npm install
$ gulp build
To build the project on changes in the src folder
$ gulp watch
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License version 3 of the License as published by the Free Software Foundation.