Skip to content

Commit 1457e9b

Browse files
committed
[BOOK-477] chore: designsystem.stability 최신화
1 parent 562c97c commit 1457e9b

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

core/designsystem/stability/designsystem.stability

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,39 @@ public fun com.ninecraft.booket.core.designsystem.component.checkbox.TickOnlyChe
163163
- onCheckedChange: STABLE (function type)
164164
- modifier: STABLE (marked @Stable or @Immutable)
165165

166+
@Composable
167+
public fun com.ninecraft.booket.core.designsystem.component.chip.<get-mediumChipStyle>(): com.ninecraft.booket.core.designsystem.component.chip.ChipSizeStyle
168+
skippable: true
169+
restartable: true
170+
params:
171+
172+
@Composable
173+
public fun com.ninecraft.booket.core.designsystem.component.chip.<get-smallChipStyle>(): com.ninecraft.booket.core.designsystem.component.chip.ChipSizeStyle
174+
skippable: true
175+
restartable: true
176+
params:
177+
178+
@Composable
179+
public fun com.ninecraft.booket.core.designsystem.component.chip.ReedRemovableChip(label: kotlin.String, chipSizeStyle: com.ninecraft.booket.core.designsystem.component.chip.ChipSizeStyle, onRemove: kotlin.Function0<kotlin.Unit>, modifier: androidx.compose.ui.Modifier): kotlin.Unit
180+
skippable: true
181+
restartable: true
182+
params:
183+
- label: STABLE (String is immutable)
184+
- chipSizeStyle: STABLE (class with no mutable properties)
185+
- onRemove: STABLE (function type)
186+
- modifier: STABLE (marked @Stable or @Immutable)
187+
188+
@Composable
189+
public fun com.ninecraft.booket.core.designsystem.component.chip.ReedSelectableChip(label: kotlin.String, chipSizeStyle: com.ninecraft.booket.core.designsystem.component.chip.ChipSizeStyle, selected: kotlin.Boolean, onClick: kotlin.Function0<kotlin.Unit>, modifier: androidx.compose.ui.Modifier): kotlin.Unit
190+
skippable: true
191+
restartable: true
192+
params:
193+
- label: STABLE (String is immutable)
194+
- chipSizeStyle: STABLE (class with no mutable properties)
195+
- selected: STABLE (primitive type)
196+
- onClick: STABLE (function type)
197+
- modifier: STABLE (marked @Stable or @Immutable)
198+
166199
@Composable
167200
public fun com.ninecraft.booket.core.designsystem.component.textfield.ReedRecordTextField(recordState: androidx.compose.foundation.text.input.TextFieldState, recordHintRes: kotlin.Int, modifier: androidx.compose.ui.Modifier, inputTransformation: androidx.compose.foundation.text.input.InputTransformation?, keyboardOptions: androidx.compose.foundation.text.KeyboardOptions, lineLimits: androidx.compose.foundation.text.input.TextFieldLineLimits, isError: kotlin.Boolean, errorMessage: kotlin.String, onClear: kotlin.Function0<kotlin.Unit>?, onNext: kotlin.Function0<kotlin.Unit>, backgroundColor: androidx.compose.ui.graphics.Color, textColor: androidx.compose.ui.graphics.Color, cornerShape: androidx.compose.foundation.shape.RoundedCornerShape, borderStroke: androidx.compose.foundation.BorderStroke): kotlin.Unit
168201
skippable: true

0 commit comments

Comments
 (0)