@veltdev/sdk 3.0.0 → 3.0.1
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.
- package/app/models/element/comment-element.model.d.ts +34 -14
- package/package.json +1 -1
- package/velt.js +2 -2
|
@@ -717,20 +717,30 @@ export declare class CommentElement {
|
|
|
717
717
|
public createCustomListDataOnComment: (data: AutocompleteData) => void;
|
|
718
718
|
|
|
719
719
|
/**
|
|
720
|
-
* To
|
|
720
|
+
* To exclude annotations by location ids from sidebar
|
|
721
|
+
* @param locationIds Location Ids to be excluded from sidebar
|
|
721
722
|
*/
|
|
722
|
-
public
|
|
723
|
+
public excludeLocationIdsFromSidebar: (locationIds: string[]) => void;
|
|
723
724
|
|
|
724
725
|
/**
|
|
725
|
-
* To
|
|
726
|
+
* To enable bubble on pin
|
|
726
727
|
*/
|
|
727
|
-
public
|
|
728
|
+
public enableBubbleOnPin: () => void;
|
|
728
729
|
|
|
729
730
|
/**
|
|
730
|
-
* To
|
|
731
|
-
* @param locationIds Location Ids to be excluded from sidebar
|
|
731
|
+
* To disable bubble on pin
|
|
732
732
|
*/
|
|
733
|
-
public
|
|
733
|
+
public disableBubbleOnPin: () => void;
|
|
734
|
+
|
|
735
|
+
/**
|
|
736
|
+
* To enable bubble on pin hover
|
|
737
|
+
*/
|
|
738
|
+
public enableBubbleOnPinHover: () => void;
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* To disable bubble on pin hover
|
|
742
|
+
*/
|
|
743
|
+
public disableBubbleOnPinHover: () => void;
|
|
734
744
|
constructor();
|
|
735
745
|
/**
|
|
736
746
|
* Subscribe to comments on the current document.
|
|
@@ -1436,18 +1446,28 @@ export declare class CommentElement {
|
|
|
1436
1446
|
private _createCustomListDataOnComment;
|
|
1437
1447
|
|
|
1438
1448
|
/**
|
|
1439
|
-
* To
|
|
1449
|
+
* To exclude annotations by location ids from sidebar
|
|
1450
|
+
* @param locationIds Location Ids to be excluded from sidebar
|
|
1440
1451
|
*/
|
|
1441
|
-
private
|
|
1452
|
+
private _excludeLocationIdsFromSidebar;
|
|
1442
1453
|
|
|
1443
1454
|
/**
|
|
1444
|
-
* To
|
|
1455
|
+
* To enable bubble on pin
|
|
1445
1456
|
*/
|
|
1446
|
-
private
|
|
1457
|
+
private _enableBubbleOnPin;
|
|
1447
1458
|
|
|
1448
1459
|
/**
|
|
1449
|
-
* To
|
|
1450
|
-
* @param locationIds Location Ids to be excluded from sidebar
|
|
1460
|
+
* To disable bubble on pin
|
|
1451
1461
|
*/
|
|
1452
|
-
private
|
|
1462
|
+
private _disableBubbleOnPin;
|
|
1463
|
+
|
|
1464
|
+
/**
|
|
1465
|
+
* To enable bubble on pin hover
|
|
1466
|
+
*/
|
|
1467
|
+
private _enableBubbleOnPinHover;
|
|
1468
|
+
|
|
1469
|
+
/**
|
|
1470
|
+
* To disable bubble on pin hover
|
|
1471
|
+
*/
|
|
1472
|
+
private _disableBubbleOnPinHover;
|
|
1453
1473
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
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": [
|