Skip to content

Commit b8d3e44

Browse files
committed
[BOOK-477] chore: record.stability 최신화
1 parent b850457 commit b8d3e44

File tree

1 file changed

+77
-10
lines changed

1 file changed

+77
-10
lines changed

feature/record/stability/record.stability

Lines changed: 77 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -134,10 +134,10 @@ private fun com.ninecraft.booket.feature.record.ocr.component.SentenceBoxPreview
134134

135135
@Composable
136136
internal fun com.ninecraft.booket.feature.record.register.HandleRecordRegisterSideEffects(state: com.ninecraft.booket.feature.record.register.RecordRegisterUiState): kotlin.Unit
137-
skippable: true
137+
skippable: false
138138
restartable: true
139139
params:
140-
- state: STABLE (class with no mutable properties)
140+
- state: RUNTIME (requires runtime check)
141141

142142
@Composable
143143
public fun com.ninecraft.booket.feature.record.register.RecordRegisterPresenter.present(): com.ninecraft.booket.feature.record.register.RecordRegisterUiState
@@ -153,10 +153,10 @@ private fun com.ninecraft.booket.feature.record.register.RecordRegisterPreview()
153153

154154
@Composable
155155
internal fun com.ninecraft.booket.feature.record.register.RecordRegisterUi(state: com.ninecraft.booket.feature.record.register.RecordRegisterUiState, modifier: androidx.compose.ui.Modifier): kotlin.Unit
156-
skippable: true
156+
skippable: false
157157
restartable: true
158158
params:
159-
- state: STABLE (class with no mutable properties)
159+
- state: RUNTIME (requires runtime check)
160160
- modifier: STABLE (marked @Stable or @Immutable)
161161

