@veltdev/react 3.0.18 → 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.
- package/cjs/index.js +15 -3
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltCommentComposer/VeltCommentComposer.d.ts +9 -0
- package/cjs/types/components/VeltCommentComposer/index.d.ts +1 -0
- package/cjs/types/components/VeltCommentComposerWireframe/VeltInlineCommentsSectionWireframe.d.ts +8 -0
- package/cjs/types/components/VeltCommentComposerWireframe/index.d.ts +1 -0
- package/cjs/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -0
- package/cjs/types/components/index.d.ts +2 -0
- package/cjs/types/constants.d.ts +1 -1
- package/esm/index.js +14 -4
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltCommentComposer/VeltCommentComposer.d.ts +9 -0
- package/esm/types/components/VeltCommentComposer/index.d.ts +1 -0
- package/esm/types/components/VeltCommentComposerWireframe/VeltInlineCommentsSectionWireframe.d.ts +8 -0
- package/esm/types/components/VeltCommentComposerWireframe/index.d.ts +1 -0
- package/esm/types/components/VeltInlineCommentsSection/VeltInlineCommentsSection.d.ts +1 -0
- package/esm/types/components/index.d.ts +2 -0
- package/esm/types/constants.d.ts +1 -1
- package/index.d.ts +17 -1
- package/package.json +1 -1
|
@@ -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";
|
package/esm/types/components/VeltCommentComposerWireframe/VeltInlineCommentsSectionWireframe.d.ts
ADDED
|
@@ -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";
|
package/esm/types/constants.d.ts
CHANGED
package/index.d.ts
CHANGED
|
@@ -590,6 +590,7 @@ interface IVeltInlineCommentsSectionProps extends React.DetailedHTMLProps<React.
|
|
|
590
590
|
variant?: string;
|
|
591
591
|
dialogVariant?: string;
|
|
592
592
|
shadowDom?: boolean;
|
|
593
|
+
multiThread?: boolean;
|
|
593
594
|
}
|
|
594
595
|
declare const VeltInlineCommentsSection: React.FC<IVeltInlineCommentsSectionProps>;
|
|
595
596
|
|
|
@@ -635,6 +636,14 @@ interface IVeltInlineReactionsSectionProps extends React.DetailedHTMLProps<React
|
|
|
635
636
|
}
|
|
636
637
|
declare const VeltInlineReactionsSection: React.FC<IVeltInlineReactionsSectionProps>;
|
|
637
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
|
+
|
|
638
647
|
interface IVeltWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
639
648
|
}
|
|
640
649
|
declare const VeltWireframe: React.FC<IVeltWireframeProps>;
|
|
@@ -2460,6 +2469,13 @@ interface IVeltMultiThreadCommentDialogWireframe extends React.FC<IVeltMultiThre
|
|
|
2460
2469
|
}
|
|
2461
2470
|
declare const VeltMultiThreadCommentDialogWireframe: IVeltMultiThreadCommentDialogWireframe;
|
|
2462
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
|
+
|
|
2463
2479
|
declare function useVeltClient(): {
|
|
2464
2480
|
client: Velt;
|
|
2465
2481
|
};
|
|
@@ -2557,4 +2573,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
|
|
|
2557
2573
|
updateLiveStateDataId: (newId?: string) => void;
|
|
2558
2574
|
};
|
|
2559
2575
|
|
|
2560
|
-
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.
|
|
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": [
|