Libera la versión de desarrollo 0.0.9
This commit is contained in:
parent
21b004fc1e
commit
8f429401eb
3 changed files with 6 additions and 6 deletions
|
|
@ -34,7 +34,7 @@ pub async fn summary() -> app::Result<Markup> {
|
||||||
|
|
||||||
Page::new()
|
Page::new()
|
||||||
|
|
||||||
.using_theme("bootsier")
|
.using_theme("Bootsier")
|
||||||
|
|
||||||
.with_title("Admin")
|
.with_title("Admin")
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "pagetop"
|
name = "pagetop"
|
||||||
version = "0.0.8"
|
version = "0.0.9"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
authors = [
|
authors = [
|
||||||
|
|
@ -33,9 +33,9 @@ url = "2.2.2"
|
||||||
|
|
||||||
config_rs = { package = "config", version = "0.11.0", features = ["toml"] }
|
config_rs = { package = "config", version = "0.11.0", features = ["toml"] }
|
||||||
|
|
||||||
tracing = "0.1.32"
|
tracing = "0.1.34"
|
||||||
tracing-appender = "0.2.2"
|
tracing-appender = "0.2.2"
|
||||||
tracing-subscriber = { version = "0.3.10", features = ["json", "env-filter"] }
|
tracing-subscriber = { version = "0.3.11", features = ["json", "env-filter"] }
|
||||||
tracing-unwrap = { version = "0.9.2", default-features = false }
|
tracing-unwrap = { version = "0.9.2", default-features = false }
|
||||||
tracing-actix-web = "0.2"
|
tracing-actix-web = "0.2"
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -92,7 +92,7 @@ pub trait ThemeTrait: BaseTheme + Send + Sync {
|
||||||
/*
|
/*
|
||||||
Cómo usarlo:
|
Cómo usarlo:
|
||||||
|
|
||||||
match component.name() {
|
match component.single_name() {
|
||||||
"Block" => {
|
"Block" => {
|
||||||
let block = component_mut::<Block>(component);
|
let block = component_mut::<Block>(component);
|
||||||
block.alter_title("New title");
|
block.alter_title("New title");
|
||||||
|
|
@ -112,7 +112,7 @@ pub trait ThemeTrait: BaseTheme + Send + Sync {
|
||||||
/*
|
/*
|
||||||
Cómo usarlo:
|
Cómo usarlo:
|
||||||
|
|
||||||
match component.name() {
|
match component.single_name() {
|
||||||
"Block" => {
|
"Block" => {
|
||||||
let block = component_ref::<Block>(component);
|
let block = component_ref::<Block>(component);
|
||||||
match block.template() {
|
match block.template() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue