Rocky_Mountain_Vending/.pnpm-store/v10/files/25/629de2a36cefefa49727ffe4b117a5783ed84eb368860a51536cfd8e8b6808169b6015878bef3b0ab9df6b17d530380b1f4821f94da281ce26d40c449ef434
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

27 lines
880 B
Text

/**
* @license
* Copyright 2018 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import ManualAudit from '../../manual/manual-audit.js';
/**
* @fileoverview Manual A11y audit for interactive element affordance.
*/
class InteractiveElementAffordance extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'interactive-element-affordance',
description: 'Interactive elements, such as links and buttons, should indicate their state and be distinguishable from non-interactive elements. [Learn how to decorate interactive elements with affordance hints](https://developer.chrome.com/docs/lighthouse/accessibility/interactive-element-affordance/).',
title: 'Interactive elements indicate their purpose and state',
}, super.partialMeta);
}
}
export default InteractiveElementAffordance;