Panel v0.2.0+

The Panel component is a layout utility for sectioning content vertically into a header, body, and footer.

Basic Panel

A basic panel allows body content to scroll vertically, when the panel height is constrained.

Options

Watch how the panel body reacts when you resize the example container.

Panel Header

Panel Body

If it takes you too long to document the backlog PR bottleneck, then you are not detailing enough. If it takes you too long to plan the burndown VOC production release, then you are not satifying enough. If it takes you too long to launch the burndown PR sequence, then you are not coding enough. We must exactly pick up the many MVP software development! If we code off the processes, we can get the numerous emergence down the WIP colocation. If it takes you too long to release the lean MVP pattern, then you are not coding enough.

Panel Footer
<div class="hxPanel">
  <header></header>
  <hx-div></hx-div>
  <footer></footer>
</div>

Visual styling added for demonstration purposes.

Tabbed Panel

A tabbed panel replaces the <hx-div> element with a tabset, to act as the panel body.

Tab content is allowed to scroll while tabs remain visible.

Panel Header
Basic Scrolling

Basic Tab Panel

Panel Footer
<div class="hxPanel hxTabbed">
  <header>Panel Header</header>

  <hx-tabset>
    <hx-tablist>
      <hx-tab>Basic</hx-tab>
      <hx-tab>Scrolling</hx-tab>
    </hx-tablist>

    <hx-tabcontent>
      <hx-tabpanel>...</hx-tabpanel>
      <hx-tabpanel>...</hx-tabpanel>
    </hx-tabcontent>
  </hx-tabset>

  <footer>Panel Footer</footer>
</div>

See Also