@veltdev/react 3.0.34 → 3.0.36

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.
@@ -35,6 +35,7 @@ export interface IVeltCommentsSidebarProps {
35
35
  */
36
36
  enableUrlNavigation?: boolean;
37
37
  urlNavigation?: boolean;
38
+ queryParamsComments?: boolean;
38
39
  pageMode?: boolean;
39
40
  currentLocationSuffix?: boolean;
40
41
  variant?: string;
@@ -60,6 +61,7 @@ export interface IVeltCommentsSidebarProps {
60
61
  darkMode?: boolean;
61
62
  position?: "right" | "left";
62
63
  filterPanelLayout?: 'menu' | 'bottomSheet';
64
+ customFilterMode?: boolean;
63
65
  }
64
66
  declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
65
67
  export default SnippylyCommentsSidebar;
@@ -2,6 +2,10 @@ import React from 'react';
2
2
  export interface IVeltCommentThreadProps {
3
3
  annotationId?: string;
4
4
  onCommentClick?: Function;
5
+ darkMode?: boolean;
6
+ variant?: string;
7
+ dialogVariant?: string;
8
+ shadowDom?: boolean;
5
9
  }
6
10
  declare const VeltCommentThread: React.FC<IVeltCommentThreadProps>;
7
11
  export default VeltCommentThread;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentsSidebarActionButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ type?: 'default' | 'toggle';
5
+ id: string;
6
+ }
7
+ declare const VeltCommentsSidebarActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
8
+ export default VeltCommentsSidebarActionButton;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentsSidebarActionButton";
@@ -14,6 +14,7 @@ import { IVeltCommentsSidebarSearchProps } from './VeltCommentsSidebarSearch/Vel
14
14
  import { IVeltCommentsSidebarSkeletonProps } from './VeltCommentsSidebarSkeleton/VeltCommentsSidebarSkeleton';
15
15
  import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltCommentsSidebarStatus';
16
16
  import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe';
17
+ import { IVeltCommentsSidebarActionButtonProps } from './VeltCommentsSidebarActionButton/VeltCommentsSidebarActionButton';
17
18
  export interface IVeltCommentsSidebarWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
18
19
  variant?: string;
19
20
  }
@@ -33,5 +34,6 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
33
34
  LocationFilterDropdown: IVeltCommentsSidebarLocationFilterDropdown;
34
35
  MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
35
36
  ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
37
+ ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
36
38
  };
37
39
  export default VeltCommentsSidebarWireframe;
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.34";
1
+ export declare const VELT_SDK_VERSION = "3.0.36";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
@@ -1,4 +1,4 @@
1
- import { CommentAnnotation, CommentElement, Location, CommentSelectionChangeData } from "@veltdev/types";
1
+ import { CommentAnnotation, CommentElement, Location, CommentSelectionChangeData, CommentSidebarDataConfig } from "@veltdev/types";
2
2
  export declare function useCommentUtils(): CommentElement | undefined;
3
3
  export declare function useCommentAnnotations(documentId?: string, location?: Location): CommentAnnotation[] | null | undefined;
