@veltdev/sdk 3.0.32 → 3.0.34
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.
|
@@ -702,7 +702,7 @@ export declare class CommentElement {
|
|
|
702
702
|
* To add manual comment annotation.
|
|
703
703
|
* @param config manual comment annotation config
|
|
704
704
|
*/
|
|
705
|
-
public addManualComment: (config: ManualCommentAnnotationConfig) =>
|
|
705
|
+
public addManualComment: (config: ManualCommentAnnotationConfig) => Promise<any>;
|
|
706
706
|
|
|
707
707
|
/**
|
|
708
708
|
* To add custom list dropdown on comment annotation.
|
|
@@ -801,7 +801,7 @@ export declare class CommentElement {
|
|
|
801
801
|
* @param documentId Document Id
|
|
802
802
|
* @returns Observable<CommentAnnotation | null>
|
|
803
803
|
*/
|
|
804
|
-
public getCommentAnnotationById: (config: {annotationId: string, documentId?: string}) => Observable<CommentAnnotation | null>;
|
|
804
|
+
public getCommentAnnotationById: (config: { annotationId: string, documentId?: string }) => Observable<CommentAnnotation | null>;
|
|
805
805
|
|
|
806
806
|
/**
|
|
807
807
|
* To enable collapsed comment
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ export declare class Constants {
|
|
|
179
179
|
VELT_COMMENT_BUBBLE: string;
|
|
180
180
|
VELT_COMMENT_THREAD: string;
|
|
181
181
|
VELT_COMMENT_PIN: string;
|
|
182
|
+
VELT_COMMENT_TEXT: string;
|
|
182
183
|
VELT_CHART_COMMENT: string;
|
|
183
184
|
VELT_CANVAS_COMMENT: string;
|
|
184
185
|
VELT_INLINE_COMMENTS_SECTION: string;
|
|
@@ -285,6 +286,8 @@ export declare class Constants {
|
|
|
285
286
|
VELT_IS_FIRST_COMPONENT: string;
|
|
286
287
|
VELT_DOWNLOAD_BUTTON: string;
|
|
287
288
|
VELT_COMMENT_DIALOG_PORTAL_INTERNAL: string;
|
|
289
|
+
ANNOTATION_ID: string;
|
|
290
|
+
MULTI_THREAD_ANNOTATION_ID: string;
|
|
288
291
|
};
|
|
289
292
|
static INJECTION_STYLE_PROPS: {
|
|
290
293
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.34",
|
|
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": [
|