@veltdev/react 3.0.67 → 3.0.68

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.
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.67";
1
+ export declare const VELT_SDK_VERSION = "3.0.68";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
@@ -1,42 +1,42 @@
1
- import { Attachment, RecordedData } from "@veltdev/types";
1
+ import { AddAttachmentConfig, AddAttachmentResponse, AddCommentAnnotationConfig, AddCommentAnnotationEvent, AddCommentConfig, AddCommentEvent, AddReactionConfig, AddReactionEvent, ApproveCommentAnnotationConfig, ApproveCommentAnnotationEvent, Attachment, CopyLinkConfig, CopyLinkEvent, DeleteAttachmentConfig, DeleteAttachmentEvent, DeleteCommentAnnotationConfig, DeleteCommentAnnotationEvent, DeleteCommentConfig, DeleteCommentEvent, DeleteReactionConfig, DeleteReactionEvent, DeleteRecordingConfig, DeleteRecordingEvent, GetAttachmentConfig, GetCommentConfig, GetLinkConfig, GetLinkEvent, GetRecordingConfig, RecordedData, RejectCommentAnnotationConfig, RejectCommentAnnotationEvent, ResolveCommentAnnotationConfig, ToggleReactionConfig, ToggleReactionEvent, UpdateAccessConfig, UpdateAccessEvent, UpdateCommentConfig, UpdateCommentEvent, UpdatePriorityConfig, UpdatePriorityEvent, UpdateStatusConfig, UpdateStatusEvent } from "@veltdev/types";
2
2
  export declare function useAddCommentAnnotation(): {
3
- addCommentAnnotation: (config: AddCommentAnnotationConfig) => Promise<any>;
3
+ addCommentAnnotation: (config: AddCommentAnnotationConfig) => Promise<AddCommentAnnotationEvent | null>;
4
4
  };
5
5
  export declare function useApproveCommentAnnotation(): {
6
- approveCommentAnnotation: (config: ApproveCommentAnnotationConfig) => Promise<any>;
6
+ approveCommentAnnotation: (config: ApproveCommentAnnotationConfig) => Promise<ApproveCommentAnnotationEvent | null>;
7
7
  };
8
8
  export declare function useRejectCommentAnnotation(): {
9
- rejectCommentAnnotation: (config: RejectCommentAnnotationConfig) => Promise<any>;
9
+ rejectCommentAnnotation: (config: RejectCommentAnnotationConfig) => Promise<RejectCommentAnnotationEvent | null>;
10
10
  };
11
11
  export declare function useDeleteCommentAnnotation(): {
12
- deleteCommentAnnotation: (config: DeleteCommentAnnotationConfig) => Promise<any>;
12
+ deleteCommentAnnotation: (config: DeleteCommentAnnotationConfig) => Promise<DeleteCommentAnnotationEvent | null>;
13
13
  };
14
14
  export declare function useUpdatePriority(): {
15
- updatePriority: (config: UpdatePriorityConfig) => Promise<any>;
15
+ updatePriority: (config: UpdatePriorityConfig) => Promise<UpdatePriorityEvent | null>;
16
16
  };
17
17
  export declare function useUpdateStatus(): {
18
- updateStatus: (config: UpdateStatusConfig) => Promise<any>;
18
+ updateStatus: (config: UpdateStatusConfig) => Promise<UpdateStatusEvent | null>;
19
19
  };
20
20
  export declare function useUpdateAccess(): {
21
- updateAccess: (config: UpdateAccessConfig) => Promise<any>;
21
+ updateAccess: (config: UpdateAccessConfig) => Promise<UpdateAccessEvent | null>;
22
22
  };
23
23
  export declare function useResolveCommentAnnotation(): {
24
24
  resolveCommentAnnotation: (config: ResolveCommentAnnotationConfig) => Promise<any>;
25
25
  };
26
26
  export declare function useGetLink(): {
27
- getLink: (config: GetLinkConfig) => Promise<any>;
27
+ getLink: (config: GetLinkConfig) => Promise<GetLinkEvent | null>;
28
28
  };
