Skip to content

Commit

Permalink
updated API and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Terentiev committed Oct 24, 2023
1 parent c76b264 commit 5d1dfe2
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 141 deletions.
111 changes: 0 additions & 111 deletions libraries/Microsoft.Bot.Schema/SharePoint/Actions/ActionParameters.cs

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public PropertyPaneChoiceGroupOption()
}

/// <summary>
/// Gets or Sets the aria label of type <see cref="string"/>.
/// Gets or Sets optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state. Of type <see cref="string"/>.
/// </summary>
/// <value>This value is the aria label of the choice group.</value>
[JsonProperty(PropertyName = "ariaLabel")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ public PropertyPaneDropDownProperties()
}

/// <summary>
/// Gets or Sets the aria label of type <see cref="string"/>.
/// Gets or Sets optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state. Of type <see cref="string"/>.
/// </summary>
/// <value>This value is the aria label of the drop down.</value>
[JsonProperty(PropertyName = "ariaLabel")]
public string AriaLabel { get; set; }

/// <summary>
/// Gets or Sets an element's number or position in the current set of controls. Maps to native aria-posinset attribute. It starts from 1 of type <see cref="int"/>.
/// Gets or Sets an element's number or position in the current set of controls. Maps to native aria-positionset attribute. It starts from 1 of type <see cref="int"/>.
/// </summary>
/// <value>This value is the aria position in set of the drop down.</value>
[JsonProperty(PropertyName = "ariaPositionInSet")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
namespace Microsoft.Bot.Schema.SharePoint
{
/// <summary>
/// SharePoint property pane link pop up window properties object.
/// SharePoint property pane link popup window properties object.
/// </summary>
public class PropertyPaneLinkPopupWindowProperties
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public PropertyPaneLinkProperties()
}

/// <summary>
/// Gets or Sets the aria label of type <see cref="string"/>.
/// Gets or Sets optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state. Of type <see cref="string"/>.
/// </summary>
/// <value>This value is the aria label of the property pane link.</value>
[JsonProperty(PropertyName = "ariaLabel")]
Expand All @@ -46,7 +46,7 @@ public PropertyPaneLinkProperties()
public string Href { get; set; }

/// <summary>
/// Gets or Sets the props of pop up window. of type <see cref="PropertyPaneLinkPopupWindowProperties"/>.
/// Gets or Sets the props of popup window. of type <see cref="PropertyPaneLinkPopupWindowProperties"/>.
/// </summary>
/// <value>This value is the popup window properties of the property pane link.</value>
[JsonProperty(PropertyName = "popupWindowProps")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public PropertyPaneSliderProperties()
public string Value { get; set; }

/// <summary>
/// Gets or Sets the aria label of type <see cref="string"/>.
/// Gets or Sets optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state. Of type <see cref="string"/>.
/// </summary>
/// <value>This value is the aria label of the slider.</value>
[JsonProperty(PropertyName = "ariaLabel")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,19 +39,12 @@ public PropertyPaneTextFieldProperties()
public string Value { get; set; }

/// <summary>
/// Gets or Sets the aria label of type <see cref="string"/>.
/// Gets or Sets optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state. Of type <see cref="string"/>.
/// </summary>
/// <value>This value is the aria label of the text field.</value>
[JsonProperty(PropertyName = "ariaLabel")]
public string AriaLabel { get; set; }

/// <summary>
/// Gets or Sets the amount of time to wait before validating after the users stop typing in ms of type <see cref="int"/>.
/// </summary>
/// <value>This value is the deferred validation time of the text field.</value>
[JsonProperty(PropertyName = "deferredValidationTime")]
public int DeferredValidationTime { get; set; }

/// <summary>
/// Gets or Sets the description of type <see cref="string"/>.
/// </summary>
Expand Down Expand Up @@ -121,19 +114,5 @@ public PropertyPaneTextFieldProperties()
/// <value>This value indicates whether the text field is underlined.</value>
[JsonProperty(PropertyName = "underlined")]
public bool Underlined { get; set; }

/// <summary>
/// Gets or Sets a value indicating whether to run validation when the PropertyPaneTextField is focused of type <see cref="bool"/>.
/// </summary>
/// <value>This value indicates whether the text field is validated when gaining focus.</value>
[JsonProperty(PropertyName = "validateOnFocusIn")]
public bool ValidateOnFocusIn { get; set; }

/// <summary>
/// Gets or Sets a value indicating whether to run validation when the PropertyPaneTextField is out of focus or on blur of type <see cref="bool"/>.
/// </summary>
/// <value>This value indicates whether the text field is validated when losing focus.</value>
[JsonProperty(PropertyName = "validateOnFocusOut")]
public bool ValidateOnFocusOut { get; set; }
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public PropertyPaneToggleProperties()
}

/// <summary>
/// Gets or Sets the aria label of type <see cref="string"/>.
/// Gets or Sets optional ariaLabel flag. Text for screen-reader to announce regardless of toggle state. Of type <see cref="string"/>.
/// </summary>
/// <value>This value is the aria label of the toggle field.</value>
[JsonProperty(PropertyName = "ariaLabel")]
Expand Down

0 comments on commit 5d1dfe2

Please sign in to comment.