Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Signoz | 13,007 | 15 hours ago | 666 | other | TypeScript | |||||
SigNoz is an open-source APM. It helps developers monitor their applications & troubleshoot problems, an open-source alternative to DataDog, NewRelic, etc. 🔥 🖥. 👉 Open source Application Performance Monitoring (APM) & Observability tool | ||||||||||
React Native Star Rating | 735 | 220 | 36 | 2 years ago | 11 | September 10, 2018 | 48 | JavaScript | ||
A React Native component for generating and displaying interactive star ratings | ||||||||||
React Native In App Review | 514 | 3 months ago | 44 | April 16, 2022 | 19 | mit | JavaScript | |||
The Google Play In-App Review API, App store rating API lets you prompt users to submit Play Store or App store ratings and reviews without the inconvenience of leaving your app or game. | ||||||||||
React Form Builder | 513 | 6 years ago | 3 | November 18, 2016 | 26 | mit | JavaScript | |||
A complete react form builder that interfaces with a json endpoint to load and save generated forms. The toolbox contains 16 items for gathering data. Everything from star ratings to signature boxes! | ||||||||||
React Rating | 476 | 234 | 55 | a year ago | 63 | March 25, 2020 | 17 | mit | JavaScript | |
A rating react component with custom symbols. | ||||||||||
React Star Rating Component | 322 | 360 | 33 | 4 years ago | 10 | March 04, 2018 | 19 | mit | JavaScript | |
Basic React component for star (or any other icon based) rating elements | ||||||||||
Rn Emoji Feedback | 209 | 7 years ago | 3 | mit | JavaScript | |||||
Demo of a Rating Component written in React Native | ||||||||||
React Rater | 189 | 64 | 9 | 2 months ago | 32 | September 07, 2022 | 1 | bsd-3-clause | JavaScript | |
⭐️ Interative & customizable star rater | ||||||||||
React Rating | 175 | 1 | a month ago | 10 | December 20, 2022 | mit | TypeScript | |||
:star: Zero-dependency, highly customizable rating component for React. | ||||||||||
React Stars | 149 | 170 | 21 | 3 years ago | 11 | November 06, 2017 | 38 | JavaScript | ||
A simple star rating component for your React projects :star: |
Stable channel
npm install [email protected]
import Rating from 'material-ui-rating'
<Rating
value={3}
max={5}
onChange={(value) => console.log(`Rated with value ${value}`)}
/>
Name | Type | Default | Description |
---|---|---|---|
classes* | object |
Useful to extend the style applied to components. The accepted keys are listed below. | |
component | elementType |
div |
The component used for the root node. Either a string to use a DOM element or a component. |
disabled | bool |
false |
Disables the rating and gray it out if set to true. |
disableHover | bool |
false |
Disable hover effects if set to true. |
iconFilled | node |
This is the icon to be used as an icon in value range. | |
iconFilledRenderer | func |
Overrides filled icon renderer. | |
iconHoveredRenderer | func |
Overrides hovered icon renderer. | |
iconHovered | node |
This is the icon to be used as an hovered icon. | |
iconNormal | node |
This is the icon to be used as an normal icon. | |
iconNormalRenderer | func |
Overrides normal icon renderer. | |
max | number |
5 |
The max value of the rating bar. |
onChange | func |
Fired when a value is clicked. | |
readOnly | bool |
false |
Don't allow input if set to true. |
value | number |
0 |
The value of the rating bar. |
* required property
You can override all the class names injected by Material-UI-Rating thanks to the classes
property. This property accepts the following keys:
root
- Applied to the root div
elementiconButton
- Applied to the IconButton componenticon
- Applied to the SvgIcon componentdisabled
- Applied to the IconButton component when disabled prop is true
readOnly
- Applied to the IconButton component when readOnly prop is true
Following Material-UI's conventions, this package respects theme.direction.rtl
, so right-to-left support works out-of-the-box.
The files included in this repository are licensed under the MIT license.