Merge pull request #3901 from element-hq/feature/bma/sendButtonIteration

Send button iteration
This commit is contained in:
Benoit Marty 2024-11-20 12:37:06 +01:00 committed by GitHub
commit b054bebce7
65 changed files with 190 additions and 133 deletions

View file

@ -7,7 +7,6 @@
package io.element.android.libraries.textcomposer.components package io.element.android.libraries.textcomposer.components
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.padding
@ -17,7 +16,13 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier import androidx.compose.ui.Modifier
import androidx.compose.ui.draw.clip import androidx.compose.ui.draw.clip
import androidx.compose.ui.draw.drawWithCache
import androidx.compose.ui.geometry.Offset
import androidx.compose.ui.graphics.BlendMode
import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.LinearGradientShader
import androidx.compose.ui.graphics.RadialGradientShader
import androidx.compose.ui.graphics.ShaderBrush
import androidx.compose.ui.res.stringResource import androidx.compose.ui.res.stringResource
import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.dp
import io.element.android.compound.theme.ElementTheme import io.element.android.compound.theme.ElementTheme
@ -31,6 +36,10 @@ import io.element.android.libraries.matrix.api.timeline.item.event.toEventOrTran
import io.element.android.libraries.textcomposer.model.MessageComposerMode import io.element.android.libraries.textcomposer.model.MessageComposerMode
import io.element.android.libraries.ui.strings.CommonStrings import io.element.android.libraries.ui.strings.CommonStrings
/**
* Send button for the message composer.
* Figma: https://www.figma.com/design/G1xy0HDZKJf5TCRFmKb5d5/Compound-Android-Components?node-id=1956-37575&node-type=frame&m=dev
*/
@Composable @Composable
internal fun SendButton( internal fun SendButton(
canSendMessage: Boolean, canSendMessage: Boolean,
@ -46,7 +55,7 @@ internal fun SendButton(
) { ) {
val iconVector = when (composerMode) { val iconVector = when (composerMode) {
is MessageComposerMode.Edit -> CompoundIcons.Check() is MessageComposerMode.Edit -> CompoundIcons.Check()
else -> CompoundIcons.Send() else -> CompoundIcons.SendSolid()
} }
val iconStartPadding = when (composerMode) { val iconStartPadding = when (composerMode) {
is MessageComposerMode.Edit -> 0.dp is MessageComposerMode.Edit -> 0.dp
@ -60,7 +69,13 @@ internal fun SendButton(
modifier = Modifier modifier = Modifier
.clip(CircleShape) .clip(CircleShape)
.size(36.dp) .size(36.dp)
.background(if (canSendMessage) ElementTheme.colors.iconAccentTertiary else Color.Transparent) .then(
if (canSendMessage) {
buttonBackgroundModifier()
} else {
Modifier
}
)
) { ) {
Icon( Icon(
modifier = Modifier modifier = Modifier
@ -68,13 +83,55 @@ internal fun SendButton(
.align(Alignment.Center), .align(Alignment.Center),
imageVector = iconVector, imageVector = iconVector,
contentDescription = contentDescription, contentDescription = contentDescription,
// Exception here, we use Color.White instead of ElementTheme.colors.iconOnSolidPrimary tint = if (canSendMessage) {
tint = if (canSendMessage) Color.White else ElementTheme.colors.iconDisabled if (ElementTheme.colors.isLight) {
ElementTheme.colors.iconOnSolidPrimary
} else {
ElementTheme.colors.iconPrimary
}
} else {
ElementTheme.colors.iconQuaternary
}
) )
} }
} }
} }
private fun buttonBackgroundModifier() = Modifier.drawWithCache {
// We have a square button, so height == width.
val height = size.height
val verticalGradientBrush = ShaderBrush(
LinearGradientShader(
from = Offset(0f, 0f),
to = Offset(0f, height),
colors = listOf(
Color(0xFF0BC491),
Color(0xFF0467DD),
)
)
)
val radialGradientBrush = ShaderBrush(
RadialGradientShader(
center = Offset(height / 2f, height / 2f),
radius = height / 2f,
colors = listOf(
Color(0xFF0BC491),
Color(0xFF0467DD),
)
)
)
onDrawBehind {
drawRect(
brush = verticalGradientBrush,
)
drawRect(
brush = radialGradientBrush,
alpha = 0.4f,
blendMode = BlendMode.Overlay,
)
}
}
@PreviewsDayNight @PreviewsDayNight
@Composable @Composable
internal fun SendButtonPreview() = ElementPreview { internal fun SendButtonPreview() = ElementPreview {

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:899eff34c421e13bf62d6828582c715f87588cfb17c1063aae65baae79a472cf oid sha256:2399ee4cd37cbafec07e87bfab90e66ee3df5b6aba602d5cd9bd1114c7365642
size 394631 size 397379

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c41c7438f46e62a4a6f115647040005aba9fd057599fbb17aba844337642d525 oid sha256:d18f7e2c169f7e4b9e435584d868454ae5f765a32d29bbbfe48d65b45f4161d6
size 15963 size 18845

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:4a9d51bdba64cbd7c453ac177e9c77fb6aa3c611ac16746701b22b024abf3560 oid sha256:9e0ec7e2a9dbe70a2deddf2bd621ac721b03e1b5bd367020fc68485e4d387ba8
size 13770 size 16610

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9be7c12e6de6bd2975f11ff06eab1b6fa973edcda0ca90c93eed164cb1d6bf18 oid sha256:a44e40c0d586b41a0e47aa7d40a564eb820c2692051e795c87c460df92e81ca6
size 14841 size 17739

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9434a531c57fa65c9996f5b5c6254af73ac50433ceeeaa7f1dd1243fe3c3b1c6 oid sha256:361ff23fd2ff99aecfdffd10b45e9235d86183d4856cb2a3e99f85b9e04c2d59
size 50355 size 51376

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1c36d5b0d29f1533829f80c33e042bb88648890ad2b629136f8a2af01c511f7a oid sha256:efbfed755b29293009f45fca33f58863b612772de9a1d55593c979dbb04ff6f2
size 87977 size 88981

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:6f1646315278ac6e3346a14e2559b5cb308cc08082e9654ede2d49d1d710a671 oid sha256:ad01f084328ff5c31019c00bfdda18660f464164f68a9f92375afb7854dda7fa
size 56795 size 59491

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:6df3677e4bba63bbde74adbd2731be5c97afdce1bcee7064965b917a5ddd8ef1 oid sha256:3ce4299e4c585abf3635b37c6003ac50a8ed25ffa0e9258dfbc07d61fb04569f
size 58370 size 61074

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:55be986aa88651bdfd7d6c81a0617609496e30d81c949d41cb16896b5e37e387 oid sha256:035d793ee33682785b98974c6357b99bfb879f8a86cba7117bb2b9c4c4bc13d5
size 48526 size 49533

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f2a487db559d6638db0d9b93c98ed795bca2a82f68e26a85cd0a7a76f006bb63 oid sha256:7d1ed9a282d3363fa4e28d924a750d0a46f7564533f687ab102d559e2dd1606b
size 56817 size 59518

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:ccf967ae3867651786c1e47e5bfef60aa0ad03bc62d5a72db329e95f758f07ea oid sha256:9660c7ea6ca5101c6b5fa9e774d4063d4011b9f8fdb64bf8e32cbc89c231531c
size 59886 size 62605

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:b839efb7173b3f18624cf1570f56b62aeee25a097f977c50c9950e7edc907a17 oid sha256:31856cb9bed162d0bfa6d9b72a693cdd1fce231130b6f031ef7212b11068c6eb
size 55968 size 58650

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:19a591c39e3be571e4ebb852696313fdcef008e583818c21df300d9900bca320 oid sha256:097625b9d81cc5a6f426a5a50292848f4ca7c282feca650a08a520380dc9ec95
size 54610 size 55590

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:0dff30d6403a88c9c237865fe9bc1a65d1ea8b5b439df70ad1c7622fa199f372 oid sha256:53e8bb8dc1e9de5d02ed59a9d9384cb02394eb7e509ee1d30a718231fd82f08c
size 54627 size 57292

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:9c48911e2132a696c4a0d2cc9a233ceacc0c5b3bb02f9b655e82cb7d98480ce6 oid sha256:a90aeb879d3819506f3899d822f5f70e29728b9650f22aebbd307477f7d95f41
size 54361 size 54179

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:da4713d6094c00750ae3f2ad486ab180b33e1e46e69b9604590f5169681b66f8 oid sha256:ab476787bcc93bd00037ebf2bf1367b7feaa788f37c1e1478208866c7fbac9d6
size 57729 size 58696

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c1033d39367ea410596ffb4029ea22bc90840f59645cd303cdc8d019fb0415d6 oid sha256:d40877679c1b9cff47940631f237243d3d9b715e50f44591d2f7588279c9052c
size 56494 size 59176

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:d57c4a876860276a5a13e630fd80391e87ad068d3ab622179d0142d9e54d91a3 oid sha256:7e9412f3e84b63be532188e13a976d1954404466136633f3f8cd41851617e753
size 57952 size 60668

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:ce0840cc1849a2e074be9b7f86f156e1ac494a7658cc72531cbd90b6dba105d7 oid sha256:1da55e4b116cbf0ebd74afee2a47d34b99d87192cdf9a5f8698118fcd4bbe239
size 44414 size 45466

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:ac6c99cb780160d47290324c93c9d0a93e3c3e1d5837bc146cdbdce5a46e72b3 oid sha256:76faea3ec5b9e01a7e1ad77dea4f44b060bee26cf1d0b56df8eabb692cf764df
size 56539 size 59225

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:3e8d23096a1be9ec638a40d8e14dd25a2f49b373de3ff49863ec5720b33f45a7 oid sha256:0f9df03bc6cba3fbf8ae454768064c9141b05e319c40c568a0a3edf3a53fed4e
size 59232 size 61961

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:2558438b5dce74e03bf203f9aeb951ffd5cb6f52eab5d28fea9d48a34c74c7d1 oid sha256:952e2bbcee90fb03f522da1850112b88496b5851bbc0c9908505fe371d0bd34c
size 55393 size 58047

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:867175a499ed1e1dc0fad33e83e51190af105342a8f79e3a125926ffcaac465d oid sha256:fba26f4a18cd5ea132275b9edf499b51a1c7ef3ecd1c61f30768ef3236cfaa06
size 50656 size 51723

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:0dda6dc9737457bcc8001e886cd369a70baa1db568bbf3da237325e15881dc14 oid sha256:8f1d5a9f286af43a8d026a62a7059c221cfa824217f362c9daeb9b0552fc7bb5
size 54272 size 56907

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:77a7e2084010487034b19258cdda04a3b39c810f43e06cf3c13e207ffc9a9e75 oid sha256:45df1ecf99266ef43891a1dcf3b3d3b99c57d1b51179028589b74f83e942126e
size 53909 size 53739

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:b10080f2a866f28a65604ba3b895f8bb79769f05a51536b1f33a7611dfe26615 oid sha256:d59298e9a6d21c17038b6e71f709853068d4182df41ba31338946e2a220f7f5a
size 53465 size 54511

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:fa94eb0e472b9caaa94bfdb5c441a5cd97325b7fa6e4f2a3fb100f86486cbc94 oid sha256:177e16989220804b9472ec9e7435e1a6cdb14dc3a26c17b5b00cece634439ff1
size 7693 size 12602

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:edb1143fbe31d6c9d68dcfe1b3d9fad90f49a645b2786587c9d79787be31b4d2 oid sha256:58b45b8b1a73eec401d922e8f422902e3a594927a26100345807fa654d83929f
size 7618 size 12433

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:997f06a80f20ea48389fc05cf0abb7eb584ef02688f6eebb3e5dc0151afbaa04 oid sha256:71550eeba48a6c9ccd4c26cb0e26f0136e8a5611089a8ea6c7cc92a8133b82d2
size 50460 size 60259

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f05e63ae7b68f0049c8c702c584ec276c0cca2d7680d9b401f652d155870717d oid sha256:4f1f000c6baf5be3468b2a28ea43f2131d20a73cdbf1c22f52ce075b3f36bf25
size 48946 size 58223

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:391d3741acfd768614a9bc70e948f7fc49b37d75e65591721b922e678d520bac oid sha256:1b9b24eafbcaa2143c199a0522fa1aae98d9c7bddb80364602f0662567a2f1a1
size 44773 size 56485

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:713a314ecd36e4d95e5c287ab9a4b5968f5a5090dbb4910d9739e66969fdd424 oid sha256:fc7a5491acff69b64ea73c1a62b7ae9e148ce57768697de2ec280327cd72298d
size 43417 size 55402

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:997f06a80f20ea48389fc05cf0abb7eb584ef02688f6eebb3e5dc0151afbaa04 oid sha256:71550eeba48a6c9ccd4c26cb0e26f0136e8a5611089a8ea6c7cc92a8133b82d2
size 50460 size 60259

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f05e63ae7b68f0049c8c702c584ec276c0cca2d7680d9b401f652d155870717d oid sha256:4f1f000c6baf5be3468b2a28ea43f2131d20a73cdbf1c22f52ce075b3f36bf25
size 48946 size 58223

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8a2232abaacfc851133d6c30e6c88a83304beb7a3ba594793c70dad307330c36 oid sha256:4dd98ff64e3ffd15c4004370ea627690e3bd2e186363cd584fe632f37c50c0eb
size 51848 size 60036

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c215ef11337a05564282b052d6a725f41d9e929c493fd74bc1e785f21293acbe oid sha256:1c6f606b522f53ed525cee3ecf798b7fb15cd907fd2caf8a98625b0fc3a5e720
size 50191 size 57708

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f515200dc9a53f034ad2476ede89f4c3c94cfd6fd316ee61e6fa13deb7ba6e02 oid sha256:ed6b061bc090ded2fffc3af1003e0eb8fb0b933d7bb826d6bc31e6e633f11f26
size 74514 size 82464

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:ee4c30220a64f8751bf2d51b9b09d75ab1e69bbbe4d34b63093740070e7c35c4 oid sha256:4ef12ab84784c2b8dc91f1521c4a6191ae7fba10fa9da4fe74805078f7aa8bdb
size 57833 size 65823

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:ab63cc4ccf3082558b1571e7ee5399d3409ab8f6205f68b907c6359fdaea7be4 oid sha256:6508ce0bdd1f2e56f6ba63a69908bde3e83b169c6681f378850c16b68dbfc21a
size 72521 size 80509

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c51b345180a86b2826430c121e54aabbfad2405f6d422b7c0e1112582fa9f755 oid sha256:bbe4d0343d8cbdcdd4c2026cff3e6e015fe0b1b9cd34cb1a54e4fa1fcee563e4
size 83966 size 91834

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f1c8e13e73696d0aa32cdf17915a6e488072db61af2349dba78e6add23c6a8e5 oid sha256:2bb2e3854f3c9d5ddd2f40ba7ef0f8a6e36da232f029044c36491e59bfb95ead
size 60982 size 69082

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:0207816e0da278a25a7da9d456d664cf925ed419f8a5046a69465ffef985ff95 oid sha256:83ae14f812b9b1ade316b017ca7334a1550b9993c1b284018485fb9e3c5df3a1
size 59299 size 67376

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:da1e22e5b3de270fba766ff027113ce7836ffd72b1cf4de2e6cac6544086fff4 oid sha256:1b107f28fdc4020cbc0a21a6e78cca7effb5a166080803315b97dd5f2b8c4a7a
size 67786 size 75497

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:10510c2a67fc859d0564c6e34a7021e81f1119eaca448c5b5e928bc0a7d5a619 oid sha256:915fee1b03b18db0f372d3e31e81cc0606dbe28e9a33aeaeef68d3476c5c8509
size 58228 size 66276

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:b1b7e7050bc5135b0166a752f5d3a5276348e6fa4a35cab8721a2adb324360ed oid sha256:8bee25ec96fd67cf9ade2e54d44ec393ca9ee4070a725eddec64f134207c7a2a
size 59040 size 67115

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:d7e4015c9c11b473205c611694cf2b5d52d20d49bee6cd6f61474f09a87de696 oid sha256:0b941b5215d059929b5ef64de769bfe3eb594a984237c110d8203bf763fa9322
size 61191 size 69286

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:5b274f77b1b017d7385ae1dfffb8051bb95db6372a7f32ce6838fa692c3f2562 oid sha256:90baf1795797e36aa26ddd2a0efa40f0ee893cc985606c55d184f60a57cda93c
size 68381 size 76020

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:fc0952625f2a7c5901a3949135c1a0a343f40b33d4192425a97245dbe6b5a04a oid sha256:8230e078a5c0aec1791b1cc1ffd813660a1bd64d0a082ee9d5cd37024d923d81
size 58502 size 66567

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:8b06693cde76b2ac00c31b1c767910e46dbac4f099abf17e66ceb2de87acb445 oid sha256:b023ac31c1df8e542e4ba012c14aa0f083000cd82687628b78d03c7fa0fc7462
size 72106 size 79967

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1fff7343bff8fe781d50732fb4e1fd7e6caf228f9520b9f639cab367db4dfd5c oid sha256:0011599e9bcfb6cfce356e4ded07053927b1c2971db457a1e68235b4fd805bad
size 55852 size 63814

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:08d653cdcc4c65cc1b1dbd89789cf24594e00a8f7fa2941d56fb93fda7681e4e oid sha256:b0ad6ff8d00e0b8880428bfc4b17fa1b2accb0117cd48a3c6630e6d8577c0b38
size 70210 size 78103

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:01c2360b1d526713d82566794154743924fb15e1bb6e8ec250a2cc5629b5db02 oid sha256:e42199bbe520151ba537e93e87911f0870437686128684227044c48bcc3fb754
size 81247 size 89090

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:447b98cc3293ed3eee779cb9ffca62191b5f2d8911bc6e5912c4b23a2115b514 oid sha256:7212eef12bdf4e6bcf8db3a1471b279d21bab71bc68661a0b09cacb6d062d35c
size 59195 size 67125

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:862065af54f5ceaba8304d3c15f24c7021146db4e9becec859705888cdde4bae oid sha256:381724bffe2b22e3c768addc1016d8d77d1e2969c43f76c7b4aaa59e8d0c2700
size 57523 size 65452

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:a61b8ca772feebb1ccb86949b4a63080d42f2d26a29ec3ea90e47404e9ff3912 oid sha256:603baddbff53df34bbe7b3a1ce4119f20b8b3255da86e80b6255a0ebc55661d6
size 65950 size 73862

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:e75e80ffc8761b0a91f0ee3137df1987104b9a0546a6edc05d55cbc29262c313 oid sha256:7bda76b1f85a8c9902f634ca2f62bbfc33657cb77643cdb80ae25f1065fc9802
size 56483 size 64412

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:1ccbf26f9c3cbbba607bcb1d1a4f3701717a8d39d7c4194a393a0fb1746114c1 oid sha256:86de5beaddd424dd827f2286b1b76374078726776ff3faf33ecc73693a37a9ab
size 57164 size 65071

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:224bc191f6bd8761d5301039f29bebf1b3a9773ee454820cb9c64ab2d9c7b612 oid sha256:5e4e6decdec0cbf92774c9f2ae8cbca23063637de9dff06eb1f19488bc66c3b6
size 59458 size 67391

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:c491288bfd12be3e23272f35a49beafac768bac836b43cc1bde0507ed810094e oid sha256:18eb91d33345655ed1fad1ff08798e37aa812e7dd11d2352ac35897f14246f2a
size 66436 size 74340

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:079cd865d0feb88d5746c3966f8ec0d72e40140626d5ffd6a918095e38f09fcd oid sha256:e08ac324ef5285da4214adaa4b692e74a78cdaa12a4b23127ab959e34b7d83b3
size 56699 size 64614

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:6c9d3fca9aaaa854d0fe1242a9ff043f17258827e1197c92ae251e251670e65b oid sha256:05bb6bfd1b1e35015dcbebd9b96c0729e16db6e9a37741e35d1baf4e7c3f9009
size 44970 size 51684

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:79d62f9d342571992714742ec7db4ca98e4631dc33305ea7d1306c39258328d0 oid sha256:5a86352ebab4c72f028e476db8fb8b514f57b6f237788583533088d05b8fe1be
size 42990 size 50646

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:f1e561869c72ee9f5a3c05a8d88fdf2db239a7933173bb4428f325cdca660cf4 oid sha256:a19ef7fac4398287f12076331f774f7b368980787af5f9d205d1e75c0f382525
size 25459 size 30324

View file

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:93919babb3761ebbee289226e316c20ecbdf1f53686eade21175d6c7de22242a oid sha256:231e7a071cb71f78a61eeacff63f8726bac02bc0c0011d1125fd0b3916f2b078
size 24499 size 29288