@@ -50,7 +50,6 @@ private static string ConvertEnum(string value, BaseNode node, ITypeSymbol toTyp
5050 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Graphics.Converters.RectTypeConverter" ) ! , ( CreateLazyConverter < RectConverter > ( ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Graphics.Rect" ) ! ) } ,
5151 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Graphics.Converters.ColorTypeConverter" ) ! , ( CreateLazyConverter < ColorConverter > ( ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Graphics.Color" ) ! ) } ,
5252 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Graphics.Converters.PointTypeConverter" ) ! , ( CreateLazyConverter < PointConverter > ( ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Graphics.Point" ) ! ) } ,
53- { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.ThicknessTypeConverter" ) ! , ( CreateLazyConverter < ThicknessConverter > ( ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Thickness" ) ! ) } ,
5453 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.CornerRadiusTypeConverter" ) ! , ( CreateLazyRegistryConverter ( "Microsoft.Maui.CornerRadius" ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.CornerRadius" ) ! ) } ,
5554 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.EasingTypeConverter" ) ! , ( CreateLazyRegistryConverter ( "Microsoft.Maui.Easing" ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Easing" ) ! ) } ,
5655 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.FlexJustifyTypeConverter" ) ! , ( ConvertEnum , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Layouts.FlexJustify" ) ! ) } ,
@@ -60,6 +59,8 @@ private static string ConvertEnum(string value, BaseNode node, ITypeSymbol toTyp
6059 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.FlexAlignSelfTypeConverter" ) ! , ( ConvertEnum , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Layouts.FlexAlignSelf" ) ! ) } ,
6160 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.FlexWrapTypeConverter" ) ! , ( ConvertEnum , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Layouts.FlexWrap" ) ! ) } ,
6261 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.FlexBasisTypeConverter" ) ! , ( CreateLazyRegistryConverter ( "Microsoft.Maui.Layouts.FlexBasis" ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Layouts.FlexBasis" ) ! ) } ,
62+ { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.GridLengthTypeConverter" ) ! , ( CreateLazyConverter < GridLengthConverter > ( ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.GridLength" ) ! ) } ,
63+ { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Converters.ThicknessTypeConverter" ) ! , ( CreateLazyConverter < ThicknessConverter > ( ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Thickness" ) ! ) } ,
6364 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Controls.ColumnDefinitionCollectionTypeConverter" ) ! , ( CreateLazyRegistryConverter ( "Microsoft.Maui.Controls.ColumnDefinitionCollection" ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Controls.ColumnDefinitionCollection" ) ! ) } ,
6465 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Controls.FlowDirectionConverter" ) ! , ( CreateLazyRegistryConverter ( "Microsoft.Maui.FlowDirection" ) , context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.FlowDirection" ) ! ) } ,
6566 { context . Compilation . GetTypeByMetadataName ( "Microsoft.Maui.Controls.FontSizeConverter" ) ! , ( CreateLazyRegistryConverter ( "System.Double" ) , context . Compilation . GetTypeByMetadataName ( "System.Double" ) ! ) } ,
0 commit comments