@veltdev/sdk 1.0.22 → 1.0.23
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 +85 -25
- package/package.json +1 -1
- package/velt.js +2 -2
|
@@ -230,12 +230,12 @@ export declare class CommentElement {
|
|
|
230
230
|
/**
|
|
231
231
|
* To show triangle in popover mode
|
|
232
232
|
*/
|
|
233
|
-
|
|
233
|
+
public enablePopoverTriangleComponent: () => any;
|
|
234
234
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
235
|
+
/**
|
|
236
|
+
* To hide triangle in popover mode
|
|
237
|
+
*/
|
|
238
|
+
public disablePopoverTriangleComponent: () => any;
|
|
239
239
|
|
|
240
240
|
/**
|
|
241
241
|
* To enable dialog on hover
|
|
@@ -383,13 +383,13 @@ export declare class CommentElement {
|
|
|
383
383
|
*
|
|
384
384
|
* @deprecated Use setCustomCategory instead
|
|
385
385
|
*/
|
|
386
|
-
|
|
386
|
+
setCustomCategories: (categories: CustomCategory[]) => void;
|
|
387
387
|
|
|
388
388
|
/**
|
|
389
389
|
* @description Sets custom categories filters
|
|
390
390
|
* @param categories
|
|
391
391
|
*/
|
|
392
|
-
|
|
392
|
+
setCustomCategory: (categories: CustomCategory[]) => void;
|
|
393
393
|
|
|
394
394
|
/**
|
|
395
395
|
* To enable inbox mode
|
|
@@ -440,22 +440,52 @@ export declare class CommentElement {
|
|
|
440
440
|
/**
|
|
441
441
|
* To enable mobile mode
|
|
442
442
|
*/
|
|
443
|
-
|
|
443
|
+
public enableMobileMode: () => any;
|
|
444
444
|
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
445
|
+
/**
|
|
446
|
+
* To disable mobile mode
|
|
447
|
+
*/
|
|
448
|
+
public disableMobileMode: () => any;
|
|
449
449
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
450
|
+
/**
|
|
451
|
+
* To enable inline comment mode
|
|
452
|
+
*/
|
|
453
|
+
public enableInlineCommentMode: () => any;
|
|
454
|
+
|
|
455
|
+
/**
|
|
456
|
+
* To disable inline comment mode
|
|
457
|
+
*/
|
|
458
|
+
public disableInlineCommentMode: () => any;
|
|
454
459
|
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
460
|
+
/**
|
|
461
|
+
* To enable minimap
|
|
462
|
+
*/
|
|
463
|
+
public enableMinimap: () => any;
|
|
464
|
+
|
|
465
|
+
/**
|
|
466
|
+
* To disable minimap
|
|
467
|
+
*/
|
|
468
|
+
public disableMinimap: () => any;
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* To show comments on DOM
|
|
472
|
+
*/
|
|
473
|
+
public showCommentsOnDom: () => any;
|
|
474
|
+
|
|
475
|
+
/**
|
|
476
|
+
* To hide comments on DOM
|
|
477
|
+
*/
|
|
478
|
+
public hideCommentsOnDom: () => any;
|
|
479
|
+
|
|
480
|
+
/**
|
|
481
|
+
* To enable comment tool
|
|
482
|
+
*/
|
|
483
|
+
public enableCommentTool: () => any;
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* To disable comment tool
|
|
487
|
+
*/
|
|
488
|
+
public disableCommentTool: () => any;
|
|
459
489
|
constructor();
|
|
460
490
|
/**
|
|
461
491
|
* Subscribe to comments on the current document.
|
|
@@ -679,12 +709,12 @@ export declare class CommentElement {
|
|
|
679
709
|
/**
|
|
680
710
|
* To show triangle in popover mode
|
|
681
711
|
*/
|
|
682
|
-
|
|
712
|
+
private _enablePopoverTriangleComponent;
|
|
683
713
|
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
714
|
+
/**
|
|
715
|
+
* To hide triangle in popover mode
|
|
716
|
+
*/
|
|
717
|
+
private _disablePopoverTriangleComponent;
|
|
688
718
|
|
|
689
719
|
/**
|
|
690
720
|
* To enable dialog on hover
|
|
@@ -905,4 +935,34 @@ export declare class CommentElement {
|
|
|
905
935
|
* To disable inline comment mode
|
|
906
936
|
*/
|
|
907
937
|
private _disableInlineCommentMode;
|
|
938
|
+
|
|
939
|
+
/**
|
|
940
|
+
* To enable minimap
|
|
941
|
+
*/
|
|
942
|
+
private _enableMinimap;
|
|
943
|
+
|
|
944
|
+
/**
|
|
945
|
+
* To disable minimap
|
|
946
|
+
*/
|
|
947
|
+
private _disableMinimap;
|
|
948
|
+
|
|
949
|
+
/**
|
|
950
|
+
* To show comments on DOM
|
|
951
|
+
*/
|
|
952
|
+
private _showCommentsOnDom;
|
|
953
|
+
|
|
954
|
+
/**
|
|
955
|
+
* To hide comments on DOM
|
|
956
|
+
*/
|
|
957
|
+
private _hideCommentsOnDom;
|
|
958
|
+
|
|
959
|
+
/**
|
|
960
|
+
* To enable comment tool
|
|
961
|
+
*/
|
|
962
|
+
private _enableCommentTool;
|
|
963
|
+
|
|
964
|
+
/**
|
|
965
|
+
* To disable comment tool
|
|
966
|
+
*/
|
|
967
|
+
private _disableCommentTool;
|
|
908
968
|
}
|