29
29
  export declare function useCopyLink(): {
30
- copyLink: (config: CopyLinkConfig) => Promise<any>;
30
+ copyLink: (config: CopyLinkConfig) => Promise<CopyLinkEvent | null>;
31
31
  };
32
32
  export declare function useAddComment(): {
33
- addComment: (config: AddCommentConfig) => Promise<any>;
33
+ addComment: (config: AddCommentConfig) => Promise<AddCommentEvent | null>;
34
34
  };
35
35
  export declare function useUpdateComment(): {
36
- updateComment: (config: UpdateCommentConfig) => Promise<any>;
36
+ updateComment: (config: UpdateCommentConfig) => Promise<UpdateCommentEvent | null>;
37
37
  };
38
38
  export declare function useDeleteComment(): {
39
- deleteComment: (config: DeleteCommentConfig) => Promise<any>;
39
+ deleteComment: (config: DeleteCommentConfig) => Promise<DeleteCommentEvent | null>;
40
40
  };
41
41
  export declare function useGetComment(): {
42
42
  getComment: (config: GetCommentConfig) => Promise<Comment[]>;
@@ -45,23 +45,24 @@ export declare function useAddAttachment(): {
45
45
  addAttachment: (config: AddAttachmentConfig) => Promise<AddAttachmentResponse[] | null>;
46
46
  };
47
47
  export declare function useDeleteAttachment(): {
48
- deleteAttachment: (config: DeleteAttachmentConfig) => Promise<any>;
48
+ deleteAttachment: (config: DeleteAttachmentConfig) => Promise<DeleteAttachmentEvent | null>;
49
49
  };
50
50
  export declare function useGetAttachment(): {
51
51
  getAttachment: (config: GetAttachmentConfig) => Promise<Attachment[] | null>;
52
52
  };
53
53
  export declare function useDeleteRecording(): {
54
- deleteRecording: (config: DeleteRecordingConfig) => Promise<any>;
54
+ deleteRecording: (config: DeleteRecordingConfig) => Promise<DeleteRecordingEvent | null>;
55
55
  };
56
56
  export declare function useGetRecording(): {
57
57
  getRecording: (config: GetRecordingConfig) => Promise<RecordedData[] | null>;
58
58
  };
59
59
  export declare function useAddReaction(): {
60
- addReaction: (config: AddReactionConfig) => Promise<any>;
60
+ addReaction: (config: AddReactionConfig) => Promise<AddReactionEvent | null>;
61
61
  };
62
62
  export declare function useDeleteReaction(): {
63
- deleteReaction: (config: DeleteReactionConfig) => Promise<any>;
63
+ deleteReaction: (config: DeleteReactionConfig) => Promise<DeleteReactionEvent | null>;
64
64
  };
65
65
  export declare function useToggleReaction(): {
66
- toggleReaction: (config: ToggleReactionConfig) => Promise<any>;
66
+ toggleReaction: (config: ToggleReactionConfig) => Promise<ToggleReactionEvent | null>;
67
67
  };
68
+ export declare function useCommentActionCallback(action: string): any;
@@ -1,5 +1,6 @@
1
1
  export { useSetLocation, useSetDocument, useSetDocumentId, useUnsetDocumentId, useIdentify, useClient, useVeltInitState, } from './Client';
2
2
  export { useCommentUtils, useCommentAnnotations, useCommentAddHandler, useCommentModeState, useCommentUpdateHandler, useCommentDialogSidebarClickHandler, useCommentSelectionChangeHandler, useUnreadCommentCountByAnnotationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountOnCurrentDocument, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentCountByLocationId, useCommentCopyLinkHandler, useCommentAnnotationById, useCommentSidebarActionButtonClick, useCommentSidebarInit, useCommentSidebarData, } from './CommentElement';
3
+ export { useAddAttachment, useDeleteAttachment, useGetAttachment, useDeleteRecording, useGetRecording, useAddReaction, useDeleteReaction, useToggleReaction, useAddComment, useUpdateComment, useDeleteComment, useAddCommentAnnotation, useDeleteCommentAnnotation, useApproveCommentAnnotation, useCopyLink, useGetComment, useGetLink, useRejectCommentAnnotation, useResolveCommentAnnotation, useUpdateAccess, useUpdatePriority, useUpdateStatus, useCommentActionCallback, } from './CommentActions';
3
4
  export { useCursorUtils, useCursorUsers, } from './CursorElement';
4
5
  export { useHuddleUtils, } from './HuddleElement';
5
6
  export { useLiveStateSyncUtils, useLiveStateData, useSetLiveStateData, useUserEditorState, useEditor, useEditorAccessTimer, useEditorAccessRequestHandler, useServerConnectionStateChangeHandler, useLiveState, } from './LiveStateSyncElement';
package/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import React, { createContext, useContext, useState, useEffect, useRef } from 'react';
1
+ import React, { createContext, useContext, useState, useEffect, useRef, useMemo } from 'react';
2
2
 
3
3
  /******************************************************************************
4
4
  Copyright (c) Microsoft Corporation.
@@ -132,7 +132,7 @@ var loadVelt = function (callback, version, staging, develop, proxyDomain) {
132
132
  }
133
133
  };
134
134
 
135
- var VELT_SDK_VERSION = '3.0.67';
135
+ var VELT_SDK_VERSION = '3.0.68';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -4707,6 +4707,297 @@ function useCommentSidebarData() {
4707
4707
  return data;
4708
4708
  }
4709
4709
 
4710
+ function useAddCommentAnnotation() {
4711
+ var commentElement = useCommentUtils();
4712
+ return {
4713
+ addCommentAnnotation: function (config) {
4714
+ return new Promise(function (resolve, reject) {
4715
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.addCommentAnnotation))
4716
+ return reject(new Error('Velt SDK is not initialized.'));
4717
+ commentElement.addCommentAnnotation(config).then(resolve).catch(reject);
4718
+ });
4719
+ }
4720
+ };
4721
+ }
4722
+ function useApproveCommentAnnotation() {
4723
+ var commentElement = useCommentUtils();
4724
+ return {
4725
+ approveCommentAnnotation: function (config) {
4726
+ return new Promise(function (resolve, reject) {
4727
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.approveCommentAnnotation))
4728
+ return reject(new Error('Velt SDK is not initialized.'));
4729
+ commentElement.approveCommentAnnotation(config).then(resolve).catch(reject);
4730
+ });
4731
+ }
4732
+ };
4733
+ }
4734
+ function useRejectCommentAnnotation() {
4735
+ var commentElement = useCommentUtils();
4736
+ return {
4737
+ rejectCommentAnnotation: function (config) {
4738
+ return new Promise(function (resolve, reject) {
4739
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.rejectCommentAnnotation))
4740
+ return reject(new Error('Velt SDK is not initialized.'));
4741
+ commentElement.rejectCommentAnnotation(config).then(resolve).catch(reject);
4742
+ });
4743
+ }
4744
+ };
4745
+ }
4746
+ function useDeleteCommentAnnotation() {
4747
+ var commentElement = useCommentUtils();
4748
+ return {
4749
+ deleteCommentAnnotation: function (config) {
4750
+ return new Promise(function (resolve, reject) {
4751
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.deleteCommentAnnotation))
4752
+ return reject(new Error('Velt SDK is not initialized.'));
4753
+ commentElement.deleteCommentAnnotation(config).then(resolve).catch(reject);
4754
+ });
4755
+ }
4756
+ };
4757
+ }
4758
+ function useUpdatePriority() {
4759
+ var commentElement = useCommentUtils();
4760
+ return {
4761
+ updatePriority: function (config) {
4762
+ return new Promise(function (resolve, reject) {
4763
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.updatePriority))
4764
+ return reject(new Error('Velt SDK is not initialized.'));
4765
+ commentElement.updatePriority(config).then(resolve).catch(reject);
4766
+ });
4767
+ }
4768
+ };
4769
+ }
4770
+ function useUpdateStatus() {
4771
+ var commentElement = useCommentUtils();
4772
+ return {
4773
+ updateStatus: function (config) {
4774
+ return new Promise(function (resolve, reject) {
4775
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.updateStatus))
4776
+ return reject(new Error('Velt SDK is not initialized.'));
4777
+ commentElement.updateStatus(config).then(resolve).catch(reject);
4778
+ });
4779
+ }
4780
+ };
4781
+ }
4782
+ function useUpdateAccess() {
4783
+ var commentElement = useCommentUtils();
4784
+ return {
4785
+ updateAccess: function (config) {
4786
+ return new Promise(function (resolve, reject) {
4787
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.updateAccess))
4788
+ return reject(new Error('Velt SDK is not initialized.'));
4789
+ commentElement.updateAccess(config).then(resolve).catch(reject);
4790
+ });
4791
+ }
4792
+ };
4793
+ }
4794
+ function useResolveCommentAnnotation() {
4795
+ var commentElement = useCommentUtils();
4796
+ return {
4797
+ resolveCommentAnnotation: function (config) {
4798
+ return new Promise(function (resolve, reject) {
4799
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.resolveCommentAnnotation))
4800
+ return reject(new Error('Velt SDK is not initialized.'));
4801
+ commentElement.resolveCommentAnnotation(config).then(resolve).catch(reject);
4802
+ });
4803
+ }
4804
+ };
4805
+ }
4806
+ function useGetLink() {
4807
+ var commentElement = useCommentUtils();
4808
+ return {
4809
+ getLink: function (config) {
4810
+ return new Promise(function (resolve, reject) {
4811
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.getLink))
4812
+ return reject(new Error('Velt SDK is not initialized.'));
4813
+ commentElement.getLink(config).then(resolve).catch(reject);
4814
+ });
4815
+ }
4816
+ };
4817
+ }
4818
+ function useCopyLink() {
4819
+ var commentElement = useCommentUtils();
4820
+ return {
4821
+ copyLink: function (config) {
4822
+ return new Promise(function (resolve, reject) {
4823
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.copyLink))
4824
+ return reject(new Error('Velt SDK is not initialized.'));
4825
+ commentElement.copyLink(config).then(resolve).catch(reject);
4826
+ });
4827
+ }
4828
+ };
4829
+ }
4830
+ function useAddComment() {
4831
+ var commentElement = useCommentUtils();
4832
+ return {
4833
+ addComment: function (config) {
4834
+ return new Promise(function (resolve, reject) {
4835
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.addComment))
4836
+ return reject(new Error('Velt SDK is not initialized.'));
4837
+ commentElement.addComment(config).then(resolve).catch(reject);
4838
+ });
4839
+ }
4840
+ };
4841
+ }
4842
+ function useUpdateComment() {
4843
+ var commentElement = useCommentUtils();
4844
+ return {
4845
+ updateComment: function (config) {
4846
+ return new Promise(function (resolve, reject) {
4847
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.updateComment))
4848
+ return reject(new Error('Velt SDK is not initialized.'));
4849
+ commentElement.updateComment(config).then(resolve).catch(reject);
4850
+ });
4851
+ }
4852
+ };
4853
+ }
4854
+ function useDeleteComment() {
4855
+ var commentElement = useCommentUtils();
4856
+ return {
4857
+ deleteComment: function (config) {
4858
+ return new Promise(function (resolve, reject) {
4859
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.deleteComment))
4860
+ return reject(new Error('Velt SDK is not initialized.'));
4861
+ commentElement.deleteComment(config).then(resolve).catch(reject);
4862
+ });
4863
+ }
4864
+ };
4865
+ }
4866
+ function useGetComment() {
4867
+ var commentElement = useCommentUtils();
4868
+ return {
4869
+ getComment: function (config) {
4870
+ return new Promise(function (resolve, reject) {
4871
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.getComment))
4872
+ return reject(new Error('Velt SDK is not initialized.'));
4873
+ commentElement.getComment(config).then(resolve).catch(reject);
4874
+ });
4875
+ }
4876
+ };
4877
+ }
4878
+ function useAddAttachment() {
4879
+ var commentElement = useCommentUtils();
4880
+ return {
4881
+ addAttachment: function (config) {
4882
+ return new Promise(function (resolve, reject) {
4883
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.addAttachment))
4884
+ return reject(new Error('Velt SDK is not initialized.'));
4885
+ commentElement.addAttachment(config).then(resolve).catch(reject);
4886
+ });
4887
+ }
4888
+ };
4889
+ }
4890
+ function useDeleteAttachment() {
4891
+ var commentElement = useCommentUtils();
4892
+ return {
4893
+ deleteAttachment: function (config) {
4894
+ return new Promise(function (resolve, reject) {
4895
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.deleteAttachment))
4896
+ return reject(new Error('Velt SDK is not initialized.'));
4897
+ commentElement.deleteAttachment(config).then(resolve).catch(reject);
4898
+ });
4899
+ }
4900
+ };
4901
+ }
4902
+ function useGetAttachment() {
4903
+ var commentElement = useCommentUtils();
4904
+ return {
4905
+ getAttachment: function (config) {
4906
+ return new Promise(function (resolve, reject) {
4907
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.getAttachment))
4908
+ return reject(new Error('Velt SDK is not initialized.'));
4909
+ commentElement.getAttachment(config).then(resolve).catch(reject);
4910
+ });
4911
+ }
4912
+ };
4913
+ }
4914
+ function useDeleteRecording() {
4915
+ var commentElement = useCommentUtils();
4916
+ return {
4917
+ deleteRecording: function (config) {
4918
+ return new Promise(function (resolve, reject) {
4919
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.deleteRecording))
4920
+ return reject(new Error('Velt SDK is not initialized.'));
4921
+ commentElement.deleteRecording(config).then(resolve).catch(reject);
4922
+ });
4923
+ }
4924
+ };
4925
+ }
4926
+ function useGetRecording() {
4927
+ var commentElement = useCommentUtils();
4928
+ return {
4929
+ getRecording: function (config) {
4930
+ return new Promise(function (resolve, reject) {
4931
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.getRecording))
4932
+ return reject(new Error('Velt SDK is not initialized.'));
4933
+ commentElement.getRecording(config).then(resolve).catch(reject);
4934
+ });
4935
+ }
4936
+ };
4937
+ }
4938
+ function useAddReaction() {
4939
+ var commentElement = useCommentUtils();
4940
+ return {
4941
+ addReaction: function (config) {
4942
+ return new Promise(function (resolve, reject) {
4943
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.addReaction))
4944
+ return reject(new Error('Velt SDK is not initialized.'));
4945
+ commentElement.addReaction(config).then(resolve).catch(reject);
4946
+ });
4947
+ }
4948
+ };
4949
+ }
4950
+ function useDeleteReaction() {
4951
+ var commentElement = useCommentUtils();
4952
+ return {
4953
+ deleteReaction: function (config) {
4954
+ return new Promise(function (resolve, reject) {
4955
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.deleteReaction))
4956
+ return reject(new Error('Velt SDK is not initialized.'));
4957
+ commentElement.deleteReaction(config).then(resolve).catch(reject);
4958
+ });
4959
+ }
4960
+ };
4961
+ }
4962
+ function useToggleReaction() {
4963
+ var commentElement = useCommentUtils();
4964
+ return {
4965
+ toggleReaction: function (config) {
4966
+ return new Promise(function (resolve, reject) {
4967
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.toggleReaction))
4968
+ return reject(new Error('Velt SDK is not initialized.'));
4969
+ commentElement.toggleReaction(config).then(resolve).catch(reject);
4970
+ });
4971
+ }
4972
+ };
4973
+ }
4974
+ function useCommentActionCallback(action) {
4975
+ var commentElement = useCommentUtils();
4976
+ var _a = useState(null), data = _a[0], setData = _a[1];
4977
+ var subscriptionRef = useRef(null);
4978
+ var memoizedAction = useMemo(function () { return action; }, [action]);
4979
+ useEffect(function () {
4980
+ var _a;
4981
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.on))
4982
+ return;
4983
+ if (subscriptionRef.current) {
4984
+ subscriptionRef.current.unsubscribe();
4985
+ }
4986
+ var subscription = (_a = commentElement === null || commentElement === void 0 ? void 0 : commentElement.on(memoizedAction)) === null || _a === void 0 ? void 0 : _a.subscribe(function (data) {
4987
+ setData(data);
4988
+ });
4989
+ // Store the new subscription
4990
+ subscriptionRef.current = subscription;
4991
+ // Cleanup function
4992
+ return function () {
4993
+ if (subscriptionRef.current) {
4994
+ subscriptionRef.current.unsubscribe();
4995
+ }
4996
+ };
4997
+ }, [commentElement === null || commentElement === void 0 ? void 0 : commentElement.on, memoizedAction]);
4998
+ return data;
4999
+ }
5000
+
4710
5001
  function useCursorUtils() {
4711
5002
  var _a = React.useState(), cursorElement = _a[0], setCursorElement = _a[1];
4712
5003
  var client = useVeltClient().client;
@@ -5329,5 +5620,5 @@ var logLiveState = function (action, liveStateDataId) {
5329
5620
  }
5330
5621
  };
5331
5622
 
5332
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesButtonWireframe as VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useRecordingDataByRecorderId, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
5623
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, VeltCommentComposer, VeltCommentComposerWireframe, VeltCommentDialogOptionsDropdownContentWireframe, VeltCommentDialogOptionsDropdownTriggerWireframe, VeltCommentDialogPriorityDropdownContentWireframe, VeltCommentDialogPriorityDropdownTriggerWireframe, VeltCommentDialogStatusDropdownContentWireframe, VeltCommentDialogStatusDropdownTriggerWireframe, VeltCommentDialogWireframe, VeltCommentPin, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentText, VeltCommentThread, VeltCommentThreadWireframe, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, VeltCommentsMinimap, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarButton, VeltCommentsSidebarStatusDropdownWireframe, VeltCommentsSidebarWireframe, VeltConfirmDialogWireframe, SnippylyCursor as VeltCursor, VeltData, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltIf, VeltInlineCommentsSection, VeltInlineCommentsSectionWireframe, VeltInlineReactionsSection, VeltInlineReactionsSectionWireframe, VeltMediaSourceSettingsWireframe, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, VeltRecorderAllToolMenuWireframe, VeltRecorderAllToolWireframe, VeltRecorderAudioToolWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, VeltRecorderControlPanelWireframe, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, VeltRecorderPlayerWireframe, VeltRecorderScreenToolWireframe, SnippylyRecorderTool as VeltRecorderTool, VeltRecorderVideoToolWireframe, VeltRecordingPreviewStepsDialogWireframe, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, VeltSubtitlesButtonWireframe as VeltSubtitlesWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, VeltTranscriptionWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltVideoPlayerWireframe, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAddAttachment, useAddComment, useAddCommentAnnotation, useAddReaction, useApproveCommentAnnotation, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentSidebarActionButtonClick, useCommentSidebarData, useCommentSidebarInit, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCopyLink, useCursorUsers, useCursorUtils, useDeleteAttachment, useDeleteComment, useDeleteCommentAnnotation, useDeleteReaction, useDeleteRecording, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useGetAttachment, useGetComment, useGetLink, useGetRecording, useHuddleUtils, useIdentify, useLiveSelectionDataHandler, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useRecordingDataByRecorderId, useRejectCommentAnnotation, useResolveCommentAnnotation, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
5333
5624
  //# sourceMappingURL=index.js.map