File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed
packages/core/src/js/feedback Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -52,35 +52,35 @@ abstract class FeedbackManager {
5252}
5353
5454/**
55- *
55+ * Provides functionality to show and hide the feedback widget.
5656 */
5757export class FeedbackWidgetManager extends FeedbackManager {
5858 /**
59- *
59+ * Returns the name of the feedback component.
6060 */
6161 protected static get _feedbackComponentName ( ) : string {
6262 return 'FeedbackWidget' ;
6363 }
6464}
6565
6666/**
67- *
67+ * Provides functionality to show and hide the feedback button.
6868 */
6969export class FeedbackButtonManager extends FeedbackManager {
7070 /**
71- *
71+ * Returns the name of the feedback component.
7272 */
7373 protected static get _feedbackComponentName ( ) : string {
7474 return 'FeedbackButton' ;
7575 }
7676}
7777
7878/**
79- *
79+ * Provides functionality to show and hide the screenshot button.
8080 */
8181export class ScreenshotButtonManager extends FeedbackManager {
8282 /**
83- *
83+ * Returns the name of the feedback component.
8484 */
8585 protected static get _feedbackComponentName ( ) : string {
8686 return 'ScreenshotButton' ;
Original file line number Diff line number Diff line change @@ -28,7 +28,9 @@ export interface FeedbackWidgetProviderState {
2828}
2929
3030/**
31- *
31+ * FeedbackWidgetProvider is a component that wraps the feedback widget and provides
32+ * functionality to show and hide the widget. It also manages the visibility of the
33+ * feedback button and screenshot button.
3234 */
3335export class FeedbackWidgetProvider extends React . Component < FeedbackWidgetProviderProps > {
3436 public state : FeedbackWidgetProviderState = {
You can’t perform that action at this time.
0 commit comments