@veltdev/react 1.0.112 → 1.0.113
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 +464 -44
- package/cjs/index.js.map +1 -1
- package/cjs/types/components/VeltChartComment/VeltChartComment.d.ts +10 -0
- package/cjs/types/components/VeltChartComment/index.d.ts +1 -0
- package/cjs/types/components/VeltHighChartComments/VeltHighChartComments.d.ts +8 -0
- package/cjs/types/components/VeltHighChartComments/index.d.ts +1 -0
- package/cjs/types/components/VeltNivoChartComments/VeltNivoChartComments.d.ts +3 -1
- package/cjs/types/components/index.d.ts +2 -0
- package/esm/index.js +463 -45
- package/esm/index.js.map +1 -1
- package/esm/types/components/VeltChartComment/VeltChartComment.d.ts +10 -0
- package/esm/types/components/VeltChartComment/index.d.ts +1 -0
- package/esm/types/components/VeltHighChartComments/VeltHighChartComments.d.ts +8 -0
- package/esm/types/components/VeltHighChartComments/index.d.ts +1 -0
- package/esm/types/components/VeltNivoChartComments/VeltNivoChartComments.d.ts +3 -1
- package/esm/types/components/index.d.ts +2 -0
- package/index.d.ts +20 -2
- package/package.json +1 -1
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export interface IVeltChartCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
3
|
+
commentMetadata?: {
|
|
4
|
+
[key: string]: any;
|
|
5
|
+
};
|
|
6
|
+
dialogMetadataTemplate?: string[];
|
|
7
|
+
ghostComment?: boolean;
|
|
8
|
+
}
|
|
9
|
+
declare const VeltChartComment: React.FC<IVeltChartCommentProps>;
|
|
10
|
+
export default VeltChartComment;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './VeltChartComment';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
export interface IVeltHighChartCommentsProps {
|
|
3
|
+
id: string;
|
|
4
|
+
chartComputedData: any;
|
|
5
|
+
dialogMetadataTemplate?: string[];
|
|
6
|
+
}
|
|
7
|
+
declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
|
|
8
|
+
export default VeltHighChartComments;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from "./VeltHighChartComments";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
export interface IVeltNivoChartCommentsProps {
|
|
3
|
-
|
|
3
|
+
id: string;
|
|
4
|
+
chartComputedData?: any;
|
|
5
|
+
dialogMetadataTemplate?: string[];
|
|
4
6
|
}
|
|
5
7
|
declare const VeltNivoChartComments: React.FC<IVeltNivoChartCommentsProps>;
|
|
6
8
|
export default VeltNivoChartComments;
|
|
@@ -26,6 +26,8 @@ export { default as VeltNotificationsTool } from "./VeltNotificationsTool";
|
|
|
26
26
|
export { default as VeltNotificationsPanel } from "./VeltNotificationsPanel";
|
|
27
27
|
export { default as VeltNotificationsHistoryPanel } from "./VeltNotificationsHistoryPanel";
|
|
28
28
|
export { default as VeltNivoChartComments } from "./VeltNivoChartComments";
|
|
29
|
+
export { default as VeltHighChartComments } from "./VeltHighChartComments";
|
|
30
|
+
export { default as VeltChartComment } from "./VeltChartComment";
|
|
29
31
|
export { default as VeltWireframe } from "./VeltWireframe";
|
|
30
32
|
export { default as VeltCommentDialogWireframe } from "./VeltCommentDialogWireframe";
|
|
31
33
|
export { default as VeltCommentsSidebarWireframe } from "./VeltCommentsSidebarWireframe";
|
package/index.d.ts
CHANGED
|
@@ -350,10 +350,28 @@ interface IVeltNotificationsHistoryPanelProps {
|
|
|
350
350
|
declare const VeltNotificationsHistoryPanel: React.FC<IVeltNotificationsHistoryPanelProps>;
|
|
351
351
|
|
|
352
352
|
interface IVeltNivoChartCommentsProps {
|
|
353
|
-
|
|
353
|
+
id: string;
|
|
354
|
+
chartComputedData?: any;
|
|
355
|
+
dialogMetadataTemplate?: string[];
|
|
354
356
|
}
|
|
355
357
|
declare const VeltNivoChartComments: React.FC<IVeltNivoChartCommentsProps>;
|
|
356
358
|
|
|
359
|
+
interface IVeltHighChartCommentsProps {
|
|
360
|
+
id: string;
|
|
361
|
+
chartComputedData: any;
|
|
362
|
+
dialogMetadataTemplate?: string[];
|
|
363
|
+
}
|
|
364
|
+
declare const VeltHighChartComments: React.FC<IVeltHighChartCommentsProps>;
|
|
365
|
+
|
|
366
|
+
interface IVeltChartCommentProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
367
|
+
commentMetadata?: {
|
|
368
|
+
[key: string]: any;
|
|
369
|
+
};
|
|
370
|
+
dialogMetadataTemplate?: string[];
|
|
371
|
+
ghostComment?: boolean;
|
|
372
|
+
}
|
|
373
|
+
declare const VeltChartComment: React.FC<IVeltChartCommentProps>;
|
|
374
|
+
|
|
357
375
|
interface IVeltWireframeProps extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement> {
|
|
358
376
|
}
|
|
359
377
|
declare const VeltWireframe: React.FC<IVeltWireframeProps>;
|
|
@@ -894,4 +912,4 @@ declare const createLiveStateMiddleware: (config?: LiveStateMiddlewareConfig) =>
|
|
|
894
912
|
updateLiveStateDataId: (newId?: string) => void;
|
|
895
913
|
};
|
|
896
914
|
|
|
897
|
-
export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleAvatar, VeltCommentBubbleCommentsCount, VeltCommentDialogWireframe, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarWireframe, SnippylyCursor as VeltCursor, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, 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, useAddLocation, useClient, useCommentAddHandler, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnsetDocumentId, useUserEditorState, useVeltClient, useViewsUtils };
|
|
915
|
+
export { SnippylyArrowTool as VeltArrowTool, SnippylyArrows as VeltArrows, VeltChartComment, SnippylyCommentBubble as VeltCommentBubble, VeltCommentBubbleAvatar, VeltCommentBubbleCommentsCount, VeltCommentDialogWireframe, VeltCommentPinWireframe, VeltCommentPlayerTimeline, VeltCommentThread, SnippylyCommentTool as VeltCommentTool, VeltCommentToolWireframe, SnippylyComments as VeltComments, SnippylyCommentsSidebar as VeltCommentsSidebar, VeltCommentsSidebarWireframe, SnippylyCursor as VeltCursor, VeltHighChartComments, SnippylyHuddle as VeltHuddle, SnippylyHuddleTool as VeltHuddleTool, VeltNivoChartComments, VeltNotificationsHistoryPanel, VeltNotificationsPanel, VeltNotificationsTool, SnippylyPresence as VeltPresence, SnippylyProvider as VeltProvider, 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, useAddLocation, useClient, useCommentAddHandler, useCommentAnnotations, useCommentDialogSidebarClickHandler, useCommentModeState, useCommentUpdateHandler, useCommentUtils, useCursorUsers, useCursorUtils, useEditor, useEditorAccessRequestHandler, useEditorAccessTimer, useHuddleUtils, useIdentify, useLiveSelectionUtils, useLiveState, useLiveStateData, useLiveStateSyncUtils, useNotificationUtils, useNotificationsData, usePresenceUsers, usePresenceUtils, useRecorderAddHandler, useRecorderUtils, useSetDocumentId, useSetLiveStateData, useSetLocation, useTagAnnotations, useTagUtils, useUniqueViewsByDate, useUniqueViewsByUser, useUnsetDocumentId, useUserEditorState, useVeltClient, useViewsUtils };
|