iOS Components v3.9.0
· One min read
Adds an optional show/hide button to SecurePasswordField, with configurable icon tint, plus a clipboard auto-clear fix for copied secure-label values.
Added
- Password visibility toggle —
SecurePasswordFieldnow supports a show/hide button via the newisVisibilityButtonEnabledproperty (defaults tofalse) andisPasswordVisibleproperty. Disabling the button forces the password back to hidden. Toggling visibility only changes presentation - the field's text accessors still never expose the entered password. - Visibility icon tint — added
visibilityIconTinttoSecurePasswordField, to color the show/hide icon independently of the field'stintColor. When not set, the icon followstintColor.
Fixed
- Disabling copy-to-clipboard on a secure label now removes the corresponding gesture handler, and enabling it repeatedly no longer adds duplicate handlers.
Security
- Clipboard auto-clear for copied values — values copied from secure labels now expire from the device clipboard after 2 minutes and no longer sync to other Apple devices through Universal Clipboard.
- Prevented embedding applications from intercepting entered characters through a replacement text field delegate or accessibility value.