Compare commits

...

1 Commits

Author SHA1 Message Date
Greg Johnston
d8eafe1d2c Fix missing docs error 2023-01-27 12:29:06 -05:00
3 changed files with 3 additions and 3 deletions

View File

@@ -169,7 +169,7 @@ attr_type!(f64);
attr_type!(char);
#[cfg(all(target_arch = "wasm32", feature = "web"))]
pub fn attribute_expression(
pub(crate) fn attribute_expression(
el: &web_sys::Element,
attr_name: &str,
value: Attribute,

View File

@@ -67,7 +67,7 @@ impl<T: IntoClass> IntoClass for (Scope, T) {
}
#[cfg(all(target_arch = "wasm32", feature = "web"))]
pub fn class_expression(
pub(crate) fn class_expression(
class_list: &web_sys::DomTokenList,
class_name: &str,
value: bool,

View File

@@ -77,7 +77,7 @@ prop_type!(f64);
prop_type!(bool);
#[cfg(all(target_arch = "wasm32", feature = "web"))]
pub fn property_expression(
pub(crate) fn property_expression(
el: &web_sys::Element,
prop_name: &str,
value: JsValue,