Skip to content

MesopSingleChoiceInnerStyles

fastagency.ui.mesop.styles.MesopSingleChoiceInnerStyles dataclass #

MesopSingleChoiceInnerStyles(
    box: Style = lambda: SINGLE_CHOICE_BOX_STYLE(),
    button: Style = lambda: SINGLE_CHOICE_BUTTON_STYLE(),
    disabled_button: Style = lambda: SINGLE_CHOICE_DISABLED_BUTTON_STYLE(),
    selected_button: Style = lambda: SINGLE_CHOICE_SELECTED_BUTTON_STYLE(),
)

box class-attribute instance-attribute #

box: Style = field(
    default_factory=lambda: SINGLE_CHOICE_BOX_STYLE
)

button class-attribute instance-attribute #

button: Style = field(
    default_factory=lambda: SINGLE_CHOICE_BUTTON_STYLE
)

disabled_button class-attribute instance-attribute #

disabled_button: Style = field(
    default_factory=lambda: SINGLE_CHOICE_DISABLED_BUTTON_STYLE
)

selected_button class-attribute instance-attribute #

selected_button: Style = field(
    default_factory=lambda: SINGLE_CHOICE_SELECTED_BUTTON_STYLE
)