@veltdev/react 3.0.77 → 3.0.79

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.
Files changed (38) hide show
  1. package/cjs/index.js +84 -1
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/VeltButtonWireframe/VeltButtonWireframe.d.ts +10 -0
  4. package/cjs/types/components/VeltButtonWireframe/index.d.ts +1 -0
  5. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReply.d.ts +9 -1
  6. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyCount/VeltCommentDialogToggleReplyCount.d.ts +8 -0
  7. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyCount/index.d.ts +1 -0
  8. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyIcon/VeltCommentDialogToggleReplyIcon.d.ts +8 -0
  9. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyIcon/index.d.ts +1 -0
  10. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyText/VeltCommentDialogToggleReplyText.d.ts +8 -0
  11. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyText/index.d.ts +1 -0
  12. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -2
  13. package/cjs/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -1
  14. package/cjs/types/components/index.d.ts +1 -0
  15. package/cjs/types/constants.d.ts +1 -1
  16. package/cjs/types/hooks/CommentActions.d.ts +4 -0
  17. package/cjs/types/hooks/CoreActions.d.ts +2 -0
  18. package/cjs/types/hooks/index.d.ts +2 -1
  19. package/esm/index.js +82 -2
  20. package/esm/index.js.map +1 -1
  21. package/esm/types/components/VeltButtonWireframe/VeltButtonWireframe.d.ts +10 -0
  22. package/esm/types/components/VeltButtonWireframe/index.d.ts +1 -0
  23. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReply.d.ts +9 -1
  24. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyCount/VeltCommentDialogToggleReplyCount.d.ts +8 -0
  25. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyCount/index.d.ts +1 -0
  26. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyIcon/VeltCommentDialogToggleReplyIcon.d.ts +8 -0
  27. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyIcon/index.d.ts +1 -0
  28. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyText/VeltCommentDialogToggleReplyText.d.ts +8 -0
  29. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogToggleReply/VeltCommentDialogToggleReplyText/index.d.ts +1 -0
  30. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogWireframe.d.ts +2 -2
  31. package/esm/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -1
  32. package/esm/types/components/index.d.ts +1 -0
  33. package/esm/types/constants.d.ts +1 -1
  34. package/esm/types/hooks/CommentActions.d.ts +4 -0
  35. package/esm/types/hooks/CoreActions.d.ts +2 -0
  36. package/esm/types/hooks/index.d.ts +2 -1
  37. package/index.d.ts +42 -4
  38. package/package.json +1 -1
@@ -0,0 +1,10 @@
1
+ import React from 'react';
2
+ export interface IVeltButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ id?: string;
4
+ disabled?: boolean;
5
+ active?: boolean;
6
+ type?: 'button' | 'button-toggle' | 'multi-select' | 'single-select';
7
+ group?: string;
8
+ }
9
+ declare const VeltButtonWireframe: React.FC<IVeltButtonWireframeProps>;
10
+ export default VeltButtonWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltButtonWireframe";
@@ -1,6 +1,14 @@
1
1
  import React from 'react';
2
+ import { IVeltCommentDialogToggleReplyCount } from './VeltCommentDialogToggleReplyCount/VeltCommentDialogToggleReplyCount';
3
+ import { IVeltCommentDialogToggleReplyText } from './VeltCommentDialogToggleReplyText/VeltCommentDialogToggleReplyText';
4
+ import { IVeltCommentDialogToggleReplyIcon } from './VeltCommentDialogToggleReplyIcon/VeltCommentDialogToggleReplyIcon';
2
5
  export interface IVeltCommentDialogToggleReplyProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
6
  variant?: string;
4
7
  }
