Activity Grid
Calendar contribution grids — a configurable heatmap and a GitHub-style activity graph with a less/more legend.
Preview
Controls
Device view renders in an isolated frame so real responsive breakpoints apply. Switch to Full for overflowing popovers.
Installation
php artisan ui:add activity-graph
Registry contract
Install confidence
php artisan ui:add activity-graph
writes only the generated targets below. The CLI validates each file hash before writing and
prompts before replacing local changes unless --force is used.
- Version
- 1.0.0
- License
- open
- Stability
- stable
- Contract
- v2
- Foundation
- ≥ 1.0.0
| Type | Generated target |
|---|---|
| blade | resources/views/components/ui/activity-graph.blade.php |
Registry dependencies
None.
Package dependencies
composer: jml/brok:^1.0
Guidance
Chart and visual analyticsReveal a visual trend, distribution, flow, or relationship.
Use when
- Use when trend, distribution, flow, intensity, or relationship questions are easier to answer visually than in raw numbers. Do not use a chart when users mainly need exact lookup or when a single metric would be clearer as text or a stat.
Avoid when
- Avoid using activity-graph as a default simply because it is available in the library. Choose it only when its interaction cost, visibility, and behavior match the job to be done.
- Task length
- medium
- Interaction cost
- medium
- Interruptiveness
- none
- Input precision
- none
- Mobile / touch risk
- high
- Accessibility risk
- high
- Needs background context
- No
- Comparison needed
- Yes
Preferred alternatives
- Table for exact lookup
- Stat for a single value
Anti-patterns
- Decorative charts without a meaningful question
API
manifest knowledge + registry-derived coverageProps
| Prop | Type / values | Default | Description |
|---|---|---|---|
| data | array | [] | Declared by @props in the registry Blade source. |
| weeks | int | 26 | Declared by @props in the registry Blade source. |
| endDate | mixed|null | null | Declared by @props in the registry Blade source. |
| blockSize | int | 12 | Declared by @props in the registry Blade source. |
| gap | int | 3 | Declared by @props in the registry Blade source. |
| showLegend | bool | true | Declared by @props in the registry Blade source. |
| showMonths | bool | true | Declared by @props in the registry Blade source. |
Slots
Components use the default Blade slot unless a documented subcomponent is installed by the registry item.
Data slots
activity-graph
Capabilities
Behavior
- Uses server-rendered Blade and semantic HTML.
- Declares registry capability flags: a11y, responsive, rtl, darkMode, localized.
Usage
@php
use Illuminate\Support\Carbon;
// Deterministic demo data — a pseudo-random but stable contribution series.
$end = Carbon::parse('2026-06-13');
$data = [];
$cursor = $end->copy()->subWeeks(25)->startOfWeek(Carbon::SUNDAY);
$i = 0;
while ($cursor->lte($end)) {
$seed = ($i * 2654435761) % 97;
$weekend = $cursor->isWeekend();
$count = $seed < 30 ? 0 : (int) round(($seed / 97) * ($weekend ? 6 : 14));
$data[] = ['date' => $cursor->toDateString(), 'count' => $count];
$cursor->addDay();
$i++;
}
@endphp
<x-ui.activity-graph :data="$data" :weeks="26" end-date="2026-06-13" />
Accessibility & localization
data-slot
Keyboard focus-visible
Localized labels
- Accessibility target: wcag-2.2-aa-target.
- Uses semantic HTML and a stable
data-slotattribute for styling/scripting hooks. - Focus-visible rings use the
ringtoken so keyboard focus is always visible. - Disabled and invalid states are conveyed to assistive tech, not by color alone.
- Targets WCAG 2.2 AA; verify contrast in light, dark, admin and customer surfaces above.
- Labels go through
__()and the component uses logical properties (ms-*,text-start,start-*) so it mirrors correctly — flip the preview to RTL to confirm.
Source
The exact, editable file ui:add writes
into your app — copy it or own the whole thing. Previews
render this same code; there are no preview-only components.
Changelog
Current version: v1.0.0. See the site changelog for the full release history.