@veltdev/sdk 4.5.2-beta.14 → 4.5.2-beta.16
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.
|
@@ -17,6 +17,12 @@ export declare class CommentAnnotation {
|
|
|
17
17
|
* Auto generated.
|
|
18
18
|
*/
|
|
19
19
|
annotationId: string;
|
|
20
|
+
/**
|
|
21
|
+
* Annotation number for the comment pin annotation.
|
|
22
|
+
*
|
|
23
|
+
* Auto generated.
|
|
24
|
+
*/
|
|
25
|
+
annotationNumber?: number;
|
|
20
26
|
/**
|
|
21
27
|
* This is the list of all comments part of this annotation.
|
|
22
28
|
*
|
|
@@ -1213,6 +1213,16 @@ export declare class CommentElement {
|
|
|
1213
1213
|
*/
|
|
1214
1214
|
public disableLinkCallback: () => void;
|
|
1215
1215
|
|
|
1216
|
+
/**
|
|
1217
|
+
* To enable full screen in sidebar
|
|
1218
|
+
*/
|
|
1219
|
+
public enableFullScreenInSidebar: () => void;
|
|
1220
|
+
|
|
1221
|
+
/**
|
|
1222
|
+
* To disable full screen in sidebar
|
|
1223
|
+
*/
|
|
1224
|
+
public disableFullScreenInSidebar: () => void;
|
|
1225
|
+
|
|
1216
1226
|
constructor();
|
|
1217
1227
|
/**
|
|
1218
1228
|
* Subscribe to comments on the current document.
|
|
@@ -2405,4 +2415,14 @@ export declare class CommentElement {
|
|
|
2405
2415
|
* To disable link callback
|
|
2406
2416
|
*/
|
|
2407
2417
|
private _disableLinkCallback;
|
|
2418
|
+
|
|
2419
|
+
/**
|
|
2420
|
+
* To enable full screen in sidebar
|
|
2421
|
+
*/
|
|
2422
|
+
private _enableFullScreenInSidebar;
|
|
2423
|
+
|
|
2424
|
+
/**
|
|
2425
|
+
* To disable full screen in sidebar
|
|
2426
|
+
*/
|
|
2427
|
+
private _disableFullScreenInSidebar;
|
|
2408
2428
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -72,6 +72,7 @@ export declare class Constants {
|
|
|
72
72
|
static DEFAULT_ANNOTATION_COLOR: string;
|
|
73
73
|
static REGEX_EMAIL: RegExp;
|
|
74
74
|
static REGEX_URL: RegExp;
|
|
75
|
+
static readonly REGEX_URL_FOR_USER_NAME: RegExp;
|
|
75
76
|
static REGEX_SPECIAL_CHARS: RegExp;
|
|
76
77
|
static SNIPPYLY_HIGHLIGHT: string;
|
|
77
78
|
static SNIPPYLY_HIGHLIGHT_PREVIEW: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.5.2-beta.
|
|
3
|
+
"version": "4.5.2-beta.16",
|
|
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": [
|