@veltdev/sdk 4.5.0-beta.14 → 4.5.0-beta.15
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 +21 -0
- package/package.json +1 -1
- package/velt.js +54 -54
|
@@ -1140,6 +1140,17 @@ export declare class CommentElement {
|
|
|
1140
1140
|
* To disable draft mode
|
|
1141
1141
|
*/
|
|
1142
1142
|
public disableDraftMode: () => void;
|
|
1143
|
+
|
|
1144
|
+
/**
|
|
1145
|
+
* To enable filter comments on dom
|
|
1146
|
+
*/
|
|
1147
|
+
public enableFilterCommentsOnDom: () => void;
|
|
1148
|
+
|
|
1149
|
+
/**
|
|
1150
|
+
* To disable filter comments on dom
|
|
1151
|
+
*/
|
|
1152
|
+
public disableFilterCommentsOnDom: () => void;
|
|
1153
|
+
|
|
1143
1154
|
constructor();
|
|
1144
1155
|
/**
|
|
1145
1156
|
* Subscribe to comments on the current document.
|
|
@@ -2260,4 +2271,14 @@ export declare class CommentElement {
|
|
|
2260
2271
|
* To disable draft mode
|
|
2261
2272
|
*/
|
|
2262
2273
|
private _disableDraftMode;
|
|
2274
|
+
|
|
2275
|
+
/**
|
|
2276
|
+
* To enable filter comments on dom
|
|
2277
|
+
*/
|
|
2278
|
+
private _enableFilterCommentsOnDom;
|
|
2279
|
+
|
|
2280
|
+
/**
|
|
2281
|
+
* To disable filter comments on dom
|
|
2282
|
+
*/
|
|
2283
|
+
private _disableFilterCommentsOnDom;
|
|
2263
2284
|
}
|
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.15",
|
|
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": [
|