4
4
  export declare function useUnreadCommentCountByAnnotationId(annotationId: string): {
@@ -28,3 +28,6 @@ export declare function useCommentAnnotationById(config: {
28
28
  annotationId: string;
29
29
  documentId?: string;
30
30
  }): CommentAnnotation | null | undefined;
31
+ export declare function useCommentSidebarActionButtonClick(): CommentSidebarDataConfig | null;
32
+ export declare function useCommentSidebarInit(): CommentSidebarDataConfig | null;
33
+ export declare function useCommentSidebarData(): CommentSidebarDataConfig | null;
@@ -1,5 +1,5 @@
1
1
  export { useSetLocation, useSetDocument, useSetDocumentId, useUnsetDocumentId, useIdentify, useClient, useVeltInitState, } from './Client';
2
- export { useCommentUtils, useCommentAnnotations, useCommentAddHandler, useCommentModeState, useCommentUpdateHandler, useCommentDialogSidebarClickHandler, useCommentSelectionChangeHandler, useUnreadCommentCountByAnnotationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountOnCurrentDocument, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentCountByLocationId, useCommentCopyLinkHandler, useCommentAnnotationById } from './CommentElement';
2
+ export { useCommentUtils, useCommentAnnotations, useCommentAddHandler, useCommentModeState, useCommentUpdateHandler, useCommentDialogSidebarClickHandler, useCommentSelectionChangeHandler, useUnreadCommentCountByAnnotationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountOnCurrentDocument, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentCountByLocationId, useCommentCopyLinkHandler, useCommentAnnotationById, useCommentSidebarActionButtonClick, useCommentSidebarInit, useCommentSidebarData, } from './CommentElement';
3
3
  export { useCursorUtils, useCursorUsers, } from './CursorElement';
4
4
  export { useHuddleUtils, } from './HuddleElement';
5
5
  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.34';
135
+ var VELT_SDK_VERSION = '3.0.36';
136
136
  var VELT_SDK_INIT_EVENT = 'onVeltInit';
137
137
  var VELT_TAB_ID = 'veltTabId';
138
138
 
@@ -355,7 +355,7 @@ var SnippylyComments = function (props) {
355
355
  };
356
356
 
357
357
  var SnippylyCommentsSidebar = function (props) {
358
- var embedMode = props.embedMode; props.floatingMode; var enableUrlNavigation = props.enableUrlNavigation, urlNavigation = props.urlNavigation, pageMode = props.pageMode, currentLocationSuffix = props.currentLocationSuffix, sortData = props.sortData, filterConfig = props.filterConfig, groupConfig = props.groupConfig, filters = props.filters, excludeLocationIds = props.excludeLocationIds, variant = props.variant, pageModeComposerVariant = props.pageModeComposerVariant, dialogVariant = props.dialogVariant, shadowDom = props.shadowDom, openSidebar = props.openSidebar, onSidebarOpen = props.onSidebarOpen, onSidebarCommentClick = props.onSidebarCommentClick, onCommentClick = props.onCommentClick, onSidebarClose = props.onSidebarClose, darkMode = props.darkMode, position = props.position, filterPanelLayout = props.filterPanelLayout;
358
+ var embedMode = props.embedMode; props.floatingMode; var enableUrlNavigation = props.enableUrlNavigation, urlNavigation = props.urlNavigation, queryParamsComments = props.queryParamsComments, pageMode = props.pageMode, currentLocationSuffix = props.currentLocationSuffix, sortData = props.sortData, filterConfig = props.filterConfig, groupConfig = props.groupConfig, filters = props.filters, excludeLocationIds = props.excludeLocationIds, variant = props.variant, pageModeComposerVariant = props.pageModeComposerVariant, dialogVariant = props.dialogVariant, shadowDom = props.shadowDom, openSidebar = props.openSidebar, onSidebarOpen = props.onSidebarOpen, onSidebarCommentClick = props.onSidebarCommentClick, onCommentClick = props.onCommentClick, onSidebarClose = props.onSidebarClose, darkMode = props.darkMode, position = props.position, filterPanelLayout = props.filterPanelLayout, customFilterMode = props.customFilterMode;
359
359
  var ref = useRef();
360
360
  var openSidebarRef = useRef(openSidebar);
361
361
  var onSidebarOpenRef = useRef(onSidebarOpen);
@@ -417,7 +417,7 @@ var SnippylyCommentsSidebar = function (props) {
417
417
  }
418
418
  };
419
419
  }, []);
