pub fn Popover<Ch: IntoView + 'static, T: IntoView + 'static>(
props: PopoverProps<Ch, T>,
) -> impl IntoView
Expand description
§Required Props
- popover_trigger:
PopoverTrigger<T>
- The element or component that triggers popover.
- children: [
TypedChildren<Ch>
]
§Optional Props
- class:
impl Into<MaybeProp<String>>
- trigger_type:
PopoverTriggerType
- Action that displays the popover.
- position: [
PopoverPosition
]- Configures the position of the Popover.
- on_click_modal:
OnClickModal
- on_click_signal: [
RwSignal<bool>
] - appearance:
impl Into<MaybeProp<PopoverAppearance>>
- size:
impl Into<Signal<PopoverSize>>
- on_open:
impl Into<BoxCallback>
- on_close:
impl Into<BoxCallback>