@veltdev/sdk-staging 5.0.2-beta.25 → 5.0.2-beta.27
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/client/snippyly.model.d.ts +10 -0
- package/app/models/data/document.data.model.d.ts +2 -0
- package/app/utils/constants.d.ts +27 -0
- package/package.json +1 -1
- package/velt.js +109 -109
|
@@ -408,6 +408,16 @@ export declare class Snippyly {
|
|
|
408
408
|
*/
|
|
409
409
|
disableSafeEval: () => void;
|
|
410
410
|
|
|
411
|
+
/**
|
|
412
|
+
* Enable Firestore persistent cache for offline support.
|
|
413
|
+
*/
|
|
414
|
+
enableFirestorePersistentCache: (config?: { ha?: boolean }) => void;
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* Disable Firestore persistent cache.
|
|
418
|
+
*/
|
|
419
|
+
disableFirestorePersistentCache: (config?: { ha?: boolean }) => void;
|
|
420
|
+
|
|
411
421
|
/**
|
|
412
422
|
* To reset the button toggle map.
|
|
413
423
|
*/
|
|
@@ -16,6 +16,8 @@ export interface SetDocumentsRequestOptions {
|
|
|
16
16
|
locationId?: string;
|
|
17
17
|
rootDocumentId?: string;
|
|
18
18
|
context?: SetDocumentsContext;
|
|
19
|
+
debounceTime?: number;
|
|
20
|
+
optimisticPermissions?: boolean;
|
|
19
21
|
}
|
|
20
22
|
export interface UpdateDocumentsRequest<T = unknown> {
|
|
21
23
|
organizationId?: string;
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -208,6 +208,33 @@ export declare class Constants {
|
|
|
208
208
|
VELT_TEXT_HIGHLIGHT: string;
|
|
209
209
|
VELT_COMMENT_TEXT_PORTAL: string;
|
|
210
210
|
VELT_COMMENTS_SIDEBAR: string;
|
|
211
|
+
VELT_COMMENTS_SIDEBAR_V2: string;
|
|
212
|
+
VELT_COMMENT_SIDEBAR_SKELETON_V2: string;
|
|
213
|
+
VELT_COMMENT_SIDEBAR_PANEL_V2: string;
|
|
214
|
+
VELT_COMMENT_SIDEBAR_LIST_V2: string;
|
|
215
|
+
VELT_COMMENT_SIDEBAR_LIST_ITEM_V2: string;
|
|
216
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_V2: string;
|
|
217
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_V2: string;
|
|
218
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_CATEGORY_CONTENT_V2: string;
|
|
219
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_V2: string;
|
|
220
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_INDICATOR_V2: string;
|
|
221
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL_V2: string;
|
|
222
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_V2: string;
|
|
223
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_TRIGGER_V2: string;
|
|
224
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_V2: string;
|
|
225
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_READ_V2: string;
|
|
226
|
+
VELT_COMMENT_SIDEBAR_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_RESOLVED_V2: string;
|
|
227
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_V2: string;
|
|
228
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_TRIGGER_V2: string;
|
|
229
|
+
VELT_COMMENT_SIDEBAR_FILTER_DROPDOWN_CONTENT_V2: string;
|
|
230
|
+
VELT_COMMENT_SIDEBAR_HEADER_V2: string;
|
|
231
|
+
VELT_COMMENT_SIDEBAR_CLOSE_BUTTON_V2: string;
|
|
232
|
+
VELT_COMMENT_SIDEBAR_EMPTY_PLACEHOLDER_V2: string;
|
|
233
|
+
VELT_COMMENT_SIDEBAR_RESET_FILTER_BUTTON_V2: string;
|
|
234
|
+
VELT_COMMENT_SIDEBAR_PAGE_MODE_COMPOSER_V2: string;
|
|
235
|
+
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_V2: string;
|
|
236
|
+
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_BACK_BUTTON_V2: string;
|
|
237
|
+
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_DIALOG_CONTAINER_V2: string;
|
|
211
238
|
VELT_COMMENT_BUBBLE: string;
|
|
212
239
|
VELT_COMMENT_THREAD: string;
|
|
213
240
|
VELT_COMMENT_PIN: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk-staging",
|
|
3
|
-
"version": "5.0.2-beta.
|
|
3
|
+
"version": "5.0.2-beta.27",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|