@veltdev/sdk 1.0.112 → 1.0.114
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.
|
@@ -60,6 +60,11 @@ export declare class Snippyly {
|
|
|
60
60
|
* @param location Location
|
|
61
61
|
*/
|
|
62
62
|
removeLocation: (location?: Location) => void;
|
|
63
|
+
/**
|
|
64
|
+
* To exclude data of specific location ids
|
|
65
|
+
* @param ids Location Ids
|
|
66
|
+
*/
|
|
67
|
+
excludeLocationIds: (ids: string[]) => void;
|
|
63
68
|
/**
|
|
64
69
|
* Tell us the about the scrollable document ids to keep track on its scroll changes
|
|
65
70
|
* @param ids scrollable elements ids
|
|
@@ -537,6 +537,16 @@ export declare class CommentElement {
|
|
|
537
537
|
* @param annotationId Comment annotation id
|
|
538
538
|
*/
|
|
539
539
|
public scrollToCommentByAnnotationId: (annotationId: string) => void;
|
|
540
|
+
|
|
541
|
+
/**
|
|
542
|
+
* To enable showing recording summary in comments
|
|
543
|
+
*/
|
|
544
|
+
public enableRecordingSummary: () => void;
|
|
545
|
+
|
|
546
|
+
/**
|
|
547
|
+
* To disable showing recording summary in comments
|
|
548
|
+
*/
|
|
549
|
+
public disableRecordingSummary: () => void;
|
|
540
550
|
constructor();
|
|
541
551
|
/**
|
|
542
552
|
* Subscribe to comments on the current document.
|
|
@@ -1067,4 +1077,14 @@ export declare class CommentElement {
|
|
|
1067
1077
|
* @param annotationId Comment annotation id
|
|
1068
1078
|
*/
|
|
1069
1079
|
private _scrollToCommentByAnnotationId;
|
|
1080
|
+
|
|
1081
|
+
/**
|
|
1082
|
+
* To enable showing recording summary in comments
|
|
1083
|
+
*/
|
|
1084
|
+
private _enableRecordingSummary;
|
|
1085
|
+
|
|
1086
|
+
/**
|
|
1087
|
+
* To disable showing recording summary in comments
|
|
1088
|
+
*/
|
|
1089
|
+
private _disableRecordingSummary;
|
|
1070
1090
|
}
|