By default, ComposePreviewPublic will only flag public previews if they use a @PreviewParameter, because we know for sure that they are only going to be used for previews. This will continue to be the default behavior, but if people want to flag ALL public previews, they can use previewPublicOnlyIfParams to do that now.
By default,
ComposePreviewPublic
will only flag public previews if they use a@PreviewParameter
, because we know for sure that they are only going to be used for previews. This will continue to be the default behavior, but if people want to flag ALL public previews, they can usepreviewPublicOnlyIfParams
to do that now.Closes #95.