File tree 4 files changed +29
-0
lines changed
4 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ func (a *App) AnchorNav() comp.AnchorNav { return icomp.NewA
11
11
func (a * App ) App () comp.App { return icomp .NewApp () }
12
12
func (a * App ) Audio () comp.Audio { return icomp .NewAudio () }
13
13
func (a * App ) Avatar () comp.Avatar { return icomp .NewAvatar () }
14
+ func (a * App ) Amis () comp.Amis { return icomp .NewAmis () }
14
15
func (a * App ) Barcode () comp.Barcode { return icomp .NewBarcode () }
15
16
func (a * App ) Breadcrumb () comp.Breadcrumb { return icomp .NewBreadcrumb () }
16
17
func (a * App ) Button () comp.Action { return icomp .NewButton (a .mux ) }
Original file line number Diff line number Diff line change 11
11
App = comp.App
12
12
Audio = comp.Audio
13
13
Avatar = comp.Avatar
14
+ Amis = comp.Amis
14
15
Barcode = comp.Barcode
15
16
Breadcrumb = comp.Breadcrumb
16
17
Button = comp.Action
Original file line number Diff line number Diff line change
1
+ package comp
2
+
3
+ import "github.com/zrcoder/amisgo/schema"
4
+
5
+ type Amis schema.Schema
6
+
7
+ func NewAmis () Amis {
8
+ return Amis {"type" : "amis" }
9
+ }
10
+
11
+ func (a Amis ) set (key string , value any ) Amis {
12
+ a [key ] = value
13
+ return a
14
+ }
15
+
16
+ func (a Amis ) Name (value string ) Amis {
17
+ return a .set ("name" , value )
18
+ }
19
+
20
+ func (a Amis ) Props (value any ) Amis {
21
+ return a .set ("props" , value )
22
+ }
Original file line number Diff line number Diff line change @@ -163,3 +163,8 @@ func (c Column) Valign(value string) Column {
163
163
func (c Column ) Buttons (value ... any ) Column {
164
164
return c .Set ("buttons" , value )
165
165
}
166
+
167
+ // PopOver sets the pop-over
168
+ func (c Column ) PopOver (value any ) Column {
169
+ return c .Set ("popOver" , value )
170
+ }
You can’t perform that action at this time.
0 commit comments