@veltdev/sdk-staging 5.0.2-beta.9 → 5.0.2-beta.90

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.
Files changed (53) hide show
  1. package/app/client/snippyly.model.d.ts +34 -1
  2. package/app/models/data/activity-resolver.data.model.d.ts +27 -0
  3. package/app/models/data/activity.data.model.d.ts +181 -0
  4. package/app/models/data/agent-suggestion.data.model.d.ts +57 -0
  5. package/app/models/data/attachment-resolver.data.model.d.ts +2 -2
  6. package/app/models/data/attachment.model.d.ts +1 -0
  7. package/app/models/data/autocomplete.data.model.d.ts +4 -3
  8. package/app/models/data/base-metadata.data.model.d.ts +3 -0
  9. package/app/models/data/comment-actions.data.model.d.ts +14 -0
  10. package/app/models/data/comment-annotation.data.model.d.ts +66 -2
  11. package/app/models/data/comment-events.data.model.d.ts +27 -2
  12. package/app/models/data/comment-resolver.data.model.d.ts +3 -3
  13. package/app/models/data/comment-sidebar-config.model.d.ts +2 -0
  14. package/app/models/data/comment.data.model.d.ts +18 -0
  15. package/app/models/data/config.data.model.d.ts +26 -0
  16. package/app/models/data/core-events.data.model.d.ts +72 -0
  17. package/app/models/data/crdt.data.model.d.ts +51 -0
  18. package/app/models/data/document-paths.data.model.d.ts +1 -0
  19. package/app/models/data/document.data.model.d.ts +2 -0
  20. package/app/models/data/live-state-events.data.model.d.ts +6 -0
  21. package/app/models/data/notification-resolver.data.model.d.ts +39 -0
  22. package/app/models/data/notification.model.d.ts +24 -0
  23. package/app/models/data/page-info.model.d.ts +9 -0
  24. package/app/models/data/presence-user.data.model.d.ts +5 -0
  25. package/app/models/data/provider.data.model.d.ts +6 -0
  26. package/app/models/data/reaction-annotation.data.model.d.ts +5 -0
  27. package/app/models/data/reaction-resolver.data.model.d.ts +3 -3
  28. package/app/models/data/recorder-annotation.data.model.d.ts +11 -0
  29. package/app/models/data/recorder-events.data.model.d.ts +3 -0
  30. package/app/models/data/recorder-resolver.data.model.d.ts +58 -0
  31. package/app/models/data/resolver.data.model.d.ts +1 -0
  32. package/app/models/data/rewriter-events.data.model.d.ts +44 -0
  33. package/app/models/data/suggestion-events.data.model.d.ts +57 -0
  34. package/app/models/data/suggestion.data.model.d.ts +267 -0
  35. package/app/models/data/user-resolver.data.model.d.ts +2 -0
  36. package/app/models/data/user.data.model.d.ts +49 -0
  37. package/app/models/element/activity-element.model.d.ts +33 -0
  38. package/app/models/element/comment-element.model.d.ts +52 -8
  39. package/app/models/element/crdt-element.model.d.ts +88 -1
  40. package/app/models/element/notification-element.model.d.ts +15 -1
  41. package/app/models/element/presence-element.model.d.ts +25 -0
  42. package/app/models/element/rewriter-element.model.d.ts +20 -0
  43. package/app/models/element/suggestion-element.model.d.ts +180 -0
  44. package/app/utils/console.d.ts +25 -0
  45. package/app/utils/constants.d.ts +255 -0
  46. package/app/utils/enums.d.ts +42 -5
  47. package/app/utils/page-info-store.d.ts +29 -0
  48. package/environments/environment.d.ts +48 -0
  49. package/models.d.ts +8 -0
  50. package/package.json +1 -1
  51. package/types.d.ts +3 -0
  52. package/velt.css +1 -1
  53. package/velt.js +131 -142
@@ -50,6 +50,21 @@ export declare class PresenceElement {
50
50
  * Subscribe to presence events
51
51
  */
52
52
  on: <T extends keyof PresenceEventTypesMap>(action: T) => Observable<PresenceEventTypesMap[T]>;
53
+
54
+ /**
55
+ * Add a custom user to the presence list (e.g., an AI agent).
56
+ * The user will appear in presence alongside real users.
57
+ * @param request Object containing user data with at least userId required.
58
+ */
59
+ addUser: (request: { user: Partial<PresenceUser>, localOnly?: boolean }) => void;
60
+
61
+ /**
62
+ * Remove a previously added custom user from the presence list.
63
+ * @param request Object containing user data with at least userId required, and optional localOnly flag.
64
+ * @param request.localOnly If true, user is only removed locally (not removed from DB). Default: false.
65
+ */
66
+ removeUser: (request: { user: Partial<PresenceUser>, localOnly?: boolean }) => void;
67
+
53
68
  constructor();
54
69
  /**
55
70
  * Subscribe to a list of all online users who are either active or inactive on the current document.
@@ -95,4 +110,14 @@ export declare class PresenceElement {
95
110
  * Subscribe to presence events
96
111
  */
97
112
  private _on;
113
+
114
+ /**
115
+ * Add a custom user to the presence list
116
+ */
117
+ private _addUser;
118
+
119
+ /**
120
+ * Remove a custom user from the presence list
121
+ */
122
+ private _removeUser;
98
123
  }
@@ -9,6 +9,16 @@ export declare class RewriterElement {
9
9
  * To disable rewriter feature
10
10
  */
11
11
  disableRewriter: () => void;
12
+
13
+ /**
14
+ * To enable the default rewriter UI on text selection
15
+ */
16
+ enableDefaultUI: () => void;
17
+
18
+ /**
19
+ * To disable the default rewriter UI on text selection
20
+ */
21
+ disableDefaultUI: () => void;
12
22
  constructor();
13
23
 
14
24
  /**
@@ -20,4 +30,14 @@ export declare class RewriterElement {
20
30
  * To disable rewriter feature
21
31
  */
22
32
  private _disableRewriter;
33
+
34
+ /**
35
+ * To enable the default rewriter UI on text selection
36
+ */
37
+ private _enableDefaultUI;
38
+
39
+ /**
40
+ * To disable the default rewriter UI on text selection
41
+ */
42
+ private _disableDefaultUI;
23
43
  }
