macro_rules! sheet {
    ($($methods:tt)*) => { ... };
}
Expand description

This macro is generated by the dominator-component-macros crate. For more information, see the SheetProps. All generated methods:

sheet! ({
    .side(<SheetSide>)
    .side_signal(<TsideSignal : futures_signals :: signal :: Signal < Item = SheetSide >>)
    .underlying_view(<Option < Dom >>)
    .underlying_view_signal(<Tunderlying_viewSignal : futures_signals :: signal :: Signal < Item = Option <
Dom > >>)
    .sheet_content(<Option < Dom >>)
    .sheet_content_signal(<Tsheet_contentSignal : futures_signals :: signal :: Signal < Item = Option <
Dom > >>)
    .expanded(<bool>)
    .expanded_signal(<TexpandedSignal : futures_signals :: signal :: Signal < Item = bool >>)
    .show_scrim(<bool>)
    .show_scrim_signal(<Tshow_scrimSignal : futures_signals :: signal :: Signal < Item = bool >>)
    .on_scrim_click(<TOnScrimClick>)
    .apply(<TApplyFn>)
});