windease API reference - v0.6.0
    Preparing search index...

    Interface GroupProps

    interface GroupProps {
        acceptsDrops?: boolean;
        children?: ReactNode;
        className?: string;
        config?: unknown;
        "data-testid"?: string;
        draggable?: boolean;
        hidden?: boolean;
        id?: NodeId;
        meta?: Record<string, unknown>;
        order?: number;
        parentId?: NodeId;
        placement?: Record<string, unknown>;
        strategyId?: string;
        style?: CSSProperties;
        title?: ReactNode;
    }

    Hierarchy

    • CommonBindingProps
    • PresentationalProps
      • GroupProps
    Index

    Properties

    acceptsDrops?: boolean

    When true, registers this preset's wrapper element as a drop target so consumers can drag items into it. The element must have a container capability (Zone and Group always do; Panel needs the container prop).

    children?: ReactNode
    className?: string
    config?: unknown
    "data-testid"?: string
    draggable?: boolean

    When true, wraps the group's rendered content in a DragHandle so the user can drag this group to another acceptsDrops target.

    hidden?: boolean
    id?: NodeId
    meta?: Record<string, unknown>
    order?: number
    parentId?: NodeId
    placement?: Record<string, unknown>
    strategyId?: string
    style?: CSSProperties
    title?: ReactNode