@veltdev/sdk 3.0.25 → 3.0.27
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.
|
@@ -744,14 +744,26 @@ export declare class CommentElement {
|
|
|
744
744
|
|
|
745
745
|
/**
|
|
746
746
|
* To enable multi thread mode
|
|
747
|
+
* @deprecated Use `enableMultiThread` instead
|
|
747
748
|
*/
|
|
748
749
|
public enableMultiThreadMode: () => void;
|
|
749
750
|
|
|
750
751
|
/**
|
|
751
752
|
* To disable multi thread mode
|
|
753
|
+
* @deprecated Use `disableMultiThread` instead
|
|
752
754
|
*/
|
|
753
755
|
public disableMultiThreadMode: () => void;
|
|
754
756
|
|
|
757
|
+
/**
|
|
758
|
+
* To enable multi thread mode
|
|
759
|
+
*/
|
|
760
|
+
public enableMultiThread: () => void;
|
|
761
|
+
|
|
762
|
+
/**
|
|
763
|
+
* To disable multi thread mode
|
|
764
|
+
*/
|
|
765
|
+
public disableMultiThread: () => void;
|
|
766
|
+
|
|
755
767
|
/**
|
|
756
768
|
* To update context of comment annotation
|
|
757
769
|
* @param annotationId Comment annotation id
|
|
@@ -767,6 +779,22 @@ export declare class CommentElement {
|
|
|
767
779
|
*/
|
|
768
780
|
public getSelectedComments: () => Observable<CommentAnnotation[]>;
|
|
769
781
|
|
|
782
|
+
/**
|
|
783
|
+
* To enable delete reply confirmation
|
|
784
|
+
*/
|
|
785
|
+
public enableDeleteReplyConfirmation: () => void;
|
|
786
|
+
|
|
787
|
+
/**
|
|
788
|
+
* To disable delete reply confirmation
|
|
789
|
+
*/
|
|
790
|
+
public disableDeleteReplyConfirmation: () => void;
|
|
791
|
+
|
|
792
|
+
/**
|
|
793
|
+
* Subscribe to copy link
|
|
794
|
+
* @returns link to be copied
|
|
795
|
+
*/
|
|
796
|
+
public onCopyLink: () => Observable<string>;
|
|
797
|
+
|
|
770
798
|
constructor();
|
|
771
799
|
/**
|
|
772
800
|
* Subscribe to comments on the current document.
|
|
@@ -1499,14 +1527,26 @@ export declare class CommentElement {
|
|
|
1499
1527
|
|
|
1500
1528
|
/**
|
|
1501
1529
|
* To enable multi thread mode
|
|
1530
|
+
* @deprecated Use `enableMultiThread` instead
|
|
1502
1531
|
*/
|
|
1503
1532
|
private _enableMultiThreadMode;
|
|
1504
1533
|
|
|
1505
1534
|
/**
|
|
1506
1535
|
* To disable multi thread mode
|
|
1536
|
+
* @deprecated Use `disableMultiThread` instead
|
|
1507
1537
|
*/
|
|
1508
1538
|
private _disableMultiThreadMode;
|
|
1509
1539
|
|
|
1540
|
+
/**
|
|
1541
|
+
* To enable multi thread mode
|
|
1542
|
+
*/
|
|
1543
|
+
private _enableMultiThread;
|
|
1544
|
+
|
|
1545
|
+
/**
|
|
1546
|
+
* To disable multi thread mode
|
|
1547
|
+
*/
|
|
1548
|
+
private _disableMultiThread;
|
|
1549
|
+
|
|
1510
1550
|
/**
|
|
1511
1551
|
* To update context of comment annotation
|
|
1512
1552
|
* @param annotationId Comment annotation id
|
|
@@ -1521,4 +1561,20 @@ export declare class CommentElement {
|
|
|
1521
1561
|
* @returns list of selected comments
|
|
1522
1562
|
*/
|
|
1523
1563
|
private _getSelectedComments;
|
|
1524
|
-
|
|
1564
|
+
|
|
1565
|
+
/**
|
|
1566
|
+
* To enable delete reply confirmation
|
|
1567
|
+
*/
|
|
1568
|
+
private _enableDeleteReplyConfirmation;
|
|
1569
|
+
|
|
1570
|
+
/**
|
|
1571
|
+
* To disable delete reply confirmation
|
|
1572
|
+
*/
|
|
1573
|
+
private _disableDeleteReplyConfirmation;
|
|
1574
|
+
|
|
1575
|
+
/**
|
|
1576
|
+
* Subscribe to copy link
|
|
1577
|
+
* @returns link to be copied
|
|
1578
|
+
*/
|
|
1579
|
+
private _onCopyLink;
|
|
1580
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.27",
|
|
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": [
|