R10.Button.primary []
{ label = text "Text"
, libu = R10.Libu.Bu <| Just doSomething
, theme = theme
}
R10.Button.primary []
{ label = text "Text"
, libu = R10.Libu.Bu <| Nothing
, theme = theme
}
R10.Button.primary []
{ label = text "Text"
, libu = R10.Libu.Li "https://www.example.com"
, theme = theme
}
R10.Button.primary R10.Button.withLimitedWidth
{ label = text "Text"
, libu = R10.Libu.Bu <| Just doSomething
, theme = theme
}
R10.Button.secondary []
{ label = text "Text"
, libu = R10.Libu.Bu <| Just doSomething
, theme = theme
}
R10.Button.tertiary []
{ label = text "Text"
, libu = R10.Libu.Bu <| Just doSomething
, theme = theme
}
R10.Button.tertiary []
{ label =
paragraph []
[ text "Text with "
, el (R10.Link.attrs theme) <| text <| "link"
]
, libu = R10.Libu.Bu <| Just doSomething
, theme = theme
}
R10.Form.viewWithTheme
{ conf = v01
, state = formState
}
msgMapper
theme_
R10.Form.viewWithOptions
{ conf = v01
, state = formState
}
msgMapper
{ maker = Nothing
, translator = Nothing
, style = R10.Form.style.filled
, palette = Just <| R10.Form.themeToPalette theme_
}
R10.Form.viewWithTheme
{ conf = v11
, state = formState
}
msgMapper
theme_
R10.Form.viewWithOptions
{ conf = v11
, state = formState
}
msgMapper
{ maker = Nothing
, translator = Nothing
, style = R10.Form.style.filled
, palette = Just <| R10.Form.themeToPalette theme_
}