Package-level declarations

Types

Link copied to clipboard
@Serializable
@SerialName(value = "AssistChip")
data class AssistChipTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val text: String, val leadingIcon: IconSchema? = null, val trailingIcon: IconSchema? = null, val enabled: Boolean, val variant: AssistChipTileSchema.Variant = Variant.DEFAULT) : TileSchema

Renders a Material 3 assist chip displaying text as its label, with optional leadingIcon and trailingIcon. variant selects the composable: Variant.DEFAULTAssistChip (outlined), Variant.ELEVATEDElevatedAssistChip. enabled is forwarded to the underlying composable.

Link copied to clipboard
@Serializable
@SerialName(value = "FilterChip")
data class FilterChipTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val text: String, val selected: Boolean, val leadingIcon: IconSchema? = null, val trailingIcon: IconSchema? = null, val enabled: Boolean, val variant: FilterChipTileSchema.Variant = Variant.DEFAULT) : TileSchema

Renders a Material 3 filter chip with a toggleable selected state, text as its label and optional leadingIcon / trailingIcon. variant selects the composable: Variant.DEFAULTFilterChip (outlined), Variant.ELEVATEDElevatedFilterChip. enabled is forwarded to the underlying composable.

Link copied to clipboard
@Serializable
@SerialName(value = "InputChip")
data class InputChipTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val text: String, val selected: Boolean, val leadingIcon: IconSchema? = null, val trailingIcon: IconSchema? = null, val enabled: Boolean) : TileSchema

Renders a Material 3 InputChip with a toggleable selected state, text as its label and optional leadingIcon / trailingIcon. enabled is forwarded to the underlying composable. This tile has no variants — it always maps to the flat InputChip.

Link copied to clipboard
@Serializable
@SerialName(value = "SuggestionChip")
data class SuggestionChipTileSchema(val id: String, val events: SerializableImmutableList<EventSchema>?, val style: StyleSchema, val searchableTerms: SerializableImmutableList<String>?, val visibility: TileSchema.Visibility, val text: String, val icon: IconSchema? = null, val enabled: Boolean, val variant: SuggestionChipTileSchema.Variant = Variant.DEFAULT) : TileSchema

Renders a Material 3 suggestion chip displaying text as its label, with an optional leading icon. variant selects the composable: Variant.DEFAULTSuggestionChip (outlined), Variant.ELEVATEDElevatedSuggestionChip. enabled is forwarded to the underlying composable.