Merge branch 'develop' of https://gitlab.verizon.com/BPHV_MIPS/vds_ios.git into mbruce/didSetUpdate

This commit is contained in:
Matt Bruce 2023-09-08 08:37:18 -05:00
commit 4a36c92919
3 changed files with 9 additions and 3 deletions

View File

@ -1171,7 +1171,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 40;
CURRENT_PROJECT_VERSION = 41;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
@ -1208,7 +1208,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 40;
CURRENT_PROJECT_VERSION = 41;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;

View File

@ -126,7 +126,7 @@ extension TextLinkCaret {
}
func setAttribute(on attributedString: NSMutableAttributedString) {
let imageAttr = ImageLabelAttribute(location: location, imageName: "\(position.rawValue)-caret-bold", frame: .init(x: 0, y: 0, width: caretSize.width, height: caretSize.height), tintColor: tintColor, accessibleText: "Caret")
let imageAttr = ImageLabelAttribute(location: location, imageName: "\(position.rawValue)-caret-bold", frame: .init(x: 0, y: 0, width: caretSize.width, height: caretSize.height), tintColor: tintColor)
let spacer = NSAttributedString.spacer(for: spacerWidth)
guard let image = try? imageAttr.getAttachment() else { return }

View File

@ -1,6 +1,12 @@
1.0.41
=======
- CXTDT-457899 - Tabs - Incorrect nonselected color on Dark surface
- ONEAPP-4652 - TextLinkCaret - Caret anouncement removed
- Fixed ToggleView Disabled Shadow Color
- Fixed several component layout issues
- Fixed bug in label for ActionLabelAttribute
- Updated naming conventions for TextPosition to TextAlignment in regards to alignment properties
- Added a ton of Code Documentation
1.0.40
=======