add missing global attributes (#546)

This commit is contained in:
Demonthos 2022-09-08 14:06:25 -05:00 committed by GitHub
parent 02a21bc193
commit d4d5d2733e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -59,7 +59,8 @@ pub trait GlobalAttributes {
no_namespace_trait_methods! {
accesskey;
autocapitalize;
autofocus;
/// The HTML class attribute is used to specify a class for an HTML element.
///
/// ## Details
@ -93,17 +94,28 @@ pub trait GlobalAttributes {
data;
dir;
draggable;
enterkeyhint;
exportparts;
hidden;
id;
inputmode;
is;
itemid;
itemprop;
itemref;
itemscope;
itemtype;
lang;
nonce;
part;
role;
slot;
spellcheck;
style;
tabindex;
title;
translate;
role;
/// dangerous_inner_html is Dioxus's replacement for using innerHTML in the browser DOM. In general, setting
/// HTML from code is risky because its easy to inadvertently expose your users to a cross-site scripting (XSS)
/// attack. So, you can set HTML directly from Dioxus, but you have to type out dangerous_inner_html to remind