Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

View File

@@ -0,0 +1,55 @@
#![allow(unused_imports)]
#![allow(clippy::all)]
use super::*;
use wasm_bindgen::prelude::*;
#[wasm_bindgen]
extern "C" {
# [wasm_bindgen (extends = SvgElement , extends = Element , extends = Node , extends = EventTarget , extends = :: js_sys :: Object , js_name = SVGFEMergeElement , typescript_type = "SVGFEMergeElement")]
#[derive(Debug, Clone, PartialEq, Eq)]
#[doc = "The `SvgfeMergeElement` class."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgfeMergeElement`*"]
pub type SvgfeMergeElement;
#[cfg(feature = "SvgAnimatedLength")]
# [wasm_bindgen (structural , method , getter , js_class = "SVGFEMergeElement" , js_name = x)]
#[doc = "Getter for the `x` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/x)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
pub fn x(this: &SvgfeMergeElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
# [wasm_bindgen (structural , method , getter , js_class = "SVGFEMergeElement" , js_name = y)]
#[doc = "Getter for the `y` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/y)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
pub fn y(this: &SvgfeMergeElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
# [wasm_bindgen (structural , method , getter , js_class = "SVGFEMergeElement" , js_name = width)]
#[doc = "Getter for the `width` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/width)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
pub fn width(this: &SvgfeMergeElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedLength")]
# [wasm_bindgen (structural , method , getter , js_class = "SVGFEMergeElement" , js_name = height)]
#[doc = "Getter for the `height` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/height)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedLength`, `SvgfeMergeElement`*"]
pub fn height(this: &SvgfeMergeElement) -> SvgAnimatedLength;
#[cfg(feature = "SvgAnimatedString")]
# [wasm_bindgen (structural , method , getter , js_class = "SVGFEMergeElement" , js_name = result)]
#[doc = "Getter for the `result` field of this object."]
#[doc = ""]
#[doc = "[MDN Documentation](https://developer.mozilla.org/en-US/docs/Web/API/SVGFEMergeElement/result)"]
#[doc = ""]
#[doc = "*This API requires the following crate features to be activated: `SvgAnimatedString`, `SvgfeMergeElement`*"]
pub fn result(this: &SvgfeMergeElement) -> SvgAnimatedString;
}