- Replace view-only row buttons with clickable rows (recordUrl)\n- Update action-surface contract slot to InspectAffordance + validator support\n- Add golden guard tests + contract doc\n- Update SpecKit constitution/templates to include inspection affordance rule
13 lines
258 B
PHP
13 lines
258 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Ui\ActionSurface\Enums;
|
|
|
|
enum ActionSurfaceInspectAffordance: string
|
|
{
|
|
case ClickableRow = 'clickable_row';
|
|
case ViewAction = 'view_action';
|
|
case PrimaryLinkColumn = 'primary_link_column';
|
|
}
|