Adopt the new start chat button design. (#4013)

* Update compound and handle plain to tertiary/textLink button style updates.

* Update the start chat button to use the right icon/style.

* Update preview snapshots.

* Fix remaining snapshots.
This commit is contained in:
Doug
2025-04-11 17:09:57 +01:00
committed by GitHub
parent 2785d2a44b
commit 70fde932a4
176 changed files with 385 additions and 363 deletions

View File

@@ -8745,7 +8745,7 @@
repositoryURL = "https://github.com/element-hq/compound-ios";
requirement = {
kind = revision;
revision = 500e734ae918dc93dde7b1b50e5599b9807d4285;
revision = 0251fe8abe8f7baa8560febfc3f1b67e3bf7894c;
};
};
F76A08D0EA29A07A54F4EB4D /* XCRemoteSwiftPackageReference "swift-collections" */ = {

View File

@@ -15,7 +15,7 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/element-hq/compound-ios",
"state" : {
"revision" : "500e734ae918dc93dde7b1b50e5599b9807d4285"
"revision" : "0251fe8abe8f7baa8560febfc3f1b67e3bf7894c"
}
},
{

View File

@@ -39,7 +39,7 @@ struct AppLockSetupPINScreen: View {
Button(L10n.screenAppLockForgotPin) {
context.send(viewAction: .forgotPIN)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary, size: .medium))
}
}
.padding(.horizontal, 16)

View File

@@ -5,6 +5,7 @@
// Please see LICENSE files in the repository root for full details.
//
import Compound
import SwiftUI
/// The screen shown at the beginning of the onboarding flow.
@@ -105,9 +106,8 @@ struct AuthenticationStartScreen: View {
if context.viewState.showCreateAccountButton {
Button { context.send(viewAction: .register) } label: {
Text(L10n.screenCreateAccountTitle)
.padding(14)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
}
}
.padding(.horizontal, verticalSizeClass == .compact ? 128 : 24)

View File

@@ -167,7 +167,7 @@ private struct PollFormOptionRow: View {
CompoundIcon(\.delete)
}
.disabled(!canDeleteItem)
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.textLink))
.accessibilityLabel(L10n.actionRemove)
}

View File

