diff --git a/tachys/src/html/attribute/global.rs b/tachys/src/html/attribute/global.rs
index 62bfd3c965..ab2bb29ae4 100644
--- a/tachys/src/html/attribute/global.rs
+++ b/tachys/src/html/attribute/global.rs
@@ -205,6 +205,14 @@ where
self.add_any_attr(enterkeyhint(value))
}
+ /// The `exportparts` attribute enables the sharing of parts of an element's shadow DOM with a containing document.
+ fn exportparts(
+ self,
+ value: V,
+ ) -> ::Output> {
+ self.add_any_attr(exportparts(value))
+ }
+
/// The `hidden` global attribute is a Boolean attribute indicating that the element is not yet, or is no longer, relevant.
fn hidden(self, value: V) -> ::Output> {
self.add_any_attr(hidden(value))
diff --git a/tachys/src/html/element/elements.rs b/tachys/src/html/element/elements.rs
index 17328e0be3..27a2e5eea6 100644
--- a/tachys/src/html/element/elements.rs
+++ b/tachys/src/html/element/elements.rs
@@ -212,7 +212,7 @@ html_self_closing_elements! {
/// The `` HTML element embeds an image into the document.
img HtmlImageElement [alt, attributionsrc, crossorigin, decoding, elementtiming, fetchpriority, height, ismap, loading, referrerpolicy, sizes, src, srcset, usemap, width] true,
/// The `` HTML element is used to create interactive controls for web-based forms in order to accept data from the user; a wide variety of types of input data and control widgets are available, depending on the device and user agent. The `` element is one of the most powerful and complex in all of HTML due to the sheer number of combinations of input types and attributes.
- input HtmlInputElement [accept, alt, autocomplete, capture, checked, disabled, form, formaction, formenctype, formmethod, formnovalidate, formtarget, height, list, max, maxlength, min, minlength, multiple, name, pattern, placeholder, popovertarget, popovertargetaction, readonly, required, size, src, step, r#type, value, width] true,
+ input HtmlInputElement [accept, alt, autocomplete, capture, checked, dirname, disabled, form, formaction, formenctype, formmethod, formnovalidate, formtarget, height, list, max, maxlength, min, minlength, multiple, name, pattern, placeholder, popovertarget, popovertargetaction, readonly, required, size, src, step, r#type, value, width] true,
/// The `` HTML element specifies relationships between the current document and an external resource. This element is most commonly used to link to CSS, but is also used to establish site icons (both "favicon" style icons and icons for the home screen and apps on mobile devices) among other things.
link HtmlLinkElement [r#as, blocking, crossorigin, fetchpriority, href, hreflang, imagesizes, imagesrcset, integrity, media, rel, referrerpolicy, sizes, r#type] true,
/// The `` HTML element represents Metadata that cannot be represented by other HTML meta-related elements, like base, link, script, style or title.