Skip to content

Commit

Permalink
Add a missing button style tokens + relnote (#676)
Browse files Browse the repository at this point in the history
- Add a missing button style tokens
- Prepare version 2.0.0-alpha02
  • Loading branch information
jisungbin authored May 9, 2023
1 parent 61e23d9 commit 9991cbc
Show file tree
Hide file tree
Showing 6 changed files with 895 additions and 137 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import team.duckie.quackquack.util.MustBeTested
*
* @param composeModifier `androidx.compose.ui.Modifier`으로만 구성된 [Modifier]
* @param quackDataModels [QuackDataModifierModel]으로만 구성된 리스트
*
* @see Composer.quackMaterializeOf
*/
@NoCopy
Expand Down Expand Up @@ -49,6 +50,7 @@ internal object QuackMaterializingErrors {
* @param modifier 분석할 [Modifier]
* @param taversingCallback 주어진 [Modifier]를 foldIn으로 순회하며 방문하는 element마다
* 호출할 선택적 콜백
*
* @return 컴포즈 자체의 [Modifier]와 [QuackDataModifierModel] 리스트를 담은 클래스
*/
@MustBeTested(passed = true)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import androidx.compose.ui.Modifier
*
* @Stable
* fun Modifier.appendStringData(data: String): Modifier {
* return then(StringData(data))
* return then(StringData(data))
* }
* ```
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class ButtonTest {
rule.setQuackContent {
QuackButton(
enabled = false,
style = QuackButtonStyle.Large,
style = QuackButtonStyle.PrimaryLarge,
text = "button",
onClick = onClick,
)
Expand Down
Loading

0 comments on commit 9991cbc

Please sign in to comment.