mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 22:04:56 +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>
27 lines
643 B
Modula-2
27 lines
643 B
Modula-2
module github.com/metabuilder/workflow-plugins-go
|
|
|
|
go 1.21
|
|
|
|
// Core workflow plugin interface
|
|
require (
|
|
github.com/metabuilder/workflow v1.0.0
|
|
)
|
|
|
|
// Math plugins - stdlib only
|
|
// control/* - stdlib only
|
|
// convert/* - stdlib only
|
|
// core/* - stdlib only
|
|
// dict/* - stdlib only
|
|
// list/* - stdlib only
|
|
// logic/* - stdlib only
|
|
// string/* - stdlib only
|
|
// test/* - stdlib only
|
|
// tools/* - stdlib only
|
|
// utils/* - stdlib only
|
|
// var/* - stdlib only
|
|
// notifications/* - stdlib only
|
|
// web/* - stdlib only
|
|
|
|
// All plugins use only Go standard library and the workflow interface
|
|
// No external dependencies required beyond the workflow module
|