Enhances password input component with proper accessibility attributes including role, label, hint, and state to improve screen reader experience.
Adjusts minimum height handling for Android platform compatibility in list items and replaces Tailwind classes with inline styles for gesture control settings to ensure consistent styling across platforms.
Adds translation keys for password visibility toggle functionality.
Replaces `className` prop with `extraClassName` across Input and PasswordInput components for consistency.
Updates PasswordInput to use numeric `topOffset` instead of string `topPosition` for better type safety and clearer intent.
Adds uncontrolled mode support to PasswordInput with internal state management and optional `defaultShowPassword` prop.
Removes unnecessary margin classes from various View components to clean up spacing.
Replaces fixed height with minimum height to ensure proper content display and accessibility compliance.
Changes list items from fixed 44px height to minimum height, allowing content to expand naturally while maintaining the minimum touch target size.
Adds specific styling to gesture control settings items to accommodate longer descriptions and improve readability.
Improves visual feedback by adding focus state borders to all input variants.
Changes the unfocused border from transparent to neutral-800 for better visual consistency and adds focus/blur handlers to ensure proper state management across different input types.
Removes unnecessary props and internal state management from PasswordInput component to make it more focused and reusable. Wraps all PasswordInput instances in relative positioned Views for consistent layout behavior.
Updates package.json to use caret version for @expo/vector-icons dependency for better version flexibility.
Consolidates duplicate password input implementations across login and settings screens into a single reusable component.
Improves code maintainability by eliminating redundant password visibility toggle logic and standardizing password input behavior throughout the application.
Adds consistent accessibility support and test identifiers across all password input instances.
Improves user experience by allowing users to show/hide password text in both main login form and Jellyseerr settings.
Adds eye icon button that toggles between masked and visible password input, making it easier for users to verify their password entries.