Package Exports
- react-html-attributes
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (react-html-attributes) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
react-html-attributes
A store of React HTML attributes keyed by their respective tags. Global
attributes and React specific attributes are under '*'
. A HTML tag will map
to all the html attributes supported by React. HTML tags that don't have any
React-supported non-global attributes won't have keys in the store.
One more note: all SVG element attributes supported by React are under the
'svg'
key to avoid too many duplicated values and unnecessary size increase.
Reference: https://facebook.github.io/react/docs/dom-elements.html
Installation
npm:
npm install react-html-attributes
Usage
var htmlElementAttributes = require('html-element-attributes');
htmlElementAttributes['*'];
Returns:
[
"acceptCharset",
"accessKey",
"allowFullScreen",
"allowTransparency",
"autoComplete",
"autoFocus",
"autoPlay",
"capture",
"cellPadding",
"cellSpacing",
"charSet",
"classID",
"className",
"colSpan",
"contentEditable",
"contextMenu",
"crossOrigin",
"dangerouslySetInnerHTML",
"dateTime",
"dir",
"draggable",
"encType",
"formAction",
"formEncType",
"formMethod",
"formNoValidate",
"formTarget",
"frameBorder",
"hidden",
"hrefLang",
"htmlFor",
"httpEquiv",
"id",
"inputMode",
"is",
"itemID",
"itemProp",
"itemRef",
"itemScope",
"itemType",
"keyParams",
"keyType",
"lang",
"marginHeight",
"marginWidth",
"maxLength",
"mediaGroup",
"minLength",
"noValidate",
"radioGroup",
"readOnly",
"role",
"rowSpan",
"scoped",
"seamless",
"spellCheck",
"srcDoc",
"srcLang",
"srcSet",
"style",
"suppressContentEditableWarning",
"tabIndex",
"title",
"useMap",
"wmode"
]
Contributing
Commit by
npm run commit
License
MIT © Jacky Ho