5
- declare const VeltCommentDialogToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
8
+ export interface IVeltCommentDialogToggleReply extends React.FC<IVeltCommentDialogToggleReplyProps> {
9
+ Icon: IVeltCommentDialogToggleReplyIcon;
10
+ Text: IVeltCommentDialogToggleReplyText;
11
+ Count: IVeltCommentDialogToggleReplyCount;
12
+ }
13
+ declare const VeltCommentDialogToggleReply: IVeltCommentDialogToggleReply;
6
14
  export default VeltCommentDialogToggleReply;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogToggleReplyCountProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ export interface IVeltCommentDialogToggleReplyCount extends React.FC<IVeltCommentDialogToggleReplyCountProps> {
6
+ }
7
+ declare const VeltCommentDialogToggleReplyCount: IVeltCommentDialogToggleReplyCount;
8
+ export default VeltCommentDialogToggleReplyCount;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogToggleReplyCount";
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogToggleReplyIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ export interface IVeltCommentDialogToggleReplyIcon extends React.FC<IVeltCommentDialogToggleReplyIconProps> {
6
+ }
7
+ declare const VeltCommentDialogToggleReplyIcon: IVeltCommentDialogToggleReplyIcon;
8
+ export default VeltCommentDialogToggleReplyIcon;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogToggleReplyIcon";
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogToggleReplyTextProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ export interface IVeltCommentDialogToggleReplyText extends React.FC<IVeltCommentDialogToggleReplyTextProps> {
6
+ }
7
+ declare const VeltCommentDialogToggleReplyText: IVeltCommentDialogToggleReplyText;
8
+ export default VeltCommentDialogToggleReplyText;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogToggleReplyText";
@@ -21,7 +21,7 @@ import { IVeltCommentDialogStatus } from "./VeltCommentDialogStatus/VeltCommentD
21
21
  import { IVeltCommentDialogSuggestionAction } from "./VeltCommentDialogSuggestionAction/VeltCommentDialogSuggestionAction";
22
22
  import { IVeltCommentDialogThreadCard } from "./VeltCommentDialogThreadCard/VeltCommentDialogThreadCard";
23
23
  import { IVeltCommentDialogThreadsProps } from "./VeltCommentDialogThreads/VeltCommentDialogThreads";
24
- import { IVeltCommentDialogToggleReplyProps } from "./VeltCommentDialogToggleReply/VeltCommentDialogToggleReply";
24
+ import { IVeltCommentDialogToggleReply } from "./VeltCommentDialogToggleReply/VeltCommentDialogToggleReply";
25
25
  import { IVeltCommentDialogUpgradeProps } from "./VeltCommentDialogUpgrade/VeltCommentDialogUpgrade";
26
26
  import { IVeltCommentDialogCustomAnnotationDropdown } from "./VeltCommentDialogCustomAnnotationDropdown/VeltCommentDialogCustomAnnotationDropdown";
27
27
  import { IVeltCommentDialogDeleteButtonProps } from "./VeltCommentDialogDeleteButton/VeltCommentDialogDeleteButton";
@@ -55,7 +55,7 @@ declare const VeltCommentDialogWireframe: React.FC<IVeltCommentDialogWireframePr
55
55
  SuggestionAction: IVeltCommentDialogSuggestionAction;
56
56
  ThreadCard: IVeltCommentDialogThreadCard;
57
57
  Threads: React.FC<IVeltCommentDialogThreadsProps>;
58
- ToggleReply: React.FC<IVeltCommentDialogToggleReplyProps>;
58
+ ToggleReply: IVeltCommentDialogToggleReply;
59
59
  Upgrade: React.FC<IVeltCommentDialogUpgradeProps>;
60
60
  CustomAnnotationDropdown: IVeltCommentDialogCustomAnnotationDropdown;
61
61
  DeleteButton: React.FC<IVeltCommentDialogDeleteButtonProps>;
@@ -5,7 +5,7 @@ export interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps
5
5
  name?: string;
6
6
  };
7
7
  /**
8
- * @deprecated Use `targetCommentElementId` instead.
8
+ * @deprecated Use `targetElementId` instead.
9
9
  */
10
10
  targetInlineCommentElementId?: string;
11
11
  /**
@@ -84,3 +84,4 @@ export { default as VeltRecorderPlayerWireframe } from "./VeltRecorderPlayerWire
84
84
  export { default as VeltVideoPlayerWireframe } from "./VeltVideoPlayerWireframe";
85
85
  export { default as VeltSubtitlesWireframe } from "./VeltSubtitlesWireframe";
86
86
  export { default as VeltTranscriptionWireframe } from "./VeltTranscriptionWireframe";
87
+ export { default as VeltButtonWireframe } from "./VeltButtonWireframe";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.77";
1
+ export declare const VELT_SDK_VERSION = "3.0.79";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
@@ -74,4 +74,8 @@ export declare function useDeleteReaction(): {
74
74
  export declare function useToggleReaction(): {
75
75
  toggleReaction: (config: ToggleReactionRequest) => Promise<ToggleReactionEvent | null>;
76
76
  };
77
+ /**
78
+ * @deprecated Use useCommentEventCallback hook instead.
79
+ */
77
80
  export declare function useCommentActionCallback<T extends keyof CommentEventTypesMap>(action: T): CommentEventTypesMap[T];
