From 55a8640b048cfa9eaba25f9b511d2ba84ddb604c Mon Sep 17 00:00:00 2001 From: Samuel Date: Sun, 3 Nov 2024 01:10:33 -0300 Subject: [PATCH 1/2] Bump patch --- CHANGELOG.md | 3 + README.md | 2 +- crates/cargo-zng/Cargo.toml | 4 +- crates/zng-app-context/Cargo.toml | 6 +- crates/zng-app/Cargo.toml | 22 ++-- crates/zng-color/Cargo.toml | 10 +- crates/zng-env/Cargo.toml | 4 +- crates/zng-ext-clipboard/Cargo.toml | 14 +-- crates/zng-ext-config/Cargo.toml | 16 +-- crates/zng-ext-font/Cargo.toml | 20 ++-- crates/zng-ext-fs-watcher/Cargo.toml | 12 +-- crates/zng-ext-hot-reload/Cargo.toml | 18 ++-- crates/zng-ext-image/Cargo.toml | 20 ++-- crates/zng-ext-input/Cargo.toml | 18 ++-- crates/zng-ext-l10n/Cargo.toml | 18 ++-- crates/zng-ext-single-instance/Cargo.toml | 10 +- crates/zng-ext-svg/Cargo.toml | 10 +- crates/zng-ext-undo/Cargo.toml | 14 +-- crates/zng-ext-window/Cargo.toml | 26 ++--- crates/zng-layout/Cargo.toml | 8 +- crates/zng-state-map/Cargo.toml | 4 +- crates/zng-task/Cargo.toml | 16 +-- crates/zng-time/Cargo.toml | 4 +- crates/zng-unique-id/Cargo.toml | 2 +- crates/zng-unit/Cargo.toml | 2 +- crates/zng-var/Cargo.toml | 8 +- crates/zng-view-api/Cargo.toml | 8 +- crates/zng-view-prebuilt/Cargo.toml | 6 +- crates/zng-view/Cargo.toml | 8 +- crates/zng-view/src/lib.rs | 4 +- crates/zng-wgt-access/Cargo.toml | 10 +- crates/zng-wgt-ansi-text/Cargo.toml | 16 +-- crates/zng-wgt-button/Cargo.toml | 26 ++--- crates/zng-wgt-checkerboard/Cargo.toml | 6 +- crates/zng-wgt-container/Cargo.toml | 6 +- crates/zng-wgt-data-view/Cargo.toml | 8 +- crates/zng-wgt-data/Cargo.toml | 8 +- crates/zng-wgt-dialog/Cargo.toml | 40 +++---- crates/zng-wgt-fill/Cargo.toml | 4 +- crates/zng-wgt-filter/Cargo.toml | 6 +- crates/zng-wgt-grid/Cargo.toml | 12 +-- crates/zng-wgt-image/Cargo.toml | 16 +-- crates/zng-wgt-input/Cargo.toml | 18 ++-- crates/zng-wgt-inspector/Cargo.toml | 70 ++++++------ crates/zng-wgt-layer/Cargo.toml | 24 ++--- crates/zng-wgt-markdown/Cargo.toml | 50 ++++----- crates/zng-wgt-material-icons/Cargo.toml | 12 +-- crates/zng-wgt-menu/Cargo.toml | 48 ++++----- crates/zng-wgt-panel/Cargo.toml | 8 +- crates/zng-wgt-progress/Cargo.toml | 24 ++--- crates/zng-wgt-rule-line/Cargo.toml | 8 +- crates/zng-wgt-scroll/Cargo.toml | 26 ++--- crates/zng-wgt-settings/Cargo.toml | 54 +++++----- crates/zng-wgt-size-offset/Cargo.toml | 4 +- crates/zng-wgt-stack/Cargo.toml | 12 +-- crates/zng-wgt-style/Cargo.toml | 6 +- crates/zng-wgt-text-input/Cargo.toml | 40 +++---- crates/zng-wgt-text/Cargo.toml | 36 +++---- crates/zng-wgt-toggle/Cargo.toml | 36 +++---- crates/zng-wgt-tooltip/Cargo.toml | 20 ++-- crates/zng-wgt-transform/Cargo.toml | 4 +- crates/zng-wgt-undo-history/Cargo.toml | 28 ++--- crates/zng-wgt-undo/Cargo.toml | 6 +- crates/zng-wgt-webrender-debug/Cargo.toml | 10 +- crates/zng-wgt-window/Cargo.toml | 34 +++--- crates/zng-wgt-wrap/Cargo.toml | 12 +-- crates/zng-wgt/Cargo.toml | 18 ++-- crates/zng/Cargo.toml | 124 +++++++++++----------- crates/zng/README.md | 2 +- crates/zng/src/app.rs | 2 +- crates/zng/src/icon.rs | 2 +- crates/zng/src/lib.rs | 2 +- 72 files changed, 609 insertions(+), 606 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b927eda7d..785866d2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Unreleased + +# 0.12.6 + * Add debug validation of capture only property use in widgets that don't capture it. * Fix Wayland custom chrome breaking window padding. * Fix window text properties affecting the Wayland fallback chrome text. diff --git a/README.md b/README.md index 4e6810f5a..316123a64 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ First add `zng` to your `Cargo.toml`, or call `cargo add zng -F view_prebuilt`: ```toml [dependencies] -zng = { version = "0.12.5", features = ["view_prebuilt"] } +zng = { version = "0.12.6", features = ["view_prebuilt"] } ``` Then create your first window: diff --git a/crates/cargo-zng/Cargo.toml b/crates/cargo-zng/Cargo.toml index d0c56b229..5a918f432 100644 --- a/crates/cargo-zng/Cargo.toml +++ b/crates/cargo-zng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cargo-zng" -version = "0.4.13" +version = "0.4.14" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -38,7 +38,7 @@ walkdir = "2.5" is_executable = "1.0" anyhow = "1.0" dunce = "1.0" -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-env = { path = "../zng-env", version = "0.3.7" } directories = "5.0" quick-xml = { version = "0.37", features = ["serialize"] } diff --git a/crates/zng-app-context/Cargo.toml b/crates/zng-app-context/Cargo.toml index 11ba2e987..89f9cfb56 100644 --- a/crates/zng-app-context/Cargo.toml +++ b/crates/zng-app-context/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-app-context" -version = "0.5.11" +version = "0.5.12" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -30,8 +30,8 @@ debug_default = [] dyn_closure = [] [dependencies] -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } +zng-env = { path = "../zng-env", version = "0.3.7" } zng-txt = { path = "../zng-txt", version = "0.2.8" } parking_lot = "0.12" rustc-hash = "2.0" diff --git a/crates/zng-app/Cargo.toml b/crates/zng-app/Cargo.toml index 5b652ca42..1729c00b0 100644 --- a/crates/zng-app/Cargo.toml +++ b/crates/zng-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-app" -version = "0.13.3" +version = "0.13.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -78,22 +78,22 @@ deadlock_detection = ["zng-task/deadlock_detection"] [dependencies] zng-app-proc-macros = { path = "../zng-app-proc-macros", version = "0.3.8" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } +zng-env = { path = "../zng-env", version = "0.3.7" } zng-handle = { path = "../zng-handle", version = "0.2.5" } zng-tp-licenses = { path = "../zng-tp-licenses", version = "0.2.8" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-time = { path = "../zng-time", version = "0.2.23" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-time = { path = "../zng-time", version = "0.2.24" } +zng-var = { path = "../zng-var", version = "0.5.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3", features = [ +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4", features = [ "var", ] } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-color = { path = "../zng-color", version = "0.3.14" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-color = { path = "../zng-color", version = "0.3.15" } tracing = "0.1" tracing-subscriber = "0.3" diff --git a/crates/zng-color/Cargo.toml b/crates/zng-color/Cargo.toml index 447e0dbaa..778cd5cde 100644 --- a/crates/zng-color/Cargo.toml +++ b/crates/zng-color/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-color" -version = "0.3.14" +version = "0.3.15" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,10 +13,10 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-color-proc-macros = { path = "../zng-color-proc-macros", version = "0.2.7" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } paste = "1.0" serde = "1.0" diff --git a/crates/zng-env/Cargo.toml b/crates/zng-env/Cargo.toml index da9e4a6ce..05ec0283d 100644 --- a/crates/zng-env/Cargo.toml +++ b/crates/zng-env/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-env" -version = "0.3.6" +version = "0.3.7" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -26,7 +26,7 @@ toml = "0.8" serde = { version = "1.0", features = ["derive"] } semver = { version = "1.0", features = ["serde"] } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } zng-txt = { path = "../zng-txt", version = "0.2.8" } [target.'cfg(target_os = "android")'.dependencies] diff --git a/crates/zng-ext-clipboard/Cargo.toml b/crates/zng-ext-clipboard/Cargo.toml index b2016d5fc..667fd3ddd 100644 --- a/crates/zng-ext-clipboard/Cargo.toml +++ b/crates/zng-ext-clipboard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-clipboard" -version = "0.2.38" +version = "0.2.39" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,12 +12,12 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } tracing = "0.1" diff --git a/crates/zng-ext-config/Cargo.toml b/crates/zng-ext-config/Cargo.toml index e160f93ac..769c15a65 100644 --- a/crates/zng-ext-config/Cargo.toml +++ b/crates/zng-ext-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-config" -version = "0.3.16" +version = "0.3.17" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -20,17 +20,17 @@ toml = ["dep:toml", "zng-ext-fs-watcher/toml"] ron = ["dep:ron", "zng-ext-fs-watcher/ron"] [dependencies] -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-task = { path = "../zng-task", version = "0.4.8" } +zng-task = { path = "../zng-task", version = "0.4.9" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.36", features = [ +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.37", features = [ "json", ] } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } tracing = "0.1" bytemuck = { version = "1.15", features = ["derive"] } diff --git a/crates/zng-ext-font/Cargo.toml b/crates/zng-ext-font/Cargo.toml index 0f80551ed..33bac1213 100644 --- a/crates/zng-ext-font/Cargo.toml +++ b/crates/zng-ext-font/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-font" -version = "0.4.11" +version = "0.4.12" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -25,16 +25,16 @@ svg = [] [dependencies] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } serde = "1.0" unicase = "2.7" diff --git a/crates/zng-ext-fs-watcher/Cargo.toml b/crates/zng-ext-fs-watcher/Cargo.toml index b9877f01b..4f0588263 100644 --- a/crates/zng-ext-fs-watcher/Cargo.toml +++ b/crates/zng-ext-fs-watcher/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-fs-watcher" -version = "0.2.36" +version = "0.2.37" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -22,14 +22,14 @@ toml = ["dep:toml"] ron = ["dep:ron"] [dependencies] -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-var = { path = "../zng-var", version = "0.5.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-unit = { path = "../zng-unit", version = "0.2.9" } +zng-unit = { path = "../zng-unit", version = "0.2.10" } zng-handle = { path = "../zng-handle", version = "0.2.5" } -zng-task = { path = "../zng-task", version = "0.4.8" } +zng-task = { path = "../zng-task", version = "0.4.9" } walkdir = "2.5" serde = "1.0" diff --git a/crates/zng-ext-hot-reload/Cargo.toml b/crates/zng-ext-hot-reload/Cargo.toml index 2aabc9af5..e633947a3 100644 --- a/crates/zng-ext-hot-reload/Cargo.toml +++ b/crates/zng-ext-hot-reload/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-hot-reload" -version = "0.1.25" +version = "0.1.26" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -16,14 +16,14 @@ zng-ext-hot-reload-proc-macros = { path = "../zng-ext-hot-reload-proc-macros", v # the `static` dyn patching `linkme` register is implemented on this crate # so it is available across the entire workspace. -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6", features = ["hot_reload"] } -zng-env = { path = "../zng-env", version = "0.3.6" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.36" } -zng-unit = { path = "../zng-unit", version = "0.2.9" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-task = { path = "../zng-task", version = "0.4.8" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7", features = ["hot_reload"] } +zng-env = { path = "../zng-env", version = "0.3.7" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.37" } +zng-unit = { path = "../zng-unit", version = "0.2.10" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-task = { path = "../zng-task", version = "0.4.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } libloading = "0.8" diff --git a/crates/zng-ext-image/Cargo.toml b/crates/zng-ext-image/Cargo.toml index 5062eb3ba..c1c42b91b 100644 --- a/crates/zng-ext-image/Cargo.toml +++ b/crates/zng-ext-image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-image" -version = "0.2.37" +version = "0.2.38" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -16,17 +16,17 @@ keywords = ["gui", "ui", "user-interface", "zng"] http = ["zng-task/http"] [dependencies] -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } serde = "1.0" once_cell = "1.19" diff --git a/crates/zng-ext-input/Cargo.toml b/crates/zng-ext-input/Cargo.toml index c38696c78..69b4f7792 100644 --- a/crates/zng-ext-input/Cargo.toml +++ b/crates/zng-ext-input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-input" -version = "0.5.27" +version = "0.5.28" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,17 +12,17 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-app = { path = "../zng-app", version = "0.13.4" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } zng-handle = { path = "../zng-handle", version = "0.2.5" } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } tracing = "0.1" parking_lot = "0.12" diff --git a/crates/zng-ext-l10n/Cargo.toml b/crates/zng-ext-l10n/Cargo.toml index bc93cd609..0d2c7d380 100644 --- a/crates/zng-ext-l10n/Cargo.toml +++ b/crates/zng-ext-l10n/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-l10n" -version = "0.5.16" +version = "0.5.17" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -14,16 +14,16 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-ext-l10n-proc-macros = { path = "../zng-ext-l10n-proc-macros", version = "0.2.9" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.36" } -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.37" } +zng-env = { path = "../zng-env", version = "0.3.7" } fluent = "0.16" fluent-syntax = "0.11" diff --git a/crates/zng-ext-single-instance/Cargo.toml b/crates/zng-ext-single-instance/Cargo.toml index 255eb17e1..1a1419d00 100644 --- a/crates/zng-ext-single-instance/Cargo.toml +++ b/crates/zng-ext-single-instance/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-single-instance" -version = "0.3.21" +version = "0.3.22" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,11 +12,11 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-env = { path = "../zng-env", version = "0.3.6" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-env = { path = "../zng-env", version = "0.3.7" } +zng-app = { path = "../zng-app", version = "0.13.4" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.36" } +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.37" } parking_lot = "0.12" single-instance = "0.3" diff --git a/crates/zng-ext-svg/Cargo.toml b/crates/zng-ext-svg/Cargo.toml index cdd104491..b674a3bd2 100644 --- a/crates/zng-ext-svg/Cargo.toml +++ b/crates/zng-ext-svg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-svg" -version = "0.1.3" +version = "0.1.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,11 +12,11 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-unit = { path = "../zng-unit", version = "0.2.9" } -zng-task = { path = "../zng-task", version = "0.4.8" } +zng-unit = { path = "../zng-unit", version = "0.2.10" } +zng-task = { path = "../zng-task", version = "0.4.9" } resvg = "0.44" tracing = "0.1" diff --git a/crates/zng-ext-undo/Cargo.toml b/crates/zng-ext-undo/Cargo.toml index 252e2d482..b15c10530 100644 --- a/crates/zng-ext-undo/Cargo.toml +++ b/crates/zng-ext-undo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-undo" -version = "0.2.39" +version = "0.2.40" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -13,13 +13,13 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } atomic = "0.6" parking_lot = "0.12" diff --git a/crates/zng-ext-window/Cargo.toml b/crates/zng-ext-window/Cargo.toml index 0b6bc8e18..51b9ce5c0 100644 --- a/crates/zng-ext-window/Cargo.toml +++ b/crates/zng-ext-window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-ext-window" -version = "0.3.28" +version = "0.3.29" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,19 +19,19 @@ http = ["zng-task/http"] [dependencies] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-env = { path = "../zng-env", version = "0.3.6" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-env = { path = "../zng-env", version = "0.3.7" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } serde = { version = "1.0", features = ["derive"] } bitflags = { version = "2.5", features = ["serde", "bytemuck"] } diff --git a/crates/zng-layout/Cargo.toml b/crates/zng-layout/Cargo.toml index be500c85a..862bc83a2 100644 --- a/crates/zng-layout/Cargo.toml +++ b/crates/zng-layout/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-layout" -version = "0.2.29" +version = "0.2.30" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,9 +12,9 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-unit = { path = "../zng-unit", version = "0.2.9" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } +zng-unit = { path = "../zng-unit", version = "0.2.10" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } serde = { version = "1.0", features = ["derive", "rc"] } bitflags = { version = "2.5", features = ["serde", "bytemuck"] } diff --git a/crates/zng-state-map/Cargo.toml b/crates/zng-state-map/Cargo.toml index 9ddb3c5a0..1f53c99cb 100644 --- a/crates/zng-state-map/Cargo.toml +++ b/crates/zng-state-map/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-state-map" -version = "0.3.6" +version = "0.3.7" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } bytemuck = { version = "1.15" } pretty-type-name = "1.0" diff --git a/crates/zng-task/Cargo.toml b/crates/zng-task/Cargo.toml index dd80bf86f..8ae3322c4 100644 --- a/crates/zng-task/Cargo.toml +++ b/crates/zng-task/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-task" -version = "0.4.8" +version = "0.4.9" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -49,15 +49,15 @@ test_util = [] [dependencies] zng-task-proc-macros = { path = "../zng-task-proc-macros", version = "0.2.6" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-unit = { path = "../zng-unit", version = "0.2.9" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-time = { path = "../zng-time", version = "0.2.23" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-unit = { path = "../zng-unit", version = "0.2.10" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-time = { path = "../zng-time", version = "0.2.24" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-env = { path = "../zng-env", version = "0.3.7" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6", default-features = false, optional = true } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7", default-features = false, optional = true } tracing = "0.1" pretty-type-name = "1.0" diff --git a/crates/zng-time/Cargo.toml b/crates/zng-time/Cargo.toml index c179e5760..22058a1ac 100644 --- a/crates/zng-time/Cargo.toml +++ b/crates/zng-time/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-time" -version = "0.2.23" +version = "0.2.24" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } parking_lot = "0.12" diff --git a/crates/zng-unique-id/Cargo.toml b/crates/zng-unique-id/Cargo.toml index 3a9cfc7a7..b302b59de 100644 --- a/crates/zng-unique-id/Cargo.toml +++ b/crates/zng-unique-id/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-unique-id" -version = "0.4.6" +version = "0.4.7" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/crates/zng-unit/Cargo.toml b/crates/zng-unit/Cargo.toml index b3b96fa8c..2f18dc913 100644 --- a/crates/zng-unit/Cargo.toml +++ b/crates/zng-unit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-unit" -version = "0.2.9" +version = "0.2.10" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/crates/zng-var/Cargo.toml b/crates/zng-var/Cargo.toml index 3fac78430..bde1920ce 100644 --- a/crates/zng-var/Cargo.toml +++ b/crates/zng-var/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-var" -version = "0.5.8" +version = "0.5.9" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -26,9 +26,9 @@ dyn_closure = [] zng-var-proc-macros = { path = "../zng-var-proc-macros", version = "0.2.8" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-unit = { path = "../zng-unit", version = "0.2.9" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-time = { path = "../zng-time", version = "0.2.23" } +zng-unit = { path = "../zng-unit", version = "0.2.10" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-time = { path = "../zng-time", version = "0.2.24" } zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-handle = { path = "../zng-handle", version = "0.2.5" } diff --git a/crates/zng-view-api/Cargo.toml b/crates/zng-view-api/Cargo.toml index a7f9a74e0..1c0ae0349 100644 --- a/crates/zng-view-api/Cargo.toml +++ b/crates/zng-view-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-view-api" -version = "0.10.3" +version = "0.10.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -28,11 +28,11 @@ euclid = { version = "0.22.6", features = [ "bytemuck", ] } # same version as webrender, but with bytemuck -zng-unit = { path = "../zng-unit", version = "0.2.9" } -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-unit = { path = "../zng-unit", version = "0.2.10" } +zng-env = { path = "../zng-env", version = "0.3.7" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-tp-licenses = { path = "../zng-tp-licenses", version = "0.2.8" } -zng-var = { path = "../zng-var", version = "0.5.8", optional = true } +zng-var = { path = "../zng-var", version = "0.5.9", optional = true } serde = { version = "1.0", features = ["derive"] } serde_bytes = "0.11" diff --git a/crates/zng-view-prebuilt/Cargo.toml b/crates/zng-view-prebuilt/Cargo.toml index 081cafed2..22d47a583 100644 --- a/crates/zng-view-prebuilt/Cargo.toml +++ b/crates/zng-view-prebuilt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-view-prebuilt" -version = "0.12.5" +version = "0.12.6" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -18,8 +18,8 @@ default = ["embedded"] embedded = [] [dependencies] -zng-view-api = { path = "../zng-view-api", version = "0.10.3", default-features = false } -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4", default-features = false } +zng-env = { path = "../zng-env", version = "0.3.7" } libloading = "0.8" dunce = "1.0" parking_lot = "0.12" diff --git a/crates/zng-view/Cargo.toml b/crates/zng-view/Cargo.toml index 54512744b..58a5b7999 100644 --- a/crates/zng-view/Cargo.toml +++ b/crates/zng-view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-view" -version = "0.6.2" +version = "0.6.3" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -60,11 +60,11 @@ crate-type = ["lib", "cdylib"] webrender = { package = "zng-webrender", version = "0.64.1" } swgl = { package = "zng-swgl", version = "0.3.1", optional = true } -zng-view-api = { path = "../zng-view-api", version = "0.10.3", default-features = false } -zng-unit = { path = "../zng-unit", version = "0.2.9" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4", default-features = false } +zng-unit = { path = "../zng-unit", version = "0.2.10" } zng-txt = { path = "../zng-txt", version = "0.2.8" } zng-tp-licenses = { path = "../zng-tp-licenses", version = "0.2.8" } -zng-env = { path = "../zng-env", version = "0.3.6" } +zng-env = { path = "../zng-env", version = "0.3.7" } # `view_process_extension!` uses pre-expanded code generated by linkme macro that must match link_section name. linkme = "=0.3.28" diff --git a/crates/zng-view/src/lib.rs b/crates/zng-view/src/lib.rs index 7ecf92e7c..3d16dea6a 100644 --- a/crates/zng-view/src/lib.rs +++ b/crates/zng-view/src/lib.rs @@ -11,8 +11,8 @@ //! //! ```toml //! [dependencies] -//! zng = "0.12.5" -//! zng-view = "0.6.2" +//! zng = "0.12.6" +//! zng-view = "0.6.3" //! ``` //! //! Then call `zng::env::init` before any other code in `main` to setup a view-process that uses diff --git a/crates/zng-wgt-access/Cargo.toml b/crates/zng-wgt-access/Cargo.toml index e78e8887a..b5f02e1f3 100644 --- a/crates/zng-wgt-access/Cargo.toml +++ b/crates/zng-wgt-access/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-access" -version = "0.2.37" +version = "0.2.38" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } diff --git a/crates/zng-wgt-ansi-text/Cargo.toml b/crates/zng-wgt-ansi-text/Cargo.toml index 8f2a6c717..79edf936c 100644 --- a/crates/zng-wgt-ansi-text/Cargo.toml +++ b/crates/zng-wgt-ansi-text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-ansi-text" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,12 +12,12 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-button/Cargo.toml b/crates/zng-wgt-button/Cargo.toml index 87d16b914..23b3d15a1 100644 --- a/crates/zng-wgt-button/Cargo.toml +++ b/crates/zng-wgt-button/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-button" -version = "0.4.20" +version = "0.4.21" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,15 +12,15 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.20" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.21" } diff --git a/crates/zng-wgt-checkerboard/Cargo.toml b/crates/zng-wgt-checkerboard/Cargo.toml index 6e8b0f75c..af856db59 100644 --- a/crates/zng-wgt-checkerboard/Cargo.toml +++ b/crates/zng-wgt-checkerboard/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-checkerboard" -version = "0.3.27" +version = "0.3.28" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-color = { path = "../zng-color", version = "0.3.14" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-color = { path = "../zng-color", version = "0.3.15" } serde = "1.0" diff --git a/crates/zng-wgt-container/Cargo.toml b/crates/zng-wgt-container/Cargo.toml index d522ef1c0..464201005 100644 --- a/crates/zng-wgt-container/Cargo.toml +++ b/crates/zng-wgt-container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-container" -version = "0.3.17" +version = "0.3.18" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-app = { path = "../zng-app", version = "0.13.4" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-data-view/Cargo.toml b/crates/zng-wgt-data-view/Cargo.toml index c998c2b1c..d25a18592 100644 --- a/crates/zng-wgt-data-view/Cargo.toml +++ b/crates/zng-wgt-data-view/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-data-view" -version = "0.3.27" +version = "0.3.28" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,9 +12,9 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } parking_lot = "0.12" tracing = "0.1" diff --git a/crates/zng-wgt-data/Cargo.toml b/crates/zng-wgt-data/Cargo.toml index 8d0e0bc98..86bd036cc 100644 --- a/crates/zng-wgt-data/Cargo.toml +++ b/crates/zng-wgt-data/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-data" -version = "0.2.37" +version = "0.2.38" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,8 +12,8 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-var = { path = "../zng-var", version = "0.5.9" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-dialog/Cargo.toml b/crates/zng-wgt-dialog/Cargo.toml index aff6f98f6..092b0c518 100644 --- a/crates/zng-wgt-dialog/Cargo.toml +++ b/crates/zng-wgt-dialog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-dialog" -version = "0.1.16" +version = "0.1.17" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,25 +12,25 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.20" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.30" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.37" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.21" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.31" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.38" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } tracing = "0.1" parking_lot = "0.12" diff --git a/crates/zng-wgt-fill/Cargo.toml b/crates/zng-wgt-fill/Cargo.toml index 62f23e5fc..203e09492 100644 --- a/crates/zng-wgt-fill/Cargo.toml +++ b/crates/zng-wgt-fill/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-fill" -version = "0.2.37" +version = "0.2.38" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,4 +12,4 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } diff --git a/crates/zng-wgt-filter/Cargo.toml b/crates/zng-wgt-filter/Cargo.toml index 580fc832a..34ba94275 100644 --- a/crates/zng-wgt-filter/Cargo.toml +++ b/crates/zng-wgt-filter/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-filter" -version = "0.2.37" +version = "0.2.38" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,5 +12,5 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-color = { path = "../zng-color", version = "0.3.14" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-color = { path = "../zng-color", version = "0.3.15" } diff --git a/crates/zng-wgt-grid/Cargo.toml b/crates/zng-wgt-grid/Cargo.toml index bc0033423..88e262ffa 100644 --- a/crates/zng-wgt-grid/Cargo.toml +++ b/crates/zng-wgt-grid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-grid" -version = "0.3.25" +version = "0.3.26" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,10 +12,10 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } tracing = "0.1" diff --git a/crates/zng-wgt-image/Cargo.toml b/crates/zng-wgt-image/Cargo.toml index 10ec9ee29..c242cf4fb 100644 --- a/crates/zng-wgt-image/Cargo.toml +++ b/crates/zng-wgt-image/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-image" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,12 +12,12 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.5" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.6" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-input/Cargo.toml b/crates/zng-wgt-input/Cargo.toml index 6dc0fcc04..ec759e8f2 100644 --- a/crates/zng-wgt-input/Cargo.toml +++ b/crates/zng-wgt-input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-input" -version = "0.2.39" +version = "0.2.40" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,11 +12,11 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.37" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.38" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.38" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.39" } diff --git a/crates/zng-wgt-inspector/Cargo.toml b/crates/zng-wgt-inspector/Cargo.toml index 4d398da5e..b8c6bbac6 100644 --- a/crates/zng-wgt-inspector/Cargo.toml +++ b/crates/zng-wgt-inspector/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-inspector" -version = "0.2.41" +version = "0.2.42" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -23,40 +23,40 @@ live = [] crash_handler = ["zng-app/crash_handler", "dep:open"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-env = { path = "../zng-env", version = "0.3.6" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.38" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } -zng-ext-config = { path = "../zng-ext-config", version = "0.3.16", default-features = false } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.1.16" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.5" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.30" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.20" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.20" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.30" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.30" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.30" } -zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.3.30" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-color = { path = "../zng-color", version = "0.3.14" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-env = { path = "../zng-env", version = "0.3.7" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.39" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } +zng-ext-config = { path = "../zng-ext-config", version = "0.3.17", default-features = false } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.1.17" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.6" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.31" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.21" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.21" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.31" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.31" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.31" } +zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.3.31" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-color = { path = "../zng-color", version = "0.3.15" } serde = { version = "1.0", features = ["derive"] } tracing = "0.1" diff --git a/crates/zng-wgt-layer/Cargo.toml b/crates/zng-wgt-layer/Cargo.toml index 555cb3d60..a2515604a 100644 --- a/crates/zng-wgt-layer/Cargo.toml +++ b/crates/zng-wgt-layer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-layer" -version = "0.3.29" +version = "0.3.30" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,17 +12,17 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3", default-features = false } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4", default-features = false } parking_lot = "0.12" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-markdown/Cargo.toml b/crates/zng-wgt-markdown/Cargo.toml index beb450444..250e07645 100644 --- a/crates/zng-wgt-markdown/Cargo.toml +++ b/crates/zng-wgt-markdown/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-markdown" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,30 +12,30 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.30" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.30" } -zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.3.25" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.3.30" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.37" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-image = { path = "../zng-wgt-image", version = "0.3.30" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.20" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.38" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.31" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.31" } +zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.3.26" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.3.31" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.38" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-image = { path = "../zng-wgt-image", version = "0.3.31" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.21" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.39" } +zng-app = { path = "../zng-app", version = "0.13.4" } pulldown-cmark = "0.12" http = "1.1" diff --git a/crates/zng-wgt-material-icons/Cargo.toml b/crates/zng-wgt-material-icons/Cargo.toml index b3d2d9e54..7d608d53c 100644 --- a/crates/zng-wgt-material-icons/Cargo.toml +++ b/crates/zng-wgt-material-icons/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-material-icons" -version = "0.3.20" +version = "0.3.21" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -30,11 +30,11 @@ rounded = [] sharp = [] [dependencies] -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } phf = { version = "0.11", default-features = false } tracing = "0.1" diff --git a/crates/zng-wgt-menu/Cargo.toml b/crates/zng-wgt-menu/Cargo.toml index 253238a1d..4ff8fb302 100644 --- a/crates/zng-wgt-menu/Cargo.toml +++ b/crates/zng-wgt-menu/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-menu" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,26 +12,26 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.3.30" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.30" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.30" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.30" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.20" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.3.31" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.31" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.31" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.31" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.21" } diff --git a/crates/zng-wgt-panel/Cargo.toml b/crates/zng-wgt-panel/Cargo.toml index fe6301ec2..513b2c4ed 100644 --- a/crates/zng-wgt-panel/Cargo.toml +++ b/crates/zng-wgt-panel/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-panel" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.30" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.31" } +zng-app = { path = "../zng-app", version = "0.13.4" } diff --git a/crates/zng-wgt-progress/Cargo.toml b/crates/zng-wgt-progress/Cargo.toml index f491e4d88..e795d7c2c 100644 --- a/crates/zng-wgt-progress/Cargo.toml +++ b/crates/zng-wgt-progress/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-progress" -version = "0.1.0" +version = "0.1.1" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,16 +12,16 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-var = { path = "../zng-var", version = "0.5.9" } tracing = "0.1" diff --git a/crates/zng-wgt-rule-line/Cargo.toml b/crates/zng-wgt-rule-line/Cargo.toml index 722c001fc..62bd076b4 100644 --- a/crates/zng-wgt-rule-line/Cargo.toml +++ b/crates/zng-wgt-rule-line/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-rule-line" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } diff --git a/crates/zng-wgt-scroll/Cargo.toml b/crates/zng-wgt-scroll/Cargo.toml index 3bec0f8bb..2efc221eb 100644 --- a/crates/zng-wgt-scroll/Cargo.toml +++ b/crates/zng-wgt-scroll/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-scroll" -version = "0.4.29" +version = "0.4.30" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -21,18 +21,18 @@ debug_default = [] dyn_closure = [] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-color = { path = "../zng-color", version = "0.3.14" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-color = { path = "../zng-color", version = "0.3.15" } serde = { version = "1.0", features = ["derive"] } atomic = "0.6" diff --git a/crates/zng-wgt-settings/Cargo.toml b/crates/zng-wgt-settings/Cargo.toml index 5b3469526..fac09f559 100644 --- a/crates/zng-wgt-settings/Cargo.toml +++ b/crates/zng-wgt-settings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-settings" -version = "0.1.21" +version = "0.1.22" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,31 +12,31 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-ext-config = { path = "../zng-ext-config", version = "0.3.16" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.30" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.20" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.30" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.3.30" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.20" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.5" } -zng-env = { path = "../zng-env", version = "0.3.6" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-ext-config = { path = "../zng-ext-config", version = "0.3.17" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.31" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.21" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.31" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.3.31" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.21" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.6" } +zng-env = { path = "../zng-env", version = "0.3.7" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-size-offset/Cargo.toml b/crates/zng-wgt-size-offset/Cargo.toml index d28165105..390590f39 100644 --- a/crates/zng-wgt-size-offset/Cargo.toml +++ b/crates/zng-wgt-size-offset/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-size-offset" -version = "0.2.37" +version = "0.2.38" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,7 +12,7 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } euclid = "0.22" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-stack/Cargo.toml b/crates/zng-wgt-stack/Cargo.toml index 83449c3d3..c9eff7f50 100644 --- a/crates/zng-wgt-stack/Cargo.toml +++ b/crates/zng-wgt-stack/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-stack" -version = "0.3.27" +version = "0.3.28" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -21,11 +21,11 @@ debug_default = [] dyn_closure = [] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-var = { path = "../zng-var", version = "0.5.9" } euclid = "0.22" serde = { version = "1.0", features = ["derive"] } diff --git a/crates/zng-wgt-style/Cargo.toml b/crates/zng-wgt-style/Cargo.toml index 704aa36e0..9b0686ad2 100644 --- a/crates/zng-wgt-style/Cargo.toml +++ b/crates/zng-wgt-style/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-style" -version = "0.3.27" +version = "0.3.28" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -16,7 +16,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] trace_widget = ["zng-app/trace_widget"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-app = { path = "../zng-app", version = "0.13.4" } tracing = "0.1" diff --git a/crates/zng-wgt-text-input/Cargo.toml b/crates/zng-wgt-text-input/Cargo.toml index 23601c364..5d066fd2c 100644 --- a/crates/zng-wgt-text-input/Cargo.toml +++ b/crates/zng-wgt-text-input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-text-input" -version = "0.4.20" +version = "0.4.21" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,22 +12,22 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.2.39" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.30" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.30" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-data = { path = "../zng-wgt-data", version = "0.2.37" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.38" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.2.40" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.31" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.31" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-data = { path = "../zng-wgt-data", version = "0.2.38" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.39" } +zng-var = { path = "../zng-var", version = "0.5.9" } diff --git a/crates/zng-wgt-text/Cargo.toml b/crates/zng-wgt-text/Cargo.toml index 06f56c7d1..2256e6e46 100644 --- a/crates/zng-wgt-text/Cargo.toml +++ b/crates/zng-wgt-text/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-text" -version = "0.4.20" +version = "0.4.21" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,23 +12,23 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-wgt-data = { path = "../zng-wgt-data", version = "0.2.37" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.39" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.38" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-wgt-data = { path = "../zng-wgt-data", version = "0.2.38" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.40" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.39" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } atomic = "0.6" tracing = "0.1" diff --git a/crates/zng-wgt-toggle/Cargo.toml b/crates/zng-wgt-toggle/Cargo.toml index 0fa432950..81f64173c 100644 --- a/crates/zng-wgt-toggle/Cargo.toml +++ b/crates/zng-wgt-toggle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-toggle" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,23 +12,23 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.37" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-var = { path = "../zng-var", version = "0.5.8" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.38" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-var = { path = "../zng-var", version = "0.5.9" } parking_lot = "0.12" tracing = "0.1" diff --git a/crates/zng-wgt-tooltip/Cargo.toml b/crates/zng-wgt-tooltip/Cargo.toml index 621ecdcda..e21129814 100644 --- a/crates/zng-wgt-tooltip/Cargo.toml +++ b/crates/zng-wgt-tooltip/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-tooltip" -version = "0.4.20" +version = "0.4.21" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,12 +12,12 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } diff --git a/crates/zng-wgt-transform/Cargo.toml b/crates/zng-wgt-transform/Cargo.toml index 7b5c68519..8ca40ef71 100644 --- a/crates/zng-wgt-transform/Cargo.toml +++ b/crates/zng-wgt-transform/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-transform" -version = "0.2.37" +version = "0.2.38" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,6 +12,6 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } euclid = "0.22" diff --git a/crates/zng-wgt-undo-history/Cargo.toml b/crates/zng-wgt-undo-history/Cargo.toml index 49f9c4b7d..09f8c5ffc 100644 --- a/crates/zng-wgt-undo-history/Cargo.toml +++ b/crates/zng-wgt-undo-history/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-undo-history" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,16 +12,16 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.39" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.40" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } diff --git a/crates/zng-wgt-undo/Cargo.toml b/crates/zng-wgt-undo/Cargo.toml index 09614f895..1d5ff912b 100644 --- a/crates/zng-wgt-undo/Cargo.toml +++ b/crates/zng-wgt-undo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-undo" -version = "0.2.39" +version = "0.2.40" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,5 +12,5 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.39" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.40" } diff --git a/crates/zng-wgt-webrender-debug/Cargo.toml b/crates/zng-wgt-webrender-debug/Cargo.toml index aae549782..cc028b246 100644 --- a/crates/zng-wgt-webrender-debug/Cargo.toml +++ b/crates/zng-wgt-webrender-debug/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-webrender-debug" -version = "0.2.39" +version = "0.2.40" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,10 +12,10 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-view-api = { path = "../zng-view-api", version = "0.10.3" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-view-api = { path = "../zng-view-api", version = "0.10.4" } webrender-api = { package = "zng-webrender-api", version = "0.64.0" } serde = "1.0" diff --git a/crates/zng-wgt-window/Cargo.toml b/crates/zng-wgt-window/Cargo.toml index 7f80d8738..b4be3115f 100644 --- a/crates/zng-wgt-window/Cargo.toml +++ b/crates/zng-wgt-window/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-window" -version = "0.6.5" +version = "0.6.6" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -19,24 +19,24 @@ debug_default = ["zng-wgt/debug_default"] dyn_closure = ["zng-wgt/dyn_closure"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-ext-config = { path = "../zng-ext-config", version = "0.3.16", default-features = false } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-ext-config = { path = "../zng-ext-config", version = "0.3.17", default-features = false } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } # used only by fallback_chrome -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } serde = { version = "1.0", features = ["derive"] } paste = "1.0" diff --git a/crates/zng-wgt-wrap/Cargo.toml b/crates/zng-wgt-wrap/Cargo.toml index b9c33df6f..7b2ecd8c3 100644 --- a/crates/zng-wgt-wrap/Cargo.toml +++ b/crates/zng-wgt-wrap/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-wrap" -version = "0.3.30" +version = "0.3.31" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -12,10 +12,10 @@ categories = ["gui"] keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-app = { path = "../zng-app", version = "0.13.3" } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-app = { path = "../zng-app", version = "0.13.4" } tracing = "0.1" diff --git a/crates/zng-wgt/Cargo.toml b/crates/zng-wgt/Cargo.toml index a1cc103d5..37138c78a 100644 --- a/crates/zng-wgt/Cargo.toml +++ b/crates/zng-wgt/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt" -version = "0.5.3" +version = "0.5.4" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -27,15 +27,15 @@ http = ["zng-task/http"] [dependencies] zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } -zng-app = { path = "../zng-app", version = "0.13.3" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-task = { path = "../zng-task", version = "0.4.8" } +zng-app = { path = "../zng-app", version = "0.13.4" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-task = { path = "../zng-task", version = "0.4.9" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } paste = "1.0" tracing = "0.1" diff --git a/crates/zng/Cargo.toml b/crates/zng/Cargo.toml index 0ec9afa37..146b2310c 100644 --- a/crates/zng/Cargo.toml +++ b/crates/zng/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng" -version = "0.12.5" +version = "0.12.6" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" @@ -199,79 +199,79 @@ android_native_activity = ["zng-view?/android_native_activity"] # foundation zng-clone-move = { path = "../zng-clone-move", version = "0.2.5" } zng-txt = { path = "../zng-txt", version = "0.2.8" } -zng-state-map = { path = "../zng-state-map", version = "0.3.6" } -zng-app-context = { path = "../zng-app-context", version = "0.5.11" } -zng-layout = { path = "../zng-layout", version = "0.2.29" } -zng-var = { path = "../zng-var", version = "0.5.8" } -zng-task = { path = "../zng-task", version = "0.4.8" } -zng-color = { path = "../zng-color", version = "0.3.14" } -zng-env = { path = "../zng-env", version = "0.3.6" } -zng-unique-id = { path = "../zng-unique-id", version = "0.4.6" } +zng-state-map = { path = "../zng-state-map", version = "0.3.7" } +zng-app-context = { path = "../zng-app-context", version = "0.5.12" } +zng-layout = { path = "../zng-layout", version = "0.2.30" } +zng-var = { path = "../zng-var", version = "0.5.9" } +zng-task = { path = "../zng-task", version = "0.4.9" } +zng-color = { path = "../zng-color", version = "0.3.15" } +zng-env = { path = "../zng-env", version = "0.3.7" } +zng-unique-id = { path = "../zng-unique-id", version = "0.4.7" } # app -zng-app = { path = "../zng-app", version = "0.13.3", default-features = false } -zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.36" } -zng-ext-config = { path = "../zng-ext-config", version = "0.3.16", default-features = false } -zng-ext-font = { path = "../zng-ext-font", version = "0.4.11" } -zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.16" } -zng-ext-image = { path = "../zng-ext-image", version = "0.2.37" } -zng-ext-svg = { path = "../zng-ext-svg", version = "0.1.3", optional = true } -zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.38" } -zng-ext-window = { path = "../zng-ext-window", version = "0.3.28" } -zng-ext-input = { path = "../zng-ext-input", version = "0.5.27" } -zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.39" } -zng-ext-hot-reload = { path = "../zng-ext-hot-reload", version = "0.1.25", optional = true } +zng-app = { path = "../zng-app", version = "0.13.4", default-features = false } +zng-ext-fs-watcher = { path = "../zng-ext-fs-watcher", version = "0.2.37" } +zng-ext-config = { path = "../zng-ext-config", version = "0.3.17", default-features = false } +zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } +zng-ext-l10n = { path = "../zng-ext-l10n", version = "0.5.17" } +zng-ext-image = { path = "../zng-ext-image", version = "0.2.38" } +zng-ext-svg = { path = "../zng-ext-svg", version = "0.1.4", optional = true } +zng-ext-clipboard = { path = "../zng-ext-clipboard", version = "0.2.39" } +zng-ext-window = { path = "../zng-ext-window", version = "0.3.29" } +zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } +zng-ext-undo = { path = "../zng-ext-undo", version = "0.2.40" } +zng-ext-hot-reload = { path = "../zng-ext-hot-reload", version = "0.1.26", optional = true } # widgets -zng-wgt = { path = "../zng-wgt", version = "0.5.3" } -zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.37" } -zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.37" } -zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.39" } -zng-wgt-data = { path = "../zng-wgt-data", version = "0.2.37" } -zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.37" } -zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.37" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.17" } -zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.2.39" } -zng-wgt-data-view = { path = "../zng-wgt-data-view", version = "0.3.27" } -zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.37" } -zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.27" } -zng-wgt-checkerboard = { path = "../zng-wgt-checkerboard", version = "0.3.27" } -zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.5" } -zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.29" } -zng-wgt-undo-history = { path = "../zng-wgt-undo-history", version = "0.3.30" } -zng-wgt-image = { path = "../zng-wgt-image", version = "0.3.30" } -zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.20" } -zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.20" } -zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.20" } -zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.27" } -zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.3.30" } -zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.3.25" } -zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.30" } -zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.30" } -zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.30" } -zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.30" } -zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.29" } -zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.3.30" } -zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.20" } -zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.3.30" } -zng-wgt-inspector = { path = "../zng-wgt-inspector", version = "0.2.41" } -zng-wgt-settings = { path = "../zng-wgt-settings", version = "0.1.21" } -zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.1.16" } -zng-wgt-progress = { path = "../zng-wgt-progress", version = "0.1.0" } - -zng-wgt-material-icons = { path = "../zng-wgt-material-icons", version = "0.3.20", default-features = false, optional = true } -zng-ext-single-instance = { path = "../zng-ext-single-instance", version = "0.3.21", optional = true } +zng-wgt = { path = "../zng-wgt", version = "0.5.4" } +zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } +zng-wgt-transform = { path = "../zng-wgt-transform", version = "0.2.38" } +zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } +zng-wgt-data = { path = "../zng-wgt-data", version = "0.2.38" } +zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } +zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.2.40" } +zng-wgt-data-view = { path = "../zng-wgt-data-view", version = "0.3.28" } +zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } +zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } +zng-wgt-checkerboard = { path = "../zng-wgt-checkerboard", version = "0.3.28" } +zng-wgt-window = { path = "../zng-wgt-window", version = "0.6.6" } +zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } +zng-wgt-undo-history = { path = "../zng-wgt-undo-history", version = "0.3.31" } +zng-wgt-image = { path = "../zng-wgt-image", version = "0.3.31" } +zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } +zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.21" } +zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } +zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } +zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.3.31" } +zng-wgt-grid = { path = "../zng-wgt-grid", version = "0.3.26" } +zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.31" } +zng-wgt-rule-line = { path = "../zng-wgt-rule-line", version = "0.3.31" } +zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.31" } +zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.31" } +zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } +zng-wgt-ansi-text = { path = "../zng-wgt-ansi-text", version = "0.3.31" } +zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.21" } +zng-wgt-markdown = { path = "../zng-wgt-markdown", version = "0.3.31" } +zng-wgt-inspector = { path = "../zng-wgt-inspector", version = "0.2.42" } +zng-wgt-settings = { path = "../zng-wgt-settings", version = "0.1.22" } +zng-wgt-dialog = { path = "../zng-wgt-dialog", version = "0.1.17" } +zng-wgt-progress = { path = "../zng-wgt-progress", version = "0.1.1" } + +zng-wgt-material-icons = { path = "../zng-wgt-material-icons", version = "0.3.21", default-features = false, optional = true } +zng-ext-single-instance = { path = "../zng-ext-single-instance", version = "0.3.22", optional = true } tracing = "0.1" # view -zng-view-api = { path = "../zng-view-api", version = "0.10.3", default-features = false } +zng-view-api = { path = "../zng-view-api", version = "0.10.4", default-features = false } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -zng-view = { path = "../zng-view", version = "0.6.2", default-features = false, optional = true } +zng-view = { path = "../zng-view", version = "0.6.3", default-features = false, optional = true } [target.'cfg(not(any(target_arch = "wasm32", target_os = "android", target_os = "ios")))'.dependencies] -zng-view-prebuilt = { path = "../zng-view-prebuilt", version = "0.12.5", optional = true } +zng-view-prebuilt = { path = "../zng-view-prebuilt", version = "0.12.6", optional = true } [build-dependencies] cfg_aliases = "0.2" diff --git a/crates/zng/README.md b/crates/zng/README.md index 642b58e2c..8074dcac2 100644 --- a/crates/zng/README.md +++ b/crates/zng/README.md @@ -10,7 +10,7 @@ First add `zng` to your `Cargo.toml`, or call `cargo add zng -F view_prebuilt`: ```toml [dependencies] -zng = { version = "0.12.5", features = ["view_prebuilt"] } +zng = { version = "0.12.6", features = ["view_prebuilt"] } ``` Then create your first window: diff --git a/crates/zng/src/app.rs b/crates/zng/src/app.rs index 2e2f46b5e..82a8b1b90 100644 --- a/crates/zng/src/app.rs +++ b/crates/zng/src/app.rs @@ -23,7 +23,7 @@ //! //! ```toml //! [dependencies] -//! zng = { version = "0.12.5", features = ["view_prebuilt"] } +//! zng = { version = "0.12.6", features = ["view_prebuilt"] } //! ``` //! //! ```no_run diff --git a/crates/zng/src/icon.rs b/crates/zng/src/icon.rs index 2ff271ce1..46e13cc40 100644 --- a/crates/zng/src/icon.rs +++ b/crates/zng/src/icon.rs @@ -80,7 +80,7 @@ pub use zng_wgt_text::icon::{ico_color, ico_size, GlyphIcon, GlyphSource, Icon}; /// [Material Design Icons]: https://github.com/google/material-design-icons /// /// ```toml -/// zng = { version = "0.12.5", features = ["material_icons"] } +/// zng = { version = "0.12.6", features = ["material_icons"] } /// ``` /// /// Handlers are registered for [`ICONS`] that provides the icons, the raw codepoints and glyph icon metadata is available in each font module. diff --git a/crates/zng/src/lib.rs b/crates/zng/src/lib.rs index 99309b73c..2a48c4d3f 100644 --- a/crates/zng/src/lib.rs +++ b/crates/zng/src/lib.rs @@ -17,7 +17,7 @@ //! //! ```toml //! [dependencies] -//! zng = { version = "0.12.5", features = ["view_prebuilt"] } +//! zng = { version = "0.12.6", features = ["view_prebuilt"] } //! ``` //! //! Then create your first app: From 2e97d81e5ffe555761ce5202f74aa4aa63335883 Mon Sep 17 00:00:00 2001 From: Samuel Date: Sun, 3 Nov 2024 01:10:59 -0300 Subject: [PATCH 2/2] Bump minor --- crates/zng-wgt-button/Cargo.toml | 2 +- crates/zng-wgt-container/Cargo.toml | 2 +- crates/zng-wgt-data-view/Cargo.toml | 2 +- crates/zng-wgt-dialog/Cargo.toml | 2 +- crates/zng-wgt-grid/Cargo.toml | 2 +- crates/zng-wgt-inspector/Cargo.toml | 2 +- crates/zng-wgt-layer/Cargo.toml | 2 +- crates/zng-wgt-markdown/Cargo.toml | 2 +- crates/zng-wgt-menu/Cargo.toml | 2 +- crates/zng-wgt-progress/Cargo.toml | 2 +- crates/zng-wgt-scroll/Cargo.toml | 2 +- crates/zng-wgt-settings/Cargo.toml | 2 +- crates/zng-wgt-text-input/Cargo.toml | 2 +- crates/zng-wgt-toggle/Cargo.toml | 2 +- crates/zng-wgt-tooltip/Cargo.toml | 2 +- crates/zng-wgt-undo-history/Cargo.toml | 2 +- crates/zng-wgt-window/Cargo.toml | 2 +- crates/zng/Cargo.toml | 2 +- 18 files changed, 18 insertions(+), 18 deletions(-) diff --git a/crates/zng-wgt-button/Cargo.toml b/crates/zng-wgt-button/Cargo.toml index 23b3d15a1..46bdb8e9c 100644 --- a/crates/zng-wgt-button/Cargo.toml +++ b/crates/zng-wgt-button/Cargo.toml @@ -16,7 +16,7 @@ zng-var = { path = "../zng-var", version = "0.5.9" } zng-app = { path = "../zng-app", version = "0.13.4" } zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } zng-wgt = { path = "../zng-wgt", version = "0.5.4" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } diff --git a/crates/zng-wgt-container/Cargo.toml b/crates/zng-wgt-container/Cargo.toml index 464201005..8d20a938c 100644 --- a/crates/zng-wgt-container/Cargo.toml +++ b/crates/zng-wgt-container/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zng-wgt-container" -version = "0.3.18" +version = "0.4.0" authors = ["The Zng Project Developers"] edition = "2021" license = "Apache-2.0 OR MIT" diff --git a/crates/zng-wgt-data-view/Cargo.toml b/crates/zng-wgt-data-view/Cargo.toml index d25a18592..5894bc0bd 100644 --- a/crates/zng-wgt-data-view/Cargo.toml +++ b/crates/zng-wgt-data-view/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } zng-var = { path = "../zng-var", version = "0.5.9" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } parking_lot = "0.12" tracing = "0.1" diff --git a/crates/zng-wgt-dialog/Cargo.toml b/crates/zng-wgt-dialog/Cargo.toml index 092b0c518..6c3904f5e 100644 --- a/crates/zng-wgt-dialog/Cargo.toml +++ b/crates/zng-wgt-dialog/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } diff --git a/crates/zng-wgt-grid/Cargo.toml b/crates/zng-wgt-grid/Cargo.toml index 88e262ffa..300e2c00b 100644 --- a/crates/zng-wgt-grid/Cargo.toml +++ b/crates/zng-wgt-grid/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-layout = { path = "../zng-layout", version = "0.2.30" } tracing = "0.1" diff --git a/crates/zng-wgt-inspector/Cargo.toml b/crates/zng-wgt-inspector/Cargo.toml index b8c6bbac6..c31ef089f 100644 --- a/crates/zng-wgt-inspector/Cargo.toml +++ b/crates/zng-wgt-inspector/Cargo.toml @@ -43,7 +43,7 @@ zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } zng-wgt-tooltip = { path = "../zng-wgt-tooltip", version = "0.4.21" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.21" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } zng-wgt-menu = { path = "../zng-wgt-menu", version = "0.3.31" } diff --git a/crates/zng-wgt-layer/Cargo.toml b/crates/zng-wgt-layer/Cargo.toml index a2515604a..2670922ce 100644 --- a/crates/zng-wgt-layer/Cargo.toml +++ b/crates/zng-wgt-layer/Cargo.toml @@ -13,7 +13,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } diff --git a/crates/zng-wgt-markdown/Cargo.toml b/crates/zng-wgt-markdown/Cargo.toml index 250e07645..2575ba9be 100644 --- a/crates/zng-wgt-markdown/Cargo.toml +++ b/crates/zng-wgt-markdown/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } zng-wgt-wrap = { path = "../zng-wgt-wrap", version = "0.3.31" } diff --git a/crates/zng-wgt-menu/Cargo.toml b/crates/zng-wgt-menu/Cargo.toml index 4ff8fb302..fcb38b360 100644 --- a/crates/zng-wgt-menu/Cargo.toml +++ b/crates/zng-wgt-menu/Cargo.toml @@ -18,7 +18,7 @@ zng-layout = { path = "../zng-layout", version = "0.2.30" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } zng-wgt-panel = { path = "../zng-wgt-panel", version = "0.3.31" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } diff --git a/crates/zng-wgt-progress/Cargo.toml b/crates/zng-wgt-progress/Cargo.toml index e795d7c2c..fc8514f35 100644 --- a/crates/zng-wgt-progress/Cargo.toml +++ b/crates/zng-wgt-progress/Cargo.toml @@ -19,7 +19,7 @@ zng-layout = { path = "../zng-layout", version = "0.2.30" } zng-app = { path = "../zng-app", version = "0.13.4" } zng-task = { path = "../zng-task", version = "0.4.9" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } zng-var = { path = "../zng-var", version = "0.5.9" } diff --git a/crates/zng-wgt-scroll/Cargo.toml b/crates/zng-wgt-scroll/Cargo.toml index 2efc221eb..f9debbff7 100644 --- a/crates/zng-wgt-scroll/Cargo.toml +++ b/crates/zng-wgt-scroll/Cargo.toml @@ -25,7 +25,7 @@ zng-wgt = { path = "../zng-wgt", version = "0.5.4" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } zng-app = { path = "../zng-app", version = "0.13.4" } diff --git a/crates/zng-wgt-settings/Cargo.toml b/crates/zng-wgt-settings/Cargo.toml index fac09f559..c0941c304 100644 --- a/crates/zng-wgt-settings/Cargo.toml +++ b/crates/zng-wgt-settings/Cargo.toml @@ -20,7 +20,7 @@ zng-ext-font = { path = "../zng-ext-font", version = "0.4.12" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } zng-wgt-toggle = { path = "../zng-wgt-toggle", version = "0.3.31" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } zng-wgt-text-input = { path = "../zng-wgt-text-input", version = "0.4.21" } zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } diff --git a/crates/zng-wgt-text-input/Cargo.toml b/crates/zng-wgt-text-input/Cargo.toml index 5d066fd2c..91e13cd7f 100644 --- a/crates/zng-wgt-text-input/Cargo.toml +++ b/crates/zng-wgt-text-input/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } diff --git a/crates/zng-wgt-toggle/Cargo.toml b/crates/zng-wgt-toggle/Cargo.toml index 81f64173c..72c702de8 100644 --- a/crates/zng-wgt-toggle/Cargo.toml +++ b/crates/zng-wgt-toggle/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] [dependencies] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } diff --git a/crates/zng-wgt-tooltip/Cargo.toml b/crates/zng-wgt-tooltip/Cargo.toml index e21129814..3512bb4af 100644 --- a/crates/zng-wgt-tooltip/Cargo.toml +++ b/crates/zng-wgt-tooltip/Cargo.toml @@ -17,7 +17,7 @@ zng-wgt-layer = { path = "../zng-wgt-layer", version = "0.3.30" } zng-wgt-access = { path = "../zng-wgt-access", version = "0.2.38" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } zng-app = { path = "../zng-app", version = "0.13.4" } zng-ext-input = { path = "../zng-ext-input", version = "0.5.28" } diff --git a/crates/zng-wgt-undo-history/Cargo.toml b/crates/zng-wgt-undo-history/Cargo.toml index 09f8c5ffc..d57cee2cb 100644 --- a/crates/zng-wgt-undo-history/Cargo.toml +++ b/crates/zng-wgt-undo-history/Cargo.toml @@ -15,7 +15,7 @@ keywords = ["gui", "ui", "user-interface", "zng"] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } zng-wgt-button = { path = "../zng-wgt-button", version = "0.4.21" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-scroll = { path = "../zng-wgt-scroll", version = "0.4.30" } zng-wgt-stack = { path = "../zng-wgt-stack", version = "0.3.28" } zng-wgt-style = { path = "../zng-wgt-style", version = "0.3.28" } diff --git a/crates/zng-wgt-window/Cargo.toml b/crates/zng-wgt-window/Cargo.toml index b4be3115f..aa9d996f9 100644 --- a/crates/zng-wgt-window/Cargo.toml +++ b/crates/zng-wgt-window/Cargo.toml @@ -20,7 +20,7 @@ dyn_closure = ["zng-wgt/dyn_closure"] [dependencies] zng-wgt = { path = "../zng-wgt", version = "0.5.4" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" } zng-wgt-text = { path = "../zng-wgt-text", version = "0.4.21" } zng-app = { path = "../zng-app", version = "0.13.4" } diff --git a/crates/zng/Cargo.toml b/crates/zng/Cargo.toml index 146b2310c..8fc97c9fb 100644 --- a/crates/zng/Cargo.toml +++ b/crates/zng/Cargo.toml @@ -230,7 +230,7 @@ zng-wgt-input = { path = "../zng-wgt-input", version = "0.2.40" } zng-wgt-data = { path = "../zng-wgt-data", version = "0.2.38" } zng-wgt-filter = { path = "../zng-wgt-filter", version = "0.2.38" } zng-wgt-size-offset = { path = "../zng-wgt-size-offset", version = "0.2.38" } -zng-wgt-container = { path = "../zng-wgt-container", version = "0.3.18" } +zng-wgt-container = { path = "../zng-wgt-container", version = "0.4.0" } zng-wgt-undo = { path = "../zng-wgt-undo", version = "0.2.40" } zng-wgt-data-view = { path = "../zng-wgt-data-view", version = "0.3.28" } zng-wgt-fill = { path = "../zng-wgt-fill", version = "0.2.38" }