|
@@ -479,6 +479,7 @@ pub trait GlobalAttributes {
|
|
|
|
|
|
/// Specifies the treatment of content that overflows the element's box.
|
|
/// Specifies the treatment of content that overflows the element's box.
|
|
overflow: "overflow",
|
|
overflow: "overflow",
|
|
|
|
+
|
|
/// Specifies the treatment of content that overflows the element's box horizontally.
|
|
/// Specifies the treatment of content that overflows the element's box horizontally.
|
|
overflow_x: "overflow-x",
|
|
overflow_x: "overflow-x",
|
|
|
|
|
|
@@ -518,6 +519,10 @@ pub trait GlobalAttributes {
|
|
/// Specifies how an element is positioned.
|
|
/// Specifies how an element is positioned.
|
|
position: "position",
|
|
position: "position",
|
|
|
|
|
|
|
|
+ /// The pointer-events CSS property sets under what circumstances (if any) a particular graphic element can
|
|
|
|
+ /// become the target of pointer events.
|
|
|
|
+ ///
|
|
|
|
+ /// MDN: [`pointer_events`](https://developer.mozilla.org/en-US/docs/Web/CSS/pointer-events)
|
|
pointer_events: "pointer-events",
|
|
pointer_events: "pointer-events",
|
|
|
|
|
|
/// Specifies quotation marks for embedded quotations.
|
|
/// Specifies quotation marks for embedded quotations.
|
|
@@ -542,6 +547,7 @@ pub trait GlobalAttributes {
|
|
|
|
|
|
/// Specifies the decoration added to text.
|
|
/// Specifies the decoration added to text.
|
|
text_decoration: "text-decoration",
|
|
text_decoration: "text-decoration",
|
|
|
|
+
|
|
/// Specifies the color of the text_decoration_line.
|
|
/// Specifies the color of the text_decoration_line.
|
|
text_decoration_color: "text-decoration-color",
|
|
text_decoration_color: "text-decoration-color",
|
|
|
|
|
|
@@ -1529,19 +1535,19 @@ builder_constructors! {
|
|
step: String,
|
|
step: String,
|
|
tabindex: usize,
|
|
tabindex: usize,
|
|
|
|
|
|
- // This has a manual implementation below
|
|
|
|
- // r#type: InputType,
|
|
|
|
|
|
+ width: isize,
|
|
|
|
|
|
|
|
+ // Manual implementations below...
|
|
|
|
+ // r#type: InputType,
|
|
// value: String,
|
|
// value: String,
|
|
- width: isize,
|
|
|
|
};
|
|
};
|
|
|
|
|
|
/// Build a
|
|
/// Build a
|
|
/// [`<label>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label)
|
|
/// [`<label>`](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/label)
|
|
/// element.
|
|
/// element.
|
|
label {
|
|
label {
|
|
- // r#for: Id,
|
|
|
|
form: Id,
|
|
form: Id,
|
|
|
|
+ // r#for: Id,
|
|
};
|
|
};
|
|
|
|
|
|
/// Build a
|
|
/// Build a
|
|
@@ -1577,10 +1583,11 @@ builder_constructors! {
|
|
disabled: Bool,
|
|
disabled: Bool,
|
|
label: String,
|
|
label: String,
|
|
|
|
|
|
- // defined below
|
|
|
|
- // selected: Bool,
|
|
|
|
|
|
|
|
value: String,
|
|
value: String,
|
|
|
|
+
|
|
|
|
+ // defined below
|
|
|
|
+ // selected: Bool,
|
|
};
|
|
};
|
|
|
|
|
|
/// Build a
|
|
/// Build a
|