@veltdev/react 3.0.8 → 3.0.10
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.
- package/cjs/index.js +5 -23
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/cjs/types/components/VeltInlineReactionsSection/VeltInlineReactionsSection.d.ts +2 -0
- package/cjs/types/components/index.d.ts +0 -1
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +6 -23
- package/esm/index.js.map +1 -1
- package/esm/types/components/SnippylyComments/SnippylyComments.d.ts +1 -0
- package/esm/types/components/VeltInlineReactionsSection/VeltInlineReactionsSection.d.ts +2 -0
- package/esm/types/components/index.d.ts +0 -1
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +3 -15
- package/package.json +1 -1
|
@@ -117,6 +117,7 @@ export interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAt
|
|
|
117
117
|
textCommentToolbarShadowDom?: boolean;
|
|
118
118
|
composerMode?: 'default' | 'expanded';
|
|
119
119
|
atHereLabel?: string;
|
|
120
|
+
multiThreadMode?: boolean;
|
|
120
121
|
}
|
|
121
122
|
declare const SnippylyComments: React.FC<IVeltCommentsProps>;
|
|
122
123
|
export default SnippylyComments;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { ReactionMap } from '@veltdev/types';
|
|
1
2
|
import React from 'react';
|
|
2
3
|
export interface IVeltInlineReactionsSectionProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
4
|
targetReactionElementId?: string;
|
|
4
5
|
darkMode?: boolean;
|
|
5
6
|
variant?: string;
|
|
6
7
|
shadowDom?: boolean;
|
|
8
|
+
customReactions?: ReactionMap;
|
|
7
9
|
}
|
|
8
10
|
declare const VeltInlineReactionsSection: React.FC<IVeltInlineReactionsSectionProps>;
|
|
9
11
|
export default VeltInlineReactionsSection;
|
|
@@ -67,4 +67,3 @@ export { default as VeltConfirmDialogWireframe } from "./VeltConfirmDialogWirefr
|
|
|
67
67
|
export { default as VeltInlineReactionsSectionWireframe } from "./VeltInlineReactionsSectionWireframe";
|
|
68
68
|
export { default as VeltPersistentCommentModeWireframe } from "./VeltPersistentCommentModeWireframe";
|
|
69
69
|
export { default as VeltMultiThreadCommentDialogWireframe } from "./VeltMultiThreadCommentDialogWireframe";
|
|
70
|
-
export { default as VeltCommentsSidebarButtonWireframe } from "./VeltCommentsSidebarButtonWireframe";
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -157,6 +157,7 @@ interface IVeltCommentsProps extends React.DetailedHTMLProps<React.HTMLAttribute
|
|
|
157
157
|
textCommentToolbarShadowDom?: boolean;
|
|
158
158
|
composerMode?: 'default' | 'expanded';
|
|
159
159
|
atHereLabel?: string;
|
|
160
|
+
multiThreadMode?: boolean;
|
|
160
161
|
}
|
|
161
162
|
declare const SnippylyComments: React.FC<IVeltCommentsProps>;
|
|
162
163
|
|
|
@@ -603,6 +604,7 @@ interface IVeltInlineReactionsSectionProps extends React.DetailedHTMLProps<React
|
|
|
603
604
|
darkMode?: boolean;
|
|
604
605
|
variant?: string;
|
|
605
606
|
shadowDom?: boolean;
|
|
607
|
+
customReactions?: ReactionMap;
|
|
606
608
|
}
|
|
607
609
|
declare const VeltInlineReactionsSection: React.FC<IVeltInlineReactionsSectionProps>;
|
|
608
610
|
|
|
@@ -2349,20 +2351,6 @@ interface IVeltMultiThreadCommentDialogWireframe extends React.FC<IVeltMultiThre
|
|
|
2349
2351
|
}
|
|
2350
2352
|
declare const VeltMultiThreadCommentDialogWireframe: IVeltMultiThreadCommentDialogWireframe;
|
|
2351
2353
|
|
|
2352
|
-
interface IVeltCommentsSidebarButtonCommentsCountProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
2353
|
-
}
|
|
2354
|
-
|
|
2355
|
-
interface IVeltCommentsSidebarButtonIconProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
2356
|
-
}
|
|
2357
|
-
|
|
2358
|
-
interface IVeltCommentsSidebarButtonWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
2359
|
-
variant?: string;
|
|
2360
|
-
}
|
|
2361
|
-
declare const VeltCommentsSidebarButtonWireframe: React.FC<IVeltCommentsSidebarButtonWireframeProps> & {
|
|
2362
|
-
CommentsCount: React.FC<IVeltCommentsSidebarButtonCommentsCountProps>;
|
|
2363
|
-
Icon: React.FC<IVeltCommentsSidebarButtonIconProps>;
|
|
2364
|
-
};
|
|
2365
|
-
|
|
2366
2354
|
declare function useVeltClient(): {
|
|
2367
2355
|
client: Velt;
|
|
2368
2356
|
};
|
|
@@ -2460,4 +2448,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
|
|
|
2460
2448
|
updateLiveStateDataId: (newId?: string) => void;
|
|
2461
2449
|
};
|
|
2462
2450
|
|
|
2463
|
-
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,
|
|
2451
|
+
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, 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.
|
|
3
|
+
"version": "3.0.10",
|
|
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": [
|