@veltdev/sdk 1.0.11 → 1.0.13
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.
|
@@ -133,7 +133,7 @@ export declare class CommentAnnotation {
|
|
|
133
133
|
/**
|
|
134
134
|
* Set `true` to set text comment annotation on all the text content of provided target element using `targetElementId`
|
|
135
135
|
*/
|
|
136
|
-
|
|
136
|
+
selectAllContent?: boolean;
|
|
137
137
|
approved?: boolean;
|
|
138
138
|
status: CustomStatus;
|
|
139
139
|
/**
|
|
@@ -189,6 +189,16 @@ export declare class CommentElement {
|
|
|
189
189
|
*/
|
|
190
190
|
public disableCommentMode: () => any;
|
|
191
191
|
|
|
192
|
+
/**
|
|
193
|
+
* Enable persistent comment mode.
|
|
194
|
+
*/
|
|
195
|
+
public enablePersistentCommentMode: () => any;
|
|
196
|
+
|
|
197
|
+
/**
|
|
198
|
+
* Disable persistent comment mode.
|
|
199
|
+
*/
|
|
200
|
+
public disablePersistentCommentMode: () => any;
|
|
201
|
+
|
|
192
202
|
/**
|
|
193
203
|
* To show/hide comment number
|
|
194
204
|
* @param show pass `true` to show it, `false` to hide it.
|
|
@@ -618,6 +628,16 @@ export declare class CommentElement {
|
|
|
618
628
|
*/
|
|
619
629
|
private _disableCommentMode;
|
|
620
630
|
|
|
631
|
+
/**
|
|
632
|
+
* Enable persistent comment mode.
|
|
633
|
+
*/
|
|
634
|
+
private _enablePersistentCommentMode;
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* Disable persistent comment mode.
|
|
638
|
+
*/
|
|
639
|
+
private _disablePersistentCommentMode;
|
|
640
|
+
|
|
621
641
|
/**
|
|
622
642
|
* To show/hide comment number
|
|
623
643
|
* @param show pass `true` to show it, `false` to hide it.
|