Rocky_Mountain_Vending/.pnpm-store/v10/files/1a/1d082b2761f64a106b0cdea9c36d048ee762d0ad0ae871213650acf24813fa6249c6a8d6c42193bdb9c2cbdfd4fac40e3085c4fa2b9291fa4f56b4c9d5996f
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
790 B
Text

/**
* @license
* Copyright 2017 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
import ManualAudit from '../../manual/manual-audit.js';
/**
* @fileoverview Manual A11y audit to assert custom controls have associated labels.
*/
class CustomControlsLabels extends ManualAudit {
/**
* @return {LH.Audit.Meta}
*/
static get meta() {
return Object.assign({
id: 'custom-controls-labels',
description: 'Custom interactive controls have associated labels, provided by aria-label or aria-labelledby. [Learn more about custom controls and labels](https://developer.chrome.com/docs/lighthouse/accessibility/custom-controls-labels/).',
title: 'Custom controls have associated labels',
}, super.partialMeta);
}
}
export default CustomControlsLabels;