Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/primefaces/primereact
The Most Complete React UI Component Library
https://github.com/primefaces/primereact
bootstrap bootstrap-table charts datatable flex flex-carousel flex-galleria grid material material-table primereact react react-components responsive-components ripple ripple-effect tree treetable ui-components
Last synced: 6 days ago
JSON representation
The Most Complete React UI Component Library
- Host: GitHub
- URL: https://github.com/primefaces/primereact
- Owner: primefaces
- License: mit
- Created: 2016-12-16T15:56:27.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-26T16:23:20.000Z (16 days ago)
- Last Synced: 2024-12-30T10:02:21.152Z (13 days ago)
- Topics: bootstrap, bootstrap-table, charts, datatable, flex, flex-carousel, flex-galleria, grid, material, material-table, primereact, react, react-components, responsive-components, ripple, ripple-effect, tree, treetable, ui-components
- Language: CSS
- Homepage: https://primereact.org
- Size: 247 MB
- Stars: 7,159
- Watchers: 73
- Forks: 1,062
- Open Issues: 383
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-react-cn - primereact - A complete UI Framework for React with 50+ components featuring material, bootstrap and custom themes. (Uncategorized / Uncategorized)
- awesome - primefaces/primereact - The Most Complete React UI Component Library (CSS)
- awesome - primereact - PrimeReact is a collection of rich UI components for React (JavaScript)
- awesome-react-components - primereact - A complete UI Framework with 50+ components featuring material, bootstrap and custom themes. (UI Frameworks / Responsive)
- awesome-react - primereact - A complete UI Framework for React with 50+ components featuring material, bootstrap and custom themes. (Uncategorized / Uncategorized)
- awesome-react - primereact - A complete UI Framework for React with 50+ components featuring material, bootstrap and custom themes. ![](https://img.shields.io/github/stars/primefaces/primereact.svg?style=social&label=Star) (UI Frameworks / style)
- awesome-learning-resources - primereact - A complete UI Framework for React with 50+ components featuring material, bootstrap and custom themes. (Uncategorized / Uncategorized)
- awesome-react-components - primereact - A complete UI Framework with 50+ components featuring material, bootstrap and custom themes. (UI Frameworks / Responsive)
- awesome-react-components - primereact - A complete UI Framework with 50+ components featuring material, bootstrap and custom themes. (UI Frameworks / Responsive)
- best-of-react - GitHub - 5% open ยท โฑ๏ธ 06.06.2024): (UI Frameworks & Libraries)
- fucking-awesome-react-components - primereact - A complete UI Framework with 50+ components featuring material, bootstrap and custom themes. (UI Frameworks / Responsive)
- awesome-react - primereact - The Most Complete React UI Component Library ` ๐ 3 days ago` (React [๐](#readme))
- awesome-react - PrimeReact - The Most Complete UI Suite for React.js.With PrimeReact, turning your development vision into reality has never been easier.. (Uncategorized / Uncategorized)
- awesome-react - PrimeReact - The Most Complete UI Suite for React.js.With PrimeReact, turning your development vision into reality has never been easier.. (Uncategorized / Uncategorized)
README
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![npm version](https://badge.fury.io/js/primereact.svg)](https://badge.fury.io/js/primereact)
[![primereact](https://snyk.io/advisor/npm-package/primereact/badge.svg)](https://snyk.io/advisor/npm-package/primereact)
![NPM Downloads](https://img.shields.io/npm/dm/primereact?color=purple)
[![Actions CI](https://github.com/primefaces/primereact/workflows/NodeJS%20CI/badge.svg)](https://github.com/primefaces/primereact/actions/workflows/node.js.yml)
[![Discord Chat](https://img.shields.io/discord/557940238991753223.svg?color=7289da&label=chat&logo=discord)](https://discord.gg/gzKFYnpmCY)
[![Stackoverflow](https://img.shields.io/badge/StackOverflow-primereact-chocolate.svg)](https://stackoverflow.com/questions/tagged/primereact)
[![Prime Discussions](https://img.shields.io/github/discussions-search?query=org%3Aprimefaces&logo=github&label=Prime%20Discussions&link=https%3A%2F%2Fgithub.com%2Forgs%2Fprimefaces%2Fdiscussions)](https://github.com/orgs/primefaces/discussions)[![PrimeReact Hero](https://www.primefaces.org/static/social/primereact-preview.jpg)](https://www.primereact.org)
# PrimeReact
PrimeReact is a rich set of open source UI Components for React. See [PrimeReact homepage](https://primereact.org/) for live showcase and documentation.
## Download
PrimeReact is available at [npm](https://www.npmjs.com/package/primereact).
```
# Using npm
npm install primereact# Using yarn
yarn add primereact# Using pnpm
pnpm add primereact
```## Import
Each component can be imported individually so that you only bundle what you use. Import path is available in the documentation of the corresponding component.
```javascript
//import { ComponentName } from 'primereact/{componentname}';
import { Button } from 'primereact/button';export default function MyComponent() {
return (
)
}
```## Theming
PrimeReact has two theming modes; styled or unstyled.
**Styled Mode**
Styled mode is based on pre-skinned components with opinionated themes like Material, Bootstrap or PrimeOne themes. Theme is the required css file to be imported, visit the [Themes](https://primereact.org/theming) section for the complete list of available themes to choose from.
```javascript
// theme
import 'primereact/resources/themes/lara-light-cyan/theme.css';
```**Unstyled Mode**
Unstyled mode is disabled by default for all components. Using the PrimeReact context, set `unstyled` as true to enable it globally. Visit the [Unstyled mode](https://primereact.org/unstyled) documentation for more information and examples.
## Contributors