@veltdev/react 3.0.42 → 3.0.43

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 (42) hide show
  1. package/cjs/index.js +60 -3
  2. package/cjs/index.js.map +1 -1
  3. package/cjs/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
  4. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton.d.ts +6 -0
  5. package/cjs/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/index.d.ts +1 -0
  6. package/cjs/types/components/VeltCommentText/VeltCommentText.d.ts +7 -0
  7. package/cjs/types/components/VeltCommentText/index.d.ts +1 -0
  8. package/cjs/types/components/VeltCommentThreadWireframe/VeltCommentThreadWireframe.d.ts +8 -0
  9. package/cjs/types/components/VeltCommentThreadWireframe/index.d.ts +1 -0
  10. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread.d.ts +12 -0
  11. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/VeltCommentsSidebarFocusedThreadBackButton.d.ts +8 -0
  12. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/index.d.ts +1 -0
  13. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/VeltCommentsSidebarFocusedThreadDialogContainer.d.ts +8 -0
  14. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/index.d.ts +1 -0
  15. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/index.d.ts +1 -0
  16. package/cjs/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
  17. package/cjs/types/components/index.d.ts +2 -0
  18. package/cjs/types/constants.d.ts +1 -1
  19. package/cjs/types/hooks/SelectionElement.d.ts +2 -1
  20. package/cjs/types/hooks/index.d.ts +1 -1
  21. package/esm/index.js +58 -4
  22. package/esm/index.js.map +1 -1
  23. package/esm/types/components/SnippylyCommentsSidebar/SnippylyCommentsSidebar.d.ts +3 -0
  24. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/VeltCommentDialogNavigationButton.d.ts +6 -0
  25. package/esm/types/components/VeltCommentDialogWireframe/VeltCommentDialogNavigationButton/index.d.ts +1 -0
  26. package/esm/types/components/VeltCommentText/VeltCommentText.d.ts +7 -0
  27. package/esm/types/components/VeltCommentText/index.d.ts +1 -0
  28. package/esm/types/components/VeltCommentThreadWireframe/VeltCommentThreadWireframe.d.ts +8 -0
  29. package/esm/types/components/VeltCommentThreadWireframe/index.d.ts +1 -0
  30. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread.d.ts +12 -0
  31. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/VeltCommentsSidebarFocusedThreadBackButton.d.ts +8 -0
  32. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadBackButton/index.d.ts +1 -0
  33. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/VeltCommentsSidebarFocusedThreadDialogContainer.d.ts +8 -0
  34. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThreadDialogContainer/index.d.ts +1 -0
  35. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarFocusedThread/index.d.ts +1 -0
  36. package/esm/types/components/VeltCommentsSidebarWireframe/VeltCommentsSidebarWireframe.d.ts +2 -0
  37. package/esm/types/components/index.d.ts +2 -0
  38. package/esm/types/constants.d.ts +1 -1
  39. package/esm/types/hooks/SelectionElement.d.ts +2 -1
  40. package/esm/types/hooks/index.d.ts +1 -1
  41. package/index.d.ts +40 -2
  42. package/package.json +1 -1
@@ -58,10 +58,13 @@ export interface IVeltCommentsSidebarProps {
58
58
  onSidebarCommentClick?: Function;
59
59
  onCommentClick?: Function;
60
60
  onSidebarClose?: Function;
61
+ onCommentNavigationButtonClick?: Function;
61
62
  darkMode?: boolean;
62
63
  position?: "right" | "left";
63
64
  filterPanelLayout?: 'menu' | 'bottomSheet';
64
65
  customActions?: boolean;
66
+ focusedThreadDialogVariant?: string;
67
+ focusedThreadMode?: boolean;
65
68
  }
66
69
  declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
67
70
  export default SnippylyCommentsSidebar;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentDialogNavigationButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ declare const VeltCommentDialogNavigationButton: React.FC<IVeltCommentDialogNavigationButtonProps>;
