@veltdev/types-dev 6.0.6 → 6.0.7-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
|
}
|
|
@@ -955,6 +955,67 @@ export declare class CommentElement {
|
|
|
955
955
|
*/
|
|
956
956
|
public getCommentAnnotationById: (config: { annotationId: string, documentId?: string }) => Observable<CommentAnnotation | null>;
|
|
957
957
|
|
|
958
|
+
/**
|
|
959
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
960
|
+
* @param annotationId Annotation Id
|
|
961
|
+
* @returns Observable<any>
|
|
962
|
+
*/
|
|
963
|
+
public getCommentDialogConfig: (config: { annotationId: string }) => Observable<any>;
|
|
964
|
+
|
|
965
|
+
/**
|
|
966
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
967
|
+
* @param contextId Context Id (defaults to 'default')
|
|
968
|
+
* @returns Observable<any>
|
|
969
|
+
*/
|
|
970
|
+
public getCommentBubbleConfig: (config: { contextId?: string }) => Observable<any>;
|
|
971
|
+
|
|
972
|
+
/**
|
|
973
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
974
|
+
* @param contextId Context Id (defaults to 'default')
|
|
975
|
+
* @returns Observable<any>
|
|
976
|
+
*/
|
|
977
|
+
public getCommentPinConfig: (config: { contextId?: string }) => Observable<any>;
|
|
978
|
+
|
|
979
|
+
/**
|
|
980
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
981
|
+
* @param contextId Context Id (defaults to 'default')
|
|
982
|
+
* @returns Observable<any>
|
|
983
|
+
*/
|
|
984
|
+
public getCommentsToolConfig: (config: { contextId?: string }) => Observable<any>;
|
|
985
|
+
|
|
986
|
+
/**
|
|
987
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
988
|
+
* @param contextId Context Id (defaults to 'default')
|
|
989
|
+
* @returns Observable<any>
|
|
990
|
+
*/
|
|
991
|
+
public getMultiThreadDialogConfig: (config: { contextId?: string }) => Observable<any>;
|
|
992
|
+
|
|
993
|
+
/**
|
|
994
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
995
|
+
* @param contextId Context Id (defaults to 'default')
|
|
996
|
+
* @returns Observable<any>
|
|
997
|
+
*/
|
|
998
|
+
public getSidebarButtonConfig: (config: { contextId?: string }) => Observable<any>;
|
|
999
|
+
|
|
1000
|
+
/**
|
|
1001
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
1002
|
+
* @param contextId Context Id (defaults to 'default')
|
|
1003
|
+
* @returns Observable<any>
|
|
1004
|
+
*/
|
|
1005
|
+
public getTextCommentConfig: (config: { contextId?: string }) => Observable<any>;
|
|
1006
|
+
|
|
1007
|
+
/**
|
|
1008
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
1009
|
+
* @returns Observable<any>
|
|
1010
|
+
*/
|
|
1011
|
+
public getInlineCommentsSectionConfig: () => Observable<any>;
|
|
1012
|
+
|
|
1013
|
+
/**
|
|
1014
|
+
* @experimental Read this feature's live derived config. Read-only; its shape is internal and may change between releases.
|
|
1015
|
+
* @returns Observable<any>
|
|
1016
|
+
*/
|
|
1017
|
+
public getCommentSidebarConfig: () => Observable<any>;
|
|
1018
|
+
|
|
958
1019
|
/**
|
|
959
1020
|
* To enable collapsed comment
|
|
960
1021
|
*/
|
|
@@ -2314,6 +2375,15 @@ export declare class CommentElement {
|
|
|
2314
2375
|
* @returns Observable<CommentAnnotation | null>
|
|
2315
2376
|
*/
|
|
2316
2377
|
private _getCommentAnnotationById;
|
|
2378
|
+
private _getCommentDialogConfig;
|
|
2379
|
+
private _getCommentBubbleConfig;
|
|
2380
|
+
private _getCommentPinConfig;
|
|
2381
|
+
private _getCommentsToolConfig;
|
|
2382
|
+
private _getMultiThreadDialogConfig;
|
|
2383
|
+
private _getSidebarButtonConfig;
|
|
2384
|
+
private _getTextCommentConfig;
|
|
2385
|
+
private _getInlineCommentsSectionConfig;
|
|
2386
|
+
private _getCommentSidebarConfig;
|
|
2317
2387
|
|
|
2318
2388
|
/**
|
|
2319
2389
|
* To enable collapsed comment
|
|
@@ -2811,4 +2881,5 @@ export declare class CommentElement {
|
|
|
2811
2881
|
* To disable pin drag
|
|
2812
2882
|
*/
|
|
2813
2883
|
private _disablePinDrag;
|
|
2884
|
+
|
|
2814
2885
|
}
|
|
@@ -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.7-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": [
|