162162
@Composable
@@ -171,18 +171,18 @@ private fun com.ninecraft.booket.feature.record.step.EmotionItem(emotion: com.ni
171171

172172
@Composable
173173
public fun com.ninecraft.booket.feature.record.step.EmotionStep(state: com.ninecraft.booket.feature.record.register.RecordRegisterUiState, modifier: androidx.compose.ui.Modifier): kotlin.Unit
174-
skippable: true
174+
skippable: false
175175
restartable: true
176176
params:
177-
- state: STABLE (class with no mutable properties)
177+
- state: RUNTIME (requires runtime check)
178178
- modifier: STABLE (marked @Stable or @Immutable)
179179

180180
@Composable
181181
public fun com.ninecraft.booket.feature.record.step.ImpressionStep(state: com.ninecraft.booket.feature.record.register.RecordRegisterUiState, modifier: androidx.compose.ui.Modifier): kotlin.Unit
182-
skippable: true
182+
skippable: false
183183
restartable: true
184184
params:
185-
- state: STABLE (class with no mutable properties)
185+
- state: RUNTIME (requires runtime check)
186186
- modifier: STABLE (marked @Stable or @Immutable)
187187

188188
@Composable
@@ -193,10 +193,10 @@ private fun com.ninecraft.booket.feature.record.step.ImpressionStepPreview(): ko
193193

194194
@Composable
195195
internal fun com.ninecraft.booket.feature.record.step.QuoteStep(state: com.ninecraft.booket.feature.record.register.RecordRegisterUiState, modifier: androidx.compose.ui.Modifier): kotlin.Unit
196-
skippable: true
196+
skippable: false
197197
restartable: true
198198
params:
199-
- state: STABLE (class with no mutable properties)
199+
- state: RUNTIME (requires runtime check)
200200
- modifier: STABLE (marked @Stable or @Immutable)
201201

202202
@Composable
@@ -211,3 +211,70 @@ private fun com.ninecraft.booket.feature.record.step.RecordRegisterPreview(): ko
211211
restartable: true
212212
params:
213213

214+
@Composable
215+
internal fun com.ninecraft.booket.feature.record.step_v2.EmotionDetailBottomSheet(emotion: com.ninecraft.booket.core.model.Emotion, emotionDetails: kotlinx.collections.immutable.ImmutableList<kotlin.String>, selectedEmotionDetail: kotlinx.collections.immutable.ImmutableList<kotlin.String>, onDismissRequest: kotlin.Function0<kotlin.Unit>, sheetState: androidx.compose.material3.SheetState, onCloseButtonClick: kotlin.Function0<kotlin.Unit>, onEmotionDetailToggled: kotlin.Function1<kotlin.String, kotlin.Unit>, onSkipButtonClick: kotlin.Function0<kotlin.Unit>, onConfirmButtonClick: kotlin.Function0<kotlin.Unit>): kotlin.Unit
216+
skippable: true
217+
restartable: true
218+
params:
219+
- emotion: STABLE (class with no mutable properties)
220+
- emotionDetails: STABLE (known stable type)
221+
- selectedEmotionDetail: STABLE (known stable type)
222+
- onDismissRequest: STABLE (function type)
223+
- sheetState: STABLE (marked @Stable or @Immutable)
224+
- onCloseButtonClick: STABLE (function type)
225+
- onEmotionDetailToggled: STABLE (function type)
226+
- onSkipButtonClick: STABLE (function type)
227+
- onConfirmButtonClick: STABLE (function type)
228+
229+
@Composable
230+
private fun com.ninecraft.booket.feature.record.step_v2.EmotionDetailBottomSheetPreview(): kotlin.Unit
231+
skippable: true
232+
restartable: true
233+
params:
234+
235+
@Composable
236+
internal fun com.ninecraft.booket.feature.record.step_v2.EmotionItem(emotion: com.ninecraft.booket.core.model.Emotion, selectedEmotionDetails: kotlinx.collections.immutable.ImmutableList<kotlin.String>, onClick: kotlin.Function0<kotlin.Unit>, isSelected: kotlin.Boolean, onEmotionDetailRemove: kotlin.Function1<kotlin.String, kotlin.Unit>, modifier: androidx.compose.ui.Modifier): kotlin.Unit
237+
skippable: true
238+
restartable: true
239+
params:
240+
- emotion: STABLE (class with no mutable properties)
241+
- selectedEmotionDetails: STABLE (known stable type)
242+
- onClick: STABLE (function type)
243+
- isSelected: STABLE (primitive type)
244+
- onEmotionDetailRemove: STABLE (function type)
245+
- modifier: STABLE (marked @Stable or @Immutable)
246+
247+
@Composable
248+
private fun com.ninecraft.booket.feature.record.step_v2.EmotionItemPreview(): kotlin.Unit
249+
skippable: true
250+
restartable: true
251+
params:
252+
253+
@Composable
254+
internal fun com.ninecraft.booket.feature.record.step_v2.EmotionStepV2(state: com.ninecraft.booket.feature.record.register.RecordRegisterUiState, modifier: androidx.compose.ui.Modifier): kotlin.Unit
255+
skippable: false
256+
restartable: true
257+
params:
258+
- state: RUNTIME (requires runtime check)
259+
- modifier: STABLE (marked @Stable or @Immutable)
260+
261+
@Composable
262+
private fun com.ninecraft.booket.feature.record.step_v2.EmotionStepV2Preview(): kotlin.Unit
263+
skippable: true
264+
restartable: true
265+
params:
266+
267+
@Composable
268+
internal fun com.ninecraft.booket.feature.record.step_v2.QuoteStepV2(state: com.ninecraft.booket.feature.record.register.RecordRegisterUiState, modifier: androidx.compose.ui.Modifier): kotlin.Unit
269+
skippable: false
270+
restartable: true
271+
params:
272+
- state: RUNTIME (requires runtime check)
273+
- modifier: STABLE (marked @Stable or @Immutable)
274+
275+
@Composable
276+
private fun com.ninecraft.booket.feature.record.step_v2.QuoteStepV2Preview(): kotlin.Unit
277+
skippable: true
278+
restartable: true
279+
params:
280+

0 commit comments

Comments
 (0)