@@ -103,13 +103,10 @@ struct TimelineMediaPreviewRedactConfirmationView: View {
}
.buttonStyle(.compound(.primary))
Button {
Button(L10n.actionCancel) {
dismiss()
} label: {
Text(L10n.actionCancel)
.padding(.vertical, 14)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
}
.padding(.bottom, 16)
.padding(.horizontal, 16)

View File

@@ -163,8 +163,9 @@ struct HomeScreen: View {
Button {
context.send(viewAction: .startChat)
} label: {
CompoundIcon(\.compose)
CompoundIcon(\.plus)
}
.buttonStyle(.compound(.super, size: .toolbarIcon))
.accessibilityLabel(L10n.actionStartChat)
.accessibilityIdentifier(A11yIdentifiers.homeScreen.startChat)
default:

View File

@@ -109,13 +109,19 @@ struct HomeScreenInviteCell: View {
private var buttons: some View {
HStack(spacing: 12) {
Button(L10n.actionDecline) {
Button {
context.send(viewAction: .declineInvite(roomIdentifier: room.id))
} label: {
Text(L10n.actionDecline)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.secondary, size: .medium))
Button(L10n.actionAccept) {
Button {
context.send(viewAction: .acceptInvite(roomIdentifier: room.id))
} label: {
Text(L10n.actionAccept)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.primary, size: .medium))
}

View File

@@ -80,10 +80,12 @@ struct HomeScreenRecoveryKeyConfirmationBanner: View {
var buttons: some View {
VStack(spacing: 16) {
Button(actionTitle) {
Button {
context.send(viewAction: primaryAction)
} label: {
Text(actionTitle)
.frame(maxWidth: .infinity)
}
.frame(maxWidth: .infinity)
.buttonStyle(.compound(.primary, size: .medium))
.accessibilityIdentifier(A11yIdentifiers.homeScreen.recoveryKeyConfirmationBannerContinue)
@@ -92,10 +94,9 @@ struct HomeScreenRecoveryKeyConfirmationBanner: View {
context.send(viewAction: .resetEncryption)
} label: {
Text(L10n.confirmRecoveryKeyBannerSecondaryButtonTitle)
.padding(.vertical, 7)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.plain, size: .medium))
.buttonStyle(.compound(.tertiary, size: .medium))
}
}
}

View File

@@ -276,13 +276,10 @@ struct JoinRoomScreen: View {
@ViewBuilder
var declineAndBlockButton: some View {
if let inviter = context.viewState.roomDetails?.inviter {
Button(role: .destructive) {
Button(L10n.screenJoinRoomDeclineAndBlockButtonTitle, role: .destructive) {
context.send(viewAction: .declineInviteAndBlock(userID: inviter.id))
} label: {
Text(L10n.screenJoinRoomDeclineAndBlockButtonTitle)
.padding(.vertical, 14)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
}
}

View File

@@ -38,7 +38,7 @@ struct KnockRequestCell: View {
contentID: cellInfo.userID,
avatarSize: .user(on: .knockingUserList),
mediaProvider: mediaProvider)
VStack(alignment: .leading, spacing: 12) {
VStack(alignment: .leading, spacing: 16) {
header
if let reason = cellInfo.reason {
DisclosableText(text: reason)
@@ -80,23 +80,30 @@ struct KnockRequestCell: View {
@ViewBuilder
private var actions: some View {
VStack(spacing: 0) {
VStack(spacing: 16) {
if onDecline != nil || onAccept != nil {
HStack(spacing: 16) {
if let onDecline {
Button(L10n.actionDecline) {
Button {
onDecline(cellInfo.eventID)
} label: {
Text(L10n.actionDecline)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.secondary, size: .medium))
}
if let onAccept {
Button(L10n.actionAccept) {
Button {
onAccept(cellInfo.eventID)
} label: {
Text(L10n.actionAccept)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.primary, size: .medium))
}
}
.fixedSize(horizontal: false, vertical: true)
}
if let onDeclineAndBan {
@@ -104,12 +111,10 @@ struct KnockRequestCell: View {
onDeclineAndBan(cellInfo.eventID)
} label: {
Text(L10n.screenKnockRequestsListDeclineAndBanActionTitle)
.padding(.top, 8)
.padding(.bottom, 4)
.frame(maxWidth: .infinity)
}
.frame(maxWidth: .infinity)
.buttonStyle(.compound(.plain))
.padding(.top, 16)
.buttonStyle(.compound(.tertiary, size: .small))
.padding(.top, 4)
}
}
.padding(.bottom, 16)

View File

@@ -54,7 +54,7 @@ struct IdentityConfirmationScreen: View {
Button(L10n.actionLearnMore) {
UIApplication.shared.open(context.viewState.learnMoreURL)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary, size: .small))
.padding(.top, 16)
}
}
@@ -85,8 +85,7 @@ struct IdentityConfirmationScreen: View {
Button("\(L10n.actionSkip) 🙉") {
context.send(viewAction: .skip)
}
.buttonStyle(.compound(.plain))
.padding(.vertical, 14)
.buttonStyle(.compound(.tertiary))
}
}
}

View File

@@ -81,7 +81,7 @@ struct SessionVerificationScreen: View {
Button(L10n.actionLearnMore) {
UIApplication.shared.open(context.viewState.learnMoreURL)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary, size: .small))
default:
EmptyView()
}
@@ -132,7 +132,7 @@ struct SessionVerificationScreen: View {
Button(L10n.actionIgnore) {
context.send(viewAction: .ignoreVerificationRequest)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
.accessibilityIdentifier(A11yIdentifiers.sessionVerificationScreen.ignoreVerificationRequest)
}
}
@@ -158,7 +158,7 @@ struct SessionVerificationScreen: View {
.accessibilityIdentifier(A11yIdentifiers.sessionVerificationScreen.startSasVerification)
case .showingChallenge:
VStack(spacing: 32) {
VStack(spacing: 16) {
Button(L10n.screenSessionVerificationTheyMatch) {
context.send(viewAction: .accept)
}
@@ -168,7 +168,7 @@ struct SessionVerificationScreen: View {
Button(L10n.screenSessionVerificationTheyDontMatch) {
context.send(viewAction: .decline)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
.accessibilityIdentifier(A11yIdentifiers.sessionVerificationScreen.declineChallenge)
}

View File

@@ -383,9 +383,7 @@ struct QRCodeLoginScreen: View {
Button(L10n.actionCancel) {
context.send(viewAction: .cancel)
}
.padding(.vertical, 13)
.frame(maxWidth: .infinity)
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
}
}
}

View File

@@ -58,9 +58,8 @@ struct ResolveVerifiedUserSendFailureScreen: View {
Button { context.send(viewAction: .cancel) } label: {
Text(L10n.actionCancelForNow)
.padding(.vertical, 14)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
}
}
}

View File

@@ -77,8 +77,11 @@ struct RoomMemberDetailsScreen: View {
.font(.compound.bodyMDSemibold)
}
Button(L10n.cryptoIdentityChangeWithdrawVerificationAction) {
Button {
context.send(viewAction: .withdrawVerification)
} label: {
Text(L10n.cryptoIdentityChangeWithdrawVerificationAction)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.secondary, size: .medium))
}

View File

@@ -293,7 +293,7 @@ struct ComposerToolbar: View {
.scaledFrame(size: 30, relativeTo: .compound.headingLG)
.scaledPadding(7, relativeTo: .compound.headingLG)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.textLink))
.accessibilityLabel(L10n.a11yDelete)
}

View File

@@ -100,11 +100,18 @@ private struct SingleKnockRequestBannerContent: View {
private var actions: some View {
HStack(spacing: 12) {
Button(L10n.screenRoomSingleKnockRequestViewButtonTitle, action: onViewAll)
.buttonStyle(.compound(.secondary, size: .medium))
Button(action: onViewAll) {
Text(L10n.screenRoomSingleKnockRequestViewButtonTitle)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.secondary, size: .medium))
if let onAccept {
Button(L10n.screenRoomSingleKnockRequestAcceptButtonTitle) { onAccept(request.eventID) }
.buttonStyle(.compound(.primary, size: .medium))
Button { onAccept(request.eventID) } label: {
Text(L10n.screenRoomSingleKnockRequestAcceptButtonTitle)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.primary, size: .medium))
}
}
.padding(.top, request.reason == nil ? 0 : 2)
@@ -146,8 +153,11 @@ private struct MultipleKnockRequestsBannerContent: View {
KnockRequestsBannerDismissButton(onDismiss: onDismiss)
}
}
Button(L10n.screenRoomMultipleKnockRequestsViewAllButtonTitle) {
Button {
onViewAll()
} label: {
Text(L10n.screenRoomMultipleKnockRequestsViewAllButtonTitle)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.primary, size: .medium))
}

View File

@@ -58,8 +58,11 @@ struct RoomScreenFooterView: View {
.foregroundColor(.compound.textPrimary)
}
Button(L10n.actionDismiss) {
Button {
callback(.resolvePinViolation(userID: member.userID))
} label: {
Text(L10n.actionDismiss)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.primary, size: .medium))
}
@@ -85,8 +88,11 @@ struct RoomScreenFooterView: View {
.foregroundColor(.compound.textCriticalPrimary)
}
Button(L10n.cryptoIdentityChangeWithdrawVerificationAction) {
Button {
callback(.resolveVerificationViolation(userID: member.userID))
} label: {
Text(L10n.cryptoIdentityChangeWithdrawVerificationAction)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.primary, size: .medium))
}

View File

@@ -182,6 +182,7 @@ struct NotificationSettingsScreen: View {
context.send(viewAction: .fixConfigurationMismatchTapped)
} label: {
Text(L10n.actionContinue)
.frame(maxWidth: .infinity)
}
.buttonStyle(.compound(.primary, size: .medium))
.disabled(context.viewState.fixingConfigurationMismatch)

View File

@@ -81,9 +81,8 @@ struct SendInviteConfirmationView: View {
dismiss()
} label: {
Text(L10n.actionCancel)
.padding(.vertical, 14)
}
.buttonStyle(.compound(.plain))
.buttonStyle(.compound(.tertiary))
}
.padding(.horizontal, 16)
}

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bac2ec44792700a5fe96fd1b33f0a3e7625ad934b4aa73e0f202a56d455d9b43
size 92227
oid sha256:4d08b8b5df874eae73fae351ecd4531d989f117c9fee81aa226b0633d86b2f79
size 92217

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56b3fc6ea7c9fd3c99bce318419ecf2b015e90fcb1ee6da72fd5449c60f4ef73
size 93704
oid sha256:fdaa354595e5fd207d13f3f5cb09e2de14eb0843be999b7126c01d98b0dc7233
size 93699

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e5c24a741c1fe627c91f349f1b47ecbce2718b64c137682207c1c72ed2f49cc7
size 49120
oid sha256:54ae0c16fcde575271c0f823bb46d104ca3378024017dda2d873029e6bfc6602
size 49116

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:344d64491b1a3ff8deef0832abf8a6921445dacae2b8a82730ec71fc8fab07a4
size 51680
oid sha256:200f2a472909e0df9a7e477f9f3a208082f6fe5dc42c75dcad531cbb06bc6e34
size 51681

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3daadc8da3e490a89f2c0ff8562ff1a226decdc80d837135297472e89c8367d2
size 90767
oid sha256:9599d535ee64b138ef01b8a41f68d542a0b964f7e372e654f17cc73452b55636
size 90758

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0f0f9d93f2ff8e369118b70000abbad11f85976ee7746d70594fad93911207cb
size 93336
oid sha256:d0a3ab22ce3f78834b9025f854b62086b73b85abf2348bb24c6d98b41a645ba6
size 93339

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b539396e05e63f0b3462538657733be4fb4d717a2b246827bb50b836bf4795d
size 47719
oid sha256:72383f9c2649be1102116cc27376dfa56ca4a2a1b9e7ecabb5831d50fa591f12
size 47717

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:935aa66dd96cebdb25e87c6553f45d79864b837c2e9bab1101ef50595de22d52
size 51464
oid sha256:7f0d94ce9bdfe56fffa271bea088faf130f58713d353d136dfc78f0a5ca62aa9
size 51465

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1fe33098a8a1f471e940c20f87ca503edeb3c5a2b915ca7078a92be3b6c4893f
size 91968
oid sha256:90c279f7fb3d0e4de470a5569586faa840f84ea2e506ce78577f46426ccd7a46
size 94114

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:28b1d648fd8fe1449fc6dad1bbcf896b772e6a112b70ae631299844b5ab05284
size 96261
oid sha256:86f8b289560860bf91422778d83a7b22ac90a5e16d2c6c9a2ff21ed7f811265f
size 98428

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1a38fa94b2faac182076185e6549faa5520df087179d4e5ee7ea81756711c0e0
size 51104
oid sha256:e7a2c4fd3dbb688c02c4bd07d7a22f1d3fa22ce424ac1c90637e90ae86dfc740
size 53418

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ee46378a0a2f6c170ae02bf6d10591893cd884decb94a04c2fc954101342673d
size 61412
oid sha256:8aafe76c27923039e1249df7ca457d626f4c20e5cb19be569b4c793d502a2abe
size 63630

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:28dda0e7e42c8993b24859077f7736ebba90722a323ec276cb4a7fadb215b06f
size 251491
oid sha256:40cf287f1023804145cb1fe53dba96675bfa04815a220b12670d7861bb3af95b
size 253177

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:878ae02263738b63aa41917459838fe689270e083cc7d8b93b0835e1414893b7
size 254380
oid sha256:986e93551d25c406b8a6f51bdc804dea24ae571e226b2a6c0658bda6f3261b72
size 256288

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7da27948fbd8af5c2ca0ea5df995709e90676b4b3fbe15042e4014b7097794c1
size 187267
oid sha256:a58ca8bb232ecd9395ea948970b87e1f60a6f56031f18568c259f4f466a5a863
size 189628

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3e687c9ed958011886d3f91e7d3123f735292c746663223ca0cafb5dcaca2e21
size 189974
oid sha256:50b9e64d6ef6555ac09f0eb07931691c5bfdc753427beb141f361820d0dcba7c
size 192428

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55fd5524f64fc98d602079cf0d508509debd7692665a89fe188c1d811a8e5225
size 313508
oid sha256:f4387db87d7aad30904305e7016faf2c9f75ac69156f10ae021b28688d48cdfd
size 312302

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7aadc016d54830518f04138db98d3db6b9cbdd46c781c9d6d3e216fa5f93184c
size 333135
oid sha256:35cc053864bc1d96f644e54cbb7a7e02e7b9c6975aac298af01e09c1edc67a9b
size 331781

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1728cf95295698ef622e17f94bdd3051dfb66805c7bfc2bcbbea702e916040ab
size 255180
oid sha256:9ff286a3d014c8bbb0cf64c06ffa958c6bb69d3278d56f8979d8ef0250f1d746
size 255703

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:38ec032717e91d95123e93db3bafebb98357f75fd82f743a57c051a8e72e166d
size 337264
oid sha256:f126924a6f6c7cff01354f59aa5710a238c8a2e8a4a971f315f07e6cd96b4f57
size 339880

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:efe51625d0e7d8f0915e10e111e590094ac26205d5701ef326ef555cd32edbed
size 114826
oid sha256:d792f5a7291205e574b0fef5a36f77d8685710c56b26601cc1e3862cfa5153b2
size 114811

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:88b1d59663a63b9a9d41e84115523b71efc45a93fe92a36636099e43214f5911
size 127195
oid sha256:ed87ccfaecba9062f8f35bc8c8ac6a3f8aa60d56dfa6d7a0d8541fabbdfc907b
size 127167

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb4b8ab30b15c476d0e2fbb1da57250faa8c7ec2dea0eb15dba22d5168a163c4
size 68556
oid sha256:bd76695b2b8bdaa1a4705e35af5cc354299456db560591932183a7a5bfddf6b6
size 68547

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e291c31fb3e762374ae12bfa19422aab7178eba929a1739534c7760d16e36c84
size 87405
oid sha256:e1225c6cd0883125e70e72c8227de7d89cefbf8ed680b39b618c739750e9010a
size 87354

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dca2662379e8739e90dad3809f5eb241fb5b51bd28464741bd765b81a685fd9d
size 214504
oid sha256:f442c9df920ce6f897577455e84239bb976bcf9d423af279a88e3fb96e98a877
size 214345

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9885cba7a9b020f28ff5b999e3bddacd81e4acecb88c8513594cdcb7189301c5
size 218008
oid sha256:a1d89e74f926517b409b28ec496503086f289f230e09b24aeef6814059cd6f83
size 217829

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6e6087c3e34ad55cb80dfa3aa639d1f38143a21ffd11386bf7401ef4a475b348
size 154147
oid sha256:aa66e9f601fa6657820b9161490ec0c5da5a95cafb04cf50f0b16f9ff748b3ea
size 154077

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:44ce659b81a922f8cf2ebbc4d33f5d274ec7d978884eda467ab9725239864016
size 163608
oid sha256:c63764835155ddb9a1f05e008e00d2b3744c0bc7348e9a7a2c5baa71206e8f47
size 163588

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b5fb7a23048bb92aa0b150affa0a85b74a7ddf6e3a283f2e5c382eb2c13d657b
size 106996
oid sha256:3a0ce165defd8c700b07d1cc92c307e26a4675592db7609e079049fc17f6a8ba
size 106837

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8f4e3b3b3c0b5de6fb9ab963df7f4b7d090e9ad82b181ced19326709c54c6f4b
size 110503
oid sha256:9584a59744f7babde7dc4b9c35b7fc51eefab18cc880c10b5bd50aae8673b403
size 110324

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4df6b436febeb15d036f0003f1eb782745e8223301f888c39bc41a83ef2acf85
size 61843
oid sha256:4edb7e980e517d07641b7de2744ed2c2b6a928a8322f0ce6249840b7296881a2
size 61773

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:36820fc8707e26533dcf705b085ef9674823a39c79edf0f091182ff3f1a46efe
size 70922
oid sha256:2dbad4f3700341e68140205cad7cd3582e74e1833829cece590b42f6d23f17f8
size 70849

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a7b43824b56503b7e74a50ac850bb7202fbf96aea3d21c4e0d0ba64ed2ff5f7
size 142282
oid sha256:bb7828d2f8ac4bbf2fe15123b5796298f3bdcbb3858d91c0ecc95a276be3bd94
size 142123

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a5018f37bf0d6022a7a0138914d0ccfd533862bb4649f5c7af401996baba4509
size 145718
oid sha256:4fb8a50e9e8e4ffec5b36379e16f70deddedc26cc90cd4b8d998d361e793d759
size 145539

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2450ea4e8db4a826e2f37384c1e5885ecdcb45ed937f6bbb6fe198514caf5b77
size 90370
oid sha256:aa532e9bb9080d3fd48d2eb57d177c7ee78faf6e03f47c62f0b08e60f7095ee0
size 90300

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:384e8ddcd330416b356690e856ed5ae6ff917654f927bbaf7e17079297e87347
size 100437
oid sha256:bfc240ca121232fbbad5364e175e3c3c760ef6aee65a60ced43c1c666f828426
size 100417

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:684937fac8705d72d8bcafa6ecb797a19b0013dd0a1a66f6cc66b7dd5593e494
size 207385
oid sha256:0bb54cf3d2cccb5464a0b988955bfcc8be957fba3ee0e64138f0c1f7c046e849
size 206917

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bb1db0c694e7cc06780339db5a834f2868dc35db8d02e3a99087da002ae1a5ba
size 208455
oid sha256:b4daa4fd6058748ba990a6eecd93efa6e193aac4ba7f99a204a1ac231e752fa0
size 208017

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6e82443e582194f2598dd395f5582d9bfcdac97f01106ccc1372998920a819bc
size 144881
oid sha256:cf6bb4ff51446e53a26643b0163e9beeff0df3229d26eeccc4b9f240f23928e5
size 144648

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:001088c542179f4f3c7c5e829322d9018bcaf8a487bd457233f48d8dbcad3456
size 146892
oid sha256:2faea33611a41860b9db154b0e42fbc70b004bc00f42842057471ec1650e92a4
size 146681

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3342b8c4ab9233bb9b389a1cd933d59293f5023c5409ac6f07e22347f8535bc2
size 219318
oid sha256:056ff521e503a56c7452e124038541abfa08fdf41769f08649b48f55d767fdbf
size 218846

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:86720d94cd73fa2ab46b8ee14972171b6fd7de498f4d02dcaa089268879f136d
size 227268
oid sha256:7cd803af30cda8ed1a257d23e172816118fd286d90fc0a9f237cacaf996a0453
size 226833

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1a6a64324e0a7bd1ebccceb05b4380c1d5d6d510bd10dd4d7951d5cae0f185e0
size 154557
oid sha256:f5d033015f79c10b819df6c1a706f7f7c1d52bd62f84a27a77a215ef4de8e541
size 154341

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8c34026c86963d751bfb61e965653d53d256771fb0833675167d53055e60044a
size 160785
oid sha256:6fe0c0a63e86f57fe1206b7495a1527b61fc5b672f50bf9398fdc8b6e669a2e6
size 163571

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:70b7c9804a88bc6f9c69dc35774f48df27369bb515c50cf1ab3d4905f6b38eeb
size 111388
oid sha256:52006d2d83fcfc0274be8129e3ebc8769a8997c32e950c6d8c42365961a2713b
size 111324

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9c2bb14501f755403cc6157c28425050834199811de283e4e88d9c122e3004ef
size 123115
oid sha256:7bcd4df62f5536042e2ad3c77bd9269c92a333952c8f8ab328c118d0303aaf0c
size 123065

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66f176f36b0a1b8968c5b0b39ce4295a6a098b1eaea55385d277b500c06c3644
size 68200
oid sha256:d935b69c623bddfecd5bc2dc7542b809917e4678282ac539444712adb5289c4e
size 68154

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90f6f8f10c0b648d67553e8e15f1eebb98a7504769b6339b889dab095a96d934
size 82108
oid sha256:c2041401d6e26baa1052378eea72ff08dbd4e739fd57ffb6e81603fad29e4c83
size 82058

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b678cbdc4f3bbeb3bd3738348fa5d272ace33d2d980bebe9aa07aa4e979506c6
size 223495
oid sha256:cbdaaa96db70a0bd1353c4ef323f048de004c36b0c6a84dcb9dd855ddd7a7e20
size 223058

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f7b9b06828fbbdb6f471e1ad9d6f3b3941c89371590bea2105e32dfe3991db10
size 234802
oid sha256:25d011d1c344cdc6d7c7376ec1b1b7d3644461eb12cdf16b02152c7d03068e43
size 234444

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:21ade84e0ba1fa5a9357e31f2bd0dda10e8e8a0e8e951ae66bb6baec03ce70ec
size 161570
oid sha256:c69b565317a54ffe70255bdfb9ea5edf3e8001e6d2843ac8ea35279f99c6dd10
size 161329

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a8fe17c3ba373103f8f34f796f4f1ee21a509cd153904a863ede92402f80ca49
size 176873
oid sha256:5e6edc3c722656222cb6c5fbf0936469f973f182e303bed8030280bd6ba2ef6e
size 176696

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be5fc3e659a6a729eb954280bec6ad11488adfc89d55769d6d5ecde8c76541e8
size 108595
oid sha256:ce7d011008151198a065ee57253df8d1abdb1938e1699865ab6dcfc441ee5559
size 108158

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:949d7454a131322fcfae5ffd2472a95f3f32121f0b551a80fd6d2058ea415fb0
size 121631
oid sha256:608ab55993f689248199414be678c1a6d0901db1e81eb0d0cbd459379ec4dd85
size 121273

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9d9b9487d81da70558222a3cdeed73449bdf5d9f4ff2ee1ac0797c02de3da5b5
size 63343
oid sha256:8b337d0600db8ebc23efbf7c686d88aae28ef3ad85d5be19251be1f87ad50477
size 63102

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b380ef7d1a5956381a3fefd86a00953f5fc1436c7da768a4544ec2ab12ac5a7
size 82592
oid sha256:25776a4bd307eb980aa26edd43a33a925d76c03a858242b6a938132f3a01e1f5
size 82415

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b6eda3b084f228d4aa583bdb8b7903d81f78738d01972be40854a9fa0e65a327
size 95267
oid sha256:de8af2ce78c6c1eee322fb73748f76bc0de0bb2eba9e77fab255817c5ebbf223
size 95114

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e1376bad4b66e258b3ab72baca9d9baa67344c7860ae3aa1de094ea791503c97
size 98556
oid sha256:24838969dc5a692f27101e293bfa81a961e2ad9506796cc4f5cc0b5c3f710056
size 98392

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:866773bffcc2adbc48607fce04578e874f96e4165b9c7d59ff032e5aa4b1c2a6
size 53082
oid sha256:aa31b4b20c17a19683a630019493234667e0f0606ab2eaf8484cb1a97c6bb078
size 53089

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6ee70dfee6160813a77e9454e9f7ce9e15e07fbda752798c1e53919c5588646f
size 59781
oid sha256:f75fe96fda315c965728e76f80e3a0dd5ef32f1fdc6370ab7c9c9f60e1686575
size 61636

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a740945882890eceb0c971bd87f4384f8a051db9640624ce5dd9cde1ffd09c69
size 97409
oid sha256:515e44a40435c90edc71b54d5b6d8a06442bef97c378aed3a4580d0e4789c12e
size 97259

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6deb588da8f5614bc82f6c4ff40171cebb6788e303cec6b2dcf24eb164c258d0
size 102325
oid sha256:00039bed836352d6b695a0261f04f81291894393ad41d799a0a03fab0999fe4b
size 102160

Some files were not shown because too many files have changed in this diff Show More