fix(dialog): pub export `Dialog`

fixes #2107
pull/2108/head
FabianLars 8 months ago
parent 40ea6e0b4e
commit 3846445ea3
No known key found for this signature in database

@ -0,0 +1,5 @@
---
dialog: patch
---
The `Dialog` struct is now correctly exported, primarily to fix the documentation on `docs.rs`.

@ -39,6 +39,11 @@ use desktop::*;
#[cfg(mobile)]
use mobile::*;
#[cfg(desktop)]
pub use desktop::Dialog;
#[cfg(mobile)]
pub use mobile::Dialog;
pub(crate) const OK: &str = "Ok";
pub(crate) const CANCEL: &str = "Cancel";
pub(crate) const YES: &str = "Yes";

Loading…
Cancel
Save