@veltdev/sdk 2.0.35 → 2.0.37
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.
|
@@ -725,6 +725,12 @@ export declare class CommentElement {
|
|
|
725
725
|
* To disable showing bubble on hover
|
|
726
726
|
*/
|
|
727
727
|
public hideBubbleOnHover: () => void;
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* To exclude annotations by location ids from sidebar
|
|
731
|
+
* @param locationIds Location Ids to be excluded from sidebar
|
|
732
|
+
*/
|
|
733
|
+
public excludeLocationIdsFromSidebar: (locationIds: string[]) => void;
|
|
728
734
|
constructor();
|
|
729
735
|
/**
|
|
730
736
|
* Subscribe to comments on the current document.
|
|
@@ -1438,4 +1444,10 @@ export declare class CommentElement {
|
|
|
1438
1444
|
* To disable showing bubble on hover
|
|
1439
1445
|
*/
|
|
1440
1446
|
private _hideBubbleOnHover;
|
|
1447
|
+
|
|
1448
|
+
/**
|
|
1449
|
+
* To exclude annotations by location ids from sidebar
|
|
1450
|
+
* @param locationIds Location Ids to be excluded from sidebar
|
|
1451
|
+
*/
|
|
1452
|
+
private _excludeLocationIdsFromSidebar;
|
|
1441
1453
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -225,6 +225,9 @@ export declare class Constants {
|
|
|
225
225
|
};
|
|
226
226
|
static ATTRIBUTES: {
|
|
227
227
|
VELT_TARGET_COMMENT_ELEMENT_ID: string;
|
|
228
|
+
VELT_COMMENT_TYPE: string;
|
|
229
|
+
TARGET_INLINE_COMMENT_ELEMENT_ID: string;
|
|
230
|
+
TARGET_COMMENT_ELEMENT_ID: string;
|
|
228
231
|
VELT_ID: string;
|
|
229
232
|
VELT_ELEMENT: string;
|
|
230
233
|
VELT_ANNOTATION_ID: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.37",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|