mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-25 06:14:59 +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>
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
# MetaBuilder Python Workflow Plugins - Master Requirements File
|
|
# This file consolidates all dependencies across Python workflow plugins
|
|
# Last Updated: 2026-01-23
|
|
# Python Runtime: 3.9+
|
|
|
|
# Core Dependencies - Required by all plugins
|
|
python-dotenv>=1.0.0 # Backend: load_env plugin
|
|
tenacity>=8.2.3 # Core: exponential backoff for API calls
|
|
|
|
# API Clients - Backend plugins
|
|
openai>=1.3.0 # backend_create_openai
|
|
slack-sdk>=3.23.0 # backend_create_slack, notifications_slack
|
|
PyGithub>=2.1.1 # backend_create_github
|
|
discord.py>=2.3.2 # backend_create_discord, notifications_discord
|
|
|
|
# Web Framework
|
|
Flask>=3.0.0 # web_* plugins for creating Flask apps
|
|
Flask-CORS>=4.0.0 # web_* plugins for CORS support (implicit from Flask dependencies)
|
|
|
|
# Web/HTTP Utilities
|
|
requests>=2.31.0 # tools_create_pull_request, web utilities
|
|
|
|
# Data Processing & Validation
|
|
pydantic>=2.5.0 # packagerepo: normalize_entity, validate_entity
|
|
|
|
# Database (if packagerepo plugins need DB access)
|
|
PyJWT>=2.8.1 # packagerepo: auth_verify_jwt
|
|
|
|
# Testing Frameworks
|
|
pytest>=7.4.3 # test_* plugins
|
|
pytest-asyncio>=0.21.1 # For async test execution
|
|
|
|
# Optional/Conditional Dependencies (installed on demand)
|
|
# Note: These are dynamically imported in plugins, so install as needed
|
|
|
|
# For advanced logging (optional)
|
|
# logging-json>=2.0.0
|
|
|
|
# For database support (optional, uncomment if needed)
|
|
# psycopg2-binary>=2.9.9 # PostgreSQL
|
|
# pymongo>=4.6.0 # MongoDB
|
|
# redis>=5.0.1 # Redis
|
|
|
|
# For distributed task processing (optional)
|
|
# celery>=5.3.4
|
|
# kafka-python>=2.0.2
|