Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Button ¶
type Button struct {
// contains filtered or unexported fields
}
func (*Button) Size ¶
func (b *Button) Size(size ButtonSize) *Button
func (*Button) Style ¶
func (b *Button) Style(style ButtonStyle) *Button
type ButtonSize ¶
type ButtonSize string
const ( ButtonSmall ButtonSize = "uk-button-small" ButtonMedium ButtonSize = "" ButtonLarge ButtonSize = "uk-button-large" )
type ButtonStyle ¶
type ButtonStyle string
const ( ButtonDefault ButtonStyle = "uk-button-default" ButtonPrimary ButtonStyle = "uk-button-primary" ButtonSecondary ButtonStyle = "uk-button-secondary" ButtonDanger ButtonStyle = "uk-button-danger" ButtonText ButtonStyle = "uk-button-text" ButtonLink ButtonStyle = "uk-button-link" )
type Table ¶
type Table struct {
// contains filtered or unexported fields
}
func (*Table) Style ¶
func (t *Table) Style(style TableStyle) *Table
type TableStyle ¶
type TableStyle string
var ( TableStylePlain TableStyle = "" TableStyleDivider TableStyle = "uk-table-divider" TableStyleStriped TableStyle = "uk-table-striped" )
type Textarea ¶
type Textarea struct {
// contains filtered or unexported fields
}
func NewTextArea ¶
func NewTextArea() *Textarea
func (*Textarea) Resize ¶
func (t *Textarea) Resize(v TextareaResize) *Textarea
func (*Textarea) State ¶
func (t *Textarea) State(state TextareaState) *Textarea
type TextareaResize ¶
type TextareaResize string
const ( TextAreaResizeVertical TextareaResize = "vertical" TextAreaResizeHorizontal TextareaResize = "horizontal" TextAreaResizeBoth TextareaResize = "both" TextAreaResizeNone TextareaResize = "none" )
type TextareaState ¶
type TextareaState string
const ( TextareaRegular TextareaState = "" TextareaDanger TextareaState = "uk-form-danger" TextareaSuccess TextareaState = "uk-form-success" TextareaDisabled TextareaState = "disabled" )
type Textbox ¶
type Textbox struct {
// contains filtered or unexported fields
}
func NewTextBox ¶
func NewTextBox() *Textbox
func (*Textbox) State ¶
func (t *Textbox) State(state TextboxState) *Textbox
type TextboxState ¶
type TextboxState string
const ( TextboxRegular TextboxState = "" TextboxDanger TextboxState = "uk-form-danger" TextboxSuccess TextboxState = "uk-form-success" TextboxDisabled TextboxState = "disabled" )
Click to show internal directories.
Click to hide internal directories.