@veltdev/sdk 1.0.9 → 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.
- package/app/models/element/comment-element.model.d.ts +32 -12
- package/package.json +1 -1
- package/velt.js +2 -2
|
@@ -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
|
|
@@ -426,6 +426,16 @@ export declare class CommentElement {
|
|
|
426
426
|
* To disable suggestion mode
|
|
427
427
|
*/
|
|
428
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;
|
|
429
439
|
constructor();
|
|
430
440
|
/**
|
|
431
441
|
* Subscribe to comments on the current document.
|
|
@@ -457,25 +467,25 @@ export declare class CommentElement {
|
|
|
457
467
|
|
|
458
468
|
/**
|
|
459
469
|
* To enable floating comments
|
|
460
|
-
* @deprecated Use
|
|
470
|
+
* @deprecated Use enableFloatingCommentDialog instead
|
|
461
471
|
*/
|
|
462
472
|
private _enableFloatingComments;
|
|
463
473
|
|
|
464
474
|
/**
|
|
465
475
|
* To disable floating comments
|
|
466
|
-
* @deprecated Use
|
|
476
|
+
* @deprecated Use disableFloatingCommentDialog instead
|
|
467
477
|
*/
|
|
468
478
|
private _disableFloatingComments;
|
|
469
479
|
|
|
470
480
|
/**
|
|
471
|
-
* To enable floating
|
|
481
|
+
* To enable floating comment dialog
|
|
472
482
|
*/
|
|
473
|
-
private
|
|
483
|
+
private _enableFloatingCommentDialog;
|
|
474
484
|
|
|
475
485
|
/**
|
|
476
|
-
* To disable floating
|
|
486
|
+
* To disable floating comment dialog
|
|
477
487
|
*/
|
|
478
|
-
private
|
|
488
|
+
private _disableFloatingCommentDialog;
|
|
479
489
|
|
|
480
490
|
/**
|
|
481
491
|
* To add comments on specific elements
|
|
@@ -845,4 +855,14 @@ export declare class CommentElement {
|
|
|
845
855
|
* To disable suggestion mode
|
|
846
856
|
*/
|
|
847
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;
|
|
848
868
|
}
|