6
+ export default VeltCommentDialogNavigationButton;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentDialogNavigationButton";
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentTextProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ annotationId?: string;
4
+ multiThreadAnnotationId?: string;
5
+ }
6
+ declare const VeltCommentText: React.FC<IVeltCommentTextProps>;
7
+ export default VeltCommentText;
@@ -0,0 +1 @@
1
+ export { default } from './VeltCommentText';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentThreadWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ export interface IVeltCommentThreadWireframe extends React.FC<IVeltCommentThreadWireframeProps> {
6
+ }
7
+ declare const VeltCommentThreadWireframe: IVeltCommentThreadWireframe;
8
+ export default VeltCommentThreadWireframe;
@@ -0,0 +1 @@
1
+ export { default } from './VeltCommentThreadWireframe';
@@ -0,0 +1,12 @@
1
+ import React from 'react';
2
+ import { IVeltCommentsSidebarFocusedThreadBackButton } from './VeltCommentsSidebarFocusedThreadBackButton/VeltCommentsSidebarFocusedThreadBackButton';
3
+ import { IVeltCommentsSidebarFocusedThreadDialogContainer } from './VeltCommentsSidebarFocusedThreadDialogContainer/VeltCommentsSidebarFocusedThreadDialogContainer';
4
+ export interface IVeltCommentsSidebarFocusedThreadProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
5
+ variant?: string;
6
+ }
7
+ export interface IVeltCommentsSidebarFocusedThread extends React.FC<IVeltCommentsSidebarFocusedThreadProps> {
8
+ BackButton: IVeltCommentsSidebarFocusedThreadBackButton;
9
+ DialogContainer: IVeltCommentsSidebarFocusedThreadDialogContainer;
10
+ }
11
+ declare const VeltCommentsSidebarFocusedThread: IVeltCommentsSidebarFocusedThread;
12
+ export default VeltCommentsSidebarFocusedThread;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentsSidebarFocusedThreadBackButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ export interface IVeltCommentsSidebarFocusedThreadBackButton extends React.FC<IVeltCommentsSidebarFocusedThreadBackButtonProps> {
6
+ }
7
+ declare const VeltCommentsSidebarFocusedThreadBackButton: IVeltCommentsSidebarFocusedThreadBackButton;
8
+ export default VeltCommentsSidebarFocusedThreadBackButton;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentsSidebarFocusedThreadBackButton";
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentsSidebarFocusedThreadDialogContainerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ export interface IVeltCommentsSidebarFocusedThreadDialogContainer extends React.FC<IVeltCommentsSidebarFocusedThreadDialogContainerProps> {
6
+ }
7
+ declare const VeltCommentsSidebarFocusedThreadDialogContainer: IVeltCommentsSidebarFocusedThreadDialogContainer;
8
+ export default VeltCommentsSidebarFocusedThreadDialogContainer;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentsSidebarFocusedThreadDialogContainer";
@@ -0,0 +1 @@
1
+ export { default } from './VeltCommentsSidebarFocusedThread';
@@ -15,6 +15,7 @@ import { IVeltCommentsSidebarSkeletonProps } from './VeltCommentsSidebarSkeleton
15
15
  import { IVeltCommentsSidebarStatus } from './VeltCommentsSidebarStatus/VeltCommentsSidebarStatus';
16
16
  import { IVeltCommentsSidebarResetFilterButtonWireframeProps } from './VeltCommentsSidebarResetFilterButtonWireframe/VeltCommentsSidebarResetFilterButtonWireframe';
17
17
  import { IVeltCommentsSidebarActionButtonProps } from './VeltCommentsSidebarActionButton/VeltCommentsSidebarActionButton';
18
+ import { IVeltCommentsSidebarFocusedThread } from './VeltCommentsSidebarFocusedThread/VeltCommentsSidebarFocusedThread';
18
19
  export interface IVeltCommentsSidebarWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
19
20
  variant?: string;
20
21
  }
@@ -35,5 +36,6 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
35
36
  MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
36
37
  ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
37
38
  ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
39
+ FocusedThread: IVeltCommentsSidebarFocusedThread;
38
40
  };
39
41
  export default VeltCommentsSidebarWireframe;
@@ -32,6 +32,7 @@ export { default as VeltChartComment } from "./VeltChartComment";
32
32
  export { default as VeltAutocomplete } from "./VeltAutocomplete";
33
33
  export { default as VeltInlineCommentsSection } from "./VeltInlineCommentsSection";
34
34
  export { default as VeltCommentPin } from "./VeltCommentPin";
35
+ export { default as VeltCommentText } from "./VeltCommentText";
35
36
  export { default as VeltCanvasComment } from "./VeltCanvasComment";
36
37
  export { default as VeltData } from "./VeltData";
37
38
  export { default as VeltIf } from "./VeltIf";
@@ -70,3 +71,4 @@ export { default as VeltInlineReactionsSectionWireframe } from "./VeltInlineReac
70
71
  export { default as VeltPersistentCommentModeWireframe } from "./VeltPersistentCommentModeWireframe";
71
72
  export { default as VeltMultiThreadCommentDialogWireframe } from "./VeltMultiThreadCommentDialogWireframe";
72
73
  export { default as VeltCommentComposerWireframe } from "./VeltCommentComposerWireframe";
74
+ export { default as VeltCommentThreadWireframe } from "./VeltCommentThreadWireframe";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.42";
1
+ export declare const VELT_SDK_VERSION = "3.0.43";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
@@ -1,2 +1,3 @@
1
- import { SelectionElement } from "@veltdev/types";
1
+ import { SelectionElement, LiveSelectionData } from "@veltdev/types";
2
2
  export declare function useLiveSelectionUtils(): SelectionElement | undefined;
3
+ export declare function useLiveSelectionDataHandler(): LiveSelectionData | null;
@@ -6,7 +6,7 @@ export { useLiveStateSyncUtils, useLiveStateData, useSetLiveStateData, useUserEd
6
6
  export { usePresenceUtils, usePresenceUsers, } from './PresenceElement';
7
7
  export { useRecorderUtils, useRecorderAddHandler, } from './RecorderElement';
8
8
  export { useAIRewriterUtils, } from './RewriterElement';
9
- export { useLiveSelectionUtils, } from './SelectionElement';
9
+ export { useLiveSelectionUtils, useLiveSelectionDataHandler, } from './SelectionElement';
10
10
  export { useTagUtils, useTagAnnotations, } from './TagElement';
11
11
  export { useViewsUtils, useUniqueViewsByDate, useUniqueViewsByUser, } from './ViewsElement';
12
12
  export { useNotificationUtils, useNotificationsData, useUnreadNotificationsCount } from './NotificationElement';
package/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  /// <reference types="react" />
2
2
  import React from 'react';
3
- import { Config, Velt, ReactionMap, AutocompleteItem, User, Options, DocumentMetadata, Location as Location$1, CommentElement, CommentAnnotation, CommentSelectionChangeData, CommentSidebarCustomActionEventData, CursorElement, CursorUser, LiveStateSyncElement, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RewriterElement, SelectionElement, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact } from '@veltdev/types';
3
+ import { Config, Velt, ReactionMap, AutocompleteItem, User, Options, DocumentMetadata, Location as Location$1, CommentElement, CommentAnnotation, CommentSelectionChangeData, CommentSidebarCustomActionEventData, CursorElement, CursorUser, LiveStateSyncElement, UserEditorAccess, EditorAccessTimer, ServerConnectionState, PresenceElement, PresenceUser, RecorderElement, RewriterElement, SelectionElement, LiveSelectionData, TagElement, TagAnnotation, ViewsElement, ViewsByUser, ViewsByDate, NotificationElement, Notification, AutocompleteElement, AutocompleteChipData, ContactElement, SelectedUserContact } from '@veltdev/types';
4
4
 
5
5
  interface IVeltProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
6
6
  apiKey: string;
@@ -229,10 +229,13 @@ interface IVeltCommentsSidebarProps {
229
229
  onSidebarCommentClick?: Function;
230
230
  onCommentClick?: Function;
231
231
  onSidebarClose?: Function;
232
+ onCommentNavigationButtonClick?: Function;
232
233
  darkMode?: boolean;
233
234
  position?: "right" | "left";
234
235
  filterPanelLayout?: 'menu' | 'bottomSheet';
235
236
  customActions?: boolean;
237
+ focusedThreadDialogVariant?: string;
238
+ focusedThreadMode?: boolean;
236
239
  }
237
240
  declare const SnippylyCommentsSidebar: React.FC<IVeltCommentsSidebarProps>;
238
241
 
@@ -614,6 +617,12 @@ interface IVeltCommentPinProps extends React.DetailedHTMLProps<React.HTMLAttribu
614
617
  }
