Closed
Description
Solution
-Known attributes like maxlength have to be camelcased to maxLength or whatever is in [DefaultDOMPropertyConfig] https://github.com/facebook/react/blob/master/src/dom/DefaultDOMPropertyConfig.js
Might be a good idea to throw a warning/error for unknown properties, so they don't get discarded without you knowing.
-Styles should be lowercased before processing.
Example
<input style="TEXT-ALIGN: center; WIDTH: 40px" maxlength=2 />
transpiles to:
<input style={{TEXTALIGN: 'center', WIDTH: 40}} maxlength={2} />
transpiles to:
React.DOM.input( {style:{TEXTALIGN: 'center', WIDTH: 40}, maxlength:2} )
generates:
<input style="-t-e-x-t-a-l-i-g-n:center;-w-i-d-t-h:40px;" data-reactid=".r[2wp76]">