81
+ export declare function useCommentEventCallback<T extends keyof CommentEventTypesMap>(action: T): CommentEventTypesMap[T];
@@ -0,0 +1,2 @@
1
+ import { CoreEventTypesMap } from "@veltdev/types";
2
+ export declare function useVeltEventCallback<T extends keyof CoreEventTypesMap>(action: T): CoreEventTypesMap[T];
@@ -1,6 +1,7 @@
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, useSubscribeCommentAnnotation, useUnsubscribeCommentAnnotation, useAssignUser, useCopyLink, useGetComment, useGetLink, useRejectCommentAnnotation, useResolveCommentAnnotation, useUpdateAccess, useUpdatePriority, useUpdateStatus, useCommentActionCallback, } from './CommentActions';
3
+ export { useAddAttachment, useDeleteAttachment, useGetAttachment, useDeleteRecording, useGetRecording, useAddReaction, useDeleteReaction, useToggleReaction, useAddComment, useUpdateComment, useDeleteComment, useAddCommentAnnotation, useDeleteCommentAnnotation, useApproveCommentAnnotation, useSubscribeCommentAnnotation, useUnsubscribeCommentAnnotation, useAssignUser, useCopyLink, useGetComment, useGetLink, useRejectCommentAnnotation, useResolveCommentAnnotation, useUpdateAccess, useUpdatePriority, useUpdateStatus, useCommentActionCallback, useCommentEventCallback } from './CommentActions';
4
+ export { useVeltEventCallback } from './CoreActions';
4
5
  export { useCursorUtils, useCursorUsers, } from './CursorElement';
5
6
  export { useHuddleUtils, } from './HuddleElement';
6
7
  export { useLiveStateSyncUtils, useLiveStateData, useSetLiveStateData, useUserEditorState, useEditor, useEditorAccessTimer, useEditorAccessRequestHandler, useServerConnectionStateChangeHandler, useLiveState, } from './LiveStateSyncElement';
package/esm/index.js CHANGED
@@ -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.77';
135
+ var VELT_SDK_VERSION = '3.0.79';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -2119,10 +2119,28 @@ var VeltCommentDialogThreads = function (props) {
2119
2119
  return (React.createElement("velt-comment-dialog-threads-wireframe", __assign({}, remainingProp), children));
2120
2120
  };
2121
2121
 
2122
+ var VeltCommentDialogToggleReplyCount = function (props) {
2123
+ var children = props.children, remainingProp = __rest(props, ["children"]);
2124
+ return (React.createElement("velt-comment-dialog-toggle-reply-count-wireframe", __assign({}, remainingProp), children));
2125
+ };
2126
+
2127
+ var VeltCommentDialogToggleReplyText = function (props) {
2128
+ var children = props.children, remainingProp = __rest(props, ["children"]);
2129
+ return (React.createElement("velt-comment-dialog-toggle-reply-text-wireframe", __assign({}, remainingProp), children));
2130
+ };
2131
+
2132
+ var VeltCommentDialogToggleReplyIcon = function (props) {
2133
+ var children = props.children, remainingProp = __rest(props, ["children"]);
2134
+ return (React.createElement("velt-comment-dialog-toggle-reply-icon-wireframe", __assign({}, remainingProp), children));
2135
+ };
2136
+
2122
2137
  var VeltCommentDialogToggleReply = function (props) {
2123
2138
  var children = props.children, remainingProp = __rest(props, ["children"]);
2124
2139
  return (React.createElement("velt-comment-dialog-toggle-reply-wireframe", __assign({}, remainingProp), children));
2125
2140
  };
2141
+ VeltCommentDialogToggleReply.Icon = VeltCommentDialogToggleReplyIcon;
2142
+ VeltCommentDialogToggleReply.Text = VeltCommentDialogToggleReplyText;
2143
+ VeltCommentDialogToggleReply.Count = VeltCommentDialogToggleReplyCount;
2126
2144
 