615
618
  declare const VeltCommentPin: React.FC<IVeltCommentPinProps>;
616
619
 
620
+ interface IVeltCommentTextProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
621
+ annotationId?: string;
622
+ multiThreadAnnotationId?: string;
623
+ }
624
+ declare const VeltCommentText: React.FC<IVeltCommentTextProps>;
625
+
617
626
  interface IVeltCanvasCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
618
627
  canvasId: string;
619
628
  position: any;
@@ -1748,6 +1757,26 @@ interface IVeltCommentsSidebarActionButtonProps extends React.DetailedHTMLProps<
1748
1757
  id: string;
1749
1758
  }
1750
1759
 
1760
+ interface IVeltCommentsSidebarFocusedThreadBackButtonProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1761
+ variant?: string;
1762
+ }
1763
+ interface IVeltCommentsSidebarFocusedThreadBackButton extends React.FC<IVeltCommentsSidebarFocusedThreadBackButtonProps> {
1764
+ }
1765
+
1766
+ interface IVeltCommentsSidebarFocusedThreadDialogContainerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1767
+ variant?: string;
1768
+ }
1769
+ interface IVeltCommentsSidebarFocusedThreadDialogContainer extends React.FC<IVeltCommentsSidebarFocusedThreadDialogContainerProps> {
1770
+ }
1771
+
1772
+ interface IVeltCommentsSidebarFocusedThreadProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1773
+ variant?: string;
1774
+ }
1775
+ interface IVeltCommentsSidebarFocusedThread extends React.FC<IVeltCommentsSidebarFocusedThreadProps> {
1776
+ BackButton: IVeltCommentsSidebarFocusedThreadBackButton;
1777
+ DialogContainer: IVeltCommentsSidebarFocusedThreadDialogContainer;
1778
+ }
1779
+
1751
1780
  interface IVeltCommentsSidebarWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
1752
1781
  variant?: string;
1753
1782
  }
@@ -1768,6 +1797,7 @@ declare const VeltCommentsSidebarWireframe: React.FC<IVeltCommentsSidebarWirefra
1768
1797
  MinimalActionsDropdown: IVeltCommentsSidebarMinimalActionsDropdownWireframe;
1769
1798
  ResetFilterButton: React.FC<IVeltCommentsSidebarResetFilterButtonWireframeProps>;
1770
1799
  ActionButton: React.FC<IVeltCommentsSidebarActionButtonProps>;
1800
+ FocusedThread: IVeltCommentsSidebarFocusedThread;
1771
1801
  };
1772
1802
 
1773
1803
  interface IVeltCommentPinGhostCommentIndicatorProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
@@ -2590,6 +2620,13 @@ interface IVeltCommentComposerWireframe extends React.FC<IVeltCommentComposerWir
2590
2620
  }
2591
2621
  declare const VeltCommentComposerWireframe: IVeltCommentComposerWireframe;
2592
2622
 
2623
+ interface IVeltCommentThreadWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
2624
+ variant?: string;
2625
+ }
2626
+ interface IVeltCommentThreadWireframe extends React.FC<IVeltCommentThreadWireframeProps> {
2627
+ }
2628
+ declare const VeltCommentThreadWireframe: IVeltCommentThreadWireframe;
2629
+
2593
2630
  declare function useVeltClient(): {
2594
2631
  client: Velt;
2595
2632
  };
@@ -2669,6 +2706,7 @@ declare function useRecorderAddHandler(): any;
2669
2706
  declare function useAIRewriterUtils(): RewriterElement | undefined;
2670
2707
 
2671
2708
  declare function useLiveSelectionUtils(): SelectionElement | undefined;
2709
+ declare function useLiveSelectionDataHandler(): LiveSelectionData | null;
2672
2710
 
2673
2711
  declare function useTagUtils(): TagElement | undefined;
2674
2712
  declare function useTagAnnotations(documentId?: string, location?: Location$1): TagAnnotation[] | null;
@@ -2701,4 +2739,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
2701
2739
  updateLiveStateDataId: (newId?: string) => void;
2702
2740
  };
2703
2741
 
2704
- 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 };
2742
+ 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, 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, useLiveSelectionDataHandler, 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "3.0.42",
3
+ "version": "3.0.43",
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": [