@veltdev/sdk 1.0.113 → 1.0.115
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.
|
@@ -34,6 +34,10 @@ export declare class Snippyly {
|
|
|
34
34
|
* @param id unique document ID
|
|
35
35
|
*/
|
|
36
36
|
setDocumentId: (id: string) => void;
|
|
37
|
+
/**
|
|
38
|
+
* To unset the document id
|
|
39
|
+
*/
|
|
40
|
+
unsetDocumentId: () => void;
|
|
37
41
|
/**
|
|
38
42
|
* Get Document ID
|
|
39
43
|
*/
|
|
@@ -60,6 +64,11 @@ export declare class Snippyly {
|
|
|
60
64
|
* @param location Location
|
|
61
65
|
*/
|
|
62
66
|
removeLocation: (location?: Location) => void;
|
|
67
|
+
/**
|
|
68
|
+
* To exclude data of specific location ids
|
|
69
|
+
* @param ids Location Ids
|
|
70
|
+
*/
|
|
71
|
+
excludeLocationIds: (ids: string[]) => void;
|
|
63
72
|
/**
|
|
64
73
|
* Tell us the about the scrollable document ids to keep track on its scroll changes
|
|
65
74
|
* @param ids scrollable elements ids
|
|
@@ -537,6 +537,26 @@ 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;
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* To enable recording countdown
|
|
553
|
+
*/
|
|
554
|
+
public enableRecordingCountdown: () => void;
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* To disable recording countdown
|
|
558
|
+
*/
|
|
559
|
+
public disableRecordingCountdown: () => void;
|
|
540
560
|
constructor();
|
|
541
561
|
/**
|
|
542
562
|
* Subscribe to comments on the current document.
|
|
@@ -1067,4 +1087,24 @@ export declare class CommentElement {
|
|
|
1067
1087
|
* @param annotationId Comment annotation id
|
|
1068
1088
|
*/
|
|
1069
1089
|
private _scrollToCommentByAnnotationId;
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
* To enable showing recording summary in comments
|
|
1093
|
+
*/
|
|
1094
|
+
private _enableRecordingSummary;
|
|
1095
|
+
|
|
1096
|
+
/**
|
|
1097
|
+
* To disable showing recording summary in comments
|
|
1098
|
+
*/
|
|
1099
|
+
private _disableRecordingSummary;
|
|
1100
|
+
|
|
1101
|
+
/**
|
|
1102
|
+
* To enable recording countdown
|
|
1103
|
+
*/
|
|
1104
|
+
private _enableRecordingCountdown;
|
|
1105
|
+
|
|
1106
|
+
/**
|
|
1107
|
+
* To disable recording countdown
|
|
1108
|
+
*/
|
|
1109
|
+
private _disableRecordingCountdown;
|
|
1070
1110
|
}
|
|
@@ -7,9 +7,29 @@ export declare class RecorderElement {
|
|
|
7
7
|
|
|
8
8
|
onRecordedData: () => Observable<any>;
|
|
9
9
|
|
|
10
|
+
/**
|
|
11
|
+
* To enable recording countdown
|
|
12
|
+
*/
|
|
13
|
+
enableRecordingCountdown: () => void;
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* To disable recording countdown
|
|
17
|
+
*/
|
|
18
|
+
disableRecordingCountdown: () => void;
|
|
19
|
+
|
|
10
20
|
constructor();
|
|
11
21
|
|
|
12
22
|
private _initRecording;
|
|
13
23
|
|
|
14
24
|
private _onRecordedData;
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* To enable dark mode in comments
|
|
28
|
+
*/
|
|
29
|
+
private _enableRecordingCountdown;
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* To disable dark mode in comments
|
|
33
|
+
*/
|
|
34
|
+
private _disableRecordingCountdown;
|
|
15
35
|
}
|