Versions in this module Expand all Collapse all v0 v0.0.2 Jul 6, 2021 v0.0.1 Jul 5, 2021 Changes in this version + func NewClock() *gowired.LiveComponent + func NewDynamicInput() *gowired.LiveComponent + func NewForm() *gowired.LiveComponent + func NewSlider() *gowired.LiveComponent + func NewTodo() *gowired.LiveComponent + type Clock struct + ActualTime string + func (c *Clock) Mounted(l *gowired.LiveComponent) + func (c *Clock) TemplateHandler(_ *gowired.LiveComponent) string + type DynamicInput struct + Label string + func (d *DynamicInput) TemplateHandler(_ *gowired.LiveComponent) string + type Form struct + DynamicInput *gowired.LiveComponent + Label string + func (d *Form) TemplateHandler(_ *gowired.LiveComponent) string + type Slider struct + Size float32 + func (t *Slider) Size2() float32 + func (t *Slider) Size3() float32 + func (t *Slider) TemplateHandler(_ *gowired.LiveComponent) string + type Task struct + Done bool + Text string + func (t *Task) GetClasses() string + type Todo struct + Counter int + Name string + Tasks []Task + Text string + func (t *Todo) CanAdd() bool + func (t *Todo) HandleAdd() + func (t *Todo) IncreaseCounter() + func (t *Todo) TaskDone(index int) + func (t *Todo) TemplateHandler(_ *gowired.LiveComponent) string