@veltdev/react 3.0.17 → 3.0.19

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.
@@ -115,6 +115,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
115
115
  textCommentToolbarDarkMode?: boolean;
116
116
  textCommentToolShadowDom?: boolean;
117
117
  textCommentToolbarShadowDom?: boolean;
118
+ persistentCommentShadowDom?: boolean;
118
119
  composerMode?: 'default' | 'expanded';
119
120
  atHereLabel?: string;
120
121
  atHereDescription?: string;
@@ -0,0 +1,9 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentComposerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ darkMode?: boolean;
4
+ variant?: string;
5
+ dialogVariant?: string;
6
+ shadowDom?: boolean;
7
+ }
8
+ declare const VeltCommentComposer: React.FC<IVeltCommentComposerProps>;
9
+ export default VeltCommentComposer;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltCommentComposer";
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export interface IVeltCommentComposerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
3
+ variant?: string;
4
+ }
5
+ export interface IVeltCommentComposerWireframe extends React.FC<IVeltCommentComposerWireframeProps> {
6
+ }
7
+ declare const VeltCommentComposerWireframe: IVeltCommentComposerWireframe;
8
+ export default VeltCommentComposerWireframe;
@@ -0,0 +1 @@
1
+ export { default } from "./VeltInlineCommentsSectionWireframe";
@@ -17,6 +17,7 @@ export interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps
17
17
  variant?: string;
18
18
  dialogVariant?: string;
19
19
  shadowDom?: boolean;
20
+ multiThread?: boolean;
20
21
  }
21
22
  declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
22
23
  export default VeltInlineCommentsSection;
@@ -38,6 +38,7 @@ export { default as VeltIf } from "./VeltIf";
38
38
  export { default as VeltCommentsMinimap } from "./VeltCommentsMinimap";
39
39
  export { default as VeltReactionTool } from "./VeltReactionTool";
40
40
  export { default as VeltInlineReactionsSection } from "./VeltInlineReactionsSection";
41
+ export { default as VeltCommentComposer } from "./VeltCommentComposer";
41
42
  export { default as VeltWireframe } from "./VeltWireframe";
42
43
  export { default as VeltCommentDialogWireframe } from "./VeltCommentDialogWireframe";
43
44
  export { default as VeltCommentsSidebarWireframe } from "./VeltCommentsSidebarWireframe";
@@ -68,3 +69,4 @@ export { default as VeltConfirmDialogWireframe } from "./VeltConfirmDialogWirefr
68
69
  export { default as VeltInlineReactionsSectionWireframe } from "./VeltInlineReactionsSectionWireframe";
69
70
  export { default as VeltPersistentCommentModeWireframe } from "./VeltPersistentCommentModeWireframe";
70
71
  export { default as VeltMultiThreadCommentDialogWireframe } from "./VeltMultiThreadCommentDialogWireframe";
72
+ export { default as VeltCommentComposerWireframe } from "./VeltCommentComposerWireframe";
@@ -1,3 +1,3 @@
1
- export declare const VELT_SDK_VERSION = "3.0.17";
1
+ export declare const VELT_SDK_VERSION = "3.0.19";
2
2
  export declare const VELT_SDK_INIT_EVENT = "onVeltInit";
3
3
  export declare const VELT_TAB_ID = "veltTabId";
package/index.d.ts CHANGED
@@ -155,6 +155,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
155
155
  textCommentToolbarDarkMode?: boolean;
156
156
  textCommentToolShadowDom?: boolean;
157
157
  textCommentToolbarShadowDom?: boolean;
158
+ persistentCommentShadowDom?: boolean;
158
159
  composerMode?: 'default' | 'expanded';
159
160
  atHereLabel?: string;
160
161
  atHereDescription?: string;
@@ -589,6 +590,7 @@ interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps<React.
589
590
  variant?: string;
590
591
  dialogVariant?: string;
591
592
  shadowDom?: boolean;
593
+ multiThread?: boolean;
592
594
  }
593
595
  declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
594
596
 
@@ -634,6 +636,14 @@ interface IVeltInlineReactionsSectionProps extends React.DetailedHTMLProps<React
634
636
  }
635
637
  declare const VeltInlineReactionsSection: React.FC<IVeltInlineReactionsSectionProps>;
636
638
 
639
+ interface IVeltCommentComposerProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
640
+ darkMode?: boolean;
641
+ variant?: string;
642
+ dialogVariant?: string;
643
+ shadowDom?: boolean;
644
+ }
645
+ declare const VeltCommentComposer: React.FC<IVeltCommentComposerProps>;
646
+
637
647
  interface IVeltWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
638
648
  }
639
649
  declare const VeltWireframe: React.FC<IVeltWireframeProps>;
@@ -2459,6 +2469,13 @@ interface IVeltMultiThreadCommentDialogWireframe extends React.FC<IVeltMultiThre
2459
2469
  }
2460
2470
  declare const VeltMultiThreadCommentDialogWireframe: IVeltMultiThreadCommentDialogWireframe;
2461
2471
 
2472
+ interface IVeltCommentComposerWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
2473
+ variant?: string;
2474
+ }
2475
+ interface IVeltCommentComposerWireframe extends React.FC<IVeltCommentComposerWireframeProps> {
2476
+ }
2477
+ declare const VeltCommentComposerWireframe: IVeltCommentComposerWireframe;
2478
+
2462
2479
  declare function useVeltClient(): {
2463
2480
  client: Velt;
2464
2481
  };
@@ -2556,4 +2573,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
2556
2573
  updateLiveStateDataId: (newId?: string) => void;
2557
2574
  };
2558
2575
 
2559
- export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltAutocomplete, VeltAutocompleteChipTooltipWireframe, VeltAutocompleteOptionWireframe, VeltCanvasComment, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleWireframe, 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, useCommentAnnotations, 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, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
2576
+ 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, useCommentAnnotations, 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, useUnsetDocumentId, useUserEditorState, useVeltClient, useVeltInitState, useViewsUtils };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@veltdev/react",
3
- "version": "3.0.17",
3
+ "version": "3.0.19",
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": [