@veltdev/sdk 1.0.38 → 1.0.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -506,6 +506,16 @@ export declare class CommentElement {
|
|
|
506
506
|
* To add comment on selected text.
|
|
507
507
|
*/
|
|
508
508
|
public addCommentOnSelectedText: () => void;
|
|
509
|
+
|
|
510
|
+
/**
|
|
511
|
+
* To enable navigation when comment is clicked in sidebar.
|
|
512
|
+
*/
|
|
513
|
+
public enableSidebarUrlNavigation: () => void;
|
|
514
|
+
|
|
515
|
+
/**
|
|
516
|
+
* To disable navigation when comment is clicked in sidebar.
|
|
517
|
+
*/
|
|
518
|
+
public disableSidebarUrlNavigation: () => void;
|
|
509
519
|
constructor();
|
|
510
520
|
/**
|
|
511
521
|
* Subscribe to comments on the current document.
|
|
@@ -1005,4 +1015,14 @@ export declare class CommentElement {
|
|
|
1005
1015
|
* To add comment on selected text.
|
|
1006
1016
|
*/
|
|
1007
1017
|
private _addCommentOnSelectedText;
|
|
1018
|
+
|
|
1019
|
+
/**
|
|
1020
|
+
* To enable navigation when comment is clicked in sidebar.
|
|
1021
|
+
*/
|
|
1022
|
+
private _enableSidebarUrlNavigation;
|
|
1023
|
+
|
|
1024
|
+
/**
|
|
1025
|
+
* To disable navigation when comment is clicked in sidebar.
|
|
1026
|
+
*/
|
|
1027
|
+
private _disableSidebarUrlNavigation;
|
|
1008
1028
|
}
|
package/app/utils/enums.d.ts
CHANGED