🎉 Welcome to the new major version: v3. Upgrade now!

Powerful suite of Blade components for TALL Stack apps.

Dial

Dial component.

The dial component is a speed dial, also known as a Floating Action Button (FAB). It renders a fixed-position button in one of the screen corners that, when activated, reveals a set of action items. Each action item is defined using the dial.items component inside the main dial tag. Because the component uses fixed positioning, only one dial should be used per page.

<x-dial>
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
<x-dial.items icon="trash" label="Delete" />
</x-dial>

You can control which corner of the screen the dial appears in using the position attribute. The default position is bottom-right .

<!-- Available Positions:
top-left,
top-right,
bottom-left,
bottom-right (default)
-->
 
<x-dial position="top-left">
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
</x-dial>

By default, items fan out vertically from the main button. Use the horizontal attribute to display them in a horizontal row instead:

<x-dial horizontal>
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
<x-dial.items icon="trash" label="Delete" />
</x-dial>

By default, the dial opens on click. Use the hover attribute to reveal items when the user hovers over the main button:

<x-dial hover>
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
</x-dial>

Each dial.items accepts a label attribute that displays a tooltip-style text next to the item, helping users identify each action.

<x-dial>
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
<x-dial.items icon="document-duplicate" label="Copy" />
<x-dial.items icon="trash" label="Delete" />
</x-dial>

The label is not mandatory.

If you prefer to hide all labels at once, use the without-tooltip attribute on the main dial component:

<x-dial without-tooltip>
<x-dial.items icon="pencil" />
<x-dial.items icon="share" />
<x-dial.items icon="trash" />
</x-dial>

The main button displays a plus icon by default, which rotates 45 degrees when the dial is open. You can change it using the icon attribute:

<x-dial icon="bars-4">
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
</x-dial>

Use the square attribute to render the main button and items with square corners instead of a full circle.

<x-dial square>
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
<x-dial.items icon="trash" label="Delete" />
</x-dial>
<x-dial xs>...</x-dial>
<x-dial sm>...</x-dial>
<x-dial>...</x-dial> {{-- md (default) --}}
<x-dial lg>...</x-dial>

The color attribute changes the main button color. All TallStackUI colors are available:

<x-dial color="red">
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
</x-dial>
 
<x-dial color="emerald">
<x-dial.items icon="pencil" label="Edit" />
<x-dial.items icon="share" label="Share" />
</x-dial>

Code highlighting provided by Torchlight