m3e/suggestion_chip
SuggestionChip is a chip used to help narrow a user’s intent by presenting dynamically generated suggestions, such as //// suggested responses or search filters.
This file was generated by m3e/generator
DO NOT EDIT
Types
Config is a public record for configuring this component.
pub type Config {
Config(
disabled: Disabled,
disabled_interactive: DisabledInteractive,
download: option.Option(String),
href: String,
name: String,
rel: String,
target: option.Option(link_target.LinkTarget),
type_: form_submitter_type.FormSubmitterType,
value: String,
variant: chip_variant.ChipVariant,
)
}
Constructors
-
Config( disabled: Disabled, disabled_interactive: DisabledInteractive, download: option.Option(String), href: String, name: String, rel: String, target: option.Option(link_target.LinkTarget), type_: form_submitter_type.FormSubmitterType, value: String, variant: chip_variant.ChipVariant, )
Disabled is a value indicating whether the element is disabled.
pub type Disabled {
IsDisabled
IsNotDisabled
}
Constructors
-
IsDisabled -
IsNotDisabled
DisabledInteractive is a value indicating whether the element is disabled and interactive.
pub type DisabledInteractive {
IsDisabledInteractive
IsNotDisabledInteractive
}
Constructors
-
IsDisabledInteractive -
IsNotDisabledInteractive
Slots are used in child elements to insert content into this component
pub type Slot {
Icon
TrailingIcon
}
Constructors
-
Icon -
TrailingIcon
SuggestionChip is a View Model for this component
Fields:
- disabled: A value indicating whether the element is disabled.
- disabled_interactive: A value indicating whether the element is disabled and interactive.
- download: A value indicating whether the
targetof the link button will be downloaded, optionally specifying the new name of the file. - href: The URL to which the link button points.
- name: The name of the element, submitted as a pair with the element’s
valueas part of form data, when the element is used to submit a form. - rel: The relationship between the
targetof the link button and the document. - target: The target of the link button.
- type_: The type of the element.
- value: A string representing the value of the chip.
- variant: The appearance variant of the chip.
pub opaque type SuggestionChip
Values
pub fn default_config() -> Config
default_config is the default configuration for this component.
pub const default_disabled: Disabled
pub const default_disabled_interactive: DisabledInteractive
pub const default_download: option.Option(String)
pub const default_href: String
pub const default_name: String
pub const default_rel: String
pub const default_target: option.Option(link_target.LinkTarget)
pub const default_type_: form_submitter_type.FormSubmitterType
pub const default_value: String
pub const default_variant: chip_variant.ChipVariant
pub fn disabled(
record: SuggestionChip,
disabled: Disabled,
) -> SuggestionChip
disabled sets the value of disabled for this SuggestionChip.
pub fn disabled_interactive(
record: SuggestionChip,
disabled_interactive: DisabledInteractive,
) -> SuggestionChip
disabled_interactive sets the value of disabled_interactive for this SuggestionChip.
pub fn download(
record: SuggestionChip,
download: option.Option(String),
) -> SuggestionChip
download sets the value of download for this SuggestionChip.
pub fn from_config(config: Config) -> SuggestionChip
from_config creates a new SuggestionChip from the given configuration.
pub fn href(
record: SuggestionChip,
href: String,
) -> SuggestionChip
href sets the value of href for this SuggestionChip.
pub fn name(
record: SuggestionChip,
name: String,
) -> SuggestionChip
name sets the value of name for this SuggestionChip.
pub fn new() -> SuggestionChip
new creates a new SuggestionChip with the default configuration.
pub fn rel(record: SuggestionChip, rel: String) -> SuggestionChip
rel sets the value of rel for this SuggestionChip.
pub fn render(
model: SuggestionChip,
attributes: List(attribute.Attribute(msg)),
children: List(element.Element(msg)),
) -> element.Element(msg)
render creates a Lustre Element for a SuggestionChip
pub fn render_config(
c: Config,
attributes: List(attribute.Attribute(msg)),
children: List(element.Element(msg)),
) -> element.Element(msg)
render_config creates a Lustre Element from a SuggestionChip Config
pub fn slot(s: Slot) -> attribute.Attribute(msg)
slot returns a Lustre Attribute(msg) for the given slot name
pub fn target(
record: SuggestionChip,
target: option.Option(link_target.LinkTarget),
) -> SuggestionChip
target sets the value of target for this SuggestionChip.
pub fn type_(
record: SuggestionChip,
type_: form_submitter_type.FormSubmitterType,
) -> SuggestionChip
type_ sets the value of type_ for this SuggestionChip.
pub fn value(
record: SuggestionChip,
value: String,
) -> SuggestionChip
value sets the value of value for this SuggestionChip.
pub fn variant(
record: SuggestionChip,
variant: chip_variant.ChipVariant,
) -> SuggestionChip
variant sets the value of variant for this SuggestionChip.