mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
add disabled
, form
and name
attributes to fieldset (#2947)
This commit is contained in:
parent
eecefb796e
commit
b20db13e84
1 changed files with 5 additions and 1 deletions
|
@ -1391,7 +1391,11 @@ builder_constructors! {
|
|||
/// Build a
|
||||
/// [`<fieldset>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset)
|
||||
/// element.
|
||||
fieldset None {};
|
||||
fieldset None {
|
||||
disabled: Bool DEFAULT,
|
||||
form: Id DEFAULT,
|
||||
name: Id DEFAULT,
|
||||
};
|
||||
|
||||
/// Build a
|
||||
/// [`<form>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/form)
|
||||
|
|
Loading…
Reference in a new issue