2127
2145
  var VeltCommentDialogUpgrade = function (props) {
2128
2146
  var children = props.children, remainingProp = __rest(props, ["children"]);
@@ -4305,6 +4323,12 @@ var VeltTranscriptionWireframe = function (props) {
4305
4323
  VeltTranscriptionWireframe.EmbedMode = VeltTranscriptionEmbedModeWireframe;
4306
4324
  VeltTranscriptionWireframe.FloatingMode = VeltTranscriptionFloatingModeWireframe;
4307
4325
 
4326
+ var VeltButtonWireframe = function (props) {
4327
+ var id = props.id, disabled = props.disabled, active = props.active, type = props.type, group = props.group, children = props.children;
4328
+ var ref = useRef();
4329
+ return (React.createElement("velt-button-wireframe", { ref: ref, id: id, disabled: [true, false].includes(disabled) ? (disabled ? 'true' : 'false') : undefined, active: [true, false].includes(active) ? (active ? 'true' : 'false') : undefined, type: type, group: group }, children));
4330
+ };
4331
+
4308
4332
  function useClient() {
4309
4333
  var client = useVeltClient().client;
4310
4334
  var _a = React.useState(), veltClient = _a[0], setVeltClient = _a[1];
@@ -5013,6 +5037,9 @@ function useToggleReaction() {
5013
5037
  }
5014
5038
  };
5015
5039
  }
5040
+ /**
5041
+ * @deprecated Use useCommentEventCallback hook instead.
5042
+ */
5016
5043
  function useCommentActionCallback(action) {
5017
5044
  var commentElement = useCommentUtils();
5018
5045
  var _a = useState(null), data = _a[0], setData = _a[1];
@@ -5039,6 +5066,59 @@ function useCommentActionCallback(action) {
5039
5066
  }, [commentElement === null || commentElement === void 0 ? void 0 : commentElement.on, memoizedAction]);
5040
5067
  return data;
5041
5068
  }
5069
+ function useCommentEventCallback(action) {
5070
+ var commentElement = useCommentUtils();
5071
+ var _a = useState(null), data = _a[0], setData = _a[1];
5072
+ var subscriptionRef = useRef(null);
5073
+ var memoizedAction = useMemo(function () { return action; }, [action]);
5074
+ useEffect(function () {
5075
+ var _a;
5076
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.on))
5077
+ return;
5078
+ if (subscriptionRef.current) {
5079
+ subscriptionRef.current.unsubscribe();
5080
+ }
5081
+ var subscription = (_a = commentElement === null || commentElement === void 0 ? void 0 : commentElement.on(memoizedAction)) === null || _a === void 0 ? void 0 : _a.subscribe(function (data) {
5082
+ setData(data);
5083
+ });
5084
+ // Store the new subscription
5085
+ subscriptionRef.current = subscription;
5086
+ // Cleanup function
5087
+ return function () {
5088
+ if (subscriptionRef.current) {
5089
+ subscriptionRef.current.unsubscribe();
5090
+ }
5091
+ };
5092
+ }, [commentElement === null || commentElement === void 0 ? void 0 : commentElement.on, memoizedAction]);
5093
+ return data;
5094
+ }
5095
+
5096
+ function useVeltEventCallback(action) {
5097
+ var client = useVeltClient().client;
5098
+ var _a = useState(null), data = _a[0], setData = _a[1];
5099
+ var subscriptionRef = useRef(null);
5100
+ var memoizedAction = useMemo(function () { return action; }, [action]);
5101
+ useEffect(function () {
5102
+ var _a;
5103
+ if (!(client === null || client === void 0 ? void 0 : client.on))
5104
+ return;
5105
+ if (subscriptionRef.current) {
5106
+ subscriptionRef.current.unsubscribe();
5107
+ }
5108
+ var subscription = (_a = client === null || client === void 0 ? void 0 : client.on(memoizedAction)) === null || _a === void 0 ? void 0 : _a.subscribe(function (data) {
5109
+ setData(data);
5110
+ });
5111
+ // Store the new subscription
5112
+ subscriptionRef.current = subscription;
5113
+ // Cleanup function
5114
+ return function () {
5115
+ if (subscriptionRef.current) {
5116
+ subscriptionRef.current.unsubscribe();
5117
+ }
5118
+ };
5119
+ }, [client === null || client === void 0 ? void 0 : client.on, memoizedAction]);
5120
+ return data;
5121
+ }
5042
5122
 
5043
5123
  function useCursorUtils() {
5044
5124
  var _a = React.useState(), cursorElement = _a[0], setCursorElement = _a[1];
@@ -5662,5 +5742,5 @@ var logLiveState = function (action, liveStateDataId) {
5662
5742
  }
5663
5743
  };
5664
5744
 
5665
- 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, useAssignUser, 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, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
5745
+ export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltButtonWireframe, 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, useAssignUser, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentActionCallback, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentEventCallback, 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, useSubscribeCommentAnnotation, useTagAnnotations, useTagUtils, useToggleReaction, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUnsubscribeCommentAnnotation, useUpdateAccess, useUpdateComment, useUpdatePriority, useUpdateStatus, useUserEditorState, useVeltClient, useVeltEventCallback, useVeltInitState, useViewsUtils };
5666
5746
  //# sourceMappingURL=index.js.map