Skip to content

Commit

Permalink
Revert "Implement Entry IsSpellCheckEnabled property (#7442)" (#14147)
Browse files Browse the repository at this point in the history
This reverts commit 96dbc45.
  • Loading branch information
PureWeen committed Mar 23, 2023
1 parent 8fa59ec commit 13fabf5
Show file tree
Hide file tree
Showing 27 changed files with 13 additions and 106 deletions.
1 change: 0 additions & 1 deletion src/Compatibility/Core/src/Windows/EntryRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,6 @@ void UpdateClearButtonVisibility()
Control.ClearButtonVisible = Element.ClearButtonVisibility == ClearButtonVisibility.WhileEditing;
}

[PortHandler]
void UpdateInputScope()
{
Entry entry = Element;
Expand Down
1 change: 0 additions & 1 deletion src/Compatibility/Core/src/iOS/Renderers/EntryRenderer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,6 @@ protected virtual void UpdateFont()
Control.Font = Element.ToUIFont();
}

[PortHandler]
void UpdateKeyboard()
{
var keyboard = Element.Keyboard;
Expand Down
5 changes: 0 additions & 5 deletions src/Core/src/Core/ITextInput.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ public interface ITextInput : IText, IPlaceholder
/// </summary>
bool IsTextPredictionEnabled { get; }

/// <summary>
/// Gets a value that controls whether spell checking is enabled.
/// </summary>
bool IsSpellCheckEnabled { get; }

/// <summary>
/// Gets a value indicating whether or not the view is read-only.
/// </summary>
Expand Down
3 changes: 0 additions & 3 deletions src/Core/src/Handlers/Entry/EntryHandler.Android.cs
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,6 @@ public static void MapVerticalTextAlignment(IEntryHandler handler, IEntry entry)
public static void MapIsTextPredictionEnabled(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateIsTextPredictionEnabled(entry);

public static void MapIsSpellCheckEnabled(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateIsSpellCheckEnabled(entry);

public static void MapMaxLength(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateMaxLength(entry);

Expand Down
1 change: 0 additions & 1 deletion src/Core/src/Handlers/Entry/EntryHandler.Standard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ public static void MapIsPassword(IEntryHandler handler, IEntry entry) { }
public static void MapHorizontalTextAlignment(IEntryHandler handler, IEntry entry) { }
public static void MapVerticalTextAlignment(IEntryHandler handler, IEntry entry) { }
public static void MapIsTextPredictionEnabled(IEntryHandler handler, IEntry entry) { }
public static void MapIsSpellCheckEnabled(IEntryHandler handler, IEntry entry) { }
public static void MapMaxLength(IEntryHandler handler, IEntry entry) { }
public static void MapPlaceholder(IEntryHandler handler, IEntry entry) { }
public static void MapPlaceholderColor(IEntryHandler handler, IEntry entry) { }
Expand Down
2 changes: 0 additions & 2 deletions src/Core/src/Handlers/Entry/EntryHandler.Tizen.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,6 @@ public static void MapPlaceholder(IEntryHandler handler, IEntry entry) =>
public static void MapPlaceholderColor(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdatePlaceholderColor(entry);

public static void MapIsSpellCheckEnabled(IEntryHandler handler, IEntry entry) { }

public static void MapFont(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateFont(entry, handler.GetRequiredService<IFontManager>());

Expand Down
3 changes: 0 additions & 3 deletions src/Core/src/Handlers/Entry/EntryHandler.Windows.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,6 @@ public static void MapVerticalTextAlignment(IEntryHandler handler, IEntry entry)
public static void MapIsTextPredictionEnabled(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateIsTextPredictionEnabled(entry);

public static void MapIsSpellCheckEnabled(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateIsSpellCheckEnabled(entry);

public static void MapMaxLength(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateMaxLength(entry);

Expand Down
1 change: 0 additions & 1 deletion src/Core/src/Handlers/Entry/EntryHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public partial class EntryHandler : IEntryHandler
[nameof(IEntry.VerticalTextAlignment)] = MapVerticalTextAlignment,
[nameof(IEntry.IsReadOnly)] = MapIsReadOnly,
[nameof(IEntry.IsTextPredictionEnabled)] = MapIsTextPredictionEnabled,
[nameof(IEntry.IsSpellCheckEnabled)] = MapIsSpellCheckEnabled,
[nameof(IEntry.Keyboard)] = MapKeyboard,
[nameof(IEntry.MaxLength)] = MapMaxLength,
[nameof(IEntry.Placeholder)] = MapPlaceholder,
Expand Down
3 changes: 0 additions & 3 deletions src/Core/src/Handlers/Entry/EntryHandler.iOS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,6 @@ public static void MapVerticalTextAlignment(IEntryHandler handler, IEntry entry)
public static void MapIsTextPredictionEnabled(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateIsTextPredictionEnabled(entry);

public static void MapIsSpellCheckEnabled(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateIsSpellCheckEnabled(entry);

public static void MapMaxLength(IEntryHandler handler, IEntry entry) =>
handler.PlatformView?.UpdateMaxLength(entry);

Expand Down
17 changes: 2 additions & 15 deletions src/Core/src/Platform/Android/EditTextExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,6 @@ public static void UpdateIsTextPredictionEnabled(this EditText editText, IEntry
editText.SetInputType(entry);
}

public static void UpdateIsSpellCheckEnabled(this EditText editText, IEntry entry)
{
editText.SetInputType(entry);
}

public static void UpdateIsTextPredictionEnabled(this EditText editText, IEditor editor)
{
if (editor.IsTextPredictionEnabled)
Expand Down Expand Up @@ -293,16 +288,8 @@ internal static void SetInputType(this EditText editText, ITextInput textInput)

if ((nativeInputTypeToUpdate & InputTypes.TextFlagNoSuggestions) != InputTypes.TextFlagNoSuggestions)
{
if (!nativeInputTypeToUpdate.HasFlag(InputTypes.TextFlagNoSuggestions))
{
if (!textInput.IsSpellCheckEnabled)
nativeInputTypeToUpdate |= InputTypes.TextFlagNoSuggestions;
}
if (!nativeInputTypeToUpdate.HasFlag(InputTypes.TextFlagNoSuggestions))
{
if (!textInput.IsTextPredictionEnabled)
nativeInputTypeToUpdate |= InputTypes.TextFlagNoSuggestions;
}
if (!textInput.IsTextPredictionEnabled)
nativeInputTypeToUpdate |= InputTypes.TextFlagNoSuggestions;
}
}

Expand Down
5 changes: 0 additions & 5 deletions src/Core/src/Platform/Windows/TextBoxExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -154,11 +154,6 @@ public static void UpdateIsTextPredictionEnabled(this TextBox textBox, ITextInpu
textBox.UpdateInputScope(textInput);
}

public static void UpdateIsSpellCheckEnabled(this TextBox textBox, ITextInput textInput)
{
textBox.UpdateInputScope(textInput);
}

public static void UpdateKeyboard(this TextBox textBox, ITextInput textInput)
{
textBox.UpdateInputScope(textInput);
Expand Down
18 changes: 4 additions & 14 deletions src/Core/src/Platform/iOS/TextFieldExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,10 @@ public static void UpdateVerticalTextAlignment(this UITextField textField, IText

public static void UpdateIsTextPredictionEnabled(this UITextField textField, IEntry entry)
{
textField.UpdateKeyboard(entry);
}

public static void UpdateIsSpellCheckEnabled(this UITextField textField, IEntry entry)
{
textField.UpdateKeyboard(entry);
if (entry.IsTextPredictionEnabled)
textField.AutocorrectionType = UITextAutocorrectionType.Yes;
else
textField.AutocorrectionType = UITextAutocorrectionType.No;
}

public static void UpdateMaxLength(this UITextField textField, IEntry entry)
Expand Down Expand Up @@ -114,16 +112,8 @@ public static void UpdateKeyboard(this UITextField textField, IEntry entry)
textField.ApplyKeyboard(keyboard);

if (keyboard is not CustomKeyboard)
{
textField.UpdateIsTextPredictionEnabled(entry);

if (!entry.IsSpellCheckEnabled)
textField.SpellCheckingType = UITextSpellCheckingType.No;

if (!entry.IsTextPredictionEnabled)
textField.AutocorrectionType = UITextAutocorrectionType.No;
}

textField.ReloadInputViews();
}

Expand Down
3 changes: 0 additions & 3 deletions src/Core/src/PublicAPI/net-android/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
Microsoft.Maui.FontSize.Equals(Microsoft.Maui.FontSize other) -> bool
Microsoft.Maui.IApplication.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme
Microsoft.Maui.Hosting.MauiApp.DisposeAsync() -> System.Threading.Tasks.ValueTask
Microsoft.Maui.ITextInput.IsSpellCheckEnabled.get -> bool
Microsoft.Maui.Layouts.FlexBasis.Equals(Microsoft.Maui.Layouts.FlexBasis other) -> bool
Microsoft.Maui.SizeRequest.Equals(Microsoft.Maui.SizeRequest other) -> bool
override Microsoft.Maui.FontSize.Equals(object? obj) -> bool
Expand All @@ -19,13 +18,11 @@ static Microsoft.Maui.FontSize.operator !=(Microsoft.Maui.FontSize left, Microso
static Microsoft.Maui.FontSize.operator ==(Microsoft.Maui.FontSize left, Microsoft.Maui.FontSize right) -> bool
static Microsoft.Maui.GridLength.operator !=(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.GridLength.operator ==(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.Handlers.EntryHandler.MapIsSpellCheckEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Handlers.StepperHandler.MapIsEnabled(Microsoft.Maui.Handlers.IStepperHandler! handler, Microsoft.Maui.IStepper! stepper) -> void
static Microsoft.Maui.Layouts.FlexBasis.operator !=(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.FlexBasis.operator ==(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContentUnbounded(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size
static Microsoft.Maui.Handlers.SearchBarHandler.MapKeyboard(Microsoft.Maui.Handlers.ISearchBarHandler! handler, Microsoft.Maui.ISearchBar! searchBar) -> void
static Microsoft.Maui.Platform.EditTextExtensions.UpdateIsSpellCheckEnabled(this Android.Widget.EditText! editText, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Platform.SearchViewExtensions.UpdateKeyboard(this AndroidX.AppCompat.Widget.SearchView! searchView, Microsoft.Maui.ISearchBar! searchBar) -> void
Microsoft.Maui.IWebView.UserAgent.get -> string?
Microsoft.Maui.IWebView.UserAgent.set -> void
Expand Down
3 changes: 0 additions & 3 deletions src/Core/src/PublicAPI/net-ios/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ Microsoft.Maui.Handlers.SwipeItemButton.FrameChanged -> System.EventHandler?
Microsoft.Maui.Handlers.SwipeItemButton.SwipeItemButton() -> void
Microsoft.Maui.IApplication.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme
Microsoft.Maui.Hosting.MauiApp.DisposeAsync() -> System.Threading.Tasks.ValueTask
Microsoft.Maui.ITextInput.IsSpellCheckEnabled.get -> bool
Microsoft.Maui.Layouts.FlexBasis.Equals(Microsoft.Maui.Layouts.FlexBasis other) -> bool
Microsoft.Maui.LifecycleEvents.iOSLifecycle.PerformFetch
Microsoft.Maui.SizeRequest.Equals(Microsoft.Maui.SizeRequest other) -> bool
Expand All @@ -26,7 +25,6 @@ override Microsoft.Maui.SizeRequest.Equals(object? obj) -> bool
override Microsoft.Maui.SizeRequest.GetHashCode() -> int
static Microsoft.Maui.GridLength.operator !=(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.GridLength.operator ==(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.Handlers.EntryHandler.MapIsSpellCheckEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Layouts.FlexBasis.operator !=(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.FlexBasis.operator ==(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContentUnbounded(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size
Expand All @@ -41,7 +39,6 @@ Microsoft.Maui.IWebView.UserAgent.get -> string?
Microsoft.Maui.IWebView.UserAgent.set -> void
static Microsoft.Maui.Handlers.WebViewHandler.MapUserAgent(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void
static Microsoft.Maui.Platform.ApplicationExtensions.UpdateUserInterfaceStyle(this Microsoft.Maui.IApplication! application) -> void
static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsSpellCheckEnabled(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Platform.WebViewExtensions.UpdateUserAgent(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void
*REMOVED*Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void
Microsoft.Maui.WeakEventManager.HandleEvent(object? sender, object? args, string! eventName) -> void
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ Microsoft.Maui.Handlers.SwipeItemButton.FrameChanged -> System.EventHandler?
Microsoft.Maui.Handlers.SwipeItemButton.SwipeItemButton() -> void
Microsoft.Maui.IApplication.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme
Microsoft.Maui.Hosting.MauiApp.DisposeAsync() -> System.Threading.Tasks.ValueTask
Microsoft.Maui.ITextInput.IsSpellCheckEnabled.get -> bool
Microsoft.Maui.Layouts.FlexBasis.Equals(Microsoft.Maui.Layouts.FlexBasis other) -> bool
Microsoft.Maui.SizeRequest.Equals(Microsoft.Maui.SizeRequest other) -> bool
Microsoft.Maui.Platform.MauiScrollView
Expand All @@ -25,7 +24,6 @@ override Microsoft.Maui.SizeRequest.Equals(object? obj) -> bool
override Microsoft.Maui.SizeRequest.GetHashCode() -> int
static Microsoft.Maui.GridLength.operator !=(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.GridLength.operator ==(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.Handlers.EntryHandler.MapIsSpellCheckEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Layouts.FlexBasis.operator !=(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.FlexBasis.operator ==(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContentUnbounded(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size
Expand All @@ -40,7 +38,6 @@ Microsoft.Maui.IWebView.UserAgent.get -> string?
Microsoft.Maui.IWebView.UserAgent.set -> void
static Microsoft.Maui.Handlers.WebViewHandler.MapUserAgent(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void
static Microsoft.Maui.Platform.ApplicationExtensions.UpdateUserInterfaceStyle(this Microsoft.Maui.IApplication! application) -> void
static Microsoft.Maui.Platform.TextFieldExtensions.UpdateIsSpellCheckEnabled(this UIKit.UITextField! textField, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Platform.WebViewExtensions.UpdateUserAgent(this WebKit.WKWebView! platformWebView, Microsoft.Maui.IWebView! webView) -> void
*REMOVED*Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void
Microsoft.Maui.WeakEventManager.HandleEvent(object? sender, object? args, string! eventName) -> void
Expand Down
4 changes: 1 addition & 3 deletions src/Core/src/PublicAPI/net-tizen/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,4 @@ static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContentUnbounded(this Micr
*REMOVED*Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void
Microsoft.Maui.WeakEventManager.HandleEvent(object? sender, object? args, string! eventName) -> void
static Microsoft.Maui.SizeRequest.operator !=(Microsoft.Maui.SizeRequest left, Microsoft.Maui.SizeRequest right) -> bool
static Microsoft.Maui.SizeRequest.operator ==(Microsoft.Maui.SizeRequest left, Microsoft.Maui.SizeRequest right) -> bool
Microsoft.Maui.ITextInput.IsSpellCheckEnabled.get -> bool
static Microsoft.Maui.Handlers.EntryHandler.MapIsSpellCheckEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.SizeRequest.operator ==(Microsoft.Maui.SizeRequest left, Microsoft.Maui.SizeRequest right) -> bool
3 changes: 0 additions & 3 deletions src/Core/src/PublicAPI/net-windows/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#nullable enable
Microsoft.Maui.IApplication.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme
Microsoft.Maui.Hosting.MauiApp.DisposeAsync() -> System.Threading.Tasks.ValueTask
Microsoft.Maui.ITextInput.IsSpellCheckEnabled.get -> bool
Microsoft.Maui.Layouts.FlexBasis.Equals(Microsoft.Maui.Layouts.FlexBasis other) -> bool
Microsoft.Maui.Platform.MauiWebView.MauiWebView(Microsoft.Maui.Handlers.WebViewHandler! handler) -> void
Microsoft.Maui.SizeRequest.Equals(Microsoft.Maui.SizeRequest other) -> bool
Expand All @@ -12,7 +11,6 @@ override Microsoft.Maui.SizeRequest.Equals(object? obj) -> bool
override Microsoft.Maui.SizeRequest.GetHashCode() -> int
static Microsoft.Maui.GridLength.operator !=(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.GridLength.operator ==(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.Handlers.EntryHandler.MapIsSpellCheckEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Layouts.FlexBasis.operator !=(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.FlexBasis.operator ==(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContentUnbounded(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size
Expand All @@ -21,7 +19,6 @@ static Microsoft.Maui.Platform.SearchBarExtensions.UpdateKeyboard(this Microsoft
Microsoft.Maui.IWebView.UserAgent.get -> string?
Microsoft.Maui.IWebView.UserAgent.set -> void
static Microsoft.Maui.Handlers.WebViewHandler.MapUserAgent(Microsoft.Maui.Handlers.IWebViewHandler! handler, Microsoft.Maui.IWebView! webView) -> void
static Microsoft.Maui.Platform.TextBoxExtensions.UpdateIsSpellCheckEnabled(this Microsoft.UI.Xaml.Controls.TextBox! textBox, Microsoft.Maui.ITextInput! textInput) -> void
static Microsoft.Maui.Platform.WebViewExtensions.UpdateUserAgent(this Microsoft.UI.Xaml.Controls.WebView2! platformWebView, Microsoft.Maui.IWebView! webView) -> void
*REMOVED*Microsoft.Maui.WeakEventManager.HandleEvent(object! sender, object! args, string! eventName) -> void
Microsoft.Maui.WeakEventManager.HandleEvent(object? sender, object? args, string! eventName) -> void
Expand Down
2 changes: 0 additions & 2 deletions src/Core/src/PublicAPI/net/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#nullable enable
Microsoft.Maui.IApplication.UserAppTheme.get -> Microsoft.Maui.ApplicationModel.AppTheme
Microsoft.Maui.Hosting.MauiApp.DisposeAsync() -> System.Threading.Tasks.ValueTask
Microsoft.Maui.ITextInput.IsSpellCheckEnabled.get -> bool
Microsoft.Maui.Layouts.FlexBasis.Equals(Microsoft.Maui.Layouts.FlexBasis other) -> bool
Microsoft.Maui.SizeRequest.Equals(Microsoft.Maui.SizeRequest other) -> bool
override Microsoft.Maui.Layouts.FlexBasis.Equals(object? obj) -> bool
Expand All @@ -10,7 +9,6 @@ override Microsoft.Maui.SizeRequest.Equals(object? obj) -> bool
override Microsoft.Maui.SizeRequest.GetHashCode() -> int
static Microsoft.Maui.GridLength.operator !=(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.GridLength.operator ==(Microsoft.Maui.GridLength left, Microsoft.Maui.GridLength right) -> bool
static Microsoft.Maui.Handlers.EntryHandler.MapIsSpellCheckEnabled(Microsoft.Maui.Handlers.IEntryHandler! handler, Microsoft.Maui.IEntry! entry) -> void
static Microsoft.Maui.Layouts.FlexBasis.operator !=(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.FlexBasis.operator ==(Microsoft.Maui.Layouts.FlexBasis left, Microsoft.Maui.Layouts.FlexBasis right) -> bool
static Microsoft.Maui.Layouts.LayoutExtensions.ArrangeContentUnbounded(this Microsoft.Maui.IContentView! contentView, Microsoft.Maui.Graphics.Rect bounds) -> Microsoft.Maui.Graphics.Size
Expand Down
Loading

0 comments on commit 13fabf5

Please sign in to comment.