420
- return (React.createElement("velt-comments-sidebar", { ref: ref, position: position, "filter-panel-layout": filterPanelLayout, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "embed-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "enable-url-navigation": [true, false].includes(enableUrlNavigation) ? (enableUrlNavigation ? 'true' : 'false') : undefined, "url-navigation": [true, false].includes(urlNavigation) ? (urlNavigation ? 'true' : 'false') : undefined, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "current-location-suffix": [true, false].includes(currentLocationSuffix) ? (currentLocationSuffix ? 'true' : 'false') : undefined, "filter-config": filterConfig ? JSON.stringify(filterConfig) : undefined, "group-config": groupConfig ? JSON.stringify(groupConfig) : undefined, filters: filters ? JSON.stringify(filters) : undefined, "exclude-location-ids": excludeLocationIds ? JSON.stringify(excludeLocationIds) : undefined, variant: variant, "page-mode-composer-variant": pageModeComposerVariant, "dialog-variant": dialogVariant, "sort-data": sortData, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined, "floating-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined }));
420
+ return (React.createElement("velt-comments-sidebar", { ref: ref, position: position, "filter-panel-layout": filterPanelLayout, "custom-filter-mode": [true, false].includes(customFilterMode) ? (customFilterMode ? 'true' : 'false') : undefined, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "embed-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined, "enable-url-navigation": [true, false].includes(enableUrlNavigation) ? (enableUrlNavigation ? 'true' : 'false') : undefined, "url-navigation": [true, false].includes(urlNavigation) ? (urlNavigation ? 'true' : 'false') : undefined, "query-params-comments": [true, false].includes(queryParamsComments) ? (queryParamsComments ? 'true' : 'false') : undefined, "page-mode": [true, false].includes(pageMode) ? (pageMode ? 'true' : 'false') : undefined, "current-location-suffix": [true, false].includes(currentLocationSuffix) ? (currentLocationSuffix ? 'true' : 'false') : undefined, "filter-config": filterConfig ? JSON.stringify(filterConfig) : undefined, "group-config": groupConfig ? JSON.stringify(groupConfig) : undefined, filters: filters ? JSON.stringify(filters) : undefined, "exclude-location-ids": excludeLocationIds ? JSON.stringify(excludeLocationIds) : undefined, variant: variant, "page-mode-composer-variant": pageModeComposerVariant, "dialog-variant": dialogVariant, "sort-data": sortData, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined, "floating-mode": [true, false].includes(embedMode) ? (embedMode ? 'true' : 'false') : undefined }));
421
421
  };
422
422
 
423
423
  var SnippylyCommentTool = function (props) {
@@ -786,7 +786,7 @@ var VeltViewAnalytics = function (props) {
786
786
  };
787
787
 
788
788
  var VeltCommentThread = function (props) {
789
- var annotationId = props.annotationId, onCommentClick = props.onCommentClick;
789
+ var annotationId = props.annotationId, onCommentClick = props.onCommentClick, darkMode = props.darkMode, variant = props.variant, shadowDom = props.shadowDom, dialogVariant = props.dialogVariant;
790
790
  var ref = useRef();
791
791
  var onCommentClickRef = useRef(onCommentClick);
792
792
  useEffect(function () {
@@ -811,7 +811,7 @@ var VeltCommentThread = function (props) {
811
811
  }
812
812
  };
813
813
  }, []);
814
- return (React.createElement("velt-comment-thread", { ref: ref, "annotation-id": annotationId }));
814
+ return (React.createElement("velt-comment-thread", { ref: ref, "annotation-id": annotationId, variant: variant, "dialog-variant": dialogVariant, "shadow-dom": [true, false].includes(shadowDom) ? (shadowDom ? 'true' : 'false') : undefined, "dark-mode": [true, false].includes(darkMode) ? (darkMode ? 'true' : 'false') : undefined }));
815
815
  };
816
816
 
817
817
  var VeltNotificationsTool = function (props) {
@@ -2572,6 +2572,11 @@ var VeltCommentsSidebarResetFilterButtonWireframe = function (props) {
2572
2572
  return (React.createElement("velt-comments-sidebar-reset-filter-button-wireframe", __assign({}, remainingProps), children));
2573
2573
  };
2574
2574
 
2575
+ var VeltCommentsSidebarActionButton = function (props) {
2576
+ var children = props.children, variant = props.variant, type = props.type, id = props.id;
2577
+ return (React.createElement("velt-comments-sidebar-action-button-wireframe", { variant: variant, type: type, id: id }, children));
2578
+ };
2579
+
2575
2580
  var VeltCommentsSidebarWireframe = function (props) {
2576
2581
  var children = props.children, remainingProp = __rest(props, ["children"]);
2577
2582
  return (React.createElement("velt-comments-sidebar-wireframe", __assign({}, remainingProp), children));
@@ -2591,6 +2596,7 @@ VeltCommentsSidebarWireframe.MinimalFilterDropdown = VeltCommentsSidebarMinimalF
2591
2596
  VeltCommentsSidebarWireframe.LocationFilterDropdown = VeltCommentsSidebarLocationFilterDropdown;
2592
2597
  VeltCommentsSidebarWireframe.MinimalActionsDropdown = VeltCommentsSidebarMinimalActionsDropdownWireframe;
2593
2598
  VeltCommentsSidebarWireframe.ResetFilterButton = VeltCommentsSidebarResetFilterButtonWireframe;
2599
+ VeltCommentsSidebarWireframe.ActionButton = VeltCommentsSidebarActionButton;
2594
2600
 
2595
2601
  var VeltCommentPinGhostCommentIndicator = function (props) {
2596
2602
  var children = props.children, remainingProp = __rest(props, ["children"]);
@@ -3664,6 +3670,51 @@ function useCommentAnnotationById(config) {
3664
3670
  }, [commentElement === null || commentElement === void 0 ? void 0 : commentElement.getCommentAnnotationById]);
3665
3671
  return data;
3666
3672
  }
3673
+ function useCommentSidebarActionButtonClick() {
3674
+ var commentElement = useCommentUtils();
3675
+ var _a = React.useState(null), data = _a[0], setData = _a[1];
3676
+ useEffect(function () {
3677
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.onCommentSidebarActionButtonClick))
3678
+ return;
3679
+ var subscription = commentElement.onCommentSidebarActionButtonClick().subscribe(function (res) {
3680
+ setData(res);
3681
+ });
3682
+ return function () {
3683
+ subscription.unsubscribe();
3684
+ };
3685
+ }, [commentElement === null || commentElement === void 0 ? void 0 : commentElement.onCommentSidebarActionButtonClick]);
3686
+ return data;
3687
+ }
3688
+ function useCommentSidebarInit() {
3689
+ var commentElement = useCommentUtils();
3690
+ var _a = React.useState(null), data = _a[0], setData = _a[1];
3691
+ useEffect(function () {
3692
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.onCommentSidebarInit))
3693
+ return;
3694
+ var subscription = commentElement.onCommentSidebarInit().subscribe(function (res) {
3695
+ setData(res);
3696
+ });
3697
+ return function () {
3698
+ subscription.unsubscribe();
3699
+ };
3700
+ }, [commentElement === null || commentElement === void 0 ? void 0 : commentElement.onCommentSidebarInit]);
3701
+ return data;
3702
+ }
3703
+ function useCommentSidebarData() {
3704
+ var commentElement = useCommentUtils();
3705
+ var _a = React.useState(null), data = _a[0], setData = _a[1];
3706
+ useEffect(function () {
3707
+ if (!(commentElement === null || commentElement === void 0 ? void 0 : commentElement.onCommentSidebarData))
3708
+ return;
3709
+ var subscription = commentElement.onCommentSidebarData().subscribe(function (res) {
3710
+ setData(res);
3711
+ });
3712
+ return function () {
3713
+ subscription.unsubscribe();
3714
+ };
3715
+ }, [commentElement === null || commentElement === void 0 ? void 0 : commentElement.onCommentSidebarData]);
3716
+ return data;
3717
+ }
3667
3718
 
