Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Component design principle: active #249

@juanca

Description

@juanca

active is meant as "the current widget is on the page tab sequence"

This means either the actual node is on the page tab sequence or some child node.

e.g.

<Popover>
  <Calendar>
    <Button />
  </Calendar> 
  <Input />
</Popover>

Nothing is active thus nothing is on the page tab sequence (when we're dealing with managing page tab sequences).

However,

<Popover active>
  <Calendar>
    <Button />
  </Calendar> 
  <Input active />
</Popover>

This implies that the something within Popover is on the page tab sequence. And that something is something within Input. Probably a <input /> node.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions