@veltdev/sdk 1.0.8 → 1.0.9

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
  /**
@@ -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
  */
@@ -509,6 +529,16 @@ export declare class CommentElement {
509
529
  */
510
530
  private _disableSignInButton;
511
531
 
532
+ /**
533
+ * To enable upgrade button in comments when plan is expired
534
+ */
535
+ private _enableUpgradeButton;
536
+
537
+ /**
538
+ * To disable upgrade button in comments when plan is expired
539
+ */
540
+ private _disableUpgradeButton;
541
+
512
542
  /**
513
543
  * @deprecated Use onCommentModeChange instead
514
544
  *
@@ -606,6 +636,16 @@ export declare class CommentElement {
606
636
  */
607
637
  private _disablePopoverMode;
608
638
 
639
+ /**
640
+ * To show triangle in popover mode
641
+ */
642
+ private _enablePopoverTriangleComponent;
643
+
644
+ /**
645
+ * To hide triangle in popover mode
646
+ */
647
+ private _disablePopoverTriangleComponent;
648
+
609
649
  /**
610
650
  * To enable dialog on hover
611
651
  */
@@ -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
- VELT_PLUGIN: string;
183
+ SUPERFLOW_TOOLBAR: string;
184
184
  VELT_MENU: string;
185
185
  VELT_COMMENT_DIALOG: string;
186
186
  VELT_SIDEBAR_BUTTON: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/sdk",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "",
5
5
  "main": "velt.js",
6
6
  "scripts": {