Skip to content

Commit

Permalink
chore: Update Extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanJosipovic authored and github-actions[bot] committed Jan 16, 2025
1 parent 00bc3cb commit 59c806f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ public static partial class CalendarYearButton_MarkupExtensions
// ItemSelected

/*ActionToEventGenerator*/
public static T OnItemSelected<T>(this T control, Action<Ursa.Controls.CalendarYearButtonEventArgs> action, Avalonia.Interactivity.RoutingStrategies routes = Avalonia.Interactivity.RoutingStrategies.Tunnel | Avalonia.Interactivity.RoutingStrategies.Bubble) where T : Ursa.Controls.CalendarYearButton
public static T OnItemSelected<T>(this T control, Action<Ursa.Controls.CalendarDayButtonEventArgs> action, Avalonia.Interactivity.RoutingStrategies routes = Avalonia.Interactivity.RoutingStrategies.Tunnel | Avalonia.Interactivity.RoutingStrategies.Bubble) where T : Ursa.Controls.CalendarYearButton
{
control.AddHandler(Ursa.Controls.CalendarYearButton.ItemSelectedEvent, (_, args) => action(args), routes);

Check failure on line 20 in src/KubeUI.Core/ControlExtensions.Generated/CalendarYearButton_MarkupExtensions.g.cs

View workflow job for this annotation

GitHub Actions / Build & Test

Argument 1: cannot convert from 'Ursa.Controls.CalendarYearButtonEventArgs' to 'Ursa.Controls.CalendarDayButtonEventArgs'

Check failure on line 20 in src/KubeUI.Core/ControlExtensions.Generated/CalendarYearButton_MarkupExtensions.g.cs

View workflow job for this annotation

GitHub Actions / Build & Test

Argument 1: cannot convert from 'Ursa.Controls.CalendarYearButtonEventArgs' to 'Ursa.Controls.CalendarDayButtonEventArgs'
return control;
return control;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ public static T DisplayCurrentPageInQuickJumper<TValue,T>(this T control, TValue
/*ActionToEventGenerator*/
public static T OnCurrentPageChanged<T>(this T control, Action<System.Object, Ursa.Controls.ValueChangedEventArgs<System.Int32>> action, Avalonia.Interactivity.RoutingStrategies routes = Avalonia.Interactivity.RoutingStrategies.Tunnel | Avalonia.Interactivity.RoutingStrategies.Bubble) where T : Ursa.Controls.Pagination
{
control.AddHandler(Ursa.Controls.Pagination.CurrentPageChangedEvent, (_, args) => action(_, args), routes);
control.AddHandler(Ursa.Controls.Pagination.CurrentPageChangedEvent, (_, args) => action(args), routes);

Check failure on line 252 in src/KubeUI.Core/ControlExtensions.Generated/Pagination_MarkupExtensions.g.cs

View workflow job for this annotation

GitHub Actions / Build & Test

There is no argument given that corresponds to the required parameter 'arg2' of 'Action<object, ValueChangedEventArgs<int>>'

Check failure on line 252 in src/KubeUI.Core/ControlExtensions.Generated/Pagination_MarkupExtensions.g.cs

View workflow job for this annotation

GitHub Actions / Build & Test

There is no argument given that corresponds to the required parameter 'arg2' of 'Action<object, ValueChangedEventArgs<int>>'
return control;
}

Expand Down

0 comments on commit 59c806f

Please sign in to comment.