3668
3719
  function useCursorUtils() {
3669
3720
  var _a = React.useState(), cursorElement = _a[0], setCursorElement = _a[1];
@@ -4217,5 +4268,5 @@ var logLiveState = function (action, liveStateDataId) {
4217
4268
  }
4218
4269
  };
4219
4270
 
4220
- 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, VeltCommentThread, 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, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, SnippylyRecorderTool as VeltRecorderTool, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, VeltViewAnalytics, VeltWireframe, createLiveStateMiddleware, useAIRewriterUtils, useAutocompleteChipClick, useAutocompleteUtils, useClient, useCommentAddHandler, useCommentAnnotationById, useCommentAnnotations, useCommentCopyLinkHandler, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentSelectionChangeHandler, useCommentUpdateHandler, useCommentUtils, useContactSelected, useContactUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
4271
+ 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, VeltCommentThread, 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, VeltMultiThreadCommentDialogWireframe, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsPanelWireframe, VeltNotificationsTool, VeltNotificationsToolWireframe, VeltPersistentCommentModeWireframe, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, VeltReactionPinTooltipWireframe, VeltReactionPinWireframe, VeltReactionTool, VeltReactionToolWireframe, VeltReactionsPanelWireframe, SnippylyRecorderControlPanel as VeltRecorderControlPanel, SnippylyRecorderNotes as VeltRecorderNotes, SnippylyRecorderPlayer as VeltRecorderPlayer, SnippylyRecorderTool as VeltRecorderTool, SnippylySidebarButton as VeltSidebarButton, VeltSidebarButtonWireframe, SnippylyTagTool as VeltTagTool, SnippylyTags as VeltTags, VeltTextCommentToolWireframe, VeltTextCommentToolbar as VeltTextCommentToolbarWireframe, SnippylyUserInviteTool as VeltUserInviteTool, SnippylyUserRequestTool as VeltUserRequestTool, VeltUserSelectorDropdown as VeltUserSelectorDropdownWireframe, VeltVideoPlayer, 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, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useServerConnectionStateChangeHandler, useSetDocument, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnreadCommentAnnotationCountByLocationId, useUnreadCommentAnnotationCountOnCurrentDocument, useUnreadCommentCountByAnnotationId, useUnreadCommentCountByLocationId, useUnreadCommentCountOnCurrentDocument, useUnreadNotificationsCount, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
4221
4272
  //# sourceMappingURL=index.js.map