Make leptos_dom submodules public (to allow use from macro)

This commit is contained in:
Greg Johnston 2022-10-07 07:00:20 -04:00
parent b23a6b6a26
commit 3327255440
5 changed files with 12 additions and 12 deletions

View file

@ -6,7 +6,7 @@ description = "Leptos is a full-stack, isomorphic Rust web framework leveraging
[dependencies]
leptos_core = { path = "../leptos_core", version = "0.0.1" }
leptos_dom = { path = "../leptos_dom", version = "0.0.1" }
leptos_dom = { path = "../leptos_dom", version = "0.0.2" }
leptos_macro = { path = "../leptos_macro", version = "0.0.1" }
leptos_reactive = { path = "../leptos_reactive", version = "0.0.1" }
leptos_router = { path = "../router", version = "0.0.1" }

View file

@ -8,7 +8,7 @@ repository = "https://github.com/gbj/leptos"
description = "Core functionality for the Leptos web framework."
[dependencies]
leptos_dom = { path = "../leptos_dom", version = "0.0.1" }
leptos_dom = { path = "../leptos_dom", version = "0.0.2" }
leptos_macro = { path = "../leptos_macro", version = "0.0.1" }
leptos_reactive = { path = "../leptos_reactive", version = "0.0.1" }
log = "0.4"

View file

@ -1,6 +1,6 @@
[package]
name = "leptos_dom"
version = "0.0.1"
version = "0.0.2"
edition = "2021"
authors = ["Greg Johnston"]
license = "MIT"

View file

@ -1,15 +1,15 @@
mod attribute;
pub mod attribute;
#[cfg(any(feature = "csr", feature = "hydrate", feature = "ssr"))]
mod child;
mod class;
mod event_delegation;
pub mod child;
pub mod class;
pub mod event_delegation;
pub mod logging;
mod operations;
mod property;
pub mod operations;
pub mod property;
#[cfg(any(feature = "csr", feature = "hydrate"))]
mod reconcile;
pub mod reconcile;
#[cfg(any(feature = "csr", feature = "hydrate"))]
mod render;
pub mod render;
pub use attribute::*;
#[cfg(any(feature = "csr", feature = "hydrate", feature = "ssr"))]

View file

@ -9,7 +9,7 @@ description = "Router for the Leptos web framework."
[dependencies]
leptos_core = { path = "../leptos_core", version = "0.0.1" }
leptos_dom = { path = "../leptos_dom", version = "0.0.1" }
leptos_dom = { path = "../leptos_dom", version = "0.0.2" }
leptos_macro = { path = "../leptos_macro", version = "0.0.1"}
leptos_reactive = { path = "../leptos_reactive", version = "0.0.1" }
common_macros = "0.1"