-
Notifications
You must be signed in to change notification settings - Fork 47.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Size prop is not attached to the DOM #12694
Comments
What are the HTML tags that have a With web components I am not seeing the issue: |
@airamrguez the |
@gaearon I don't know why I wrote "rest of HTML tags", my bad 😅. The example you provided works ok, but if I add something that doesn't seems like a valid size then it doesn't work. For example:
Something changed in 16.3. Version 16.3 Version 16.2 @aweary I suppose that it's fine to filter props when not passing the appropriate values when using HTML tags but I suppose that in web components the size attribute can be anything. Am I wrong? What do you think? |
The web component code path shouldn't reject any attributes. If it does it's a bug. |
The bug is here. if (isCustomComponentTag) {
return false;
} Please send a PR :-) |
Ok, I will work on this tomorrow. I'm heading to bed. 🙏🏽Thanks for your quick response. |
Couldn't wait |
Should be fixed in React 16.4. |
Do you want to request a feature or report a bug?
Bug
What is the current behavior?
The size prop can only be a number and I think this should be true for inputs and selects but not necessarily true for the rest of HTML tags or web components.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem. Your bug will get fixed much faster if we can run your code and it doesn't have dependencies other than React. Paste the link to your JSFiddle (https://jsfiddle.net/Luktwrdm/) or CodeSandbox (https://codesandbox.io/s/new) example below:
Sorry, it's a CodePen. This example uses a framework called OnsenUI that internally uses web components. In the OnsenUI framework there is an icon web component that transforms every size prop value into a string which is not attached to the DOM.
I know that the example has more dependencies than React, BUT there is also a simple div (as simple as this
<div size="40px" />
) which is also affected by this issue.https://codepen.io/airamrguez/pen/bMEgEP
What is the expected behavior?
The size prop should be added to the DOM when it is not a number on HTML tags that aren't inputs and selects.
Which versions of React, and which browser / OS are affected by this issue? Did this work in previous versions of React?
The affected versions are >= 16.3
It works ok in versions <= 16.2
Browsers: All
The text was updated successfully, but these errors were encountered: