`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. ```jsx <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, ```jsx <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.
activeis 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.
Nothing is active thus nothing is on the page tab sequence (when we're dealing with managing page tab sequences).
However,
This implies that the something within Popover is on the page tab sequence. And that something is something within Input. Probably a
<input />node.