@veltdev/sdk 1.0.66 → 1.0.68
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.
|
@@ -11,6 +11,7 @@ export declare class CommentSidebarFilterConfig {
|
|
|
11
11
|
priority?: FilterTypeConfig;
|
|
12
12
|
category?: FilterTypeConfig;
|
|
13
13
|
commentType?: FilterTypeConfig;
|
|
14
|
+
version?: FilterTypeConfig;
|
|
14
15
|
}
|
|
15
16
|
export declare class CommentSidebarGroupConfig {
|
|
16
17
|
enable?: boolean;
|
|
@@ -21,9 +22,14 @@ export declare class CommentSidebarFilters {
|
|
|
21
22
|
people?: {
|
|
22
23
|
userId?: string;
|
|
23
24
|
email?: string;
|
|
25
|
+
name?: string;
|
|
24
26
|
}[];
|
|
25
27
|
priority?: string[];
|
|
26
28
|
status?: string[];
|
|
27
29
|
category?: string[];
|
|
30
|
+
version?: {
|
|
31
|
+
id: string;
|
|
32
|
+
name?: string;
|
|
33
|
+
}[];
|
|
28
34
|
}
|
|
29
35
|
export {};
|
|
@@ -10,6 +10,16 @@ export declare class Location {
|
|
|
10
10
|
/**
|
|
11
11
|
* Version provided by the user.
|
|
12
12
|
*/
|
|
13
|
-
version?:
|
|
13
|
+
version?: Version;
|
|
14
14
|
[key: string]: any;
|
|
15
15
|
}
|
|
16
|
+
export declare class Version {
|
|
17
|
+
/**
|
|
18
|
+
* Unique identifier for the version.
|
|
19
|
+
*/
|
|
20
|
+
id: string;
|
|
21
|
+
/**
|
|
22
|
+
* Name of the version.
|
|
23
|
+
*/
|
|
24
|
+
name: string;
|
|
25
|
+
}
|
|
@@ -13,7 +13,7 @@ export declare class CommentElement {
|
|
|
13
13
|
/**
|
|
14
14
|
* To delete selected comments
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
deleteSelectedComment: () => Promise<any>;
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
19
|
* To enable text comment selection
|
|
@@ -472,6 +472,16 @@ export declare class CommentElement {
|
|
|
472
472
|
* @param filters Filters to be applied on comment sidebar
|
|
473
473
|
*/
|
|
474
474
|
public setCommentSidebarFilters: (filters: any) => void;
|
|
475
|
+
|
|
476
|
+
/**
|
|
477
|
+
* To enable comment pin highlighter.
|
|
478
|
+
*/
|
|
479
|
+
public enableCommentPinHighlighter: () => void;
|
|
480
|
+
|
|
481
|
+
/**
|
|
482
|
+
* To disable comment pin highlighter.
|
|
483
|
+
*/
|
|
484
|
+
public disableCommentPinHighlighter: () => void;
|
|
475
485
|
constructor();
|
|
476
486
|
/**
|
|
477
487
|
* Subscribe to comments on the current document.
|
|
@@ -483,7 +493,7 @@ export declare class CommentElement {
|
|
|
483
493
|
/**
|
|
484
494
|
* To delete selected comments
|
|
485
495
|
*/
|
|
486
|
-
private
|
|
496
|
+
private _deleteSelectedComment;
|
|
487
497
|
|
|
488
498
|
/**
|
|
489
499
|
* To enable text comment selection
|
|
@@ -937,4 +947,14 @@ export declare class CommentElement {
|
|
|
937
947
|
* @param filters Filters to be applied on comment sidebar
|
|
938
948
|
*/
|
|
939
949
|
private _setCommentSidebarFilters;
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* To enable comment pin highlighter.
|
|
953
|
+
*/
|
|
954
|
+
private _enableCommentPinHighlighter;
|
|
955
|
+
|
|
956
|
+
/**
|
|
957
|
+
* To disable comment pin highlighter.
|
|
958
|
+
*/
|
|
959
|
+
private _disableCommentPinHighlighter;
|
|
940
960
|
}
|