@veltdev/types-dev 6.0.7 → 6.0.8-beta.2
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.
|
@@ -29,4 +29,13 @@ export declare class ActivityElement {
|
|
|
29
29
|
* Create a new activity record.
|
|
30
30
|
*/
|
|
31
31
|
private _createActivity;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
35
|
+
* @returns Observable<any>
|
|
36
|
+
*/
|
|
37
|
+
public getActivityLogConfig: () => Observable<any>;
|
|
38
|
+
|
|
39
|
+
private _getActivityLogConfig;
|
|
40
|
+
|
|
32
41
|
}
|
|
@@ -21,4 +21,14 @@ export declare class AutocompleteElement {
|
|
|
21
21
|
* To get callback on autocomplete chip click
|
|
22
22
|
*/
|
|
23
23
|
private _onAutocompleteChipClick;
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
27
|
+
* @param autocompleteId Autocomplete Id
|
|
28
|
+
* @returns Observable<any>
|
|
29
|
+
*/
|
|
30
|
+
public getAutocompleteConfig: (config: { autocompleteId: string }) => Observable<any>;
|
|
31
|
+
|
|
32
|
+
private _getAutocompleteConfig;
|
|
33
|
+
|
|
24
34
|
}
|
|
@@ -742,6 +742,15 @@ export declare class CommentElement {
|
|
|
742
742
|
*/
|
|
743
743
|
public showResolvedCommentsOnDom: () => void;
|
|
744
744
|
|
|
745
|
+
/**
|
|
746
|
+
* Stop downloading resolved (terminal-status) comments on the initial fetch. They load on demand
|
|
747
|
+
* the first time the user asks to see them. Default: disabled.
|
|
748
|
+
*/
|
|
749
|
+
public enableLazyLoadResolvedComments: () => void;
|
|
750
|
+
|
|
751
|
+
/** Re-enable fetching resolved comments on the initial fetch. Takes effect immediately. */
|
|
752
|
+
public disableLazyLoadResolvedComments: () => void;
|
|
753
|
+
|
|
745
754
|
/**
|
|
746
755
|
* To hide resolved comments on DOM
|
|
747
756
|
*/
|
|
@@ -955,6 +964,67 @@ export declare class CommentElement {
|
|
|
955
964
|
*/
|
|
956
965
|
public getCommentAnnotationById: (config: { annotationId: string, documentId?: string }) => Observable<CommentAnnotation | null>;
|
|
957
966
|
|
|
967
|
+
/**
|
|
968
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
969
|
+
* @param annotationId Annotation Id
|
|
970
|
+
* @returns Observable<any>
|
|
971
|
+
*/
|
|
972
|
+
public getCommentDialogConfig: (config: { annotationId: string }) => Observable<any>;
|
|
973
|
+
|
|
974
|
+
/**
|
|
975
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
976
|
+
* @param contextId Context Id (defaults to 'default')
|
|
977
|
+
* @returns Observable<any>
|
|
978
|
+
*/
|
|
979
|
+
public getCommentBubbleConfig: (config: { contextId?: string }) => Observable<any>;
|
|
980
|
+
|
|
981
|
+
/**
|
|
982
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
983
|
+
* @param contextId Context Id (defaults to 'default')
|
|
984
|
+
* @returns Observable<any>
|
|
985
|
+
*/
|
|
986
|
+
public getCommentPinConfig: (config: { contextId?: string }) => Observable<any>;
|
|
987
|
+
|
|
988
|
+
/**
|
|
989
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
990
|
+
* @param contextId Context Id (defaults to 'default')
|
|
991
|
+
* @returns Observable<any>
|
|
992
|
+
*/
|
|
993
|
+
public getCommentsToolConfig: (config: { contextId?: string }) => Observable<any>;
|
|
994
|
+
|
|
995
|
+
/**
|
|
996
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
997
|
+
* @param contextId Context Id (defaults to 'default')
|
|
998
|
+
* @returns Observable<any>
|
|
999
|
+
*/
|
|
1000
|
+
public getMultiThreadDialogConfig: (config: { contextId?: string }) => Observable<any>;
|
|
1001
|
+
|
|
1002
|
+
/**
|
|
1003
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
1004
|
+
* @param contextId Context Id (defaults to 'default')
|
|
1005
|
+
* @returns Observable<any>
|
|
1006
|
+
*/
|
|
1007
|
+
public getSidebarButtonConfig: (config: { contextId?: string }) => Observable<any>;
|
|
1008
|
+
|
|
1009
|
+
/**
|
|
1010
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
1011
|
+
* @param contextId Context Id (defaults to 'default')
|
|
1012
|
+
* @returns Observable<any>
|
|
1013
|
+
*/
|
|
1014
|
+
public getTextCommentConfig: (config: { contextId?: string }) => Observable<any>;
|
|
1015
|
+
|
|
1016
|
+
/**
|
|
1017
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
1018
|
+
* @returns Observable<any>
|
|
1019
|
+
*/
|
|
1020
|
+
public getInlineCommentsSectionConfig: () => Observable<any>;
|
|
1021
|
+
|
|
1022
|
+
/**
|
|
1023
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
1024
|
+
* @returns Observable<any>
|
|
1025
|
+
*/
|
|
1026
|
+
public getCommentSidebarConfig: () => Observable<any>;
|
|
1027
|
+
|
|
958
1028
|
/**
|
|
959
1029
|
* To enable collapsed comment
|
|
960
1030
|
*/
|
|
@@ -1277,6 +1347,19 @@ export declare class CommentElement {
|
|
|
1277
1347
|
*/
|
|
1278
1348
|
public disableDraftMode: () => void;
|
|
1279
1349
|
|
|
1350
|
+
/**
|
|
1351
|
+
* To enable the draft-confirmation popup: before Velt persists an unsent composer as a
|
|
1352
|
+
* draft, ask the user whether to keep or delete it. Requires draft mode to also be
|
|
1353
|
+
* enabled. Defaults to disabled.
|
|
1354
|
+
*/
|
|
1355
|
+
public enableDraftConfirmation: () => void;
|
|
1356
|
+
|
|
1357
|
+
/**
|
|
1358
|
+
* To disable the draft-confirmation popup. Unsent composer content is then persisted
|
|
1359
|
+
* as a draft silently, which is the default behaviour.
|
|
1360
|
+
*/
|
|
1361
|
+
public disableDraftConfirmation: () => void;
|
|
1362
|
+
|
|
1280
1363
|
/**
|
|
1281
1364
|
* To enable filter comments on dom
|
|
1282
1365
|
*/
|
|
@@ -2108,6 +2191,15 @@ export declare class CommentElement {
|
|
|
2108
2191
|
*/
|
|
2109
2192
|
private _disableChangeDetectionInCommentMode;
|
|
2110
2193
|
|
|
2194
|
+
/**
|
|
2195
|
+
* Stop downloading resolved (terminal-status) comments on the initial fetch. They load on demand
|
|
2196
|
+
* the first time the user asks to see them. Default: disabled.
|
|
2197
|
+
*/
|
|
2198
|
+
private _enableLazyLoadResolvedComments;
|
|
2199
|
+
|
|
2200
|
+
/** Re-enable fetching resolved comments on the initial fetch. Takes effect immediately. */
|
|
2201
|
+
private _disableLazyLoadResolvedComments;
|
|
2202
|
+
|
|
2111
2203
|
/**
|
|
2112
2204
|
* To show resolved comments on DOM
|
|
2113
2205
|
*/
|
|
@@ -2314,6 +2406,15 @@ export declare class CommentElement {
|
|
|
2314
2406
|
* @returns Observable<CommentAnnotation | null>
|
|
2315
2407
|
*/
|
|
2316
2408
|
private _getCommentAnnotationById;
|
|
2409
|
+
private _getCommentDialogConfig;
|
|
2410
|
+
private _getCommentBubbleConfig;
|
|
2411
|
+
private _getCommentPinConfig;
|
|
2412
|
+
private _getCommentsToolConfig;
|
|
2413
|
+
private _getMultiThreadDialogConfig;
|
|
2414
|
+
private _getSidebarButtonConfig;
|
|
2415
|
+
private _getTextCommentConfig;
|
|
2416
|
+
private _getInlineCommentsSectionConfig;
|
|
2417
|
+
private _getCommentSidebarConfig;
|
|
2317
2418
|
|
|
2318
2419
|
/**
|
|
2319
2420
|
* To enable collapsed comment
|
|
@@ -2628,6 +2729,16 @@ export declare class CommentElement {
|
|
|
2628
2729
|
*/
|
|
2629
2730
|
private _disableDraftMode;
|
|
2630
2731
|
|
|
2732
|
+
/**
|
|
2733
|
+
* To enable the draft-confirmation popup
|
|
2734
|
+
*/
|
|
2735
|
+
private _enableDraftConfirmation;
|
|
2736
|
+
|
|
2737
|
+
/**
|
|
2738
|
+
* To disable the draft-confirmation popup
|
|
2739
|
+
*/
|
|
2740
|
+
private _disableDraftConfirmation;
|
|
2741
|
+
|
|
2631
2742
|
/**
|
|
2632
2743
|
* To enable filter comments on dom
|
|
2633
2744
|
*/
|
|
@@ -2811,4 +2922,5 @@ export declare class CommentElement {
|
|
|
2811
2922
|
* To disable pin drag
|
|
2812
2923
|
*/
|
|
2813
2924
|
private _disablePinDrag;
|
|
2925
|
+
|
|
2814
2926
|
}
|
|
@@ -285,4 +285,21 @@ export declare class NotificationElement {
|
|
|
285
285
|
* Subscribe to notification events
|
|
286
286
|
*/
|
|
287
287
|
private _on;
|
|
288
|
+
|
|
289
|
+
/**
|
|
290
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
291
|
+
* @returns Observable<any>
|
|
292
|
+
*/
|
|
293
|
+
public getNotificationsPanelConfig: () => Observable<any>;
|
|
294
|
+
|
|
295
|
+
/**
|
|
296
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
297
|
+
* @returns Observable<any>
|
|
298
|
+
*/
|
|
299
|
+
public getNotificationsToolConfig: () => Observable<any>;
|
|
300
|
+
|
|
301
|
+
private _getNotificationsPanelConfig;
|
|
302
|
+
|
|
303
|
+
private _getNotificationsToolConfig;
|
|
304
|
+
|
|
288
305
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/types-dev",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.8-beta.2",
|
|
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": [
|