Badges
Compact status pills in seven semantic colours. One colour per meaning — Gold + shimmer is reserved for terminal-success.
Canonical
<span koala-badge="Success">Sent</span>
The most-used shape. Filled Success communicates a positive terminal status — a sent quote, a paid invoice.
Variants
9 variantsGold + shimmer — the animated sheen reserved for terminal success.
<span koala-badge="Gold" koala-badge-shimmer="true">Complete</span>
Bool glyph — auto-prepends a tick (true) or cross (false) before the label.
<span koala-badge="Success" koala-badge-bool="true">Yes</span>
States
3 statesProps
5 attributes| Attribute | Values | Notes |
|---|---|---|
| koala-badge | Neutral, Success, Warning, Danger, Info, Gold | Required. Selects the colour family. Defaults to Neutral. |
| koala-badge-variant | Filled, Outlined | Defaults to Filled. Outlined drops to muted surface for low-emphasis pills. |
| koala-badge-size | Default, Small | Defaults to Default. Small for inline-with-text use. |
| koala-badge-bool | true, false | Prepends a tick (true) or cross (false) glyph in front of the label. |
| koala-badge-shimmer | true, false | Adds the animated sheen sweep. Reserved for Gold “Complete”. |
Do & don't
Role badge
One canonical pill for every user role. Outlined neutral surface, uniform size, optional icon. Replaces inline role badges and the old admin-only helper.
<koala-role-badge role="Conveyancer" />
| Attribute | Notes |
|---|---|
| role | Required role enum: Admin, OrganisationAdmin, EstateAgent, MortgageBroker, ConveyancerAdmin, Conveyancer. |
| small | Renders the smaller form factor. |
| tooltip | Optional Tippy tooltip text (typically the role permissions list). |
Disabled badge
Outlined danger badge that renders only when the supplied timestamp is non-null. Use next to soft-deletable entity names (branches, partners, partner users).
<koala-disabled-badge if-disabled-at="@user.DisabledAt" />
| Attribute | Values | Notes |
|---|---|---|
| if-disabled-at | DateTimeOffset? | Required. When null, the helper renders nothing. |
| size | Small, Default | Same scale as koala-badge. |
| variant | Outlined (default), Filled | Filled matches older sites that used a solid Danger badge. |