@veltdev/sdk 4.5.0-beta.24 → 4.5.0-beta.26
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 +24 -0
- package/package.json +1 -1
- package/velt.js +73 -73
|
@@ -793,14 +793,26 @@ export declare class CommentElement {
|
|
|
793
793
|
|
|
794
794
|
/**
|
|
795
795
|
* To enable group multiple match
|
|
796
|
+
* @deprecated Use enableGroupMatchedComments instead
|
|
796
797
|
*/
|
|
797
798
|
public enableGroupMultipleMatch: () => void;
|
|
798
799
|
|
|
799
800
|
/**
|
|
800
801
|
* To disable group multiple match
|
|
802
|
+
* @deprecated Use disableGroupMatchedComments instead
|
|
801
803
|
*/
|
|
802
804
|
public disableGroupMultipleMatch: () => void;
|
|
803
805
|
|
|
806
|
+
/**
|
|
807
|
+
* To enable group matched comments
|
|
808
|
+
*/
|
|
809
|
+
public enableGroupMatchedComments: () => void;
|
|
810
|
+
|
|
811
|
+
/**
|
|
812
|
+
* To disable group matched comments
|
|
813
|
+
*/
|
|
814
|
+
public disableGroupMatchedComments: () => void;
|
|
815
|
+
|
|
804
816
|
/**
|
|
805
817
|
* To update context of comment annotation
|
|
806
818
|
* @param annotationId Comment annotation id
|
|
@@ -1933,14 +1945,26 @@ export declare class CommentElement {
|
|
|
1933
1945
|
|
|
1934
1946
|
/**
|
|
1935
1947
|
* To enable group multiple match
|
|
1948
|
+
* @deprecated Use enableGroupMatchedComments instead
|
|
1936
1949
|
*/
|
|
1937
1950
|
private _enableGroupMultipleMatch;
|
|
1938
1951
|
|
|
1939
1952
|
/**
|
|
1940
1953
|
* To disable group multiple match
|
|
1954
|
+
* @deprecated Use disableGroupMatchedComments instead
|
|
1941
1955
|
*/
|
|
1942
1956
|
private _disableGroupMultipleMatch;
|
|
1943
1957
|
|
|
1958
|
+
/**
|
|
1959
|
+
* To enable group matched comments
|
|
1960
|
+
*/
|
|
1961
|
+
private _enableGroupMatchedComments;
|
|
1962
|
+
|
|
1963
|
+
/**
|
|
1964
|
+
* To disable group matched comments
|
|
1965
|
+
*/
|
|
1966
|
+
private _disableGroupMatchedComments;
|
|
1967
|
+
|
|
1944
1968
|
/**
|
|
1945
1969
|
* To update context of comment annotation
|
|
1946
1970
|
* @param annotationId Comment annotation id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.26",
|
|
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": [
|