123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390 |
- package vuetify
- import (
- "context"
- "fmt"
- h "github.com/theplant/htmlgo"
- )
- type VSelectBuilder struct {
- tag *h.HTMLTagBuilder
- }
- func (b *VSelectBuilder) AppendIcon(v string) (r *VSelectBuilder) {
- b.tag.Attr("append-icon", v)
- return b
- }
- func (b *VSelectBuilder) AppendOuterIcon(v string) (r *VSelectBuilder) {
- b.tag.Attr("append-outer-icon", v)
- return b
- }
- func (b *VSelectBuilder) Attach(v interface{}) (r *VSelectBuilder) {
- b.tag.Attr(":attach", h.JSONString(v))
- return b
- }
- func (b *VSelectBuilder) Autofocus(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":autofocus", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) BackgroundColor(v string) (r *VSelectBuilder) {
- b.tag.Attr("background-color", v)
- return b
- }
- func (b *VSelectBuilder) CacheItems(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":cache-items", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Chips(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":chips", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) ClearIcon(v string) (r *VSelectBuilder) {
- b.tag.Attr("clear-icon", v)
- return b
- }
- func (b *VSelectBuilder) Clearable(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":clearable", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Color(v string) (r *VSelectBuilder) {
- b.tag.Attr("color", v)
- return b
- }
- func (b *VSelectBuilder) Counter(v int) (r *VSelectBuilder) {
- b.tag.Attr(":counter", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) CounterValue(v interface{}) (r *VSelectBuilder) {
- b.tag.Attr(":counter-value", h.JSONString(v))
- return b
- }
- func (b *VSelectBuilder) Dark(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":dark", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) DeletableChips(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":deletable-chips", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Dense(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":dense", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) DisableLookup(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":disable-lookup", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Disabled(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":disabled", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Eager(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":eager", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Error(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":error", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) ErrorCount(v int) (r *VSelectBuilder) {
- b.tag.Attr(":error-count", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Filled(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":filled", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Flat(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":flat", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) FullWidth(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":full-width", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Height(v int) (r *VSelectBuilder) {
- b.tag.Attr(":height", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) HideDetails(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":hide-details", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) HideSelected(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":hide-selected", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Hint(v string) (r *VSelectBuilder) {
- b.tag.Attr("hint", v)
- return b
- }
- func (b *VSelectBuilder) Id(v string) (r *VSelectBuilder) {
- b.tag.Attr("id", v)
- return b
- }
- func (b *VSelectBuilder) ItemColor(v string) (r *VSelectBuilder) {
- b.tag.Attr("item-color", v)
- return b
- }
- func (b *VSelectBuilder) ItemDisabled(v string) (r *VSelectBuilder) {
- b.tag.Attr("item-disabled", v)
- return b
- }
- func (b *VSelectBuilder) ItemText(v string) (r *VSelectBuilder) {
- b.tag.Attr("item-text", v)
- return b
- }
- func (b *VSelectBuilder) ItemValue(v string) (r *VSelectBuilder) {
- b.tag.Attr("item-value", v)
- return b
- }
- func (b *VSelectBuilder) Items(v interface{}) (r *VSelectBuilder) {
- b.tag.Attr(":items", h.JSONString(v))
- return b
- }
- func (b *VSelectBuilder) Label(v string) (r *VSelectBuilder) {
- b.tag.Attr("label", v)
- return b
- }
- func (b *VSelectBuilder) Light(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":light", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) LoaderHeight(v int) (r *VSelectBuilder) {
- b.tag.Attr(":loader-height", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Loading(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":loading", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) MenuProps(v interface{}) (r *VSelectBuilder) {
- b.tag.Attr(":menu-props", h.JSONString(v))
- return b
- }
- func (b *VSelectBuilder) Messages(v string) (r *VSelectBuilder) {
- b.tag.Attr("messages", v)
- return b
- }
- func (b *VSelectBuilder) Multiple(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":multiple", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) NoDataText(v string) (r *VSelectBuilder) {
- b.tag.Attr("no-data-text", v)
- return b
- }
- func (b *VSelectBuilder) OpenOnClear(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":open-on-clear", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Outlined(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":outlined", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) PersistentHint(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":persistent-hint", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) PersistentPlaceholder(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":persistent-placeholder", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Placeholder(v string) (r *VSelectBuilder) {
- b.tag.Attr("placeholder", v)
- return b
- }
- func (b *VSelectBuilder) Prefix(v string) (r *VSelectBuilder) {
- b.tag.Attr("prefix", v)
- return b
- }
- func (b *VSelectBuilder) PrependIcon(v string) (r *VSelectBuilder) {
- b.tag.Attr("prepend-icon", v)
- return b
- }
- func (b *VSelectBuilder) PrependInnerIcon(v string) (r *VSelectBuilder) {
- b.tag.Attr("prepend-inner-icon", v)
- return b
- }
- func (b *VSelectBuilder) Readonly(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":readonly", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) ReturnObject(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":return-object", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Reverse(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":reverse", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Rounded(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":rounded", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Rules(v interface{}) (r *VSelectBuilder) {
- b.tag.Attr(":rules", h.JSONString(v))
- return b
- }
- func (b *VSelectBuilder) Shaped(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":shaped", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) SingleLine(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":single-line", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) SmallChips(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":small-chips", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Solo(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":solo", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) SoloInverted(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":solo-inverted", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Success(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":success", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) SuccessMessages(v string) (r *VSelectBuilder) {
- b.tag.Attr("success-messages", v)
- return b
- }
- func (b *VSelectBuilder) Suffix(v string) (r *VSelectBuilder) {
- b.tag.Attr("suffix", v)
- return b
- }
- func (b *VSelectBuilder) Type(v string) (r *VSelectBuilder) {
- b.tag.Attr("type", v)
- return b
- }
- func (b *VSelectBuilder) ValidateOnBlur(v bool) (r *VSelectBuilder) {
- b.tag.Attr(":validate-on-blur", fmt.Sprint(v))
- return b
- }
- func (b *VSelectBuilder) Value(v interface{}) (r *VSelectBuilder) {
- b.tag.Attr(":value", h.JSONString(v))
- return b
- }
- func (b *VSelectBuilder) ValueComparator(v interface{}) (r *VSelectBuilder) {
- b.tag.Attr(":value-comparator", h.JSONString(v))
- return b
- }
- func (b *VSelectBuilder) SetAttr(k string, v interface{}) {
- b.tag.SetAttr(k, v)
- }
- func (b *VSelectBuilder) Attr(vs ...interface{}) (r *VSelectBuilder) {
- b.tag.Attr(vs...)
- return b
- }
- func (b *VSelectBuilder) Children(children ...h.HTMLComponent) (r *VSelectBuilder) {
- b.tag.Children(children...)
- return b
- }
- func (b *VSelectBuilder) AppendChildren(children ...h.HTMLComponent) (r *VSelectBuilder) {
- b.tag.AppendChildren(children...)
- return b
- }
- func (b *VSelectBuilder) PrependChildren(children ...h.HTMLComponent) (r *VSelectBuilder) {
- b.tag.PrependChildren(children...)
- return b
- }
- func (b *VSelectBuilder) Class(names ...string) (r *VSelectBuilder) {
- b.tag.Class(names...)
- return b
- }
- func (b *VSelectBuilder) ClassIf(name string, add bool) (r *VSelectBuilder) {
- b.tag.ClassIf(name, add)
- return b
- }
- func (b *VSelectBuilder) On(name string, value string) (r *VSelectBuilder) {
- b.tag.Attr(fmt.Sprintf("v-on:%s", name), value)
- return b
- }
- func (b *VSelectBuilder) Bind(name string, value string) (r *VSelectBuilder) {
- b.tag.Attr(fmt.Sprintf("v-bind:%s", name), value)
- return b
- }
- func (b *VSelectBuilder) MarshalHTML(ctx context.Context) (r []byte, err error) {
- return b.tag.MarshalHTML(ctx)
- }
|