@veltdev/types-dev 6.0.7 → 6.0.8-beta.1
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
|
*/
|
|
@@ -1277,6 +1338,19 @@ export declare class CommentElement {
|
|
|
1277
1338
|
*/
|
|
1278
1339
|
public disableDraftMode: () => void;
|
|
1279
1340
|
|
|
1341
|
+
/**
|
|
1342
|
+
* To enable the draft-confirmation popup: before Velt persists an unsent composer as a
|
|
1343
|
+
* draft, ask the user whether to keep or delete it. Requires draft mode to also be
|
|
1344
|
+
* enabled. Defaults to disabled.
|
|
1345
|
+
*/
|
|
1346
|
+
public enableDraftConfirmation: () => void;
|
|
1347
|
+
|
|
1348
|
+
/**
|
|
1349
|
+
* To disable the draft-confirmation popup. Unsent composer content is then persisted
|
|
1350
|
+
* as a draft silently, which is the default behaviour.
|
|
1351
|
+
*/
|
|
1352
|
+
public disableDraftConfirmation: () => void;
|
|
1353
|
+
|
|
1280
1354
|
/**
|
|
1281
1355
|
* To enable filter comments on dom
|
|
1282
1356
|
*/
|
|
@@ -2314,6 +2388,15 @@ export declare class CommentElement {
|
|
|
2314
2388
|
* @returns Observable<CommentAnnotation | null>
|
|
2315
2389
|
*/
|
|
2316
2390
|
private _getCommentAnnotationById;
|
|
2391
|
+
private _getCommentDialogConfig;
|
|
2392
|
+
private _getCommentBubbleConfig;
|
|
2393
|
+
private _getCommentPinConfig;
|
|
2394
|
+
private _getCommentsToolConfig;
|
|
2395
|
+
private _getMultiThreadDialogConfig;
|
|
2396
|
+
private _getSidebarButtonConfig;
|
|
2397
|
+
private _getTextCommentConfig;
|
|
2398
|
+
private _getInlineCommentsSectionConfig;
|
|
2399
|
+
private _getCommentSidebarConfig;
|
|
2317
2400
|
|
|
2318
2401
|
/**
|
|
2319
2402
|
* To enable collapsed comment
|
|
@@ -2628,6 +2711,16 @@ export declare class CommentElement {
|
|
|
2628
2711
|
*/
|
|
2629
2712
|
private _disableDraftMode;
|
|
2630
2713
|
|
|
2714
|
+
/**
|
|
2715
|
+
* To enable the draft-confirmation popup
|
|
2716
|
+
*/
|
|
2717
|
+
private _enableDraftConfirmation;
|
|
2718
|
+
|
|
2719
|
+
/**
|
|
2720
|
+
* To disable the draft-confirmation popup
|
|
2721
|
+
*/
|
|
2722
|
+
private _disableDraftConfirmation;
|
|
2723
|
+
|
|
2631
2724
|
/**
|
|
2632
2725
|
* To enable filter comments on dom
|
|
2633
2726
|
*/
|
|
@@ -2811,4 +2904,5 @@ export declare class CommentElement {
|
|
|
2811
2904
|
* To disable pin drag
|
|
2812
2905
|
*/
|
|
2813
2906
|
private _disablePinDrag;
|
|
2907
|
+
|
|
2814
2908
|
}
|
|
@@ -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.1",
|
|
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": [
|