dreyescat

Results 27 comments of dreyescat

Hello @rodriturnes, I am not sure what is the issue you are having... but... let me show you a small example using both `onChange` and `onHover` at the same time....

Yep. We need to refactor the component to get rid of this deprecated method. I'm open to contributions. The #134 issue was created to track the move towards a controlled...

Hey @sayedsaeedhosseini! I am a bit lost... What do you mean? What is props suggestion? Do you mean to change `initialRating` prop name to `value`?

@aepp Well... Yes and no. No because technically the `initialRating` prop is used to initialize the value state during the *initial* rendering. Once the rating element is rendered the value...

Thanks @im28! I have only checked the examples in `index.html` and I don't think it is working :confused:. Did you try that at least those examples are working as expected?...

I don't know... Uhm... Is it there? In http://localhost:3000/packages/react-rating.js.map? This source map is generated by webpack automatically. So I don't think it is an actual *parse* error but a file...

I am not sure to understand what you mean... Are your `` and `` also `Rating` components? Do you mean having a rating where the symbols correspond to the rate...

You can pass an array of symbols to `empty` and `full` properties. It is OK. It is the way to customize each and every one of the symbols at your...

Ah! And regarding the warning: > Warning: Failed prop type: Invalid prop empty supplied to Rating This is probably because of how `propTypes` are defined for `empty` and `full` properties....

> It is ok cause it works, but It seems kinda clumsy for me. I expected corresponding rate to be passed into react component. Yep, it works because this is...