Skip to main content

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 toggleSecurePasswordField now supports a show/hide button via the new isVisibilityButtonEnabled property (defaults to false) and isPasswordVisible property. 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 visibilityIconTint to SecurePasswordField, to color the show/hide icon independently of the field's tintColor. When not set, the icon follows tintColor.

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.