mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 14:25:02 +00:00
Complete implementation of accessibility utilities across fakemui components: **New Files**: - src/utils/accessibility.ts - Core accessibility utilities (moved from legacy) - src/utils/accessibility.module.scss - Accessibility SCSS styles - src/utils/useAccessible.ts - React hooks for accessibility: * useAccessible() - Generate test IDs and ARIA attributes * useKeyboardNavigation() - Handle keyboard events * useFocusManagement() - Programmatic focus control * useLiveRegion() - Screen reader announcements * useFocusTrap() - Focus trapping for modals **Component Updates**: - Button.tsx - Added data-testid and ARIA support via useAccessible hook - TextField.tsx - Added data-testid, aria-invalid, aria-describedby support **Documentation**: - docs/ACCESSIBILITY_INTEGRATION.md - Complete integration guide with examples **Features**: - 50+ preset test ID generators (form, canvas, settings, navigation, etc.) - ARIA attribute patterns for buttons, toggles, dialogs, tabs, live regions - Keyboard navigation helpers (Enter, Escape, Arrow keys, Tab) - Accessibility validators (hasLabel, isKeyboardAccessible, etc.) - Fully typed TypeScript with AccessibilityFeature, Component, Action types All components now support reliable testing via data-testid and screen reader access via ARIA attributes. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
24 lines
717 B
Plaintext
24 lines
717 B
Plaintext
# Development Dependencies for Python Workflow Plugins
|
|
# Use this for development, testing, and linting
|
|
# Last Updated: 2026-01-23
|
|
|
|
# Include all plugin dependencies
|
|
-r requirements.txt
|
|
-r requirements-backend.txt
|
|
-r requirements-web.txt
|
|
-r requirements-notifications.txt
|
|
-r requirements-packagerepo.txt
|
|
-r requirements-testing.txt
|
|
-r requirements-tools.txt
|
|
|
|
# Code quality and linting
|
|
black>=23.12.0 # Code formatter
|
|
flake8>=6.1.0 # Style guide enforcement
|
|
mypy>=1.7.1 # Static type checker
|
|
pylint>=3.0.3 # Code analysis
|
|
isort>=5.13.2 # Import sorting
|
|
|
|
# Development utilities
|
|
pytest-cov>=4.1.0 # Code coverage reporting
|
|
pytest-mock>=3.12.0 # Mock utilities for pytest
|