Merge branch 'mbruce/bugfixes' into 'develop'

ONEAPP-6244 - TitleLockup TitleLabel marked as .heading for Accessibility

See merge request BPHV_MIPS/vds_ios!141
This commit is contained in:
Bruce, Matt R 2024-01-31 20:38:37 +00:00
commit a00f01ab24
3 changed files with 8 additions and 2 deletions

View File

@ -1233,7 +1233,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 51;
CURRENT_PROJECT_VERSION = 52;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;
@ -1270,7 +1270,7 @@
BUILD_LIBRARY_FOR_DISTRIBUTION = YES;
CODE_SIGN_IDENTITY = "";
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 51;
CURRENT_PROJECT_VERSION = 52;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
DYLIB_COMPATIBILITY_VERSION = 1;

View File

@ -77,6 +77,7 @@ open class TitleLockup: View {
/// Label used to render the title model.
open var titleLabel = Label().with {
$0.setContentCompressionResistancePriority(.required, for: .vertical)
$0.accessibilityTraits.insert([.header])
}
/// Model used in rendering the title label.
@ -388,3 +389,4 @@ open class TitleLockup: View {
}
}
6

View File

@ -1,3 +1,7 @@
1.0.52
----------------
- ONEAPP-6244 - TitleLockup TitleLabel marked as .heading for Accessibility.
1.0.51
----------------
- ONEAPP-6239 - Loader is still showing when inactive.