CXTDT-565087 - Input Field - Text - OnDark colors

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2024-06-04 10:24:34 -05:00
parent 045d64766e
commit a24bbd32a5
3 changed files with 6 additions and 2 deletions

View File

@ -376,7 +376,7 @@ open class EntryFieldBase: Control, Changeable, FormFieldInternalValidatable {
if isEnabled { if isEnabled {
let optionColorAttr = ColorLabelAttribute(location: oldText.count + 1, let optionColorAttr = ColorLabelAttribute(location: oldText.count + 1,
length: 8, length: 8,
color: VDSColor.elementsSecondaryOnlight) color: secondaryColorConfiguration.getColor(self))
attributes.append(optionColorAttr) attributes.append(optionColorAttr)
} }

View File

@ -247,7 +247,7 @@ open class InputField: EntryFieldBase {
successLabel.isHidden = false successLabel.isHidden = false
errorLabel.isHidden = true errorLabel.isHidden = true
statusIcon.name = .checkmarkAlt statusIcon.name = .checkmarkAlt
statusIcon.color = VDSColor.paletteBlack statusIcon.color = iconColorConfiguration.getColor(self)
statusIcon.surface = surface statusIcon.surface = surface
statusIcon.isHidden = !isEnabled statusIcon.isHidden = !isEnabled
} else { } else {

View File

@ -1,3 +1,7 @@
1.0.66
----------------
- CXTDT-565087 - Input Field - Text - OnDark colors
1.0.65 1.0.65
---------------- ----------------
- CXTDT-556996 - RadioboxGroup Accessibility - Voice over does not render the group position - CXTDT-556996 - RadioboxGroup Accessibility - Voice over does not render the group position