@@ -0,0 +1,180 @@
1
+ // @ts-nocheck
2
+ import { Observable } from "rxjs";
3
+ import { SuggestionEventType } from "../../utils/enums";
4
+ import { SuggestionEventTypesMap } from "../data/suggestion-events.data.model";
5
+ import { CommitSuggestionConfig, EnableSuggestionModeConfig, RegisterTargetConfig, Suggestion, SuggestionGetSuggestionsFilter } from "../data/suggestion.data.model";
6
+
7
+ export declare class SuggestionElement {
8
+
9
+ /**
10
+ * Turn on suggestion mode for this user/session and (optionally) register
11
+ * the onTargetEditStart / onTargetEditCommit callbacks the SDK invokes
12
+ * during the auto-detect edit lifecycle.
13
+ *
14
+ * Re-calling with a new config replaces the previous callbacks.
15
+ */
16
+ enableSuggestionMode: (config?: EnableSuggestionModeConfig) => void;
17
+
18
+ /**
19
+ * Turn off suggestion mode and clear any registered callbacks.
20
+ */
21
+ disableSuggestionMode: () => void;
22
+
23
+ /**
24
+ * Synchronous read of the current enable flag.
25
+ */
26
+ isSuggestionModeEnabled: () => boolean;
27
+
28
+ /**
29
+ * Reactive enable-flag stream; deduplicated.
30
+ */
31
+ isSuggestionModeEnabled$: () => Observable<boolean>;
32
+
33
+ /**
34
+ * Register a getter that returns the current value of a tagged target.
35
+ * Required for non-primitive (wrapper) targets — the SDK calls this on
36
+ * focus to snapshot the pre-edit value, and again on commit for the diff.
37
+ *
38
+ * The getter must reflect edit-time state (typically read from the DOM),
39
+ * not the persisted customer state. See `RegisterTargetConfig`.
40
+ */
41
+ registerTarget: <T = unknown>(config: RegisterTargetConfig<T>) => void;
42
+
43
+ /**
44
+ * Drop the registered getter for a target.
45
+ */
46
+ unregisterTarget: (targetId: string) => void;
47
+
48
+ /**
49
+ * Manually capture the current value as the snapshot for a target.
50
+ * Use for non-focusable elements (custom widgets, virtualized rows)
51
+ * where the auto-focus snapshot does not fire.
52
+ */
53
+ startSuggestion: (targetId: string) => void;
54
+
55
+ /**
56
+ * Programmatically commit a suggestion. Resolves with the new annotation id.
57
+ * Rejects with one of: INVALID_CONFIG, MODE_NOT_SUGGESTING,
58
+ * TARGET_NOT_REGISTERED, NO_GETTER_FOR_COMPLEX, NO_CHANGE_TO_SUGGEST,
59
+ * SNAPSHOT_FAILED.
60
+ */
61
+ commitSuggestion: <T = unknown>(config: CommitSuggestionConfig<T>) => Promise<{ id: string }>;
62
+
63
+ /**
64
+ * Synchronous read of all suggestions on the current document, optionally filtered.
65
+ */
66
+ getSuggestions: (filter?: SuggestionGetSuggestionsFilter) => Suggestion[];
67
+
68
+ /**
69
+ * Reactive variant of getSuggestions. Re-emits on every annotation change,
70
+ * deduplicated via the SDK's standard distinct-until-changed comparator.
71
+ */
72
+ getSuggestions$: (filter?: SuggestionGetSuggestionsFilter) => Observable<Suggestion[]>;
73
+
74
+ /**
75
+ * Newest pending suggestion for a target, or null. Convenience for
76
+ * pending-overlay UX patterns where each input shows the proposed
77
+ * value while a suggestion is awaiting resolution.
78
+ */
79
+ getPendingSuggestion: <T = unknown>(targetId: string) => Suggestion<T> | null;
80
+
81
+ /**
82
+ * Reactive variant of getPendingSuggestion.
83
+ */
84
+ getPendingSuggestion$: <T = unknown>(targetId: string) => Observable<Suggestion<T> | null>;
85
+
86
+ /**
87
+ * Subscribe to a suggestion event. Customers call `.subscribe(handler)`
88
+ * on the returned Observable. Event names: 'suggestionCreated',
89
+ * 'suggestionApproved', 'suggestionRejected', 'suggestionStale',
90
+ * 'targetEditStart', 'targetEditCommit'.
91
+ */
92
+ on: <T extends SuggestionEventType>(action: T) => Observable<SuggestionEventTypesMap[T]>;
93
+
94
+ constructor();
95
+
96
+ /**
97
+ * Turn on suggestion mode for this user/session and (optionally) register
98
+ * the onTargetEditStart / onTargetEditCommit callbacks the SDK invokes
99
+ * during the auto-detect edit lifecycle.
100
+ *
101
+ * Re-calling with a new config replaces the previous callbacks.
102
+ */
103
+ private _enableSuggestionMode;
104
+
105
+ /**
106
+ * Turn off suggestion mode and clear any registered callbacks.
107
+ */
108
+ private _disableSuggestionMode;
109
+
110
+ /**
111
+ * Synchronous read of the current enable flag.
112
+ */
113
+ private _isSuggestionModeEnabled;
114
+
115
+ /**
116
+ * Reactive enable-flag stream; deduplicated.
117
+ */
118
+ private _isSuggestionModeEnabled$;
119
+
120
+ /**
121
+ * Register a getter that returns the current value of a tagged target.
122
+ * Required for non-primitive (wrapper) targets — the SDK calls this on
123
+ * focus to snapshot the pre-edit value, and again on commit for the diff.
124
+ *
125
+ * The getter must reflect edit-time state (typically read from the DOM),
126
+ * not the persisted customer state. See `RegisterTargetConfig`.
127
+ */
128
+ private _registerTarget;
129
+
130
+ /**
131
+ * Drop the registered getter for a target.
132
+ */
133
+ private _unregisterTarget;
134
+
135
+ /**
136
+ * Manually capture the current value as the snapshot for a target.
137
+ * Use for non-focusable elements (custom widgets, virtualized rows)
138
+ * where the auto-focus snapshot does not fire.
139
+ */
140
+ private _startSuggestion;
141
+
142
+ /**
143
+ * Programmatically commit a suggestion. Resolves with the new annotation id.
144
+ * Rejects with one of: INVALID_CONFIG, MODE_NOT_SUGGESTING,
145
+ * TARGET_NOT_REGISTERED, NO_GETTER_FOR_COMPLEX, NO_CHANGE_TO_SUGGEST,
146
+ * SNAPSHOT_FAILED.
147
+ */
148
+ private _commitSuggestion;
149
+
150
+ /**
151
+ * Synchronous read of all suggestions on the current document, optionally filtered.
152
+ */
153
+ private _getSuggestions;
154
+
155
+ /**
156
+ * Reactive variant of getSuggestions. Re-emits on every annotation change,
157
+ * deduplicated via the SDK's standard distinct-until-changed comparator.
158
+ */
159
+ private _getSuggestions$;
160
+
161
+ /**
162
+ * Newest pending suggestion for a target, or null. Convenience for
163
+ * pending-overlay UX patterns where each input shows the proposed
164
+ * value while a suggestion is awaiting resolution.
165
+ */
166
+ private _getPendingSuggestion;
167
+
168
+ /**
169
+ * Reactive variant of getPendingSuggestion.
170
+ */
171
+ private _getPendingSuggestion$;
172
+
173
+ /**
174
+ * Subscribe to a suggestion event. Customers call `.subscribe(handler)`
175
+ * on the returned Observable. Event names: 'suggestionCreated',
176
+ * 'suggestionApproved', 'suggestionRejected', 'suggestionStale',
177
+ * 'targetEditStart', 'targetEditCommit'.
178
+ */
179
+ private _on;
180
+ }
@@ -0,0 +1,25 @@
1
+ export declare class Console {
2
+ static log: {
3
+ (...data: any[]): void;
4
+ (message?: any, ...optionalParams: any[]): void;
5
+ };
6
+ static warn: {
7
+ (...data: any[]): void;
8
+ (message?: any, ...optionalParams: any[]): void;
9
+ };
10
+ static error: {
11
+ (...data: any[]): void;
12
+ (message?: any, ...optionalParams: any[]): void;
13
+ };
14
+ static debug: {
15
+ (...data: any[]): void;
16
+ (message?: any, ...optionalParams: any[]): void;
17
+ };
18
+ static info: {
19
+ (...data: any[]): void;
20
+ (message?: any, ...optionalParams: any[]): void;
21
+ };
22
+ static logsEnabled: boolean;
23
+ static catch: (message: string, error?: any) => void;
24
+ static showLogs(): boolean;
25
+ }
@@ -37,6 +37,7 @@ export declare class Constants {
37
37
  static FIREBASE_PARTIAL_PATH_NOTIFICATION_USERS: string;
38
38
  static FIREBASE_PARTIAL_PATH_DOC_NOTIFICATION: string;
39
39
  static FIREBASE_PARTIAL_PATH_USER_NOTIFICATION: string;
40
+ static FIREBASE_PARTIAL_PATH_USER_NOTIFICATION_INDEX: string;
40
41
  static FIREBASE_PARTIAL_PATH_GLOBAL: string;
41
42
  static FIREBASE_PARTIAL_PATH_LOGINS: string;
42
43
  static FIREBASE_PARTIAL_PATH_METADATA: string;
@@ -57,6 +58,8 @@ export declare class Constants {
57
58
  static FIREBASE_PARTIAL_PATH_NOTIFICATIONS: string;
58
59
  static FIREBASE_PARTIAL_PATH_ORGANIZATION_NOTIFICATIONS: string;
59
60
  static FIREBASE_PARTIAL_PATH_LAST_NOTIFICATION_TIMESTAMP: string;
61
+ static FIREBASE_PARTIAL_PATH_ACTIVITIES: string;
62
+ static FIREBASE_PARTIAL_PATH_LAST_ACTIVITY_TIMESTAMP: string;
60
63
  static FIREBASE_PARTIAL_PATH_HEARTBEAT: string;
61
64
  static FIREBASE_PARTIAL_PATH_HEARTBEAT_BY_DOCUMENT: string;
62
65
  static FIREBASE_PARTIAL_PATH_USERS: string;
@@ -206,13 +209,105 @@ export declare class Constants {
206
209
  VELT_TEXT_HIGHLIGHT: string;
207
210
  VELT_COMMENT_TEXT_PORTAL: string;
208
211
  VELT_COMMENTS_SIDEBAR: string;
212
+ VELT_COMMENTS_SIDEBAR_V2: string;
213
+ VELT_COMMENT_SIDEBAR_SKELETON_V2: string;
214
+ VELT_COMMENT_SIDEBAR_PANEL_V2: string;
215
+ VELT_COMMENT_SIDEBAR_LIST_V2: string;
216
+ VELT_COMMENT_SIDEBAR_LIST_ITEM_V2: string;
217
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_V2: string;
218
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_V2: string;
219
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_LABEL_V2: string;
220
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_CONTENT_V2: string;
221
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_V2: string;
222
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_INDICATOR_V2: string;
223
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL_V2: string;
224
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_COUNT_V2: string;
225
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_V2: string;
226
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_TRIGGER_V2: string;
227
+ VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_V2: string;
228
+ VELT_COMMENT_SIDEBAR_FILTER_BUTTON_V2: string;
229
+ VELT_COMMENT_SIDEBAR_FILTER_BUTTON_V2_APPLIED_ICON: string;
230
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2: string;
231
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION: string;
232
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_FIELD: string;
233
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_LIST: string;
234
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_LABEL: string;
235
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_CONTROL: string;
236
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_OPTION_LIST: string;
237
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_OPTION: string;
238
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_OPTION_CHECKBOX: string;
239
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_CONTROL_VALUE: string;
240
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_CONTROL_CHIP: string;
241
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_CONTROL_CHIP_LIST: string;
242
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_CONTROL_SEARCH: string;
243
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_CONTROL_CHEVRON: string;
244
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_OPTION_NAME: string;
245
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_SECTION_OPTION_COUNT: string;
246
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_TITLE: string;
247
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_CLOSE_BUTTON: string;
248
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_GROUP_BY: string;
249
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_RESET_BUTTON: string;
250
+ VELT_COMMENT_SIDEBAR_FILTER_CONTAINER_V2_APPLY_BUTTON: string;
251
+ VELT_COMMENT_SIDEBAR_SEARCH_V2: string;
252
+ VELT_COMMENT_SIDEBAR_SEARCH_V2_ICON: string;
253
+ VELT_COMMENT_SIDEBAR_SEARCH_V2_INPUT: string;
254
+ VELT_COMMENT_SIDEBAR_FULLSCREEN_BUTTON_V2: string;
255
+ VELT_COMMENT_SIDEBAR_LIST_GROUP_HEADER_V2: string;
256
+ VELT_COMMENT_SIDEBAR_LIST_GROUP_HEADER_V2_LABEL: string;
257
+ VELT_COMMENT_SIDEBAR_LIST_GROUP_HEADER_V2_COUNT: string;
258
+ VELT_COMMENT_SIDEBAR_LIST_GROUP_HEADER_V2_SEPARATOR: string;
259
+ VELT_COMMENT_SIDEBAR_LIST_GROUP_HEADER_V2_CHEVRON: string;
260
+ VELT_COMMENT_SIDEBAR_HEADER_V2: string;
261
+ VELT_COMMENT_SIDEBAR_CLOSE_BUTTON_V2: string;
262
+ VELT_COMMENT_SIDEBAR_EMPTY_PLACEHOLDER_V2: string;
263
+ VELT_COMMENT_SIDEBAR_RESET_FILTER_BUTTON_V2: string;
264
+ VELT_COMMENT_SIDEBAR_PAGE_MODE_COMPOSER_V2: string;
265
+ VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_V2: string;
266
+ VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_BACK_BUTTON_V2: string;
267
+ VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_DIALOG_CONTAINER_V2: string;
209
268
  VELT_COMMENT_BUBBLE: string;
269
+ VELT_COMMENT_BUBBLE_AVATAR: string;
270
+ VELT_COMMENT_BUBBLE_COMMENTS_COUNT: string;
271
+ VELT_COMMENT_BUBBLE_UNREAD_ICON: string;
210
272
  VELT_COMMENT_THREAD: string;
211
273
  VELT_COMMENT_PIN: string;
274
+ VELT_COMMENT_PIN_NUMBER: string;
275
+ VELT_COMMENT_PIN_INDEX: string;
276
+ VELT_COMMENT_PIN_TRIANGLE: string;
277
+ VELT_COMMENT_PIN_PRIVATE_COMMENT_INDICATOR: string;
278
+ VELT_COMMENT_PIN_GHOST_COMMENT_INDICATOR: string;
279
+ VELT_COMMENT_PIN_UNREAD_COMMENT_INDICATOR: string;
280
+ VELT_SIDEBAR_BUTTON_ICON: string;
281
+ VELT_SIDEBAR_BUTTON_COMMENTS_COUNT: string;
282
+ VELT_SIDEBAR_BUTTON_UNREAD_ICON: string;
212
283
  VELT_COMMENT_TEXT: string;
213
284
  VELT_CHART_COMMENT: string;
214
285
  VELT_CANVAS_COMMENT: string;
215
286
  VELT_INLINE_COMMENTS_SECTION: string;
287
+ VELT_INLINE_COMMENTS_SECTION_SKELETON: string;
288
+ VELT_INLINE_COMMENTS_SECTION_PANEL: string;
289
+ VELT_INLINE_COMMENTS_SECTION_LIST: string;
290
+ VELT_INLINE_COMMENTS_SECTION_COMPOSER_CONTAINER: string;
291
+ VELT_INLINE_COMMENTS_SECTION_COMMENT_COUNT: string;
292
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN: string;
293
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER: string;
294
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_NAME: string;
295
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_ICON: string;
296
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT: string;
297
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM: string;
298
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_ICON: string;
299
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_TICK: string;
300
+ VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_NAME: string;
301
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN: string;
302
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER: string;
303
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_NAME: string;
304
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_ARROW: string;
305
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT: string;
306
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST: string;
307
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM: string;
308
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_CHECKBOX: string;
309
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL: string;
310
+ VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_APPLY_BUTTON: string;
216
311
  VELT_COMMENTS_MINIMAP: string;
217
312
  VELT_HIGHLIGHT_USER_TEXT: string;
218
313
  VELT_AUDIO_HUDDLE: string;
@@ -240,15 +335,170 @@ export declare class Constants {
240
335
  VELT_INLINE_REACTIONS_SECTION: string;
241
336
  VELT_VIEW_ANALYTICS: string;
242
337
  VELT_NOTIFICATIONS_TOOL: string;
338
+ VELT_NOTIFICATIONS_TOOL_ICON: string;
339
+ VELT_NOTIFICATIONS_TOOL_UNREAD_ICON: string;
340
+ VELT_NOTIFICATIONS_TOOL_LABEL: string;
341
+ VELT_NOTIFICATIONS_TOOL_UNREAD_COUNT: string;
243
342
  VELT_NOTIFICATIONS_PANEL: string;
343
+ VELT_NOTIFICATIONS_PANEL_TITLE: string;
344
+ VELT_NOTIFICATIONS_PANEL_TITLE_TEXT: string;
345
+ VELT_NOTIFICATIONS_PANEL_HEADER: string;
346
+ VELT_NOTIFICATIONS_PANEL_HEADER_TAB_FOR_YOU: string;
347
+ VELT_NOTIFICATIONS_PANEL_HEADER_TAB_PEOPLE: string;
348
+ VELT_NOTIFICATIONS_PANEL_HEADER_TAB_DOCUMENTS: string;
349
+ VELT_NOTIFICATIONS_PANEL_HEADER_TAB_ALL: string;
350
+ VELT_NOTIFICATIONS_PANEL_CONTENT: string;
351
+ VELT_NOTIFICATIONS_PANEL_CONTENT_FOR_YOU: string;
352
+ VELT_NOTIFICATIONS_PANEL_CONTENT_ALL: string;
353
+ VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE: string;
354
+ VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS: string;
355
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST: string;
356
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM: string;
357
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_AVATAR: string;
358
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_UNREAD: string;
359
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_HEADLINE: string;
360
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_BODY: string;
361
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_FILE_NAME: string;
362
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LIST_ITEM_TIME: string;
363
+ VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST: string;
364
+ VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM: string;
365
+ VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM_LABEL: string;
366
+ VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_LIST_ITEM_CONTENT: string;
367
+ VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST: string;
368
+ VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM: string;
369
+ VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_AVATAR: string;
370
+ VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_NAME: string;
371
+ VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_COUNT: string;
372
+ VELT_NOTIFICATIONS_PANEL_CONTENT_PEOPLE_LIST_ITEM_CONTENT: string;
373
+ VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST: string;
374
+ VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM: string;
375
+ VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_NAME: string;
376
+ VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_COUNT: string;
377
+ VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_CONTENT: string;
378
+ VELT_NOTIFICATIONS_PANEL_CONTENT_DOCUMENTS_LIST_ITEM_UNREAD: string;
379
+ VELT_NOTIFICATIONS_PANEL_CONTENT_LOAD_MORE: string;
380
+ VELT_NOTIFICATIONS_PANEL_CONTENT_ALL_READ_CONTAINER: string;
381
+ VELT_NOTIFICATIONS_PANEL_CLOSE_BUTTON: string;
382
+ VELT_NOTIFICATIONS_PANEL_READ_ALL_BUTTON: string;
383
+ VELT_NOTIFICATIONS_PANEL_VIEW_ALL_BUTTON: string;
384
+ VELT_NOTIFICATIONS_PANEL_SKELETON: string;
385
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_BUTTON: string;
386
+ VELT_NOTIFICATIONS_PANEL_SETTINGS: string;
387
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_HEADER: string;
388
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_HEADER_TITLE: string;
389
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_TITLE: string;
390
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_DESCRIPTION: string;
391
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_LIST: string;
392
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_TITLE: string;
393
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_DESCRIPTION: string;
394
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_MUTE_ALL_TOGGLE: string;
395
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION: string;
396
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER: string;
397
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_LABEL: string;
398
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_ICON: string;
399
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_TRIGGER_SELECTED_VALUE: string;
400
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT: string;
401
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM: string;
402
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM_LABEL: string;
403
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_ACCORDION_CONTENT_ITEM_ICON: string;
404
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_BACK_BUTTON: string;
405
+ VELT_NOTIFICATIONS_PANEL_SETTINGS_FOOTER: string;
244
406
  VELT_NOTIFICATIONS_HISTORY_PANEL: string;
245
407
  VELT_WIREFRAME: string;
246
408
  VELT_AUTOCOMPLETE: string;
409
+ VELT_AUTOCOMPLETE_PANEL: string;
410
+ VELT_AUTOCOMPLETE_OPTION: string;
411
+ VELT_AUTOCOMPLETE_OPTION_ICON: string;
412
+ VELT_AUTOCOMPLETE_OPTION_NAME: string;
413
+ VELT_AUTOCOMPLETE_OPTION_DESCRIPTION: string;
414
+ VELT_AUTOCOMPLETE_OPTION_ERROR_ICON: string;
415
+ VELT_AUTOCOMPLETE_GROUP_OPTION: string;
416
+ VELT_AUTOCOMPLETE_TOOL: string;
417
+ VELT_AUTOCOMPLETE_EMPTY: string;
247
418
  VELT_AUTOCOMPLETE_CHIP: string;
419
+ VELT_AUTOCOMPLETE_CHIP_TOOLTIP: string;
420
+ VELT_AUTOCOMPLETE_CHIP_TOOLTIP_ICON: string;
421
+ VELT_AUTOCOMPLETE_CHIP_TOOLTIP_NAME: string;
422
+ VELT_AUTOCOMPLETE_CHIP_TOOLTIP_DESCRIPTION: string;
423
+ VELT_AUTOCOMPLETE_CONTEXT_WRAPPER: string;
424
+ VELT_ACTIVITY_LOG: string;
425
+ VELT_ACTIVITY_LOG_HEADER: string;
426
+ VELT_ACTIVITY_LOG_HEADER_TITLE: string;
427
+ VELT_ACTIVITY_LOG_HEADER_CLOSE_BUTTON: string;
428
+ VELT_ACTIVITY_LOG_HEADER_FILTER: string;
429
+ VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER: string;
430
+ VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER_LABEL: string;
431
+ VELT_ACTIVITY_LOG_HEADER_FILTER_TRIGGER_ICON: string;
432
+ VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT: string;
433
+ VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM: string;
434
+ VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM_LABEL: string;
435
+ VELT_ACTIVITY_LOG_HEADER_FILTER_CONTENT_ITEM_ICON: string;
436
+ VELT_ACTIVITY_LOG_LOADING: string;
437
+ VELT_ACTIVITY_LOG_LIST: string;
438
+ VELT_ACTIVITY_LOG_LIST_DATE_GROUP: string;
439
+ VELT_ACTIVITY_LOG_LIST_DATE_GROUP_LABEL: string;
440
+ VELT_ACTIVITY_LOG_LIST_ITEM: string;
441
+ VELT_ACTIVITY_LOG_LIST_ITEM_ICON: string;
442
+ VELT_ACTIVITY_LOG_LIST_ITEM_AVATAR: string;
443
+ VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT: string;
444
+ VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_USER: string;
445
+ VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_ACTION: string;
446
+ VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_TARGET: string;
447
+ VELT_ACTIVITY_LOG_LIST_ITEM_CONTENT_DETAIL: string;
448
+ VELT_ACTIVITY_LOG_LIST_ITEM_TIME: string;
449
+ VELT_ACTIVITY_LOG_LIST_SHOW_MORE: string;
450
+ VELT_ACTIVITY_LOG_EMPTY: string;
451
+ VELT_ACTIVITY_LOG_CONTEXT_WRAPPER: string;
452
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER: string;
453
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_ICON: string;
454
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_TEXT: string;
455
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN: string;
456
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER: string;
457
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_LABEL: string;
458
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST: string;
459
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_ITEM: string;
460
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_AVATAR_LIST_REMAINING_COUNT: string;
461
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_TRIGGER_ICON: string;
462
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT: string;
463
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM: string;
464
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_ICON: string;
465
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_ITEM_LABEL: string;
466
+ VELT_COMMENT_DIALOG_VISIBILITY_BANNER_DROPDOWN_CONTENT_USER_PICKER: string;
248
467
  VELT_COMMENT_COMPOSER: string;
249
468
  VELT_SKELETON_LOADER: string;
250
469
  VELT_SHADOW_DOM_INTERNAL: string;
251
470
  VELT_SINGLE_EDITOR_MODE_PANEL: string;
471
+ VELT_MULTI_THREAD_COMMENT_DIALOG: string;
472
+ VELT_MULTI_THREAD_COMMENT_DIALOG_LIST: string;
473
+ VELT_MULTI_THREAD_COMMENT_DIALOG_PANEL: string;
474
+ VELT_MULTI_THREAD_COMMENT_DIALOG_COMPOSER_CONTAINER: string;
475
+ VELT_MULTI_THREAD_COMMENT_DIALOG_COMMENT_COUNT: string;
476
+ VELT_MULTI_THREAD_COMMENT_DIALOG_EMPTY_PLACEHOLDER: string;
477
+ VELT_MULTI_THREAD_COMMENT_DIALOG_CLOSE_BUTTON: string;
478
+ VELT_MULTI_THREAD_COMMENT_DIALOG_NEW_THREAD_BUTTON: string;
479
+ VELT_MULTI_THREAD_COMMENT_DIALOG_RESET_FILTER_BUTTON: string;
480
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN: string;
481
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_TRIGGER: string;
482
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT: string;
483
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_ALL: string;
484
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_READ: string;
485
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_RESOLVED: string;
486
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_UNREAD: string;
487
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SELECTED_ICON: string;
488
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_DATE: string;
489
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_UNREAD: string;
490
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN: string;
491
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_TRIGGER: string;
492
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT: string;
493
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_READ: string;
494
+ VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_RESOLVED: string;
495
+ VELT_TEXT_COMMENT: string;
496
+ VELT_TEXT_COMMENT_TOOL: string;
497
+ VELT_TEXT_COMMENT_TOOLBAR: string;
498
+ VELT_TEXT_COMMENT_TOOLBAR_COMMENT_ANNOTATION: string;
499
+ VELT_TEXT_COMMENT_TOOLBAR_DIVIDER: string;
500
+ VELT_TEXT_COMMENT_TOOLBAR_COPYWRITER: string;
501
+ VELT_TEXT_COMMENT_TOOLBAR_GENERIC: string;
252
502
  };
253
503
  static ATTRIBUTES: {
254
504
  VELT_COMMENT_CONTAINER: string;
@@ -300,6 +550,7 @@ export declare class Constants {
300
550
  VELT_AREA_PIN_HOST_STATIC: string;
301
551
  VELT_AREA_DISABLED: string;
302
552
  VELT_AREA_PIN_ACTIVE: string;
553
+ VELT_SUGGESTION_TARGET: string;
303
554
  VELT_ONGOING_RECORDING: string;
304
555
  VELT_COMMENT_RECORDING: string;
305
556
  SYNC_VIDEO_PLAYER_ID: string;
@@ -330,6 +581,9 @@ export declare class Constants {
330
581
  VELT_AVATAR_COLOR: string;
331
582
  VELT_COMMENT_PRIORITY_COLOR: string;
332
583
  };
584
+ static BODY_CLASSES: {
585
+ VELT_PIN_DRAGGING: string;
586
+ };
333
587
  static INJECTION_ATTRIBUTES: {
334
588
  /**
335
589
  * @deprecated Use VELT_AVATAR_IMG instead
@@ -366,6 +620,7 @@ export declare class Constants {
366
620
  VELT_VERSION: string;
367
621
  VELT_ADVANCED_QUERIES: string;
368
622
  VELT_COMMENT_VIEWS_MIGRATED: string;
623
+ VELT_AUTH_PROXY_HOST: string;
369
624
  };
370
625
  static NON_NESTABLE_ELEMENTS: {
371
626
  [tag: string]: boolean;