@veltdev/sdk 1.0.8 → 1.0.10
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.
|
@@ -130,6 +130,10 @@ export declare class CommentAnnotation {
|
|
|
130
130
|
* Selected text range of comment annotation
|
|
131
131
|
*/
|
|
132
132
|
targetTextRange?: TargetTextRange | null;
|
|
133
|
+
/**
|
|
134
|
+
* Set `true` to set text comment annotation on all the text content of provided target element using `targetElementId`
|
|
135
|
+
*/
|
|
136
|
+
onlyTextComment?: boolean;
|
|
133
137
|
approved?: boolean;
|
|
134
138
|
status: CustomStatus;
|
|
135
139
|
/**
|
|
@@ -33,25 +33,25 @@ export declare class CommentElement {
|
|
|
33
33
|
|
|
34
34
|
/**
|
|
35
35
|
* To enable floating comments
|
|
36
|
-
* @deprecated Use
|
|
36
|
+
* @deprecated Use enableFloatingCommentDialog instead
|
|
37
37
|
*/
|
|
38
38
|
enableFloatingComments: () => any;
|
|
39
39
|
|
|
40
40
|
/**
|
|
41
41
|
* To disable floating comments
|
|
42
|
-
* @deprecated Use
|
|
42
|
+
* @deprecated Use disableFloatingCommentDialog instead
|
|
43
43
|
*/
|
|
44
44
|
disableFloatingComments: () => any;
|
|
45
45
|
|
|
46
46
|
/**
|
|
47
|
-
* To enable floating
|
|
47
|
+
* To enable floating comment dialog
|
|
48
48
|
*/
|
|
49
|
-
|
|
49
|
+
enableFloatingCommentDialog: () => any;
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* To disable floating
|
|
52
|
+
* To disable floating comment dialog
|
|
53
53
|
*/
|
|
54
|
-
|
|
54
|
+
disableFloatingCommentDialog: () => any;
|
|
55
55
|
|
|
56
56
|
/**
|
|
57
57
|
* To add comments on specific elements
|
|
@@ -105,6 +105,16 @@ export declare class CommentElement {
|
|
|
105
105
|
*/
|
|
106
106
|
disableSignInButton: () => any;
|
|
107
107
|
|
|
108
|
+
/**
|
|
109
|
+
* To enable upgrade button in comments when plan is expired
|
|
110
|
+
*/
|
|
111
|
+
enableUpgradeButton: () => any;
|
|
112
|
+
|
|
113
|
+
/**
|
|
114
|
+
* To disable upgrade button in comments when plan is expired
|
|
115
|
+
*/
|
|
116
|
+
disableUpgradeButton: () => any;
|
|
117
|
+
|
|
108
118
|
/**
|
|
109
119
|
* @deprecated Use onCommentModeChange instead
|
|
110
120
|
*
|
|
@@ -207,6 +217,16 @@ export declare class CommentElement {
|
|
|
207
217
|
*/
|
|
208
218
|
public disablePopoverMode: () => any;
|
|
209
219
|
|
|
220
|
+
/**
|
|
221
|
+
* To show triangle in popover mode
|
|
222
|
+
*/
|
|
223
|
+
public enablePopoverTriangleComponent: () => any;
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* To hide triangle in popover mode
|
|
227
|
+
*/
|
|
228
|
+
public disablePopoverTriangleComponent: () => any;
|
|
229
|
+
|
|
210
230
|
/**
|
|
211
231
|
* To enable dialog on hover
|
|
212
232
|
*/
|
|
@@ -406,6 +426,16 @@ export declare class CommentElement {
|
|
|
406
426
|
* To disable suggestion mode
|
|
407
427
|
*/
|
|
408
428
|
public disableSuggestionMode: () => any;
|
|
429
|
+
|
|
430
|
+
/**
|
|
431
|
+
* To enable mobile mode
|
|
432
|
+
*/
|
|
433
|
+
public enableMobileMode: () => any;
|
|
434
|
+
|
|
435
|
+
/**
|
|
436
|
+
* To disable mobile mode
|
|
437
|
+
*/
|
|
438
|
+
public disableMobileMode: () => any;
|
|
409
439
|
constructor();
|
|
410
440
|
/**
|
|
411
441
|
* Subscribe to comments on the current document.
|
|
@@ -437,25 +467,25 @@ export declare class CommentElement {
|
|
|
437
467
|
|
|
438
468
|
/**
|
|
439
469
|
* To enable floating comments
|
|
440
|
-
* @deprecated Use
|
|
470
|
+
* @deprecated Use enableFloatingCommentDialog instead
|
|
441
471
|
*/
|
|
442
472
|
private _enableFloatingComments;
|
|
443
473
|
|
|
444
474
|
/**
|
|
445
475
|
* To disable floating comments
|
|
446
|
-
* @deprecated Use
|
|
476
|
+
* @deprecated Use disableFloatingCommentDialog instead
|
|
447
477
|
*/
|
|
448
478
|
private _disableFloatingComments;
|
|
449
479
|
|
|
450
480
|
/**
|
|
451
|
-
* To enable floating
|
|
481
|
+
* To enable floating comment dialog
|
|
452
482
|
*/
|
|
453
|
-
private
|
|
483
|
+
private _enableFloatingCommentDialog;
|
|
454
484
|
|
|
455
485
|
/**
|
|
456
|
-
* To disable floating
|
|
486
|
+
* To disable floating comment dialog
|
|
457
487
|
*/
|
|
458
|
-
private
|
|
488
|
+
private _disableFloatingCommentDialog;
|
|
459
489
|
|
|
460
490
|
/**
|
|
461
491
|
* To add comments on specific elements
|
|
@@ -509,6 +539,16 @@ export declare class CommentElement {
|
|
|
509
539
|
*/
|
|
510
540
|
private _disableSignInButton;
|
|
511
541
|
|
|
542
|
+
/**
|
|
543
|
+
* To enable upgrade button in comments when plan is expired
|
|
544
|
+
*/
|
|
545
|
+
private _enableUpgradeButton;
|
|
546
|
+
|
|
547
|
+
/**
|
|
548
|
+
* To disable upgrade button in comments when plan is expired
|
|
549
|
+
*/
|
|
550
|
+
private _disableUpgradeButton;
|
|
551
|
+
|
|
512
552
|
/**
|
|
513
553
|
* @deprecated Use onCommentModeChange instead
|
|
514
554
|
*
|
|
@@ -606,6 +646,16 @@ export declare class CommentElement {
|
|
|
606
646
|
*/
|
|
607
647
|
private _disablePopoverMode;
|
|
608
648
|
|
|
649
|
+
/**
|
|
650
|
+
* To show triangle in popover mode
|
|
651
|
+
*/
|
|
652
|
+
private _enablePopoverTriangleComponent;
|
|
653
|
+
|
|
654
|
+
/**
|
|
655
|
+
* To hide triangle in popover mode
|
|
656
|
+
*/
|
|
657
|
+
private _disablePopoverTriangleComponent;
|
|
658
|
+
|
|
609
659
|
/**
|
|
610
660
|
* To enable dialog on hover
|
|
611
661
|
*/
|
|
@@ -805,4 +855,14 @@ export declare class CommentElement {
|
|
|
805
855
|
* To disable suggestion mode
|
|
806
856
|
*/
|
|
807
857
|
private _disableSuggestionMode;
|
|
858
|
+
|
|
859
|
+
/**
|
|
860
|
+
* To enable mobile mode
|
|
861
|
+
*/
|
|
862
|
+
private _enableMobileMode;
|
|
863
|
+
|
|
864
|
+
/**
|
|
865
|
+
* To disable mobile mode
|
|
866
|
+
*/
|
|
867
|
+
private _disableMobileMode;
|
|
808
868
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -180,7 +180,7 @@ export declare class Constants {
|
|
|
180
180
|
VELT_HUDDLE: string;
|
|
181
181
|
VELT_HUDDLE_TOOL: string;
|
|
182
182
|
VELT_RECORDER_TOOL: string;
|
|
183
|
-
|
|
183
|
+
SUPERFLOW_TOOLBAR: string;
|
|
184
184
|
VELT_MENU: string;
|
|
185
185
|
VELT_COMMENT_DIALOG: string;
|
|
186
186
|
VELT_SIDEBAR_BUTTON: string;
|