Browse Source
Make SelectionHandleType internal (#20908)
* made selection handle type internal
* update apidiff
pull/20912/head
Emmanuel Hansen
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
13 additions and
1 deletions
-
api/Avalonia.nupkg.xml
-
src/Avalonia.Controls/Primitives/SelectionHandleType.cs
|
|
|
@ -409,6 +409,12 @@ |
|
|
|
<Left>baseline/Avalonia/lib/net10.0/Avalonia.Controls.dll</Left> |
|
|
|
<Right>current/Avalonia/lib/net10.0/Avalonia.Controls.dll</Right> |
|
|
|
</Suppression> |
|
|
|
<Suppression> |
|
|
|
<DiagnosticId>CP0001</DiagnosticId> |
|
|
|
<Target>T:Avalonia.Controls.Primitives.SelectionHandleType</Target> |
|
|
|
<Left>baseline/Avalonia/lib/net10.0/Avalonia.Controls.dll</Left> |
|
|
|
<Right>current/Avalonia/lib/net10.0/Avalonia.Controls.dll</Right> |
|
|
|
</Suppression> |
|
|
|
<Suppression> |
|
|
|
<DiagnosticId>CP0001</DiagnosticId> |
|
|
|
<Target>T:Avalonia.Controls.Remote.RemoteServer</Target> |
|
|
|
@ -883,6 +889,12 @@ |
|
|
|
<Left>baseline/Avalonia/lib/net8.0/Avalonia.Controls.dll</Left> |
|
|
|
<Right>current/Avalonia/lib/net8.0/Avalonia.Controls.dll</Right> |
|
|
|
</Suppression> |
|
|
|
<Suppression> |
|
|
|
<DiagnosticId>CP0001</DiagnosticId> |
|
|
|
<Target>T:Avalonia.Controls.Primitives.SelectionHandleType</Target> |
|
|
|
<Left>baseline/Avalonia/lib/net8.0/Avalonia.Controls.dll</Left> |
|
|
|
<Right>current/Avalonia/lib/net8.0/Avalonia.Controls.dll</Right> |
|
|
|
</Suppression> |
|
|
|
<Suppression> |
|
|
|
<DiagnosticId>CP0001</DiagnosticId> |
|
|
|
<Target>T:Avalonia.Controls.Remote.RemoteServer</Target> |
|
|
|
|
|
|
|
@ -3,7 +3,7 @@ |
|
|
|
/// <summary>
|
|
|
|
/// Represents which part of the selection the TextSelectionHandle controls.
|
|
|
|
/// </summary>
|
|
|
|
public enum SelectionHandleType |
|
|
|
internal enum SelectionHandleType |
|
|
|
{ |
|
|
|
/// <summary>
|
|
|
|
/// The Handle controls the caret position.
|
|
|
|
|