@@ -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 ) }
@@ -225,16 +226,16 @@ func (a *App) Api() comp.Api { return icomp.NewApi() }
225
226
func (a * App ) BreadcrumbItem () comp.BreadcrumbItem { return icomp .NewBreadcrumbItem () }
226
227
func (a * App ) Column () comp.Column { return icomp .NewColumn () }
227
228
func (a * App ) Event () comp.Event { return icomp .NewEvent () }
228
- func (a * App ) EventActions (actions ... any ) icomp.EventActions {
229
+ func (a * App ) EventActions (actions ... comp. EventAction ) icomp.EventActions {
229
230
return icomp .NewEventActions (actions ... )
230
231
}
231
232
func (a * App ) EventAction () comp.EventAction { return icomp .NewEventAction () }
232
233
func (a * App ) EventActionToast () comp.EventAction { return icomp .NewEventActionToast () }
233
- func (a * App ) EventActionDrawer (drawer ... any ) icomp.EventAction {
234
+ func (a * App ) EventActionDrawer (drawer ... comp. Drawer ) icomp.EventAction {
234
235
return icomp .NewEventActionDrawer (drawer ... )
235
236
}
236
237
237
- func (a * App ) EventActionDialog (dialog ... any ) icomp.EventAction {
238
+ func (a * App ) EventActionDialog (dialog ... comp. Dialog ) icomp.EventAction {
238
239
return icomp .NewEventActionDialog (dialog ... )
239
240
}
240
241
func (a * App ) EventActionArgs () comp.EventActionArgs { return icomp .NewEventActionArgs () }
@@ -249,3 +250,4 @@ func (a *App) PropertyItem() comp.PropertyItem { return icomp.NewPropertyI
249
250
func (a * App ) PullRefresh () comp.PullRefresh { return icomp .NewPullRefresh () }
250
251
func (a * App ) Rule () comp.Rule { return icomp .NewRule () }
251
252
func (a * App ) Tab () comp.Tab { return icomp .NewTab () }
253
+ func (a * App ) CarouselOption () comp.CarouselOption { return icomp .NewCarouselOption () }
0 commit comments