@veltdev/sdk 1.0.119 → 1.0.121
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 +12 -0
- package/app/utils/constants.d.ts +12 -0
- package/app/utils/enums.d.ts +4 -0
- package/package.json +2 -2
- package/velt.css +1 -1
- package/velt.js +2 -2
|
@@ -557,6 +557,12 @@ export declare class CommentElement {
|
|
|
557
557
|
* To disable recording countdown
|
|
558
558
|
*/
|
|
559
559
|
public disableRecordingCountdown: () => void;
|
|
560
|
+
|
|
561
|
+
/**
|
|
562
|
+
* To set unread indicator mode
|
|
563
|
+
* @param mode unread indicator mode
|
|
564
|
+
*/
|
|
565
|
+
public setUnreadIndicatorMode: (mode: string) => void;
|
|
560
566
|
constructor();
|
|
561
567
|
/**
|
|
562
568
|
* Subscribe to comments on the current document.
|
|
@@ -1107,4 +1113,10 @@ export declare class CommentElement {
|
|
|
1107
1113
|
* To disable recording countdown
|
|
1108
1114
|
*/
|
|
1109
1115
|
private _disableRecordingCountdown;
|
|
1116
|
+
|
|
1117
|
+
/**
|
|
1118
|
+
* To set unread indicator mode
|
|
1119
|
+
* @param mode unread indicator mode
|
|
1120
|
+
*/
|
|
1121
|
+
private _setUnreadIndicatorMode;
|
|
1110
1122
|
}
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -203,6 +203,17 @@ export declare class Constants {
|
|
|
203
203
|
VELT_NOTIFICATIONS_TOOL: string;
|
|
204
204
|
VELT_NOTIFICATIONS_PANEL: string;
|
|
205
205
|
VELT_NOTIFICATIONS_HISTORY_PANEL: string;
|
|
206
|
+
VELT_WIREFRAME: string;
|
|
207
|
+
VELT_COMMENT_DIALOG_HEADER: string;
|
|
208
|
+
VELT_COMMENT_DIALOG_BODY: string;
|
|
209
|
+
VELT_COMMENT_DIALOG_FOOTER: string;
|
|
210
|
+
VELT_COMMENT_DIALOG_PRIORITY: string;
|
|
211
|
+
VELT_COMMENT_DIALOG_STATUS: string;
|
|
212
|
+
VELT_COMMENT_DIALOG_COPY_LINK: string;
|
|
213
|
+
VELT_COMMENT_DIALOG_RESOLVE_BUTTON: string;
|
|
214
|
+
VELT_COMMENT_DIALOG_OPTIONS: string;
|
|
215
|
+
VELT_COMMENT_DIALOG_BODY_THREAD_CARD: string;
|
|
216
|
+
VELT_COMMENT_DIALOG_PRIVATE_BANNER: string;
|
|
206
217
|
};
|
|
207
218
|
static ATTRIBUTES: {
|
|
208
219
|
VELT_ID: string;
|
|
@@ -251,6 +262,7 @@ export declare class Constants {
|
|
|
251
262
|
VELT_IFRAME_CONTAINER: string;
|
|
252
263
|
VELT_IFRAME_CONTAINER_STATIC: string;
|
|
253
264
|
VELT_IS_FIRST_COMPONENT: string;
|
|
265
|
+
VELT_DOWNLOAD_BUTTON: string;
|
|
254
266
|
};
|
|
255
267
|
static INJECTION_STYLE_PROPS: {
|
|
256
268
|
/**
|
package/app/utils/enums.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.121",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "velt.js",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
8
|
-
"version:update": "npm
|
|
8
|
+
"version:update": "node ../update-npm-package.mjs",
|
|
9
9
|
"publish:sdk": "npm publish --access public"
|
|
10
10
|
},
|
|
11
11
|
"author": "",
|
package/velt.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
html{--velt-base-rem-unit: 1}*[data-snippyly-element=true],*[data-velt-element=true]{font-family:var(--velt-default-font-family)}
|
|
1
|
+
html{--velt-base-rem-unit: 1}*[data-snippyly-element=true],*[data-velt-element=true]{font-family:var(--velt-default-font-family)}velt-wireframe{display:none!important}
|