Skip to main content

PopoverProps

Struct PopoverProps 

Source
pub struct PopoverProps {
    pub id: Option<Cow<'static, str>>,
    pub trigger: Option<Markup>,
    pub placement: PopoverPlacement,
    pub offset_px: f64,
    pub arrow: bool,
    pub class: Option<Cow<'static, str>>,
    pub attrs: AttrMap,
    pub children: Children,
}
Expand description

Popover — maps to CSS class .popover on a <details> element.

Upstream basecoat uses a <details> root containing a <summary> trigger and a <div role="dialog"> content panel. The WASM controller wires floating-ui positioning, click-outside dismissal, and aria-expanded sync onto that markup.

The id is required by the WASM controller so trigger/content pairs can be looked up unambiguously and so accessible-name attributes (aria-controls, aria-labelledby) can target the right elements.

Fields§

§id: Option<Cow<'static, str>>

Unique DOM id — required for the WASM controller.

§trigger: Option<Markup>

Trigger content placed inside the <summary> element.

§placement: PopoverPlacement

Floating-ui placement (default bottom).

§offset_px: f64

Distance in pixels between the trigger edge and the content panel.

§arrow: bool

Whether to render a <div data-popover-arrow> element inside the content. The visual arrow is CSS-positioned in v0.2 — see crate docs.

§class: Option<Cow<'static, str>>

Extra CSS classes appended after the popover class.

§attrs: AttrMap§children: Children

Popover content (rendered inside the <div role="dialog">).

Implementations§

Source§

impl PopoverProps

Source

pub const __BASECOAT_EXTEND_FIELD: Option<&'static str>

Source

pub fn builder() -> PopoverPropsBuilder

Create a builder for this prop struct.

Trait Implementations§

Source§

impl Clone for PopoverProps

Source§

fn clone(&self) -> PopoverProps

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PopoverProps

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PopoverProps

Source§

fn default() -> PopoverProps

Returns the “default value” for a type. Read more
Source§

impl From<PopoverPropsBuilder> for PopoverProps

Source§

fn from(b: PopoverPropsBuilder) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.