mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
fix the visibility of the read only signal helper struct
This commit is contained in:
parent
617b11a352
commit
d575b3e4e4
1 changed files with 3 additions and 2 deletions
|
@ -1336,11 +1336,12 @@ Finally, call `.build()` to create the instance of `{name}`.
|
|||
if self.has_signal_fields() {
|
||||
let name = Ident::new(&format!("{}WithOwner", name), name.span());
|
||||
let original_name = &self.name;
|
||||
let vis = &self.vis;
|
||||
quote! {
|
||||
#[doc(hidden)]
|
||||
#[allow(dead_code, non_camel_case_types, missing_docs)]
|
||||
#[derive(Clone)]
|
||||
struct #name #ty_generics {
|
||||
#vis struct #name #ty_generics {
|
||||
inner: #original_name #ty_generics,
|
||||
owner: Owner,
|
||||
}
|
||||
|
@ -1353,7 +1354,7 @@ Finally, call `.build()` to create the instance of `{name}`.
|
|||
|
||||
impl #original_impl_generics #name #ty_generics #where_clause {
|
||||
/// Create a component from the props.
|
||||
fn into_vcomponent<M: 'static>(
|
||||
pub fn into_vcomponent<M: 'static>(
|
||||
self,
|
||||
render_fn: impl dioxus_core::prelude::ComponentFunction<#original_name #ty_generics, M>,
|
||||
component_name: &'static str,
|
||||
|
|
Loading…
Reference in a new issue