mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
add missing global attributes (#546)
This commit is contained in:
parent
02a21bc193
commit
d4d5d2733e
1 changed files with 15 additions and 3 deletions
|
@ -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 it’s 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
|
||||
|
|
Loading…
Reference in a new issue