1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- package vuetify
- import (
- "context"
- "fmt"
- h "github.com/theplant/htmlgo"
- )
- type VDialogTopTransitionBuilder struct {
- tag *h.HTMLTagBuilder
- }
- func VDialogTopTransition(children ...h.HTMLComponent) (r *VDialogTopTransitionBuilder) {
- r = &VDialogTopTransitionBuilder{
- tag: h.Tag("v-dialog-top-transition").Children(children...),
- }
- return
- }
- func (b *VDialogTopTransitionBuilder) Group(v bool) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr(":group", fmt.Sprint(v))
- return b
- }
- func (b *VDialogTopTransitionBuilder) HideOnLeave(v bool) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr(":hide-on-leave", fmt.Sprint(v))
- return b
- }
- func (b *VDialogTopTransitionBuilder) LeaveAbsolute(v bool) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr(":leave-absolute", fmt.Sprint(v))
- return b
- }
- func (b *VDialogTopTransitionBuilder) Mode(v string) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr("mode", v)
- return b
- }
- func (b *VDialogTopTransitionBuilder) Origin(v string) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr("origin", v)
- return b
- }
- func (b *VDialogTopTransitionBuilder) SetAttr(k string, v interface{}) {
- b.tag.SetAttr(k, v)
- }
- func (b *VDialogTopTransitionBuilder) Attr(vs ...interface{}) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr(vs...)
- return b
- }
- func (b *VDialogTopTransitionBuilder) Children(children ...h.HTMLComponent) (r *VDialogTopTransitionBuilder) {
- b.tag.Children(children...)
- return b
- }
- func (b *VDialogTopTransitionBuilder) AppendChildren(children ...h.HTMLComponent) (r *VDialogTopTransitionBuilder) {
- b.tag.AppendChildren(children...)
- return b
- }
- func (b *VDialogTopTransitionBuilder) PrependChildren(children ...h.HTMLComponent) (r *VDialogTopTransitionBuilder) {
- b.tag.PrependChildren(children...)
- return b
- }
- func (b *VDialogTopTransitionBuilder) Class(names ...string) (r *VDialogTopTransitionBuilder) {
- b.tag.Class(names...)
- return b
- }
- func (b *VDialogTopTransitionBuilder) ClassIf(name string, add bool) (r *VDialogTopTransitionBuilder) {
- b.tag.ClassIf(name, add)
- return b
- }
- func (b *VDialogTopTransitionBuilder) On(name string, value string) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr(fmt.Sprintf("v-on:%s", name), value)
- return b
- }
- func (b *VDialogTopTransitionBuilder) Bind(name string, value string) (r *VDialogTopTransitionBuilder) {
- b.tag.Attr(fmt.Sprintf("v-bind:%s", name), value)
- return b
- }
- func (b *VDialogTopTransitionBuilder) MarshalHTML(ctx context.Context) (r []byte, err error) {
- return b.tag.MarshalHTML(ctx)
- }
|