@veltdev/sdk 1.0.133 → 1.0.135
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.
|
@@ -593,6 +593,16 @@ export declare class CommentElement {
|
|
|
593
593
|
* To disable shadow DOM on comment sidebar
|
|
594
594
|
*/
|
|
595
595
|
public disableSidebarShadowDOM: () => void;
|
|
596
|
+
|
|
597
|
+
/**
|
|
598
|
+
* To enable change detection when comment mode is on
|
|
599
|
+
*/
|
|
600
|
+
public enableChangeDetectionInCommentMode: () => void;
|
|
601
|
+
|
|
602
|
+
/**
|
|
603
|
+
* To disable change detection when comment mode is on
|
|
604
|
+
*/
|
|
605
|
+
public disableChangeDetectionInCommentMode: () => void;
|
|
596
606
|
constructor();
|
|
597
607
|
/**
|
|
598
608
|
* Subscribe to comments on the current document.
|
|
@@ -1179,4 +1189,14 @@ export declare class CommentElement {
|
|
|
1179
1189
|
* To disable shadow DOM on comment sidebar
|
|
1180
1190
|
*/
|
|
1181
1191
|
private _disableSidebarShadowDOM;
|
|
1192
|
+
|
|
1193
|
+
/**
|
|
1194
|
+
* To enable change detection when comment mode is on
|
|
1195
|
+
*/
|
|
1196
|
+
private _enableChangeDetectionInCommentMode;
|
|
1197
|
+
|
|
1198
|
+
/**
|
|
1199
|
+
* To disable change detection when comment mode is on
|
|
1200
|
+
*/
|
|
1201
|
+
private _disableChangeDetectionInCommentMode;
|
|
1182
1202
|
}
|